/* 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 "dialogs-types.h" #include "core/pika.h" #include "core/pikacontainer.h" #include "core/pikacontext.h" #include "core/pikadata.h" #include "core/pikadatafactory.h" #include "widgets/pikamessagebox.h" #include "widgets/pikamessagedialog.h" #include "data-delete-dialog.h" #include "pika-intl.h" typedef struct _DataDeleteDialog DataDeleteDialog; struct _DataDeleteDialog { PikaDataFactory *factory; PikaData *data; PikaContext *context; GtkWidget *parent; }; /* local function prototypes */ static void data_delete_dialog_response (GtkWidget *dialog, gint response_id, DataDeleteDialog *private); /* public functions */ GtkWidget * data_delete_dialog_new (PikaDataFactory *factory, PikaData *data, PikaContext *context, GtkWidget *parent) { DataDeleteDialog *private; GtkWidget *dialog; g_return_val_if_fail (PIKA_IS_DATA_FACTORY (factory), NULL); g_return_val_if_fail (PIKA_IS_DATA (data), NULL); g_return_val_if_fail (context == NULL || PIKA_IS_CONTEXT (context), NULL); g_return_val_if_fail (GTK_IS_WIDGET (parent), NULL); private = g_slice_new0 (DataDeleteDialog); private->factory = factory; private->data = data; private->context = context; private->parent = parent; dialog = pika_message_dialog_new (_("Delete Object"), PIKA_ICON_EDIT_DELETE, gtk_widget_get_toplevel (parent), 0, pika_standard_help_func, NULL, _("_Cancel"), GTK_RESPONSE_CANCEL, _("_Delete"), GTK_RESPONSE_OK, NULL); pika_dialog_set_alternative_button_order (GTK_DIALOG (dialog), GTK_RESPONSE_OK, GTK_RESPONSE_CANCEL, -1); g_signal_connect_object (data, "disconnect", G_CALLBACK (gtk_widget_destroy), dialog, G_CONNECT_SWAPPED); g_signal_connect (dialog, "response", G_CALLBACK (data_delete_dialog_response), private); pika_message_box_set_primary_text (PIKA_MESSAGE_DIALOG (dialog)->box, _("Delete '%s'?"), pika_object_get_name (data)); pika_message_box_set_text (PIKA_MESSAGE_DIALOG (dialog)->box, _("Are you sure you want to remove '%s' " "from the list and delete it on disk?"), pika_object_get_name (data)); return dialog; } /* private functions */ static void data_delete_dialog_response (GtkWidget *dialog, gint response_id, DataDeleteDialog *private) { gtk_widget_destroy (dialog); if (response_id == GTK_RESPONSE_OK) { PikaDataFactory *factory = private->factory; PikaData *data = private->data; PikaContainer *container; PikaObject *new_active = NULL; GError *error = NULL; container = pika_data_factory_get_container (factory); if (private->context && PIKA_OBJECT (data) == pika_context_get_by_type (private->context, pika_container_get_children_type (container))) { new_active = pika_container_get_neighbor_of (container, PIKA_OBJECT (data)); } if (! pika_data_factory_data_delete (factory, data, TRUE, &error)) { pika_message (pika_data_factory_get_pika (factory), G_OBJECT (private->parent), PIKA_MESSAGE_ERROR, "%s", error->message); g_clear_error (&error); } if (new_active) pika_context_set_by_type (private->context, pika_container_get_children_type (container), new_active); } g_slice_free (DataDeleteDialog, private); }