2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2001-02-14 12:55:21 +08:00
|
|
|
* Copyright (C) 1995-2001 Spencer Kimball, Peter Mattis, and others
|
1997-11-25 06:05:25 +08:00
|
|
|
*
|
|
|
|
* 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 2 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, write to the Free Software
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2001-01-24 20:21:50 +08:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2002-05-03 20:45:22 +08:00
|
|
|
#include "tools-types.h"
|
|
|
|
|
2001-05-09 10:32:03 +08:00
|
|
|
#include "core/gimpdrawable.h"
|
|
|
|
|
2003-10-15 23:16:50 +08:00
|
|
|
#include "widgets/gimpcolorframe.h"
|
2003-08-22 09:42:57 +08:00
|
|
|
#include "widgets/gimphelp-ids.h"
|
2003-10-21 05:27:34 +08:00
|
|
|
#include "widgets/gimptooldialog.h"
|
2007-01-21 09:24:51 +08:00
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
2002-03-08 08:27:45 +08:00
|
|
|
|
2003-05-03 02:43:15 +08:00
|
|
|
#include "display/gimpdisplay.h"
|
|
|
|
|
2003-02-05 22:39:40 +08:00
|
|
|
#include "gimpcolorpickeroptions.h"
|
2001-03-08 09:07:03 +08:00
|
|
|
#include "gimpcolorpickertool.h"
|
2003-04-16 00:05:52 +08:00
|
|
|
#include "gimptoolcontrol.h"
|
2001-01-24 20:21:50 +08:00
|
|
|
|
2003-03-26 00:38:19 +08:00
|
|
|
#include "gimp-intl.h"
|
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
|
|
|
|
2000-12-29 23:22:01 +08:00
|
|
|
|
2001-02-21 20:18:09 +08:00
|
|
|
/* local function prototypes */
|
|
|
|
|
2005-12-13 17:13:50 +08:00
|
|
|
static GObject * gimp_color_picker_tool_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params);
|
2003-09-26 21:33:54 +08:00
|
|
|
static void gimp_color_picker_tool_finalize (GObject *object);
|
|
|
|
|
|
|
|
static void gimp_color_picker_tool_control (GimpTool *tool,
|
|
|
|
GimpToolAction action,
|
2006-03-29 01:55:52 +08:00
|
|
|
GimpDisplay *display);
|
2003-09-26 21:33:54 +08:00
|
|
|
static void gimp_color_picker_tool_modifier_key (GimpTool *tool,
|
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
2006-03-29 01:55:52 +08:00
|
|
|
GimpDisplay *display);
|
2003-09-26 21:33:54 +08:00
|
|
|
static void gimp_color_picker_tool_oper_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
2006-03-25 22:23:09 +08:00
|
|
|
gboolean proximity,
|
2006-03-29 01:55:52 +08:00
|
|
|
GimpDisplay *display);
|
2003-09-26 21:33:54 +08:00
|
|
|
|
|
|
|
static void gimp_color_picker_tool_picked (GimpColorTool *color_tool,
|
2004-06-30 20:10:08 +08:00
|
|
|
GimpColorPickState pick_state,
|
2003-09-26 21:33:54 +08:00
|
|
|
GimpImageType sample_type,
|
|
|
|
GimpRGB *color,
|
|
|
|
gint color_index);
|
2003-06-05 04:23:36 +08:00
|
|
|
|
2003-10-15 23:16:50 +08:00
|
|
|
static void gimp_color_picker_tool_info_create (GimpColorPickerTool *picker_tool);
|
2003-11-06 23:27:05 +08:00
|
|
|
static void gimp_color_picker_tool_info_response (GtkWidget *widget,
|
|
|
|
gint response_id,
|
2003-10-15 23:16:50 +08:00
|
|
|
GimpColorPickerTool *picker_tool);
|
|
|
|
static void gimp_color_picker_tool_info_update (GimpColorPickerTool *picker_tool,
|
|
|
|
GimpImageType sample_type,
|
|
|
|
GimpRGB *color,
|
|
|
|
gint color_index);
|
2003-06-05 04:23:36 +08:00
|
|
|
|
|
|
|
|
2005-12-13 17:13:50 +08:00
|
|
|
G_DEFINE_TYPE (GimpColorPickerTool, gimp_color_picker_tool,
|
2006-05-15 17:46:31 +08:00
|
|
|
GIMP_TYPE_COLOR_TOOL)
|
2005-12-13 17:13:50 +08:00
|
|
|
|
|
|
|
#define parent_class gimp_color_picker_tool_parent_class
|
1999-04-09 06:25:54 +08:00
|
|
|
|
|
|
|
|
2001-02-21 20:18:09 +08:00
|
|
|
void
|
2002-03-29 11:50:29 +08:00
|
|
|
gimp_color_picker_tool_register (GimpToolRegisterCallback callback,
|
2002-05-03 19:31:08 +08:00
|
|
|
gpointer data)
|
2001-02-21 20:18:09 +08:00
|
|
|
{
|
2002-03-29 11:50:29 +08:00
|
|
|
(* callback) (GIMP_TYPE_COLOR_PICKER_TOOL,
|
2003-02-05 22:39:40 +08:00
|
|
|
GIMP_TYPE_COLOR_PICKER_OPTIONS,
|
|
|
|
gimp_color_picker_options_gui,
|
2006-09-06 02:25:31 +08:00
|
|
|
GIMP_CONTEXT_FOREGROUND_MASK | GIMP_CONTEXT_BACKGROUND_MASK,
|
2002-03-21 20:17:17 +08:00
|
|
|
"gimp-color-picker-tool",
|
2001-11-21 07:00:47 +08:00
|
|
|
_("Color Picker"),
|
2006-09-19 02:00:22 +08:00
|
|
|
_("Color Picker Tool: Set colors from image pixels"),
|
2004-04-29 21:19:28 +08:00
|
|
|
N_("C_olor Picker"), "O",
|
2003-08-22 09:42:57 +08:00
|
|
|
NULL, GIMP_HELP_TOOL_COLOR_PICKER,
|
2002-03-29 11:50:29 +08:00
|
|
|
GIMP_STOCK_TOOL_COLOR_PICKER,
|
2002-05-03 19:31:08 +08:00
|
|
|
data);
|
2001-02-21 20:18:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-02-27 13:21:12 +08:00
|
|
|
gimp_color_picker_tool_class_init (GimpColorPickerToolClass *klass)
|
2001-02-21 20:18:09 +08:00
|
|
|
{
|
2004-06-30 20:10:08 +08:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpToolClass *tool_class = GIMP_TOOL_CLASS (klass);
|
|
|
|
GimpColorToolClass *color_tool_class = GIMP_COLOR_TOOL_CLASS (klass);
|
2001-02-21 20:18:09 +08:00
|
|
|
|
2003-09-19 20:11:04 +08:00
|
|
|
object_class->constructor = gimp_color_picker_tool_constructor;
|
|
|
|
object_class->finalize = gimp_color_picker_tool_finalize;
|
2001-02-21 20:18:09 +08:00
|
|
|
|
2003-09-19 20:11:04 +08:00
|
|
|
tool_class->control = gimp_color_picker_tool_control;
|
2003-09-26 21:33:54 +08:00
|
|
|
tool_class->modifier_key = gimp_color_picker_tool_modifier_key;
|
|
|
|
tool_class->oper_update = gimp_color_picker_tool_oper_update;
|
2001-02-27 13:21:12 +08:00
|
|
|
|
2003-09-19 20:11:04 +08:00
|
|
|
color_tool_class->picked = gimp_color_picker_tool_picked;
|
2001-02-21 20:18:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-06-05 04:23:36 +08:00
|
|
|
gimp_color_picker_tool_init (GimpColorPickerTool *tool)
|
2001-02-21 20:18:09 +08:00
|
|
|
{
|
2004-07-29 00:21:00 +08:00
|
|
|
GimpColorTool *color_tool = GIMP_COLOR_TOOL (tool);
|
2003-10-26 03:00:49 +08:00
|
|
|
|
2004-07-29 00:21:00 +08:00
|
|
|
color_tool->pick_mode = GIMP_COLOR_PICK_MODE_FOREGROUND;
|
2001-02-21 20:18:09 +08:00
|
|
|
}
|
|
|
|
|
2003-09-19 20:11:04 +08:00
|
|
|
static GObject *
|
|
|
|
gimp_color_picker_tool_constructor (GType type,
|
|
|
|
guint n_params,
|
|
|
|
GObjectConstructParam *params)
|
|
|
|
{
|
|
|
|
GObject *object;
|
|
|
|
GimpTool *tool;
|
|
|
|
|
|
|
|
object = G_OBJECT_CLASS (parent_class)->constructor (type, n_params, params);
|
|
|
|
|
|
|
|
tool = GIMP_TOOL (object);
|
|
|
|
|
|
|
|
gimp_color_tool_enable (GIMP_COLOR_TOOL (object),
|
2006-09-06 02:25:31 +08:00
|
|
|
GIMP_COLOR_TOOL_GET_OPTIONS (tool));
|
2003-09-19 20:11:04 +08:00
|
|
|
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2001-02-21 20:18:09 +08:00
|
|
|
static void
|
2001-08-14 22:53:55 +08:00
|
|
|
gimp_color_picker_tool_finalize (GObject *object)
|
2001-02-21 20:18:09 +08:00
|
|
|
{
|
2003-10-15 23:16:50 +08:00
|
|
|
GimpColorPickerTool *picker_tool = GIMP_COLOR_PICKER_TOOL (object);
|
|
|
|
|
|
|
|
if (picker_tool->dialog)
|
2005-09-27 00:01:13 +08:00
|
|
|
gimp_color_picker_tool_info_response (NULL, GTK_RESPONSE_CLOSE,
|
|
|
|
picker_tool);
|
2001-02-21 20:18:09 +08:00
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
2001-02-21 20:18:09 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
2002-02-19 01:00:09 +08:00
|
|
|
gimp_color_picker_tool_control (GimpTool *tool,
|
2004-06-30 20:10:08 +08:00
|
|
|
GimpToolAction action,
|
2006-03-29 01:55:52 +08:00
|
|
|
GimpDisplay *display)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2003-10-15 23:16:50 +08:00
|
|
|
GimpColorPickerTool *picker_tool = GIMP_COLOR_PICKER_TOOL (tool);
|
|
|
|
|
2001-08-14 22:53:55 +08:00
|
|
|
switch (action)
|
|
|
|
{
|
2006-05-22 05:12:01 +08:00
|
|
|
case GIMP_TOOL_ACTION_PAUSE:
|
|
|
|
case GIMP_TOOL_ACTION_RESUME:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_TOOL_ACTION_HALT:
|
2003-10-15 23:16:50 +08:00
|
|
|
if (picker_tool->dialog)
|
2003-11-06 23:27:05 +08:00
|
|
|
gimp_color_picker_tool_info_response (NULL, GTK_RESPONSE_CLOSE,
|
|
|
|
picker_tool);
|
2001-08-14 22:53:55 +08:00
|
|
|
break;
|
|
|
|
}
|
1999-08-24 10:52:40 +08:00
|
|
|
|
2006-03-29 01:55:52 +08:00
|
|
|
GIMP_TOOL_CLASS (parent_class)->control (tool, action, display);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2003-09-26 21:33:54 +08:00
|
|
|
static void
|
|
|
|
gimp_color_picker_tool_modifier_key (GimpTool *tool,
|
|
|
|
GdkModifierType key,
|
|
|
|
gboolean press,
|
|
|
|
GdkModifierType state,
|
2006-03-29 01:55:52 +08:00
|
|
|
GimpDisplay *display)
|
2003-09-26 21:33:54 +08:00
|
|
|
{
|
2006-09-06 02:25:31 +08:00
|
|
|
GimpColorPickerOptions *options = GIMP_COLOR_PICKER_TOOL_GET_OPTIONS (tool);
|
2003-09-26 21:33:54 +08:00
|
|
|
|
2004-06-30 20:10:08 +08:00
|
|
|
if (key == GDK_SHIFT_MASK)
|
|
|
|
{
|
2005-09-27 00:01:13 +08:00
|
|
|
g_object_set (options, "use-info-window", ! options->use_info_window,
|
2004-06-30 20:10:08 +08:00
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
else if (key == GDK_CONTROL_MASK)
|
2003-09-26 21:33:54 +08:00
|
|
|
{
|
2006-05-28 22:13:44 +08:00
|
|
|
switch (options->pick_mode)
|
2003-09-26 21:33:54 +08:00
|
|
|
{
|
|
|
|
case GIMP_COLOR_PICK_MODE_FOREGROUND:
|
|
|
|
g_object_set (options, "pick-mode", GIMP_COLOR_PICK_MODE_BACKGROUND,
|
|
|
|
NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_COLOR_PICK_MODE_BACKGROUND:
|
|
|
|
g_object_set (options, "pick-mode", GIMP_COLOR_PICK_MODE_FOREGROUND,
|
|
|
|
NULL);
|
|
|
|
break;
|
2005-09-27 00:01:13 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2003-09-26 21:33:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_color_picker_tool_oper_update (GimpTool *tool,
|
|
|
|
GimpCoords *coords,
|
|
|
|
GdkModifierType state,
|
2006-03-25 22:23:09 +08:00
|
|
|
gboolean proximity,
|
2006-03-29 01:55:52 +08:00
|
|
|
GimpDisplay *display)
|
2003-09-26 21:33:54 +08:00
|
|
|
{
|
2007-01-21 09:24:51 +08:00
|
|
|
GimpColorPickerTool *picker_tool = GIMP_COLOR_PICKER_TOOL (tool);
|
2006-09-06 02:25:31 +08:00
|
|
|
GimpColorPickerOptions *options = GIMP_COLOR_PICKER_TOOL_GET_OPTIONS (tool);
|
2003-09-26 21:33:54 +08:00
|
|
|
|
|
|
|
GIMP_COLOR_TOOL (tool)->pick_mode = options->pick_mode;
|
2005-03-09 08:23:19 +08:00
|
|
|
|
2007-01-21 09:24:51 +08:00
|
|
|
gimp_tool_pop_status (tool, display);
|
|
|
|
if (proximity)
|
|
|
|
{
|
|
|
|
gchar *status_help = NULL;
|
|
|
|
GdkModifierType shift_mod = 0;
|
|
|
|
|
|
|
|
if (! picker_tool->dialog)
|
|
|
|
{
|
|
|
|
shift_mod = GDK_SHIFT_MASK;
|
|
|
|
}
|
|
|
|
switch (options->pick_mode)
|
|
|
|
{
|
|
|
|
case GIMP_COLOR_PICK_MODE_NONE:
|
|
|
|
status_help = gimp_suggest_modifiers (_("Click in any image to view"
|
|
|
|
" its color"),
|
|
|
|
shift_mod & ~state,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_COLOR_PICK_MODE_FOREGROUND:
|
|
|
|
status_help = gimp_suggest_modifiers (_("Click in any image to pick"
|
|
|
|
" the foreground color"),
|
|
|
|
(shift_mod
|
|
|
|
| GDK_CONTROL_MASK) & ~state,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_COLOR_PICK_MODE_BACKGROUND:
|
|
|
|
status_help = gimp_suggest_modifiers (_("Click in any image to pick"
|
|
|
|
" the background color"),
|
|
|
|
(shift_mod
|
|
|
|
| GDK_CONTROL_MASK) & ~state,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_COLOR_PICK_MODE_PALETTE:
|
|
|
|
status_help = gimp_suggest_modifiers (_("Click in any image to add"
|
|
|
|
" the color to the palette"),
|
|
|
|
shift_mod & ~state,
|
|
|
|
NULL, NULL, NULL);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (status_help != NULL)
|
|
|
|
{
|
|
|
|
gimp_tool_push_status (tool, display, status_help);
|
|
|
|
g_free (status_help);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-25 22:23:09 +08:00
|
|
|
GIMP_TOOL_CLASS (parent_class)->oper_update (tool, coords, state, proximity,
|
2006-03-29 01:55:52 +08:00
|
|
|
display);
|
2003-09-26 21:33:54 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
2004-06-30 20:10:08 +08:00
|
|
|
gimp_color_picker_tool_picked (GimpColorTool *color_tool,
|
|
|
|
GimpColorPickState pick_state,
|
|
|
|
GimpImageType sample_type,
|
|
|
|
GimpRGB *color,
|
|
|
|
gint color_index)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2004-06-30 20:10:08 +08:00
|
|
|
GimpColorPickerTool *picker_tool = GIMP_COLOR_PICKER_TOOL (color_tool);
|
2003-06-05 04:23:36 +08:00
|
|
|
GimpColorPickerOptions *options;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2006-09-06 02:25:31 +08:00
|
|
|
options = GIMP_COLOR_PICKER_TOOL_GET_OPTIONS (color_tool);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-27 00:01:13 +08:00
|
|
|
if (options->use_info_window && ! picker_tool->dialog)
|
2003-10-15 23:16:50 +08:00
|
|
|
gimp_color_picker_tool_info_create (picker_tool);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2005-09-27 00:01:13 +08:00
|
|
|
if (picker_tool->dialog)
|
|
|
|
gimp_color_picker_tool_info_update (picker_tool, sample_type,
|
|
|
|
color, color_index);
|
2003-06-04 23:48:17 +08:00
|
|
|
|
2006-05-28 22:13:44 +08:00
|
|
|
GIMP_COLOR_TOOL_CLASS (parent_class)->picked (color_tool, pick_state,
|
|
|
|
sample_type, color,
|
|
|
|
color_index);
|
2001-12-12 09:16:39 +08:00
|
|
|
}
|
|
|
|
|
2003-10-15 23:16:50 +08:00
|
|
|
static void
|
|
|
|
gimp_color_picker_tool_info_create (GimpColorPickerTool *picker_tool)
|
2002-11-14 19:54:57 +08:00
|
|
|
{
|
2003-10-15 23:16:50 +08:00
|
|
|
GimpTool *tool = GIMP_TOOL (picker_tool);
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *frame;
|
|
|
|
GimpRGB color;
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-10-15 23:16:50 +08:00
|
|
|
g_return_if_fail (tool->drawable != NULL);
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
picker_tool->dialog = gimp_tool_dialog_new (tool->tool_info,
|
2006-03-29 01:55:52 +08:00
|
|
|
NULL /* tool->display->shell */,
|
2003-10-21 05:27:34 +08:00
|
|
|
_("Color Picker Information"),
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
GTK_STOCK_CLOSE,
|
2003-11-06 23:27:05 +08:00
|
|
|
GTK_RESPONSE_CLOSE,
|
2002-11-14 19:54:57 +08:00
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
NULL);
|
|
|
|
|
2006-02-15 22:48:40 +08:00
|
|
|
gtk_window_set_focus_on_map (GTK_WINDOW (picker_tool->dialog), FALSE);
|
|
|
|
|
2003-10-21 05:27:34 +08:00
|
|
|
gimp_viewable_dialog_set_viewable (GIMP_VIEWABLE_DIALOG (picker_tool->dialog),
|
2006-09-01 19:26:54 +08:00
|
|
|
GIMP_VIEWABLE (tool->drawable),
|
2006-09-06 02:25:31 +08:00
|
|
|
GIMP_CONTEXT (gimp_tool_get_options (tool)));
|
2003-07-19 06:00:36 +08:00
|
|
|
|
2003-11-06 23:27:05 +08:00
|
|
|
g_signal_connect (picker_tool->dialog, "response",
|
|
|
|
G_CALLBACK (gimp_color_picker_tool_info_response),
|
|
|
|
picker_tool);
|
|
|
|
|
2004-05-05 08:01:19 +08:00
|
|
|
hbox = gtk_hbox_new (FALSE, 6);
|
2003-11-06 23:27:05 +08:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (hbox), 6);
|
2003-10-15 23:16:50 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (picker_tool->dialog)->vbox), hbox,
|
|
|
|
FALSE, FALSE, 0);
|
2002-11-14 19:54:57 +08:00
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
2003-10-15 23:16:50 +08:00
|
|
|
picker_tool->color_frame1 = gimp_color_frame_new ();
|
|
|
|
gimp_color_frame_set_mode (GIMP_COLOR_FRAME (picker_tool->color_frame1),
|
|
|
|
GIMP_COLOR_FRAME_MODE_PIXEL);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), picker_tool->color_frame1,
|
|
|
|
FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (picker_tool->color_frame1);
|
|
|
|
|
|
|
|
picker_tool->color_frame2 = gimp_color_frame_new ();
|
|
|
|
gimp_color_frame_set_mode (GIMP_COLOR_FRAME (picker_tool->color_frame2),
|
|
|
|
GIMP_COLOR_FRAME_MODE_RGB);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), picker_tool->color_frame2,
|
|
|
|
FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (picker_tool->color_frame2);
|
2002-11-14 19:54:57 +08:00
|
|
|
|
|
|
|
frame = gtk_frame_new (NULL);
|
|
|
|
gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
|
2003-03-17 01:40:38 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0);
|
2003-10-15 23:16:50 +08:00
|
|
|
gtk_widget_show (frame);
|
2002-11-14 19:54:57 +08:00
|
|
|
|
|
|
|
gimp_rgba_set (&color, 0.0, 0.0, 0.0, 0.0);
|
2003-10-15 23:16:50 +08:00
|
|
|
picker_tool->color_area =
|
|
|
|
gimp_color_area_new (&color,
|
|
|
|
gimp_drawable_has_alpha (tool->drawable) ?
|
|
|
|
GIMP_COLOR_AREA_LARGE_CHECKS :
|
|
|
|
GIMP_COLOR_AREA_FLAT,
|
|
|
|
GDK_BUTTON1_MASK | GDK_BUTTON2_MASK);
|
|
|
|
gtk_widget_set_size_request (picker_tool->color_area, 48, -1);
|
|
|
|
gtk_drag_dest_unset (picker_tool->color_area);
|
|
|
|
gtk_container_add (GTK_CONTAINER (frame), picker_tool->color_area);
|
|
|
|
gtk_widget_show (picker_tool->color_area);
|
2002-11-14 19:54:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-11-06 23:27:05 +08:00
|
|
|
gimp_color_picker_tool_info_response (GtkWidget *widget,
|
|
|
|
gint response_id,
|
|
|
|
GimpColorPickerTool *picker_tool)
|
2002-11-14 19:54:57 +08:00
|
|
|
{
|
2003-10-15 23:16:50 +08:00
|
|
|
gtk_widget_destroy (picker_tool->dialog);
|
2004-04-16 21:50:28 +08:00
|
|
|
|
2003-10-15 23:16:50 +08:00
|
|
|
picker_tool->dialog = NULL;
|
|
|
|
picker_tool->color_area = NULL;
|
|
|
|
picker_tool->color_frame1 = NULL;
|
|
|
|
picker_tool->color_frame2 = NULL;
|
2002-11-14 19:54:57 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static void
|
2003-10-15 23:16:50 +08:00
|
|
|
gimp_color_picker_tool_info_update (GimpColorPickerTool *picker_tool,
|
|
|
|
GimpImageType sample_type,
|
|
|
|
GimpRGB *color,
|
|
|
|
gint color_index)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2005-09-27 00:01:13 +08:00
|
|
|
gimp_color_area_set_color (GIMP_COLOR_AREA (picker_tool->color_area),
|
|
|
|
color);
|
2003-09-19 20:11:04 +08:00
|
|
|
|
2003-10-15 23:16:50 +08:00
|
|
|
gimp_color_frame_set_color (GIMP_COLOR_FRAME (picker_tool->color_frame1),
|
|
|
|
sample_type, color, color_index);
|
|
|
|
gimp_color_frame_set_color (GIMP_COLOR_FRAME (picker_tool->color_frame2),
|
|
|
|
sample_type, color, color_index);
|
2003-06-05 04:23:36 +08:00
|
|
|
|
2004-04-16 21:50:28 +08:00
|
|
|
if (GTK_WIDGET_VISIBLE (picker_tool->dialog))
|
|
|
|
gdk_window_show (picker_tool->dialog->window);
|
|
|
|
else
|
|
|
|
gtk_widget_show (picker_tool->dialog);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|