def start_editing(event
)
def editing_done()
def remove_widget()
|
def callback( | |
def callback( |
The gtk.CellEditable
is an interface that provides editing of a cell in a gtk.TreeView
cell.
def start_editing(event
)
| A gtk.gdk.Event , or
None |
The start_editing
() method begins the
editing on a cell_editable
widget that has been
reparented over the treeview cell. event
is the
gtk.gdk.Event
that began the editing process. If the editing was initiated through
programmatic means, event
may be
None
, .
def callback(celleditable
, user_param1
, ...
)
| the celleditable that received the signal |
| the first user parameter (if any) specified
with the connect () |
| additional user parameters (if any) |
The "editing-done" signal is emitted when the editing_done
()
method is called.
def callback(celleditable
, user_param1
, ...
)
| the celleditable that received the signal |
| the first user parameter (if any) specified
with the connect () |
| additional user parameters (if any) |
The "remove-widget" signal is emitted when the cellrenderer for the treeview cell has retrieved the edited information and the celleditable widget can be destroyed.
© manpagez.com 2000-2024 Individual documents may contain additional copyright information.