mirror of https://github.com/GNOME/gimp.git
884 lines
29 KiB
C
884 lines
29 KiB
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
/* This file contains a base class for tools that implement on canvas
|
|
* preview for non destructive editing. The processing of the pixels can
|
|
* be done either by a gegl op or by a C function (apply_func).
|
|
*
|
|
* For the core side of this, please see /app/core/gimpimagemap.c.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <gegl.h>
|
|
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
#include "libgimpconfig/gimpconfig.h"
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
#include "tools-types.h"
|
|
|
|
#include "config/gimpguiconfig.h"
|
|
|
|
#include "core/gimp.h"
|
|
#include "core/gimpdrawable.h"
|
|
#include "core/gimperror.h"
|
|
#include "core/gimpimage.h"
|
|
#include "core/gimpimage-pick-color.h"
|
|
#include "core/gimpimagemap.h"
|
|
#include "core/gimplist.h"
|
|
#include "core/gimppickable.h"
|
|
#include "core/gimpprogress.h"
|
|
#include "core/gimpprojection.h"
|
|
#include "core/gimpsettings.h"
|
|
#include "core/gimptoolinfo.h"
|
|
|
|
#include "widgets/gimpsettingsbox.h"
|
|
#include "widgets/gimpwidgets-utils.h"
|
|
|
|
#include "display/gimpdisplay.h"
|
|
#include "display/gimpdisplayshell.h"
|
|
#include "display/gimptoolgui.h"
|
|
|
|
#include "gimpcoloroptions.h"
|
|
#include "gimpimagemaptool.h"
|
|
#include "gimpimagemaptool-settings.h"
|
|
#include "gimptoolcontrol.h"
|
|
#include "tool_manager.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
static void gimp_image_map_tool_class_init (GimpImageMapToolClass *klass);
|
|
static void gimp_image_map_tool_base_init (GimpImageMapToolClass *klass);
|
|
|
|
static void gimp_image_map_tool_init (GimpImageMapTool *im_tool);
|
|
|
|
static void gimp_image_map_tool_constructed (GObject *object);
|
|
static void gimp_image_map_tool_finalize (GObject *object);
|
|
|
|
static gboolean gimp_image_map_tool_initialize (GimpTool *tool,
|
|
GimpDisplay *display,
|
|
GError **error);
|
|
static void gimp_image_map_tool_control (GimpTool *tool,
|
|
GimpToolAction action,
|
|
GimpDisplay *display);
|
|
static gboolean gimp_image_map_tool_key_press (GimpTool *tool,
|
|
GdkEventKey *kevent,
|
|
GimpDisplay *display);
|
|
static void gimp_image_map_tool_options_notify (GimpTool *tool,
|
|
GimpToolOptions *options,
|
|
const GParamSpec *pspec);
|
|
|
|
static gboolean gimp_image_map_tool_pick_color (GimpColorTool *color_tool,
|
|
gint x,
|
|
gint y,
|
|
const Babl **sample_format,
|
|
GimpRGB *color,
|
|
gint *color_index);
|
|
static void gimp_image_map_tool_color_picked (GimpColorTool *color_tool,
|
|
GimpColorPickState pick_state,
|
|
gdouble x,
|
|
gdouble y,
|
|
const Babl *sample_format,
|
|
const GimpRGB *color,
|
|
gint color_index);
|
|
|
|
static void gimp_image_map_tool_map (GimpImageMapTool *im_tool);
|
|
static void gimp_image_map_tool_dialog (GimpImageMapTool *im_tool);
|
|
static void gimp_image_map_tool_dialog_unmap (GtkWidget *dialog,
|
|
GimpImageMapTool *im_tool);
|
|
static void gimp_image_map_tool_reset (GimpImageMapTool *im_tool);
|
|
static void gimp_image_map_tool_create_map (GimpImageMapTool *im_tool);
|
|
|
|
static void gimp_image_map_tool_flush (GimpImageMap *image_map,
|
|
GimpImageMapTool *im_tool);
|
|
static void gimp_image_map_tool_config_notify (GObject *object,
|
|
const GParamSpec *pspec,
|
|
GimpImageMapTool *im_tool);
|
|
|
|
static void gimp_image_map_tool_response (GimpToolGui *gui,
|
|
gint response_id,
|
|
GimpImageMapTool *im_tool);
|
|
|
|
|
|
static GimpColorToolClass *parent_class = NULL;
|
|
|
|
|
|
GType
|
|
gimp_image_map_tool_get_type (void)
|
|
{
|
|
static GType type = 0;
|
|
|
|
if (! type)
|
|
{
|
|
const GTypeInfo info =
|
|
{
|
|
sizeof (GimpImageMapToolClass),
|
|
(GBaseInitFunc) gimp_image_map_tool_base_init,
|
|
(GBaseFinalizeFunc) NULL,
|
|
(GClassInitFunc) gimp_image_map_tool_class_init,
|
|
NULL, /* class_finalize */
|
|
NULL, /* class_data */
|
|
sizeof (GimpImageMapTool),
|
|
0, /* n_preallocs */
|
|
(GInstanceInitFunc) gimp_image_map_tool_init,
|
|
};
|
|
|
|
type = g_type_register_static (GIMP_TYPE_COLOR_TOOL,
|
|
"GimpImageMapTool",
|
|
&info, 0);
|
|
}
|
|
|
|
return type;
|
|
}
|
|
|
|
|
|
static void
|
|
gimp_image_map_tool_class_init (GimpImageMapToolClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
GimpToolClass *tool_class = GIMP_TOOL_CLASS (klass);
|
|
GimpColorToolClass *color_tool_class = GIMP_COLOR_TOOL_CLASS (klass);
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
object_class->constructed = gimp_image_map_tool_constructed;
|
|
object_class->finalize = gimp_image_map_tool_finalize;
|
|
|
|
tool_class->initialize = gimp_image_map_tool_initialize;
|
|
tool_class->control = gimp_image_map_tool_control;
|
|
tool_class->key_press = gimp_image_map_tool_key_press;
|
|
tool_class->options_notify = gimp_image_map_tool_options_notify;
|
|
|
|
color_tool_class->pick = gimp_image_map_tool_pick_color;
|
|
color_tool_class->picked = gimp_image_map_tool_color_picked;
|
|
|
|
klass->dialog_desc = NULL;
|
|
klass->settings_name = NULL;
|
|
klass->import_dialog_title = NULL;
|
|
klass->export_dialog_title = NULL;
|
|
|
|
klass->get_operation = NULL;
|
|
klass->map = NULL;
|
|
klass->dialog = NULL;
|
|
klass->reset = NULL;
|
|
klass->get_settings_ui = gimp_image_map_tool_real_get_settings_ui;
|
|
klass->settings_import = gimp_image_map_tool_real_settings_import;
|
|
klass->settings_export = gimp_image_map_tool_real_settings_export;
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_base_init (GimpImageMapToolClass *klass)
|
|
{
|
|
klass->recent_settings = gimp_list_new (GIMP_TYPE_SETTINGS, TRUE);
|
|
gimp_list_set_sort_func (GIMP_LIST (klass->recent_settings),
|
|
(GCompareFunc) gimp_settings_compare);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_init (GimpImageMapTool *image_map_tool)
|
|
{
|
|
GimpTool *tool = GIMP_TOOL (image_map_tool);
|
|
|
|
gimp_tool_control_set_scroll_lock (tool->control, TRUE);
|
|
gimp_tool_control_set_preserve (tool->control, FALSE);
|
|
gimp_tool_control_set_dirty_mask (tool->control,
|
|
GIMP_DIRTY_IMAGE |
|
|
GIMP_DIRTY_IMAGE_STRUCTURE |
|
|
GIMP_DIRTY_DRAWABLE |
|
|
GIMP_DIRTY_SELECTION |
|
|
GIMP_DIRTY_ACTIVE_DRAWABLE);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_constructed (GObject *object)
|
|
{
|
|
GimpImageMapTool *image_map_tool = GIMP_IMAGE_MAP_TOOL (object);
|
|
|
|
G_OBJECT_CLASS (parent_class)->constructed (object);
|
|
|
|
gimp_image_map_tool_get_operation (image_map_tool);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_finalize (GObject *object)
|
|
{
|
|
GimpImageMapTool *image_map_tool = GIMP_IMAGE_MAP_TOOL (object);
|
|
|
|
if (image_map_tool->operation)
|
|
{
|
|
g_object_unref (image_map_tool->operation);
|
|
image_map_tool->operation = NULL;
|
|
}
|
|
|
|
if (image_map_tool->config)
|
|
{
|
|
g_object_unref (image_map_tool->config);
|
|
image_map_tool->config = NULL;
|
|
}
|
|
|
|
if (image_map_tool->default_config)
|
|
{
|
|
g_object_unref (image_map_tool->default_config);
|
|
image_map_tool->default_config = NULL;
|
|
}
|
|
|
|
if (image_map_tool->undo_desc)
|
|
{
|
|
g_free (image_map_tool->undo_desc);
|
|
image_map_tool->undo_desc = NULL;
|
|
}
|
|
|
|
if (image_map_tool->label_group)
|
|
{
|
|
g_object_unref (image_map_tool->label_group);
|
|
image_map_tool->label_group = NULL;
|
|
}
|
|
|
|
if (image_map_tool->gui)
|
|
{
|
|
g_object_unref (image_map_tool->gui);
|
|
image_map_tool->gui = NULL;
|
|
image_map_tool->settings_box = NULL;
|
|
}
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
}
|
|
|
|
#define RESPONSE_RESET 1
|
|
|
|
static gboolean
|
|
gimp_image_map_tool_initialize (GimpTool *tool,
|
|
GimpDisplay *display,
|
|
GError **error)
|
|
{
|
|
GimpImageMapTool *image_map_tool = GIMP_IMAGE_MAP_TOOL (tool);
|
|
GimpToolInfo *tool_info = tool->tool_info;
|
|
GimpImage *image = gimp_display_get_image (display);
|
|
GimpDrawable *drawable = gimp_image_get_active_drawable (image);
|
|
GimpDisplayShell *display_shell = gimp_display_get_shell (display);
|
|
|
|
if (! drawable)
|
|
return FALSE;
|
|
|
|
if (gimp_viewable_get_children (GIMP_VIEWABLE (drawable)))
|
|
{
|
|
g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
|
|
_("Cannot modify the pixels of layer groups."));
|
|
return FALSE;
|
|
}
|
|
|
|
if (gimp_item_is_content_locked (GIMP_ITEM (drawable)))
|
|
{
|
|
g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
|
|
_("The active layer's pixels are locked."));
|
|
return FALSE;
|
|
}
|
|
|
|
if (! gimp_item_is_visible (GIMP_ITEM (drawable)))
|
|
{
|
|
g_set_error_literal (error, GIMP_ERROR, GIMP_FAILED,
|
|
_("The active layer is not visible."));
|
|
return FALSE;
|
|
}
|
|
|
|
if (image_map_tool->active_picker)
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (image_map_tool->active_picker),
|
|
FALSE);
|
|
|
|
/* set display so the dialog can be hidden on display destruction */
|
|
tool->display = display;
|
|
|
|
if (image_map_tool->config)
|
|
gimp_config_reset (GIMP_CONFIG (image_map_tool->config));
|
|
|
|
if (! image_map_tool->gui)
|
|
{
|
|
GimpImageMapToolClass *klass;
|
|
GtkWidget *vbox;
|
|
GtkWidget *toggle;
|
|
|
|
klass = GIMP_IMAGE_MAP_TOOL_GET_CLASS (image_map_tool);
|
|
|
|
/* disabled for at least GIMP 2.8 */
|
|
image_map_tool->overlay = FALSE;
|
|
|
|
image_map_tool->gui =
|
|
gimp_tool_gui_new (tool_info,
|
|
klass->dialog_desc,
|
|
image_map_tool->overlay,
|
|
|
|
GIMP_STOCK_RESET, RESPONSE_RESET,
|
|
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
|
|
|
NULL);
|
|
|
|
gimp_tool_gui_set_default_response (image_map_tool->gui, GTK_RESPONSE_OK);
|
|
|
|
gimp_tool_gui_set_alternative_button_order (image_map_tool->gui,
|
|
RESPONSE_RESET,
|
|
GTK_RESPONSE_OK,
|
|
GTK_RESPONSE_CANCEL,
|
|
-1);
|
|
|
|
vbox = gimp_tool_gui_get_vbox (image_map_tool->gui);
|
|
|
|
g_signal_connect_object (image_map_tool->gui, "response",
|
|
G_CALLBACK (gimp_image_map_tool_response),
|
|
G_OBJECT (image_map_tool), 0);
|
|
|
|
if (image_map_tool->config && klass->settings_name)
|
|
{
|
|
GtkWidget *settings_ui;
|
|
gchar *settings_filename;
|
|
gchar *default_folder;
|
|
|
|
settings_filename =
|
|
gimp_tool_info_build_options_filename (tool_info, ".settings");
|
|
|
|
default_folder =
|
|
g_build_filename (gimp_directory (), klass->settings_name, NULL);
|
|
|
|
settings_ui = klass->get_settings_ui (image_map_tool,
|
|
klass->recent_settings,
|
|
settings_filename,
|
|
klass->import_dialog_title,
|
|
klass->export_dialog_title,
|
|
tool_info->help_id,
|
|
default_folder,
|
|
&image_map_tool->settings_box);
|
|
|
|
g_free (settings_filename);
|
|
g_free (default_folder);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), settings_ui, FALSE, FALSE, 0);
|
|
gtk_widget_show (settings_ui);
|
|
}
|
|
|
|
/* The preview toggle */
|
|
toggle = gimp_prop_check_button_new (G_OBJECT (tool_info->tool_options),
|
|
"preview",
|
|
_("_Preview"));
|
|
|
|
gtk_box_pack_end (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
|
gtk_widget_show (toggle);
|
|
|
|
/* Fill in subclass widgets */
|
|
gimp_image_map_tool_dialog (image_map_tool);
|
|
}
|
|
|
|
gimp_tool_gui_set_shell (image_map_tool->gui, display_shell);
|
|
gimp_tool_gui_set_viewable (image_map_tool->gui, GIMP_VIEWABLE (drawable));
|
|
|
|
gimp_tool_gui_show (image_map_tool->gui);
|
|
|
|
image_map_tool->drawable = drawable;
|
|
|
|
gimp_image_map_tool_create_map (image_map_tool);
|
|
gimp_image_map_tool_preview (image_map_tool);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_control (GimpTool *tool,
|
|
GimpToolAction action,
|
|
GimpDisplay *display)
|
|
{
|
|
GimpImageMapTool *image_map_tool = GIMP_IMAGE_MAP_TOOL (tool);
|
|
|
|
switch (action)
|
|
{
|
|
case GIMP_TOOL_ACTION_PAUSE:
|
|
case GIMP_TOOL_ACTION_RESUME:
|
|
break;
|
|
|
|
case GIMP_TOOL_ACTION_HALT:
|
|
if (image_map_tool->gui)
|
|
gimp_tool_gui_hide (image_map_tool->gui);
|
|
|
|
if (image_map_tool->image_map)
|
|
{
|
|
gimp_tool_control_push_preserve (tool->control, TRUE);
|
|
|
|
gimp_image_map_abort (image_map_tool->image_map);
|
|
g_object_unref (image_map_tool->image_map);
|
|
image_map_tool->image_map = NULL;
|
|
|
|
gimp_tool_control_pop_preserve (tool->control);
|
|
}
|
|
|
|
tool->drawable = NULL;
|
|
break;
|
|
}
|
|
|
|
GIMP_TOOL_CLASS (parent_class)->control (tool, action, display);
|
|
}
|
|
|
|
static gboolean
|
|
gimp_image_map_tool_key_press (GimpTool *tool,
|
|
GdkEventKey *kevent,
|
|
GimpDisplay *display)
|
|
{
|
|
GimpImageMapTool *image_map_tool = GIMP_IMAGE_MAP_TOOL (tool);
|
|
|
|
if (image_map_tool->gui && display == tool->display)
|
|
{
|
|
switch (kevent->keyval)
|
|
{
|
|
case GDK_KEY_Return:
|
|
case GDK_KEY_KP_Enter:
|
|
case GDK_KEY_ISO_Enter:
|
|
gimp_image_map_tool_response (image_map_tool->gui,
|
|
GTK_RESPONSE_OK,
|
|
image_map_tool);
|
|
return TRUE;
|
|
|
|
case GDK_KEY_BackSpace:
|
|
gimp_image_map_tool_response (image_map_tool->gui,
|
|
RESPONSE_RESET,
|
|
image_map_tool);
|
|
return TRUE;
|
|
|
|
case GDK_KEY_Escape:
|
|
gimp_image_map_tool_response (image_map_tool->gui,
|
|
GTK_RESPONSE_CANCEL,
|
|
image_map_tool);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_options_notify (GimpTool *tool,
|
|
GimpToolOptions *options,
|
|
const GParamSpec *pspec)
|
|
{
|
|
GimpImageMapTool *image_map_tool = GIMP_IMAGE_MAP_TOOL (tool);
|
|
|
|
if (! strcmp (pspec->name, "preview") &&
|
|
image_map_tool->image_map)
|
|
{
|
|
GimpImageMapOptions *im_options = GIMP_IMAGE_MAP_OPTIONS (options);
|
|
|
|
if (im_options->preview)
|
|
{
|
|
gimp_tool_control_push_preserve (tool->control, TRUE);
|
|
|
|
gimp_image_map_tool_map (image_map_tool);
|
|
|
|
gimp_tool_control_pop_preserve (tool->control);
|
|
}
|
|
else
|
|
{
|
|
gimp_tool_control_push_preserve (tool->control, TRUE);
|
|
|
|
gimp_image_map_abort (image_map_tool->image_map);
|
|
|
|
gimp_tool_control_pop_preserve (tool->control);
|
|
}
|
|
}
|
|
}
|
|
|
|
static gboolean
|
|
gimp_image_map_tool_pick_color (GimpColorTool *color_tool,
|
|
gint x,
|
|
gint y,
|
|
const Babl **sample_format,
|
|
GimpRGB *color,
|
|
gint *color_index)
|
|
{
|
|
GimpImageMapTool *tool = GIMP_IMAGE_MAP_TOOL (color_tool);
|
|
gint off_x, off_y;
|
|
|
|
gimp_item_get_offset (GIMP_ITEM (tool->drawable), &off_x, &off_y);
|
|
|
|
*sample_format = gimp_drawable_get_format (tool->drawable);
|
|
|
|
return gimp_pickable_pick_color (GIMP_PICKABLE (tool->drawable),
|
|
x - off_x,
|
|
y - off_y,
|
|
color_tool->options->sample_average,
|
|
color_tool->options->average_radius,
|
|
color, color_index);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_color_picked (GimpColorTool *color_tool,
|
|
GimpColorPickState pick_state,
|
|
gdouble x,
|
|
gdouble y,
|
|
const Babl *sample_format,
|
|
const GimpRGB *color,
|
|
gint color_index)
|
|
{
|
|
GimpImageMapTool *tool = GIMP_IMAGE_MAP_TOOL (color_tool);
|
|
gpointer identifier;
|
|
|
|
g_return_if_fail (GTK_IS_WIDGET (tool->active_picker));
|
|
|
|
identifier = g_object_get_data (G_OBJECT (tool->active_picker),
|
|
"picker-identifier");
|
|
|
|
GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool)->color_picked (tool,
|
|
identifier,
|
|
x, y,
|
|
sample_format,
|
|
color);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_map (GimpImageMapTool *tool)
|
|
{
|
|
if (GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool)->map)
|
|
GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool)->map (tool);
|
|
|
|
gimp_image_map_apply (tool->image_map, NULL);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_dialog (GimpImageMapTool *tool)
|
|
{
|
|
GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool)->dialog (tool);
|
|
|
|
g_signal_connect (gimp_tool_gui_get_dialog (tool->gui), "unmap",
|
|
G_CALLBACK (gimp_image_map_tool_dialog_unmap),
|
|
tool);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_dialog_unmap (GtkWidget *dialog,
|
|
GimpImageMapTool *tool)
|
|
{
|
|
if (tool->active_picker)
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (tool->active_picker),
|
|
FALSE);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_reset (GimpImageMapTool *tool)
|
|
{
|
|
if (GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool)->reset)
|
|
{
|
|
GIMP_IMAGE_MAP_TOOL_GET_CLASS (tool)->reset (tool);
|
|
}
|
|
else if (tool->config)
|
|
{
|
|
if (tool->default_config)
|
|
{
|
|
gimp_config_copy (GIMP_CONFIG (tool->default_config),
|
|
GIMP_CONFIG (tool->config),
|
|
0);
|
|
}
|
|
else
|
|
{
|
|
gimp_config_reset (GIMP_CONFIG (tool->config));
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_create_map (GimpImageMapTool *tool)
|
|
{
|
|
GimpToolInfo *tool_info;
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE_MAP_TOOL (tool));
|
|
|
|
if (tool->image_map)
|
|
{
|
|
gimp_image_map_abort (tool->image_map);
|
|
g_object_unref (tool->image_map);
|
|
}
|
|
|
|
g_assert (tool->operation);
|
|
|
|
tool_info = GIMP_TOOL (tool)->tool_info;
|
|
|
|
tool->image_map = gimp_image_map_new (tool->drawable,
|
|
tool->undo_desc,
|
|
tool->operation,
|
|
gimp_viewable_get_stock_id (GIMP_VIEWABLE (tool_info)));
|
|
|
|
g_signal_connect (tool->image_map, "flush",
|
|
G_CALLBACK (gimp_image_map_tool_flush),
|
|
tool);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_flush (GimpImageMap *image_map,
|
|
GimpImageMapTool *image_map_tool)
|
|
{
|
|
GimpTool *tool = GIMP_TOOL (image_map_tool);
|
|
GimpImage *image = gimp_display_get_image (tool->display);
|
|
|
|
gimp_projection_flush (gimp_image_get_projection (image));
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_config_notify (GObject *object,
|
|
const GParamSpec *pspec,
|
|
GimpImageMapTool *image_map_tool)
|
|
{
|
|
gimp_image_map_tool_preview (image_map_tool);
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_response (GimpToolGui *gui,
|
|
gint response_id,
|
|
GimpImageMapTool *image_map_tool)
|
|
{
|
|
GimpTool *tool = GIMP_TOOL (image_map_tool);
|
|
|
|
switch (response_id)
|
|
{
|
|
case RESPONSE_RESET:
|
|
gimp_image_map_tool_reset (image_map_tool);
|
|
gimp_image_map_tool_preview (image_map_tool);
|
|
break;
|
|
|
|
case GTK_RESPONSE_OK:
|
|
if (image_map_tool->gui)
|
|
gimp_tool_gui_hide (image_map_tool->gui);
|
|
|
|
if (image_map_tool->image_map)
|
|
{
|
|
GimpImageMapOptions *options = GIMP_IMAGE_MAP_TOOL_GET_OPTIONS (tool);
|
|
|
|
gimp_tool_control_push_preserve (tool->control, TRUE);
|
|
|
|
if (! options->preview)
|
|
gimp_image_map_tool_map (image_map_tool);
|
|
|
|
gimp_image_map_commit (image_map_tool->image_map,
|
|
GIMP_PROGRESS (tool));
|
|
g_object_unref (image_map_tool->image_map);
|
|
image_map_tool->image_map = NULL;
|
|
|
|
gimp_tool_control_pop_preserve (tool->control);
|
|
|
|
gimp_image_flush (gimp_display_get_image (tool->display));
|
|
|
|
if (image_map_tool->config && image_map_tool->settings_box)
|
|
gimp_settings_box_add_current (GIMP_SETTINGS_BOX (image_map_tool->settings_box),
|
|
GIMP_GUI_CONFIG (tool->tool_info->gimp->config)->image_map_tool_max_recent);
|
|
}
|
|
|
|
tool->display = NULL;
|
|
tool->drawable = NULL;
|
|
break;
|
|
|
|
default:
|
|
gimp_tool_control (tool, GIMP_TOOL_ACTION_HALT, tool->display);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void
|
|
gimp_image_map_tool_get_operation (GimpImageMapTool *image_map_tool)
|
|
{
|
|
GimpImageMapToolClass *klass;
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE_MAP_TOOL (image_map_tool));
|
|
|
|
klass = GIMP_IMAGE_MAP_TOOL_GET_CLASS (image_map_tool);
|
|
|
|
if (image_map_tool->image_map)
|
|
{
|
|
gimp_image_map_abort (image_map_tool->image_map);
|
|
g_object_unref (image_map_tool->image_map);
|
|
image_map_tool->image_map = NULL;
|
|
}
|
|
|
|
if (image_map_tool->operation)
|
|
{
|
|
g_object_unref (image_map_tool->operation);
|
|
image_map_tool->operation = NULL;
|
|
}
|
|
|
|
if (image_map_tool->config)
|
|
{
|
|
g_signal_handlers_disconnect_by_func (image_map_tool->config,
|
|
gimp_image_map_tool_config_notify,
|
|
image_map_tool);
|
|
|
|
g_object_unref (image_map_tool->config);
|
|
image_map_tool->config = NULL;
|
|
}
|
|
|
|
if (image_map_tool->undo_desc)
|
|
{
|
|
g_free (image_map_tool->undo_desc);
|
|
image_map_tool->undo_desc = NULL;
|
|
}
|
|
|
|
image_map_tool->operation = klass->get_operation (image_map_tool,
|
|
&image_map_tool->config,
|
|
&image_map_tool->undo_desc);
|
|
|
|
if (! image_map_tool->undo_desc)
|
|
image_map_tool->undo_desc =
|
|
g_strdup (GIMP_TOOL (image_map_tool)->tool_info->blurb);
|
|
|
|
if (image_map_tool->config)
|
|
g_signal_connect_object (image_map_tool->config, "notify",
|
|
G_CALLBACK (gimp_image_map_tool_config_notify),
|
|
G_OBJECT (image_map_tool), 0);
|
|
|
|
if (GIMP_TOOL (image_map_tool)->drawable)
|
|
gimp_image_map_tool_create_map (image_map_tool);
|
|
}
|
|
|
|
void
|
|
gimp_image_map_tool_preview (GimpImageMapTool *image_map_tool)
|
|
{
|
|
GimpTool *tool;
|
|
GimpImageMapOptions *options;
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE_MAP_TOOL (image_map_tool));
|
|
|
|
tool = GIMP_TOOL (image_map_tool);
|
|
options = GIMP_IMAGE_MAP_TOOL_GET_OPTIONS (tool);
|
|
|
|
if (image_map_tool->image_map && options->preview)
|
|
{
|
|
gimp_tool_control_push_preserve (tool->control, TRUE);
|
|
|
|
gimp_image_map_tool_map (image_map_tool);
|
|
|
|
gimp_tool_control_pop_preserve (tool->control);
|
|
}
|
|
}
|
|
|
|
void
|
|
gimp_image_map_tool_edit_as (GimpImageMapTool *im_tool,
|
|
const gchar *new_tool_id,
|
|
GimpConfig *config)
|
|
{
|
|
GimpDisplay *display;
|
|
GimpContext *user_context;
|
|
GimpToolInfo *tool_info;
|
|
GimpTool *new_tool;
|
|
|
|
g_return_if_fail (GIMP_IS_IMAGE_MAP_TOOL (im_tool));
|
|
g_return_if_fail (new_tool_id);
|
|
g_return_if_fail (GIMP_IS_CONFIG (config));
|
|
|
|
display = GIMP_TOOL (im_tool)->display;
|
|
|
|
user_context = gimp_get_user_context (display->gimp);
|
|
|
|
tool_info = (GimpToolInfo *)
|
|
gimp_container_get_child_by_name (display->gimp->tool_info_list,
|
|
new_tool_id);
|
|
|
|
gimp_context_set_tool (user_context, tool_info);
|
|
tool_manager_initialize_active (display->gimp, display);
|
|
|
|
new_tool = tool_manager_get_active (display->gimp);
|
|
|
|
GIMP_IMAGE_MAP_TOOL (new_tool)->default_config = g_object_ref (config);
|
|
|
|
gimp_image_map_tool_reset (GIMP_IMAGE_MAP_TOOL (new_tool));
|
|
}
|
|
|
|
GtkWidget *
|
|
gimp_image_map_tool_dialog_get_vbox (GimpImageMapTool *tool)
|
|
{
|
|
g_return_val_if_fail (GIMP_IS_IMAGE_MAP_TOOL (tool), NULL);
|
|
|
|
return gimp_tool_gui_get_vbox (tool->gui);
|
|
}
|
|
|
|
GtkSizeGroup *
|
|
gimp_image_map_tool_dialog_get_label_group (GimpImageMapTool *tool)
|
|
{
|
|
g_return_val_if_fail (GIMP_IS_IMAGE_MAP_TOOL (tool), NULL);
|
|
|
|
if (! tool->label_group)
|
|
tool->label_group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
|
|
|
|
return tool->label_group;
|
|
}
|
|
|
|
static void
|
|
gimp_image_map_tool_color_picker_toggled (GtkWidget *widget,
|
|
GimpImageMapTool *tool)
|
|
{
|
|
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)))
|
|
{
|
|
if (tool->active_picker == widget)
|
|
return;
|
|
|
|
if (tool->active_picker)
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (tool->active_picker),
|
|
FALSE);
|
|
|
|
tool->active_picker = widget;
|
|
|
|
gimp_color_tool_enable (GIMP_COLOR_TOOL (tool),
|
|
GIMP_COLOR_TOOL_GET_OPTIONS (tool));
|
|
}
|
|
else if (tool->active_picker == widget)
|
|
{
|
|
tool->active_picker = NULL;
|
|
gimp_color_tool_disable (GIMP_COLOR_TOOL (tool));
|
|
}
|
|
}
|
|
|
|
GtkWidget *
|
|
gimp_image_map_tool_add_color_picker (GimpImageMapTool *tool,
|
|
gpointer identifier,
|
|
const gchar *stock_id,
|
|
const gchar *tooltip)
|
|
{
|
|
GtkWidget *button;
|
|
GtkWidget *image;
|
|
|
|
g_return_val_if_fail (GIMP_IS_IMAGE_MAP_TOOL (tool), NULL);
|
|
g_return_val_if_fail (stock_id != NULL, NULL);
|
|
|
|
button = g_object_new (GTK_TYPE_TOGGLE_BUTTON,
|
|
"draw-indicator", FALSE,
|
|
NULL);
|
|
|
|
image = gtk_image_new_from_stock (stock_id, GTK_ICON_SIZE_BUTTON);
|
|
gtk_misc_set_padding (GTK_MISC (image), 2, 2);
|
|
gtk_container_add (GTK_CONTAINER (button), image);
|
|
gtk_widget_show (image);
|
|
|
|
if (tooltip)
|
|
gimp_help_set_help_data (button, tooltip, NULL);
|
|
|
|
g_object_set_data (G_OBJECT (button), "picker-identifier", identifier);
|
|
|
|
g_signal_connect (button, "toggled",
|
|
G_CALLBACK (gimp_image_map_tool_color_picker_toggled),
|
|
tool);
|
|
|
|
return button;
|
|
}
|