PIKApp/app/dialogs/grid-dialog.c

178 lines
5.3 KiB
C
Raw Permalink Normal View History

2023-09-26 00:35:21 +02:00
/* 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
*
* Copyright (C) 2003 Henrik Brix Andersen <brix@gimp.org>
*
* 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 "libpikabase/pikabase.h"
#include "libpikaconfig/pikaconfig.h"
#include "libpikawidgets/pikawidgets.h"
#include "dialogs-types.h"
#include "config/pikacoreconfig.h"
#include "core/pika.h"
#include "core/pikacontext.h"
#include "core/pikaimage.h"
#include "core/pikaimage-grid.h"
#include "core/pikaimage-undo.h"
#include "core/pikaimage-undo-push.h"
#include "core/pikagrid.h"
#include "widgets/pikagrideditor.h"
#include "widgets/pikahelp-ids.h"
#include "widgets/pikaviewabledialog.h"
#include "grid-dialog.h"
#include "pika-intl.h"
#define GRID_RESPONSE_RESET 1
typedef struct _GridDialog GridDialog;
struct _GridDialog
{
PikaImage *image;
PikaGrid *grid;
PikaGrid *grid_backup;
};
/* local functions */
static void grid_dialog_free (GridDialog *private);
static void grid_dialog_response (GtkWidget *dialog,
gint response_id,
GridDialog *private);
/* public function */
GtkWidget *
grid_dialog_new (PikaImage *image,
PikaContext *context,
GtkWidget *parent)
{
GridDialog *private;
GtkWidget *dialog;
GtkWidget *editor;
gdouble xres;
gdouble yres;
g_return_val_if_fail (PIKA_IS_IMAGE (image), NULL);
g_return_val_if_fail (PIKA_IS_CONTEXT (context), NULL);
g_return_val_if_fail (parent == NULL || GTK_IS_WIDGET (parent), NULL);
private = g_slice_new0 (GridDialog);
private->image = image;
private->grid = pika_image_get_grid (image);
private->grid_backup = pika_config_duplicate (PIKA_CONFIG (private->grid));
dialog = pika_viewable_dialog_new (g_list_prepend (NULL, image), context,
_("Configure Grid"), "pika-grid-configure",
PIKA_ICON_GRID, _("Configure Image Grid"),
parent,
pika_standard_help_func,
PIKA_HELP_IMAGE_GRID,
_("_Reset"), GRID_RESPONSE_RESET,
_("_Cancel"), GTK_RESPONSE_CANCEL,
_("_OK"), GTK_RESPONSE_OK,
NULL);
pika_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
GRID_RESPONSE_RESET,
GTK_RESPONSE_OK,
GTK_RESPONSE_CANCEL,
-1);
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
g_object_weak_ref (G_OBJECT (dialog),
(GWeakNotify) grid_dialog_free, private);
g_signal_connect (dialog, "response",
G_CALLBACK (grid_dialog_response),
private);
pika_image_get_resolution (image, &xres, &yres);
editor = pika_grid_editor_new (private->grid, context, xres, yres);
gtk_container_set_border_width (GTK_CONTAINER (editor), 12);
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
editor, TRUE, TRUE, 0);
gtk_widget_show (editor);
return dialog;
}
/* local functions */
static void
grid_dialog_free (GridDialog *private)
{
g_object_unref (private->grid_backup);
g_slice_free (GridDialog, private);
}
static void
grid_dialog_response (GtkWidget *dialog,
gint response_id,
GridDialog *private)
{
switch (response_id)
{
case GRID_RESPONSE_RESET:
pika_config_sync (G_OBJECT (private->image->pika->config->default_grid),
G_OBJECT (private->grid), 0);
break;
case GTK_RESPONSE_OK:
if (! pika_config_is_equal_to (PIKA_CONFIG (private->grid_backup),
PIKA_CONFIG (private->grid)))
{
pika_image_undo_push_image_grid (private->image, _("Grid"),
private->grid_backup);
pika_image_flush (private->image);
}
gtk_widget_destroy (dialog);
break;
default:
pika_image_set_grid (private->image, private->grid_backup, FALSE);
gtk_widget_destroy (dialog);
}
}