[gimp] app: add GimpAuxItem as base class for GimpGuide and GimpSamplePoint
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: add GimpAuxItem as base class for GimpGuide and GimpSamplePoint
- Date: Sun, 15 Jul 2018 15:09:53 +0000 (UTC)
commit 2cd829eb8584ea6b4dbf33f468828ee733de9a13
Author: Michael Natterer <mitch gimp org>
Date: Sun Jul 15 17:02:56 2018 +0200
app: add GimpAuxItem as base class for GimpGuide and GimpSamplePoint
and GimpAuxItemUndo for their respective undo classes.
app/core/Makefile.am | 4 +
app/core/core-types.h | 9 ++-
app/core/gimpauxitem.c | 151 +++++++++++++++++++++++++++++++++++++
app/core/gimpauxitem.h | 56 ++++++++++++++
app/core/gimpauxitemundo.c | 138 +++++++++++++++++++++++++++++++++
app/core/gimpauxitemundo.h | 52 +++++++++++++
app/core/gimpguide.c | 56 +-------------
app/core/gimpguide.h | 14 ++--
app/core/gimpguideundo.c | 109 +++++---------------------
app/core/gimpguideundo.h | 7 +-
app/core/gimpimage-guides.c | 6 +-
app/core/gimpimage-sample-points.c | 6 +-
app/core/gimpimage-undo-push.c | 4 +-
app/core/gimpsamplepoint.c | 56 +-------------
app/core/gimpsamplepoint.h | 14 ++--
app/core/gimpsamplepointundo.c | 106 +++++---------------------
app/core/gimpsamplepointundo.h | 7 +-
app/pdb/image-guides-cmds.c | 6 +-
app/pdb/image-sample-points-cmds.c | 4 +-
pdb/groups/image_guides.pdb | 6 +-
pdb/groups/image_sample_points.pdb | 4 +-
21 files changed, 482 insertions(+), 333 deletions(-)
---
diff --git a/app/core/Makefile.am b/app/core/Makefile.am
index 69f3e20f21..ff45c4d5dd 100644
--- a/app/core/Makefile.am
+++ b/app/core/Makefile.am
@@ -91,6 +91,10 @@ libappcore_a_sources = \
gimpasync.h \
gimpasyncset.c \
gimpasyncset.h \
+ gimpauxitem.c \
+ gimpauxitem.h \
+ gimpauxitemundo.c \
+ gimpauxitemundo.h \
gimpbezierdesc.h \
gimpbezierdesc.c \
gimpboundary.c \
diff --git a/app/core/core-types.h b/app/core/core-types.h
index 099a756c65..a6c316fb5c 100644
--- a/app/core/core-types.h
+++ b/app/core/core-types.h
@@ -91,6 +91,7 @@ typedef struct _GimpObject GimpObject;
typedef struct _GimpViewable GimpViewable;
typedef struct _GimpFilter GimpFilter;
typedef struct _GimpItem GimpItem;
+typedef struct _GimpAuxItem GimpAuxItem;
typedef struct _Gimp Gimp;
typedef struct _GimpImage GimpImage;
@@ -161,6 +162,12 @@ typedef struct _GimpLayer GimpLayer;
typedef struct _GimpGroupLayer GimpGroupLayer;
+/* auxillary image items */
+
+typedef struct _GimpGuide GimpGuide;
+typedef struct _GimpSamplePoint GimpSamplePoint;
+
+
/* undo objects */
typedef struct _GimpUndo GimpUndo;
@@ -185,7 +192,6 @@ typedef struct _GimpDrawableFilter GimpDrawableFilter;
typedef struct _GimpEnvironTable GimpEnvironTable;
typedef struct _GimpExtension GimpExtension;
typedef struct _GimpExtensionManager GimpExtensionManager;
-typedef struct _GimpGuide GimpGuide;
typedef struct _GimpHistogram GimpHistogram;
typedef struct _GimpIdTable GimpIdTable;
typedef struct _GimpImagefile GimpImagefile;
@@ -194,7 +200,6 @@ typedef struct _GimpObjectQueue GimpObjectQueue;
typedef struct _GimpParasiteList GimpParasiteList;
typedef struct _GimpPdbProgress GimpPdbProgress;
typedef struct _GimpProjection GimpProjection;
-typedef struct _GimpSamplePoint GimpSamplePoint;
typedef struct _GimpSettings GimpSettings;
typedef struct _GimpSubProgress GimpSubProgress;
typedef struct _GimpTag GimpTag;
diff --git a/app/core/gimpauxitem.c b/app/core/gimpauxitem.c
new file mode 100644
index 0000000000..42225b4a55
--- /dev/null
+++ b/app/core/gimpauxitem.c
@@ -0,0 +1,151 @@
+/* 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 <glib-object.h>
+
+#include "core-types.h"
+
+#include "gimpauxitem.h"
+
+
+enum
+{
+ REMOVED,
+ LAST_SIGNAL
+};
+
+enum
+{
+ PROP_0,
+ PROP_ID
+};
+
+
+struct _GimpAuxItemPrivate
+{
+ guint32 aux_item_ID;
+};
+
+
+static void gimp_aux_item_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec);
+static void gimp_aux_item_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec);
+
+
+G_DEFINE_ABSTRACT_TYPE (GimpAuxItem, gimp_aux_item, G_TYPE_OBJECT)
+
+static guint gimp_aux_item_signals[LAST_SIGNAL] = { 0 };
+
+
+static void
+gimp_aux_item_class_init (GimpAuxItemClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+ gimp_aux_item_signals[REMOVED] =
+ g_signal_new ("removed",
+ G_TYPE_FROM_CLASS (klass),
+ G_SIGNAL_RUN_FIRST,
+ G_STRUCT_OFFSET (GimpAuxItemClass, removed),
+ NULL, NULL,
+ g_cclosure_marshal_VOID__VOID,
+ G_TYPE_NONE, 0);
+
+ object_class->get_property = gimp_aux_item_get_property;
+ object_class->set_property = gimp_aux_item_set_property;
+
+ klass->removed = NULL;
+
+ g_object_class_install_property (object_class, PROP_ID,
+ g_param_spec_uint ("id", NULL, NULL,
+ 0, G_MAXUINT32, 0,
+ G_PARAM_CONSTRUCT_ONLY |
+ GIMP_PARAM_READWRITE));
+
+ g_type_class_add_private (klass, sizeof (GimpAuxItemPrivate));
+}
+
+static void
+gimp_aux_item_init (GimpAuxItem *aux_item)
+{
+ aux_item->priv = G_TYPE_INSTANCE_GET_PRIVATE (aux_item,
+ GIMP_TYPE_AUX_ITEM,
+ GimpAuxItemPrivate);
+}
+
+static void
+gimp_aux_item_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ GimpAuxItem *aux_item = GIMP_AUX_ITEM (object);
+
+ switch (property_id)
+ {
+ case PROP_ID:
+ g_value_set_uint (value, aux_item->priv->aux_item_ID);
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+gimp_aux_item_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ GimpAuxItem *aux_item = GIMP_AUX_ITEM (object);
+
+ switch (property_id)
+ {
+ case PROP_ID:
+ aux_item->priv->aux_item_ID = g_value_get_uint (value);
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+guint32
+gimp_aux_item_get_ID (GimpAuxItem *aux_item)
+{
+ g_return_val_if_fail (GIMP_IS_AUX_ITEM (aux_item), 0);
+
+ return aux_item->priv->aux_item_ID;
+}
+
+void
+gimp_aux_item_removed (GimpAuxItem *aux_item)
+{
+ g_return_if_fail (GIMP_IS_AUX_ITEM (aux_item));
+
+ g_signal_emit (aux_item, gimp_aux_item_signals[REMOVED], 0);
+}
diff --git a/app/core/gimpauxitem.h b/app/core/gimpauxitem.h
new file mode 100644
index 0000000000..6907b39295
--- /dev/null
+++ b/app/core/gimpauxitem.h
@@ -0,0 +1,56 @@
+/* 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/>.
+ */
+
+#ifndef __GIMP_AUX_ITEM_H__
+#define __GIMP_AUX_ITEM_H__
+
+
+#define GIMP_TYPE_AUX_ITEM (gimp_aux_item_get_type ())
+#define GIMP_AUX_ITEM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_AUX_ITEM, GimpAuxItem))
+#define GIMP_AUX_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_AUX_ITEM,
GimpAuxItemClass))
+#define GIMP_IS_AUX_ITEM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_AUX_ITEM))
+#define GIMP_IS_AUX_ITEM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_AUX_ITEM))
+#define GIMP_AUX_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_AUX_ITEM,
GimpAuxItemClass))
+
+
+typedef struct _GimpAuxItemPrivate GimpAuxItemPrivate;
+typedef struct _GimpAuxItemClass GimpAuxItemClass;
+
+struct _GimpAuxItem
+{
+ GObject parent_instance;
+
+ GimpAuxItemPrivate *priv;
+};
+
+struct _GimpAuxItemClass
+{
+ GObjectClass parent_class;
+
+ /* signals */
+ void (* removed) (GimpAuxItem *aux_item);
+};
+
+
+GType gimp_aux_item_get_type (void) G_GNUC_CONST;
+
+guint32 gimp_aux_item_get_ID (GimpAuxItem *aux_item);
+
+void gimp_aux_item_removed (GimpAuxItem *aux_item);
+
+
+#endif /* __GIMP_AUX_ITEM_H__ */
diff --git a/app/core/gimpauxitemundo.c b/app/core/gimpauxitemundo.c
new file mode 100644
index 0000000000..e0253ab3c7
--- /dev/null
+++ b/app/core/gimpauxitemundo.c
@@ -0,0 +1,138 @@
+/* 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 <gdk-pixbuf/gdk-pixbuf.h>
+#include <gegl.h>
+
+#include "core-types.h"
+
+#include "gimpauxitem.h"
+#include "gimpauxitemundo.h"
+
+
+enum
+{
+ PROP_0,
+ PROP_AUX_ITEM
+};
+
+
+static void gimp_aux_item_undo_constructed (GObject *object);
+static void gimp_aux_item_undo_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec);
+static void gimp_aux_item_undo_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec);
+
+static void gimp_aux_item_undo_free (GimpUndo *undo,
+ GimpUndoMode undo_mode);
+
+
+G_DEFINE_ABSTRACT_TYPE (GimpAuxItemUndo, gimp_aux_item_undo, GIMP_TYPE_UNDO)
+
+#define parent_class gimp_aux_item_undo_parent_class
+
+
+static void
+gimp_aux_item_undo_class_init (GimpAuxItemUndoClass *klass)
+{
+ GObjectClass *object_class = G_OBJECT_CLASS (klass);
+ GimpUndoClass *undo_class = GIMP_UNDO_CLASS (klass);
+
+ object_class->constructed = gimp_aux_item_undo_constructed;
+ object_class->set_property = gimp_aux_item_undo_set_property;
+ object_class->get_property = gimp_aux_item_undo_get_property;
+
+ undo_class->free = gimp_aux_item_undo_free;
+
+ g_object_class_install_property (object_class, PROP_AUX_ITEM,
+ g_param_spec_object ("aux-item", NULL, NULL,
+ GIMP_TYPE_AUX_ITEM,
+ GIMP_PARAM_READWRITE |
+ G_PARAM_CONSTRUCT_ONLY));
+}
+
+static void
+gimp_aux_item_undo_init (GimpAuxItemUndo *undo)
+{
+}
+
+static void
+gimp_aux_item_undo_constructed (GObject *object)
+{
+ GimpAuxItemUndo *aux_item_undo = GIMP_AUX_ITEM_UNDO (object);
+
+ G_OBJECT_CLASS (parent_class)->constructed (object);
+
+ gimp_assert (GIMP_IS_AUX_ITEM (aux_item_undo->aux_item));
+}
+
+static void
+gimp_aux_item_undo_set_property (GObject *object,
+ guint property_id,
+ const GValue *value,
+ GParamSpec *pspec)
+{
+ GimpAuxItemUndo *aux_item_undo = GIMP_AUX_ITEM_UNDO (object);
+
+ switch (property_id)
+ {
+ case PROP_AUX_ITEM:
+ aux_item_undo->aux_item = g_value_dup_object (value);
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+gimp_aux_item_undo_get_property (GObject *object,
+ guint property_id,
+ GValue *value,
+ GParamSpec *pspec)
+{
+ GimpAuxItemUndo *aux_item_undo = GIMP_AUX_ITEM_UNDO (object);
+
+ switch (property_id)
+ {
+ case PROP_AUX_ITEM:
+ g_value_set_object (value, aux_item_undo->aux_item);
+ break;
+
+ default:
+ G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
+ break;
+ }
+}
+
+static void
+gimp_aux_item_undo_free (GimpUndo *undo,
+ GimpUndoMode undo_mode)
+{
+ GimpAuxItemUndo *aux_item_undo = GIMP_AUX_ITEM_UNDO (undo);
+
+ g_clear_object (&aux_item_undo->aux_item);
+
+ GIMP_UNDO_CLASS (parent_class)->free (undo, undo_mode);
+}
diff --git a/app/core/gimpauxitemundo.h b/app/core/gimpauxitemundo.h
new file mode 100644
index 0000000000..2858f4d82d
--- /dev/null
+++ b/app/core/gimpauxitemundo.h
@@ -0,0 +1,52 @@
+/* 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/>.
+ */
+
+#ifndef __GIMP_AUX_ITEM_UNDO_H__
+#define __GIMP_AUX_ITEM_UNDO_H__
+
+
+#include "gimpundo.h"
+
+
+#define GIMP_TYPE_AUX_ITEM_UNDO (gimp_aux_item_undo_get_type ())
+#define GIMP_AUX_ITEM_UNDO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GIMP_TYPE_AUX_ITEM_UNDO,
GimpAuxItemUndo))
+#define GIMP_AUX_ITEM_UNDO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GIMP_TYPE_AUX_ITEM_UNDO,
GimpAuxItemUndoClass))
+#define GIMP_IS_AUX_ITEM_UNDO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GIMP_TYPE_AUX_ITEM_UNDO))
+#define GIMP_IS_AUX_ITEM_UNDO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GIMP_TYPE_AUX_ITEM_UNDO))
+#define GIMP_AUX_ITEM_UNDO_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GIMP_TYPE_AUX_ITEM_UNDO,
GimpAuxItemUndoClass))
+
+
+typedef struct _GimpAuxItemUndo GimpAuxItemUndo;
+typedef struct _GimpAuxItemUndoClass GimpAuxItemUndoClass;
+
+struct _GimpAuxItemUndo
+{
+ GimpUndo parent_instance;
+
+ GimpAuxItem *aux_item;
+};
+
+struct _GimpAuxItemUndoClass
+{
+ GimpUndoClass parent_class;
+};
+
+
+GType gimp_aux_item_undo_get_type (void) G_GNUC_CONST;
+
+
+#endif /* __GIMP_AUX_ITEM_UNDO_H__ */
diff --git a/app/core/gimpguide.c b/app/core/gimpguide.c
index 33cd4895e5..9327a436f2 100644
--- a/app/core/gimpguide.c
+++ b/app/core/gimpguide.c
@@ -20,31 +20,19 @@
#include "config.h"
-#include <cairo.h>
-#include <gegl.h>
-#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gio/gio.h>
#include "libgimpbase/gimpbase.h"
-#include "libgimpcolor/gimpcolor.h"
#include "libgimpconfig/gimpconfig.h"
#include "core-types.h"
#include "gimpguide.h"
-#include "gimpmarshal.h"
-enum
-{
- REMOVED,
- LAST_SIGNAL
-};
-
enum
{
PROP_0,
- PROP_ID,
PROP_ORIENTATION,
PROP_POSITION,
PROP_STYLE
@@ -53,7 +41,6 @@ enum
struct _GimpGuidePrivate
{
- guint32 guide_ID;
GimpOrientationType orientation;
gint position;
@@ -71,9 +58,7 @@ static void gimp_guide_set_property (GObject *object,
GParamSpec *pspec);
-G_DEFINE_TYPE (GimpGuide, gimp_guide, G_TYPE_OBJECT)
-
-static guint gimp_guide_signals[LAST_SIGNAL] = { 0 };
+G_DEFINE_TYPE (GimpGuide, gimp_guide, GIMP_TYPE_AUX_ITEM)
static void
@@ -81,26 +66,9 @@ gimp_guide_class_init (GimpGuideClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
- gimp_guide_signals[REMOVED] =
- g_signal_new ("removed",
- G_TYPE_FROM_CLASS (klass),
- G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (GimpGuideClass, removed),
- NULL, NULL,
- gimp_marshal_VOID__VOID,
- G_TYPE_NONE, 0);
-
object_class->get_property = gimp_guide_get_property;
object_class->set_property = gimp_guide_set_property;
- klass->removed = NULL;
-
- g_object_class_install_property (object_class, PROP_ID,
- g_param_spec_uint ("id", NULL, NULL,
- 0, G_MAXUINT32, 0,
- G_PARAM_CONSTRUCT_ONLY |
- GIMP_PARAM_READWRITE));
-
GIMP_CONFIG_PROP_ENUM (object_class, PROP_ORIENTATION,
"orientation",
NULL, NULL,
@@ -143,9 +111,6 @@ gimp_guide_get_property (GObject *object,
switch (property_id)
{
- case PROP_ID:
- g_value_set_uint (value, guide->priv->guide_ID);
- break;
case PROP_ORIENTATION:
g_value_set_enum (value, guide->priv->orientation);
break;
@@ -171,9 +136,6 @@ gimp_guide_set_property (GObject *object,
switch (property_id)
{
- case PROP_ID:
- guide->priv->guide_ID = g_value_get_uint (value);
- break;
case PROP_ORIENTATION:
guide->priv->orientation = g_value_get_enum (value);
break;
@@ -232,22 +194,6 @@ gimp_guide_custom_new (GimpOrientationType orientation,
return guide;
}
-guint32
-gimp_guide_get_ID (GimpGuide *guide)
-{
- g_return_val_if_fail (GIMP_IS_GUIDE (guide), 0);
-
- return guide->priv->guide_ID;
-}
-
-void
-gimp_guide_removed (GimpGuide *guide)
-{
- g_return_if_fail (GIMP_IS_GUIDE (guide));
-
- g_signal_emit (guide, gimp_guide_signals[REMOVED], 0);
-}
-
GimpOrientationType
gimp_guide_get_orientation (GimpGuide *guide)
{
diff --git a/app/core/gimpguide.h b/app/core/gimpguide.h
index 05e7824edf..285e8eb470 100644
--- a/app/core/gimpguide.h
+++ b/app/core/gimpguide.h
@@ -22,6 +22,9 @@
#define __GIMP_GUIDE_H__
+#include "gimpauxitem.h"
+
+
#define GIMP_GUIDE_POSITION_UNDEFINED G_MININT
@@ -38,17 +41,14 @@ typedef struct _GimpGuideClass GimpGuideClass;
struct _GimpGuide
{
- GObject parent_instance;
+ GimpAuxItem parent_instance;
GimpGuidePrivate *priv;
};
struct _GimpGuideClass
{
- GObjectClass parent_class;
-
- /* signals */
- void (* removed) (GimpGuide *guide);
+ GimpAuxItemClass parent_class;
};
@@ -60,10 +60,6 @@ GimpGuide * gimp_guide_custom_new (GimpOrientationType orientatio
guint32 guide_ID,
GimpGuideStyle guide_style);
-guint32 gimp_guide_get_ID (GimpGuide *guide);
-
-void gimp_guide_removed (GimpGuide *guide);
-
GimpOrientationType gimp_guide_get_orientation (GimpGuide *guide);
void gimp_guide_set_orientation (GimpGuide *guide,
GimpOrientationType orientation);
diff --git a/app/core/gimpguideundo.c b/app/core/gimpguideundo.c
index a836c2a5e9..c3e3de47d9 100644
--- a/app/core/gimpguideundo.c
+++ b/app/core/gimpguideundo.c
@@ -28,31 +28,15 @@
#include "gimpguideundo.h"
-enum
-{
- PROP_0,
- PROP_GUIDE
-};
-
-
static void gimp_guide_undo_constructed (GObject *object);
-static void gimp_guide_undo_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec);
-static void gimp_guide_undo_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec);
static void gimp_guide_undo_pop (GimpUndo *undo,
GimpUndoMode undo_mode,
GimpUndoAccumulator *accum);
-static void gimp_guide_undo_free (GimpUndo *undo,
- GimpUndoMode undo_mode);
-G_DEFINE_TYPE (GimpGuideUndo, gimp_guide_undo, GIMP_TYPE_UNDO)
+G_DEFINE_TYPE (GimpGuideUndo, gimp_guide_undo,
+ GIMP_TYPE_AUX_ITEM_UNDO)
#define parent_class gimp_guide_undo_parent_class
@@ -63,18 +47,9 @@ gimp_guide_undo_class_init (GimpGuideUndoClass *klass)
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GimpUndoClass *undo_class = GIMP_UNDO_CLASS (klass);
- object_class->constructed = gimp_guide_undo_constructed;
- object_class->set_property = gimp_guide_undo_set_property;
- object_class->get_property = gimp_guide_undo_get_property;
-
- undo_class->pop = gimp_guide_undo_pop;
- undo_class->free = gimp_guide_undo_free;
+ object_class->constructed = gimp_guide_undo_constructed;
- g_object_class_install_property (object_class, PROP_GUIDE,
- g_param_spec_object ("guide", NULL, NULL,
- GIMP_TYPE_GUIDE,
- GIMP_PARAM_READWRITE |
- G_PARAM_CONSTRUCT_ONLY));
+ undo_class->pop = gimp_guide_undo_pop;
}
static void
@@ -86,53 +61,16 @@ static void
gimp_guide_undo_constructed (GObject *object)
{
GimpGuideUndo *guide_undo = GIMP_GUIDE_UNDO (object);
+ GimpGuide *guide;
G_OBJECT_CLASS (parent_class)->constructed (object);
- gimp_assert (GIMP_IS_GUIDE (guide_undo->guide));
-
- guide_undo->orientation = gimp_guide_get_orientation (guide_undo->guide);
- guide_undo->position = gimp_guide_get_position (guide_undo->guide);
-}
-
-static void
-gimp_guide_undo_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec)
-{
- GimpGuideUndo *guide_undo = GIMP_GUIDE_UNDO (object);
-
- switch (property_id)
- {
- case PROP_GUIDE:
- guide_undo->guide = g_value_dup_object (value);
- break;
-
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-gimp_guide_undo_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec)
-{
- GimpGuideUndo *guide_undo = GIMP_GUIDE_UNDO (object);
+ guide = GIMP_GUIDE (GIMP_AUX_ITEM_UNDO (object)->aux_item);
- switch (property_id)
- {
- case PROP_GUIDE:
- g_value_set_object (value, guide_undo->guide);
- break;
+ gimp_assert (GIMP_IS_GUIDE (guide));
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
+ guide_undo->orientation = gimp_guide_get_orientation (guide);
+ guide_undo->position = gimp_guide_get_position (guide);
}
static void
@@ -141,47 +79,38 @@ gimp_guide_undo_pop (GimpUndo *undo,
GimpUndoAccumulator *accum)
{
GimpGuideUndo *guide_undo = GIMP_GUIDE_UNDO (undo);
+ GimpGuide *guide;
GimpOrientationType orientation;
gint position;
gboolean moved = FALSE;
GIMP_UNDO_CLASS (parent_class)->pop (undo, undo_mode, accum);
- orientation = gimp_guide_get_orientation (guide_undo->guide);
- position = gimp_guide_get_position (guide_undo->guide);
+ guide = GIMP_GUIDE (GIMP_AUX_ITEM_UNDO (undo)->aux_item);
+
+ orientation = gimp_guide_get_orientation (guide);
+ position = gimp_guide_get_position (guide);
if (position == GIMP_GUIDE_POSITION_UNDEFINED)
{
- gimp_image_add_guide (undo->image,
- guide_undo->guide, guide_undo->position);
+ gimp_image_add_guide (undo->image, guide, guide_undo->position);
}
else if (guide_undo->position == GIMP_GUIDE_POSITION_UNDEFINED)
{
- gimp_image_remove_guide (undo->image, guide_undo->guide, FALSE);
+ gimp_image_remove_guide (undo->image, guide, FALSE);
}
else
{
- gimp_guide_set_position (guide_undo->guide, guide_undo->position);
+ gimp_guide_set_position (guide, guide_undo->position);
moved = TRUE;
}
- gimp_guide_set_orientation (guide_undo->guide, guide_undo->orientation);
+ gimp_guide_set_orientation (guide, guide_undo->orientation);
if (moved || guide_undo->orientation != orientation)
- gimp_image_guide_moved (undo->image, guide_undo->guide);
+ gimp_image_guide_moved (undo->image, guide);
guide_undo->position = position;
guide_undo->orientation = orientation;
}
-
-static void
-gimp_guide_undo_free (GimpUndo *undo,
- GimpUndoMode undo_mode)
-{
- GimpGuideUndo *guide_undo = GIMP_GUIDE_UNDO (undo);
-
- g_clear_object (&guide_undo->guide);
-
- GIMP_UNDO_CLASS (parent_class)->free (undo, undo_mode);
-}
diff --git a/app/core/gimpguideundo.h b/app/core/gimpguideundo.h
index c8bf20dfa2..da77ff3ffd 100644
--- a/app/core/gimpguideundo.h
+++ b/app/core/gimpguideundo.h
@@ -19,7 +19,7 @@
#define __GIMP_GUIDE_UNDO_H__
-#include "gimpundo.h"
+#include "gimpauxitemundo.h"
#define GIMP_TYPE_GUIDE_UNDO (gimp_guide_undo_get_type ())
@@ -35,16 +35,15 @@ typedef struct _GimpGuideUndoClass GimpGuideUndoClass;
struct _GimpGuideUndo
{
- GimpUndo parent_instance;
+ GimpAuxItemUndo parent_instance;
- GimpGuide *guide;
GimpOrientationType orientation;
gint position;
};
struct _GimpGuideUndoClass
{
- GimpUndoClass parent_class;
+ GimpAuxItemUndoClass parent_class;
};
diff --git a/app/core/gimpimage-guides.c b/app/core/gimpimage-guides.c
index 370d64e3a9..a265d1e825 100644
--- a/app/core/gimpimage-guides.c
+++ b/app/core/gimpimage-guides.c
@@ -121,7 +121,7 @@ gimp_image_remove_guide (GimpImage *image,
gimp_image_undo_push_guide (image, C_("undo-type", "Remove Guide"), guide);
private->guides = g_list_remove (private->guides, guide);
- gimp_guide_removed (guide);
+ gimp_aux_item_removed (GIMP_AUX_ITEM (guide));
gimp_image_guide_removed (image, guide);
@@ -177,7 +177,7 @@ gimp_image_get_guide (GimpImage *image,
{
GimpGuide *guide = guides->data;
- if (gimp_guide_get_ID (guide) == id)
+ if (gimp_aux_item_get_ID (GIMP_AUX_ITEM (guide)) == id)
return guide;
}
@@ -208,7 +208,7 @@ gimp_image_get_next_guide (GimpImage *image,
if (*guide_found) /* this is the first guide after the found one */
return guide;
- if (gimp_guide_get_ID (guide) == id) /* found it, next one will be returned */
+ if (gimp_aux_item_get_ID (GIMP_AUX_ITEM (guide)) == id) /* found it, next one will be returned */
*guide_found = TRUE;
}
diff --git a/app/core/gimpimage-sample-points.c b/app/core/gimpimage-sample-points.c
index dd2a35bad3..0f3fd65908 100644
--- a/app/core/gimpimage-sample-points.c
+++ b/app/core/gimpimage-sample-points.c
@@ -97,7 +97,7 @@ gimp_image_remove_sample_point (GimpImage *image,
sample_point);
private->sample_points = g_list_remove (private->sample_points, sample_point);
- gimp_sample_point_removed (sample_point);
+ gimp_aux_item_removed (GIMP_AUX_ITEM (sample_point));
gimp_image_sample_point_removed (image, sample_point);
@@ -153,7 +153,7 @@ gimp_image_get_sample_point (GimpImage *image,
{
GimpSamplePoint *sample_point = sample_points->data;
- if (gimp_sample_point_get_ID (sample_point) == id)
+ if (gimp_aux_item_get_ID (GIMP_AUX_ITEM (sample_point)) == id)
return sample_point;
}
@@ -184,7 +184,7 @@ gimp_image_get_next_sample_point (GimpImage *image,
if (*sample_point_found) /* this is the first guide after the found one */
return sample_point;
- if (gimp_sample_point_get_ID (sample_point) == id) /* found it, next one will be returned */
+ if (gimp_aux_item_get_ID (GIMP_AUX_ITEM (sample_point)) == id) /* found it, next one will be returned
*/
*sample_point_found = TRUE;
}
diff --git a/app/core/gimpimage-undo-push.c b/app/core/gimpimage-undo-push.c
index bb1de3b29b..b96c4b45b8 100644
--- a/app/core/gimpimage-undo-push.c
+++ b/app/core/gimpimage-undo-push.c
@@ -218,7 +218,7 @@ gimp_image_undo_push_guide (GimpImage *image,
return gimp_image_undo_push (image, GIMP_TYPE_GUIDE_UNDO,
GIMP_UNDO_GUIDE, undo_desc,
GIMP_DIRTY_IMAGE_META,
- "guide", guide,
+ "aux-item", guide,
NULL);
}
@@ -233,7 +233,7 @@ gimp_image_undo_push_sample_point (GimpImage *image,
return gimp_image_undo_push (image, GIMP_TYPE_SAMPLE_POINT_UNDO,
GIMP_UNDO_SAMPLE_POINT, undo_desc,
GIMP_DIRTY_IMAGE_META,
- "sample-point", sample_point,
+ "aux-item", sample_point,
NULL);
}
diff --git a/app/core/gimpsamplepoint.c b/app/core/gimpsamplepoint.c
index 43068a5609..4b6970adc1 100644
--- a/app/core/gimpsamplepoint.c
+++ b/app/core/gimpsamplepoint.c
@@ -24,20 +24,12 @@
#include "core-types.h"
-#include "gimpmarshal.h"
#include "gimpsamplepoint.h"
-enum
-{
- REMOVED,
- LAST_SIGNAL
-};
-
enum
{
PROP_0,
- PROP_ID,
PROP_POSITION_X,
PROP_POSITION_Y
};
@@ -45,9 +37,8 @@ enum
struct _GimpSamplePointPrivate
{
- guint32 sample_point_ID;
- gint position_x;
- gint position_y;
+ gint position_x;
+ gint position_y;
};
@@ -61,9 +52,7 @@ static void gimp_sample_point_set_property (GObject *object,
GParamSpec *pspec);
-G_DEFINE_TYPE (GimpSamplePoint, gimp_sample_point, G_TYPE_OBJECT)
-
-static guint gimp_sample_point_signals[LAST_SIGNAL] = { 0 };
+G_DEFINE_TYPE (GimpSamplePoint, gimp_sample_point, GIMP_TYPE_AUX_ITEM)
static void
@@ -71,26 +60,9 @@ gimp_sample_point_class_init (GimpSamplePointClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
- gimp_sample_point_signals[REMOVED] =
- g_signal_new ("removed",
- G_TYPE_FROM_CLASS (klass),
- G_SIGNAL_RUN_FIRST,
- G_STRUCT_OFFSET (GimpSamplePointClass, removed),
- NULL, NULL,
- gimp_marshal_VOID__VOID,
- G_TYPE_NONE, 0);
-
object_class->get_property = gimp_sample_point_get_property;
object_class->set_property = gimp_sample_point_set_property;
- klass->removed = NULL;
-
- g_object_class_install_property (object_class, PROP_ID,
- g_param_spec_uint ("id", NULL, NULL,
- 0, G_MAXUINT32, 0,
- G_PARAM_CONSTRUCT_ONLY |
- GIMP_PARAM_READWRITE));
-
GIMP_CONFIG_PROP_INT (object_class, PROP_POSITION_X,
"position-x",
NULL, NULL,
@@ -128,9 +100,6 @@ gimp_sample_point_get_property (GObject *object,
switch (property_id)
{
- case PROP_ID:
- g_value_set_uint (value, sample_point->priv->sample_point_ID);
- break;
case PROP_POSITION_X:
g_value_set_int (value, sample_point->priv->position_x);
break;
@@ -154,9 +123,6 @@ gimp_sample_point_set_property (GObject *object,
switch (property_id)
{
- case PROP_ID:
- sample_point->priv->sample_point_ID = g_value_get_uint (value);
- break;
case PROP_POSITION_X:
sample_point->priv->position_x = g_value_get_int (value);
break;
@@ -178,22 +144,6 @@ gimp_sample_point_new (guint32 sample_point_ID)
NULL);
}
-guint32
-gimp_sample_point_get_ID (GimpSamplePoint *sample_point)
-{
- g_return_val_if_fail (GIMP_IS_SAMPLE_POINT (sample_point), 0);
-
- return sample_point->priv->sample_point_ID;
-}
-
-void
-gimp_sample_point_removed (GimpSamplePoint *sample_point)
-{
- g_return_if_fail (GIMP_IS_SAMPLE_POINT (sample_point));
-
- g_signal_emit (sample_point, gimp_sample_point_signals[REMOVED], 0);
-}
-
void
gimp_sample_point_get_position (GimpSamplePoint *sample_point,
gint *position_x,
diff --git a/app/core/gimpsamplepoint.h b/app/core/gimpsamplepoint.h
index fffb1fec5c..563723e429 100644
--- a/app/core/gimpsamplepoint.h
+++ b/app/core/gimpsamplepoint.h
@@ -19,6 +19,9 @@
#define __GIMP_SAMPLE_POINT_H__
+#include "gimpauxitem.h"
+
+
#define GIMP_SAMPLE_POINT_POSITION_UNDEFINED G_MININT
@@ -35,17 +38,14 @@ typedef struct _GimpSamplePointClass GimpSamplePointClass;
struct _GimpSamplePoint
{
- GObject parent_instance;
+ GimpAuxItem parent_instance;
GimpSamplePointPrivate *priv;
};
struct _GimpSamplePointClass
{
- GObjectClass parent_class;
-
- /* signals */
- void (* removed) (GimpSamplePoint *sample_point);
+ GimpAuxItemClass parent_class;
};
@@ -53,10 +53,6 @@ GType gimp_sample_point_get_type (void) G_GNUC_CONST;
GimpSamplePoint * gimp_sample_point_new (guint32 sample_point_ID);
-guint32 gimp_sample_point_get_ID (GimpSamplePoint *sample_point);
-
-void gimp_sample_point_removed (GimpSamplePoint *sample_point);
-
void gimp_sample_point_get_position (GimpSamplePoint *sample_point,
gint *position_x,
gint *position_y);
diff --git a/app/core/gimpsamplepointundo.c b/app/core/gimpsamplepointundo.c
index ccffc8413c..157437c63d 100644
--- a/app/core/gimpsamplepointundo.c
+++ b/app/core/gimpsamplepointundo.c
@@ -28,31 +28,15 @@
#include "gimpsamplepointundo.h"
-enum
-{
- PROP_0,
- PROP_SAMPLE_POINT
-};
-
-
static void gimp_sample_point_undo_constructed (GObject *object);
-static void gimp_sample_point_undo_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec);
-static void gimp_sample_point_undo_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec);
static void gimp_sample_point_undo_pop (GimpUndo *undo,
GimpUndoMode undo_mode,
GimpUndoAccumulator *accum);
-static void gimp_sample_point_undo_free (GimpUndo *undo,
- GimpUndoMode undo_mode);
-G_DEFINE_TYPE (GimpSamplePointUndo, gimp_sample_point_undo, GIMP_TYPE_UNDO)
+G_DEFINE_TYPE (GimpSamplePointUndo, gimp_sample_point_undo,
+ GIMP_TYPE_AUX_ITEM_UNDO)
#define parent_class gimp_sample_point_undo_parent_class
@@ -63,18 +47,9 @@ gimp_sample_point_undo_class_init (GimpSamplePointUndoClass *klass)
GObjectClass *object_class = G_OBJECT_CLASS (klass);
GimpUndoClass *undo_class = GIMP_UNDO_CLASS (klass);
- object_class->constructed = gimp_sample_point_undo_constructed;
- object_class->set_property = gimp_sample_point_undo_set_property;
- object_class->get_property = gimp_sample_point_undo_get_property;
-
- undo_class->pop = gimp_sample_point_undo_pop;
- undo_class->free = gimp_sample_point_undo_free;
+ object_class->constructed = gimp_sample_point_undo_constructed;
- g_object_class_install_property (object_class, PROP_SAMPLE_POINT,
- g_param_spec_object ("sample-point", NULL, NULL,
- GIMP_TYPE_SAMPLE_POINT,
- GIMP_PARAM_READWRITE |
- G_PARAM_CONSTRUCT_ONLY));
+ undo_class->pop = gimp_sample_point_undo_pop;
}
static void
@@ -86,102 +61,55 @@ static void
gimp_sample_point_undo_constructed (GObject *object)
{
GimpSamplePointUndo *sample_point_undo = GIMP_SAMPLE_POINT_UNDO (object);
+ GimpSamplePoint *sample_point;
G_OBJECT_CLASS (parent_class)->constructed (object);
- gimp_assert (GIMP_IS_SAMPLE_POINT (sample_point_undo->sample_point));
+ sample_point = GIMP_SAMPLE_POINT (GIMP_AUX_ITEM_UNDO (object)->aux_item);
- gimp_sample_point_get_position (sample_point_undo->sample_point,
+ gimp_assert (GIMP_IS_SAMPLE_POINT (sample_point));
+
+ gimp_sample_point_get_position (sample_point,
&sample_point_undo->x,
&sample_point_undo->y);
}
-static void
-gimp_sample_point_undo_set_property (GObject *object,
- guint property_id,
- const GValue *value,
- GParamSpec *pspec)
-{
- GimpSamplePointUndo *sample_point_undo = GIMP_SAMPLE_POINT_UNDO (object);
-
- switch (property_id)
- {
- case PROP_SAMPLE_POINT:
- sample_point_undo->sample_point = g_value_dup_object (value);
- break;
-
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
-static void
-gimp_sample_point_undo_get_property (GObject *object,
- guint property_id,
- GValue *value,
- GParamSpec *pspec)
-{
- GimpSamplePointUndo *sample_point_undo = GIMP_SAMPLE_POINT_UNDO (object);
-
- switch (property_id)
- {
- case PROP_SAMPLE_POINT:
- g_value_set_object (value, sample_point_undo->sample_point);
- break;
-
- default:
- G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
- break;
- }
-}
-
static void
gimp_sample_point_undo_pop (GimpUndo *undo,
GimpUndoMode undo_mode,
GimpUndoAccumulator *accum)
{
GimpSamplePointUndo *sample_point_undo = GIMP_SAMPLE_POINT_UNDO (undo);
+ GimpSamplePoint *sample_point;
gint x;
gint y;
GIMP_UNDO_CLASS (parent_class)->pop (undo, undo_mode, accum);
- gimp_sample_point_get_position (sample_point_undo->sample_point, &x, &y);
+ sample_point = GIMP_SAMPLE_POINT (GIMP_AUX_ITEM_UNDO (undo)->aux_item);
+
+ gimp_sample_point_get_position (sample_point, &x, &y);
if (x == GIMP_SAMPLE_POINT_POSITION_UNDEFINED)
{
gimp_image_add_sample_point (undo->image,
- sample_point_undo->sample_point,
+ sample_point,
sample_point_undo->x,
sample_point_undo->y);
}
else if (sample_point_undo->x == GIMP_SAMPLE_POINT_POSITION_UNDEFINED)
{
- gimp_image_remove_sample_point (undo->image,
- sample_point_undo->sample_point, FALSE);
+ gimp_image_remove_sample_point (undo->image, sample_point, FALSE);
}
else
{
- gimp_sample_point_set_position (sample_point_undo->sample_point,
+ gimp_sample_point_set_position (sample_point,
sample_point_undo->x,
sample_point_undo->y);
- gimp_image_sample_point_moved (undo->image,
- sample_point_undo->sample_point);
+ gimp_image_sample_point_moved (undo->image, sample_point);
}
sample_point_undo->x = x;
sample_point_undo->y = y;
}
-
-static void
-gimp_sample_point_undo_free (GimpUndo *undo,
- GimpUndoMode undo_mode)
-{
- GimpSamplePointUndo *sample_point_undo = GIMP_SAMPLE_POINT_UNDO (undo);
-
- g_clear_object (&sample_point_undo->sample_point);
-
- GIMP_UNDO_CLASS (parent_class)->free (undo, undo_mode);
-}
diff --git a/app/core/gimpsamplepointundo.h b/app/core/gimpsamplepointundo.h
index 717c1ab20d..63899a7933 100644
--- a/app/core/gimpsamplepointundo.h
+++ b/app/core/gimpsamplepointundo.h
@@ -19,7 +19,7 @@
#define __GIMP_SAMPLE_POINT_UNDO_H__
-#include "gimpundo.h"
+#include "gimpauxitemundo.h"
#define GIMP_TYPE_SAMPLE_POINT_UNDO (gimp_sample_point_undo_get_type ())
@@ -35,16 +35,15 @@ typedef struct _GimpSamplePointUndoClass GimpSamplePointUndoClass;
struct _GimpSamplePointUndo
{
- GimpUndo parent_instance;
+ GimpAuxItemUndo parent_instance;
- GimpSamplePoint *sample_point;
gint x;
gint y;
};
struct _GimpSamplePointUndoClass
{
- GimpUndoClass parent_class;
+ GimpAuxItemUndoClass parent_class;
};
diff --git a/app/pdb/image-guides-cmds.c b/app/pdb/image-guides-cmds.c
index 905aa1bd9a..21d36ce375 100644
--- a/app/pdb/image-guides-cmds.c
+++ b/app/pdb/image-guides-cmds.c
@@ -67,7 +67,7 @@ image_add_hguide_invoker (GimpProcedure *procedure,
GimpGuide *g;
g = gimp_image_add_hguide (image, yposition, TRUE);
- guide = gimp_guide_get_ID (g);
+ guide = gimp_aux_item_get_ID (GIMP_AUX_ITEM (g));
}
else
success = FALSE;
@@ -106,7 +106,7 @@ image_add_vguide_invoker (GimpProcedure *procedure,
GimpGuide *g;
g = gimp_image_add_vguide (image, xposition, TRUE);
- guide = gimp_guide_get_ID (g);
+ guide = gimp_aux_item_get_ID (GIMP_AUX_ITEM (g));
}
else
success = FALSE;
@@ -172,7 +172,7 @@ image_find_next_guide_invoker (GimpProcedure *procedure,
GimpGuide *g = gimp_image_get_next_guide (image, guide, &success);
if (g)
- next_guide = gimp_guide_get_ID (g);
+ next_guide = gimp_aux_item_get_ID (GIMP_AUX_ITEM (g));
if (! success)
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
diff --git a/app/pdb/image-sample-points-cmds.c b/app/pdb/image-sample-points-cmds.c
index 2c073a6e6c..a8a19654bc 100644
--- a/app/pdb/image-sample-points-cmds.c
+++ b/app/pdb/image-sample-points-cmds.c
@@ -69,7 +69,7 @@ image_add_sample_point_invoker (GimpProcedure *procedure,
sp = gimp_image_add_sample_point_at_pos (image, position_x, position_y,
TRUE);
- sample_point = gimp_sample_point_get_ID (sp);
+ sample_point = gimp_aux_item_get_ID (GIMP_AUX_ITEM (sp));
}
else
success = FALSE;
@@ -137,7 +137,7 @@ image_find_next_sample_point_invoker (GimpProcedure *procedure,
&success);
if (sp)
- next_sample_point = gimp_sample_point_get_ID (sp);
+ next_sample_point = gimp_aux_item_get_ID (GIMP_AUX_ITEM (sp));
if (! success)
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
diff --git a/pdb/groups/image_guides.pdb b/pdb/groups/image_guides.pdb
index 68b9e82a8f..d066e46fd9 100644
--- a/pdb/groups/image_guides.pdb
+++ b/pdb/groups/image_guides.pdb
@@ -47,7 +47,7 @@ HELP
GimpGuide *g;
g = gimp_image_add_hguide (image, yposition, TRUE);
- guide = gimp_guide_get_ID (g);
+ guide = gimp_aux_item_get_ID (GIMP_AUX_ITEM (g));
}
else
success = FALSE;
@@ -87,7 +87,7 @@ HELP
GimpGuide *g;
g = gimp_image_add_vguide (image, xposition, TRUE);
- guide = gimp_guide_get_ID (g);
+ guide = gimp_aux_item_get_ID (GIMP_AUX_ITEM (g));
}
else
success = FALSE;
@@ -157,7 +157,7 @@ HELP
GimpGuide *g = gimp_image_get_next_guide (image, guide, &success);
if (g)
- next_guide = gimp_guide_get_ID (g);
+ next_guide = gimp_aux_item_get_ID (GIMP_AUX_ITEM (g));
if (! success)
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
diff --git a/pdb/groups/image_sample_points.pdb b/pdb/groups/image_sample_points.pdb
index 1c921007af..e116f7a902 100644
--- a/pdb/groups/image_sample_points.pdb
+++ b/pdb/groups/image_sample_points.pdb
@@ -51,7 +51,7 @@ HELP
sp = gimp_image_add_sample_point_at_pos (image, position_x, position_y,
TRUE);
- sample_point = gimp_sample_point_get_ID (sp);
+ sample_point = gimp_aux_item_get_ID (GIMP_AUX_ITEM (sp));
}
else
success = FALSE;
@@ -125,7 +125,7 @@ HELP
&success);
if (sp)
- next_sample_point = gimp_sample_point_get_ID (sp);
+ next_sample_point = gimp_aux_item_get_ID (GIMP_AUX_ITEM (sp));
if (! success)
g_set_error (error, GIMP_PDB_ERROR, GIMP_PDB_ERROR_INVALID_ARGUMENT,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]