These were missing help ids and don't have tooltips either, while some of these actions may not be clear to end users what they do. This will allow us to have context sensitive help about these commands in the manual.
108 lines
3.9 KiB
C
108 lines
3.9 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <gegl.h>
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
#include "actions-types.h"
|
|
|
|
#include "core/gimpimage.h"
|
|
|
|
#include "widgets/gimpactiongroup.h"
|
|
#include "widgets/gimphelp-ids.h"
|
|
|
|
#include "display/gimpdisplay.h"
|
|
#include "display/gimpdisplayshell.h"
|
|
#include "display/gimptoolpath.h"
|
|
|
|
#include "vector-toolpath-actions.h"
|
|
#include "vector-toolpath-commands.h"
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
static const GimpActionEntry vector_toolpath_actions[] =
|
|
{
|
|
{ "vector-toolpath-delete-anchor", GIMP_ICON_PATH,
|
|
NC_("vector-toolpath-action", "_Delete Anchor"), NULL, { NULL }, NULL,
|
|
vector_toolpath_delete_anchor_cmd_callback,
|
|
GIMP_HELP_PATH_TOOL_DELETE_ANCHOR },
|
|
{ "vector-toolpath-shift-start", GIMP_ICON_PATH,
|
|
NC_("vector-toolpath-action", "Shift S_tart"), NULL, { NULL }, NULL,
|
|
vector_toolpath_shift_start_cmd_callback,
|
|
GIMP_HELP_PATH_TOOL_SHIFT_START },
|
|
|
|
{ "vector-toolpath-insert-anchor", GIMP_ICON_PATH,
|
|
NC_("vector-toolpath-action", "_Insert Anchor"), NULL, { NULL }, NULL,
|
|
vector_toolpath_insert_anchor_cmd_callback,
|
|
GIMP_HELP_PATH_TOOL_INSERT_ANCHOR },
|
|
{ "vector-toolpath-delete-segment", GIMP_ICON_PATH,
|
|
NC_("vector-toolpath-action", "Delete _Segment"), NULL, { NULL }, NULL,
|
|
vector_toolpath_delete_segment_cmd_callback,
|
|
GIMP_HELP_PATH_TOOL_DELETE_SEGMENT },
|
|
{ "vector-toolpath-reverse-stroke", GIMP_ICON_PATH,
|
|
NC_("vector-toolpath-action", "_Reverse Stroke"), NULL, { NULL }, NULL,
|
|
vector_toolpath_reverse_stroke_cmd_callback,
|
|
GIMP_HELP_PATH_TOOL_REVERSE_STROKE }
|
|
};
|
|
|
|
|
|
#define SET_HIDE_EMPTY(action,condition) \
|
|
gimp_action_group_set_action_hide_empty (group, action, (condition) != 0)
|
|
|
|
void
|
|
vector_toolpath_actions_setup (GimpActionGroup *group)
|
|
{
|
|
gimp_action_group_add_actions (group, "vector-toolpath-action",
|
|
vector_toolpath_actions,
|
|
G_N_ELEMENTS (vector_toolpath_actions));
|
|
}
|
|
|
|
/* The following code is written on the assumption that this is for a
|
|
* context menu, activated by right-clicking on a toolpath vectors widget.
|
|
* Therefore, the tool must have a display. If for any reason the
|
|
* code is adapted to a different situation, some existence testing
|
|
* will need to be added.
|
|
*/
|
|
void
|
|
vector_toolpath_actions_update (GimpActionGroup *group,
|
|
gpointer data)
|
|
{
|
|
GimpToolPath *toolpath = GIMP_TOOL_PATH (data);
|
|
gboolean on_handle, on_curve;
|
|
|
|
gimp_tool_path_get_popup_state (toolpath, &on_handle, &on_curve);
|
|
|
|
#define SET_VISIBLE(action,condition) \
|
|
gimp_action_group_set_action_visible (group, action, (condition) != 0)
|
|
#define SET_SENSITIVE(action,condition) \
|
|
gimp_action_group_set_action_sensitive (group, action, (condition) != 0)
|
|
#define SET_ACTIVE(action,condition) \
|
|
gimp_action_group_set_action_active (group, action, (condition) != 0)
|
|
|
|
SET_VISIBLE ("vector-toolpath-shift-start", on_handle);
|
|
SET_VISIBLE ("vector-toolpath-delete-anchor", on_handle);
|
|
|
|
SET_VISIBLE ("vector-toolpath-insert-anchor", !on_handle && on_curve);
|
|
SET_VISIBLE ("vector-toolpath-delete-segment", !on_handle && on_curve);
|
|
SET_VISIBLE ("vector-toolpath-reverse-stroke", on_curve);
|
|
|
|
}
|