docs: add docs for GtkCellEditableIface

This commit is contained in:
William Jon McCann 2014-01-20 23:28:20 -05:00
parent 9f815edbf9
commit 224a8e1763

View File

@ -35,10 +35,21 @@ G_BEGIN_DECLS
typedef struct _GtkCellEditable GtkCellEditable; /* Dummy typedef */
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
{
/*< private >*/
GTypeInterface g_iface;
/*< public >*/
/* signals */
void (* editing_done) (GtkCellEditable *cell_editable);
void (* remove_widget) (GtkCellEditable *cell_editable);