[gobject-introspection] gimarshallingtests: Add boxed GList property
- From: Martin Pitt <martinpitt src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gobject-introspection] gimarshallingtests: Add boxed GList property
- Date: Mon, 14 Jan 2013 08:13:39 +0000 (UTC)
commit d94aa67674261cf921f5a29565c21ebe1ad42a31
Author: Martin Pitt <martinpitt gnome org>
Date: Mon Jan 14 08:48:03 2013 +0100
gimarshallingtests: Add boxed GList property
https://bugzilla.gnome.org/show_bug.cgi?id=684059
tests/gimarshallingtests.c | 33 +++++++++++++++++++++++++++++++++
tests/gimarshallingtests.h | 1 +
2 files changed, 34 insertions(+), 0 deletions(-)
---
diff --git a/tests/gimarshallingtests.c b/tests/gimarshallingtests.c
index f12ea05..e855981 100644
--- a/tests/gimarshallingtests.c
+++ b/tests/gimarshallingtests.c
@@ -3673,6 +3673,20 @@ gi_marshalling_tests_boxed_struct_get_type (void)
return type;
}
+static GType
+gi_marshalling_tests_boxed_glist_get_type (void)
+{
+ static GType type = 0;
+
+ if (type == 0) {
+ type = g_boxed_type_register_static ("GIMarshallingTestsBoxedGList",
+ (GBoxedCopyFunc) g_list_copy,
+ (GBoxedFreeFunc) g_list_free);
+ }
+
+ return type;
+}
+
GIMarshallingTestsBoxedStruct *
gi_marshalling_tests_boxed_struct_new (void)
{
@@ -4722,6 +4736,7 @@ enum {
SOME_STRV_PROPERTY,
SOME_BOXED_STRUCT_PROPERTY,
SOME_VARIANT_PROPERTY,
+ SOME_BOXED_GLIST_PROPERTY,
};
G_DEFINE_TYPE (GIMarshallingTestsPropertiesObject, gi_marshalling_tests_properties_object, G_TYPE_OBJECT);
@@ -4782,6 +4797,9 @@ gi_marshalling_tests_properties_object_get_property (GObject * object, guint pro
case SOME_BOXED_STRUCT_PROPERTY:
g_value_set_boxed (value, self->some_boxed_struct);
break;
+ case SOME_BOXED_GLIST_PROPERTY:
+ g_value_set_boxed (value, self->some_boxed_glist);
+ break;
case SOME_VARIANT_PROPERTY:
g_value_set_variant (value, self->some_variant);
break;
@@ -4838,6 +4856,10 @@ gi_marshalling_tests_properties_object_set_property (GObject * object, guint pro
gi_marshalling_tests_boxed_struct_free (self->some_boxed_struct);
self->some_boxed_struct = gi_marshalling_tests_boxed_struct_copy (g_value_get_boxed (value));
break;
+ case SOME_BOXED_GLIST_PROPERTY:
+ g_list_free (self->some_boxed_glist);
+ self->some_boxed_glist = g_list_copy (g_value_get_boxed (value));
+ break;
case SOME_VARIANT_PROPERTY:
if (self->some_variant != NULL)
g_variant_unref (self->some_variant);
@@ -4913,6 +4935,17 @@ gi_marshalling_tests_properties_object_class_init (GIMarshallingTestsPropertiesO
gi_marshalling_tests_boxed_struct_get_type(),
G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));
+ /**
+ * GIMarshallingTestsPropertiesObject:some-boxed-glist:
+ *
+ * Type: GLib.List(gint)
+ * Transfer: none
+ */
+ g_object_class_install_property (object_class, SOME_BOXED_GLIST_PROPERTY,
+ g_param_spec_boxed ("some-boxed-glist", "some-boxed-glist", "some-boxed-glist",
+ gi_marshalling_tests_boxed_glist_get_type(),
+ G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT));
+
g_object_class_install_property (object_class, SOME_VARIANT_PROPERTY,
g_param_spec_variant ("some-variant", "some-variant", "some-variant",
G_VARIANT_TYPE_ANY, NULL,
diff --git a/tests/gimarshallingtests.h b/tests/gimarshallingtests.h
index 6ac212e..74090f0 100644
--- a/tests/gimarshallingtests.h
+++ b/tests/gimarshallingtests.h
@@ -1082,6 +1082,7 @@ struct _GIMarshallingTestsPropertiesObject {
gdouble some_double;
gchar **some_strv;
GIMarshallingTestsBoxedStruct* some_boxed_struct;
+ GList* some_boxed_glist;
GVariant *some_variant;
};
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]