113 lines
4.0 KiB
C
113 lines
4.0 KiB
C
/* PIKA - Photo and Image Kooker Application
|
|
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
|
|
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
|
|
*
|
|
* Original copyright, applying to most contents (license remains unchanged):
|
|
* 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 "libpikawidgets/pikawidgets.h"
|
|
|
|
#include "actions-types.h"
|
|
|
|
#include "core/pikaimage.h"
|
|
|
|
#include "widgets/pikaactiongroup.h"
|
|
#include "widgets/pikahelp-ids.h"
|
|
|
|
#include "display/pikadisplay.h"
|
|
#include "display/pikadisplayshell.h"
|
|
#include "display/pikatoolpath.h"
|
|
|
|
#include "vector-toolpath-actions.h"
|
|
#include "vector-toolpath-commands.h"
|
|
|
|
#include "pika-intl.h"
|
|
|
|
|
|
static const PikaActionEntry vector_toolpath_actions[] =
|
|
{
|
|
{ "vector-toolpath-delete-anchor", PIKA_ICON_PATH,
|
|
NC_("vector-toolpath-action", "_Delete Anchor"), NULL, { NULL }, NULL,
|
|
vector_toolpath_delete_anchor_cmd_callback,
|
|
NULL },
|
|
{ "vector-toolpath-shift-start", PIKA_ICON_PATH,
|
|
NC_("vector-toolpath-action", "Shift S_tart"), NULL, { NULL }, NULL,
|
|
vector_toolpath_shift_start_cmd_callback,
|
|
NULL },
|
|
|
|
{ "vector-toolpath-insert-anchor", PIKA_ICON_PATH,
|
|
NC_("vector-toolpath-action", "_Insert Anchor"), NULL, { NULL }, NULL,
|
|
vector_toolpath_insert_anchor_cmd_callback,
|
|
NULL },
|
|
{ "vector-toolpath-delete-segment", PIKA_ICON_PATH,
|
|
NC_("vector-toolpath-action", "Delete _Segment"), NULL, { NULL }, NULL,
|
|
vector_toolpath_delete_segment_cmd_callback,
|
|
NULL },
|
|
{ "vector-toolpath-reverse-stroke", PIKA_ICON_PATH,
|
|
NC_("vector-toolpath-action", "_Reverse Stroke"), NULL, { NULL }, NULL,
|
|
vector_toolpath_reverse_stroke_cmd_callback,
|
|
NULL }
|
|
};
|
|
|
|
|
|
#define SET_HIDE_EMPTY(action,condition) \
|
|
pika_action_group_set_action_hide_empty (group, action, (condition) != 0)
|
|
|
|
void
|
|
vector_toolpath_actions_setup (PikaActionGroup *group)
|
|
{
|
|
pika_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 (PikaActionGroup *group,
|
|
gpointer data)
|
|
{
|
|
PikaToolPath *toolpath = PIKA_TOOL_PATH (data);
|
|
gboolean on_handle, on_curve;
|
|
|
|
pika_tool_path_get_popup_state (toolpath, &on_handle, &on_curve);
|
|
|
|
#define SET_VISIBLE(action,condition) \
|
|
pika_action_group_set_action_visible (group, action, (condition) != 0)
|
|
#define SET_SENSITIVE(action,condition) \
|
|
pika_action_group_set_action_sensitive (group, action, (condition) != 0)
|
|
#define SET_ACTIVE(action,condition) \
|
|
pika_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);
|
|
|
|
}
|