168 lines
5.4 KiB
C
168 lines
5.4 KiB
C
/* 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 <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 "tools-types.h"
|
|
|
|
#include "widgets/pikawidgets-utils.h"
|
|
|
|
#include "pikaflipoptions.h"
|
|
|
|
#include "pika-intl.h"
|
|
|
|
|
|
enum
|
|
{
|
|
PROP_0,
|
|
PROP_FLIP_TYPE
|
|
};
|
|
|
|
|
|
static void pika_flip_options_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec);
|
|
static void pika_flip_options_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec);
|
|
|
|
|
|
G_DEFINE_TYPE (PikaFlipOptions, pika_flip_options,
|
|
PIKA_TYPE_TRANSFORM_OPTIONS)
|
|
|
|
|
|
static void
|
|
pika_flip_options_class_init (PikaFlipOptionsClass *klass)
|
|
{
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
object_class->set_property = pika_flip_options_set_property;
|
|
object_class->get_property = pika_flip_options_get_property;
|
|
|
|
PIKA_CONFIG_PROP_ENUM (object_class, PROP_FLIP_TYPE,
|
|
"flip-type",
|
|
_("Flip Type"),
|
|
_("Direction of flipping"),
|
|
PIKA_TYPE_ORIENTATION_TYPE,
|
|
PIKA_ORIENTATION_HORIZONTAL,
|
|
PIKA_PARAM_STATIC_STRINGS);
|
|
}
|
|
|
|
static void
|
|
pika_flip_options_init (PikaFlipOptions *options)
|
|
{
|
|
}
|
|
|
|
static void
|
|
pika_flip_options_set_property (GObject *object,
|
|
guint property_id,
|
|
const GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PikaFlipOptions *options = PIKA_FLIP_OPTIONS (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_FLIP_TYPE:
|
|
options->flip_type = g_value_get_enum (value);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void
|
|
pika_flip_options_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
PikaFlipOptions *options = PIKA_FLIP_OPTIONS (object);
|
|
|
|
switch (property_id)
|
|
{
|
|
case PROP_FLIP_TYPE:
|
|
g_value_set_enum (value, options->flip_type);
|
|
break;
|
|
default:
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
break;
|
|
}
|
|
}
|
|
|
|
GtkWidget *
|
|
pika_flip_options_gui (PikaToolOptions *tool_options)
|
|
{
|
|
GObject *config = G_OBJECT (tool_options);
|
|
PikaFlipOptions *options = PIKA_FLIP_OPTIONS (tool_options);
|
|
PikaTransformOptions *tr_options = PIKA_TRANSFORM_OPTIONS (tool_options);
|
|
GtkWidget *vbox;
|
|
GtkWidget *frame;
|
|
GtkWidget *combo;
|
|
gchar *str;
|
|
GtkListStore *clip_model;
|
|
GdkModifierType toggle_mask;
|
|
|
|
vbox = pika_transform_options_gui (tool_options, FALSE, FALSE, FALSE);
|
|
|
|
toggle_mask = pika_get_toggle_behavior_mask ();
|
|
|
|
/* tool toggle */
|
|
str = g_strdup_printf (_("Direction (%s)"),
|
|
pika_get_mod_string (toggle_mask));
|
|
|
|
frame = pika_prop_enum_radio_frame_new (config, "flip-type",
|
|
str,
|
|
PIKA_ORIENTATION_HORIZONTAL,
|
|
PIKA_ORIENTATION_VERTICAL);
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
g_free (str);
|
|
|
|
options->direction_frame = frame;
|
|
|
|
/* the clipping menu */
|
|
clip_model = pika_enum_store_new_with_range (PIKA_TYPE_TRANSFORM_RESIZE,
|
|
PIKA_TRANSFORM_RESIZE_ADJUST,
|
|
PIKA_TRANSFORM_RESIZE_CLIP);
|
|
|
|
combo = pika_prop_enum_combo_box_new (config, "clip", 0, 0);
|
|
gtk_combo_box_set_model (GTK_COMBO_BOX (combo), GTK_TREE_MODEL (clip_model));
|
|
pika_int_combo_box_set_active (PIKA_INT_COMBO_BOX (combo), tr_options->clip);
|
|
pika_int_combo_box_set_label (PIKA_INT_COMBO_BOX (combo), _("Clipping"));
|
|
g_object_set (combo, "ellipsize", PANGO_ELLIPSIZE_END, NULL);
|
|
gtk_box_pack_start (GTK_BOX (vbox), combo, FALSE, FALSE, 0);
|
|
|
|
g_object_unref (clip_model);
|
|
|
|
return vbox;
|
|
}
|