2006-12-09 21:33:38 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-09-27 02:34:18 +00:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Henrik Brix Andersen <brix@gimp.org>
|
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2003-09-27 02:34:18 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-09-27 02:34:18 +00:00
|
|
|
* (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
|
2018-07-11 23:27:07 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2003-09-27 02:34:18 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2008-10-09 20:24:04 +00:00
|
|
|
#include <gegl.h>
|
2003-09-27 02:34:18 +00:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2005-01-25 19:11:26 +00:00
|
|
|
#include "libgimpconfig/gimpconfig.h"
|
2003-09-27 02:34:18 +00:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
2004-09-13 15:15:23 +00:00
|
|
|
#include "dialogs-types.h"
|
2003-09-27 02:34:18 +00:00
|
|
|
|
|
|
|
#include "core/gimp.h"
|
|
|
|
#include "core/gimpdrawable.h"
|
|
|
|
#include "core/gimpimage.h"
|
2003-12-30 16:32:07 +00:00
|
|
|
#include "core/gimppaintinfo.h"
|
2003-09-27 02:34:18 +00:00
|
|
|
#include "core/gimpstrokeoptions.h"
|
2003-09-27 13:46:30 +00:00
|
|
|
#include "core/gimptoolinfo.h"
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2004-05-11 16:01:00 +00:00
|
|
|
#include "widgets/gimpcontainercombobox.h"
|
|
|
|
#include "widgets/gimpcontainerview.h"
|
2003-09-27 02:34:18 +00:00
|
|
|
#include "widgets/gimpviewabledialog.h"
|
|
|
|
#include "widgets/gimpstrokeeditor.h"
|
|
|
|
|
|
|
|
#include "stroke-dialog.h"
|
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
2003-11-06 15:27:05 +00:00
|
|
|
#define RESPONSE_RESET 1
|
|
|
|
|
|
|
|
|
2016-10-27 21:26:07 +02:00
|
|
|
typedef struct _StrokeDialog StrokeDialog;
|
|
|
|
|
|
|
|
struct _StrokeDialog
|
2016-09-27 11:15:52 +02:00
|
|
|
{
|
|
|
|
GimpItem *item;
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpContext *context;
|
|
|
|
GimpStrokeOptions *options;
|
|
|
|
GimpStrokeCallback callback;
|
|
|
|
gpointer user_data;
|
|
|
|
|
|
|
|
GtkWidget *tool_combo;
|
2016-10-27 21:26:07 +02:00
|
|
|
};
|
2016-09-27 11:15:52 +02:00
|
|
|
|
|
|
|
|
2016-10-27 21:26:07 +02:00
|
|
|
/* local function prototypes */
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2016-10-27 21:26:07 +02:00
|
|
|
static void stroke_dialog_free (StrokeDialog *private);
|
2016-09-27 11:15:52 +02:00
|
|
|
static void stroke_dialog_response (GtkWidget *dialog,
|
|
|
|
gint response_id,
|
|
|
|
StrokeDialog *private);
|
2003-09-27 02:34:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* public function */
|
|
|
|
|
|
|
|
GtkWidget *
|
2016-09-27 11:15:52 +02:00
|
|
|
stroke_dialog_new (GimpItem *item,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
GimpContext *context,
|
|
|
|
const gchar *title,
|
|
|
|
const gchar *icon_name,
|
|
|
|
const gchar *help_id,
|
|
|
|
GtkWidget *parent,
|
|
|
|
GimpStrokeOptions *options,
|
|
|
|
GimpStrokeCallback callback,
|
|
|
|
gpointer user_data)
|
2003-09-27 02:34:18 +00:00
|
|
|
{
|
2016-09-27 11:15:52 +02:00
|
|
|
StrokeDialog *private;
|
|
|
|
GimpImage *image;
|
|
|
|
GtkWidget *dialog;
|
|
|
|
GtkWidget *main_vbox;
|
|
|
|
GtkWidget *radio_box;
|
|
|
|
GtkWidget *cairo_radio;
|
|
|
|
GtkWidget *paint_radio;
|
|
|
|
GSList *group;
|
|
|
|
GtkWidget *frame;
|
2003-09-27 14:41:10 +00:00
|
|
|
|
2003-09-27 13:46:30 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_ITEM (item), NULL);
|
2016-09-27 11:15:52 +02:00
|
|
|
g_return_val_if_fail (GIMP_IS_DRAWABLE (drawable), NULL);
|
2006-09-01 11:26:54 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_CONTEXT (context), NULL);
|
2014-05-07 15:30:38 +02:00
|
|
|
g_return_val_if_fail (icon_name != NULL, NULL);
|
2003-09-27 13:46:30 +00:00
|
|
|
g_return_val_if_fail (help_id != NULL, NULL);
|
2003-11-08 15:29:47 +00:00
|
|
|
g_return_val_if_fail (parent == NULL || GTK_IS_WIDGET (parent), NULL);
|
2016-09-27 11:15:52 +02:00
|
|
|
g_return_val_if_fail (callback != NULL, NULL);
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2006-09-01 11:26:54 +00:00
|
|
|
image = gimp_item_get_image (item);
|
2004-10-22 12:32:31 +00:00
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
private = g_slice_new0 (StrokeDialog);
|
2004-10-22 12:32:31 +00:00
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
private->item = item;
|
|
|
|
private->drawable = drawable;
|
|
|
|
private->context = context;
|
|
|
|
private->options = gimp_stroke_options_new (context->gimp, context, TRUE);
|
|
|
|
private->callback = callback;
|
|
|
|
private->user_data = user_data;
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
gimp_config_sync (G_OBJECT (options),
|
|
|
|
G_OBJECT (private->options), 0);
|
2003-09-27 20:04:07 +00:00
|
|
|
|
2006-09-01 11:26:54 +00:00
|
|
|
dialog = gimp_viewable_dialog_new (GIMP_VIEWABLE (item), context,
|
2004-10-23 10:28:56 +00:00
|
|
|
title, "gimp-stroke-options",
|
2014-05-07 15:30:38 +02:00
|
|
|
icon_name,
|
2004-10-23 10:28:56 +00:00
|
|
|
_("Choose Stroke Style"),
|
|
|
|
parent,
|
|
|
|
gimp_standard_help_func,
|
|
|
|
help_id,
|
|
|
|
|
2017-02-12 16:06:34 +01:00
|
|
|
_("_Reset"), RESPONSE_RESET,
|
|
|
|
_("_Cancel"), GTK_RESPONSE_CANCEL,
|
|
|
|
_("_Stroke"), GTK_RESPONSE_OK,
|
2004-10-23 10:28:56 +00:00
|
|
|
|
|
|
|
NULL);
|
2003-09-27 13:46:30 +00:00
|
|
|
|
2018-05-10 17:04:37 +02:00
|
|
|
gimp_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
|
2005-02-08 20:40:33 +00:00
|
|
|
RESPONSE_RESET,
|
|
|
|
GTK_RESPONSE_OK,
|
|
|
|
GTK_RESPONSE_CANCEL,
|
|
|
|
-1);
|
|
|
|
|
2004-10-23 19:01:26 +00:00
|
|
|
gtk_window_set_resizable (GTK_WINDOW (dialog), FALSE);
|
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
g_object_weak_ref (G_OBJECT (dialog),
|
|
|
|
(GWeakNotify) stroke_dialog_free, private);
|
|
|
|
|
2003-11-06 15:27:05 +00:00
|
|
|
g_signal_connect (dialog, "response",
|
|
|
|
G_CALLBACK (stroke_dialog_response),
|
2016-09-27 11:15:52 +02:00
|
|
|
private);
|
2003-09-27 13:46:30 +00:00
|
|
|
|
2011-09-30 11:29:11 +02:00
|
|
|
main_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
|
2004-05-03 15:37:56 +00:00
|
|
|
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
|
2010-10-30 14:56:00 +02:00
|
|
|
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
|
|
|
|
main_vbox, TRUE, TRUE, 0);
|
2003-09-27 13:46:30 +00:00
|
|
|
gtk_widget_show (main_vbox);
|
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
radio_box = gimp_prop_enum_radio_box_new (G_OBJECT (private->options),
|
|
|
|
"method", -1, -1);
|
2004-10-22 12:32:31 +00:00
|
|
|
|
|
|
|
group = gtk_radio_button_get_group (g_object_get_data (G_OBJECT (radio_box),
|
|
|
|
"radio-button"));
|
|
|
|
|
2011-05-11 11:43:19 +02:00
|
|
|
cairo_radio = g_object_ref (group->next->data);
|
|
|
|
gtk_container_remove (GTK_CONTAINER (radio_box), cairo_radio);
|
2004-10-22 12:32:31 +00:00
|
|
|
|
2005-09-06 16:00:36 +00:00
|
|
|
paint_radio = g_object_ref (group->data);
|
2004-10-22 12:32:31 +00:00
|
|
|
gtk_container_remove (GTK_CONTAINER (radio_box), paint_radio);
|
|
|
|
|
2006-07-05 13:40:47 +00:00
|
|
|
g_object_ref_sink (radio_box);
|
|
|
|
g_object_unref (radio_box);
|
2004-10-22 12:32:31 +00:00
|
|
|
|
2018-05-12 15:33:43 +02:00
|
|
|
gimp_label_set_attributes (GTK_LABEL (gtk_bin_get_child (GTK_BIN (cairo_radio))),
|
|
|
|
PANGO_ATTR_WEIGHT, PANGO_WEIGHT_BOLD,
|
|
|
|
-1);
|
|
|
|
gimp_label_set_attributes (GTK_LABEL (gtk_bin_get_child (GTK_BIN (paint_radio))),
|
|
|
|
PANGO_ATTR_WEIGHT, PANGO_WEIGHT_BOLD,
|
|
|
|
-1);
|
2003-09-27 14:41:10 +00:00
|
|
|
|
|
|
|
/* the stroke frame */
|
|
|
|
|
2004-05-03 15:37:56 +00:00
|
|
|
frame = gimp_frame_new (NULL);
|
2003-09-27 13:46:30 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
2011-05-11 11:43:19 +02:00
|
|
|
gtk_frame_set_label_widget (GTK_FRAME (frame), cairo_radio);
|
|
|
|
g_object_unref (cairo_radio);
|
2003-09-27 13:46:30 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
GtkWidget *stroke_editor;
|
2007-12-26 17:33:41 +00:00
|
|
|
gdouble xres;
|
|
|
|
gdouble yres;
|
2003-09-27 13:46:30 +00:00
|
|
|
|
2007-12-26 17:33:41 +00:00
|
|
|
gimp_image_get_resolution (image, &xres, &yres);
|
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
stroke_editor = gimp_stroke_editor_new (private->options, yres, FALSE);
|
2003-09-27 13:46:30 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (frame), stroke_editor);
|
|
|
|
gtk_widget_show (stroke_editor);
|
|
|
|
|
2011-05-11 11:43:19 +02:00
|
|
|
g_object_bind_property (cairo_radio, "active",
|
|
|
|
stroke_editor, "sensitive",
|
|
|
|
G_BINDING_SYNC_CREATE);
|
2003-09-27 13:46:30 +00:00
|
|
|
}
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2003-09-27 14:41:10 +00:00
|
|
|
|
|
|
|
/* the paint tool frame */
|
|
|
|
|
2004-05-03 15:37:56 +00:00
|
|
|
frame = gimp_frame_new (NULL);
|
2003-09-27 13:46:30 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2004-10-22 12:32:31 +00:00
|
|
|
gtk_frame_set_label_widget (GTK_FRAME (frame), paint_radio);
|
|
|
|
g_object_unref (paint_radio);
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2003-09-27 13:46:30 +00:00
|
|
|
{
|
2008-07-21 15:45:53 +00:00
|
|
|
GtkWidget *vbox;
|
2004-10-22 12:32:31 +00:00
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *combo;
|
2008-07-21 15:45:53 +00:00
|
|
|
GtkWidget *button;
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2011-09-30 11:29:11 +02:00
|
|
|
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6);
|
2008-07-21 15:45:53 +00:00
|
|
|
gtk_container_add (GTK_CONTAINER (frame), vbox);
|
|
|
|
gtk_widget_show (vbox);
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2011-05-11 11:43:19 +02:00
|
|
|
g_object_bind_property (paint_radio, "active",
|
|
|
|
vbox, "sensitive",
|
|
|
|
G_BINDING_SYNC_CREATE);
|
2008-07-21 15:45:53 +00:00
|
|
|
|
2011-09-30 11:29:11 +02:00
|
|
|
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 6);
|
2008-07-21 15:45:53 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (hbox);
|
2003-09-27 02:34:18 +00:00
|
|
|
|
Missing mnemonics on several dialogs
paste as brush, paste as pattern, select to new brush, select to new pattern
fill selection outline, fill path, stroke selection, distort, rounded rectangle
indexed color conversion, merge visible layers, new guide, new guide (by percent)
image properties, newsprint, fractal explorer, sample colorize, new layer
metadata editor (just a button), spyroplus (only common buttons)
2019-09-05 12:44:17 +00:00
|
|
|
label = gtk_label_new_with_mnemonic (_("P_aint tool:"));
|
2003-09-27 13:46:30 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
2006-09-11 14:17:43 +00:00
|
|
|
combo = gimp_container_combo_box_new (image->gimp->paint_info_list,
|
2016-09-27 11:15:52 +02:00
|
|
|
GIMP_CONTEXT (private->options),
|
2004-05-11 16:01:00 +00:00
|
|
|
16, 0);
|
2004-05-26 13:39:23 +00:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), combo, TRUE, TRUE, 0);
|
2004-05-11 16:01:00 +00:00
|
|
|
gtk_widget_show (combo);
|
2003-09-27 13:46:30 +00:00
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
private->tool_combo = combo;
|
2008-07-21 15:45:53 +00:00
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
button = gimp_prop_check_button_new (G_OBJECT (private->options),
|
2008-07-21 15:45:53 +00:00
|
|
|
"emulate-brush-dynamics",
|
|
|
|
_("_Emulate brush dynamics"));
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (button);
|
2003-09-27 13:46:30 +00:00
|
|
|
}
|
2003-09-27 02:34:18 +00:00
|
|
|
|
|
|
|
return dialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-27 14:41:10 +00:00
|
|
|
/* private functions */
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2016-10-27 21:26:07 +02:00
|
|
|
static void
|
|
|
|
stroke_dialog_free (StrokeDialog *private)
|
|
|
|
{
|
|
|
|
g_object_unref (private->options);
|
|
|
|
|
|
|
|
g_slice_free (StrokeDialog, private);
|
|
|
|
}
|
|
|
|
|
2003-09-27 02:34:18 +00:00
|
|
|
static void
|
2016-09-27 11:15:52 +02:00
|
|
|
stroke_dialog_response (GtkWidget *dialog,
|
|
|
|
gint response_id,
|
|
|
|
StrokeDialog *private)
|
2003-09-27 02:34:18 +00:00
|
|
|
{
|
2003-11-06 15:27:05 +00:00
|
|
|
switch (response_id)
|
|
|
|
{
|
|
|
|
case RESPONSE_RESET:
|
|
|
|
{
|
2016-09-27 11:15:52 +02:00
|
|
|
GimpToolInfo *tool_info = gimp_context_get_tool (private->context);
|
2003-11-06 15:27:05 +00:00
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
gimp_config_reset (GIMP_CONFIG (private->options));
|
2003-09-27 13:46:30 +00:00
|
|
|
|
2016-09-27 11:15:52 +02:00
|
|
|
gimp_container_view_select_item (GIMP_CONTAINER_VIEW (private->tool_combo),
|
2003-11-06 15:27:05 +00:00
|
|
|
GIMP_VIEWABLE (tool_info->paint_info));
|
2003-09-27 02:34:18 +00:00
|
|
|
|
2003-11-06 15:27:05 +00:00
|
|
|
}
|
|
|
|
break;
|
2003-09-27 13:46:30 +00:00
|
|
|
|
2003-11-06 15:27:05 +00:00
|
|
|
case GTK_RESPONSE_OK:
|
2016-09-27 11:15:52 +02:00
|
|
|
private->callback (dialog,
|
|
|
|
private->item,
|
|
|
|
private->drawable,
|
|
|
|
private->context,
|
|
|
|
private->options,
|
|
|
|
private->user_data);
|
|
|
|
break;
|
2003-11-06 15:27:05 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
gtk_widget_destroy (dialog);
|
|
|
|
break;
|
|
|
|
}
|
2003-09-27 02:34:18 +00:00
|
|
|
}
|