2000-10-18 15:50:13 +00:00
|
|
|
/* Menus
|
|
|
|
*
|
2001-04-18 18:09:18 +00:00
|
|
|
* There are several widgets involved in displaying menus. The
|
|
|
|
* GtkMenuBar widget is a horizontal menu bar, which normally appears
|
|
|
|
* at the top of an application. The GtkMenu widget is the actual menu
|
|
|
|
* that pops up. Both GtkMenuBar and GtkMenu are subclasses of
|
|
|
|
* GtkMenuShell; a GtkMenuShell contains menu items
|
|
|
|
* (GtkMenuItem). Each menu item contains text and/or images and can
|
|
|
|
* be selected by the user.
|
|
|
|
*
|
|
|
|
* There are several kinds of menu item, including plain GtkMenuItem,
|
|
|
|
* GtkCheckMenuItem which can be checked/unchecked, GtkRadioMenuItem
|
|
|
|
* which is a check menu item that's in a mutually exclusive group,
|
|
|
|
* GtkSeparatorMenuItem which is a separator bar, GtkTearoffMenuItem
|
|
|
|
* which allows a GtkMenu to be torn off, and GtkImageMenuItem which
|
|
|
|
* can place a GtkImage or other widget next to the menu text.
|
|
|
|
*
|
|
|
|
* A GtkMenuItem can have a submenu, which is simply a GtkMenu to pop
|
|
|
|
* up when the menu item is selected. Typically, all menu items in a menu bar
|
|
|
|
* have submenus.
|
|
|
|
*
|
|
|
|
* The GtkOptionMenu widget is a button that pops up a GtkMenu when clicked.
|
|
|
|
* It's used inside dialogs and such.
|
|
|
|
*
|
|
|
|
* GtkItemFactory provides a higher-level interface for creating menu bars
|
|
|
|
* and menus; while you can construct menus manually, most people don't
|
|
|
|
* do that. There's a separate demo for GtkItemFactory.
|
|
|
|
*
|
2000-10-18 15:50:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
|
2001-05-18 16:28:30 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
static GtkWidget *
|
|
|
|
create_menu (gint depth,
|
|
|
|
gboolean tearoff)
|
2000-10-18 15:50:13 +00:00
|
|
|
{
|
|
|
|
GtkWidget *menu;
|
|
|
|
GtkWidget *menuitem;
|
|
|
|
GSList *group;
|
|
|
|
char buf[32];
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
if (depth < 1)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
menu = gtk_menu_new ();
|
|
|
|
group = NULL;
|
|
|
|
|
|
|
|
if (tearoff)
|
|
|
|
{
|
|
|
|
menuitem = gtk_tearoff_menu_item_new ();
|
2000-11-09 12:15:40 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0, j = 1; i < 5; i++, j++)
|
|
|
|
{
|
|
|
|
sprintf (buf, "item %2d - %d", depth, j);
|
|
|
|
menuitem = gtk_radio_menu_item_new_with_label (group, buf);
|
2001-08-17 14:11:36 +00:00
|
|
|
group = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (menuitem));
|
2001-04-18 18:09:18 +00:00
|
|
|
|
2000-11-09 12:15:40 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
if (i == 3)
|
|
|
|
gtk_widget_set_sensitive (menuitem, FALSE);
|
|
|
|
|
|
|
|
gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), create_menu (depth - 1, TRUE));
|
|
|
|
}
|
|
|
|
|
|
|
|
return menu;
|
|
|
|
}
|
|
|
|
|
2000-11-18 23:59:30 +00:00
|
|
|
GtkWidget *
|
2000-10-18 15:50:13 +00:00
|
|
|
do_menus (void)
|
|
|
|
{
|
|
|
|
static GtkWidget *window = NULL;
|
|
|
|
GtkWidget *box1;
|
|
|
|
GtkWidget *box2;
|
|
|
|
GtkWidget *button;
|
|
|
|
GtkWidget *optionmenu;
|
|
|
|
GtkWidget *separator;
|
|
|
|
|
|
|
|
if (!window)
|
|
|
|
{
|
|
|
|
GtkWidget *menubar;
|
|
|
|
GtkWidget *menu;
|
|
|
|
GtkWidget *menuitem;
|
|
|
|
GtkAccelGroup *accel_group;
|
|
|
|
|
|
|
|
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
|
|
|
2001-10-20 23:39:32 +00:00
|
|
|
g_signal_connect (window, "destroy",
|
|
|
|
G_CALLBACK(gtk_widget_destroyed), &window);
|
|
|
|
g_signal_connect (window, "delete-event",
|
|
|
|
G_CALLBACK (gtk_true), NULL);
|
2000-10-18 15:50:13 +00:00
|
|
|
|
|
|
|
accel_group = gtk_accel_group_new ();
|
2001-11-16 11:50:04 +00:00
|
|
|
gtk_window_add_accel_group (GTK_WINDOW (window), accel_group);
|
2000-10-18 15:50:13 +00:00
|
|
|
|
|
|
|
gtk_window_set_title (GTK_WINDOW (window), "menus");
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (window), 0);
|
|
|
|
|
|
|
|
|
|
|
|
box1 = gtk_vbox_new (FALSE, 0);
|
|
|
|
gtk_container_add (GTK_CONTAINER (window), box1);
|
|
|
|
gtk_widget_show (box1);
|
|
|
|
|
|
|
|
menubar = gtk_menu_bar_new ();
|
|
|
|
gtk_box_pack_start (GTK_BOX (box1), menubar, FALSE, TRUE, 0);
|
|
|
|
gtk_widget_show (menubar);
|
|
|
|
|
|
|
|
menu = create_menu (2, TRUE);
|
|
|
|
|
|
|
|
menuitem = gtk_menu_item_new_with_label ("test\nline2");
|
|
|
|
gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), menu);
|
2001-08-23 23:30:43 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menubar), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
|
|
|
|
menuitem = gtk_menu_item_new_with_label ("foo");
|
|
|
|
gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), create_menu (3, TRUE));
|
2001-08-23 23:30:43 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menubar), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
|
|
|
|
menuitem = gtk_menu_item_new_with_label ("bar");
|
|
|
|
gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), create_menu (4, TRUE));
|
2001-08-27 15:17:51 +00:00
|
|
|
gtk_menu_item_set_right_justified (GTK_MENU_ITEM (menuitem), TRUE);
|
2001-08-23 23:30:43 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menubar), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
|
|
|
|
box2 = gtk_vbox_new (FALSE, 10);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (box2), 10);
|
|
|
|
gtk_box_pack_start (GTK_BOX (box1), box2, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (box2);
|
|
|
|
|
|
|
|
menu = create_menu (1, FALSE);
|
|
|
|
gtk_menu_set_accel_group (GTK_MENU (menu), accel_group);
|
2001-02-21 09:29:01 +00:00
|
|
|
|
|
|
|
menuitem = gtk_separator_menu_item_new ();
|
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
|
2000-10-18 15:50:13 +00:00
|
|
|
menuitem = gtk_check_menu_item_new_with_label ("Accelerate Me");
|
2000-11-09 12:15:40 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
gtk_widget_add_accelerator (menuitem,
|
|
|
|
"activate",
|
|
|
|
accel_group,
|
|
|
|
GDK_F1,
|
|
|
|
0,
|
added gtkaccelmap.sgml. other updates.
Mon Nov 12 23:06:38 2001 Tim Janik <timj@gtk.org>
* added gtkaccelmap.sgml. other updates.
Mon Nov 12 23:08:37 2001 Tim Janik <timj@gtk.org>
* gtk/maketypes.awk: fix type utils generation on unix.
* gtk/gtkaccelmap.[hc]: new files, implementing a global accelerator
registry.
* gtk/gtkaccelgroup.[hc]: major API/implementation revamp:
removed GTK_ACCEL_SIGNAL_VISIBLE, gtk_accel_group_get_default,
gtk_accel_group_get_entry, gtk_accel_group_(un)lock_entry,
gtk_accel_group_add/remove, gtk_accel_group_handle_add/remove,
gtk_accel_group_create_add/remove, gtk_accel_group_entries_from_object.
introduced ::accel_changed signal for change notification, and
gtk_accel_group_connect/disconnect to connect closures to accel groups.
made gtk_accel_group_attach/detach and gtk_accel_group_activate private
functions.
deprecated gtk_accel_group_ref/unref.
* gtk/gtkaccellabel.[hc]: changes to make accellabels pay attention
to accel group changed notification and basically operate on closures.
removed gtk_accel_label_get_accel_object and
gtk_accel_label_set_accel_object.
introduced gtk_accel_label_set_accel_closure, and for convenience,
gtk_accel_label_set_accel_widget.
* gtk/gtkitemfactory.[hc]: removed accelerator propagation code
which mostly moved into gtkaccelmap.[hc].
removed gtk_item_factory_parse_rc*, gtk_item_factory_dump_*
and gtk_item_factory_print_func.
* gtk/gtkmain.c: call _gtk_accel_map_init().
* gtk/gtkmenuitem.[hc]: introduced gtk_menu_item_set_accel_path(),
that associates an accelerator path with menu items, through which
persistent accelerator settings on menu items are enabled.
* gtk/gtkmenu.[hc]: added gtk_menu_set_accel_path() so accelerator
paths of menu item can be default constructed to allow installation
of accelerators on menu items that don't come with an accelerator
binding by default.
* gtk/gtksettings.c: fix STRING type rc settings by special casing
them appropriately in the parser.
* gtk/gtksignal.[hc]: allow a class function offset of 0 for
gtk_signal_newv().
* gtk/gtkwidget.[hc]: accelerator API revamp.
removed ::accelerator_add/remove signals, gtk_widget_accelerator_signal,
gtk_widget_accelerators_locked, gtk_widget_remove_accelerators and
gtk_widget_(un)lock_accelerators.
accelerators maintained through gtk_widget_add/remove_accelerator()
are not runtime changable now, the correct sequence to setup a
widget for runtime changable accelerators is now:
gtk_accel_map_add_entry(accel_path, key, mods);
_gtk_widget_set_accel_path(widget, accel_path, accel_group);
* gtk/gtkwindow.[hc]: accelerator changes, proxy and coalesce accel
group changes (as well as mnemonic changes) through the new signal
::accels_changed.
Sat Nov 10 12:08:56 2001 Tim Janik <timj@gtk.org>
* gtk/gtksettings.c (_gtk_settings_parse_convert): properly handle
GString->string conversions.
2001-11-13 00:53:47 +00:00
|
|
|
GTK_ACCEL_VISIBLE);
|
2000-10-18 15:50:13 +00:00
|
|
|
menuitem = gtk_check_menu_item_new_with_label ("Accelerator Locked");
|
2000-11-09 12:15:40 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
gtk_widget_add_accelerator (menuitem,
|
|
|
|
"activate",
|
|
|
|
accel_group,
|
|
|
|
GDK_F2,
|
|
|
|
0,
|
|
|
|
GTK_ACCEL_VISIBLE | GTK_ACCEL_LOCKED);
|
|
|
|
menuitem = gtk_check_menu_item_new_with_label ("Accelerators Frozen");
|
2000-11-09 12:15:40 +00:00
|
|
|
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_widget_show (menuitem);
|
|
|
|
gtk_widget_add_accelerator (menuitem,
|
|
|
|
"activate",
|
|
|
|
accel_group,
|
|
|
|
GDK_F2,
|
|
|
|
0,
|
|
|
|
GTK_ACCEL_VISIBLE);
|
|
|
|
gtk_widget_add_accelerator (menuitem,
|
|
|
|
"activate",
|
|
|
|
accel_group,
|
|
|
|
GDK_F3,
|
|
|
|
0,
|
|
|
|
GTK_ACCEL_VISIBLE);
|
|
|
|
|
|
|
|
optionmenu = gtk_option_menu_new ();
|
|
|
|
gtk_option_menu_set_menu (GTK_OPTION_MENU (optionmenu), menu);
|
|
|
|
gtk_option_menu_set_history (GTK_OPTION_MENU (optionmenu), 3);
|
|
|
|
gtk_box_pack_start (GTK_BOX (box2), optionmenu, TRUE, TRUE, 0);
|
|
|
|
gtk_widget_show (optionmenu);
|
|
|
|
|
|
|
|
separator = gtk_hseparator_new ();
|
|
|
|
gtk_box_pack_start (GTK_BOX (box1), separator, FALSE, TRUE, 0);
|
|
|
|
gtk_widget_show (separator);
|
|
|
|
|
|
|
|
box2 = gtk_vbox_new (FALSE, 10);
|
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (box2), 10);
|
|
|
|
gtk_box_pack_start (GTK_BOX (box1), box2, FALSE, TRUE, 0);
|
|
|
|
gtk_widget_show (box2);
|
|
|
|
|
|
|
|
button = gtk_button_new_with_label ("close");
|
2001-10-20 23:39:32 +00:00
|
|
|
g_signal_connect_swapped (button, "clicked",
|
|
|
|
G_CALLBACK(gtk_widget_destroy), window);
|
2000-10-18 15:50:13 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (box2), button, TRUE, TRUE, 0);
|
|
|
|
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
|
|
|
|
gtk_widget_grab_default (button);
|
|
|
|
gtk_widget_show (button);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!GTK_WIDGET_VISIBLE (window))
|
2000-11-18 23:59:30 +00:00
|
|
|
{
|
|
|
|
gtk_widget_show (window);
|
|
|
|
}
|
2000-10-18 15:50:13 +00:00
|
|
|
else
|
2000-11-18 23:59:30 +00:00
|
|
|
{
|
|
|
|
gtk_widget_destroy (window);
|
|
|
|
window = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return window;
|
2000-10-18 15:50:13 +00:00
|
|
|
}
|