summaryrefslogtreecommitdiffstats
path: root/app/tools/gimpinkoptions-gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/tools/gimpinkoptions-gui.c')
-rw-r--r--app/tools/gimpinkoptions-gui.c143
1 files changed, 143 insertions, 0 deletions
diff --git a/app/tools/gimpinkoptions-gui.c b/app/tools/gimpinkoptions-gui.c
new file mode 100644
index 0000000..70f9e7a
--- /dev/null
+++ b/app/tools/gimpinkoptions-gui.c
@@ -0,0 +1,143 @@
+/* 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 "libgimpwidgets/gimpwidgets.h"
+
+#include "tools-types.h"
+
+#include "config/gimpconfig-utils.h"
+
+#include "paint/gimpinkoptions.h"
+
+#include "widgets/gimpblobeditor.h"
+#include "widgets/gimppropwidgets.h"
+
+#include "gimpinkoptions-gui.h"
+#include "gimppaintoptions-gui.h"
+
+#include "gimp-intl.h"
+
+
+GtkWidget *
+gimp_ink_options_gui (GimpToolOptions *tool_options)
+{
+ GObject *config = G_OBJECT (tool_options);
+ GimpInkOptions *ink_options = GIMP_INK_OPTIONS (tool_options);
+ GtkWidget *vbox = gimp_paint_options_gui (tool_options);
+ GtkWidget *frame;
+ GtkWidget *vbox2;
+ GtkWidget *scale;
+ GtkWidget *blob_box;
+ GtkWidget *hbox;
+ GtkWidget *editor;
+ GtkSizeGroup *size_group;
+
+ /* adjust sliders */
+ frame = gimp_frame_new (_("Adjustment"));
+ gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, TRUE, 0);
+ gtk_widget_show (frame);
+
+ vbox2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ gtk_container_add (GTK_CONTAINER (frame), vbox2);
+ gtk_widget_show (vbox2);
+
+ /* size slider */
+ scale = gimp_prop_spin_scale_new (config, "size", NULL,
+ 1.0, 2.0, 1);
+ gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
+ gtk_widget_show (scale);
+
+ /* angle adjust slider */
+ scale = gimp_prop_spin_scale_new (config, "tilt-angle", NULL,
+ 1.0, 10.0, 1);
+ gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
+ gtk_widget_show (scale);
+
+ /* sens sliders */
+ frame = gimp_frame_new (_("Sensitivity"));
+ gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, TRUE, 0);
+ gtk_widget_show (frame);
+
+ vbox2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ gtk_container_add (GTK_CONTAINER (frame), vbox2);
+ gtk_widget_show (vbox2);
+
+ /* size sens slider */
+ scale = gimp_prop_spin_scale_new (config, "size-sensitivity", NULL,
+ 0.01, 0.1, 2);
+ gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
+ gtk_widget_show (scale);
+
+ /* tilt sens slider */
+ scale = gimp_prop_spin_scale_new (config, "tilt-sensitivity", NULL,
+ 0.01, 0.1, 2);
+ gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
+ gtk_widget_show (scale);
+
+ /* velocity sens slider */
+ scale = gimp_prop_spin_scale_new (config, "vel-sensitivity", NULL,
+ 0.01, 0.1, 2);
+ gtk_box_pack_start (GTK_BOX (vbox2), scale, FALSE, FALSE, 0);
+ gtk_widget_show (scale);
+
+ /* Blob shape widgets */
+ frame = gimp_frame_new (_("Shape"));
+ gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
+ gtk_widget_show (frame);
+
+ hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 2);
+ gtk_container_add (GTK_CONTAINER (frame), hbox);
+ gtk_widget_show (hbox);
+
+ size_group = gtk_size_group_new (GTK_SIZE_GROUP_VERTICAL);
+
+ /* Blob type radiobuttons */
+ blob_box = gimp_prop_enum_icon_box_new (config, "blob-type",
+ "gimp-shape", 0, 0);
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (blob_box),
+ GTK_ORIENTATION_VERTICAL);
+ gtk_box_pack_start (GTK_BOX (hbox), blob_box, FALSE, FALSE, 0);
+ gtk_widget_show (blob_box);
+
+ gtk_size_group_add_widget (size_group, blob_box);
+ g_object_unref (size_group);
+
+ /* Blob editor */
+ frame = gtk_aspect_frame_new (NULL, 0.0, 0.5, 1.0, FALSE);
+ gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_IN);
+ gtk_box_pack_start (GTK_BOX (hbox), frame, TRUE, TRUE, 0);
+ gtk_widget_show (frame);
+
+ gtk_size_group_add_widget (size_group, frame);
+
+ editor = gimp_blob_editor_new (ink_options->blob_type,
+ ink_options->blob_aspect,
+ ink_options->blob_angle);
+ gtk_container_add (GTK_CONTAINER (frame), editor);
+ gtk_widget_show (editor);
+
+ gimp_config_connect (config, G_OBJECT (editor), "blob-type");
+ gimp_config_connect (config, G_OBJECT (editor), "blob-aspect");
+ gimp_config_connect (config, G_OBJECT (editor), "blob-angle");
+
+ return vbox;
+}