2004-04-19 22:54:24 +08:00
|
|
|
/* 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"
|
|
|
|
|
2004-05-03 22:03:51 +08:00
|
|
|
#include "actions.h"
|
2004-04-19 22:54:24 +08:00
|
|
|
#include "select-actions.h"
|
2004-04-20 21:25:55 +08:00
|
|
|
#include "select-commands.h"
|
|
|
|
#include "vectors-commands.h"
|
2004-04-19 22:54:24 +08:00
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
|
|
|
static GimpActionEntry select_actions[] =
|
|
|
|
{
|
|
|
|
{ "select-menu", NULL,
|
|
|
|
N_("_Select") },
|
|
|
|
|
|
|
|
{ "select-all", GIMP_STOCK_SELECTION_ALL,
|
|
|
|
N_("_All"), "<control>A", NULL,
|
|
|
|
G_CALLBACK (select_all_cmd_callback),
|
|
|
|
GIMP_HELP_SELECTION_ALL },
|
|
|
|
|
|
|
|
{ "select-none", GIMP_STOCK_SELECTION_NONE,
|
|
|
|
N_("_None"), "<control><shift>A", NULL,
|
|
|
|
G_CALLBACK (select_none_cmd_callback),
|
|
|
|
GIMP_HELP_SELECTION_NONE },
|
|
|
|
|
|
|
|
{ "select-invert", GIMP_STOCK_INVERT,
|
|
|
|
N_("_Invert"), "<control>I", NULL,
|
|
|
|
G_CALLBACK (select_invert_cmd_callback),
|
|
|
|
GIMP_HELP_SELECTION_INVERT },
|
|
|
|
|
|
|
|
{ "select-from-vectors", GIMP_STOCK_SELECTION_REPLACE,
|
|
|
|
N_("Fr_om Path"), "<shift>V", NULL,
|
|
|
|
G_CALLBACK (select_from_vectors_cmd_callback),
|
|
|
|
NULL /* FIXME */ },
|
|
|
|
|
|
|
|
{ "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, NULL,
|
|
|
|
G_CALLBACK (select_save_cmd_callback),
|
|
|
|
GIMP_HELP_SELECTION_TO_CHANNEL },
|
|
|
|
|
|
|
|
{ "select-to-vectors", GIMP_STOCK_SELECTION_TO_PATH,
|
|
|
|
N_("To _Path"), NULL, NULL,
|
|
|
|
G_CALLBACK (vectors_selection_to_vectors_cmd_callback),
|
|
|
|
GIMP_HELP_SELECTION_TO_PATH }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2004-04-27 21:55:26 +08:00
|
|
|
select_actions_setup (GimpActionGroup *group)
|
2004-04-19 22:54:24 +08:00
|
|
|
{
|
|
|
|
gimp_action_group_add_actions (group,
|
|
|
|
select_actions,
|
2004-04-27 21:55:26 +08:00
|
|
|
G_N_ELEMENTS (select_actions));
|
2004-04-19 22:54:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
select_actions_update (GimpActionGroup *group,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2004-05-03 22:03:51 +08:00
|
|
|
GimpImage *gimage;
|
|
|
|
GimpVectors *vectors = NULL;
|
|
|
|
gboolean fs = FALSE;
|
|
|
|
gboolean lp = FALSE;
|
|
|
|
gboolean sel = FALSE;
|
2004-04-19 22:54:24 +08:00
|
|
|
|
2004-05-03 22:03:51 +08:00
|
|
|
gimage = action_data_get_image (data);
|
2004-04-19 22:54:24 +08:00
|
|
|
|
2004-05-03 22:03:51 +08:00
|
|
|
if (gimage)
|
|
|
|
{
|
2004-04-19 22:54:24 +08:00
|
|
|
fs = (gimp_image_floating_sel (gimage) != NULL);
|
|
|
|
lp = ! gimp_image_is_empty (gimage);
|
|
|
|
sel = ! gimp_channel_is_empty (gimp_image_get_mask (gimage));
|
|
|
|
|
|
|
|
vectors = gimp_image_get_active_vectors (gimage);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define SET_SENSITIVE(action,condition) \
|
|
|
|
gimp_action_group_set_action_sensitive (group, action, (condition) != 0)
|
|
|
|
|
|
|
|
SET_SENSITIVE ("select-all", lp);
|
|
|
|
SET_SENSITIVE ("select-none", lp && sel);
|
|
|
|
SET_SENSITIVE ("select-invert", lp && sel);
|
|
|
|
SET_SENSITIVE ("select-from-vectors", lp && vectors);
|
|
|
|
SET_SENSITIVE ("select-float", lp && sel);
|
|
|
|
|
|
|
|
SET_SENSITIVE ("select-feather", lp && sel);
|
|
|
|
SET_SENSITIVE ("select-sharpen", lp && sel);
|
|
|
|
SET_SENSITIVE ("select-shrink", lp && sel);
|
|
|
|
SET_SENSITIVE ("select-grow", lp && sel);
|
|
|
|
SET_SENSITIVE ("select-border", lp && sel);
|
|
|
|
|
|
|
|
SET_SENSITIVE ("select-save", sel && !fs);
|
|
|
|
SET_SENSITIVE ("select-to-vectors", sel && !fs);
|
|
|
|
|
|
|
|
#undef SET_SENSITIVE
|
|
|
|
}
|