mirror of https://github.com/GNOME/gimp.git
157 lines
4.6 KiB
C
157 lines
4.6 KiB
C
/* The GIMP -- an 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 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
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
#include "actions-types.h"
|
|
|
|
#include "core/gimp.h"
|
|
#include "core/gimpchannel.h"
|
|
#include "core/gimpimage.h"
|
|
|
|
#include "widgets/gimpactiongroup.h"
|
|
#include "widgets/gimphelp-ids.h"
|
|
|
|
#include "actions.h"
|
|
#include "select-actions.h"
|
|
#include "select-commands.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
static GimpActionEntry select_actions[] =
|
|
{
|
|
{ "selection-editor-popup", GIMP_STOCK_TOOL_RECT_SELECT,
|
|
N_("Selection Editor Menu"), NULL, NULL, NULL,
|
|
GIMP_HELP_SELECTION_DIALOG },
|
|
|
|
{ "select-menu", NULL, N_("_Select") },
|
|
|
|
{ "select-all", GIMP_STOCK_SELECTION_ALL,
|
|
N_("_All"), "<control>A",
|
|
N_("Select all"),
|
|
G_CALLBACK (select_all_cmd_callback),
|
|
GIMP_HELP_SELECTION_ALL },
|
|
|
|
{ "select-none", GIMP_STOCK_SELECTION_NONE,
|
|
N_("_None"), "<control><shift>A",
|
|
N_("Select none"),
|
|
G_CALLBACK (select_none_cmd_callback),
|
|
GIMP_HELP_SELECTION_NONE },
|
|
|
|
{ "select-invert", GIMP_STOCK_INVERT,
|
|
N_("_Invert"), "<control>I",
|
|
N_("Invert selection"),
|
|
G_CALLBACK (select_invert_cmd_callback),
|
|
GIMP_HELP_SELECTION_INVERT },
|
|
|
|
{ "select-float", GIMP_STOCK_FLOATING_SELECTION,
|
|
N_("_Float"), "<control><shift>L", NULL,
|
|
G_CALLBACK (select_float_cmd_callback),
|
|
GIMP_HELP_SELECTION_FLOAT },
|
|
|
|
{ "select-feather", NULL,
|
|
N_("Fea_ther..."), NULL, NULL,
|
|
G_CALLBACK (select_feather_cmd_callback),
|
|
GIMP_HELP_SELECTION_FEATHER },
|
|
|
|
{ "select-sharpen", NULL,
|
|
N_("_Sharpen"), NULL, NULL,
|
|
G_CALLBACK (select_sharpen_cmd_callback),
|
|
GIMP_HELP_SELECTION_SHARPEN },
|
|
|
|
{ "select-shrink", GIMP_STOCK_SELECTION_SHRINK,
|
|
N_("S_hrink..."), NULL, NULL,
|
|
G_CALLBACK (select_shrink_cmd_callback),
|
|
GIMP_HELP_SELECTION_SHRINK },
|
|
|
|
{ "select-grow", GIMP_STOCK_SELECTION_GROW,
|
|
N_("_Grow..."), NULL, NULL,
|
|
G_CALLBACK (select_grow_cmd_callback),
|
|
GIMP_HELP_SELECTION_GROW },
|
|
|
|
{ "select-border", GIMP_STOCK_SELECTION_BORDER,
|
|
N_("Bo_rder..."), NULL, NULL,
|
|
G_CALLBACK (select_border_cmd_callback),
|
|
GIMP_HELP_SELECTION_BORDER },
|
|
|
|
{ "select-save", GIMP_STOCK_SELECTION_TO_CHANNEL,
|
|
N_("Save to _Channel"), NULL,
|
|
N_("Save selection to channel"),
|
|
G_CALLBACK (select_save_cmd_callback),
|
|
GIMP_HELP_SELECTION_TO_CHANNEL },
|
|
|
|
{ "select-stroke", GIMP_STOCK_SELECTION_STROKE,
|
|
N_("_Stroke Selection..."), NULL,
|
|
N_("Stroke selection"),
|
|
G_CALLBACK (select_stroke_cmd_callback),
|
|
GIMP_HELP_SELECTION_STROKE }
|
|
};
|
|
|
|
|
|
void
|
|
select_actions_setup (GimpActionGroup *group)
|
|
{
|
|
gimp_action_group_add_actions (group,
|
|
select_actions,
|
|
G_N_ELEMENTS (select_actions));
|
|
}
|
|
|
|
void
|
|
select_actions_update (GimpActionGroup *group,
|
|
gpointer data)
|
|
{
|
|
GimpImage *gimage;
|
|
GimpDrawable *drawable = NULL;
|
|
gboolean fs = FALSE;
|
|
gboolean sel = FALSE;
|
|
|
|
gimage = action_data_get_image (data);
|
|
|
|
if (gimage)
|
|
{
|
|
drawable = gimp_image_active_drawable (gimage);
|
|
|
|
fs = (gimp_image_floating_sel (gimage) != NULL);
|
|
sel = ! gimp_channel_is_empty (gimp_image_get_mask (gimage));
|
|
}
|
|
|
|
#define SET_SENSITIVE(action,condition) \
|
|
gimp_action_group_set_action_sensitive (group, action, (condition) != 0)
|
|
|
|
SET_SENSITIVE ("select-all", drawable);
|
|
SET_SENSITIVE ("select-none", drawable && sel);
|
|
SET_SENSITIVE ("select-invert", drawable);
|
|
SET_SENSITIVE ("select-float", drawable && sel);
|
|
|
|
SET_SENSITIVE ("select-feather", drawable && sel);
|
|
SET_SENSITIVE ("select-sharpen", drawable && sel);
|
|
SET_SENSITIVE ("select-shrink", drawable && sel);
|
|
SET_SENSITIVE ("select-grow", drawable && sel);
|
|
SET_SENSITIVE ("select-border", drawable && sel);
|
|
|
|
SET_SENSITIVE ("select-save", drawable && !fs);
|
|
SET_SENSITIVE ("select-stroke", drawable && sel);
|
|
|
|
#undef SET_SENSITIVE
|
|
}
|