sl@0
|
1 |
/* GObject - GLib Type, Object, Parameter and Signal Library
|
sl@0
|
2 |
* Copyright (C) 1998-1999, 2000-2001 Tim Janik and 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 |
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
|
sl@0
|
20 |
#error "Only <glib-object.h> can be included directly."
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef __G_OBJECT_H__
|
sl@0
|
24 |
#define __G_OBJECT_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <gobject/gtype.h>
|
sl@0
|
27 |
#include <gobject/gvalue.h>
|
sl@0
|
28 |
#include <gobject/gparam.h>
|
sl@0
|
29 |
#include <gobject/gclosure.h>
|
sl@0
|
30 |
#include <gobject/gsignal.h>
|
sl@0
|
31 |
|
sl@0
|
32 |
G_BEGIN_DECLS
|
sl@0
|
33 |
|
sl@0
|
34 |
/* --- type macros --- */
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
* G_TYPE_IS_OBJECT:
|
sl@0
|
37 |
* @type: Type id to check
|
sl@0
|
38 |
*
|
sl@0
|
39 |
* Check if the passed in type id is a %G_TYPE_OBJECT or derived from it.
|
sl@0
|
40 |
*
|
sl@0
|
41 |
* Returns: %FALSE or %TRUE, indicating whether @type is a %G_TYPE_OBJECT.
|
sl@0
|
42 |
*/
|
sl@0
|
43 |
#define G_TYPE_IS_OBJECT(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_OBJECT)
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
* G_OBJECT:
|
sl@0
|
46 |
* @object: Object which is subject to casting.
|
sl@0
|
47 |
*
|
sl@0
|
48 |
* Casts a #GObject or derived pointer into a (GObject*) pointer.
|
sl@0
|
49 |
* Depending on the current debugging level, this function may invoke
|
sl@0
|
50 |
* certain runtime checks to identify invalid casts.
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
#define G_OBJECT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject))
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
* G_OBJECT_CLASS:
|
sl@0
|
55 |
* @class: a valid #GObjectClass
|
sl@0
|
56 |
*
|
sl@0
|
57 |
* Casts a derived #GObjectClass structure into a #GObjectClass structure.
|
sl@0
|
58 |
*/
|
sl@0
|
59 |
#define G_OBJECT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_OBJECT, GObjectClass))
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
* G_IS_OBJECT:
|
sl@0
|
62 |
* @object: Instance to check for being a %G_TYPE_OBJECT.
|
sl@0
|
63 |
*
|
sl@0
|
64 |
* Checks whether a valid #GTypeInstance pointer is of type %G_TYPE_OBJECT.
|
sl@0
|
65 |
*/
|
sl@0
|
66 |
#define G_IS_OBJECT(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_OBJECT))
|
sl@0
|
67 |
/**
|
sl@0
|
68 |
* G_IS_OBJECT_CLASS:
|
sl@0
|
69 |
* @class: a #GObjectClass
|
sl@0
|
70 |
*
|
sl@0
|
71 |
* Checks whether @class "is a" valid #GObjectClass structure of type
|
sl@0
|
72 |
* %G_TYPE_OBJECT or derived.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
#define G_IS_OBJECT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_OBJECT))
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
* G_OBJECT_GET_CLASS:
|
sl@0
|
77 |
* @object: a #GObject instance.
|
sl@0
|
78 |
*
|
sl@0
|
79 |
* Get the class structure associated to a #GObject instance.
|
sl@0
|
80 |
*
|
sl@0
|
81 |
* Returns: pointer to object class structure.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
#define G_OBJECT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_OBJECT, GObjectClass))
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
* G_OBJECT_TYPE:
|
sl@0
|
86 |
* @object: Object to return the type id for.
|
sl@0
|
87 |
*
|
sl@0
|
88 |
* Get the type id of an object.
|
sl@0
|
89 |
*
|
sl@0
|
90 |
* Returns: Type id of @object.
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
#define G_OBJECT_TYPE(object) (G_TYPE_FROM_INSTANCE (object))
|
sl@0
|
93 |
/**
|
sl@0
|
94 |
* G_OBJECT_TYPE_NAME:
|
sl@0
|
95 |
* @object: Object to return the type name for.
|
sl@0
|
96 |
*
|
sl@0
|
97 |
* Get the name of an object's type.
|
sl@0
|
98 |
*
|
sl@0
|
99 |
* Returns: Type name of @object. The string is owned by the type system and
|
sl@0
|
100 |
* should not be freed.
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
#define G_OBJECT_TYPE_NAME(object) (g_type_name (G_OBJECT_TYPE (object)))
|
sl@0
|
103 |
/**
|
sl@0
|
104 |
* G_OBJECT_CLASS_TYPE:
|
sl@0
|
105 |
* @class: a valid #GObjectClass
|
sl@0
|
106 |
*
|
sl@0
|
107 |
* Get the type id of a class structure.
|
sl@0
|
108 |
*
|
sl@0
|
109 |
* Returns: Type id of @class.
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
#define G_OBJECT_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class))
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
* G_OBJECT_CLASS_NAME:
|
sl@0
|
114 |
* @class: a valid #GObjectClass
|
sl@0
|
115 |
*
|
sl@0
|
116 |
* Return the name of a class structure's type.
|
sl@0
|
117 |
*
|
sl@0
|
118 |
* Returns: Type name of @class. The string is owned by the type system and
|
sl@0
|
119 |
* should not be freed.
|
sl@0
|
120 |
*/
|
sl@0
|
121 |
#define G_OBJECT_CLASS_NAME(class) (g_type_name (G_OBJECT_CLASS_TYPE (class)))
|
sl@0
|
122 |
/**
|
sl@0
|
123 |
* G_VALUE_HOLDS_OBJECT:
|
sl@0
|
124 |
* @value: a valid #GValue structure
|
sl@0
|
125 |
*
|
sl@0
|
126 |
* Checks whether the given #GValue can hold values derived from type %G_TYPE_OBJECT.
|
sl@0
|
127 |
*
|
sl@0
|
128 |
* Returns: %TRUE on success.
|
sl@0
|
129 |
*/
|
sl@0
|
130 |
#define G_VALUE_HOLDS_OBJECT(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_OBJECT))
|
sl@0
|
131 |
|
sl@0
|
132 |
/* --- type macros --- */
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
* G_TYPE_INITIALLY_UNOWNED:
|
sl@0
|
135 |
*
|
sl@0
|
136 |
* The type for #GInitiallyUnowned.
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
#define G_TYPE_INITIALLY_UNOWNED (g_initially_unowned_get_type())
|
sl@0
|
139 |
/**
|
sl@0
|
140 |
* G_INITIALLY_UNOWNED:
|
sl@0
|
141 |
* @object: Object which is subject to casting.
|
sl@0
|
142 |
*
|
sl@0
|
143 |
* Casts a #GInitiallyUnowned or derived pointer into a (GInitiallyUnowned*)
|
sl@0
|
144 |
* pointer. Depending on the current debugging level, this function may invoke
|
sl@0
|
145 |
* certain runtime checks to identify invalid casts.
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
#define G_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnowned))
|
sl@0
|
148 |
/**
|
sl@0
|
149 |
* G_INITIALLY_UNOWNED_CLASS:
|
sl@0
|
150 |
* @class: a valid #GInitiallyUnownedClass
|
sl@0
|
151 |
*
|
sl@0
|
152 |
* Casts a derived #GInitiallyUnownedClass structure into a
|
sl@0
|
153 |
* #GInitiallyUnownedClass structure.
|
sl@0
|
154 |
*/
|
sl@0
|
155 |
#define G_INITIALLY_UNOWNED_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnownedClass))
|
sl@0
|
156 |
/**
|
sl@0
|
157 |
* G_IS_INITIALLY_UNOWNED:
|
sl@0
|
158 |
* @object: Instance to check for being a %G_TYPE_INITIALLY_UNOWNED.
|
sl@0
|
159 |
*
|
sl@0
|
160 |
* Checks whether a valid #GTypeInstance pointer is of type %G_TYPE_INITIALLY_UNOWNED.
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
#define G_IS_INITIALLY_UNOWNED(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_INITIALLY_UNOWNED))
|
sl@0
|
163 |
/**
|
sl@0
|
164 |
* G_IS_INITIALLY_UNOWNED_CLASS:
|
sl@0
|
165 |
* @class: a #GInitiallyUnownedClass
|
sl@0
|
166 |
*
|
sl@0
|
167 |
* Checks whether @class "is a" valid #GInitiallyUnownedClass structure of type
|
sl@0
|
168 |
* %G_TYPE_INITIALLY_UNOWNED or derived.
|
sl@0
|
169 |
*/
|
sl@0
|
170 |
#define G_IS_INITIALLY_UNOWNED_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_INITIALLY_UNOWNED))
|
sl@0
|
171 |
/**
|
sl@0
|
172 |
* G_INITIALLY_UNOWNED_GET_CLASS:
|
sl@0
|
173 |
* @object: a #GInitiallyUnowned instance.
|
sl@0
|
174 |
*
|
sl@0
|
175 |
* Get the class structure associated to a #GInitiallyUnowned instance.
|
sl@0
|
176 |
*
|
sl@0
|
177 |
* Returns: pointer to object class structure.
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
#define G_INITIALLY_UNOWNED_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_INITIALLY_UNOWNED, GInitiallyUnownedClass))
|
sl@0
|
180 |
/* GInitiallyUnowned ia a GObject with initially floating reference count */
|
sl@0
|
181 |
|
sl@0
|
182 |
|
sl@0
|
183 |
/* --- typedefs & structures --- */
|
sl@0
|
184 |
typedef struct _GObject GObject;
|
sl@0
|
185 |
typedef struct _GObjectClass GObjectClass;
|
sl@0
|
186 |
typedef struct _GObject GInitiallyUnowned;
|
sl@0
|
187 |
typedef struct _GObjectClass GInitiallyUnownedClass;
|
sl@0
|
188 |
typedef struct _GObjectConstructParam GObjectConstructParam;
|
sl@0
|
189 |
/**
|
sl@0
|
190 |
* GObjectGetPropertyFunc:
|
sl@0
|
191 |
* @object: a #GObject
|
sl@0
|
192 |
* @property_id: the numeric id under which the property was registered with
|
sl@0
|
193 |
* g_object_class_install_property().
|
sl@0
|
194 |
* @value: a #GValue to return the property value in
|
sl@0
|
195 |
* @pspec: the #GParamSpec describing the property
|
sl@0
|
196 |
*
|
sl@0
|
197 |
* The type of the @get_property function of #GObjectClass.
|
sl@0
|
198 |
*/
|
sl@0
|
199 |
typedef void (*GObjectGetPropertyFunc) (GObject *object,
|
sl@0
|
200 |
guint property_id,
|
sl@0
|
201 |
GValue *value,
|
sl@0
|
202 |
GParamSpec *pspec);
|
sl@0
|
203 |
/**
|
sl@0
|
204 |
* GObjectSetPropertyFunc:
|
sl@0
|
205 |
* @object: a #GObject
|
sl@0
|
206 |
* @property_id: the numeric id under which the property was registered with
|
sl@0
|
207 |
* g_object_class_install_property().
|
sl@0
|
208 |
* @value: the new value for the property
|
sl@0
|
209 |
* @pspec: the #GParamSpec describing the property
|
sl@0
|
210 |
*
|
sl@0
|
211 |
* The type of the @set_property function of #GObjectClass.
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
typedef void (*GObjectSetPropertyFunc) (GObject *object,
|
sl@0
|
214 |
guint property_id,
|
sl@0
|
215 |
const GValue *value,
|
sl@0
|
216 |
GParamSpec *pspec);
|
sl@0
|
217 |
/**
|
sl@0
|
218 |
* GObjectFinalizeFunc:
|
sl@0
|
219 |
* @object: the #GObject being finalized
|
sl@0
|
220 |
*
|
sl@0
|
221 |
* The type of the @finalize function of #GObjectClass.
|
sl@0
|
222 |
*/
|
sl@0
|
223 |
typedef void (*GObjectFinalizeFunc) (GObject *object);
|
sl@0
|
224 |
/**
|
sl@0
|
225 |
* GWeakNotify:
|
sl@0
|
226 |
* @data: data that was provided when the weak reference was established
|
sl@0
|
227 |
* @where_the_object_was: the object being finalized
|
sl@0
|
228 |
*
|
sl@0
|
229 |
* A #GWeakNotify function can be added to an object as a callback that gets
|
sl@0
|
230 |
* triggered when the object is finalized. Since the object is already being
|
sl@0
|
231 |
* finalized when the #GWeakNotify is called, there's not much you could do
|
sl@0
|
232 |
* with the object, apart from e.g. using its adress as hash-index or the like.
|
sl@0
|
233 |
*/
|
sl@0
|
234 |
typedef void (*GWeakNotify) (gpointer data,
|
sl@0
|
235 |
GObject *where_the_object_was);
|
sl@0
|
236 |
/**
|
sl@0
|
237 |
* GObject:
|
sl@0
|
238 |
*
|
sl@0
|
239 |
* All the fields in the <structname>GObject</structname> structure are private
|
sl@0
|
240 |
* to the #GObject implementation and should never be accessed directly.
|
sl@0
|
241 |
*/
|
sl@0
|
242 |
struct _GObject
|
sl@0
|
243 |
{
|
sl@0
|
244 |
GTypeInstance g_type_instance;
|
sl@0
|
245 |
|
sl@0
|
246 |
/*< private >*/
|
sl@0
|
247 |
volatile guint ref_count;
|
sl@0
|
248 |
GData *qdata;
|
sl@0
|
249 |
};
|
sl@0
|
250 |
/**
|
sl@0
|
251 |
* GObjectClass:
|
sl@0
|
252 |
* @g_type_class: the parent class
|
sl@0
|
253 |
* @constructor: the @constructor function is called by g_object_new () to
|
sl@0
|
254 |
* complete the object initialization after all the construction properties are
|
sl@0
|
255 |
* set. The first thing a @constructor implementation must do is chain up to the
|
sl@0
|
256 |
* @constructor of the parent class. Overriding @constructor should be rarely
|
sl@0
|
257 |
* needed, e.g. to handle construct properties, or to implement singletons.
|
sl@0
|
258 |
* @set_property: the generic setter for all properties of this type. Should be
|
sl@0
|
259 |
* overridden for every type with properties. Implementations of @set_property
|
sl@0
|
260 |
* don't need to emit property change notification explicitly, this is handled
|
sl@0
|
261 |
* by the type system.
|
sl@0
|
262 |
* @get_property: the generic getter for all properties of this type. Should be
|
sl@0
|
263 |
* overridden for every type with properties.
|
sl@0
|
264 |
* @dispose: the @dispose function is supposed to drop all references to other
|
sl@0
|
265 |
* objects, but keep the instance otherwise intact, so that client method
|
sl@0
|
266 |
* invocations still work. It may be run multiple times (due to reference
|
sl@0
|
267 |
* loops). Before returning, @dispose should chain up to the @dispose method
|
sl@0
|
268 |
* of the parent class.
|
sl@0
|
269 |
* @finalize: instance finalization function, should finish the finalization of
|
sl@0
|
270 |
* the instance begun in @dispose and chain up to the @finalize method of the
|
sl@0
|
271 |
* parent class.
|
sl@0
|
272 |
* @dispatch_properties_changed: emits property change notification for a bunch
|
sl@0
|
273 |
* of properties. Overriding @dispatch_properties_changed should be rarely
|
sl@0
|
274 |
* needed.
|
sl@0
|
275 |
* @notify: the class closure for the notify signal
|
sl@0
|
276 |
* @constructed: the @constructed function is called by g_object_new() as the
|
sl@0
|
277 |
* final step of the object creation process. At the point of the call, all
|
sl@0
|
278 |
* construction properties have been set on the object. The purpose of this
|
sl@0
|
279 |
* call is to allow for object initialisation steps that can only be performed
|
sl@0
|
280 |
* after construction properties have been set. @constructed implementors
|
sl@0
|
281 |
* should chain up to the @constructed call of their parent class to allow it
|
sl@0
|
282 |
* to complete its initialisation.
|
sl@0
|
283 |
*
|
sl@0
|
284 |
* The class structure for the <structname>GObject</structname> type.
|
sl@0
|
285 |
*
|
sl@0
|
286 |
* <example>
|
sl@0
|
287 |
* <title>Implementing singletons using a constructor</title>
|
sl@0
|
288 |
* <programlisting>
|
sl@0
|
289 |
* static MySingleton *the_singleton = NULL;
|
sl@0
|
290 |
*
|
sl@0
|
291 |
* static GObject*
|
sl@0
|
292 |
* my_singleton_constructor (GType type,
|
sl@0
|
293 |
* guint n_construct_params,
|
sl@0
|
294 |
* GObjectConstructParam *construct_params)
|
sl@0
|
295 |
* {
|
sl@0
|
296 |
* GObject *object;
|
sl@0
|
297 |
*
|
sl@0
|
298 |
* if (!the_singleton)
|
sl@0
|
299 |
* {
|
sl@0
|
300 |
* object = G_OBJECT_CLASS (parent_class)->constructor (type,
|
sl@0
|
301 |
* n_construct_params,
|
sl@0
|
302 |
* construct_params);
|
sl@0
|
303 |
* the_singleton = MY_SINGLETON (object);
|
sl@0
|
304 |
* }
|
sl@0
|
305 |
* else
|
sl@0
|
306 |
* object = g_object_ref (G_OBJECT (the_singleton));
|
sl@0
|
307 |
*
|
sl@0
|
308 |
* return object;
|
sl@0
|
309 |
* }
|
sl@0
|
310 |
* </programlisting></example>
|
sl@0
|
311 |
*/
|
sl@0
|
312 |
struct _GObjectClass
|
sl@0
|
313 |
{
|
sl@0
|
314 |
GTypeClass g_type_class;
|
sl@0
|
315 |
|
sl@0
|
316 |
/*< private >*/
|
sl@0
|
317 |
GSList *construct_properties;
|
sl@0
|
318 |
|
sl@0
|
319 |
/*< public >*/
|
sl@0
|
320 |
/* seldomly overidden */
|
sl@0
|
321 |
GObject* (*constructor) (GType type,
|
sl@0
|
322 |
guint n_construct_properties,
|
sl@0
|
323 |
GObjectConstructParam *construct_properties);
|
sl@0
|
324 |
/* overridable methods */
|
sl@0
|
325 |
void (*set_property) (GObject *object,
|
sl@0
|
326 |
guint property_id,
|
sl@0
|
327 |
const GValue *value,
|
sl@0
|
328 |
GParamSpec *pspec);
|
sl@0
|
329 |
void (*get_property) (GObject *object,
|
sl@0
|
330 |
guint property_id,
|
sl@0
|
331 |
GValue *value,
|
sl@0
|
332 |
GParamSpec *pspec);
|
sl@0
|
333 |
void (*dispose) (GObject *object);
|
sl@0
|
334 |
void (*finalize) (GObject *object);
|
sl@0
|
335 |
/* seldomly overidden */
|
sl@0
|
336 |
void (*dispatch_properties_changed) (GObject *object,
|
sl@0
|
337 |
guint n_pspecs,
|
sl@0
|
338 |
GParamSpec **pspecs);
|
sl@0
|
339 |
/* signals */
|
sl@0
|
340 |
void (*notify) (GObject *object,
|
sl@0
|
341 |
GParamSpec *pspec);
|
sl@0
|
342 |
|
sl@0
|
343 |
/* called when done constructing */
|
sl@0
|
344 |
void (*constructed) (GObject *object);
|
sl@0
|
345 |
|
sl@0
|
346 |
/*< private >*/
|
sl@0
|
347 |
/* padding */
|
sl@0
|
348 |
gpointer pdummy[7];
|
sl@0
|
349 |
};
|
sl@0
|
350 |
/**
|
sl@0
|
351 |
* GObjectConstructParam:
|
sl@0
|
352 |
* @pspec: the #GParamSpec of the construct parameter
|
sl@0
|
353 |
* @value: the value to set the parameter to
|
sl@0
|
354 |
*
|
sl@0
|
355 |
* The <structname>GObjectConstructParam</structname> struct is an auxiliary
|
sl@0
|
356 |
* structure used to hand #GParamSpec/#GValue pairs to the @constructor of
|
sl@0
|
357 |
* a #GObjectClass.
|
sl@0
|
358 |
*/
|
sl@0
|
359 |
struct _GObjectConstructParam
|
sl@0
|
360 |
{
|
sl@0
|
361 |
GParamSpec *pspec;
|
sl@0
|
362 |
GValue *value;
|
sl@0
|
363 |
};
|
sl@0
|
364 |
|
sl@0
|
365 |
/**
|
sl@0
|
366 |
* GInitiallyUnowned:
|
sl@0
|
367 |
*
|
sl@0
|
368 |
* All the fields in the <structname>GInitiallyUnowned</structname> structure
|
sl@0
|
369 |
* are private to the #GInitiallyUnowned implementation and should never be
|
sl@0
|
370 |
* accessed directly.
|
sl@0
|
371 |
*/
|
sl@0
|
372 |
/**
|
sl@0
|
373 |
* GInitiallyUnownedClass:
|
sl@0
|
374 |
*
|
sl@0
|
375 |
* The class structure for the <structname>GInitiallyUnowned</structname> type.
|
sl@0
|
376 |
*/
|
sl@0
|
377 |
|
sl@0
|
378 |
|
sl@0
|
379 |
/* --- prototypes --- */
|
sl@0
|
380 |
IMPORT_C GType g_initially_unowned_get_type (void);
|
sl@0
|
381 |
IMPORT_C void g_object_class_install_property (GObjectClass *oclass,
|
sl@0
|
382 |
guint property_id,
|
sl@0
|
383 |
GParamSpec *pspec);
|
sl@0
|
384 |
IMPORT_C GParamSpec* g_object_class_find_property (GObjectClass *oclass,
|
sl@0
|
385 |
const gchar *property_name);
|
sl@0
|
386 |
IMPORT_C GParamSpec**g_object_class_list_properties (GObjectClass *oclass,
|
sl@0
|
387 |
guint *n_properties);
|
sl@0
|
388 |
IMPORT_C void g_object_class_override_property (GObjectClass *oclass,
|
sl@0
|
389 |
guint property_id,
|
sl@0
|
390 |
const gchar *name);
|
sl@0
|
391 |
|
sl@0
|
392 |
IMPORT_C void g_object_interface_install_property (gpointer g_iface,
|
sl@0
|
393 |
GParamSpec *pspec);
|
sl@0
|
394 |
IMPORT_C GParamSpec* g_object_interface_find_property (gpointer g_iface,
|
sl@0
|
395 |
const gchar *property_name);
|
sl@0
|
396 |
IMPORT_C GParamSpec**g_object_interface_list_properties (gpointer g_iface,
|
sl@0
|
397 |
guint *n_properties_p);
|
sl@0
|
398 |
|
sl@0
|
399 |
IMPORT_C GType g_object_get_type (void) G_GNUC_CONST;
|
sl@0
|
400 |
IMPORT_C gpointer g_object_new (GType object_type,
|
sl@0
|
401 |
const gchar *first_property_name,
|
sl@0
|
402 |
...);
|
sl@0
|
403 |
IMPORT_C gpointer g_object_newv (GType object_type,
|
sl@0
|
404 |
guint n_parameters,
|
sl@0
|
405 |
GParameter *parameters);
|
sl@0
|
406 |
IMPORT_C GObject* g_object_new_valist (GType object_type,
|
sl@0
|
407 |
const gchar *first_property_name,
|
sl@0
|
408 |
va_list var_args);
|
sl@0
|
409 |
IMPORT_C void g_object_set (gpointer object,
|
sl@0
|
410 |
const gchar *first_property_name,
|
sl@0
|
411 |
...) G_GNUC_NULL_TERMINATED;
|
sl@0
|
412 |
IMPORT_C void g_object_get (gpointer object,
|
sl@0
|
413 |
const gchar *first_property_name,
|
sl@0
|
414 |
...) G_GNUC_NULL_TERMINATED;
|
sl@0
|
415 |
IMPORT_C gpointer g_object_connect (gpointer object,
|
sl@0
|
416 |
const gchar *signal_spec,
|
sl@0
|
417 |
...) G_GNUC_NULL_TERMINATED;
|
sl@0
|
418 |
IMPORT_C void g_object_disconnect (gpointer object,
|
sl@0
|
419 |
const gchar *signal_spec,
|
sl@0
|
420 |
...) G_GNUC_NULL_TERMINATED;
|
sl@0
|
421 |
IMPORT_C void g_object_set_valist (GObject *object,
|
sl@0
|
422 |
const gchar *first_property_name,
|
sl@0
|
423 |
va_list var_args);
|
sl@0
|
424 |
IMPORT_C void g_object_get_valist (GObject *object,
|
sl@0
|
425 |
const gchar *first_property_name,
|
sl@0
|
426 |
va_list var_args);
|
sl@0
|
427 |
IMPORT_C void g_object_set_property (GObject *object,
|
sl@0
|
428 |
const gchar *property_name,
|
sl@0
|
429 |
const GValue *value);
|
sl@0
|
430 |
IMPORT_C void g_object_get_property (GObject *object,
|
sl@0
|
431 |
const gchar *property_name,
|
sl@0
|
432 |
GValue *value);
|
sl@0
|
433 |
IMPORT_C void g_object_freeze_notify (GObject *object);
|
sl@0
|
434 |
IMPORT_C void g_object_notify (GObject *object,
|
sl@0
|
435 |
const gchar *property_name);
|
sl@0
|
436 |
IMPORT_C void g_object_thaw_notify (GObject *object);
|
sl@0
|
437 |
IMPORT_C gboolean g_object_is_floating (gpointer object);
|
sl@0
|
438 |
IMPORT_C gpointer g_object_ref_sink (gpointer object);
|
sl@0
|
439 |
IMPORT_C gpointer g_object_ref (gpointer object);
|
sl@0
|
440 |
IMPORT_C void g_object_unref (gpointer object);
|
sl@0
|
441 |
IMPORT_C void g_object_weak_ref (GObject *object,
|
sl@0
|
442 |
GWeakNotify notify,
|
sl@0
|
443 |
gpointer data);
|
sl@0
|
444 |
IMPORT_C void g_object_weak_unref (GObject *object,
|
sl@0
|
445 |
GWeakNotify notify,
|
sl@0
|
446 |
gpointer data);
|
sl@0
|
447 |
IMPORT_C void g_object_add_weak_pointer (GObject *object,
|
sl@0
|
448 |
gpointer *weak_pointer_location);
|
sl@0
|
449 |
IMPORT_C void g_object_remove_weak_pointer (GObject *object,
|
sl@0
|
450 |
gpointer *weak_pointer_location);
|
sl@0
|
451 |
|
sl@0
|
452 |
/**
|
sl@0
|
453 |
* GToggleNotify:
|
sl@0
|
454 |
* @data: Callback data passed to g_object_add_toggle_ref()
|
sl@0
|
455 |
* @object: The object on which g_object_add_toggle_ref() was called.
|
sl@0
|
456 |
* @is_last_ref: %TRUE if the toggle reference is now the
|
sl@0
|
457 |
* last reference to the object. %FALSE if the toggle
|
sl@0
|
458 |
* reference was the last reference and there are now other
|
sl@0
|
459 |
* references.
|
sl@0
|
460 |
*
|
sl@0
|
461 |
* A callback function used for notification when the state
|
sl@0
|
462 |
* of a toggle reference changes. See g_object_add_toggle_ref().
|
sl@0
|
463 |
*/
|
sl@0
|
464 |
typedef void (*GToggleNotify) (gpointer data,
|
sl@0
|
465 |
GObject *object,
|
sl@0
|
466 |
gboolean is_last_ref);
|
sl@0
|
467 |
|
sl@0
|
468 |
IMPORT_C void g_object_add_toggle_ref (GObject *object,
|
sl@0
|
469 |
GToggleNotify notify,
|
sl@0
|
470 |
gpointer data);
|
sl@0
|
471 |
IMPORT_C void g_object_remove_toggle_ref (GObject *object,
|
sl@0
|
472 |
GToggleNotify notify,
|
sl@0
|
473 |
gpointer data);
|
sl@0
|
474 |
|
sl@0
|
475 |
IMPORT_C gpointer g_object_get_qdata (GObject *object,
|
sl@0
|
476 |
GQuark quark);
|
sl@0
|
477 |
IMPORT_C void g_object_set_qdata (GObject *object,
|
sl@0
|
478 |
GQuark quark,
|
sl@0
|
479 |
gpointer data);
|
sl@0
|
480 |
IMPORT_C void g_object_set_qdata_full (GObject *object,
|
sl@0
|
481 |
GQuark quark,
|
sl@0
|
482 |
gpointer data,
|
sl@0
|
483 |
GDestroyNotify destroy);
|
sl@0
|
484 |
IMPORT_C gpointer g_object_steal_qdata (GObject *object,
|
sl@0
|
485 |
GQuark quark);
|
sl@0
|
486 |
IMPORT_C gpointer g_object_get_data (GObject *object,
|
sl@0
|
487 |
const gchar *key);
|
sl@0
|
488 |
IMPORT_C void g_object_set_data (GObject *object,
|
sl@0
|
489 |
const gchar *key,
|
sl@0
|
490 |
gpointer data);
|
sl@0
|
491 |
IMPORT_C void g_object_set_data_full (GObject *object,
|
sl@0
|
492 |
const gchar *key,
|
sl@0
|
493 |
gpointer data,
|
sl@0
|
494 |
GDestroyNotify destroy);
|
sl@0
|
495 |
IMPORT_C gpointer g_object_steal_data (GObject *object,
|
sl@0
|
496 |
const gchar *key);
|
sl@0
|
497 |
IMPORT_C void g_object_watch_closure (GObject *object,
|
sl@0
|
498 |
GClosure *closure);
|
sl@0
|
499 |
IMPORT_C GClosure* g_cclosure_new_object (GCallback callback_func,
|
sl@0
|
500 |
GObject *object);
|
sl@0
|
501 |
IMPORT_C GClosure* g_cclosure_new_object_swap (GCallback callback_func,
|
sl@0
|
502 |
GObject *object);
|
sl@0
|
503 |
IMPORT_C GClosure* g_closure_new_object (guint sizeof_closure,
|
sl@0
|
504 |
GObject *object);
|
sl@0
|
505 |
IMPORT_C void g_value_set_object (GValue *value,
|
sl@0
|
506 |
gpointer v_object);
|
sl@0
|
507 |
IMPORT_C gpointer g_value_get_object (const GValue *value);
|
sl@0
|
508 |
IMPORT_C gpointer g_value_dup_object (const GValue *value);
|
sl@0
|
509 |
IMPORT_C gulong g_signal_connect_object (gpointer instance,
|
sl@0
|
510 |
const gchar *detailed_signal,
|
sl@0
|
511 |
GCallback c_handler,
|
sl@0
|
512 |
gpointer gobject,
|
sl@0
|
513 |
GConnectFlags connect_flags);
|
sl@0
|
514 |
|
sl@0
|
515 |
/*< protected >*/
|
sl@0
|
516 |
IMPORT_C void g_object_force_floating (GObject *object);
|
sl@0
|
517 |
IMPORT_C void g_object_run_dispose (GObject *object);
|
sl@0
|
518 |
|
sl@0
|
519 |
|
sl@0
|
520 |
IMPORT_C void g_value_take_object (GValue *value,
|
sl@0
|
521 |
gpointer v_object);
|
sl@0
|
522 |
#ifndef G_DISABLE_DEPRECATED
|
sl@0
|
523 |
IMPORT_C void g_value_set_object_take_ownership (GValue *value,
|
sl@0
|
524 |
gpointer v_object);
|
sl@0
|
525 |
#endif
|
sl@0
|
526 |
|
sl@0
|
527 |
#if !defined(G_DISABLE_DEPRECATED) || defined(GTK_COMPILATION)
|
sl@0
|
528 |
IMPORT_C gsize g_object_compat_control (gsize what,
|
sl@0
|
529 |
gpointer data);
|
sl@0
|
530 |
#endif
|
sl@0
|
531 |
|
sl@0
|
532 |
/* --- implementation macros --- */
|
sl@0
|
533 |
#define G_OBJECT_WARN_INVALID_PSPEC(object, pname, property_id, pspec) \
|
sl@0
|
534 |
G_STMT_START { \
|
sl@0
|
535 |
GObject *_object = (GObject*) (object); \
|
sl@0
|
536 |
GParamSpec *_pspec = (GParamSpec*) (pspec); \
|
sl@0
|
537 |
guint _property_id = (property_id); \
|
sl@0
|
538 |
g_warning ("%s: invalid %s id %u for \"%s\" of type `%s' in `%s'", \
|
sl@0
|
539 |
G_STRLOC, \
|
sl@0
|
540 |
(pname), \
|
sl@0
|
541 |
_property_id, \
|
sl@0
|
542 |
_pspec->name, \
|
sl@0
|
543 |
g_type_name (G_PARAM_SPEC_TYPE (_pspec)), \
|
sl@0
|
544 |
G_OBJECT_TYPE_NAME (_object)); \
|
sl@0
|
545 |
} G_STMT_END
|
sl@0
|
546 |
/**
|
sl@0
|
547 |
* G_OBJECT_WARN_INVALID_PROPERTY_ID:
|
sl@0
|
548 |
* @object: the #GObject on which set_property() or get_property() was called
|
sl@0
|
549 |
* @property_id: the numeric id of the property
|
sl@0
|
550 |
* @pspec: the #GParamSpec of the property
|
sl@0
|
551 |
*
|
sl@0
|
552 |
* This macro should be used to emit a standard warning about unexpected
|
sl@0
|
553 |
* properties in set_property() and get_property() implementations.
|
sl@0
|
554 |
*/
|
sl@0
|
555 |
#define G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec) \
|
sl@0
|
556 |
G_OBJECT_WARN_INVALID_PSPEC ((object), "property", (property_id), (pspec))
|
sl@0
|
557 |
|
sl@0
|
558 |
G_END_DECLS
|
sl@0
|
559 |
|
sl@0
|
560 |
#endif /* __G_OBJECT_H__ */
|