2016-01-27 19:13:17 +01:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpsymmetry.h
|
|
|
|
* Copyright (C) 2015 Jehan <jehan@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
|
2018-07-11 23:27:07 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-01-27 19:13:17 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMP_SYMMETRY_H__
|
|
|
|
#define __GIMP_SYMMETRY_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include "gimpobject.h"
|
|
|
|
|
|
|
|
|
app, libgimpbase, libgimpconfig: make our custom GParamFlags definitions…
… more robust.
GIMP_PARAM_NO_VALIDATE and GIMP_CONFIG_PARAM_DONT_COMPARE were the same
value, most likely because when GIMP_CONFIG_PARAM_DONT_COMPARE got added
(commit c5c807d1913), the comment to keep in sync
libgimpbase/gimpparamspecs.h and libgimpconfig/gimpconfig-params.h was
missed.
Instead, since libgimpconfig can include libgimpbase, do the other way
around: first non-GLib param flags are in libgimpbase, then we add a
GIMP_PARAM_FLAG_SHIFT, then we increment from it in libgimpconfig, and
finally we increment from GIMP_CONFIG_PARAM_FLAG_SHIFT if ever we add
more flags in app/ (right now GIMP_SYMMETRY_PARAM_GUI is apparently the
only one, but this may change).
2024-08-31 00:45:15 +02:00
|
|
|
/* shift one more than latest GIMP_CONFIG_PARAM_* */
|
|
|
|
#define GIMP_SYMMETRY_PARAM_GUI (1 << (0 + GIMP_CONFIG_PARAM_FLAG_SHIFT))
|
2016-02-06 23:08:18 +01:00
|
|
|
|
|
|
|
|
2016-01-27 19:13:17 +01:00
|
|
|
#define GIMP_TYPE_SYMMETRY (gimp_symmetry_get_type ())
|
|
|
|
#define GIMP_SYMMETRY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_SYMMETRY, GimpSymmetry))
|
|
|
|
#define GIMP_SYMMETRY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_SYMMETRY, GimpSymmetryClass))
|
|
|
|
#define GIMP_IS_SYMMETRY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_SYMMETRY))
|
|
|
|
#define GIMP_IS_SYMMETRY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_SYMMETRY))
|
|
|
|
#define GIMP_SYMMETRY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_SYMMETRY, GimpSymmetryClass))
|
|
|
|
|
2016-02-03 14:29:23 +01:00
|
|
|
|
2016-01-27 19:13:17 +01:00
|
|
|
typedef struct _GimpSymmetryClass GimpSymmetryClass;
|
|
|
|
|
|
|
|
struct _GimpSymmetry
|
|
|
|
{
|
|
|
|
GimpObject parent_instance;
|
|
|
|
|
|
|
|
GimpImage *image;
|
|
|
|
GimpDrawable *drawable;
|
|
|
|
GimpCoords *origin;
|
|
|
|
gboolean active;
|
2018-04-01 17:51:07 +02:00
|
|
|
gint version;
|
2016-01-27 19:13:17 +01:00
|
|
|
|
|
|
|
GList *strokes;
|
2018-04-11 02:09:21 +02:00
|
|
|
gboolean stateful;
|
2016-01-27 19:13:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GimpSymmetryClass
|
|
|
|
{
|
|
|
|
GimpObjectClass parent_class;
|
|
|
|
|
|
|
|
const gchar * label;
|
|
|
|
|
|
|
|
/* Virtual functions */
|
|
|
|
void (* update_strokes) (GimpSymmetry *symmetry,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
GimpCoords *origin);
|
2019-05-26 14:14:26 -04:00
|
|
|
void (* get_transform) (GimpSymmetry *symmetry,
|
|
|
|
gint stroke,
|
|
|
|
gdouble *angle,
|
|
|
|
gboolean *reflect);
|
2016-01-27 19:13:17 +01:00
|
|
|
void (* active_changed) (GimpSymmetry *symmetry);
|
2018-04-01 17:51:07 +02:00
|
|
|
|
|
|
|
gboolean (* update_version) (GimpSymmetry *symmetry);
|
2016-01-27 19:13:17 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType gimp_symmetry_get_type (void) G_GNUC_CONST;
|
|
|
|
|
2018-04-11 02:09:21 +02:00
|
|
|
void gimp_symmetry_set_stateful (GimpSymmetry *symmetry,
|
|
|
|
gboolean stateful);
|
2016-01-27 19:13:17 +01:00
|
|
|
void gimp_symmetry_set_origin (GimpSymmetry *symmetry,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
GimpCoords *origin);
|
2018-05-08 10:11:25 -04:00
|
|
|
void gimp_symmetry_clear_origin (GimpSymmetry *symmetry);
|
2016-01-27 19:13:17 +01:00
|
|
|
|
|
|
|
GimpCoords * gimp_symmetry_get_origin (GimpSymmetry *symmetry);
|
|
|
|
gint gimp_symmetry_get_size (GimpSymmetry *symmetry);
|
|
|
|
GimpCoords * gimp_symmetry_get_coords (GimpSymmetry *symmetry,
|
|
|
|
gint stroke);
|
2019-05-26 14:14:26 -04:00
|
|
|
void gimp_symmetry_get_transform (GimpSymmetry *symmetry,
|
|
|
|
gint stroke,
|
|
|
|
gdouble *angle,
|
|
|
|
gboolean *reflect);
|
2019-05-29 04:41:10 -04:00
|
|
|
void gimp_symmetry_get_matrix (GimpSymmetry *symmetry,
|
|
|
|
gint stroke,
|
|
|
|
GimpMatrix3 *matrix);
|
2019-05-29 04:46:21 -04:00
|
|
|
GeglNode * gimp_symmetry_get_operation (GimpSymmetry *symmetry,
|
|
|
|
gint stroke);
|
2016-01-27 19:13:17 +01:00
|
|
|
|
2016-02-03 14:29:23 +01:00
|
|
|
gchar * gimp_symmetry_parasite_name (GType type);
|
2016-01-27 19:13:17 +01:00
|
|
|
GimpParasite * gimp_symmetry_to_parasite (const GimpSymmetry *symmetry);
|
|
|
|
GimpSymmetry * gimp_symmetry_from_parasite (const GimpParasite *parasite,
|
|
|
|
GimpImage *image,
|
|
|
|
GType type);
|
2016-02-03 14:29:23 +01:00
|
|
|
|
|
|
|
|
2016-01-27 19:13:17 +01:00
|
|
|
#endif /* __GIMP_SYMMETRY_H__ */
|