| Libgnomedb Reference Manual |
|---|
GnomeDbDataCellRendererInfo — Cell renderer to display a cell contextual menu
struct GnomeDbDataCellRendererInfo; struct GnomeDbDataCellRendererInfoClass; struct GnomeDbDataCellRendererInfoPriv; GtkCellRenderer* gnome_db_data_cell_renderer_info_new (GnomeDbDataStore *store, GdaDataModelIter *iter, GdaParameterListGroup *group);
GObject +----GInitiallyUnowned +----GtkObject +----GtkCellRenderer +----GnomeDbDataCellRendererInfo
"editable" gboolean : Read / Write "to-be-deleted" gboolean : Write "value-attributes" guint : Read / Write
"status-changed" void user_function (GnomeDbDataCellRendererInfo *dbdatacellrendererinfo, gchar *arg1, guint arg2, gpointer user_data);
struct GnomeDbDataCellRendererInfoClass {
GtkCellRendererClass parent_class;
void (* status_changed) (GnomeDbDataCellRendererInfo *cell_renderer_info,
const gchar *path,
GdaValueAttribute requested_action);
};
GtkCellRenderer* gnome_db_data_cell_renderer_info_new (GnomeDbDataStore *store, GdaDataModelIter *iter, GdaParameterListGroup *group);
Creates a new GnomeDbDataCellRendererInfo. Adjust rendering parameters using object properties. Object properties can be set globally (with g_object_set()). Also, with GtkTreeViewColumn, you can bind a property to a value in a GtkTreeModel. For example, you can bind the "active" property on the cell renderer to a boolean value in the model, thus causing the check button to reflect the state of the model.
| store : | |
| iter : | |
| group : | |
| Returns : | the new cell renderer |
void user_function (GnomeDbDataCellRendererInfo *dbdatacellrendererinfo, gchar *arg1, guint arg2, gpointer user_data);
| dbdatacellrendererinfo : | the object which received the signal. |
| arg1 : | |
| arg2 : | |
| user_data : | user data set when the signal handler was connected. |
| << Cell renderers | GnomeDbDataCellRendererTextual >> |