aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorCody Russell <crussell@canonical.com>2010-07-15 11:21:39 -0500
committerCody Russell <crussell@canonical.com>2010-07-15 11:21:39 -0500
commit272dafa2317a9ac6602cf595b7571ed5bb96decc (patch)
treed80d48d02f1c6c1f3c2206cfce2b61e76ba2dd48 /example
parent32093b51ba9486b417083806465a2c0a0556bd0b (diff)
downloadayatana-ido-272dafa2317a9ac6602cf595b7571ed5bb96decc.tar.gz
ayatana-ido-272dafa2317a9ac6602cf595b7571ed5bb96decc.tar.bz2
ayatana-ido-272dafa2317a9ac6602cf595b7571ed5bb96decc.zip
Force IdoRange to style itself by name rather than by class. Otherwise they all have the style used by the last one created.
Diffstat (limited to 'example')
-rw-r--r--example/menus.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/example/menus.c b/example/menus.c
index e244c40..a2647bb 100644
--- a/example/menus.c
+++ b/example/menus.c
@@ -67,6 +67,19 @@ main (int argc, char *argv[])
menuitem = ido_entry_menu_item_new ();
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
+ menuitem = ido_scale_menu_item_new_with_range ("Volume",
+ IDO_RANGE_STYLE_SMALL,
+ 65, 0, 100, 1);
+ ido_scale_menu_item_set_style (IDO_SCALE_MENU_ITEM (menuitem), IDO_SCALE_MENU_ITEM_STYLE_IMAGE);
+ image = ido_scale_menu_item_get_primary_image (IDO_SCALE_MENU_ITEM (menuitem));
+ gtk_image_set_from_stock (GTK_IMAGE (image), GTK_STOCK_NEW, GTK_ICON_SIZE_MENU);
+ image = ido_scale_menu_item_get_secondary_image (IDO_SCALE_MENU_ITEM (menuitem));
+ gtk_image_set_from_stock (GTK_IMAGE (image), GTK_STOCK_OPEN, GTK_ICON_SIZE_MENU);
+ gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
+
+ g_signal_connect (menuitem, "slider-grabbed", G_CALLBACK (slider_grabbed), NULL);
+ g_signal_connect (menuitem, "slider-released", G_CALLBACK (slider_released), NULL);
+
/* Add the menubar */
gtk_menu_shell_append (GTK_MENU_SHELL (menubar), root);