PIKApp/app/dialogs/fill-dialog.c

190 lines
5.8 KiB
C
Raw 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
*
* fill-dialog.c
* Copyright (C) 2016 Michael Natterer <mitch@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 "libpikaconfig/pikaconfig.h"
#include "libpikawidgets/pikawidgets.h"
#include "dialogs-types.h"
#include "core/pikadrawable.h"
#include "core/pikafilloptions.h"
#include "widgets/pikafilleditor.h"
#include "widgets/pikaviewabledialog.h"
#include "fill-dialog.h"
#include "pika-intl.h"
#define RESPONSE_RESET 1
typedef struct _FillDialog FillDialog;
struct _FillDialog
{
GList *items;
GList *drawables;
PikaContext *context;
PikaFillOptions *options;
PikaFillCallback callback;
gpointer user_data;
};
/* local function prototypes */
static void fill_dialog_free (FillDialog *private);
static void fill_dialog_response (GtkWidget *dialog,
gint response_id,
FillDialog *private);
/* public function */
GtkWidget *
fill_dialog_new (GList *items,
GList *drawables,
PikaContext *context,
const gchar *title,
const gchar *icon_name,
const gchar *help_id,
GtkWidget *parent,
PikaFillOptions *options,
PikaFillCallback callback,
gpointer user_data)
{
FillDialog *private;
GtkWidget *dialog;
GtkWidget *main_vbox;
GtkWidget *fill_editor;
g_return_val_if_fail (items, NULL);
g_return_val_if_fail (drawables, NULL);
g_return_val_if_fail (PIKA_IS_CONTEXT (context), NULL);
g_return_val_if_fail (PIKA_IS_FILL_OPTIONS (options), NULL);
g_return_val_if_fail (icon_name != NULL, NULL);
g_return_val_if_fail (help_id != NULL, NULL);
g_return_val_if_fail (parent == NULL || GTK_IS_WIDGET (parent), NULL);
g_return_val_if_fail (callback != NULL, NULL);
private = g_slice_new0 (FillDialog);
private->items = g_list_copy (items);
private->drawables = g_list_copy (drawables);
private->context = context;
private->options = pika_fill_options_new (context->pika, context, TRUE);
private->callback = callback;
private->user_data = user_data;
pika_config_sync (G_OBJECT (options),
G_OBJECT (private->options), 0);
dialog = pika_viewable_dialog_new (g_list_copy (items), context,
title, "pika-fill-options",
icon_name,
_("Choose Fill Style"),
parent,
pika_standard_help_func,
help_id,
_("_Reset"), RESPONSE_RESET,
_("_Cancel"), GTK_RESPONSE_CANCEL,
_("_Fill"), GTK_RESPONSE_OK,
NULL);
pika_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
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) fill_dialog_free, private);
g_signal_connect (dialog, "response",
G_CALLBACK (fill_dialog_response),
private);
main_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
main_vbox, TRUE, TRUE, 0);
gtk_widget_show (main_vbox);
fill_editor = pika_fill_editor_new (private->options, FALSE, FALSE);
gtk_box_pack_start (GTK_BOX (main_vbox), fill_editor, FALSE, FALSE, 0);
gtk_widget_show (fill_editor);
return dialog;
}
/* private functions */
static void
fill_dialog_free (FillDialog *private)
{
g_object_unref (private->options);
g_list_free (private->drawables);
g_list_free (private->items);
g_slice_free (FillDialog, private);
}
static void
fill_dialog_response (GtkWidget *dialog,
gint response_id,
FillDialog *private)
{
switch (response_id)
{
case RESPONSE_RESET:
pika_config_reset (PIKA_CONFIG (private->options));
break;
case GTK_RESPONSE_OK:
private->callback (dialog,
private->items,
private->drawables,
private->context,
private->options,
private->user_data);
break;
default:
gtk_widget_destroy (dialog);
break;
}
}