WIP: on_bind_cb() Bind data from the store object to the widget << adapting from the kriptolix example
This commit is contained in:
parent
cfa46b6a2a
commit
7bd92fad23
|
@ -56,7 +56,12 @@ static void on_setup_cb (GtkSignalListItemFactory *self, GtkListItem *my_list_it
|
||||||
}
|
}
|
||||||
|
|
||||||
static void on_bind_cb (GtkSignalListItemFactory *self, GtkListItem *my_list_item, gpointer user_data)
|
static void on_bind_cb (GtkSignalListItemFactory *self, GtkListItem *my_list_item, gpointer user_data)
|
||||||
|
/* Bind data from the store object to the widget << adapting from the kriptolix example */
|
||||||
{
|
{
|
||||||
|
GtkWidget *my_expander = gtk_expander_new (NULL);
|
||||||
|
gtk_expander_set_child (GTK_EXPANDER(my_expander), gtk_list_item_get_child (my_list_item));
|
||||||
|
|
||||||
|
|
||||||
GtkWidget *my_label = gtk_list_item_get_child (my_list_item);
|
GtkWidget *my_label = gtk_list_item_get_child (my_list_item);
|
||||||
/* my_string_object is owned by the instance. Caller mustn't change or destroy it. */
|
/* my_string_object is owned by the instance. Caller mustn't change or destroy it. */
|
||||||
GtkStringObject *my_string_object = gtk_list_item_get_item (my_list_item);
|
GtkStringObject *my_string_object = gtk_list_item_get_item (my_list_item);
|
||||||
|
|
Loading…
Reference in New Issue