CellEditableT

The GtkCellEditable interface must be implemented for widgets to be usable when editing the contents of a GtkTreeView cell.

Members

Functions

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

This signal is a sign for the cell renderer to update its value from the cell_editable. Implementations of GtkCellEditable are responsible for emitting this signal when they are done editing, e.g. GtkEntry is emitting it when the user presses Enter. gtk_cell_editable_editing_done() is a convenience method for emitting "editing-done".

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

This signal is meant to indicate that the cell is finished editing, and the widget may now be destroyed. Implementations of GtkCellEditable are responsible for emitting this signal when they are done editing. It must be emitted after the "editing-done" signal, to give the cell renderer a chance to update the cell's value before the widget is removed. gtk_cell_editable_remove_widget() is a convenience method for emitting "remove-widget". See Also GtkEntry, GtkCellRenderer

editingDone
void editingDone()

Emits the "editing-done" signal.

getCellEditableTStruct
GtkCellEditable* getCellEditableTStruct()
Undocumented in source. Be warned that the author may not have intended to support it.
removeWidget
void removeWidget()

Emits the "remove-widget" signal.

startEditing
void startEditing(Event event)

Begins editing on a cell_editable. event is the GdkEvent that began the editing process. It may be NULL, in the instance that editing was initiated through programatic means.

Properties

onEditingDoneListeners
void delegate(CellEditableIF)[] onEditingDoneListeners [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
onRemoveWidgetListeners
void delegate(CellEditableIF)[] onRemoveWidgetListeners [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.

Static functions

callBackEditingDone
void callBackEditingDone(GtkCellEditable* cellEditableStruct, CellEditableIF _cellEditableIF)
Undocumented in source. Be warned that the author may not have intended to support it.
callBackRemoveWidget
void callBackRemoveWidget(GtkCellEditable* cellEditableStruct, CellEditableIF _cellEditableIF)
Undocumented in source. Be warned that the author may not have intended to support it.

Variables

_onEditingDoneListeners
void delegate(CellEditableIF)[] _onEditingDoneListeners;
Undocumented in source.
_onRemoveWidgetListeners
void delegate(CellEditableIF)[] _onRemoveWidgetListeners;
Undocumented in source.
connectedSignals
int[string] connectedSignals;
gtkCellEditable
GtkCellEditable* gtkCellEditable;

the main Gtk struct

Meta