mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 06:00:22 +00:00
docs: add docs for GtkCellEditableIface
This commit is contained in:
parent
9f815edbf9
commit
224a8e1763
@ -35,10 +35,21 @@ G_BEGIN_DECLS
|
|||||||
typedef struct _GtkCellEditable GtkCellEditable; /* Dummy typedef */
|
typedef struct _GtkCellEditable GtkCellEditable; /* Dummy typedef */
|
||||||
typedef struct _GtkCellEditableIface GtkCellEditableIface;
|
typedef struct _GtkCellEditableIface GtkCellEditableIface;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GtkCellEditableIface:
|
||||||
|
* @editing_done: Signal is a sign for the cell renderer to update its
|
||||||
|
* value from the cell_editable.
|
||||||
|
* @remove_widget: Signal is meant to indicate that the cell is
|
||||||
|
* finished editing, and the widget may now be destroyed.
|
||||||
|
* @start_editing: Begins editing on a cell_editable.
|
||||||
|
*/
|
||||||
struct _GtkCellEditableIface
|
struct _GtkCellEditableIface
|
||||||
{
|
{
|
||||||
|
/*< private >*/
|
||||||
GTypeInterface g_iface;
|
GTypeInterface g_iface;
|
||||||
|
|
||||||
|
/*< public >*/
|
||||||
|
|
||||||
/* signals */
|
/* signals */
|
||||||
void (* editing_done) (GtkCellEditable *cell_editable);
|
void (* editing_done) (GtkCellEditable *cell_editable);
|
||||||
void (* remove_widget) (GtkCellEditable *cell_editable);
|
void (* remove_widget) (GtkCellEditable *cell_editable);
|
||||||
|
Loading…
Reference in New Issue
Block a user