gimp/app/actions/templates-commands.c

345 lines
12 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 "libgimpconfig/gimpconfig.h"
#include "libgimpwidgets/gimpwidgets.h"
#include "actions-types.h"
#include "config/gimpcoreconfig.h"
#include "core/gimp.h"
#include "core/gimpcontainer.h"
#include "core/gimpcontext.h"
#include "core/gimpimage-new.h"
#include "core/gimptemplate.h"
#include "widgets/gimpcontainerview.h"
#include "widgets/gimpdialogfactory.h"
#include "widgets/gimphelp-ids.h"
#include "widgets/gimpmessagebox.h"
#include "widgets/gimpmessagedialog.h"
#include "widgets/gimptemplateeditor.h"
#include "widgets/gimptemplateview.h"
#include "widgets/gimpwidgets-utils.h"
#include "dialogs/dialogs.h"
#include "dialogs/template-options-dialog.h"
#include "actions.h"
#include "templates-commands.h"
#include "gimp-intl.h"
typedef struct
{
GimpContext *context;
GimpContainer *container;
GimpTemplate *template;
} TemplateDeleteData;
/* local function prototypes */
static void templates_new_callback (GtkWidget *dialog,
GimpTemplate *template,
GimpTemplate *edit_template,
GimpContext *context,
gpointer user_data);
static void templates_edit_callback (GtkWidget *dialog,
GimpTemplate *template,
GimpTemplate *edit_template,
GimpContext *context,
gpointer user_data);
static void templates_delete_response (GtkWidget *dialog,
gint response_id,
TemplateDeleteData *delete_data);
static void templates_delete_data_free (TemplateDeleteData *delete_data);
/* public functions */
void
templates_create_image_cmd_callback (GimpAction *action,
GVariant *value,
gpointer data)
{
Gimp *gimp;
GimpContainerEditor *editor = GIMP_CONTAINER_EDITOR (data);
GimpContainer *container;
GimpContext *context;
GimpTemplate *template;
return_if_no_gimp (gimp, data);
container = gimp_container_view_get_container (editor->view);
context = gimp_container_view_get_context (editor->view);
template = gimp_context_get_template (context);
if (template && gimp_container_have (container, GIMP_OBJECT (template)))
{
GtkWidget *widget = GTK_WIDGET (editor);
GimpImage *image;
image = gimp_image_new_from_template (gimp, template, context);
gimp_create_display (gimp, image, gimp_template_get_unit (template), 1.0,
G_OBJECT (gimp_widget_get_monitor (widget)));
g_object_unref (image);
gimp_image_new_set_last_template (gimp, template);
}
}
void
templates_new_cmd_callback (GimpAction *action,
GVariant *value,
gpointer data)
{
GimpContainerEditor *editor = GIMP_CONTAINER_EDITOR (data);
GimpContext *context;
GtkWidget *dialog;
context = gimp_container_view_get_context (editor->view);
#define NEW_DIALOG_KEY "gimp-template-new-dialog"
dialog = dialogs_get_dialog (G_OBJECT (context->gimp), NEW_DIALOG_KEY);
if (! dialog)
{
dialog = template_options_dialog_new (NULL, context,
GTK_WIDGET (editor),
_("New Template"),
"gimp-template-new",
GIMP_ICON_TEMPLATE,
_("Create a New Template"),
GIMP_HELP_TEMPLATE_NEW,
templates_new_callback,
NULL);
dialogs_attach_dialog (G_OBJECT (context->gimp), NEW_DIALOG_KEY, dialog);
}
gtk_window_present (GTK_WINDOW (dialog));
}
void
templates_duplicate_cmd_callback (GimpAction *action,
GVariant *value,
gpointer data)
{
GimpContainerEditor *editor = GIMP_CONTAINER_EDITOR (data);
GimpContainer *container;
GimpContext *context;
GimpTemplate *template;
container = gimp_container_view_get_container (editor->view);
context = gimp_container_view_get_context (editor->view);
template = gimp_context_get_template (context);
if (template && gimp_container_have (container, GIMP_OBJECT (template)))
{
GimpTemplate *new_template;
new_template = gimp_config_duplicate (GIMP_CONFIG (template));
gimp_container_add (container, GIMP_OBJECT (new_template));
gimp_context_set_by_type (context,
gimp_container_get_children_type (container),
GIMP_OBJECT (new_template));
g_object_unref (new_template);
templates_edit_cmd_callback (action, value, data);
}
}
void
templates_edit_cmd_callback (GimpAction *action,
GVariant *value,
gpointer data)
{
GimpContainerEditor *editor = GIMP_CONTAINER_EDITOR (data);
GimpContainer *container;
GimpContext *context;
GimpTemplate *template;
container = gimp_container_view_get_container (editor->view);
context = gimp_container_view_get_context (editor->view);
template = gimp_context_get_template (context);
if (template && gimp_container_have (container, GIMP_OBJECT (template)))
{
GtkWidget *dialog;
#define EDIT_DIALOG_KEY "gimp-template-edit-dialog"
dialog = dialogs_get_dialog (G_OBJECT (template), EDIT_DIALOG_KEY);
if (! dialog)
{
dialog = template_options_dialog_new (template, context,
GTK_WIDGET (editor),
_("Edit Template"),
"gimp-template-edit",
GIMP_ICON_EDIT,
_("Edit Template"),
GIMP_HELP_TEMPLATE_EDIT,
templates_edit_callback,
NULL);
dialogs_attach_dialog (G_OBJECT (template), EDIT_DIALOG_KEY, dialog);
}
gtk_window_present (GTK_WINDOW (dialog));
}
}
void
templates_delete_cmd_callback (GimpAction *action,
GVariant *value,
gpointer data)
{
GimpContainerEditor *editor = GIMP_CONTAINER_EDITOR (data);
GimpContainer *container;
GimpContext *context;
GimpTemplate *template;
container = gimp_container_view_get_container (editor->view);
context = gimp_container_view_get_context (editor->view);
template = gimp_context_get_template (context);
if (template && gimp_container_have (container, GIMP_OBJECT (template)))
{
TemplateDeleteData *delete_data = g_slice_new (TemplateDeleteData);
GtkWidget *dialog;
delete_data->context = context;
delete_data->container = container;
delete_data->template = template;
dialog =
gimp_message_dialog_new (_("Delete Template"), GIMP_ICON_EDIT_DELETE,
GTK_WIDGET (editor), 0,
gimp_standard_help_func, NULL,
_("_Cancel"), GTK_RESPONSE_CANCEL,
_("_Delete"), GTK_RESPONSE_OK,
NULL);
gimp_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
GTK_RESPONSE_OK,
GTK_RESPONSE_CANCEL,
-1);
g_object_weak_ref (G_OBJECT (dialog),
(GWeakNotify) templates_delete_data_free, delete_data);
g_signal_connect_object (template, "disconnect",
G_CALLBACK (gtk_widget_destroy),
dialog, G_CONNECT_SWAPPED);
g_signal_connect (dialog, "response",
G_CALLBACK (templates_delete_response),
delete_data);
gimp_message_box_set_primary_text (GIMP_MESSAGE_DIALOG (dialog)->box,
_("Are you sure you want to delete "
"template '%s' from the list and "
"from disk?"),
gimp_object_get_name (template));
gtk_widget_show (dialog);
}
}
/* private functions */
static void
templates_new_callback (GtkWidget *dialog,
GimpTemplate *template,
GimpTemplate *edit_template,
GimpContext *context,
gpointer user_data)
{
gimp_container_add (context->gimp->templates, GIMP_OBJECT (edit_template));
gimp_context_set_template (gimp_get_user_context (context->gimp),
edit_template);
gtk_widget_destroy (dialog);
}
static void
templates_edit_callback (GtkWidget *dialog,
GimpTemplate *template,
GimpTemplate *edit_template,
GimpContext *context,
gpointer user_data)
{
gimp_config_sync (G_OBJECT (edit_template),
G_OBJECT (template), 0);
gtk_widget_destroy (dialog);
}
static void
templates_delete_response (GtkWidget *dialog,
gint response_id,
TemplateDeleteData *delete_data)
{
if (response_id == GTK_RESPONSE_OK)
{
GimpObject *new_active = NULL;
if (delete_data->template ==
gimp_context_get_template (delete_data->context))
{
new_active = gimp_container_get_neighbor_of (delete_data->container,
GIMP_OBJECT (delete_data->template));
}
if (gimp_container_have (delete_data->container,
GIMP_OBJECT (delete_data->template)))
{
if (new_active)
gimp_context_set_by_type (delete_data->context,
gimp_container_get_children_type (delete_data->container),
new_active);
gimp_container_remove (delete_data->container,
GIMP_OBJECT (delete_data->template));
}
}
gtk_widget_destroy (dialog);
}
static void
templates_delete_data_free (TemplateDeleteData *delete_data)
{
g_slice_free (TemplateDeleteData, delete_data);
}