/* 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 . */ #include "config.h" #include #include #include "libpikawidgets/pikawidgets.h" #include "actions-types.h" #include "core/pika.h" #include "core/pikacontext.h" #include "widgets/pikaactiongroup.h" #include "widgets/pikahelp-ids.h" #include "widgets/pikapaletteeditor.h" #include "data-editor-commands.h" #include "palette-editor-actions.h" #include "palette-editor-commands.h" #include "pika-intl.h" static const PikaActionEntry palette_editor_actions[] = { { "palette-editor-edit-color", PIKA_ICON_EDIT, NC_("palette-editor-action", "_Edit Color..."), NULL, { NULL }, NC_("palette-editor-action", "Edit this entry"), palette_editor_edit_color_cmd_callback, PIKA_HELP_PALETTE_EDITOR_EDIT }, { "palette-editor-delete-color", PIKA_ICON_EDIT_DELETE, NC_("palette-editor-action", "_Delete Color"), NULL, { NULL }, NC_("palette-editor-action", "Delete this entry"), palette_editor_delete_color_cmd_callback, PIKA_HELP_PALETTE_EDITOR_DELETE } }; static const PikaToggleActionEntry palette_editor_toggle_actions[] = { { "palette-editor-edit-active", PIKA_ICON_LINKED, NC_("palette-editor-action", "Edit Active Palette"), NULL, { NULL }, NULL, data_editor_edit_active_cmd_callback, FALSE, PIKA_HELP_PALETTE_EDITOR_EDIT_ACTIVE } }; static const PikaEnumActionEntry palette_editor_new_actions[] = { { "palette-editor-new-color-fg", PIKA_ICON_DOCUMENT_NEW, NC_("palette-editor-action", "New Color from _FG"), NULL, { NULL }, NC_("palette-editor-action", "Create a new entry from the foreground color"), FALSE, FALSE, PIKA_HELP_PALETTE_EDITOR_NEW }, { "palette-editor-new-color-bg", PIKA_ICON_DOCUMENT_NEW, NC_("palette-editor-action", "New Color from _BG"), NULL, { NULL }, NC_("palette-editor-action", "Create a new entry from the background color"), TRUE, FALSE, PIKA_HELP_PALETTE_EDITOR_NEW } }; static const PikaEnumActionEntry palette_editor_zoom_actions[] = { { "palette-editor-zoom-in", PIKA_ICON_ZOOM_IN, N_("Zoom _In"), NULL, { NULL }, N_("Zoom in"), PIKA_ZOOM_IN, FALSE, PIKA_HELP_PALETTE_EDITOR_ZOOM_IN }, { "palette-editor-zoom-out", PIKA_ICON_ZOOM_OUT, N_("Zoom _Out"), NULL, { NULL }, N_("Zoom out"), PIKA_ZOOM_OUT, FALSE, PIKA_HELP_PALETTE_EDITOR_ZOOM_OUT }, { "palette-editor-zoom-all", PIKA_ICON_ZOOM_FIT_BEST, N_("Zoom _All"), NULL, { NULL }, N_("Zoom all"), PIKA_ZOOM_OUT_MAX, FALSE, PIKA_HELP_PALETTE_EDITOR_ZOOM_ALL } }; void palette_editor_actions_setup (PikaActionGroup *group) { pika_action_group_add_actions (group, "palette-editor-action", palette_editor_actions, G_N_ELEMENTS (palette_editor_actions)); pika_action_group_add_toggle_actions (group, "palette-editor-action", palette_editor_toggle_actions, G_N_ELEMENTS (palette_editor_toggle_actions)); pika_action_group_add_enum_actions (group, "palette-editor-action", palette_editor_new_actions, G_N_ELEMENTS (palette_editor_new_actions), palette_editor_new_color_cmd_callback); pika_action_group_add_enum_actions (group, NULL, palette_editor_zoom_actions, G_N_ELEMENTS (palette_editor_zoom_actions), palette_editor_zoom_cmd_callback); } void palette_editor_actions_update (PikaActionGroup *group, gpointer user_data) { PikaPaletteEditor *editor = PIKA_PALETTE_EDITOR (user_data); PikaDataEditor *data_editor = PIKA_DATA_EDITOR (user_data); PikaData *data; gboolean editable = FALSE; PikaRGB fg; PikaRGB bg; gboolean edit_active = FALSE; data = data_editor->data; if (data) { if (data_editor->data_editable) editable = TRUE; } if (data_editor->context) { pika_context_get_foreground (data_editor->context, &fg); pika_context_get_background (data_editor->context, &bg); } edit_active = pika_data_editor_get_edit_active (data_editor); #define SET_SENSITIVE(action,condition) \ pika_action_group_set_action_sensitive (group, action, (condition) != 0, NULL) #define SET_ACTIVE(action,condition) \ pika_action_group_set_action_active (group, action, (condition) != 0) #define SET_COLOR(action,color) \ pika_action_group_set_action_color (group, action, color, FALSE); SET_SENSITIVE ("palette-editor-edit-color", editable && editor->color); SET_SENSITIVE ("palette-editor-delete-color", editable && editor->color); SET_SENSITIVE ("palette-editor-new-color-fg", editable); SET_SENSITIVE ("palette-editor-new-color-bg", editable); SET_COLOR ("palette-editor-new-color-fg", data_editor->context ? &fg : NULL); SET_COLOR ("palette-editor-new-color-bg", data_editor->context ? &bg : NULL); SET_SENSITIVE ("palette-editor-zoom-out", data); SET_SENSITIVE ("palette-editor-zoom-in", data); SET_SENSITIVE ("palette-editor-zoom-all", data); SET_ACTIVE ("palette-editor-edit-active", edit_active); #undef SET_SENSITIVE #undef SET_ACTIVE #undef SET_COLOR }