2010-11-20 06:52:09 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimptoolpalette.c
|
|
|
|
* Copyright (C) 2010 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2012-03-30 01:19:01 +08:00
|
|
|
#include <gegl.h>
|
2010-11-20 06:52:09 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "widgets-types.h"
|
|
|
|
|
|
|
|
#include "core/gimp.h"
|
|
|
|
#include "core/gimpcontext.h"
|
|
|
|
#include "core/gimptoolinfo.h"
|
|
|
|
|
|
|
|
#include "gimpdialogfactory.h"
|
2011-08-08 01:49:37 +08:00
|
|
|
#include "gimptoolbox.h"
|
2010-11-20 06:52:09 +08:00
|
|
|
#include "gimptoolpalette.h"
|
|
|
|
#include "gimpuimanager.h"
|
|
|
|
#include "gimpwidgets-utils.h"
|
2012-01-31 06:52:59 +08:00
|
|
|
#include "gimpwindowstrategy.h"
|
2010-11-20 06:52:09 +08:00
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define DEFAULT_TOOL_ICON_SIZE GTK_ICON_SIZE_BUTTON
|
|
|
|
#define DEFAULT_BUTTON_RELIEF GTK_RELIEF_NONE
|
|
|
|
|
|
|
|
#define TOOL_BUTTON_DATA_KEY "gimp-tool-palette-item"
|
|
|
|
#define TOOL_INFO_DATA_KEY "gimp-tool-info"
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpToolPalettePrivate GimpToolPalettePrivate;
|
|
|
|
|
|
|
|
struct _GimpToolPalettePrivate
|
|
|
|
{
|
2011-08-08 01:49:37 +08:00
|
|
|
GimpToolbox *toolbox;
|
2010-11-20 06:52:09 +08:00
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
gint tool_rows;
|
|
|
|
gint tool_columns;
|
2010-11-20 06:52:09 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define GET_PRIVATE(p) G_TYPE_INSTANCE_GET_PRIVATE (p, \
|
|
|
|
GIMP_TYPE_TOOL_PALETTE, \
|
|
|
|
GimpToolPalettePrivate)
|
|
|
|
|
|
|
|
|
|
|
|
static void gimp_tool_palette_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation);
|
|
|
|
static void gimp_tool_palette_style_set (GtkWidget *widget,
|
|
|
|
GtkStyle *previous_style);
|
|
|
|
|
|
|
|
static void gimp_tool_palette_tool_changed (GimpContext *context,
|
|
|
|
GimpToolInfo *tool_info,
|
|
|
|
GimpToolPalette *palette);
|
|
|
|
static void gimp_tool_palette_tool_reorder (GimpContainer *container,
|
|
|
|
GimpToolInfo *tool_info,
|
|
|
|
gint index,
|
|
|
|
GimpToolPalette *palette);
|
2010-11-21 03:37:15 +08:00
|
|
|
static void gimp_tool_palette_tool_button_toggled (GtkWidget *widget,
|
2010-11-20 06:52:09 +08:00
|
|
|
GimpToolPalette *palette);
|
2010-11-21 03:37:15 +08:00
|
|
|
static gboolean gimp_tool_palette_tool_button_press (GtkWidget *widget,
|
2010-11-20 06:52:09 +08:00
|
|
|
GdkEventButton *bevent,
|
|
|
|
GimpToolPalette *palette);
|
2011-08-08 01:03:10 +08:00
|
|
|
static void gimp_tool_palette_initialize_tools (GimpToolPalette *palette);
|
2010-11-20 06:52:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GimpToolPalette, gimp_tool_palette, GTK_TYPE_TOOL_PALETTE)
|
|
|
|
|
|
|
|
#define parent_class gimp_tool_palette_parent_class
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tool_palette_class_init (GimpToolPaletteClass *klass)
|
|
|
|
{
|
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
|
|
|
|
widget_class->size_allocate = gimp_tool_palette_size_allocate;
|
|
|
|
widget_class->style_set = gimp_tool_palette_style_set;
|
|
|
|
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
|
|
|
g_param_spec_enum ("tool-icon-size",
|
|
|
|
NULL, NULL,
|
|
|
|
GTK_TYPE_ICON_SIZE,
|
|
|
|
DEFAULT_TOOL_ICON_SIZE,
|
|
|
|
GIMP_PARAM_READABLE));
|
|
|
|
|
|
|
|
gtk_widget_class_install_style_property (widget_class,
|
|
|
|
g_param_spec_enum ("button-relief",
|
|
|
|
NULL, NULL,
|
|
|
|
GTK_TYPE_RELIEF_STYLE,
|
|
|
|
DEFAULT_BUTTON_RELIEF,
|
|
|
|
GIMP_PARAM_READABLE));
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (GimpToolPalettePrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tool_palette_init (GimpToolPalette *palette)
|
|
|
|
{
|
2013-05-17 20:41:11 +08:00
|
|
|
gtk_tool_palette_set_style (GTK_TOOL_PALETTE (palette), GTK_TOOLBAR_ICONS);
|
2010-11-20 06:52:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tool_palette_size_allocate (GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
GimpToolPalettePrivate *private = GET_PRIVATE (widget);
|
2010-11-20 17:20:52 +08:00
|
|
|
gint button_width;
|
|
|
|
gint button_height;
|
2010-11-20 06:52:09 +08:00
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->size_allocate (widget, allocation);
|
|
|
|
|
2010-11-20 17:20:52 +08:00
|
|
|
if (gimp_tool_palette_get_button_size (GIMP_TOOL_PALETTE (widget),
|
|
|
|
&button_width, &button_height))
|
2010-11-20 06:52:09 +08:00
|
|
|
{
|
2011-08-08 01:49:37 +08:00
|
|
|
Gimp *gimp = gimp_toolbox_get_context (private->toolbox)->gimp;
|
2010-11-20 17:20:52 +08:00
|
|
|
GList *list;
|
|
|
|
gint n_tools;
|
|
|
|
gint tool_rows;
|
|
|
|
gint tool_columns;
|
2010-11-20 06:52:09 +08:00
|
|
|
|
|
|
|
for (list = gimp_get_tool_info_iter (gimp), n_tools = 0;
|
|
|
|
list;
|
|
|
|
list = list->next)
|
|
|
|
{
|
2010-11-20 17:20:52 +08:00
|
|
|
GimpToolInfo *tool_info = list->data;
|
2010-11-20 06:52:09 +08:00
|
|
|
|
|
|
|
if (tool_info->visible)
|
|
|
|
n_tools++;
|
|
|
|
}
|
|
|
|
|
2010-11-20 17:20:52 +08:00
|
|
|
tool_columns = MAX (1, (allocation->width / button_width));
|
2010-11-20 06:52:09 +08:00
|
|
|
tool_rows = n_tools / tool_columns;
|
|
|
|
|
|
|
|
if (n_tools % tool_columns)
|
|
|
|
tool_rows++;
|
|
|
|
|
|
|
|
if (private->tool_rows != tool_rows ||
|
|
|
|
private->tool_columns != tool_columns)
|
|
|
|
{
|
|
|
|
private->tool_rows = tool_rows;
|
|
|
|
private->tool_columns = tool_columns;
|
|
|
|
|
|
|
|
gtk_widget_set_size_request (widget, -1,
|
2010-11-20 17:20:52 +08:00
|
|
|
tool_rows * button_height);
|
2010-11-20 06:52:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tool_palette_style_set (GtkWidget *widget,
|
|
|
|
GtkStyle *previous_style)
|
|
|
|
{
|
|
|
|
GimpToolPalettePrivate *private = GET_PRIVATE (widget);
|
|
|
|
Gimp *gimp;
|
|
|
|
GtkIconSize tool_icon_size;
|
|
|
|
GtkReliefStyle relief;
|
|
|
|
GList *list;
|
|
|
|
|
|
|
|
GTK_WIDGET_CLASS (parent_class)->style_set (widget, previous_style);
|
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
if (! gimp_toolbox_get_context (private->toolbox))
|
2010-11-20 06:52:09 +08:00
|
|
|
return;
|
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
gimp = gimp_toolbox_get_context (private->toolbox)->gimp;
|
2010-11-20 06:52:09 +08:00
|
|
|
|
|
|
|
gtk_widget_style_get (widget,
|
|
|
|
"tool-icon-size", &tool_icon_size,
|
|
|
|
"button-relief", &relief,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
gtk_tool_palette_set_icon_size (GTK_TOOL_PALETTE (widget), tool_icon_size);
|
|
|
|
|
|
|
|
for (list = gimp_get_tool_info_iter (gimp);
|
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
|
|
|
GimpToolInfo *tool_info = list->data;
|
|
|
|
GtkWidget *tool_button;
|
|
|
|
|
|
|
|
tool_button = g_object_get_data (G_OBJECT (tool_info),
|
|
|
|
TOOL_BUTTON_DATA_KEY);
|
|
|
|
|
|
|
|
if (tool_button)
|
|
|
|
{
|
|
|
|
GtkWidget *button = gtk_bin_get_child (GTK_BIN (tool_button));
|
|
|
|
|
|
|
|
gtk_button_set_relief (GTK_BUTTON (button), relief);
|
|
|
|
}
|
|
|
|
}
|
2013-01-18 02:37:03 +08:00
|
|
|
|
|
|
|
gimp_dock_invalidate_geometry (GIMP_DOCK (private->toolbox));
|
2010-11-20 06:52:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GtkWidget *
|
2011-08-08 01:49:37 +08:00
|
|
|
gimp_tool_palette_new (void)
|
|
|
|
{
|
|
|
|
return g_object_new (GIMP_TYPE_TOOL_PALETTE, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_tool_palette_set_toolbox (GimpToolPalette *palette,
|
|
|
|
GimpToolbox *toolbox)
|
2010-11-20 06:52:09 +08:00
|
|
|
{
|
2011-08-08 01:49:37 +08:00
|
|
|
GimpToolPalettePrivate *private;
|
|
|
|
GimpContext *context;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_TOOL_PALETTE (palette));
|
|
|
|
g_return_if_fail (GIMP_IS_TOOLBOX (toolbox));
|
|
|
|
|
|
|
|
private = GET_PRIVATE (palette);
|
|
|
|
|
|
|
|
private->toolbox = toolbox;
|
|
|
|
context = gimp_toolbox_get_context (toolbox);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We must wait until GimpToolbox has a parent so we can use
|
|
|
|
* GimpDock::get_ui_manager() and ::get_dialog_factory().
|
|
|
|
*/
|
|
|
|
g_signal_connect_swapped (private->toolbox, "parent-set",
|
|
|
|
G_CALLBACK (gimp_tool_palette_initialize_tools),
|
|
|
|
palette);
|
2011-08-21 23:43:39 +08:00
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
g_signal_connect_object (context->gimp->tool_info_list, "reorder",
|
|
|
|
G_CALLBACK (gimp_tool_palette_tool_reorder),
|
|
|
|
palette, 0);
|
|
|
|
|
|
|
|
g_signal_connect_object (context, "tool-changed",
|
|
|
|
G_CALLBACK (gimp_tool_palette_tool_changed),
|
|
|
|
palette,
|
|
|
|
0);
|
|
|
|
|
2010-11-20 06:52:09 +08:00
|
|
|
}
|
|
|
|
|
2010-11-20 17:20:52 +08:00
|
|
|
gboolean
|
|
|
|
gimp_tool_palette_get_button_size (GimpToolPalette *palette,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
GimpToolPalettePrivate *private;
|
|
|
|
GimpToolInfo *tool_info;
|
|
|
|
GtkWidget *tool_button;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_TOOL_PALETTE (palette), FALSE);
|
|
|
|
g_return_val_if_fail (width != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (height != NULL, FALSE);
|
|
|
|
|
|
|
|
private = GET_PRIVATE (palette);
|
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
tool_info = gimp_get_tool_info (gimp_toolbox_get_context (private->toolbox)->gimp,
|
2010-11-20 17:20:52 +08:00
|
|
|
"gimp-rect-select-tool");
|
|
|
|
tool_button = g_object_get_data (G_OBJECT (tool_info), TOOL_BUTTON_DATA_KEY);
|
|
|
|
|
|
|
|
if (tool_button)
|
|
|
|
{
|
|
|
|
GtkRequisition button_requisition;
|
|
|
|
|
|
|
|
gtk_widget_size_request (tool_button, &button_requisition);
|
|
|
|
|
|
|
|
*width = button_requisition.width;
|
|
|
|
*height = button_requisition.height;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-11-20 06:52:09 +08:00
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tool_palette_tool_changed (GimpContext *context,
|
|
|
|
GimpToolInfo *tool_info,
|
|
|
|
GimpToolPalette *palette)
|
|
|
|
{
|
|
|
|
if (tool_info)
|
|
|
|
{
|
|
|
|
GtkWidget *tool_button = g_object_get_data (G_OBJECT (tool_info),
|
|
|
|
TOOL_BUTTON_DATA_KEY);
|
|
|
|
|
|
|
|
if (tool_button &&
|
|
|
|
! gtk_toggle_tool_button_get_active (GTK_TOGGLE_TOOL_BUTTON (tool_button)))
|
|
|
|
{
|
|
|
|
g_signal_handlers_block_by_func (tool_button,
|
2010-11-21 03:37:15 +08:00
|
|
|
gimp_tool_palette_tool_button_toggled,
|
2010-11-20 06:52:09 +08:00
|
|
|
palette);
|
|
|
|
|
|
|
|
gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (tool_button),
|
|
|
|
TRUE);
|
|
|
|
|
|
|
|
g_signal_handlers_unblock_by_func (tool_button,
|
2010-11-21 03:37:15 +08:00
|
|
|
gimp_tool_palette_tool_button_toggled,
|
2010-11-20 06:52:09 +08:00
|
|
|
palette);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tool_palette_tool_reorder (GimpContainer *container,
|
|
|
|
GimpToolInfo *tool_info,
|
|
|
|
gint index,
|
|
|
|
GimpToolPalette *palette)
|
|
|
|
{
|
|
|
|
if (tool_info)
|
|
|
|
{
|
|
|
|
GtkWidget *button = g_object_get_data (G_OBJECT (tool_info),
|
|
|
|
TOOL_BUTTON_DATA_KEY);
|
|
|
|
GtkWidget *group = gtk_widget_get_parent (button);
|
|
|
|
|
|
|
|
gtk_tool_item_group_set_item_position (GTK_TOOL_ITEM_GROUP (group),
|
|
|
|
GTK_TOOL_ITEM (button), index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-21 03:37:15 +08:00
|
|
|
gimp_tool_palette_tool_button_toggled (GtkWidget *widget,
|
|
|
|
GimpToolPalette *palette)
|
2010-11-20 06:52:09 +08:00
|
|
|
{
|
|
|
|
GimpToolPalettePrivate *private = GET_PRIVATE (palette);
|
|
|
|
GimpToolInfo *tool_info;
|
|
|
|
|
|
|
|
tool_info = g_object_get_data (G_OBJECT (widget), TOOL_INFO_DATA_KEY);
|
|
|
|
|
|
|
|
if (gtk_toggle_tool_button_get_active (GTK_TOGGLE_TOOL_BUTTON (widget)))
|
2011-08-08 01:49:37 +08:00
|
|
|
gimp_context_set_tool (gimp_toolbox_get_context (private->toolbox), tool_info);
|
2010-11-20 06:52:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2010-11-21 03:37:15 +08:00
|
|
|
gimp_tool_palette_tool_button_press (GtkWidget *widget,
|
|
|
|
GdkEventButton *event,
|
|
|
|
GimpToolPalette *palette)
|
2010-11-20 06:52:09 +08:00
|
|
|
{
|
|
|
|
GimpToolPalettePrivate *private = GET_PRIVATE (palette);
|
|
|
|
|
|
|
|
if (event->type == GDK_2BUTTON_PRESS && event->button == 1)
|
|
|
|
{
|
2012-01-31 06:52:59 +08:00
|
|
|
GimpContext *context = gimp_toolbox_get_context (private->toolbox);
|
|
|
|
GimpDock *dock = GIMP_DOCK (private->toolbox);
|
|
|
|
|
|
|
|
gimp_window_strategy_show_dockable_dialog (GIMP_WINDOW_STRATEGY (gimp_get_window_strategy (context->gimp)),
|
|
|
|
context->gimp,
|
|
|
|
gimp_dock_get_dialog_factory (dock),
|
|
|
|
gtk_widget_get_screen (widget),
|
|
|
|
"gimp-tool-options");
|
2010-11-20 06:52:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-08-08 01:03:10 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_tool_palette_initialize_tools (GimpToolPalette *palette)
|
|
|
|
{
|
2011-08-08 01:49:37 +08:00
|
|
|
GimpContext *context;
|
2011-08-08 01:03:10 +08:00
|
|
|
GimpToolInfo *active_tool;
|
|
|
|
GList *list;
|
|
|
|
GSList *item_group = NULL;
|
|
|
|
GimpToolPalettePrivate *private = GET_PRIVATE(palette);
|
|
|
|
GtkWidget *group;
|
|
|
|
|
|
|
|
group = gtk_tool_item_group_new (_("Tools"));
|
|
|
|
gtk_tool_item_group_set_label_widget (GTK_TOOL_ITEM_GROUP (group), NULL);
|
|
|
|
gtk_container_add (GTK_CONTAINER (palette), group);
|
|
|
|
gtk_widget_show (group);
|
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
context = gimp_toolbox_get_context (private->toolbox);
|
|
|
|
active_tool = gimp_context_get_tool (context);
|
2011-08-08 01:03:10 +08:00
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
for (list = gimp_get_tool_info_iter (context->gimp);
|
2011-08-08 01:03:10 +08:00
|
|
|
list;
|
|
|
|
list = g_list_next (list))
|
|
|
|
{
|
2011-08-08 01:49:37 +08:00
|
|
|
GimpToolInfo *tool_info = list->data;
|
|
|
|
GtkToolItem *item;
|
|
|
|
const gchar *stock_id;
|
|
|
|
GimpUIManager *ui_manager;
|
2011-08-08 01:03:10 +08:00
|
|
|
|
|
|
|
stock_id = gimp_viewable_get_stock_id (GIMP_VIEWABLE (tool_info));
|
|
|
|
|
|
|
|
item = gtk_radio_tool_button_new_from_stock (item_group, stock_id);
|
|
|
|
item_group = gtk_radio_tool_button_get_group (GTK_RADIO_TOOL_BUTTON (item));
|
|
|
|
gtk_tool_item_group_insert (GTK_TOOL_ITEM_GROUP (group), item, -1);
|
|
|
|
gtk_widget_show (GTK_WIDGET (item));
|
|
|
|
|
2012-11-01 06:15:42 +08:00
|
|
|
g_object_bind_property (tool_info, "visible",
|
|
|
|
item, "visible-horizontal",
|
|
|
|
G_BINDING_SYNC_CREATE);
|
|
|
|
g_object_bind_property (tool_info, "visible",
|
|
|
|
item, "visible-vertical",
|
|
|
|
G_BINDING_SYNC_CREATE);
|
2011-08-08 01:03:10 +08:00
|
|
|
|
|
|
|
g_object_set_data (G_OBJECT (tool_info), TOOL_BUTTON_DATA_KEY, item);
|
|
|
|
g_object_set_data (G_OBJECT (item) , TOOL_INFO_DATA_KEY, tool_info);
|
|
|
|
|
|
|
|
if (tool_info == active_tool)
|
|
|
|
gtk_toggle_tool_button_set_active (GTK_TOGGLE_TOOL_BUTTON (item), TRUE);
|
|
|
|
|
|
|
|
g_signal_connect (item, "toggled",
|
|
|
|
G_CALLBACK (gimp_tool_palette_tool_button_toggled),
|
|
|
|
palette);
|
|
|
|
|
|
|
|
g_signal_connect (gtk_bin_get_child (GTK_BIN (item)), "button-press-event",
|
|
|
|
G_CALLBACK (gimp_tool_palette_tool_button_press),
|
|
|
|
palette);
|
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
ui_manager = gimp_dock_get_ui_manager (GIMP_DOCK (private->toolbox));
|
|
|
|
if (ui_manager)
|
2011-08-08 01:03:10 +08:00
|
|
|
{
|
|
|
|
GtkAction *action = NULL;
|
|
|
|
const gchar *identifier = NULL;
|
|
|
|
gchar *tmp = NULL;
|
|
|
|
gchar *name = NULL;
|
|
|
|
|
|
|
|
identifier = gimp_object_get_name (tool_info);
|
|
|
|
|
|
|
|
tmp = g_strndup (identifier + strlen ("gimp-"),
|
|
|
|
strlen (identifier) - strlen ("gimp--tool"));
|
|
|
|
name = g_strdup_printf ("tools-%s", tmp);
|
|
|
|
g_free (tmp);
|
|
|
|
|
2011-08-08 01:49:37 +08:00
|
|
|
action = gimp_ui_manager_find_action (ui_manager, "tools", name);
|
2011-08-08 01:03:10 +08:00
|
|
|
g_free (name);
|
|
|
|
|
|
|
|
if (action)
|
|
|
|
gimp_widget_set_accel_help (GTK_WIDGET (item), action);
|
|
|
|
else
|
|
|
|
gimp_help_set_help_data (GTK_WIDGET (item),
|
|
|
|
tool_info->help, tool_info->help_id);
|
|
|
|
}
|
|
|
|
}
|
2011-08-08 02:49:49 +08:00
|
|
|
|
|
|
|
/* We only need to initialize tools once */
|
|
|
|
g_signal_handlers_disconnect_by_func (private->toolbox,
|
|
|
|
gimp_tool_palette_initialize_tools,
|
|
|
|
palette);
|
2011-08-08 01:03:10 +08:00
|
|
|
}
|