2003-06-29 23:34:20 +00:00
|
|
|
/* gtktoolitem.c
|
|
|
|
*
|
2003-12-29 10:55:53 +00:00
|
|
|
* Copyright (C) 2002 Anders Carlsson <andersca@gnome.org>
|
2003-06-29 23:34:20 +00:00
|
|
|
* Copyright (C) 2002 James Henstridge <james@daa.com.au>
|
|
|
|
* Copyright (C) 2003 Soeren Sandmann <sandmann@daimi.au.dk>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2004-03-06 03:38:59 +00:00
|
|
|
#include <config.h>
|
2003-06-29 23:34:20 +00:00
|
|
|
#include "gtktoolitem.h"
|
|
|
|
#include "gtkmarshalers.h"
|
|
|
|
#include "gtktoolbar.h"
|
|
|
|
#include "gtkseparatormenuitem.h"
|
|
|
|
#include "gtkintl.h"
|
|
|
|
#include "gtkmain.h"
|
2005-03-22 02:14:55 +00:00
|
|
|
#include "gtkprivate.h"
|
2006-09-10 06:39:16 +00:00
|
|
|
#include "gtkalias.h"
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
enum {
|
|
|
|
CREATE_MENU_PROXY,
|
|
|
|
TOOLBAR_RECONFIGURED,
|
|
|
|
SET_TOOLTIP,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_VISIBLE_HORIZONTAL,
|
|
|
|
PROP_VISIBLE_VERTICAL,
|
2003-08-04 21:13:55 +00:00
|
|
|
PROP_IS_IMPORTANT
|
2003-06-29 23:34:20 +00:00
|
|
|
};
|
|
|
|
|
2003-09-30 22:48:10 +00:00
|
|
|
#define GTK_TOOL_ITEM_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GTK_TYPE_TOOL_ITEM, GtkToolItemPrivate))
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
struct _GtkToolItemPrivate
|
|
|
|
{
|
|
|
|
gchar *tip_text;
|
|
|
|
gchar *tip_private;
|
|
|
|
|
|
|
|
guint visible_horizontal : 1;
|
|
|
|
guint visible_vertical : 1;
|
|
|
|
guint homogeneous : 1;
|
|
|
|
guint expand : 1;
|
|
|
|
guint use_drag_window : 1;
|
2003-08-04 21:13:55 +00:00
|
|
|
guint is_important : 1;
|
2003-07-08 10:58:23 +00:00
|
|
|
|
|
|
|
GdkWindow *drag_window;
|
|
|
|
|
|
|
|
gchar *menu_item_id;
|
|
|
|
GtkWidget *menu_item;
|
|
|
|
};
|
|
|
|
|
2003-06-29 23:34:20 +00:00
|
|
|
static void gtk_tool_item_finalize (GObject *object);
|
|
|
|
static void gtk_tool_item_parent_set (GtkWidget *toolitem,
|
|
|
|
GtkWidget *parent);
|
|
|
|
static void gtk_tool_item_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gtk_tool_item_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
2004-02-20 18:02:21 +00:00
|
|
|
static void gtk_tool_item_property_notify (GObject *object,
|
|
|
|
GParamSpec *pspec);
|
2003-06-29 23:34:20 +00:00
|
|
|
static void gtk_tool_item_realize (GtkWidget *widget);
|
|
|
|
static void gtk_tool_item_unrealize (GtkWidget *widget);
|
|
|
|
static void gtk_tool_item_map (GtkWidget *widget);
|
|
|
|
static void gtk_tool_item_unmap (GtkWidget *widget);
|
|
|
|
static void gtk_tool_item_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition);
|
|
|
|
static void gtk_tool_item_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
|
|
|
static gboolean gtk_tool_item_real_set_tooltip (GtkToolItem *tool_item,
|
|
|
|
GtkTooltips *tooltips,
|
|
|
|
const gchar *tip_text,
|
|
|
|
const gchar *tip_private);
|
|
|
|
|
|
|
|
static gboolean gtk_tool_item_create_menu_proxy (GtkToolItem *item);
|
|
|
|
|
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
static guint toolitem_signals[LAST_SIGNAL] = { 0 };
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
G_DEFINE_TYPE (GtkToolItem, gtk_tool_item, GTK_TYPE_BIN)
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_class_init (GtkToolItemClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class;
|
|
|
|
GtkWidgetClass *widget_class;
|
|
|
|
|
|
|
|
object_class = (GObjectClass *)klass;
|
|
|
|
widget_class = (GtkWidgetClass *)klass;
|
|
|
|
|
|
|
|
object_class->set_property = gtk_tool_item_set_property;
|
|
|
|
object_class->get_property = gtk_tool_item_get_property;
|
|
|
|
object_class->finalize = gtk_tool_item_finalize;
|
2004-02-20 18:02:21 +00:00
|
|
|
object_class->notify = gtk_tool_item_property_notify;
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
widget_class->realize = gtk_tool_item_realize;
|
|
|
|
widget_class->unrealize = gtk_tool_item_unrealize;
|
|
|
|
widget_class->map = gtk_tool_item_map;
|
|
|
|
widget_class->unmap = gtk_tool_item_unmap;
|
|
|
|
widget_class->size_request = gtk_tool_item_size_request;
|
|
|
|
widget_class->size_allocate = gtk_tool_item_size_allocate;
|
|
|
|
widget_class->parent_set = gtk_tool_item_parent_set;
|
|
|
|
|
|
|
|
klass->create_menu_proxy = gtk_tool_item_create_menu_proxy;
|
|
|
|
klass->set_tooltip = gtk_tool_item_real_set_tooltip;
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_VISIBLE_HORIZONTAL,
|
2005-03-09 06:15:13 +00:00
|
|
|
g_param_spec_boolean ("visible-horizontal",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Visible when horizontal"),
|
|
|
|
P_("Whether the toolbar item is visible when the toolbar is in a horizontal orientation."),
|
2003-06-29 23:34:20 +00:00
|
|
|
TRUE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-06-29 23:34:20 +00:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_VISIBLE_VERTICAL,
|
2005-03-09 06:15:13 +00:00
|
|
|
g_param_spec_boolean ("visible-vertical",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Visible when vertical"),
|
|
|
|
P_("Whether the toolbar item is visible when the toolbar is in a vertical orientation."),
|
2003-06-29 23:34:20 +00:00
|
|
|
TRUE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-08-04 21:13:55 +00:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_IS_IMPORTANT,
|
2005-03-09 06:15:13 +00:00
|
|
|
g_param_spec_boolean ("is-important",
|
2004-01-16 23:10:05 +00:00
|
|
|
P_("Is important"),
|
|
|
|
P_("Whether the toolbar item is considered important. When TRUE, toolbar buttons show text in GTK_TOOLBAR_BOTH_HORIZ mode"),
|
2003-08-04 21:13:55 +00:00
|
|
|
FALSE,
|
2005-03-22 02:14:55 +00:00
|
|
|
GTK_PARAM_READWRITE));
|
2003-08-04 21:13:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkToolItem::create-menu-proxy:
|
|
|
|
* @toolitem: the object the signal was emitted on
|
|
|
|
*
|
2004-09-14 21:40:41 +00:00
|
|
|
* This signal is emitted when the toolbar needs information from @tool_item
|
|
|
|
* about whether the item should appear in the toolbar overflow menu. In
|
|
|
|
* response the tool item should either
|
2003-08-04 21:13:55 +00:00
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem> call gtk_tool_item_set_proxy_menu_item() with a %NULL
|
|
|
|
* pointer and return %TRUE to indicate that the item should not appear
|
|
|
|
* in the overflow menu
|
|
|
|
* </listitem>
|
|
|
|
* <listitem> call gtk_tool_item_set_proxy_menu_item() with a new menu
|
2003-10-01 00:16:11 +00:00
|
|
|
* item and return %TRUE, or
|
2003-08-04 21:13:55 +00:00
|
|
|
* </listitem>
|
2003-10-01 00:16:11 +00:00
|
|
|
* <listitem> return %FALSE to indicate that the signal was not
|
2003-08-04 21:13:55 +00:00
|
|
|
* handled by the item. This means that
|
|
|
|
* the item will not appear in the overflow menu unless a later handler
|
|
|
|
* installs a menu item.
|
|
|
|
* </listitem>
|
|
|
|
* </itemizedlist>
|
2004-09-14 21:40:41 +00:00
|
|
|
*
|
|
|
|
* The toolbar may cache the result of this signal. When the tool item changes
|
|
|
|
* how it will respond to this signal it must call gtk_tool_item_rebuild_menu()
|
|
|
|
* to invalidate the cache and ensure that the toolbar rebuilds its overflow
|
|
|
|
* menu.
|
|
|
|
*
|
2003-08-04 21:13:55 +00:00
|
|
|
* Return value: %TRUE if the signal was handled, %FALSE if not
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
toolitem_signals[CREATE_MENU_PROXY] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("create_menu_proxy"),
|
2003-06-29 23:34:20 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkToolItemClass, create_menu_proxy),
|
2003-07-04 16:48:40 +00:00
|
|
|
_gtk_boolean_handled_accumulator, NULL,
|
2003-06-29 23:34:20 +00:00
|
|
|
_gtk_marshal_BOOLEAN__VOID,
|
|
|
|
G_TYPE_BOOLEAN, 0);
|
2003-08-04 21:13:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GtkToolItem::toolbar-reconfigured:
|
|
|
|
* @toolitem: the object the signal was emitted on
|
|
|
|
*
|
|
|
|
* This signal is emitted when some property of the toolbar that the
|
|
|
|
* item is a child of changes. For custom subclasses of #GtkToolItem,
|
|
|
|
* the default handler of this signal use the functions
|
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem>gtk_toolbar_get_orientation()</listitem>
|
|
|
|
* <listitem>gtk_toolbar_get_style()</listitem>
|
|
|
|
* <listitem>gtk_toolbar_get_icon_size()</listitem>
|
|
|
|
* <listitem>gtk_toolbar_get_relief_style()</listitem>
|
|
|
|
* </itemizedlist>
|
|
|
|
* to find out what the toolbar should look like and change
|
|
|
|
* themselves accordingly.
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
toolitem_signals[TOOLBAR_RECONFIGURED] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("toolbar_reconfigured"),
|
2003-06-29 23:34:20 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkToolItemClass, toolbar_reconfigured),
|
|
|
|
NULL, NULL,
|
|
|
|
_gtk_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* GtkToolItem::set-tooltip:
|
|
|
|
* @toolitem: the object the signal was emitted on
|
2003-10-01 00:16:11 +00:00
|
|
|
* @tooltips: the #GtkTooltips
|
|
|
|
* @tip_text: the tooltip text
|
|
|
|
* @tip_private: the tooltip private text
|
2003-08-04 21:13:55 +00:00
|
|
|
*
|
|
|
|
* This signal is emitted when the toolitem's tooltip changes.
|
|
|
|
* Application developers can use gtk_tool_item_set_tooltip() to
|
2003-10-01 00:16:11 +00:00
|
|
|
* set the item's tooltip.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the signal was handled, %FALSE if not
|
2003-08-04 21:13:55 +00:00
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
toolitem_signals[SET_TOOLTIP] =
|
2005-09-01 05:11:46 +00:00
|
|
|
g_signal_new (I_("set_tooltip"),
|
2003-06-29 23:34:20 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GtkToolItemClass, set_tooltip),
|
2003-07-04 16:48:40 +00:00
|
|
|
_gtk_boolean_handled_accumulator, NULL,
|
2003-06-29 23:34:20 +00:00
|
|
|
_gtk_marshal_BOOLEAN__OBJECT_STRING_STRING,
|
|
|
|
G_TYPE_BOOLEAN, 3,
|
|
|
|
GTK_TYPE_TOOLTIPS,
|
|
|
|
G_TYPE_STRING,
|
|
|
|
G_TYPE_STRING);
|
2003-07-08 10:58:23 +00:00
|
|
|
|
|
|
|
g_type_class_add_private (object_class, sizeof (GtkToolItemPrivate));
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_init (GtkToolItem *toolitem)
|
|
|
|
{
|
|
|
|
GTK_WIDGET_UNSET_FLAGS (toolitem, GTK_CAN_FOCUS);
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
toolitem->priv = GTK_TOOL_ITEM_GET_PRIVATE (toolitem);
|
|
|
|
|
|
|
|
toolitem->priv->visible_horizontal = TRUE;
|
|
|
|
toolitem->priv->visible_vertical = TRUE;
|
|
|
|
toolitem->priv->homogeneous = FALSE;
|
|
|
|
toolitem->priv->expand = FALSE;
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GtkToolItem *item = GTK_TOOL_ITEM (object);
|
|
|
|
|
2007-03-09 21:57:37 +00:00
|
|
|
g_free (item->priv->menu_item_id);
|
2004-01-17 11:58:24 +00:00
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (item->priv->menu_item)
|
|
|
|
g_object_unref (item->priv->menu_item);
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
if (G_OBJECT_CLASS (gtk_tool_item_parent_class)->finalize)
|
|
|
|
G_OBJECT_CLASS (gtk_tool_item_parent_class)->finalize (object);
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2007-01-28 03:16:30 +00:00
|
|
|
gtk_tool_item_parent_set (GtkWidget *toolitem,
|
|
|
|
GtkWidget *prev_parent)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2007-01-28 03:16:30 +00:00
|
|
|
if (GTK_WIDGET (toolitem)->parent != NULL)
|
|
|
|
_gtk_tool_item_toolbar_reconfigured (GTK_TOOL_ITEM (toolitem));
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkToolItem *toolitem = GTK_TOOL_ITEM (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_VISIBLE_HORIZONTAL:
|
|
|
|
gtk_tool_item_set_visible_horizontal (toolitem, g_value_get_boolean (value));
|
|
|
|
break;
|
|
|
|
case PROP_VISIBLE_VERTICAL:
|
2004-01-06 20:39:48 +00:00
|
|
|
gtk_tool_item_set_visible_vertical (toolitem, g_value_get_boolean (value));
|
2003-06-29 23:34:20 +00:00
|
|
|
break;
|
2003-08-04 21:13:55 +00:00
|
|
|
case PROP_IS_IMPORTANT:
|
|
|
|
gtk_tool_item_set_is_important (toolitem, g_value_get_boolean (value));
|
|
|
|
break;
|
2003-06-29 23:34:20 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkToolItem *toolitem = GTK_TOOL_ITEM (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_VISIBLE_HORIZONTAL:
|
2003-07-08 10:58:23 +00:00
|
|
|
g_value_set_boolean (value, toolitem->priv->visible_horizontal);
|
2003-06-29 23:34:20 +00:00
|
|
|
break;
|
|
|
|
case PROP_VISIBLE_VERTICAL:
|
2003-07-08 10:58:23 +00:00
|
|
|
g_value_set_boolean (value, toolitem->priv->visible_vertical);
|
2003-06-29 23:34:20 +00:00
|
|
|
break;
|
2003-08-04 21:13:55 +00:00
|
|
|
case PROP_IS_IMPORTANT:
|
|
|
|
g_value_set_boolean (value, toolitem->priv->is_important);
|
|
|
|
break;
|
2003-06-29 23:34:20 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-20 18:02:21 +00:00
|
|
|
static void
|
|
|
|
gtk_tool_item_property_notify (GObject *object,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GtkToolItem *tool_item = GTK_TOOL_ITEM (object);
|
|
|
|
|
|
|
|
if (tool_item->priv->menu_item && strcmp (pspec->name, "sensitive") == 0)
|
|
|
|
gtk_widget_set_sensitive (tool_item->priv->menu_item,
|
|
|
|
GTK_WIDGET_SENSITIVE (tool_item));
|
|
|
|
}
|
|
|
|
|
2003-06-29 23:34:20 +00:00
|
|
|
static void
|
|
|
|
create_drag_window (GtkToolItem *toolitem)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
GdkWindowAttr attributes;
|
|
|
|
gint attributes_mask, border_width;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
g_return_if_fail (toolitem->priv->use_drag_window == TRUE);
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
widget = GTK_WIDGET (toolitem);
|
|
|
|
border_width = GTK_CONTAINER (toolitem)->border_width;
|
|
|
|
|
|
|
|
attributes.window_type = GDK_WINDOW_CHILD;
|
|
|
|
attributes.x = widget->allocation.x + border_width;
|
|
|
|
attributes.y = widget->allocation.y + border_width;
|
|
|
|
attributes.width = widget->allocation.width - border_width * 2;
|
|
|
|
attributes.height = widget->allocation.height - border_width * 2;
|
|
|
|
attributes.wclass = GDK_INPUT_ONLY;
|
|
|
|
attributes.event_mask = gtk_widget_get_events (widget);
|
|
|
|
attributes.event_mask |= (GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
|
|
|
|
|
|
|
|
attributes_mask = GDK_WA_X | GDK_WA_Y;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
toolitem->priv->drag_window = gdk_window_new (gtk_widget_get_parent_window (widget),
|
2003-06-29 23:34:20 +00:00
|
|
|
&attributes, attributes_mask);
|
2003-07-08 10:58:23 +00:00
|
|
|
gdk_window_set_user_data (toolitem->priv->drag_window, toolitem);
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_realize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkToolItem *toolitem;
|
|
|
|
|
|
|
|
toolitem = GTK_TOOL_ITEM (widget);
|
|
|
|
GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
|
|
|
|
|
|
|
|
widget->window = gtk_widget_get_parent_window (widget);
|
|
|
|
g_object_ref (widget->window);
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->use_drag_window)
|
2003-06-29 23:34:20 +00:00
|
|
|
create_drag_window(toolitem);
|
|
|
|
|
|
|
|
widget->style = gtk_style_attach (widget->style, widget->window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_drag_window (GtkToolItem *toolitem)
|
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->drag_window)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
gdk_window_set_user_data (toolitem->priv->drag_window, NULL);
|
|
|
|
gdk_window_destroy (toolitem->priv->drag_window);
|
|
|
|
toolitem->priv->drag_window = NULL;
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_unrealize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkToolItem *toolitem;
|
|
|
|
|
|
|
|
toolitem = GTK_TOOL_ITEM (widget);
|
|
|
|
|
|
|
|
destroy_drag_window (toolitem);
|
|
|
|
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_tool_item_parent_class)->unrealize (widget);
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_map (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkToolItem *toolitem;
|
|
|
|
|
|
|
|
toolitem = GTK_TOOL_ITEM (widget);
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_tool_item_parent_class)->map (widget);
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->drag_window)
|
|
|
|
gdk_window_show (toolitem->priv->drag_window);
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_unmap (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GtkToolItem *toolitem;
|
|
|
|
|
|
|
|
toolitem = GTK_TOOL_ITEM (widget);
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->drag_window)
|
|
|
|
gdk_window_hide (toolitem->priv->drag_window);
|
2006-05-02 23:56:43 +00:00
|
|
|
GTK_WIDGET_CLASS (gtk_tool_item_parent_class)->unmap (widget);
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_size_request (GtkWidget *widget,
|
|
|
|
GtkRequisition *requisition)
|
|
|
|
{
|
|
|
|
GtkWidget *child = GTK_BIN (widget)->child;
|
|
|
|
|
|
|
|
if (child && GTK_WIDGET_VISIBLE (child))
|
|
|
|
{
|
|
|
|
gtk_widget_size_request (child, requisition);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
requisition->height = 0;
|
|
|
|
requisition->width = 0;
|
|
|
|
}
|
|
|
|
|
2003-07-19 20:24:33 +00:00
|
|
|
requisition->width += (GTK_CONTAINER (widget)->border_width) * 2;
|
|
|
|
requisition->height += (GTK_CONTAINER (widget)->border_width) * 2;
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_tool_item_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GtkToolItem *toolitem = GTK_TOOL_ITEM (widget);
|
|
|
|
GtkAllocation child_allocation;
|
|
|
|
gint border_width;
|
|
|
|
GtkWidget *child = GTK_BIN (widget)->child;
|
|
|
|
|
|
|
|
widget->allocation = *allocation;
|
|
|
|
border_width = GTK_CONTAINER (widget)->border_width;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->drag_window)
|
|
|
|
gdk_window_move_resize (toolitem->priv->drag_window,
|
2003-06-29 23:34:20 +00:00
|
|
|
widget->allocation.x + border_width,
|
|
|
|
widget->allocation.y + border_width,
|
|
|
|
widget->allocation.width - border_width * 2,
|
|
|
|
widget->allocation.height - border_width * 2);
|
|
|
|
|
|
|
|
if (child && GTK_WIDGET_VISIBLE (child))
|
|
|
|
{
|
2003-07-18 16:25:31 +00:00
|
|
|
child_allocation.x = allocation->x + border_width;
|
|
|
|
child_allocation.y = allocation->y + border_width;
|
|
|
|
child_allocation.width = allocation->width - 2 * border_width;
|
|
|
|
child_allocation.height = allocation->height - 2 * border_width;
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
gtk_widget_size_allocate (child, &child_allocation);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gtk_tool_item_create_menu_proxy (GtkToolItem *item)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_new:
|
|
|
|
*
|
|
|
|
* Creates a new #GtkToolItem
|
|
|
|
*
|
|
|
|
* Return value: the new #GtkToolItem
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkToolItem *
|
|
|
|
gtk_tool_item_new (void)
|
|
|
|
{
|
|
|
|
GtkToolItem *item;
|
|
|
|
|
|
|
|
item = g_object_new (GTK_TYPE_TOOL_ITEM, NULL);
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_icon_size:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Returns the icon size used for @tool_item. Custom subclasses of
|
|
|
|
* #GtkToolItem should call this function to find out what size icons
|
|
|
|
* they should use.
|
|
|
|
*
|
|
|
|
* Return value: a #GtkIconSize indicating the icon size used for @tool_item
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkIconSize
|
|
|
|
gtk_tool_item_get_icon_size (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
GtkWidget *parent;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), GTK_ICON_SIZE_LARGE_TOOLBAR);
|
|
|
|
|
|
|
|
parent = GTK_WIDGET (tool_item)->parent;
|
|
|
|
if (!parent || !GTK_IS_TOOLBAR (parent))
|
|
|
|
return GTK_ICON_SIZE_LARGE_TOOLBAR;
|
|
|
|
|
|
|
|
return gtk_toolbar_get_icon_size (GTK_TOOLBAR (parent));
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_orientation:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Returns the orientation used for @tool_item. Custom subclasses of
|
|
|
|
* #GtkToolItem should call this function to find out what size icons
|
|
|
|
* they should use.
|
|
|
|
*
|
|
|
|
* Return value: a #GtkOrientation indicating the orientation
|
|
|
|
* used for @tool_item
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkOrientation
|
|
|
|
gtk_tool_item_get_orientation (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
GtkWidget *parent;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), GTK_ORIENTATION_HORIZONTAL);
|
|
|
|
|
|
|
|
parent = GTK_WIDGET (tool_item)->parent;
|
|
|
|
if (!parent || !GTK_IS_TOOLBAR (parent))
|
|
|
|
return GTK_ORIENTATION_HORIZONTAL;
|
|
|
|
|
|
|
|
return gtk_toolbar_get_orientation (GTK_TOOLBAR (parent));
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_toolbar_style:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Returns the toolbar style used for @tool_item. Custom subclasses of
|
|
|
|
* #GtkToolItem should call this function in the handler of the
|
|
|
|
* GtkToolItem::toolbar_reconfigured signal to find out in what style
|
|
|
|
* the toolbar is displayed and change themselves accordingly
|
|
|
|
*
|
|
|
|
* Possibilities are:
|
|
|
|
* <itemizedlist>
|
|
|
|
* <listitem> GTK_TOOLBAR_BOTH, meaning the tool item should show
|
|
|
|
* both an icon and a label, stacked vertically </listitem>
|
|
|
|
* <listitem> GTK_TOOLBAR_ICONS, meaning the toolbar shows
|
|
|
|
* only icons </listitem>
|
|
|
|
* <listitem> GTK_TOOLBAR_TEXT, meaning the tool item should only
|
|
|
|
* show text</listitem>
|
|
|
|
* <listitem> GTK_TOOLBAR_BOTH_HORIZ, meaning the tool item should show
|
|
|
|
* both an icon and a label, arranged horizontally (however, note the
|
|
|
|
* #GtkToolButton::has_text_horizontally that makes tool buttons not
|
|
|
|
* show labels when the toolbar style is GTK_TOOLBAR_BOTH_HORIZ.
|
|
|
|
* </listitem>
|
|
|
|
* </itemizedlist>
|
|
|
|
*
|
|
|
|
* Return value: A #GtkToolbarStyle indicating the toolbar style used
|
|
|
|
* for @tool_item.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkToolbarStyle
|
|
|
|
gtk_tool_item_get_toolbar_style (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
GtkWidget *parent;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), GTK_TOOLBAR_ICONS);
|
|
|
|
|
|
|
|
parent = GTK_WIDGET (tool_item)->parent;
|
|
|
|
if (!parent || !GTK_IS_TOOLBAR (parent))
|
|
|
|
return GTK_TOOLBAR_ICONS;
|
|
|
|
|
|
|
|
return gtk_toolbar_get_style (GTK_TOOLBAR (parent));
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_relief_style:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Returns the relief style of @tool_item. See gtk_button_set_relief_style().
|
|
|
|
* Custom subclasses of #GtkToolItem should call this function in the handler
|
|
|
|
* of the #GtkToolItem::toolbar_reconfigured signal to find out the
|
|
|
|
* relief style of buttons.
|
|
|
|
*
|
|
|
|
* Return value: a #GtkReliefStyle indicating the relief style used
|
|
|
|
* for @tool_item.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkReliefStyle
|
|
|
|
gtk_tool_item_get_relief_style (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
GtkWidget *parent;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), GTK_RELIEF_NONE);
|
|
|
|
|
|
|
|
parent = GTK_WIDGET (tool_item)->parent;
|
|
|
|
if (!parent || !GTK_IS_TOOLBAR (parent))
|
|
|
|
return GTK_RELIEF_NONE;
|
|
|
|
|
|
|
|
return gtk_toolbar_get_relief_style (GTK_TOOLBAR (parent));
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_expand:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
* @expand: Whether @tool_item is allocated extra space
|
|
|
|
*
|
|
|
|
* Sets whether @tool_item is allocated extra space when there
|
|
|
|
* is more room on the toolbar then needed for the items. The
|
|
|
|
* effect is that the item gets bigger when the toolbar gets bigger
|
|
|
|
* and smaller when the toolbar gets smaller.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
void
|
|
|
|
gtk_tool_item_set_expand (GtkToolItem *tool_item,
|
|
|
|
gboolean expand)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (tool_item));
|
|
|
|
|
|
|
|
expand = expand != FALSE;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (tool_item->priv->expand != expand)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
tool_item->priv->expand = expand;
|
2003-06-29 23:34:20 +00:00
|
|
|
gtk_widget_child_notify (GTK_WIDGET (tool_item), "expand");
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (tool_item));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_expand:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Returns whether @tool_item is allocated extra space.
|
|
|
|
* See gtk_tool_item_set_expand().
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if @tool_item is allocated extra space.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-07-08 10:58:23 +00:00
|
|
|
gboolean
|
|
|
|
gtk_tool_item_get_expand (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), FALSE);
|
|
|
|
|
|
|
|
return tool_item->priv->expand;
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_homogeneous:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
* @homogeneous: whether @tool_item is the same size as other homogeneous items
|
|
|
|
*
|
|
|
|
* Sets whether @tool_item is to be allocated the same size as other
|
|
|
|
* homogeneous items. The effect is that all homogeneous items will have
|
|
|
|
* the same width as the widest of the items.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
void
|
|
|
|
gtk_tool_item_set_homogeneous (GtkToolItem *tool_item,
|
|
|
|
gboolean homogeneous)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (tool_item));
|
|
|
|
|
|
|
|
homogeneous = homogeneous != FALSE;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (tool_item->priv->homogeneous != homogeneous)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
tool_item->priv->homogeneous = homogeneous;
|
2003-06-29 23:34:20 +00:00
|
|
|
gtk_widget_child_notify (GTK_WIDGET (tool_item), "homogeneous");
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (tool_item));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_homogeneous:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Returns whether @tool_item is the same size as other homogeneous
|
|
|
|
* items. See gtk_tool_item_set_homogeneous().
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the item is the same size as other homogeneous
|
|
|
|
* item.s
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-07-08 10:58:23 +00:00
|
|
|
gboolean
|
|
|
|
gtk_tool_item_get_homogeneous (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), FALSE);
|
|
|
|
|
|
|
|
return tool_item->priv->homogeneous;
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_is_important:
|
|
|
|
* @tool_item: a #GtkToolItem
|
|
|
|
*
|
|
|
|
* Returns whether @tool_item is considered important. See
|
2003-08-31 14:01:07 +00:00
|
|
|
* gtk_tool_item_set_is_important()
|
2003-08-04 21:13:55 +00:00
|
|
|
*
|
|
|
|
* Return value: %TRUE if @tool_item is considered important.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gtk_tool_item_get_is_important (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), FALSE);
|
|
|
|
|
|
|
|
return tool_item->priv->is_important;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_is_important:
|
|
|
|
* @tool_item: a #GtkToolItem
|
2003-09-30 22:48:10 +00:00
|
|
|
* @is_important: whether the tool item should be considered important
|
2003-08-04 21:13:55 +00:00
|
|
|
*
|
|
|
|
* Sets whether @tool_item should be considered important. The #GtkToolButton
|
|
|
|
* class uses this property to determine whether to show or hide its label
|
|
|
|
* when the toolbar style is %GTK_TOOLBAR_BOTH_HORIZ. The result is that
|
2003-08-31 14:01:07 +00:00
|
|
|
* only tool buttons with the "is_important" property set have labels, an
|
2003-08-04 21:13:55 +00:00
|
|
|
* effect known as "priority text"
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_tool_item_set_is_important (GtkToolItem *tool_item, gboolean is_important)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (tool_item));
|
|
|
|
|
|
|
|
is_important = is_important != FALSE;
|
|
|
|
|
|
|
|
if (is_important != tool_item->priv->is_important)
|
|
|
|
{
|
|
|
|
tool_item->priv->is_important = is_important;
|
|
|
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (tool_item));
|
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (tool_item), "is-important");
|
2003-08-04 21:13:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-06-29 23:34:20 +00:00
|
|
|
static gboolean
|
|
|
|
gtk_tool_item_real_set_tooltip (GtkToolItem *tool_item,
|
|
|
|
GtkTooltips *tooltips,
|
|
|
|
const gchar *tip_text,
|
|
|
|
const gchar *tip_private)
|
|
|
|
{
|
|
|
|
GtkWidget *child = GTK_BIN (tool_item)->child;
|
|
|
|
|
|
|
|
if (!child)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
gtk_tooltips_set_tip (tooltips, child, tip_text, tip_private);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_tooltip:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
* @tooltips: The #GtkTooltips object to be used
|
|
|
|
* @tip_text: text to be used as tooltip text for @tool_item
|
2003-11-24 01:01:43 +00:00
|
|
|
* @tip_private: text to be used as private tooltip text
|
2003-08-04 21:13:55 +00:00
|
|
|
*
|
|
|
|
* Sets the #GtkTooltips object to be used for @tool_item, the
|
|
|
|
* text to be displayed as tooltip on the item and the private text
|
|
|
|
* to be used. See gtk_tooltips_set_tip().
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
void
|
|
|
|
gtk_tool_item_set_tooltip (GtkToolItem *tool_item,
|
|
|
|
GtkTooltips *tooltips,
|
|
|
|
const gchar *tip_text,
|
|
|
|
const gchar *tip_private)
|
|
|
|
{
|
|
|
|
gboolean retval;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (tool_item));
|
|
|
|
|
|
|
|
g_signal_emit (tool_item, toolitem_signals[SET_TOOLTIP], 0,
|
|
|
|
tooltips, tip_text, tip_private, &retval);
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_use_drag_window:
|
|
|
|
* @toolitem: a #GtkToolItem
|
|
|
|
* @use_drag_window: Whether @toolitem has a drag window.
|
|
|
|
*
|
|
|
|
* Sets whether @toolitem has a drag window. When %TRUE the
|
|
|
|
* toolitem can be used as a drag source through gtk_drag_source_set().
|
|
|
|
* When @toolitem has a drag window it will intercept all events,
|
|
|
|
* even those that would otherwise be sent to a child of @toolitem.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
void
|
|
|
|
gtk_tool_item_set_use_drag_window (GtkToolItem *toolitem,
|
|
|
|
gboolean use_drag_window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (toolitem));
|
|
|
|
|
|
|
|
use_drag_window = use_drag_window != FALSE;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->use_drag_window != use_drag_window)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
toolitem->priv->use_drag_window = use_drag_window;
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
if (use_drag_window)
|
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
if (!toolitem->priv->drag_window && GTK_WIDGET_REALIZED (toolitem))
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
|
|
|
create_drag_window(toolitem);
|
|
|
|
if (GTK_WIDGET_MAPPED (toolitem))
|
2003-07-08 10:58:23 +00:00
|
|
|
gdk_window_show (toolitem->priv->drag_window);
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
destroy_drag_window (toolitem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_use_drag_window:
|
|
|
|
* @toolitem: a #GtkToolItem
|
|
|
|
*
|
|
|
|
* Returns whether @toolitem has a drag window. See
|
|
|
|
* gtk_tool_item_set_use_drag_window().
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if @toolitem uses a drag window.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-07-08 10:58:23 +00:00
|
|
|
gboolean
|
|
|
|
gtk_tool_item_get_use_drag_window (GtkToolItem *toolitem)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (toolitem), FALSE);
|
|
|
|
|
|
|
|
return toolitem->priv->use_drag_window;
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_visible_horizontal:
|
|
|
|
* @toolitem: a #GtkToolItem
|
|
|
|
* @visible_horizontal: Whether @toolitem is visible when in horizontal mode
|
|
|
|
*
|
2003-08-31 14:01:07 +00:00
|
|
|
* Sets whether @toolitem is visible when the toolbar is docked horizontally.
|
2003-08-04 21:13:55 +00:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
void
|
|
|
|
gtk_tool_item_set_visible_horizontal (GtkToolItem *toolitem,
|
|
|
|
gboolean visible_horizontal)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (toolitem));
|
|
|
|
|
|
|
|
visible_horizontal = visible_horizontal != FALSE;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->visible_horizontal != visible_horizontal)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
toolitem->priv->visible_horizontal = visible_horizontal;
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (toolitem), "visible-horizontal");
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (toolitem));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_visible_horizontal:
|
|
|
|
* @toolitem: a #GtkToolItem
|
|
|
|
*
|
|
|
|
* Returns whether the @toolitem is visible on toolbars that are
|
2003-08-31 14:01:07 +00:00
|
|
|
* docked horizontally.
|
2003-08-04 21:13:55 +00:00
|
|
|
*
|
|
|
|
* Return value: %TRUE if @toolitem is visible on toolbars that are
|
|
|
|
* docked horizontally.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
gboolean
|
|
|
|
gtk_tool_item_get_visible_horizontal (GtkToolItem *toolitem)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (toolitem), FALSE);
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
return toolitem->priv->visible_horizontal;
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_visible_vertical:
|
|
|
|
* @toolitem: a #GtkToolItem
|
|
|
|
* @visible_vertical: whether @toolitem is visible when the toolbar
|
|
|
|
* is in vertical mode
|
|
|
|
*
|
|
|
|
* Sets whether @toolitem is visible when the toolbar is docked
|
|
|
|
* vertically. Some tool items, such as text entries, are too wide to be
|
|
|
|
* useful on a vertically docked toolbar. If @visible_vertical is %FALSE
|
|
|
|
* @toolitem will not appear on toolbars that are docked vertically.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
void
|
|
|
|
gtk_tool_item_set_visible_vertical (GtkToolItem *toolitem,
|
|
|
|
gboolean visible_vertical)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (toolitem));
|
|
|
|
|
|
|
|
visible_vertical = visible_vertical != FALSE;
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (toolitem->priv->visible_vertical != visible_vertical)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
toolitem->priv->visible_vertical = visible_vertical;
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2005-03-26 05:49:15 +00:00
|
|
|
g_object_notify (G_OBJECT (toolitem), "visible-vertical");
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (toolitem));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_visible_vertical:
|
|
|
|
* @toolitem: a #GtkToolItem
|
|
|
|
*
|
|
|
|
* Returns whether @toolitem is visible when the toolbar is docked vertically.
|
|
|
|
* See gtk_tool_item_set_visible_vertical().
|
|
|
|
*
|
|
|
|
* Return value: Whether @toolitem is visible when the toolbar is docked vertically
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
gboolean
|
|
|
|
gtk_tool_item_get_visible_vertical (GtkToolItem *toolitem)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (toolitem), FALSE);
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
return toolitem->priv->visible_vertical;
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_retrieve_proxy_menu_item:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Returns the #GtkMenuItem that was last set by
|
|
|
|
* gtk_tool_item_set_proxy_menu_item(), ie. the #GtkMenuItem
|
|
|
|
* that is going to appear in the overflow menu.
|
|
|
|
*
|
|
|
|
* Return value: The #GtkMenuItem that is going to appear in the
|
|
|
|
* overflow menu for @tool_item.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkWidget *
|
|
|
|
gtk_tool_item_retrieve_proxy_menu_item (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
gboolean retval;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), NULL);
|
|
|
|
|
2004-09-14 21:40:41 +00:00
|
|
|
g_signal_emit (tool_item, toolitem_signals[CREATE_MENU_PROXY], 0,
|
|
|
|
&retval);
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
return tool_item->priv->menu_item;
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_get_proxy_menu_item:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
* @menu_item_id: a string used to identify the menu item
|
|
|
|
*
|
|
|
|
* If @menu_item_id matches the string passed to
|
|
|
|
* gtk_tool_item_set_proxy_menu_item() return the corresponding #GtkMenuItem.
|
|
|
|
*
|
|
|
|
* Custom subclasses of #GtkToolItem should use this function to update
|
|
|
|
* their menu item when the #GtkToolItem changes. That the
|
|
|
|
* @menu_item_id<!-- -->s must match ensures that a #GtkToolItem will not
|
|
|
|
* inadvertently change a menu item that they did not create.
|
|
|
|
*
|
|
|
|
* Return value: The #GtkMenuItem passed to
|
|
|
|
* gtk_tool_item_set_proxy_menu_item(), if the @menu_item_id<!-- -->s match.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
GtkWidget *
|
|
|
|
gtk_tool_item_get_proxy_menu_item (GtkToolItem *tool_item,
|
|
|
|
const gchar *menu_item_id)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GTK_IS_TOOL_ITEM (tool_item), NULL);
|
|
|
|
g_return_val_if_fail (menu_item_id != NULL, NULL);
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (tool_item->priv->menu_item_id && strcmp (tool_item->priv->menu_item_id, menu_item_id) == 0)
|
|
|
|
return tool_item->priv->menu_item;
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2004-09-14 21:40:41 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_rebuild_menu()
|
|
|
|
* @tool_item: a #GtkToolItem
|
|
|
|
*
|
|
|
|
* Calling this function signals to the toolbar that the
|
|
|
|
* overflow menu item for @tool_item has changed. If the
|
|
|
|
* overflow menu is visible when this function it called,
|
|
|
|
* the menu will be rebuilt.
|
|
|
|
*
|
|
|
|
* The function must be called when the tool item
|
|
|
|
* changes what it will do in response to the "create_menu_proxy"
|
|
|
|
* signal.
|
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gtk_tool_item_rebuild_menu (GtkToolItem *tool_item)
|
|
|
|
{
|
|
|
|
GtkWidget *widget;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (tool_item));
|
|
|
|
|
|
|
|
widget = GTK_WIDGET (tool_item);
|
|
|
|
|
|
|
|
if (widget->parent && GTK_IS_TOOLBAR (widget->parent))
|
|
|
|
_gtk_toolbar_rebuild_menu (GTK_TOOLBAR (widget->parent));
|
|
|
|
}
|
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_tool_item_set_proxy_menu_item:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
* @menu_item_id: a string used to identify @menu_item
|
|
|
|
* @menu_item: a #GtkMenuItem to be used in the overflow menu
|
|
|
|
*
|
|
|
|
* Sets the #GtkMenuItem used in the toolbar overflow menu. The
|
|
|
|
* @menu_item_id is used to identify the caller of this function and
|
|
|
|
* should also be used with gtk_tool_item_get_proxy_menu_item().
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-06-29 23:34:20 +00:00
|
|
|
void
|
|
|
|
gtk_tool_item_set_proxy_menu_item (GtkToolItem *tool_item,
|
|
|
|
const gchar *menu_item_id,
|
|
|
|
GtkWidget *menu_item)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (tool_item));
|
|
|
|
g_return_if_fail (menu_item == NULL || GTK_IS_MENU_ITEM (menu_item));
|
|
|
|
g_return_if_fail (menu_item_id != NULL);
|
|
|
|
|
2007-03-09 21:57:37 +00:00
|
|
|
g_free (tool_item->priv->menu_item_id);
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
tool_item->priv->menu_item_id = g_strdup (menu_item_id);
|
2003-06-29 23:34:20 +00:00
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
if (tool_item->priv->menu_item != menu_item)
|
2003-06-29 23:34:20 +00:00
|
|
|
{
|
2003-07-08 10:58:23 +00:00
|
|
|
if (tool_item->priv->menu_item)
|
2004-11-19 23:18:38 +00:00
|
|
|
g_object_unref (tool_item->priv->menu_item);
|
2003-06-29 23:34:20 +00:00
|
|
|
|
|
|
|
if (menu_item)
|
|
|
|
{
|
2005-11-23 18:06:58 +00:00
|
|
|
g_object_ref_sink (menu_item);
|
2004-02-20 18:02:21 +00:00
|
|
|
|
|
|
|
gtk_widget_set_sensitive (menu_item,
|
|
|
|
GTK_WIDGET_SENSITIVE (tool_item));
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
|
2003-07-08 10:58:23 +00:00
|
|
|
tool_item->priv->menu_item = menu_item;
|
2003-06-29 23:34:20 +00:00
|
|
|
}
|
|
|
|
}
|
2003-07-08 10:58:23 +00:00
|
|
|
|
2003-08-04 21:13:55 +00:00
|
|
|
/**
|
|
|
|
* _gtk_tool_item_toolbar_reconfigured:
|
|
|
|
* @tool_item: a #GtkToolItem:
|
|
|
|
*
|
|
|
|
* Emits the signal #GtkToolItem::toolbar_reconfigured on @tool_item. This
|
|
|
|
* internal function is called by #GtkToolbar when some aspect of its
|
|
|
|
* configuration changes.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
2003-07-30 20:14:54 +00:00
|
|
|
void
|
|
|
|
_gtk_tool_item_toolbar_reconfigured (GtkToolItem *tool_item)
|
2003-07-08 10:58:23 +00:00
|
|
|
{
|
2003-07-30 20:14:54 +00:00
|
|
|
g_return_if_fail (GTK_IS_TOOL_ITEM (tool_item));
|
|
|
|
|
|
|
|
g_signal_emit (tool_item, toolitem_signals[TOOLBAR_RECONFIGURED], 0);
|
|
|
|
|
2005-11-07 16:31:48 +00:00
|
|
|
if (tool_item->priv->drag_window)
|
|
|
|
gdk_window_raise (tool_item->priv->drag_window);
|
2005-11-07 16:38:06 +00:00
|
|
|
|
|
|
|
gtk_widget_queue_resize (GTK_WIDGET (tool_item));
|
2003-07-08 10:58:23 +00:00
|
|
|
}
|
2003-07-30 20:14:54 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
#define __GTK_TOOL_ITEM_C__
|
|
|
|
#include "gtkaliasdef.c"
|