mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-23 20:30:15 +00:00
Adding more "small" submenus to testtreemenu
This commit is contained in:
parent
1cacae9cc4
commit
53bdca9dae
@ -69,14 +69,42 @@ simple_tree_model (void)
|
||||
"and I'm not going to answer it",
|
||||
-1);
|
||||
|
||||
gtk_tree_store_append (store, &iter, NULL);
|
||||
gtk_tree_store_set (store, &iter,
|
||||
gtk_tree_store_append (store, &parent, NULL);
|
||||
gtk_tree_store_set (store, &parent,
|
||||
SIMPLE_COLUMN_NAME, "Whinnie the pooh",
|
||||
SIMPLE_COLUMN_ICON, "gtk-stop",
|
||||
SIMPLE_COLUMN_DESCRIPTION, "The most wonderful thing about tiggers, "
|
||||
"is tiggers are wonderful things",
|
||||
-1);
|
||||
|
||||
gtk_tree_store_append (store, &iter, &parent);
|
||||
gtk_tree_store_set (store, &iter,
|
||||
SIMPLE_COLUMN_NAME, "Tigger",
|
||||
SIMPLE_COLUMN_ICON, "gtk-yes",
|
||||
SIMPLE_COLUMN_DESCRIPTION, "Eager",
|
||||
-1);
|
||||
|
||||
gtk_tree_store_append (store, &iter, &parent);
|
||||
gtk_tree_store_set (store, &iter,
|
||||
SIMPLE_COLUMN_NAME, "Owl",
|
||||
SIMPLE_COLUMN_ICON, "gtk-stop",
|
||||
SIMPLE_COLUMN_DESCRIPTION, "Wise",
|
||||
-1);
|
||||
|
||||
gtk_tree_store_append (store, &iter, &parent);
|
||||
gtk_tree_store_set (store, &iter,
|
||||
SIMPLE_COLUMN_NAME, "Eor",
|
||||
SIMPLE_COLUMN_ICON, "gtk-no",
|
||||
SIMPLE_COLUMN_DESCRIPTION, "Depressed",
|
||||
-1);
|
||||
|
||||
gtk_tree_store_append (store, &iter, &parent);
|
||||
gtk_tree_store_set (store, &iter,
|
||||
SIMPLE_COLUMN_NAME, "Piglet",
|
||||
SIMPLE_COLUMN_ICON, "gtk-media-play",
|
||||
SIMPLE_COLUMN_DESCRIPTION, "Insecure",
|
||||
-1);
|
||||
|
||||
gtk_tree_store_append (store, &iter, NULL);
|
||||
gtk_tree_store_set (store, &iter,
|
||||
SIMPLE_COLUMN_NAME, "Aleister Crowley",
|
||||
|
Loading…
Reference in New Issue
Block a user