mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
add a GtkMenuToolButton.
2004-09-29 Paolo Borelli <pborelli@katamail.com> * tests/testtoolbar.c: add a GtkMenuToolButton.
This commit is contained in:
parent
40c0e94a4b
commit
26e50e26b3
@ -1,3 +1,7 @@
|
||||
2004-09-29 Paolo Borelli <pborelli@katamail.com>
|
||||
|
||||
* tests/testtoolbar.c: add a GtkMenuToolButton.
|
||||
|
||||
2004-09-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconview.c (gtk_icon_view_move_cursor_left_right)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-09-29 Paolo Borelli <pborelli@katamail.com>
|
||||
|
||||
* tests/testtoolbar.c: add a GtkMenuToolButton.
|
||||
|
||||
2004-09-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconview.c (gtk_icon_view_move_cursor_left_right)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-09-29 Paolo Borelli <pborelli@katamail.com>
|
||||
|
||||
* tests/testtoolbar.c: add a GtkMenuToolButton.
|
||||
|
||||
2004-09-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconview.c (gtk_icon_view_move_cursor_left_right)
|
||||
|
@ -1,3 +1,7 @@
|
||||
2004-09-29 Paolo Borelli <pborelli@katamail.com>
|
||||
|
||||
* tests/testtoolbar.c: add a GtkMenuToolButton.
|
||||
|
||||
2004-09-29 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkiconview.c (gtk_icon_view_move_cursor_left_right)
|
||||
|
@ -589,7 +589,16 @@ main (gint argc, gchar **argv)
|
||||
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
|
||||
gtk_tool_item_set_expand (item, TRUE);
|
||||
|
||||
item = gtk_tool_button_new_from_stock (GTK_STOCK_OPEN);
|
||||
menu = gtk_menu_new ();
|
||||
menuitem = gtk_menu_item_new_with_label ("foo.txt");
|
||||
gtk_widget_show (menuitem);
|
||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
||||
menuitem = gtk_menu_item_new_with_label ("bar.txt");
|
||||
gtk_widget_show (menuitem);
|
||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
||||
|
||||
item = gtk_menu_tool_button_new_from_stock (GTK_STOCK_OPEN);
|
||||
gtk_menu_tool_button_set_menu (GTK_MENU_TOOL_BUTTON (item), menu);
|
||||
add_item_to_list (store, item, "Open");
|
||||
gtk_toolbar_insert (GTK_TOOLBAR (toolbar), item, -1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user