mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-07 01:00:28 +00:00
Removed sealed members from GtkMenuItem
This commit is contained in:
parent
05eb55dcfc
commit
9dee9a84d0
@ -394,10 +394,11 @@ gtk_private_h_sources = \
|
||||
gtkfilesystem.h \
|
||||
gtkfilesystemmodel.h \
|
||||
gtkiconcache.h \
|
||||
gtkimcontextsimpleseqs.h \
|
||||
gtkimcontextsimpleseqs.h \
|
||||
gtkintl.h \
|
||||
gtkkeyhash.h \
|
||||
gtkmenuprivate.h \
|
||||
gtkmenuitemprivate.h \
|
||||
gtkmenushellprivate.h \
|
||||
gtkmnemonichash.h \
|
||||
gtkmodifierstyle.h \
|
||||
|
@ -21,11 +21,12 @@
|
||||
* Modified by the GTK+ Team and others 1997-2001. See the AUTHORS
|
||||
* file for a list of people on the GTK+ Team. See the ChangeLog
|
||||
* files for a list of changes. These files are distributed with
|
||||
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
||||
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
#include "gtkcheckmenuitem.h"
|
||||
#include "gtkmenuitemprivate.h"
|
||||
#include "gtkaccellabel.h"
|
||||
#include "gtkactivatable.h"
|
||||
#include "gtktoggleaction.h"
|
||||
@ -59,31 +60,31 @@ static gint gtk_check_menu_item_draw (GtkWidget *wid
|
||||
cairo_t *cr);
|
||||
static void gtk_check_menu_item_activate (GtkMenuItem *menu_item);
|
||||
static void gtk_check_menu_item_toggle_size_request (GtkMenuItem *menu_item,
|
||||
gint *requisition);
|
||||
gint *requisition);
|
||||
static void gtk_real_check_menu_item_draw_indicator (GtkCheckMenuItem *check_menu_item,
|
||||
cairo_t *cr);
|
||||
cairo_t *cr);
|
||||
static void gtk_check_menu_item_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec);
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec);
|
||||
static void gtk_check_menu_item_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec);
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec);
|
||||
|
||||
static void gtk_check_menu_item_activatable_interface_init (GtkActivatableIface *iface);
|
||||
static void gtk_check_menu_item_update (GtkActivatable *activatable,
|
||||
GtkAction *action,
|
||||
const gchar *property_name);
|
||||
GtkAction *action,
|
||||
const gchar *property_name);
|
||||
static void gtk_check_menu_item_sync_action_properties (GtkActivatable *activatable,
|
||||
GtkAction *action);
|
||||
GtkAction *action);
|
||||
|
||||
static GtkActivatableIface *parent_activatable_iface;
|
||||
static guint check_menu_item_signals[LAST_SIGNAL] = { 0 };
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GtkCheckMenuItem, gtk_check_menu_item, GTK_TYPE_MENU_ITEM,
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_ACTIVATABLE,
|
||||
gtk_check_menu_item_activatable_interface_init))
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_ACTIVATABLE,
|
||||
gtk_check_menu_item_activatable_interface_init))
|
||||
|
||||
static void
|
||||
gtk_check_menu_item_class_init (GtkCheckMenuItemClass *klass)
|
||||
@ -143,12 +144,12 @@ gtk_check_menu_item_class_init (GtkCheckMenuItemClass *klass)
|
||||
|
||||
check_menu_item_signals[TOGGLED] =
|
||||
g_signal_new (I_("toggled"),
|
||||
G_OBJECT_CLASS_TYPE (gobject_class),
|
||||
G_SIGNAL_RUN_FIRST,
|
||||
G_STRUCT_OFFSET (GtkCheckMenuItemClass, toggled),
|
||||
NULL, NULL,
|
||||
_gtk_marshal_VOID__VOID,
|
||||
G_TYPE_NONE, 0);
|
||||
G_OBJECT_CLASS_TYPE (gobject_class),
|
||||
G_SIGNAL_RUN_FIRST,
|
||||
G_STRUCT_OFFSET (GtkCheckMenuItemClass, toggled),
|
||||
NULL, NULL,
|
||||
_gtk_marshal_VOID__VOID,
|
||||
G_TYPE_NONE, 0);
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GtkCheckMenuItemPrivate));
|
||||
}
|
||||
@ -163,8 +164,8 @@ gtk_check_menu_item_activatable_interface_init (GtkActivatableIface *iface)
|
||||
|
||||
static void
|
||||
gtk_check_menu_item_update (GtkActivatable *activatable,
|
||||
GtkAction *action,
|
||||
const gchar *property_name)
|
||||
GtkAction *action,
|
||||
const gchar *property_name)
|
||||
{
|
||||
GtkCheckMenuItem *check_menu_item;
|
||||
|
||||
@ -184,12 +185,12 @@ gtk_check_menu_item_update (GtkActivatable *activatable,
|
||||
|
||||
if (strcmp (property_name, "draw-as-radio") == 0)
|
||||
gtk_check_menu_item_set_draw_as_radio (check_menu_item,
|
||||
gtk_toggle_action_get_draw_as_radio (GTK_TOGGLE_ACTION (action)));
|
||||
gtk_toggle_action_get_draw_as_radio (GTK_TOGGLE_ACTION (action)));
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_check_menu_item_sync_action_properties (GtkActivatable *activatable,
|
||||
GtkAction *action)
|
||||
GtkAction *action)
|
||||
{
|
||||
GtkCheckMenuItem *check_menu_item;
|
||||
|
||||
@ -208,7 +209,7 @@ gtk_check_menu_item_sync_action_properties (GtkActivatable *activatable,
|
||||
return;
|
||||
|
||||
gtk_check_menu_item_set_draw_as_radio (check_menu_item,
|
||||
gtk_toggle_action_get_draw_as_radio (GTK_TOGGLE_ACTION (action)));
|
||||
gtk_toggle_action_get_draw_as_radio (GTK_TOGGLE_ACTION (action)));
|
||||
}
|
||||
|
||||
GtkWidget*
|
||||
@ -221,8 +222,8 @@ GtkWidget*
|
||||
gtk_check_menu_item_new_with_label (const gchar *label)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_CHECK_MENU_ITEM,
|
||||
"label", label,
|
||||
NULL);
|
||||
"label", label,
|
||||
NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -240,14 +241,14 @@ GtkWidget*
|
||||
gtk_check_menu_item_new_with_mnemonic (const gchar *label)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_CHECK_MENU_ITEM,
|
||||
"label", label,
|
||||
"use-underline", TRUE,
|
||||
NULL);
|
||||
"label", label,
|
||||
"use-underline", TRUE,
|
||||
NULL);
|
||||
}
|
||||
|
||||
void
|
||||
gtk_check_menu_item_set_active (GtkCheckMenuItem *check_menu_item,
|
||||
gboolean is_active)
|
||||
gboolean is_active)
|
||||
{
|
||||
GtkCheckMenuItemPrivate *priv;
|
||||
|
||||
@ -280,7 +281,7 @@ gtk_check_menu_item_get_active (GtkCheckMenuItem *check_menu_item)
|
||||
|
||||
static void
|
||||
gtk_check_menu_item_toggle_size_request (GtkMenuItem *menu_item,
|
||||
gint *requisition)
|
||||
gint *requisition)
|
||||
{
|
||||
guint toggle_spacing;
|
||||
guint indicator_size;
|
||||
@ -288,9 +289,9 @@ gtk_check_menu_item_toggle_size_request (GtkMenuItem *menu_item,
|
||||
g_return_if_fail (GTK_IS_CHECK_MENU_ITEM (menu_item));
|
||||
|
||||
gtk_widget_style_get (GTK_WIDGET (menu_item),
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
"indicator-size", &indicator_size,
|
||||
NULL);
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
"indicator-size", &indicator_size,
|
||||
NULL);
|
||||
|
||||
*requisition = indicator_size + toggle_spacing;
|
||||
}
|
||||
@ -363,7 +364,7 @@ gtk_check_menu_item_get_inconsistent (GtkCheckMenuItem *check_menu_item)
|
||||
**/
|
||||
void
|
||||
gtk_check_menu_item_set_draw_as_radio (GtkCheckMenuItem *check_menu_item,
|
||||
gboolean draw_as_radio)
|
||||
gboolean draw_as_radio)
|
||||
{
|
||||
GtkCheckMenuItemPrivate *priv;
|
||||
|
||||
@ -450,7 +451,7 @@ gtk_check_menu_item_activate (GtkMenuItem *menu_item)
|
||||
|
||||
static void
|
||||
gtk_real_check_menu_item_draw_indicator (GtkCheckMenuItem *check_menu_item,
|
||||
cairo_t *cr)
|
||||
cairo_t *cr)
|
||||
{
|
||||
GtkCheckMenuItemPrivate *priv = check_menu_item->priv;
|
||||
GtkWidget *widget;
|
||||
@ -475,72 +476,72 @@ gtk_real_check_menu_item_draw_indicator (GtkCheckMenuItem *check_menu_item,
|
||||
gtk_widget_get_allocation (widget, &allocation);
|
||||
|
||||
gtk_widget_style_get (widget,
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
"horizontal-padding", &horizontal_padding,
|
||||
"indicator-size", &indicator_size,
|
||||
NULL);
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
"horizontal-padding", &horizontal_padding,
|
||||
"indicator-size", &indicator_size,
|
||||
NULL);
|
||||
|
||||
toggle_size = GTK_MENU_ITEM (check_menu_item)->toggle_size;
|
||||
toggle_size = GTK_MENU_ITEM (check_menu_item)->priv->toggle_size;
|
||||
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
|
||||
offset = border_width + style->xthickness + 2;
|
||||
|
||||
if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
|
||||
{
|
||||
{
|
||||
x = offset + horizontal_padding +
|
||||
(toggle_size - toggle_spacing - indicator_size) / 2;
|
||||
}
|
||||
(toggle_size - toggle_spacing - indicator_size) / 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
{
|
||||
x = allocation.width -
|
||||
offset - horizontal_padding - toggle_size + toggle_spacing +
|
||||
(toggle_size - toggle_spacing - indicator_size) / 2;
|
||||
}
|
||||
offset - horizontal_padding - toggle_size + toggle_spacing +
|
||||
(toggle_size - toggle_spacing - indicator_size) / 2;
|
||||
}
|
||||
|
||||
y = (allocation.height - indicator_size) / 2;
|
||||
|
||||
if (priv->active ||
|
||||
priv->always_show_toggle ||
|
||||
(gtk_widget_get_state (widget) == GTK_STATE_PRELIGHT))
|
||||
{
|
||||
priv->always_show_toggle ||
|
||||
(gtk_widget_get_state (widget) == GTK_STATE_PRELIGHT))
|
||||
{
|
||||
GdkWindow *window;
|
||||
|
||||
window = gtk_widget_get_window (widget);
|
||||
state_type = gtk_widget_get_state (widget);
|
||||
|
||||
if (priv->inconsistent)
|
||||
shadow_type = GTK_SHADOW_ETCHED_IN;
|
||||
else if (priv->active)
|
||||
shadow_type = GTK_SHADOW_IN;
|
||||
else
|
||||
shadow_type = GTK_SHADOW_OUT;
|
||||
|
||||
if (!gtk_widget_is_sensitive (widget))
|
||||
state_type = GTK_STATE_INSENSITIVE;
|
||||
state_type = gtk_widget_get_state (widget);
|
||||
|
||||
if (priv->draw_as_radio)
|
||||
{
|
||||
if (priv->inconsistent)
|
||||
shadow_type = GTK_SHADOW_ETCHED_IN;
|
||||
else if (priv->active)
|
||||
shadow_type = GTK_SHADOW_IN;
|
||||
else
|
||||
shadow_type = GTK_SHADOW_OUT;
|
||||
|
||||
if (!gtk_widget_is_sensitive (widget))
|
||||
state_type = GTK_STATE_INSENSITIVE;
|
||||
|
||||
if (priv->draw_as_radio)
|
||||
{
|
||||
gtk_paint_option (style, cr,
|
||||
state_type, shadow_type,
|
||||
widget, "option",
|
||||
x, y, indicator_size, indicator_size);
|
||||
}
|
||||
else
|
||||
{
|
||||
state_type, shadow_type,
|
||||
widget, "option",
|
||||
x, y, indicator_size, indicator_size);
|
||||
}
|
||||
else
|
||||
{
|
||||
gtk_paint_check (style, cr,
|
||||
state_type, shadow_type,
|
||||
widget, "check",
|
||||
x, y, indicator_size, indicator_size);
|
||||
}
|
||||
}
|
||||
state_type, shadow_type,
|
||||
widget, "check",
|
||||
x, y, indicator_size, indicator_size);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
gtk_check_menu_item_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkCheckMenuItem *checkitem = GTK_CHECK_MENU_ITEM (object);
|
||||
GtkCheckMenuItemPrivate *priv = checkitem->priv;
|
||||
@ -565,9 +566,9 @@ gtk_check_menu_item_get_property (GObject *object,
|
||||
|
||||
static void
|
||||
gtk_check_menu_item_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkCheckMenuItem *checkitem = GTK_CHECK_MENU_ITEM (object);
|
||||
|
||||
|
@ -28,6 +28,7 @@
|
||||
|
||||
#include "gtkimagemenuitem.h"
|
||||
|
||||
#include "gtkmenuitemprivate.h"
|
||||
#include "gtkaccellabel.h"
|
||||
#include "gtkstock.h"
|
||||
#include "gtkiconfactory.h"
|
||||
@ -64,55 +65,55 @@ static GtkActivatableIface *parent_activatable_iface;
|
||||
static void gtk_image_menu_item_destroy (GtkWidget *widget);
|
||||
static void gtk_image_menu_item_get_preferred_width (GtkWidget *widget,
|
||||
gint *minimum,
|
||||
gint *natural);
|
||||
gint *natural);
|
||||
static void gtk_image_menu_item_get_preferred_height (GtkWidget *widget,
|
||||
gint *minimum,
|
||||
gint *natural);
|
||||
gint *natural);
|
||||
static void gtk_image_menu_item_get_preferred_height_for_width (GtkWidget *widget,
|
||||
gint width,
|
||||
gint *minimum,
|
||||
gint *natural);
|
||||
gint width,
|
||||
gint *minimum,
|
||||
gint *natural);
|
||||
static void gtk_image_menu_item_size_allocate (GtkWidget *widget,
|
||||
GtkAllocation *allocation);
|
||||
static void gtk_image_menu_item_map (GtkWidget *widget);
|
||||
static void gtk_image_menu_item_remove (GtkContainer *container,
|
||||
GtkWidget *child);
|
||||
static void gtk_image_menu_item_toggle_size_request (GtkMenuItem *menu_item,
|
||||
gint *requisition);
|
||||
gint *requisition);
|
||||
static void gtk_image_menu_item_set_label (GtkMenuItem *menu_item,
|
||||
const gchar *label);
|
||||
const gchar *label);
|
||||
static G_CONST_RETURN gchar *gtk_image_menu_item_get_label (GtkMenuItem *menu_item);
|
||||
|
||||
static void gtk_image_menu_item_forall (GtkContainer *container,
|
||||
gboolean include_internals,
|
||||
GtkCallback callback,
|
||||
gpointer callback_data);
|
||||
gboolean include_internals,
|
||||
GtkCallback callback,
|
||||
gpointer callback_data);
|
||||
|
||||
static void gtk_image_menu_item_finalize (GObject *object);
|
||||
static void gtk_image_menu_item_set_property (GObject *object,
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec);
|
||||
guint prop_id,
|
||||
const GValue *value,
|
||||
GParamSpec *pspec);
|
||||
static void gtk_image_menu_item_get_property (GObject *object,
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec);
|
||||
guint prop_id,
|
||||
GValue *value,
|
||||
GParamSpec *pspec);
|
||||
static void gtk_image_menu_item_screen_changed (GtkWidget *widget,
|
||||
GdkScreen *previous_screen);
|
||||
GdkScreen *previous_screen);
|
||||
|
||||
static void gtk_image_menu_item_recalculate (GtkImageMenuItem *image_menu_item);
|
||||
|
||||
static void gtk_image_menu_item_activatable_interface_init (GtkActivatableIface *iface);
|
||||
static void gtk_image_menu_item_update (GtkActivatable *activatable,
|
||||
GtkAction *action,
|
||||
const gchar *property_name);
|
||||
GtkAction *action,
|
||||
const gchar *property_name);
|
||||
static void gtk_image_menu_item_sync_action_properties (GtkActivatable *activatable,
|
||||
GtkAction *action);
|
||||
GtkAction *action);
|
||||
|
||||
|
||||
G_DEFINE_TYPE_WITH_CODE (GtkImageMenuItem, gtk_image_menu_item, GTK_TYPE_MENU_ITEM,
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_ACTIVATABLE,
|
||||
gtk_image_menu_item_activatable_interface_init))
|
||||
G_IMPLEMENT_INTERFACE (GTK_TYPE_ACTIVATABLE,
|
||||
gtk_image_menu_item_activatable_interface_init))
|
||||
|
||||
|
||||
static void
|
||||
@ -133,7 +134,7 @@ gtk_image_menu_item_class_init (GtkImageMenuItemClass *klass)
|
||||
|
||||
container_class->forall = gtk_image_menu_item_forall;
|
||||
container_class->remove = gtk_image_menu_item_remove;
|
||||
|
||||
|
||||
menu_item_class->toggle_size_request = gtk_image_menu_item_toggle_size_request;
|
||||
menu_item_class->set_label = gtk_image_menu_item_set_label;
|
||||
menu_item_class->get_label = gtk_image_menu_item_get_label;
|
||||
@ -141,7 +142,7 @@ gtk_image_menu_item_class_init (GtkImageMenuItemClass *klass)
|
||||
gobject_class->finalize = gtk_image_menu_item_finalize;
|
||||
gobject_class->set_property = gtk_image_menu_item_set_property;
|
||||
gobject_class->get_property = gtk_image_menu_item_get_property;
|
||||
|
||||
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_IMAGE,
|
||||
g_param_spec_object ("image",
|
||||
@ -156,33 +157,33 @@ gtk_image_menu_item_class_init (GtkImageMenuItemClass *klass)
|
||||
* stock id to select the stock item for the item.
|
||||
*
|
||||
* Since: 2.16
|
||||
**/
|
||||
*/
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_USE_STOCK,
|
||||
g_param_spec_boolean ("use-stock",
|
||||
P_("Use stock"),
|
||||
P_("Whether to use the label text to create a stock menu item"),
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
P_("Use stock"),
|
||||
P_("Whether to use the label text to create a stock menu item"),
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
|
||||
/**
|
||||
* GtkImageMenuItem:always-show-image:
|
||||
*
|
||||
* If %TRUE, the menu item will ignore the #GtkSettings:gtk-menu-images
|
||||
* If %TRUE, the menu item will ignore the #GtkSettings:gtk-menu-images
|
||||
* setting and always show the image, if available.
|
||||
*
|
||||
* Use this property if the menuitem would be useless or hard to use
|
||||
* without the image.
|
||||
* without the image.
|
||||
*
|
||||
* Since: 2.16
|
||||
**/
|
||||
*/
|
||||
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));
|
||||
P_("Always show image"),
|
||||
P_("Whether the image will always be shown"),
|
||||
FALSE,
|
||||
GTK_PARAM_READWRITE | G_PARAM_CONSTRUCT));
|
||||
|
||||
/**
|
||||
* GtkImageMenuItem:accel-group:
|
||||
@ -190,14 +191,14 @@ gtk_image_menu_item_class_init (GtkImageMenuItemClass *klass)
|
||||
* The Accel Group to use for stock accelerator keys
|
||||
*
|
||||
* Since: 2.16
|
||||
**/
|
||||
*/
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_ACCEL_GROUP,
|
||||
g_param_spec_object ("accel-group",
|
||||
P_("Accel Group"),
|
||||
P_("The Accel Group to use for stock accelerator keys"),
|
||||
GTK_TYPE_ACCEL_GROUP,
|
||||
GTK_PARAM_WRITABLE));
|
||||
P_("Accel Group"),
|
||||
P_("The Accel Group to use for stock accelerator keys"),
|
||||
GTK_TYPE_ACCEL_GROUP,
|
||||
GTK_PARAM_WRITABLE));
|
||||
|
||||
g_type_class_add_private (klass, sizeof (GtkImageMenuItemPrivate));
|
||||
}
|
||||
@ -217,7 +218,7 @@ gtk_image_menu_item_init (GtkImageMenuItem *image_menu_item)
|
||||
priv->label = NULL;
|
||||
}
|
||||
|
||||
static void
|
||||
static void
|
||||
gtk_image_menu_item_finalize (GObject *object)
|
||||
{
|
||||
GtkImageMenuItemPrivate *priv = GTK_IMAGE_MENU_ITEM (object)->priv;
|
||||
@ -235,7 +236,7 @@ gtk_image_menu_item_set_property (GObject *object,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item = GTK_IMAGE_MENU_ITEM (object);
|
||||
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_IMAGE:
|
||||
@ -263,14 +264,14 @@ gtk_image_menu_item_get_property (GObject *object,
|
||||
GParamSpec *pspec)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item = GTK_IMAGE_MENU_ITEM (object);
|
||||
|
||||
|
||||
switch (prop_id)
|
||||
{
|
||||
case PROP_IMAGE:
|
||||
g_value_set_object (value, gtk_image_menu_item_get_image (image_menu_item));
|
||||
break;
|
||||
case PROP_USE_STOCK:
|
||||
g_value_set_boolean (value, gtk_image_menu_item_get_use_stock (image_menu_item));
|
||||
g_value_set_boolean (value, gtk_image_menu_item_get_use_stock (image_menu_item));
|
||||
break;
|
||||
case PROP_ALWAYS_SHOW_IMAGE:
|
||||
g_value_set_boolean (value, gtk_image_menu_item_get_always_show_image (image_menu_item));
|
||||
@ -325,7 +326,7 @@ gtk_image_menu_item_destroy (GtkWidget *widget)
|
||||
|
||||
static void
|
||||
gtk_image_menu_item_toggle_size_request (GtkMenuItem *menu_item,
|
||||
gint *requisition)
|
||||
gint *requisition)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item = GTK_IMAGE_MENU_ITEM (menu_item);
|
||||
GtkImageMenuItemPrivate *priv = image_menu_item->priv;
|
||||
@ -350,19 +351,19 @@ gtk_image_menu_item_toggle_size_request (GtkMenuItem *menu_item,
|
||||
gtk_widget_get_preferred_size (priv->image, &image_requisition, NULL);
|
||||
|
||||
gtk_widget_style_get (GTK_WIDGET (menu_item),
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
NULL);
|
||||
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
NULL);
|
||||
|
||||
if (pack_dir == GTK_PACK_DIRECTION_LTR || pack_dir == GTK_PACK_DIRECTION_RTL)
|
||||
{
|
||||
if (image_requisition.width > 0)
|
||||
*requisition = image_requisition.width + toggle_spacing;
|
||||
}
|
||||
{
|
||||
if (image_requisition.width > 0)
|
||||
*requisition = image_requisition.width + toggle_spacing;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (image_requisition.height > 0)
|
||||
*requisition = image_requisition.height + toggle_spacing;
|
||||
}
|
||||
{
|
||||
if (image_requisition.height > 0)
|
||||
*requisition = image_requisition.height + toggle_spacing;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -378,15 +379,15 @@ gtk_image_menu_item_recalculate (GtkImageMenuItem *image_menu_item)
|
||||
{
|
||||
|
||||
if (!priv->image)
|
||||
{
|
||||
image = gtk_image_new_from_stock (priv->label, GTK_ICON_SIZE_MENU);
|
||||
gtk_image_menu_item_set_image (image_menu_item, image);
|
||||
}
|
||||
{
|
||||
image = gtk_image_new_from_stock (priv->label, GTK_ICON_SIZE_MENU);
|
||||
gtk_image_menu_item_set_image (image_menu_item, image);
|
||||
}
|
||||
|
||||
if (gtk_stock_lookup (priv->label, &stock_item))
|
||||
resolved_label = stock_item.label;
|
||||
resolved_label = stock_item.label;
|
||||
|
||||
gtk_menu_item_set_use_underline (GTK_MENU_ITEM (image_menu_item), TRUE);
|
||||
gtk_menu_item_set_use_underline (GTK_MENU_ITEM (image_menu_item), TRUE);
|
||||
}
|
||||
|
||||
GTK_MENU_ITEM_CLASS
|
||||
@ -394,9 +395,9 @@ gtk_image_menu_item_recalculate (GtkImageMenuItem *image_menu_item)
|
||||
|
||||
}
|
||||
|
||||
static void
|
||||
static void
|
||||
gtk_image_menu_item_set_label (GtkMenuItem *menu_item,
|
||||
const gchar *label)
|
||||
const gchar *label)
|
||||
{
|
||||
GtkImageMenuItemPrivate *priv = GTK_IMAGE_MENU_ITEM (menu_item)->priv;
|
||||
|
||||
@ -422,8 +423,8 @@ gtk_image_menu_item_get_label (GtkMenuItem *menu_item)
|
||||
|
||||
static void
|
||||
gtk_image_menu_item_get_preferred_width (GtkWidget *widget,
|
||||
gint *minimum,
|
||||
gint *natural)
|
||||
gint *minimum,
|
||||
gint *natural)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item = GTK_IMAGE_MENU_ITEM (widget);
|
||||
GtkImageMenuItemPrivate *priv = image_menu_item->priv;
|
||||
@ -458,8 +459,8 @@ gtk_image_menu_item_get_preferred_width (GtkWidget *widget,
|
||||
|
||||
static void
|
||||
gtk_image_menu_item_get_preferred_height (GtkWidget *widget,
|
||||
gint *minimum,
|
||||
gint *natural)
|
||||
gint *minimum,
|
||||
gint *natural)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item = GTK_IMAGE_MENU_ITEM (widget);
|
||||
GtkImageMenuItemPrivate *priv = image_menu_item->priv;
|
||||
@ -494,9 +495,9 @@ gtk_image_menu_item_get_preferred_height (GtkWidget *widget,
|
||||
|
||||
static void
|
||||
gtk_image_menu_item_get_preferred_height_for_width (GtkWidget *widget,
|
||||
gint width,
|
||||
gint *minimum,
|
||||
gint *natural)
|
||||
gint width,
|
||||
gint *minimum,
|
||||
gint *natural)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item = GTK_IMAGE_MENU_ITEM (widget);
|
||||
GtkImageMenuItemPrivate *priv = image_menu_item->priv;
|
||||
@ -556,12 +557,14 @@ gtk_image_menu_item_size_allocate (GtkWidget *widget,
|
||||
GtkRequisition child_requisition;
|
||||
GtkAllocation child_allocation;
|
||||
guint horizontal_padding, toggle_spacing;
|
||||
gint toggle_size;
|
||||
|
||||
toggle_size = GTK_MENU_ITEM (image_menu_item)->priv->toggle_size;
|
||||
gtk_widget_style_get (widget,
|
||||
"horizontal-padding", &horizontal_padding,
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
NULL);
|
||||
|
||||
"horizontal-padding", &horizontal_padding,
|
||||
"toggle-spacing", &toggle_spacing,
|
||||
NULL);
|
||||
|
||||
/* Man this is lame hardcoding action, but I can't
|
||||
* come up with a solution that's really better.
|
||||
*/
|
||||
@ -571,43 +574,39 @@ gtk_image_menu_item_size_allocate (GtkWidget *widget,
|
||||
gtk_widget_get_allocation (widget, &widget_allocation);
|
||||
|
||||
if (pack_dir == GTK_PACK_DIRECTION_LTR ||
|
||||
pack_dir == GTK_PACK_DIRECTION_RTL)
|
||||
{
|
||||
offset = gtk_container_get_border_width (GTK_CONTAINER (image_menu_item)) +
|
||||
pack_dir == GTK_PACK_DIRECTION_RTL)
|
||||
{
|
||||
offset = gtk_container_get_border_width (GTK_CONTAINER (image_menu_item)) +
|
||||
gtk_widget_get_style (widget)->xthickness;
|
||||
|
||||
if ((gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) ==
|
||||
(pack_dir == GTK_PACK_DIRECTION_LTR))
|
||||
x = offset + horizontal_padding +
|
||||
(GTK_MENU_ITEM (image_menu_item)->toggle_size -
|
||||
toggle_spacing - child_requisition.width) / 2;
|
||||
else
|
||||
if ((gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) ==
|
||||
(pack_dir == GTK_PACK_DIRECTION_LTR))
|
||||
x = offset + horizontal_padding +
|
||||
(toggle_size - toggle_spacing - child_requisition.width) / 2;
|
||||
else
|
||||
x = widget_allocation.width - offset - horizontal_padding -
|
||||
GTK_MENU_ITEM (image_menu_item)->toggle_size + toggle_spacing +
|
||||
(GTK_MENU_ITEM (image_menu_item)->toggle_size -
|
||||
toggle_spacing - child_requisition.width) / 2;
|
||||
toggle_size + toggle_spacing +
|
||||
(toggle_size - toggle_spacing - child_requisition.width) / 2;
|
||||
|
||||
y = (widget_allocation.height - child_requisition.height) / 2;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
offset = gtk_container_get_border_width (GTK_CONTAINER (image_menu_item)) +
|
||||
{
|
||||
offset = gtk_container_get_border_width (GTK_CONTAINER (image_menu_item)) +
|
||||
gtk_widget_get_style (widget)->ythickness;
|
||||
|
||||
if ((gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) ==
|
||||
(pack_dir == GTK_PACK_DIRECTION_TTB))
|
||||
y = offset + horizontal_padding +
|
||||
(GTK_MENU_ITEM (image_menu_item)->toggle_size -
|
||||
toggle_spacing - child_requisition.height) / 2;
|
||||
else
|
||||
if ((gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) ==
|
||||
(pack_dir == GTK_PACK_DIRECTION_TTB))
|
||||
y = offset + horizontal_padding +
|
||||
(toggle_size - toggle_spacing - child_requisition.height) / 2;
|
||||
else
|
||||
y = widget_allocation.height - offset - horizontal_padding -
|
||||
GTK_MENU_ITEM (image_menu_item)->toggle_size + toggle_spacing +
|
||||
(GTK_MENU_ITEM (image_menu_item)->toggle_size -
|
||||
toggle_spacing - child_requisition.height) / 2;
|
||||
toggle_size + toggle_spacing +
|
||||
(toggle_size - toggle_spacing - child_requisition.height) / 2;
|
||||
|
||||
x = (widget_allocation.width - child_requisition.width) / 2;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
child_allocation.width = child_requisition.width;
|
||||
child_allocation.height = child_requisition.height;
|
||||
child_allocation.x = widget_allocation.x + MAX (x, 0);
|
||||
@ -619,7 +618,7 @@ gtk_image_menu_item_size_allocate (GtkWidget *widget,
|
||||
|
||||
static void
|
||||
gtk_image_menu_item_forall (GtkContainer *container,
|
||||
gboolean include_internals,
|
||||
gboolean include_internals,
|
||||
GtkCallback callback,
|
||||
gpointer callback_data)
|
||||
{
|
||||
@ -636,7 +635,7 @@ gtk_image_menu_item_forall (GtkContainer *container,
|
||||
}
|
||||
|
||||
|
||||
static void
|
||||
static void
|
||||
gtk_image_menu_item_activatable_interface_init (GtkActivatableIface *iface)
|
||||
{
|
||||
parent_activatable_iface = g_type_interface_peek_parent (iface);
|
||||
@ -651,7 +650,7 @@ activatable_update_stock_id (GtkImageMenuItem *image_menu_item, GtkAction *actio
|
||||
const gchar *stock_id = gtk_action_get_stock_id (action);
|
||||
|
||||
image = gtk_image_menu_item_get_image (image_menu_item);
|
||||
|
||||
|
||||
if (GTK_IS_IMAGE (image) &&
|
||||
stock_id && gtk_icon_factory_lookup_default (stock_id))
|
||||
{
|
||||
@ -688,8 +687,8 @@ activatable_update_icon_name (GtkImageMenuItem *image_menu_item, GtkAction *acti
|
||||
const gchar *icon_name = gtk_action_get_icon_name (action);
|
||||
|
||||
image = gtk_image_menu_item_get_image (image_menu_item);
|
||||
|
||||
if (GTK_IS_IMAGE (image) &&
|
||||
|
||||
if (GTK_IS_IMAGE (image) &&
|
||||
(gtk_image_get_storage_type (GTK_IMAGE (image)) == GTK_IMAGE_EMPTY ||
|
||||
gtk_image_get_storage_type (GTK_IMAGE (image)) == GTK_IMAGE_ICON_NAME))
|
||||
{
|
||||
@ -699,8 +698,8 @@ activatable_update_icon_name (GtkImageMenuItem *image_menu_item, GtkAction *acti
|
||||
|
||||
static void
|
||||
gtk_image_menu_item_update (GtkActivatable *activatable,
|
||||
GtkAction *action,
|
||||
const gchar *property_name)
|
||||
GtkAction *action,
|
||||
const gchar *property_name)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item;
|
||||
gboolean use_appearance;
|
||||
@ -721,9 +720,9 @@ gtk_image_menu_item_update (GtkActivatable *activatable,
|
||||
activatable_update_icon_name (image_menu_item, action);
|
||||
}
|
||||
|
||||
static void
|
||||
static void
|
||||
gtk_image_menu_item_sync_action_properties (GtkActivatable *activatable,
|
||||
GtkAction *action)
|
||||
GtkAction *action)
|
||||
{
|
||||
GtkImageMenuItem *image_menu_item;
|
||||
GtkWidget *image;
|
||||
@ -746,15 +745,15 @@ gtk_image_menu_item_sync_action_properties (GtkActivatable *activatable,
|
||||
gtk_image_menu_item_set_image (image_menu_item, NULL);
|
||||
image = NULL;
|
||||
}
|
||||
|
||||
|
||||
if (!image)
|
||||
{
|
||||
image = gtk_image_new ();
|
||||
gtk_widget_show (image);
|
||||
gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (activatable),
|
||||
image);
|
||||
image);
|
||||
}
|
||||
|
||||
|
||||
if (!activatable_update_stock_id (image_menu_item, action) &&
|
||||
!activatable_update_gicon (image_menu_item, action))
|
||||
activatable_update_icon_name (image_menu_item, action);
|
||||
@ -781,14 +780,14 @@ gtk_image_menu_item_new (void)
|
||||
* @label: the text of the menu item.
|
||||
* @returns: a new #GtkImageMenuItem.
|
||||
*
|
||||
* Creates a new #GtkImageMenuItem containing a label.
|
||||
**/
|
||||
* Creates a new #GtkImageMenuItem containing a label.
|
||||
*/
|
||||
GtkWidget*
|
||||
gtk_image_menu_item_new_with_label (const gchar *label)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_IMAGE_MENU_ITEM,
|
||||
"label", label,
|
||||
NULL);
|
||||
return g_object_new (GTK_TYPE_IMAGE_MENU_ITEM,
|
||||
"label", label,
|
||||
NULL);
|
||||
}
|
||||
|
||||
|
||||
@ -801,25 +800,25 @@ gtk_image_menu_item_new_with_label (const gchar *label)
|
||||
* Creates a new #GtkImageMenuItem containing a label. The label
|
||||
* will be created using gtk_label_new_with_mnemonic(), so underscores
|
||||
* in @label indicate the mnemonic for the menu item.
|
||||
**/
|
||||
*/
|
||||
GtkWidget*
|
||||
gtk_image_menu_item_new_with_mnemonic (const gchar *label)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_IMAGE_MENU_ITEM,
|
||||
"use-underline", TRUE,
|
||||
"label", label,
|
||||
NULL);
|
||||
return g_object_new (GTK_TYPE_IMAGE_MENU_ITEM,
|
||||
"use-underline", TRUE,
|
||||
"label", label,
|
||||
NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
* gtk_image_menu_item_new_from_stock:
|
||||
* @stock_id: the name of the stock item.
|
||||
* @accel_group: (allow-none): the #GtkAccelGroup to add the menu items
|
||||
* @accel_group: (allow-none): the #GtkAccelGroup to add the menu items
|
||||
* accelerator to, or %NULL.
|
||||
* @returns: a new #GtkImageMenuItem.
|
||||
*
|
||||
* Creates a new #GtkImageMenuItem containing the image and text from a
|
||||
* stock item. Some stock ids have preprocessor macros like #GTK_STOCK_OK
|
||||
* Creates a new #GtkImageMenuItem containing the image and text from a
|
||||
* stock item. Some stock ids have preprocessor macros like #GTK_STOCK_OK
|
||||
* and #GTK_STOCK_APPLY.
|
||||
*
|
||||
* If you want this menu item to have changeable accelerators, then pass in
|
||||
@ -827,16 +826,16 @@ gtk_image_menu_item_new_with_mnemonic (const gchar *label)
|
||||
* appropriate path for the menu item, use gtk_stock_lookup() to look up the
|
||||
* standard accelerator for the stock item, and if one is found, call
|
||||
* gtk_accel_map_add_entry() to register it.
|
||||
**/
|
||||
*/
|
||||
GtkWidget*
|
||||
gtk_image_menu_item_new_from_stock (const gchar *stock_id,
|
||||
GtkAccelGroup *accel_group)
|
||||
gtk_image_menu_item_new_from_stock (const gchar *stock_id,
|
||||
GtkAccelGroup *accel_group)
|
||||
{
|
||||
return g_object_new (GTK_TYPE_IMAGE_MENU_ITEM,
|
||||
"label", stock_id,
|
||||
"use-stock", TRUE,
|
||||
"accel-group", accel_group,
|
||||
NULL);
|
||||
return g_object_new (GTK_TYPE_IMAGE_MENU_ITEM,
|
||||
"label", stock_id,
|
||||
"use-stock", TRUE,
|
||||
"accel-group", accel_group,
|
||||
NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -851,7 +850,7 @@ gtk_image_menu_item_new_from_stock (const gchar *stock_id,
|
||||
*/
|
||||
void
|
||||
gtk_image_menu_item_set_use_stock (GtkImageMenuItem *image_menu_item,
|
||||
gboolean use_stock)
|
||||
gboolean use_stock)
|
||||
{
|
||||
GtkImageMenuItemPrivate *priv;
|
||||
|
||||
@ -894,12 +893,12 @@ gtk_image_menu_item_get_use_stock (GtkImageMenuItem *image_menu_item)
|
||||
* @image_menu_item: a #GtkImageMenuItem
|
||||
* @always_show: %TRUE if the menuitem should always show the image
|
||||
*
|
||||
* If %TRUE, the menu item will ignore the #GtkSettings:gtk-menu-images
|
||||
* If %TRUE, the menu item will ignore the #GtkSettings:gtk-menu-images
|
||||
* setting and always show the image, if available.
|
||||
*
|
||||
* Use this property if the menuitem would be useless or hard to use
|
||||
* without the image.
|
||||
*
|
||||
* without the image.
|
||||
*
|
||||
* Since: 2.16
|
||||
*/
|
||||
void
|
||||
@ -934,7 +933,7 @@ gtk_image_menu_item_set_always_show_image (GtkImageMenuItem *image_menu_item,
|
||||
*
|
||||
* Returns whether the menu item will ignore the #GtkSettings:gtk-menu-images
|
||||
* setting and always show the image, if available.
|
||||
*
|
||||
*
|
||||
* Returns: %TRUE if the menu item will always show the image
|
||||
*
|
||||
* Since: 2.16
|
||||
@ -964,16 +963,16 @@ gtk_image_menu_item_get_always_show_image (GtkImageMenuItem *image_menu_item)
|
||||
* Since: 2.16
|
||||
*/
|
||||
void
|
||||
gtk_image_menu_item_set_accel_group (GtkImageMenuItem *image_menu_item,
|
||||
GtkAccelGroup *accel_group)
|
||||
gtk_image_menu_item_set_accel_group (GtkImageMenuItem *image_menu_item,
|
||||
GtkAccelGroup *accel_group)
|
||||
{
|
||||
GtkImageMenuItemPrivate *priv;
|
||||
GtkStockItem stock_item;
|
||||
|
||||
/* Silent return for the constructor */
|
||||
if (!accel_group)
|
||||
if (!accel_group)
|
||||
return;
|
||||
|
||||
|
||||
g_return_if_fail (GTK_IS_IMAGE_MENU_ITEM (image_menu_item));
|
||||
g_return_if_fail (GTK_IS_ACCEL_GROUP (accel_group));
|
||||
|
||||
@ -982,18 +981,18 @@ gtk_image_menu_item_set_accel_group (GtkImageMenuItem *image_menu_item,
|
||||
if (priv->use_stock && priv->label && gtk_stock_lookup (priv->label, &stock_item))
|
||||
if (stock_item.keyval)
|
||||
{
|
||||
gtk_widget_add_accelerator (GTK_WIDGET (image_menu_item),
|
||||
"activate",
|
||||
accel_group,
|
||||
stock_item.keyval,
|
||||
stock_item.modifier,
|
||||
GTK_ACCEL_VISIBLE);
|
||||
|
||||
g_object_notify (G_OBJECT (image_menu_item), "accel-group");
|
||||
gtk_widget_add_accelerator (GTK_WIDGET (image_menu_item),
|
||||
"activate",
|
||||
accel_group,
|
||||
stock_item.keyval,
|
||||
stock_item.modifier,
|
||||
GTK_ACCEL_VISIBLE);
|
||||
|
||||
g_object_notify (G_OBJECT (image_menu_item), "accel-group");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
/**
|
||||
* gtk_image_menu_item_set_image:
|
||||
* @image_menu_item: a #GtkImageMenuItem.
|
||||
* @image: (allow-none): a widget to set as the image for the menu item.
|
||||
@ -1001,7 +1000,7 @@ gtk_image_menu_item_set_accel_group (GtkImageMenuItem *image_menu_item,
|
||||
* Sets the image of @image_menu_item to the given widget.
|
||||
* Note that it depends on the show-menu-images setting whether
|
||||
* the image will be displayed or not.
|
||||
**/
|
||||
*/
|
||||
void
|
||||
gtk_image_menu_item_set_image (GtkImageMenuItem *image_menu_item,
|
||||
GtkWidget *image)
|
||||
@ -1026,9 +1025,9 @@ gtk_image_menu_item_set_image (GtkImageMenuItem *image_menu_item,
|
||||
|
||||
gtk_widget_set_parent (image, GTK_WIDGET (image_menu_item));
|
||||
g_object_set (image,
|
||||
"visible", show_image (image_menu_item),
|
||||
"no-show-all", TRUE,
|
||||
NULL);
|
||||
"visible", show_image (image_menu_item),
|
||||
"no-show-all", TRUE,
|
||||
NULL);
|
||||
|
||||
g_object_notify (G_OBJECT (image_menu_item), "image");
|
||||
}
|
||||
@ -1060,9 +1059,9 @@ gtk_image_menu_item_remove (GtkContainer *container,
|
||||
if (child == priv->image)
|
||||
{
|
||||
gboolean widget_was_visible;
|
||||
|
||||
|
||||
widget_was_visible = gtk_widget_get_visible (child);
|
||||
|
||||
|
||||
gtk_widget_unparent (child);
|
||||
priv->image = NULL;
|
||||
|
||||
@ -1078,7 +1077,7 @@ gtk_image_menu_item_remove (GtkContainer *container,
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
static void
|
||||
show_image_change_notify (GtkImageMenuItem *image_menu_item)
|
||||
{
|
||||
GtkImageMenuItemPrivate *priv = image_menu_item->priv;
|
||||
@ -1086,15 +1085,15 @@ show_image_change_notify (GtkImageMenuItem *image_menu_item)
|
||||
if (priv->image)
|
||||
{
|
||||
if (show_image (image_menu_item))
|
||||
gtk_widget_show (priv->image);
|
||||
gtk_widget_show (priv->image);
|
||||
else
|
||||
gtk_widget_hide (priv->image);
|
||||
gtk_widget_hide (priv->image);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
traverse_container (GtkWidget *widget,
|
||||
gpointer data)
|
||||
gpointer data)
|
||||
{
|
||||
if (GTK_IS_IMAGE_MENU_ITEM (widget))
|
||||
show_image_change_notify (GTK_IMAGE_MENU_ITEM (widget));
|
||||
@ -1110,15 +1109,15 @@ gtk_image_menu_item_setting_changed (GtkSettings *settings)
|
||||
list = gtk_window_list_toplevels ();
|
||||
|
||||
for (l = list; l; l = l->next)
|
||||
gtk_container_forall (GTK_CONTAINER (l->data),
|
||||
traverse_container, NULL);
|
||||
gtk_container_forall (GTK_CONTAINER (l->data),
|
||||
traverse_container, NULL);
|
||||
|
||||
g_list_free (list);
|
||||
g_list_free (list);
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_image_menu_item_screen_changed (GtkWidget *widget,
|
||||
GdkScreen *previous_screen)
|
||||
GdkScreen *previous_screen)
|
||||
{
|
||||
GtkSettings *settings;
|
||||
gulong show_image_connection;
|
||||
@ -1127,11 +1126,11 @@ gtk_image_menu_item_screen_changed (GtkWidget *widget,
|
||||
return;
|
||||
|
||||
settings = gtk_widget_get_settings (widget);
|
||||
|
||||
show_image_connection =
|
||||
|
||||
show_image_connection =
|
||||
g_signal_handler_find (settings, G_SIGNAL_MATCH_FUNC, 0, 0,
|
||||
NULL, gtk_image_menu_item_setting_changed, NULL);
|
||||
|
||||
|
||||
if (show_image_connection)
|
||||
return;
|
||||
|
||||
|
@ -35,6 +35,7 @@
|
||||
#include "gtkmain.h"
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtkmenuprivate.h"
|
||||
#include "gtkmenuitemprivate.h"
|
||||
#include "gtkmenushellprivate.h"
|
||||
#include "gtktearoffmenuitem.h"
|
||||
#include "gtkwindow.h"
|
||||
@ -3032,13 +3033,13 @@ gtk_menu_get_preferred_width (GtkWidget *widget,
|
||||
* case the toggle size request depends on the size
|
||||
* request of a child of the child (e.g. for ImageMenuItem)
|
||||
*/
|
||||
GTK_MENU_ITEM (child)->show_submenu_indicator = TRUE;
|
||||
GTK_MENU_ITEM (child)->priv->show_submenu_indicator = TRUE;
|
||||
gtk_widget_get_preferred_width (child, &child_min, &child_nat);
|
||||
|
||||
gtk_menu_item_toggle_size_request (GTK_MENU_ITEM (child), &toggle_size);
|
||||
max_toggle_size = MAX (max_toggle_size, toggle_size);
|
||||
max_accel_width = MAX (max_accel_width,
|
||||
GTK_MENU_ITEM (child)->accelerator_width);
|
||||
GTK_MENU_ITEM (child)->priv->accelerator_width);
|
||||
|
||||
part = child_min / (r - l);
|
||||
min_width = MAX (min_width, part);
|
||||
@ -3325,7 +3326,7 @@ get_accel_path (GtkWidget *menu_item,
|
||||
path = _gtk_widget_get_accel_path (menu_item, locked);
|
||||
if (!path)
|
||||
{
|
||||
path = GTK_MENU_ITEM (menu_item)->accel_path;
|
||||
path = GTK_MENU_ITEM (menu_item)->priv->accel_path;
|
||||
|
||||
if (locked)
|
||||
{
|
||||
@ -3437,7 +3438,7 @@ gtk_menu_key_press (GtkWidget *widget,
|
||||
if (can_change_accels &&
|
||||
menu_shell->priv->active_menu_item &&
|
||||
gtk_bin_get_child (GTK_BIN (menu_shell->priv->active_menu_item)) && /* no separators */
|
||||
GTK_MENU_ITEM (menu_shell->priv->active_menu_item)->submenu == NULL && /* no submenus */
|
||||
GTK_MENU_ITEM (menu_shell->priv->active_menu_item)->priv->submenu == NULL && /* no submenus */
|
||||
(delete || gtk_accelerator_valid (accel_key, accel_mods)))
|
||||
{
|
||||
GtkWidget *menu_item = menu_shell->priv->active_menu_item;
|
||||
@ -3505,7 +3506,7 @@ definitely_within_item (GtkWidget *widget,
|
||||
gint x,
|
||||
gint y)
|
||||
{
|
||||
GdkWindow *window = GTK_MENU_ITEM (widget)->event_window;
|
||||
GdkWindow *window = GTK_MENU_ITEM (widget)->priv->event_window;
|
||||
int w, h;
|
||||
|
||||
w = gdk_window_get_width (window);
|
||||
@ -4250,10 +4251,10 @@ gtk_menu_leave_notify (GtkWidget *widget,
|
||||
* with a submenu, in which case we enter submenu navigation mode.
|
||||
*/
|
||||
if (menu_shell->priv->active_menu_item != NULL
|
||||
&& menu_item->submenu != NULL
|
||||
&& menu_item->submenu_placement == GTK_LEFT_RIGHT)
|
||||
&& menu_item->priv->submenu != NULL
|
||||
&& menu_item->priv->submenu_placement == GTK_LEFT_RIGHT)
|
||||
{
|
||||
if (GTK_MENU_SHELL (menu_item->submenu)->priv->active)
|
||||
if (GTK_MENU_SHELL (menu_item->priv->submenu)->priv->active)
|
||||
{
|
||||
gtk_menu_set_submenu_navigation_region (menu, menu_item, event);
|
||||
return TRUE;
|
||||
@ -4389,12 +4390,12 @@ gtk_menu_set_submenu_navigation_region (GtkMenu *menu,
|
||||
GtkMenuPopdownData *popdown_data;
|
||||
GdkWindow *window;
|
||||
|
||||
g_return_if_fail (menu_item->submenu != NULL);
|
||||
g_return_if_fail (menu_item->priv->submenu != NULL);
|
||||
g_return_if_fail (event != NULL);
|
||||
|
||||
event_widget = gtk_get_event_widget ((GdkEvent*) event);
|
||||
|
||||
window = gtk_widget_get_window (menu_item->submenu);
|
||||
window = gtk_widget_get_window (menu_item->priv->submenu);
|
||||
gdk_window_get_origin (window, &submenu_left, &submenu_top);
|
||||
|
||||
submenu_right = submenu_left + gdk_window_get_width (window);
|
||||
@ -4413,7 +4414,7 @@ gtk_menu_set_submenu_navigation_region (GtkMenu *menu,
|
||||
* location of the rectangle. This is why the width or height
|
||||
* can be negative.
|
||||
*/
|
||||
if (menu_item->submenu_direction == GTK_DIRECTION_RIGHT)
|
||||
if (menu_item->priv->submenu_direction == GTK_DIRECTION_RIGHT)
|
||||
{
|
||||
/* right */
|
||||
priv->navigation_x = submenu_left;
|
||||
@ -5359,7 +5360,7 @@ gtk_menu_move_current (GtkMenuShell *menu_shell,
|
||||
{
|
||||
GtkWidget *parent = menu_shell->priv->parent_menu_shell;
|
||||
|
||||
if (! GTK_MENU_ITEM (menu_shell->priv->active_menu_item)->submenu &&
|
||||
if (! GTK_MENU_ITEM (menu_shell->priv->active_menu_item)->priv->submenu &&
|
||||
(!parent ||
|
||||
g_list_length (GTK_MENU_SHELL (parent)->priv->children) <= 1))
|
||||
match = menu_shell->priv->active_menu_item;
|
||||
|
@ -32,7 +32,7 @@
|
||||
#include "gtkbindings.h"
|
||||
#include "gtkmain.h"
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtkmenuitem.h"
|
||||
#include "gtkmenuitemprivate.h"
|
||||
#include "gtkmenuprivate.h"
|
||||
#include "gtkmenushellprivate.h"
|
||||
#include "gtksettings.h"
|
||||
@ -313,7 +313,7 @@ gtk_menu_bar_size_request (GtkWidget *widget,
|
||||
{
|
||||
gint toggle_size;
|
||||
|
||||
GTK_MENU_ITEM (child)->show_submenu_indicator = FALSE;
|
||||
GTK_MENU_ITEM (child)->priv->show_submenu_indicator = FALSE;
|
||||
gtk_widget_get_preferred_size (child, &child_requisition, NULL);
|
||||
gtk_menu_item_toggle_size_request (GTK_MENU_ITEM (child),
|
||||
&toggle_size);
|
||||
@ -476,10 +476,11 @@ gtk_menu_bar_size_allocate (GtkWidget *widget,
|
||||
child_requisition.width += toggle_size;
|
||||
else
|
||||
child_requisition.height += toggle_size;
|
||||
|
||||
|
||||
/* Support for the right justified help menu */
|
||||
if ((children == NULL) && (GTK_IS_MENU_ITEM(child))
|
||||
&& (GTK_MENU_ITEM(child)->right_justify))
|
||||
if (children == NULL &&
|
||||
GTK_IS_MENU_ITEM (child) &&
|
||||
GTK_MENU_ITEM (child)->priv->right_justify)
|
||||
{
|
||||
ltr_x = allocation->width -
|
||||
child_requisition.width - offset;
|
||||
@ -526,11 +527,12 @@ gtk_menu_bar_size_allocate (GtkWidget *widget,
|
||||
child_requisition.width += toggle_size;
|
||||
else
|
||||
child_requisition.height += toggle_size;
|
||||
|
||||
/* Support for the right justified help menu */
|
||||
if ((children == NULL) && (GTK_IS_MENU_ITEM(child))
|
||||
&& (GTK_MENU_ITEM(child)->right_justify))
|
||||
{
|
||||
|
||||
/* Support for the right justified help menu */
|
||||
if (children == NULL &&
|
||||
GTK_IS_MENU_ITEM (child) &&
|
||||
GTK_MENU_ITEM (child)->priv->right_justify)
|
||||
{
|
||||
ltr_y = allocation->height -
|
||||
child_requisition.height - offset;
|
||||
}
|
||||
|
1235
gtk/gtkmenuitem.c
1235
gtk/gtkmenuitem.c
File diff suppressed because it is too large
Load Diff
@ -8,7 +8,7 @@
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
@ -36,57 +36,46 @@
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define GTK_TYPE_MENU_ITEM (gtk_menu_item_get_type ())
|
||||
#define GTK_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_MENU_ITEM, GtkMenuItem))
|
||||
#define GTK_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_MENU_ITEM, GtkMenuItemClass))
|
||||
#define GTK_IS_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_MENU_ITEM))
|
||||
#define GTK_IS_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MENU_ITEM))
|
||||
#define GTK_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_MENU_ITEM, GtkMenuItemClass))
|
||||
#define GTK_TYPE_MENU_ITEM (gtk_menu_item_get_type ())
|
||||
#define GTK_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_MENU_ITEM, GtkMenuItem))
|
||||
#define GTK_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_MENU_ITEM, GtkMenuItemClass))
|
||||
#define GTK_IS_MENU_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_MENU_ITEM))
|
||||
#define GTK_IS_MENU_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_MENU_ITEM))
|
||||
#define GTK_MENU_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_MENU_ITEM, GtkMenuItemClass))
|
||||
|
||||
|
||||
typedef struct _GtkMenuItem GtkMenuItem;
|
||||
typedef struct _GtkMenuItemClass GtkMenuItemClass;
|
||||
typedef struct _GtkMenuItem GtkMenuItem;
|
||||
typedef struct _GtkMenuItemClass GtkMenuItemClass;
|
||||
typedef struct _GtkMenuItemPrivate GtkMenuItemPrivate;
|
||||
|
||||
struct _GtkMenuItem
|
||||
{
|
||||
GtkBin bin;
|
||||
|
||||
GtkWidget *GSEAL (submenu);
|
||||
GdkWindow *GSEAL (event_window);
|
||||
|
||||
guint16 GSEAL (toggle_size);
|
||||
guint16 GSEAL (accelerator_width);
|
||||
gchar *GSEAL (accel_path);
|
||||
|
||||
guint GSEAL (show_submenu_indicator) : 1;
|
||||
guint GSEAL (submenu_placement) : 1;
|
||||
guint GSEAL (submenu_direction) : 1;
|
||||
guint GSEAL (right_justify): 1;
|
||||
guint GSEAL (timer_from_keypress) : 1;
|
||||
guint GSEAL (from_menubar) : 1;
|
||||
guint GSEAL (timer);
|
||||
/*< private >*/
|
||||
GtkMenuItemPrivate *priv;
|
||||
};
|
||||
|
||||
struct _GtkMenuItemClass
|
||||
{
|
||||
GtkBinClass parent_class;
|
||||
|
||||
/* If the following flag is true, then we should always hide
|
||||
* the menu when the MenuItem is activated. Otherwise, the
|
||||
|
||||
/* If the following flag is true, then we should always
|
||||
* hide the menu when the MenuItem is activated. Otherwise,
|
||||
* it is up to the caller. For instance, when navigating
|
||||
* a menu with the keyboard, <Space> doesn't hide, but
|
||||
* <Return> does.
|
||||
*/
|
||||
guint hide_on_activate : 1;
|
||||
|
||||
|
||||
void (* activate) (GtkMenuItem *menu_item);
|
||||
void (* activate_item) (GtkMenuItem *menu_item);
|
||||
void (* toggle_size_request) (GtkMenuItem *menu_item,
|
||||
gint *requisition);
|
||||
gint *requisition);
|
||||
void (* toggle_size_allocate) (GtkMenuItem *menu_item,
|
||||
gint allocation);
|
||||
gint allocation);
|
||||
void (* set_label) (GtkMenuItem *menu_item,
|
||||
const gchar *label);
|
||||
const gchar *label);
|
||||
G_CONST_RETURN gchar *(* get_label) (GtkMenuItem *menu_item);
|
||||
|
||||
void (* select) (GtkMenuItem *menu_item);
|
||||
@ -100,44 +89,36 @@ struct _GtkMenuItemClass
|
||||
};
|
||||
|
||||
|
||||
GType gtk_menu_item_get_type (void) G_GNUC_CONST;
|
||||
GType gtk_menu_item_get_type (void) G_GNUC_CONST;
|
||||
|
||||
GtkWidget* gtk_menu_item_new (void);
|
||||
GtkWidget* gtk_menu_item_new_with_label (const gchar *label);
|
||||
GtkWidget* gtk_menu_item_new_with_mnemonic (const gchar *label);
|
||||
void gtk_menu_item_set_submenu (GtkMenuItem *menu_item,
|
||||
GtkWidget *submenu);
|
||||
GtkWidget *submenu);
|
||||
GtkWidget* gtk_menu_item_get_submenu (GtkMenuItem *menu_item);
|
||||
void gtk_menu_item_select (GtkMenuItem *menu_item);
|
||||
void gtk_menu_item_deselect (GtkMenuItem *menu_item);
|
||||
void gtk_menu_item_activate (GtkMenuItem *menu_item);
|
||||
void gtk_menu_item_toggle_size_request (GtkMenuItem *menu_item,
|
||||
gint *requisition);
|
||||
gint *requisition);
|
||||
void gtk_menu_item_toggle_size_allocate (GtkMenuItem *menu_item,
|
||||
gint allocation);
|
||||
gint allocation);
|
||||
void gtk_menu_item_set_right_justified (GtkMenuItem *menu_item,
|
||||
gboolean right_justified);
|
||||
gboolean right_justified);
|
||||
gboolean gtk_menu_item_get_right_justified (GtkMenuItem *menu_item);
|
||||
void gtk_menu_item_set_accel_path (GtkMenuItem *menu_item,
|
||||
const gchar *accel_path);
|
||||
void gtk_menu_item_set_accel_path (GtkMenuItem *menu_item,
|
||||
const gchar *accel_path);
|
||||
G_CONST_RETURN gchar* gtk_menu_item_get_accel_path (GtkMenuItem *menu_item);
|
||||
|
||||
void gtk_menu_item_set_label (GtkMenuItem *menu_item,
|
||||
const gchar *label);
|
||||
const gchar *label);
|
||||
G_CONST_RETURN gchar *gtk_menu_item_get_label (GtkMenuItem *menu_item);
|
||||
|
||||
void gtk_menu_item_set_use_underline (GtkMenuItem *menu_item,
|
||||
gboolean setting);
|
||||
gboolean setting);
|
||||
gboolean gtk_menu_item_get_use_underline (GtkMenuItem *menu_item);
|
||||
|
||||
/* private */
|
||||
void _gtk_menu_item_refresh_accel_path (GtkMenuItem *menu_item,
|
||||
const gchar *prefix,
|
||||
GtkAccelGroup *accel_group,
|
||||
gboolean group_changed);
|
||||
gboolean _gtk_menu_item_is_selectable (GtkWidget *menu_item);
|
||||
void _gtk_menu_item_popup_submenu (GtkWidget *menu_item,
|
||||
gboolean with_delay);
|
||||
void _gtk_menu_item_popdown_submenu (GtkWidget *menu_item);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
63
gtk/gtkmenuitemprivate.h
Normal file
63
gtk/gtkmenuitemprivate.h
Normal file
@ -0,0 +1,63 @@
|
||||
/* GTK - The GIMP Toolkit
|
||||
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GTK_MENU_ITEM_PRIVATE_H__
|
||||
#define __GTK_MENU_ITEM_PRIVATE_H__
|
||||
|
||||
#include <gtk/gtkmenuitem.h>
|
||||
#include <gtk/gtkaction.h>
|
||||
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
struct _GtkMenuItemPrivate
|
||||
{
|
||||
GtkWidget *submenu;
|
||||
GdkWindow *event_window;
|
||||
|
||||
guint16 toggle_size;
|
||||
guint16 accelerator_width;
|
||||
gchar *accel_path;
|
||||
|
||||
guint show_submenu_indicator : 1;
|
||||
guint submenu_placement : 1;
|
||||
guint submenu_direction : 1;
|
||||
guint right_justify : 1;
|
||||
guint timer_from_keypress : 1;
|
||||
guint from_menubar : 1;
|
||||
guint use_action_appearance : 1;
|
||||
|
||||
guint timer;
|
||||
|
||||
GtkAction *action;
|
||||
};
|
||||
|
||||
void _gtk_menu_item_refresh_accel_path (GtkMenuItem *menu_item,
|
||||
const gchar *prefix,
|
||||
GtkAccelGroup *accel_group,
|
||||
gboolean group_changed);
|
||||
gboolean _gtk_menu_item_is_selectable (GtkWidget *menu_item);
|
||||
void _gtk_menu_item_popup_submenu (GtkWidget *menu_item,
|
||||
gboolean with_delay);
|
||||
void _gtk_menu_item_popdown_submenu (GtkWidget *menu_item);
|
||||
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GTK_MENU_ITEM_PRIVATE_H__ */
|
@ -32,7 +32,7 @@
|
||||
#include "gtkmain.h"
|
||||
#include "gtkmarshalers.h"
|
||||
#include "gtkmenubar.h"
|
||||
#include "gtkmenuitem.h"
|
||||
#include "gtkmenuitemprivate.h"
|
||||
#include "gtkmenushellprivate.h"
|
||||
#include "gtkmenuprivate.h"
|
||||
#include "gtkmnemonichash.h"
|
||||
@ -645,9 +645,10 @@ gtk_menu_shell_button_press (GtkWidget *widget,
|
||||
}
|
||||
}
|
||||
|
||||
if (menu_item && _gtk_menu_item_is_selectable (menu_item) &&
|
||||
GTK_MENU_ITEM (menu_item)->submenu != NULL &&
|
||||
!gtk_widget_get_visible (GTK_MENU_ITEM (menu_item)->submenu))
|
||||
if (menu_item &&
|
||||
_gtk_menu_item_is_selectable (menu_item) &&
|
||||
GTK_MENU_ITEM (menu_item)->priv->submenu != NULL &&
|
||||
!gtk_widget_get_visible (GTK_MENU_ITEM (menu_item)->priv->submenu))
|
||||
{
|
||||
_gtk_menu_item_popup_submenu (menu_item, FALSE);
|
||||
priv->activated_submenu = TRUE;
|
||||
@ -701,7 +702,7 @@ gtk_menu_shell_button_release (GtkWidget *widget,
|
||||
if (menu_item && (priv->active_menu_item == menu_item) &&
|
||||
_gtk_menu_item_is_selectable (menu_item))
|
||||
{
|
||||
GtkWidget *submenu = GTK_MENU_ITEM (menu_item)->submenu;
|
||||
GtkWidget *submenu = GTK_MENU_ITEM (menu_item)->priv->submenu;
|
||||
|
||||
if (submenu == NULL)
|
||||
{
|
||||
@ -955,11 +956,11 @@ gtk_menu_shell_enter_notify (GtkWidget *widget,
|
||||
* its submenu.
|
||||
*/
|
||||
if ((event->state & (GDK_BUTTON1_MASK|GDK_BUTTON2_MASK|GDK_BUTTON3_MASK)) &&
|
||||
GTK_MENU_ITEM (menu_item)->submenu != NULL)
|
||||
GTK_MENU_ITEM (menu_item)->priv->submenu != NULL)
|
||||
{
|
||||
GTK_MENU_SHELL (parent)->priv->activated_submenu = TRUE;
|
||||
|
||||
if (!gtk_widget_get_visible (GTK_MENU_ITEM (menu_item)->submenu))
|
||||
if (!gtk_widget_get_visible (GTK_MENU_ITEM (menu_item)->priv->submenu))
|
||||
{
|
||||
gboolean touchscreen_mode;
|
||||
|
||||
@ -1010,7 +1011,7 @@ gtk_menu_shell_leave_notify (GtkWidget *widget,
|
||||
}
|
||||
|
||||
if ((priv->active_menu_item == event_widget) &&
|
||||
(menu_item->submenu == NULL))
|
||||
(menu_item->priv->submenu == NULL))
|
||||
{
|
||||
if ((event->detail != GDK_NOTIFY_INFERIOR) &&
|
||||
(gtk_widget_get_state (GTK_WIDGET (menu_item)) != GTK_STATE_NORMAL))
|
||||
@ -1225,7 +1226,7 @@ gtk_menu_shell_real_select_item (GtkMenuShell *menu_shell,
|
||||
/* This allows the bizarre radio buttons-with-submenus-display-history
|
||||
* behavior
|
||||
*/
|
||||
if (GTK_MENU_ITEM (priv->active_menu_item)->submenu)
|
||||
if (GTK_MENU_ITEM (priv->active_menu_item)->priv->submenu)
|
||||
gtk_widget_activate (priv->active_menu_item);
|
||||
}
|
||||
|
||||
@ -1447,11 +1448,11 @@ gtk_menu_shell_select_submenu_first (GtkMenuShell *menu_shell)
|
||||
|
||||
menu_item = GTK_MENU_ITEM (priv->active_menu_item);
|
||||
|
||||
if (menu_item->submenu)
|
||||
if (menu_item->priv->submenu)
|
||||
{
|
||||
_gtk_menu_item_popup_submenu (GTK_WIDGET (menu_item), FALSE);
|
||||
gtk_menu_shell_select_first (GTK_MENU_SHELL (menu_item->submenu), TRUE);
|
||||
if (GTK_MENU_SHELL (menu_item->submenu)->priv->active_menu_item)
|
||||
gtk_menu_shell_select_first (GTK_MENU_SHELL (menu_item->priv->submenu), TRUE);
|
||||
if (GTK_MENU_SHELL (menu_item->priv->submenu)->priv->active_menu_item)
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@ -1483,8 +1484,8 @@ gtk_real_menu_shell_move_current (GtkMenuShell *menu_shell,
|
||||
case GTK_MENU_DIR_PARENT:
|
||||
if (touchscreen_mode &&
|
||||
priv->active_menu_item &&
|
||||
GTK_MENU_ITEM (priv->active_menu_item)->submenu &&
|
||||
gtk_widget_get_visible (GTK_MENU_ITEM (priv->active_menu_item)->submenu))
|
||||
GTK_MENU_ITEM (priv->active_menu_item)->priv->submenu &&
|
||||
gtk_widget_get_visible (GTK_MENU_ITEM (priv->active_menu_item)->priv->submenu))
|
||||
{
|
||||
/* if we are on a menu item that has an open submenu but the
|
||||
* focus is not in that submenu (e.g. because it's empty or
|
||||
@ -1522,9 +1523,9 @@ gtk_real_menu_shell_move_current (GtkMenuShell *menu_shell,
|
||||
*/
|
||||
else if (priv->active_menu_item &&
|
||||
_gtk_menu_item_is_selectable (priv->active_menu_item) &&
|
||||
GTK_MENU_ITEM (priv->active_menu_item)->submenu)
|
||||
GTK_MENU_ITEM (priv->active_menu_item)->priv->submenu)
|
||||
{
|
||||
GtkMenuShell *submenu = GTK_MENU_SHELL (GTK_MENU_ITEM (priv->active_menu_item)->submenu);
|
||||
GtkMenuShell *submenu = GTK_MENU_SHELL (GTK_MENU_ITEM (priv->active_menu_item)->priv->submenu);
|
||||
|
||||
if (GTK_MENU_SHELL_GET_CLASS (menu_shell)->submenu_placement !=
|
||||
GTK_MENU_SHELL_GET_CLASS (submenu)->submenu_placement)
|
||||
@ -1535,7 +1536,7 @@ gtk_real_menu_shell_move_current (GtkMenuShell *menu_shell,
|
||||
case GTK_MENU_DIR_CHILD:
|
||||
if (priv->active_menu_item &&
|
||||
_gtk_menu_item_is_selectable (priv->active_menu_item) &&
|
||||
GTK_MENU_ITEM (priv->active_menu_item)->submenu)
|
||||
GTK_MENU_ITEM (priv->active_menu_item)->priv->submenu)
|
||||
{
|
||||
if (gtk_menu_shell_select_submenu_first (menu_shell))
|
||||
break;
|
||||
@ -1562,17 +1563,13 @@ gtk_real_menu_shell_move_current (GtkMenuShell *menu_shell,
|
||||
|
||||
case GTK_MENU_DIR_PREV:
|
||||
gtk_menu_shell_move_selected (menu_shell, -1);
|
||||
if (!had_selection &&
|
||||
!priv->active_menu_item &&
|
||||
priv->children)
|
||||
if (!had_selection && !priv->active_menu_item && priv->children)
|
||||
_gtk_menu_shell_select_last (menu_shell, TRUE);
|
||||
break;
|
||||
|
||||
case GTK_MENU_DIR_NEXT:
|
||||
gtk_menu_shell_move_selected (menu_shell, 1);
|
||||
if (!had_selection &&
|
||||
!priv->active_menu_item &&
|
||||
priv->children)
|
||||
if (!had_selection && !priv->active_menu_item && priv->children)
|
||||
gtk_menu_shell_select_first (menu_shell, TRUE);
|
||||
break;
|
||||
}
|
||||
@ -1587,7 +1584,7 @@ gtk_real_menu_shell_activate_current (GtkMenuShell *menu_shell,
|
||||
if (priv->active_menu_item &&
|
||||
_gtk_menu_item_is_selectable (priv->active_menu_item))
|
||||
{
|
||||
if (GTK_MENU_ITEM (priv->active_menu_item)->submenu == NULL)
|
||||
if (GTK_MENU_ITEM (priv->active_menu_item)->priv->submenu == NULL)
|
||||
gtk_menu_shell_activate_item (menu_shell,
|
||||
priv->active_menu_item,
|
||||
force_hide);
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkmenuprivate.h"
|
||||
#include "gtkmenuitemprivate.h"
|
||||
#include "gtktearoffmenuitem.h"
|
||||
#include "gtkintl.h"
|
||||
|
||||
@ -186,28 +187,30 @@ gtk_tearoff_menu_item_draw (GtkWidget *widget,
|
||||
else
|
||||
shadow_type = GTK_SHADOW_OUT;
|
||||
|
||||
if (menu_item->toggle_size > ARROW_SIZE)
|
||||
if (menu_item->priv->toggle_size > ARROW_SIZE)
|
||||
{
|
||||
if (direction == GTK_TEXT_DIR_LTR) {
|
||||
arrow_x = x + (menu_item->toggle_size - ARROW_SIZE)/2;
|
||||
arrow_x = x + (menu_item->priv->toggle_size - ARROW_SIZE)/2;
|
||||
arrow_type = GTK_ARROW_LEFT;
|
||||
}
|
||||
else {
|
||||
arrow_x = x + width - menu_item->toggle_size + (menu_item->toggle_size - ARROW_SIZE)/2;
|
||||
arrow_type = GTK_ARROW_RIGHT;
|
||||
arrow_x = x + width - menu_item->priv->toggle_size + (menu_item->priv->toggle_size - ARROW_SIZE)/2;
|
||||
arrow_type = GTK_ARROW_RIGHT;
|
||||
}
|
||||
x += menu_item->toggle_size + BORDER_SPACING;
|
||||
x += menu_item->priv->toggle_size + BORDER_SPACING;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (direction == GTK_TEXT_DIR_LTR) {
|
||||
arrow_x = ARROW_SIZE / 2;
|
||||
arrow_type = GTK_ARROW_LEFT;
|
||||
}
|
||||
else {
|
||||
arrow_x = x + width - 2 * ARROW_SIZE + ARROW_SIZE / 2;
|
||||
arrow_type = GTK_ARROW_RIGHT;
|
||||
}
|
||||
if (direction == GTK_TEXT_DIR_LTR)
|
||||
{
|
||||
arrow_x = ARROW_SIZE / 2;
|
||||
arrow_type = GTK_ARROW_LEFT;
|
||||
}
|
||||
else
|
||||
{
|
||||
arrow_x = x + width - 2 * ARROW_SIZE + ARROW_SIZE / 2;
|
||||
arrow_type = GTK_ARROW_RIGHT;
|
||||
}
|
||||
x += 2 * ARROW_SIZE;
|
||||
}
|
||||
|
||||
@ -216,7 +219,7 @@ gtk_tearoff_menu_item_draw (GtkWidget *widget,
|
||||
state, shadow_type,
|
||||
widget, "tearoffmenuitem",
|
||||
arrow_type, FALSE,
|
||||
arrow_x, y + height / 2 - 5,
|
||||
arrow_x, y + height / 2 - 5,
|
||||
ARROW_SIZE, ARROW_SIZE);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user