2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2004-04-19 22:54:24 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2004-04-19 22:54:24 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-04-19 22:54:24 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-04-19 22:54:24 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2008-10-10 04:24:04 +08:00
|
|
|
#include <gegl.h>
|
2004-04-19 22:54:24 +08:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
|
|
#include "actions-types.h"
|
|
|
|
|
2004-05-23 18:04:41 +08:00
|
|
|
#include "core/gimpcontext.h"
|
2015-08-26 07:06:34 +08:00
|
|
|
#include "core/gimpdrawable.h"
|
2004-04-19 22:54:24 +08:00
|
|
|
#include "core/gimpimage.h"
|
2007-12-26 00:21:40 +08:00
|
|
|
#include "core/gimpimage-colormap.h"
|
2004-04-19 22:54:24 +08:00
|
|
|
|
|
|
|
#include "widgets/gimpactiongroup.h"
|
|
|
|
#include "widgets/gimphelp-ids.h"
|
|
|
|
|
2004-05-13 23:50:55 +08:00
|
|
|
#include "actions.h"
|
2006-11-18 06:07:07 +08:00
|
|
|
#include "colormap-actions.h"
|
|
|
|
#include "colormap-commands.h"
|
2004-04-19 22:54:24 +08:00
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
2006-11-18 06:07:07 +08:00
|
|
|
static const GimpActionEntry colormap_actions[] =
|
2004-04-19 22:54:24 +08:00
|
|
|
{
|
2006-11-18 06:07:07 +08:00
|
|
|
{ "colormap-popup", GIMP_STOCK_COLORMAP,
|
2008-12-03 23:27:42 +08:00
|
|
|
NC_("colormap-action", "Colormap Menu"), NULL, NULL, NULL,
|
2004-05-02 16:56:07 +08:00
|
|
|
GIMP_HELP_INDEXED_PALETTE_DIALOG },
|
2004-04-22 00:10:00 +08:00
|
|
|
|
2014-05-12 04:49:22 +08:00
|
|
|
{ "colormap-edit-color", "gtk-edit",
|
2008-12-03 23:27:42 +08:00
|
|
|
NC_("colormap-action", "_Edit Color..."), NULL,
|
2008-12-04 18:32:20 +08:00
|
|
|
NC_("colormap-action", "Edit this color"),
|
2006-11-18 06:07:07 +08:00
|
|
|
G_CALLBACK (colormap_edit_color_cmd_callback),
|
2004-04-19 22:54:24 +08:00
|
|
|
GIMP_HELP_INDEXED_PALETTE_EDIT }
|
|
|
|
};
|
|
|
|
|
2006-11-18 06:07:07 +08:00
|
|
|
static const GimpEnumActionEntry colormap_add_color_actions[] =
|
2004-04-19 22:54:24 +08:00
|
|
|
{
|
2014-05-12 04:49:22 +08:00
|
|
|
{ "colormap-add-color-from-fg", "list-add",
|
2008-12-03 23:27:42 +08:00
|
|
|
NC_("colormap-action", "_Add Color from FG"), "",
|
2008-12-04 18:32:20 +08:00
|
|
|
NC_("colormap-action", "Add current foreground color"),
|
2004-11-19 00:04:41 +08:00
|
|
|
FALSE, FALSE,
|
2004-04-19 22:54:24 +08:00
|
|
|
GIMP_HELP_INDEXED_PALETTE_ADD },
|
|
|
|
|
2014-05-12 04:49:22 +08:00
|
|
|
{ "colormap-add-color-from-bg", "list-add",
|
2008-12-03 23:27:42 +08:00
|
|
|
NC_("colormap-action", "_Add Color from BG"), "",
|
2008-12-04 18:32:20 +08:00
|
|
|
NC_("colormap-action", "Add current background color"),
|
2004-11-19 00:04:41 +08:00
|
|
|
TRUE, FALSE,
|
2004-04-19 22:54:24 +08:00
|
|
|
GIMP_HELP_INDEXED_PALETTE_ADD }
|
|
|
|
};
|
|
|
|
|
2015-08-26 07:06:34 +08:00
|
|
|
static const GimpEnumActionEntry colormap_to_selection_actions[] =
|
|
|
|
{
|
|
|
|
{ "colormap-selection-replace", GIMP_STOCK_SELECTION_REPLACE,
|
|
|
|
NC_("colormap-action", "_Select this Color"), NULL,
|
|
|
|
NC_("colormap-action", "Select all pixels with this color"),
|
|
|
|
GIMP_CHANNEL_OP_REPLACE, FALSE,
|
|
|
|
GIMP_HELP_INDEXED_PALETTE_SELECTION_REPLACE },
|
|
|
|
|
|
|
|
{ "colormap-selection-add", GIMP_STOCK_SELECTION_ADD,
|
|
|
|
NC_("colormap-action", "_Add to Selection"), NULL,
|
|
|
|
NC_("colormap-action", "Add all pixels with this color to the current selection"),
|
|
|
|
GIMP_CHANNEL_OP_ADD, FALSE,
|
|
|
|
GIMP_HELP_INDEXED_PALETTE_SELECTION_ADD },
|
|
|
|
|
|
|
|
{ "colormap-selection-subtract", GIMP_STOCK_SELECTION_SUBTRACT,
|
|
|
|
NC_("colormap-action", "_Subtract from Selection"), NULL,
|
|
|
|
NC_("colormap-action", "Subtract all pixels with this color from the current selection"),
|
|
|
|
GIMP_CHANNEL_OP_SUBTRACT, FALSE,
|
|
|
|
GIMP_HELP_INDEXED_PALETTE_SELECTION_SUBTRACT },
|
|
|
|
|
|
|
|
{ "colormap-selection-intersect", GIMP_STOCK_SELECTION_INTERSECT,
|
|
|
|
NC_("colormap-action", "_Intersect with Selection"), NULL,
|
|
|
|
NC_("colormap-action", "Intersect all pixels with this color with the current selection"),
|
|
|
|
GIMP_CHANNEL_OP_INTERSECT, FALSE,
|
|
|
|
GIMP_HELP_INDEXED_PALETTE_SELECTION_INTERSECT }
|
|
|
|
};
|
2004-04-19 22:54:24 +08:00
|
|
|
|
|
|
|
void
|
2006-11-18 06:07:07 +08:00
|
|
|
colormap_actions_setup (GimpActionGroup *group)
|
2004-04-19 22:54:24 +08:00
|
|
|
{
|
2008-12-03 23:27:42 +08:00
|
|
|
gimp_action_group_add_actions (group, "colormap-action",
|
2006-11-18 06:07:07 +08:00
|
|
|
colormap_actions,
|
|
|
|
G_N_ELEMENTS (colormap_actions));
|
2004-04-19 22:54:24 +08:00
|
|
|
|
2008-12-03 23:27:42 +08:00
|
|
|
gimp_action_group_add_enum_actions (group, "colormap-action",
|
2006-11-18 06:07:07 +08:00
|
|
|
colormap_add_color_actions,
|
|
|
|
G_N_ELEMENTS (colormap_add_color_actions),
|
|
|
|
G_CALLBACK (colormap_add_color_cmd_callback));
|
2015-08-26 07:06:34 +08:00
|
|
|
|
|
|
|
gimp_action_group_add_enum_actions (group, "colormap-action",
|
|
|
|
colormap_to_selection_actions,
|
|
|
|
G_N_ELEMENTS (colormap_to_selection_actions),
|
|
|
|
G_CALLBACK (colormap_to_selection_cmd_callback));
|
2004-04-19 22:54:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-11-18 06:07:07 +08:00
|
|
|
colormap_actions_update (GimpActionGroup *group,
|
|
|
|
gpointer data)
|
2004-04-19 22:54:24 +08:00
|
|
|
{
|
2015-08-26 07:06:34 +08:00
|
|
|
GimpImage *image = action_data_get_image (data);
|
|
|
|
GimpContext *context = action_data_get_context (data);
|
|
|
|
gboolean indexed = FALSE;
|
|
|
|
gboolean drawable_indexed = FALSE;
|
|
|
|
gint num_colors = 0;
|
2004-05-23 18:04:41 +08:00
|
|
|
GimpRGB fg;
|
|
|
|
GimpRGB bg;
|
2004-04-19 22:54:24 +08:00
|
|
|
|
2006-03-29 01:08:36 +08:00
|
|
|
if (image)
|
2004-04-19 22:54:24 +08:00
|
|
|
{
|
2015-08-26 07:06:34 +08:00
|
|
|
indexed = (gimp_image_get_base_type (image) == GIMP_INDEXED);
|
|
|
|
|
|
|
|
if (indexed)
|
|
|
|
{
|
|
|
|
GimpDrawable *drawable = gimp_image_get_active_drawable (image);
|
|
|
|
|
|
|
|
num_colors = gimp_image_get_colormap_size (image);
|
|
|
|
drawable_indexed = gimp_drawable_is_indexed (drawable);
|
|
|
|
}
|
2004-04-19 22:54:24 +08:00
|
|
|
}
|
|
|
|
|
2004-05-23 18:04:41 +08:00
|
|
|
if (context)
|
|
|
|
{
|
|
|
|
gimp_context_get_foreground (context, &fg);
|
|
|
|
gimp_context_get_background (context, &bg);
|
|
|
|
}
|
|
|
|
|
2004-04-19 22:54:24 +08:00
|
|
|
#define SET_SENSITIVE(action,condition) \
|
|
|
|
gimp_action_group_set_action_sensitive (group, action, (condition) != 0)
|
2004-05-23 18:04:41 +08:00
|
|
|
#define SET_COLOR(action,color) \
|
|
|
|
gimp_action_group_set_action_color (group, action, color, FALSE);
|
2004-04-19 22:54:24 +08:00
|
|
|
|
2006-11-18 06:07:07 +08:00
|
|
|
SET_SENSITIVE ("colormap-edit-color",
|
2015-08-26 07:06:34 +08:00
|
|
|
indexed && num_colors > 0);
|
|
|
|
|
2006-11-18 06:07:07 +08:00
|
|
|
SET_SENSITIVE ("colormap-add-color-from-fg",
|
2015-08-26 07:06:34 +08:00
|
|
|
indexed && num_colors < 256);
|
2006-11-18 06:07:07 +08:00
|
|
|
SET_SENSITIVE ("colormap-add-color-from-bg",
|
2015-08-26 07:06:34 +08:00
|
|
|
indexed && num_colors < 256);
|
2004-04-19 22:54:24 +08:00
|
|
|
|
2006-11-18 06:07:07 +08:00
|
|
|
SET_COLOR ("colormap-add-color-from-fg", context ? &fg : NULL);
|
|
|
|
SET_COLOR ("colormap-add-color-from-bg", context ? &bg : NULL);
|
2004-05-23 18:04:41 +08:00
|
|
|
|
2015-08-26 07:06:34 +08:00
|
|
|
SET_SENSITIVE ("colormap-selection-replace",
|
|
|
|
drawable_indexed && num_colors > 0);
|
|
|
|
SET_SENSITIVE ("colormap-selection-add",
|
|
|
|
drawable_indexed && num_colors > 0);
|
|
|
|
SET_SENSITIVE ("colormap-selection-subtract",
|
|
|
|
drawable_indexed && num_colors > 0);
|
|
|
|
SET_SENSITIVE ("colormap-selection-intersect",
|
|
|
|
drawable_indexed && num_colors > 0);
|
|
|
|
|
2004-04-19 22:54:24 +08:00
|
|
|
#undef SET_SENSITIVE
|
2004-05-23 18:04:41 +08:00
|
|
|
#undef SET_COLOR
|
2004-04-19 22:54:24 +08:00
|
|
|
}
|