CellEditableT

The GtkCellEditable interface must be implemented for widgets to be usable to edit the contents of a gtk.TreeView cell. It provides a way to specify how temporary widgets should be configured for editing, get the new value, etc.

Members

Functions

addOnEditingDone
gulong addOnEditingDone(void delegate(CellEditableIF) dlg, ConnectFlags connectFlags)

This signal is a sign for the cell renderer to update its value from the cell_editable.

addOnRemoveWidget
gulong addOnRemoveWidget(void delegate(CellEditableIF) dlg, ConnectFlags connectFlags)

This signal is meant to indicate that the cell is finished editing, and the cell_editable widget is being removed and may subsequently be destroyed.

editingDone
void editingDone()

Emits the editing-done signal.

getCellEditableStruct
GtkCellEditable* getCellEditableStruct(bool transferOwnership)

Get the main Gtk struct

removeWidget
void removeWidget()

Emits the remove-widget signal.

startEditing
void startEditing(Event event)

Begins editing on a cell_editable.