summaryrefslogtreecommitdiff
path: root/gtk/gtkuimanager.c
diff options
context:
space:
mode:
authorMichael Natterer <mitch@imendio.com>2008-10-09 08:50:33 +0000
committerMichael Natterer <mitch@src.gnome.org>2008-10-09 08:50:33 +0000
commit1d82722199f82b6368be517e0e68cbebf62e45e4 (patch)
tree1b3a9f86bef586d4da260fad6da8d50875686595 /gtk/gtkuimanager.c
parentd84a56d3a3d4f9ce94a70da561d06c93780e990e (diff)
downloadgtk+-1d82722199f82b6368be517e0e68cbebf62e45e4.tar.gz
Bug 516425 – Optionally display accelerators in popups
2008-10-09 Michael Natterer <mitch@imendio.com> Bug 516425 – Optionally display accelerators in popups * gtk/gtkuimanager.h (enum GtkUIManagerItemType): add value GTK_UI_MANAGER_POPUP_WITH_ACCELS which works like _POPUP but shows the actions' accelerators. * gtk/gtkuimanager.c: honor the new enum value for programmatically created UIs, and support <popup accelerators="true"> in the XML for the same purpose. svn path=/trunk/; revision=21615
Diffstat (limited to 'gtk/gtkuimanager.c')
-rw-r--r--gtk/gtkuimanager.c30
1 files changed, 24 insertions, 6 deletions
diff --git a/gtk/gtkuimanager.c b/gtk/gtkuimanager.c
index 887b51e390..1066af9227 100644
--- a/gtk/gtkuimanager.c
+++ b/gtk/gtkuimanager.c
@@ -80,6 +80,7 @@ struct _Node {
guint dirty : 1;
guint expand : 1; /* used for separators */
+ guint popup_accels : 1;
};
#define GTK_UI_MANAGER_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_UI_MANAGER, GtkUIManagerPrivate))
@@ -1208,7 +1209,8 @@ start_element_handler (GMarkupParseContext *context,
GQuark action_quark;
gboolean top;
gboolean expand = FALSE;
-
+ gboolean accelerators = FALSE;
+
gboolean raise_error = TRUE;
node_name = NULL;
@@ -1235,6 +1237,10 @@ start_element_handler (GMarkupParseContext *context,
{
expand = !strcmp (attribute_values[i], "true");
}
+ else if (!strcmp (attribute_names[i], "accelerators"))
+ {
+ accelerators = !strcmp (attribute_values[i], "true");
+ }
/* else silently skip unknown attributes to be compatible with
* future additional attributes.
*/
@@ -1347,6 +1353,9 @@ start_element_handler (GMarkupParseContext *context,
node_name, strlen (node_name),
NODE_TYPE_POPUP,
TRUE, FALSE);
+
+ NODE_INFO (ctx->current)->popup_accels = accelerators;
+
if (NODE_INFO (ctx->current)->action_name == 0)
NODE_INFO (ctx->current)->action_name = action_quark;
@@ -1799,6 +1808,7 @@ gtk_ui_manager_add_ui (GtkUIManager *self,
node_type = NODE_TYPE_TOOLBAR;
break;
case GTK_UI_MANAGER_POPUP:
+ case GTK_UI_MANAGER_POPUP_WITH_ACCELS:
node_type = NODE_TYPE_POPUP;
break;
case GTK_UI_MANAGER_ACCELERATOR:
@@ -1823,6 +1833,9 @@ gtk_ui_manager_add_ui (GtkUIManager *self,
name, name ? strlen (name) : 0,
node_type, TRUE, top);
+ if (type == GTK_UI_MANAGER_POPUP_WITH_ACCELS)
+ NODE_INFO (child)->popup_accels = TRUE;
+
if (action != NULL)
action_quark = g_quark_from_string (action);
@@ -2199,7 +2212,8 @@ update_smart_separators (GtkWidget *proxy)
static void
update_node (GtkUIManager *self,
GNode *node,
- gboolean in_popup)
+ gboolean in_popup,
+ gboolean popup_accels)
{
Node *info;
GNode *child;
@@ -2219,7 +2233,11 @@ update_node (GtkUIManager *self,
if (!info->dirty)
return;
- in_popup = in_popup || (info->type == NODE_TYPE_POPUP);
+ if (info->type == NODE_TYPE_POPUP)
+ {
+ in_popup = TRUE;
+ popup_accels = info->popup_accels;
+ }
#ifdef DEBUG_UI_MANAGER
g_print ("update_node name=%s dirty=%d popup %d (",
@@ -2576,7 +2594,7 @@ update_node (GtkUIManager *self,
{
g_signal_connect (info->proxy, "notify::visible",
G_CALLBACK (update_smart_separators), NULL);
- if (in_popup)
+ if (in_popup && !popup_accels)
{
/* don't show accels in popups */
GtkWidget *label = GTK_BIN (info->proxy)->child;
@@ -2715,7 +2733,7 @@ update_node (GtkUIManager *self,
current = child;
child = current->next;
- update_node (self, current, in_popup);
+ update_node (self, current, in_popup, popup_accels);
}
if (info->proxy)
@@ -2757,7 +2775,7 @@ do_updates (GtkUIManager *self)
* the proxy is reconnected to the new action (or a new proxy widget
* is created and added to the parent container).
*/
- update_node (self, self->private_data->root_node, FALSE);
+ update_node (self, self->private_data->root_node, FALSE, FALSE);
self->private_data->update_tag = 0;