summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Williams <ericwill@redhat.com>2015-07-07 14:54:32 -0400
committerMatthias Clasen <mclasen@redhat.com>2015-07-08 13:53:07 -0400
commit60384740603c3e8a0fda8e823ac6df19352077e5 (patch)
treec37de213b47d97c25d91d82254b63f8bd2c20245
parenta74a3da745e6923b0d5f04073f40446a310aec40 (diff)
downloadgtk+-60384740603c3e8a0fda8e823ac6df19352077e5.tar.gz
Added an additional explanation and code snippet for GtkImageMenuItem.c
https://bugzilla.gnome.org/show_bug.cgi?id=752093
-rw-r--r--gtk/deprecated/gtkimagemenuitem.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/gtk/deprecated/gtkimagemenuitem.c b/gtk/deprecated/gtkimagemenuitem.c
index 3b8e7a2cc6..f063c2e45e 100644
--- a/gtk/deprecated/gtkimagemenuitem.c
+++ b/gtk/deprecated/gtkimagemenuitem.c
@@ -79,6 +79,35 @@
* consider using icons in menu items only sparingly, and for "objects" (or
* "nouns") elements only, like bookmarks, files, and links; "actions" (or
* "verbs") should not have icons.
+ *
+ * Furthermore, if you would like to display keyboard accelerator, you must
+ * pack the accel label into the box using gtk_box_pack_end() and align the
+ * label, otherwise the accelerator will not display correctly. The following
+ * code snippet adds a keyboard accelerator to the menu item, with a key
+ * binding of Ctrl+M:
+ *
+ * |[<!-- language="C" -->
+ * GtkWidget *box = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
+ * GtkWidget *icon = gtk_image_new_from_icon_name ("folder-music-symbolic", GTK_ICON_SIZE_MENU);
+ * GtkWidget *label = gtk_accel_label_new ("Music");
+ * GtkWidget *menu_item = gtk_menu_item_new ();
+ * GtkAccelGroup *accel_group = gtk_accel_group_new ();
+ *
+ * gtk_container_add (GTK_CONTAINER (box), icon);
+ *
+ * gtk_label_set_use_underline (GTK_LABEL (label), TRUE);
+ * gtk_label_set_xalign (GTK_LABEL (label), 0.0);
+ *
+ * gtk_widget_add_accelerator (menu_item, "activate", accel_group,
+ * GDK_KEY_m, GDK_CONTROL_MASK, GTK_ACCEL_VISIBLE);
+ * gtk_accel_label_set_accel_widget (GTK_ACCEL_LABEL (label), menu_item);
+ *
+ * gtk_box_pack_end (GTK_BOX (box), label, TRUE, TRUE, 0);
+ *
+ * gtk_container_add (GTK_CONTAINER (menu_item), box);
+ *
+ * gtk_widget_show_all (menu_item);
+ * ]|
*/