sl@0
|
1 |
/* GObject - GLib Type, Object, Parameter and Signal Library
|
sl@0
|
2 |
* Copyright (C) 2001, 2003 Red Hat, Inc.
|
sl@0
|
3 |
* Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General
|
sl@0
|
15 |
* Public License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
|
sl@0
|
20 |
#undef G_LOG_DOMAIN
|
sl@0
|
21 |
#define G_LOG_DOMAIN "TestIfaceProperties"
|
sl@0
|
22 |
|
sl@0
|
23 |
#undef G_DISABLE_ASSERT
|
sl@0
|
24 |
#undef G_DISABLE_CHECKS
|
sl@0
|
25 |
#undef G_DISABLE_CAST_CHECKS
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <string.h>
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <glib-object.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
#include "testcommon.h"
|
sl@0
|
32 |
#ifdef __SYMBIAN32__
|
sl@0
|
33 |
#include <gobject_global.h>
|
sl@0
|
34 |
#include "mrt2_glib2_test.h"
|
sl@0
|
35 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
36 |
|
sl@0
|
37 |
/* This test tests interface properties, implementing interface
|
sl@0
|
38 |
* properties and #GParamSpecOverride.
|
sl@0
|
39 |
*
|
sl@0
|
40 |
* Four properties are tested:
|
sl@0
|
41 |
*
|
sl@0
|
42 |
* prop1: Defined in TestIface, Implemented in BaseObject with a GParamSpecOverride
|
sl@0
|
43 |
* prop2: Defined in TestIface, Implemented in BaseObject with a new property
|
sl@0
|
44 |
* prop3: Defined in TestIface, Implemented in BaseObject, Overridden in DerivedObject
|
sl@0
|
45 |
* prop4: Defined in BaseObject, Overridden in DerivedObject
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
|
sl@0
|
48 |
static GType base_object_get_type (void);
|
sl@0
|
49 |
static GType derived_object_get_type (void);
|
sl@0
|
50 |
|
sl@0
|
51 |
enum {
|
sl@0
|
52 |
BASE_PROP_0,
|
sl@0
|
53 |
BASE_PROP1,
|
sl@0
|
54 |
BASE_PROP2,
|
sl@0
|
55 |
BASE_PROP3,
|
sl@0
|
56 |
BASE_PROP4
|
sl@0
|
57 |
};
|
sl@0
|
58 |
|
sl@0
|
59 |
enum {
|
sl@0
|
60 |
DERIVED_PROP_0,
|
sl@0
|
61 |
DERIVED_PROP3,
|
sl@0
|
62 |
DERIVED_PROP4
|
sl@0
|
63 |
};
|
sl@0
|
64 |
|
sl@0
|
65 |
/*
|
sl@0
|
66 |
* BaseObject, a parent class for DerivedObject
|
sl@0
|
67 |
*/
|
sl@0
|
68 |
#define BASE_TYPE_OBJECT (base_object_get_type ())
|
sl@0
|
69 |
#define BASE_OBJECT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BASE_TYPE_OBJECT, BaseObject))
|
sl@0
|
70 |
typedef struct _BaseObject BaseObject;
|
sl@0
|
71 |
typedef struct _BaseObjectClass BaseObjectClass;
|
sl@0
|
72 |
|
sl@0
|
73 |
struct _BaseObject
|
sl@0
|
74 |
{
|
sl@0
|
75 |
GObject parent_instance;
|
sl@0
|
76 |
|
sl@0
|
77 |
gint val1;
|
sl@0
|
78 |
gint val2;
|
sl@0
|
79 |
gint val3;
|
sl@0
|
80 |
gint val4;
|
sl@0
|
81 |
};
|
sl@0
|
82 |
struct _BaseObjectClass
|
sl@0
|
83 |
{
|
sl@0
|
84 |
GObjectClass parent_class;
|
sl@0
|
85 |
};
|
sl@0
|
86 |
|
sl@0
|
87 |
GObjectClass *base_parent_class;
|
sl@0
|
88 |
|
sl@0
|
89 |
/*
|
sl@0
|
90 |
* DerivedObject, the child class of DerivedObject
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
#define DERIVED_TYPE_OBJECT (derived_object_get_type ())
|
sl@0
|
93 |
typedef struct _DerivedObject DerivedObject;
|
sl@0
|
94 |
typedef struct _DerivedObjectClass DerivedObjectClass;
|
sl@0
|
95 |
|
sl@0
|
96 |
struct _DerivedObject
|
sl@0
|
97 |
{
|
sl@0
|
98 |
BaseObject parent_instance;
|
sl@0
|
99 |
};
|
sl@0
|
100 |
struct _DerivedObjectClass
|
sl@0
|
101 |
{
|
sl@0
|
102 |
BaseObjectClass parent_class;
|
sl@0
|
103 |
};
|
sl@0
|
104 |
|
sl@0
|
105 |
/*
|
sl@0
|
106 |
* The interface
|
sl@0
|
107 |
*/
|
sl@0
|
108 |
typedef struct _TestIfaceClass TestIfaceClass;
|
sl@0
|
109 |
|
sl@0
|
110 |
struct _TestIfaceClass
|
sl@0
|
111 |
{
|
sl@0
|
112 |
GTypeInterface base_iface;
|
sl@0
|
113 |
};
|
sl@0
|
114 |
|
sl@0
|
115 |
#define TEST_TYPE_IFACE (test_iface_get_type ())
|
sl@0
|
116 |
|
sl@0
|
117 |
/* The paramspecs installed on our interface
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
static GParamSpec *iface_spec1, *iface_spec2, *iface_spec3;
|
sl@0
|
120 |
|
sl@0
|
121 |
/* The paramspecs inherited by our derived object
|
sl@0
|
122 |
*/
|
sl@0
|
123 |
static GParamSpec *inherited_spec1, *inherited_spec2, *inherited_spec3, *inherited_spec4;
|
sl@0
|
124 |
|
sl@0
|
125 |
static void
|
sl@0
|
126 |
test_iface_default_init (TestIfaceClass *iface_vtable)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
inherited_spec1 = iface_spec1 = g_param_spec_int ("prop1",
|
sl@0
|
129 |
"Prop1",
|
sl@0
|
130 |
"Property 1",
|
sl@0
|
131 |
G_MININT, /* min */
|
sl@0
|
132 |
0xFFFF, /* max */
|
sl@0
|
133 |
42, /* default */
|
sl@0
|
134 |
G_PARAM_READWRITE | G_PARAM_CONSTRUCT);
|
sl@0
|
135 |
g_object_interface_install_property (iface_vtable, iface_spec1);
|
sl@0
|
136 |
|
sl@0
|
137 |
iface_spec2 = g_param_spec_int ("prop2",
|
sl@0
|
138 |
"Prop2",
|
sl@0
|
139 |
"Property 2",
|
sl@0
|
140 |
G_MININT, /* min */
|
sl@0
|
141 |
G_MAXINT, /* max */
|
sl@0
|
142 |
0, /* default */
|
sl@0
|
143 |
G_PARAM_WRITABLE);
|
sl@0
|
144 |
g_object_interface_install_property (iface_vtable, iface_spec2);
|
sl@0
|
145 |
|
sl@0
|
146 |
inherited_spec3 = iface_spec3 = g_param_spec_int ("prop3",
|
sl@0
|
147 |
"Prop3",
|
sl@0
|
148 |
"Property 3",
|
sl@0
|
149 |
G_MININT, /* min */
|
sl@0
|
150 |
G_MAXINT, /* max */
|
sl@0
|
151 |
0, /* default */
|
sl@0
|
152 |
G_PARAM_READWRITE);
|
sl@0
|
153 |
g_object_interface_install_property (iface_vtable, iface_spec3);
|
sl@0
|
154 |
}
|
sl@0
|
155 |
|
sl@0
|
156 |
static DEFINE_IFACE (TestIface, test_iface, NULL, test_iface_default_init)
|
sl@0
|
157 |
|
sl@0
|
158 |
|
sl@0
|
159 |
static GObject*
|
sl@0
|
160 |
base_object_constructor (GType type,
|
sl@0
|
161 |
guint n_construct_properties,
|
sl@0
|
162 |
GObjectConstructParam *construct_properties)
|
sl@0
|
163 |
{
|
sl@0
|
164 |
/* The constructor is the one place where a GParamSpecOverride is visible
|
sl@0
|
165 |
* to the outside world, so we do a bunch of checks here
|
sl@0
|
166 |
*/
|
sl@0
|
167 |
GValue value1 = { 0, };
|
sl@0
|
168 |
GValue value2 = { 0, };
|
sl@0
|
169 |
GParamSpec *pspec;
|
sl@0
|
170 |
|
sl@0
|
171 |
g_assert (n_construct_properties == 1);
|
sl@0
|
172 |
|
sl@0
|
173 |
pspec = construct_properties->pspec;
|
sl@0
|
174 |
|
sl@0
|
175 |
/* Check we got the param spec we expected
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
g_assert (G_IS_PARAM_SPEC_OVERRIDE (pspec));
|
sl@0
|
178 |
g_assert (pspec->param_id == BASE_PROP1);
|
sl@0
|
179 |
g_assert (strcmp (g_param_spec_get_name (pspec), "prop1") == 0);
|
sl@0
|
180 |
g_assert (g_param_spec_get_redirect_target (pspec) == iface_spec1);
|
sl@0
|
181 |
|
sl@0
|
182 |
/* Test redirection of the nick and blurb to the redirect target
|
sl@0
|
183 |
*/
|
sl@0
|
184 |
g_assert (strcmp (g_param_spec_get_nick (pspec), "Prop1") == 0);
|
sl@0
|
185 |
g_assert (strcmp (g_param_spec_get_blurb (pspec), "Property 1") == 0);
|
sl@0
|
186 |
|
sl@0
|
187 |
/* Test forwarding of the various GParamSpec methods to the redirect target
|
sl@0
|
188 |
*/
|
sl@0
|
189 |
g_value_init (&value1, G_TYPE_INT);
|
sl@0
|
190 |
g_value_init (&value2, G_TYPE_INT);
|
sl@0
|
191 |
|
sl@0
|
192 |
g_param_value_set_default (pspec, &value1);
|
sl@0
|
193 |
g_assert (g_value_get_int (&value1) == 42);
|
sl@0
|
194 |
|
sl@0
|
195 |
g_value_reset (&value1);
|
sl@0
|
196 |
g_value_set_int (&value1, 0x10000);
|
sl@0
|
197 |
g_assert (g_param_value_validate (pspec, &value1));
|
sl@0
|
198 |
g_assert (g_value_get_int (&value1) == 0xFFFF);
|
sl@0
|
199 |
g_assert (!g_param_value_validate (pspec, &value1));
|
sl@0
|
200 |
|
sl@0
|
201 |
g_value_reset (&value1);
|
sl@0
|
202 |
g_value_set_int (&value1, 1);
|
sl@0
|
203 |
g_value_set_int (&value2, 2);
|
sl@0
|
204 |
g_assert (g_param_values_cmp (pspec, &value1, &value2) < 0);
|
sl@0
|
205 |
g_assert (g_param_values_cmp (pspec, &value2, &value1) > 0);
|
sl@0
|
206 |
|
sl@0
|
207 |
g_value_unset (&value1);
|
sl@0
|
208 |
g_value_unset (&value2);
|
sl@0
|
209 |
|
sl@0
|
210 |
return base_parent_class->constructor (type,
|
sl@0
|
211 |
n_construct_properties,
|
sl@0
|
212 |
construct_properties);
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
static void
|
sl@0
|
216 |
base_object_set_property (GObject *object,
|
sl@0
|
217 |
guint prop_id,
|
sl@0
|
218 |
const GValue *value,
|
sl@0
|
219 |
GParamSpec *pspec)
|
sl@0
|
220 |
{
|
sl@0
|
221 |
BaseObject *base_object = BASE_OBJECT (object);
|
sl@0
|
222 |
|
sl@0
|
223 |
switch (prop_id)
|
sl@0
|
224 |
{
|
sl@0
|
225 |
case BASE_PROP1:
|
sl@0
|
226 |
g_assert (pspec == inherited_spec1);
|
sl@0
|
227 |
base_object->val1 = g_value_get_int (value);
|
sl@0
|
228 |
break;
|
sl@0
|
229 |
case BASE_PROP2:
|
sl@0
|
230 |
g_assert (pspec == inherited_spec2);
|
sl@0
|
231 |
base_object->val2 = g_value_get_int (value);
|
sl@0
|
232 |
break;
|
sl@0
|
233 |
case BASE_PROP3:
|
sl@0
|
234 |
g_assert_not_reached ();
|
sl@0
|
235 |
break;
|
sl@0
|
236 |
case BASE_PROP4:
|
sl@0
|
237 |
g_assert_not_reached ();
|
sl@0
|
238 |
break;
|
sl@0
|
239 |
default:
|
sl@0
|
240 |
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
sl@0
|
241 |
break;
|
sl@0
|
242 |
}
|
sl@0
|
243 |
}
|
sl@0
|
244 |
|
sl@0
|
245 |
static void
|
sl@0
|
246 |
base_object_get_property (GObject *object,
|
sl@0
|
247 |
guint prop_id,
|
sl@0
|
248 |
GValue *value,
|
sl@0
|
249 |
GParamSpec *pspec)
|
sl@0
|
250 |
{
|
sl@0
|
251 |
BaseObject *base_object = BASE_OBJECT (object);
|
sl@0
|
252 |
|
sl@0
|
253 |
switch (prop_id)
|
sl@0
|
254 |
{
|
sl@0
|
255 |
case BASE_PROP1:
|
sl@0
|
256 |
g_assert (pspec == inherited_spec1);
|
sl@0
|
257 |
g_value_set_int (value, base_object->val1);
|
sl@0
|
258 |
break;
|
sl@0
|
259 |
case BASE_PROP2:
|
sl@0
|
260 |
g_assert (pspec == inherited_spec2);
|
sl@0
|
261 |
g_value_set_int (value, base_object->val2);
|
sl@0
|
262 |
break;
|
sl@0
|
263 |
case BASE_PROP3:
|
sl@0
|
264 |
g_assert_not_reached ();
|
sl@0
|
265 |
break;
|
sl@0
|
266 |
case BASE_PROP4:
|
sl@0
|
267 |
g_assert_not_reached ();
|
sl@0
|
268 |
break;
|
sl@0
|
269 |
default:
|
sl@0
|
270 |
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
sl@0
|
271 |
break;
|
sl@0
|
272 |
}
|
sl@0
|
273 |
}
|
sl@0
|
274 |
|
sl@0
|
275 |
static void
|
sl@0
|
276 |
base_object_notify (GObject *object,
|
sl@0
|
277 |
GParamSpec *pspec)
|
sl@0
|
278 |
{
|
sl@0
|
279 |
/* The property passed to notify is the redirect target, not the
|
sl@0
|
280 |
* GParamSpecOverride
|
sl@0
|
281 |
*/
|
sl@0
|
282 |
g_assert (pspec == inherited_spec1 ||
|
sl@0
|
283 |
pspec == inherited_spec2 ||
|
sl@0
|
284 |
pspec == inherited_spec3 ||
|
sl@0
|
285 |
pspec == inherited_spec4);
|
sl@0
|
286 |
}
|
sl@0
|
287 |
|
sl@0
|
288 |
static void
|
sl@0
|
289 |
base_object_class_init (BaseObjectClass *class)
|
sl@0
|
290 |
{
|
sl@0
|
291 |
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
sl@0
|
292 |
|
sl@0
|
293 |
base_parent_class= g_type_class_peek_parent (class);
|
sl@0
|
294 |
|
sl@0
|
295 |
object_class->constructor = base_object_constructor;
|
sl@0
|
296 |
object_class->set_property = base_object_set_property;
|
sl@0
|
297 |
object_class->get_property = base_object_get_property;
|
sl@0
|
298 |
object_class->notify = base_object_notify;
|
sl@0
|
299 |
|
sl@0
|
300 |
g_object_class_override_property (object_class, BASE_PROP1, "prop1");
|
sl@0
|
301 |
|
sl@0
|
302 |
/* We override this one using a real property, not GParamSpecOverride
|
sl@0
|
303 |
* We change the flags from READONLY to READWRITE to show that we
|
sl@0
|
304 |
* can make the flags less restrictive
|
sl@0
|
305 |
*/
|
sl@0
|
306 |
inherited_spec2 = g_param_spec_int ("prop2",
|
sl@0
|
307 |
"Prop2",
|
sl@0
|
308 |
"Property 2",
|
sl@0
|
309 |
G_MININT, /* min */
|
sl@0
|
310 |
G_MAXINT, /* max */
|
sl@0
|
311 |
0, /* default */
|
sl@0
|
312 |
G_PARAM_READWRITE);
|
sl@0
|
313 |
g_object_class_install_property (object_class, BASE_PROP2, inherited_spec2);
|
sl@0
|
314 |
|
sl@0
|
315 |
g_object_class_override_property (object_class, BASE_PROP3, "prop3");
|
sl@0
|
316 |
|
sl@0
|
317 |
inherited_spec4 = g_param_spec_int ("prop4",
|
sl@0
|
318 |
"Prop4",
|
sl@0
|
319 |
"Property 4",
|
sl@0
|
320 |
G_MININT, /* min */
|
sl@0
|
321 |
G_MAXINT, /* max */
|
sl@0
|
322 |
0, /* default */
|
sl@0
|
323 |
G_PARAM_READWRITE);
|
sl@0
|
324 |
g_object_class_install_property (object_class, BASE_PROP4, inherited_spec4);
|
sl@0
|
325 |
}
|
sl@0
|
326 |
|
sl@0
|
327 |
static void
|
sl@0
|
328 |
base_object_init (BaseObject *base_object)
|
sl@0
|
329 |
{
|
sl@0
|
330 |
base_object->val1 = 42;
|
sl@0
|
331 |
}
|
sl@0
|
332 |
|
sl@0
|
333 |
static DEFINE_TYPE_FULL (BaseObject, base_object,
|
sl@0
|
334 |
base_object_class_init, NULL, base_object_init,
|
sl@0
|
335 |
G_TYPE_OBJECT,
|
sl@0
|
336 |
INTERFACE (NULL, TEST_TYPE_IFACE))
|
sl@0
|
337 |
|
sl@0
|
338 |
static void
|
sl@0
|
339 |
derived_object_set_property (GObject *object,
|
sl@0
|
340 |
guint prop_id,
|
sl@0
|
341 |
const GValue *value,
|
sl@0
|
342 |
GParamSpec *pspec)
|
sl@0
|
343 |
{
|
sl@0
|
344 |
BaseObject *base_object = BASE_OBJECT (object);
|
sl@0
|
345 |
|
sl@0
|
346 |
switch (prop_id)
|
sl@0
|
347 |
{
|
sl@0
|
348 |
case DERIVED_PROP3:
|
sl@0
|
349 |
g_assert (pspec == inherited_spec3);
|
sl@0
|
350 |
base_object->val3 = g_value_get_int (value);
|
sl@0
|
351 |
break;
|
sl@0
|
352 |
case DERIVED_PROP4:
|
sl@0
|
353 |
g_assert (pspec == inherited_spec4);
|
sl@0
|
354 |
base_object->val4 = g_value_get_int (value);
|
sl@0
|
355 |
break;
|
sl@0
|
356 |
default:
|
sl@0
|
357 |
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
sl@0
|
358 |
break;
|
sl@0
|
359 |
}
|
sl@0
|
360 |
}
|
sl@0
|
361 |
|
sl@0
|
362 |
static void
|
sl@0
|
363 |
derived_object_get_property (GObject *object,
|
sl@0
|
364 |
guint prop_id,
|
sl@0
|
365 |
GValue *value,
|
sl@0
|
366 |
GParamSpec *pspec)
|
sl@0
|
367 |
{
|
sl@0
|
368 |
BaseObject *base_object = BASE_OBJECT (object);
|
sl@0
|
369 |
|
sl@0
|
370 |
switch (prop_id)
|
sl@0
|
371 |
{
|
sl@0
|
372 |
case DERIVED_PROP3:
|
sl@0
|
373 |
g_assert (pspec == inherited_spec3);
|
sl@0
|
374 |
g_value_set_int (value, base_object->val3);
|
sl@0
|
375 |
break;
|
sl@0
|
376 |
case DERIVED_PROP4:
|
sl@0
|
377 |
g_assert (pspec == inherited_spec4);
|
sl@0
|
378 |
g_value_set_int (value, base_object->val4);
|
sl@0
|
379 |
break;
|
sl@0
|
380 |
default:
|
sl@0
|
381 |
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
sl@0
|
382 |
break;
|
sl@0
|
383 |
}
|
sl@0
|
384 |
}
|
sl@0
|
385 |
|
sl@0
|
386 |
static void
|
sl@0
|
387 |
derived_object_class_init (DerivedObjectClass *class)
|
sl@0
|
388 |
{
|
sl@0
|
389 |
GObjectClass *object_class = G_OBJECT_CLASS (class);
|
sl@0
|
390 |
|
sl@0
|
391 |
object_class->set_property = derived_object_set_property;
|
sl@0
|
392 |
object_class->get_property = derived_object_get_property;
|
sl@0
|
393 |
|
sl@0
|
394 |
/* Overriding a property that is itself overridding an interface property */
|
sl@0
|
395 |
g_object_class_override_property (object_class, DERIVED_PROP3, "prop3");
|
sl@0
|
396 |
|
sl@0
|
397 |
/* Overriding a property not from an interface */
|
sl@0
|
398 |
g_object_class_override_property (object_class, DERIVED_PROP4, "prop4");
|
sl@0
|
399 |
}
|
sl@0
|
400 |
|
sl@0
|
401 |
static DEFINE_TYPE (DerivedObject, derived_object,
|
sl@0
|
402 |
derived_object_class_init, NULL, NULL,
|
sl@0
|
403 |
BASE_TYPE_OBJECT)
|
sl@0
|
404 |
|
sl@0
|
405 |
/* Helper function for testing ...list_properties()
|
sl@0
|
406 |
*/
|
sl@0
|
407 |
static void
|
sl@0
|
408 |
assert_in_properties (GParamSpec *param_spec,
|
sl@0
|
409 |
GParamSpec **properties,
|
sl@0
|
410 |
gint n_properties)
|
sl@0
|
411 |
{
|
sl@0
|
412 |
gint i;
|
sl@0
|
413 |
gboolean found = FALSE;
|
sl@0
|
414 |
|
sl@0
|
415 |
for (i = 0; i < n_properties; i++)
|
sl@0
|
416 |
{
|
sl@0
|
417 |
if (properties[i] == param_spec)
|
sl@0
|
418 |
found = TRUE;
|
sl@0
|
419 |
}
|
sl@0
|
420 |
|
sl@0
|
421 |
g_assert (found);
|
sl@0
|
422 |
}
|
sl@0
|
423 |
|
sl@0
|
424 |
int
|
sl@0
|
425 |
main (gint argc,
|
sl@0
|
426 |
gchar *argv[])
|
sl@0
|
427 |
{
|
sl@0
|
428 |
BaseObject *object;
|
sl@0
|
429 |
GObjectClass *object_class;
|
sl@0
|
430 |
TestIfaceClass *iface_vtable;
|
sl@0
|
431 |
GParamSpec **properties;
|
sl@0
|
432 |
gint n_properties;
|
sl@0
|
433 |
|
sl@0
|
434 |
gint val1, val2, val3, val4;
|
sl@0
|
435 |
#ifdef __SYMBIAN32__
|
sl@0
|
436 |
g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
|
sl@0
|
437 |
g_set_print_handler(mrtPrintHandler);
|
sl@0
|
438 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
439 |
|
sl@0
|
440 |
g_log_set_always_fatal (g_log_set_always_fatal (G_LOG_FATAL_MASK) |
|
sl@0
|
441 |
G_LOG_LEVEL_WARNING |
|
sl@0
|
442 |
G_LOG_LEVEL_CRITICAL);
|
sl@0
|
443 |
g_type_init ();
|
sl@0
|
444 |
|
sl@0
|
445 |
object = g_object_new (DERIVED_TYPE_OBJECT, NULL);
|
sl@0
|
446 |
|
sl@0
|
447 |
/* Test setting and getting the properties
|
sl@0
|
448 |
*/
|
sl@0
|
449 |
g_object_set (object,
|
sl@0
|
450 |
"prop1", 0x0101,
|
sl@0
|
451 |
"prop2", 0x0202,
|
sl@0
|
452 |
"prop3", 0x0303,
|
sl@0
|
453 |
"prop4", 0x0404,
|
sl@0
|
454 |
NULL);
|
sl@0
|
455 |
g_object_get (object,
|
sl@0
|
456 |
"prop1", &val1,
|
sl@0
|
457 |
"prop2", &val2,
|
sl@0
|
458 |
"prop3", &val3,
|
sl@0
|
459 |
"prop4", &val4,
|
sl@0
|
460 |
NULL);
|
sl@0
|
461 |
|
sl@0
|
462 |
g_assert (val1 == 0x0101);
|
sl@0
|
463 |
g_assert (val2 == 0x0202);
|
sl@0
|
464 |
g_assert (val3 == 0x0303);
|
sl@0
|
465 |
g_assert (val4 == 0x0404);
|
sl@0
|
466 |
|
sl@0
|
467 |
/* Test that the right spec is passed on explicit notifications
|
sl@0
|
468 |
*/
|
sl@0
|
469 |
g_object_freeze_notify (G_OBJECT (object));
|
sl@0
|
470 |
g_object_notify (G_OBJECT (object), "prop1");
|
sl@0
|
471 |
g_object_notify (G_OBJECT (object), "prop2");
|
sl@0
|
472 |
g_object_notify (G_OBJECT (object), "prop3");
|
sl@0
|
473 |
g_object_notify (G_OBJECT (object), "prop4");
|
sl@0
|
474 |
g_object_thaw_notify (G_OBJECT (object));
|
sl@0
|
475 |
|
sl@0
|
476 |
/* Test g_object_class_find_property() for overridden properties
|
sl@0
|
477 |
*/
|
sl@0
|
478 |
object_class = G_OBJECT_GET_CLASS (object);
|
sl@0
|
479 |
|
sl@0
|
480 |
g_assert (g_object_class_find_property (object_class, "prop1") == inherited_spec1);
|
sl@0
|
481 |
g_assert (g_object_class_find_property (object_class, "prop2") == inherited_spec2);
|
sl@0
|
482 |
g_assert (g_object_class_find_property (object_class, "prop3") == inherited_spec3);
|
sl@0
|
483 |
g_assert (g_object_class_find_property (object_class, "prop4") == inherited_spec4);
|
sl@0
|
484 |
|
sl@0
|
485 |
/* Test g_object_class_list_properties() for overridden properties
|
sl@0
|
486 |
*/
|
sl@0
|
487 |
properties = g_object_class_list_properties (object_class,(guint *) &n_properties);
|
sl@0
|
488 |
g_assert (n_properties == 4);
|
sl@0
|
489 |
assert_in_properties (inherited_spec1, properties, n_properties);
|
sl@0
|
490 |
assert_in_properties (inherited_spec2, properties, n_properties);
|
sl@0
|
491 |
assert_in_properties (inherited_spec3, properties, n_properties);
|
sl@0
|
492 |
assert_in_properties (inherited_spec4, properties, n_properties);
|
sl@0
|
493 |
g_free (properties);
|
sl@0
|
494 |
|
sl@0
|
495 |
/* Test g_object_interface_find_property()
|
sl@0
|
496 |
*/
|
sl@0
|
497 |
iface_vtable = g_type_default_interface_peek (TEST_TYPE_IFACE);
|
sl@0
|
498 |
|
sl@0
|
499 |
g_assert (g_object_interface_find_property (iface_vtable, "prop1") == iface_spec1);
|
sl@0
|
500 |
g_assert (g_object_interface_find_property (iface_vtable, "prop2") == iface_spec2);
|
sl@0
|
501 |
g_assert (g_object_interface_find_property (iface_vtable, "prop3") == iface_spec3);
|
sl@0
|
502 |
|
sl@0
|
503 |
/* Test g_object_interface_list_properties()
|
sl@0
|
504 |
*/
|
sl@0
|
505 |
properties = g_object_interface_list_properties (iface_vtable, (guint *)&n_properties);
|
sl@0
|
506 |
g_assert (n_properties == 3);
|
sl@0
|
507 |
assert_in_properties (iface_spec1, properties, n_properties);
|
sl@0
|
508 |
assert_in_properties (iface_spec2, properties, n_properties);
|
sl@0
|
509 |
assert_in_properties (iface_spec3, properties, n_properties);
|
sl@0
|
510 |
g_free (properties);
|
sl@0
|
511 |
|
sl@0
|
512 |
g_object_unref (object);
|
sl@0
|
513 |
#ifdef __SYMBIAN32__
|
sl@0
|
514 |
testResultXml("ifaceproperties");
|
sl@0
|
515 |
#endif /*__SYMBIAN32__*/
|
sl@0
|
516 |
|
sl@0
|
517 |
return 0;
|
sl@0
|
518 |
}
|