diff options
author | Christian Persch <chpe@gnome.org> | 2009-08-16 22:57:49 +0200 |
---|---|---|
committer | Christian Persch <chpe@gnome.org> | 2009-11-27 19:14:35 +0100 |
commit | e571273d81cc22bd258bfd47b6c53672043ea7da (patch) | |
tree | ef5be7935c79bdc7217bb5a0b5cbb8b2905272d7 /gtk/gtkaction.c | |
parent | 1e476186cbbc64340b89f76db96fb49957739112 (diff) | |
download | gtk+-e571273d81cc22bd258bfd47b6c53672043ea7da.tar.gz |
Add gtk_action_[sg]et_always_show_image()
Add a way to tell a GtkAction to have its menu item proxies always show
their image. Bug #589842.
Diffstat (limited to 'gtk/gtkaction.c')
-rw-r--r-- | gtk/gtkaction.c | 84 |
1 files changed, 81 insertions, 3 deletions
diff --git a/gtk/gtkaction.c b/gtk/gtkaction.c index 708e0c2e01..a8438ca0a8 100644 --- a/gtk/gtkaction.c +++ b/gtk/gtkaction.c @@ -72,6 +72,7 @@ struct _GtkActionPrivate guint is_important : 1; guint hide_if_empty : 1; guint visible_overflown : 1; + guint always_show_image : 1; guint recursion_guard : 1; guint activate_blocked : 1; @@ -110,7 +111,8 @@ enum PROP_HIDE_IF_EMPTY, PROP_SENSITIVE, PROP_VISIBLE, - PROP_ACTION_GROUP + PROP_ACTION_GROUP, + PROP_ALWAYS_SHOW_IMAGE }; /* GtkBuildable */ @@ -355,6 +357,25 @@ gtk_action_class_init (GtkActionClass *klass) GTK_PARAM_READWRITE)); /** + * GtkAction:always-show-image: + * + * If %TRUE, the action's menu item proxies will ignore the #GtkSettings:gtk-menu-images + * setting and always show their image, if available. + * + * Use this property if the menu item would be useless or hard to use + * without their image. + * + * Since: 2.20 + **/ + g_object_class_install_property (gobject_class, + PROP_ALWAYS_SHOW_IMAGE, + g_param_spec_boolean ("always-show-image", + P_("Always show image"), + P_("Whether the image will always be shown"), + FALSE, + GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT)); + + /** * GtkAction::activate: * @action: the #GtkAction * @@ -390,6 +411,7 @@ gtk_action_init (GtkAction *action) action->private_data->visible_overflown = TRUE; action->private_data->is_important = FALSE; action->private_data->hide_if_empty = TRUE; + action->private_data->always_show_image = FALSE; action->private_data->activate_blocked = FALSE; action->private_data->sensitive = TRUE; @@ -551,6 +573,9 @@ gtk_action_set_property (GObject *object, case PROP_ACTION_GROUP: gtk_action_set_action_group (action, g_value_get_object (value)); break; + case PROP_ALWAYS_SHOW_IMAGE: + gtk_action_set_always_show_image (action, g_value_get_boolean (value)); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; @@ -614,6 +639,9 @@ gtk_action_get_property (GObject *object, case PROP_ACTION_GROUP: g_value_set_object (value, action->private_data->action_group); break; + case PROP_ALWAYS_SHOW_IMAGE: + g_value_set_boolean (value, action->private_data->always_show_image); + break; default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; @@ -1167,8 +1195,6 @@ gtk_action_set_is_important (GtkAction *action, { g_return_if_fail (GTK_IS_ACTION (action)); - g_return_if_fail (GTK_IS_ACTION (action)); - is_important = is_important != FALSE; if (action->private_data->is_important != is_important) @@ -1198,6 +1224,58 @@ gtk_action_get_is_important (GtkAction *action) } /** + * gtk_action_set_always_show_image: + * @action: the action object + * @always_show: %TRUE if menuitem proxies should always show their image + * + * Sets whether @action<!-- -->'s menu item proxies will ignore the + * #GtkSettings:gtk-menu-images setting and always show their image, if available. + * + * Use this if the menu item would be useless or hard to use + * without their image. + * + * Since: 2.20 + */ +void +gtk_action_set_always_show_image (GtkAction *action, + gboolean always_show) +{ + GtkActionPrivate *priv; + + g_return_if_fail (GTK_IS_ACTION (action)); + + priv = action->private_data; + + always_show = always_show != FALSE; + + if (priv->always_show_image != always_show) + { + priv->always_show_image = always_show; + + g_object_notify (G_OBJECT (action), "always-show-image"); + } +} + +/** + * gtk_action_get_always_show_image: + * @action: + * + * Returns whether @action<!-- -->'s menu item proxies will ignore the + * #GtkSettings:gtk-menu-images setting and always show their image, if available. + * + * Returns: %TRUE if the menu item proxies will always show their image + * + * Since: 2.20 + */ +gboolean +gtk_action_get_always_show_image (GtkAction *action) +{ + g_return_val_if_fail (GTK_IS_ACTION (action), FALSE); + + return action->private_data->always_show_image; +} + +/** * gtk_action_set_label: * @action: a #GtkAction * @label: the label text to set |