[gimp/gtk3-port: 167/240] libgimpwidgets: move all GimpColorProfileStore members to a private struct
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/gtk3-port: 167/240] libgimpwidgets: move all GimpColorProfileStore members to a private struct
- Date: Sat, 28 Apr 2018 18:37:01 +0000 (UTC)
commit 9b7b21ee6129e49ac2212dca6055c5c7260e9a81
Author: Michael Natterer <mitch gimp org>
Date: Mon Jan 3 14:31:51 2011 +0100
libgimpwidgets: move all GimpColorProfileStore members to a private struct
libgimpwidgets/gimpcolorprofilestore.c | 48 ++++++++++++++++++++------------
libgimpwidgets/gimpcolorprofilestore.h | 2 -
2 files changed, 30 insertions(+), 20 deletions(-)
---
diff --git a/libgimpwidgets/gimpcolorprofilestore.c b/libgimpwidgets/gimpcolorprofilestore.c
index bf468f7..b9b1399 100644
--- a/libgimpwidgets/gimpcolorprofilestore.c
+++ b/libgimpwidgets/gimpcolorprofilestore.c
@@ -54,6 +54,18 @@ enum
};
+typedef struct _GimpColorProfileStorePrivate GimpColorProfileStorePrivate;
+
+struct _GimpColorProfileStorePrivate
+{
+ gchar *history;
+};
+
+#define GET_PRIVATE(obj) G_TYPE_INSTANCE_GET_PRIVATE (obj, \
+ GIMP_TYPE_COLOR_PROFILE_STORE, \
+ GimpColorProfileStorePrivate)
+
+
static void gimp_color_profile_store_constructed (GObject *object);
static void gimp_color_profile_store_dispose (GObject *object);
static void gimp_color_profile_store_finalize (GObject *object);
@@ -114,6 +126,8 @@ gimp_color_profile_store_class_init (GimpColorProfileStoreClass *klass)
NULL,
G_PARAM_CONSTRUCT_ONLY |
GIMP_PARAM_READWRITE));
+
+ g_type_class_add_private (object_class, sizeof (GimpColorProfileStorePrivate));
}
static void
@@ -134,8 +148,9 @@ gimp_color_profile_store_init (GimpColorProfileStore *store)
static void
gimp_color_profile_store_constructed (GObject *object)
{
- GimpColorProfileStore *store = GIMP_COLOR_PROFILE_STORE (object);
- GtkTreeIter iter;
+ GimpColorProfileStore *store = GIMP_COLOR_PROFILE_STORE (object);
+ GimpColorProfileStorePrivate *private = GET_PRIVATE (store);
+ GtkTreeIter iter;
G_OBJECT_CLASS (parent_class)->constructed (object);
@@ -147,21 +162,18 @@ gimp_color_profile_store_constructed (GObject *object)
_("Select color profile from disk..."),
-1);
- if (store->history)
- {
- gimp_color_profile_store_load (store, store->history, NULL);
- }
+ if (private->history)
+ gimp_color_profile_store_load (store, private->history, NULL);
}
static void
gimp_color_profile_store_dispose (GObject *object)
{
- GimpColorProfileStore *store = GIMP_COLOR_PROFILE_STORE (object);
+ GimpColorProfileStore *store = GIMP_COLOR_PROFILE_STORE (object);
+ GimpColorProfileStorePrivate *private = GET_PRIVATE (store);
- if (store->history)
- {
- gimp_color_profile_store_save (store, store->history, NULL);
- }
+ if (private->history)
+ gimp_color_profile_store_save (store, private->history, NULL);
G_OBJECT_CLASS (parent_class)->dispose (object);
}
@@ -169,9 +181,9 @@ gimp_color_profile_store_dispose (GObject *object)
static void
gimp_color_profile_store_finalize (GObject *object)
{
- GimpColorProfileStore *store = GIMP_COLOR_PROFILE_STORE (object);
+ GimpColorProfileStorePrivate *private = GET_PRIVATE (object);
- g_clear_pointer (&store->history, g_free);
+ g_clear_pointer (&private->history, g_free);
G_OBJECT_CLASS (parent_class)->finalize (object);
}
@@ -182,13 +194,13 @@ gimp_color_profile_store_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec)
{
- GimpColorProfileStore *store = GIMP_COLOR_PROFILE_STORE (object);
+ GimpColorProfileStorePrivate *private = GET_PRIVATE (object);
switch (property_id)
{
case PROP_HISTORY:
- g_return_if_fail (store->history == NULL);
- store->history = g_value_dup_string (value);
+ g_return_if_fail (private->history == NULL);
+ private->history = g_value_dup_string (value);
break;
default:
@@ -203,12 +215,12 @@ gimp_color_profile_store_get_property (GObject *object,
GValue *value,
GParamSpec *pspec)
{
- GimpColorProfileStore *store = GIMP_COLOR_PROFILE_STORE (object);
+ GimpColorProfileStorePrivate *private = GET_PRIVATE (object);
switch (property_id)
{
case PROP_HISTORY:
- g_value_set_string (value, store->history);
+ g_value_set_string (value, private->history);
break;
default:
diff --git a/libgimpwidgets/gimpcolorprofilestore.h b/libgimpwidgets/gimpcolorprofilestore.h
index 9293d93..09536aa 100644
--- a/libgimpwidgets/gimpcolorprofilestore.h
+++ b/libgimpwidgets/gimpcolorprofilestore.h
@@ -42,8 +42,6 @@ typedef struct _GimpColorProfileStoreClass GimpColorProfileStoreClass;
struct _GimpColorProfileStore
{
GtkListStore parent_instance;
-
- gchar *history;
};
struct _GimpColorProfileStoreClass
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]