PIKApp/app/propgui/pikapropgui-panorama-projec...

149 lines
5.0 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-1997 Spencer Kimball and Peter Mattis
*
* pikapropgui-panorama-projection.c
* Copyright (C) 2018 Ell
*
* 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 "libpikamath/pikamath.h"
#include "libpikawidgets/pikawidgets.h"
#include "propgui-types.h"
#include "core/pikacontext.h"
#include "pikapropgui.h"
#include "pikapropgui-generic.h"
#include "pikapropgui-panorama-projection.h"
#include "pika-intl.h"
static void
gyroscope_callback (GObject *config,
GeglRectangle *area,
gdouble yaw,
gdouble pitch,
gdouble roll,
gdouble zoom,
gboolean invert)
{
g_object_set_data_full (G_OBJECT (config), "area",
g_memdup2 (area, sizeof (GeglRectangle)),
(GDestroyNotify) g_free);
g_object_set (config,
"pan", -yaw,
"tilt", -pitch,
"spin", -roll,
"zoom", CLAMP (100.0 * zoom, 0.01, 1000.0),
"inverse", invert,
NULL);
}
static void
config_notify (GObject *config,
const GParamSpec *pspec,
gpointer set_data)
{
PikaControllerGyroscopeCallback set_func;
GeglRectangle *area;
gdouble pan;
gdouble tilt;
gdouble spin;
gdouble zoom;
gboolean inverse;
set_func = g_object_get_data (G_OBJECT (config), "set-func");
area = g_object_get_data (G_OBJECT (config), "area");
g_object_get (config,
"pan", &pan,
"tilt", &tilt,
"spin", &spin,
"zoom", &zoom,
"inverse", &inverse,
NULL);
set_func (set_data,
area,
-pan, -tilt, -spin,
zoom / 100.0,
inverse);
}
GtkWidget *
_pika_prop_gui_new_panorama_projection (GObject *config,
GParamSpec **param_specs,
guint n_param_specs,
GeglRectangle *area,
PikaContext *context,
PikaCreatePickerFunc create_picker_func,
PikaCreateControllerFunc create_controller_func,
gpointer creator)
{
GtkWidget *vbox;
g_return_val_if_fail (G_IS_OBJECT (config), NULL);
g_return_val_if_fail (param_specs != NULL, NULL);
g_return_val_if_fail (n_param_specs > 0, NULL);
g_return_val_if_fail (PIKA_IS_CONTEXT (context), NULL);
vbox = _pika_prop_gui_new_generic (config,
param_specs, n_param_specs,
area, context,
create_picker_func,
create_controller_func,
creator);
if (create_controller_func)
{
GCallback set_func;
gpointer set_data;
set_func = create_controller_func (creator,
PIKA_CONTROLLER_TYPE_GYROSCOPE,
_("Panorama Projection: "),
(GCallback) gyroscope_callback,
config,
&set_data);
g_object_set_data (G_OBJECT (config), "set-func", set_func);
g_object_set_data_full (G_OBJECT (config), "area",
g_memdup2 (area, sizeof (GeglRectangle)),
(GDestroyNotify) g_free);
config_notify (config, NULL, set_data);
g_signal_connect (config, "notify",
G_CALLBACK (config_notify),
set_data);
}
return vbox;
}