Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc.
3 * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General
15 * Public License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17 * Boston, MA 02111-1307, USA.
19 * gparam.h: GParamSpec base class implementation
21 #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
22 #error "Only <glib-object.h> can be included directly."
28 #include <gobject/gvalue.h>
32 /* --- standard type macros --- */
37 * Checks whether @type "is a" %G_TYPE_PARAM.
39 #define G_TYPE_IS_PARAM(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_PARAM)
42 * @pspec: a valid #GParamSpec
44 * Casts a derived #GParamSpec object (e.g. of type #GParamSpecInt) into
45 * a #GParamSpec object.
47 #define G_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec))
50 * @pspec: a #GParamSpec
52 * Checks whether @pspec "is a" valid #GParamSpec structure of type %G_TYPE_PARAM
55 #define G_IS_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM))
58 * @pclass: a valid #GParamSpecClass
60 * Casts a derived #GParamSpecClass structure into a #GParamSpecClass structure.
62 #define G_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_CAST ((pclass), G_TYPE_PARAM, GParamSpecClass))
64 * G_IS_PARAM_SPEC_CLASS:
65 * @pclass: a #GParamSpecClass
67 * Checks whether @pclass "is a" valid #GParamSpecClass structure of type
68 * %G_TYPE_PARAM or derived.
70 #define G_IS_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_TYPE ((pclass), G_TYPE_PARAM))
72 * G_PARAM_SPEC_GET_CLASS:
73 * @pspec: a valid #GParamSpec
75 * Retrieves the #GParamSpecClass of a #GParamSpec.
77 #define G_PARAM_SPEC_GET_CLASS(pspec) (G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARAM, GParamSpecClass))
80 /* --- convenience macros --- */
83 * @pspec: a valid #GParamSpec
85 * Retrieves the #GType of this @pspec.
87 #define G_PARAM_SPEC_TYPE(pspec) (G_TYPE_FROM_INSTANCE (pspec))
89 * G_PARAM_SPEC_TYPE_NAME:
90 * @pspec: a valid #GParamSpec
92 * Retrieves the #GType name of this @pspec.
94 #define G_PARAM_SPEC_TYPE_NAME(pspec) (g_type_name (G_PARAM_SPEC_TYPE (pspec)))
96 * G_PARAM_SPEC_VALUE_TYPE:
97 * @pspec: a valid #GParamSpec
99 * Retrieves the #GType to initialize a #GValue for this parameter.
101 #define G_PARAM_SPEC_VALUE_TYPE(pspec) (G_PARAM_SPEC (pspec)->value_type)
103 * G_VALUE_HOLDS_PARAM:
104 * @value: a valid #GValue structure
106 * Checks whether the given #GValue can hold values derived from type %G_TYPE_PARAM.
108 * Returns: %TRUE on success.
110 #define G_VALUE_HOLDS_PARAM(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_PARAM))
116 * @G_PARAM_READABLE: the parameter is readable
117 * @G_PARAM_WRITABLE: the parameter is writable
118 * @G_PARAM_CONSTRUCT: the parameter will be set upon object construction
119 * @G_PARAM_CONSTRUCT_ONLY: the parameter will only be set upon object construction
120 * @G_PARAM_LAX_VALIDATION: upon parameter conversion (see g_param_value_convert())
121 * strict validation is not required
122 * @G_PARAM_STATIC_NAME: the string used as name when constructing the
123 * parameter is guaranteed to remain valid and
124 * unmodified for the lifetime of the parameter.
126 * @G_PARAM_STATIC_NICK: the string used as nick when constructing the
127 * parameter is guaranteed to remain valid and
128 * unmmodified for the lifetime of the parameter.
130 * @G_PARAM_STATIC_BLURB: the string used as blurb when constructing the
131 * parameter is guaranteed to remain valid and
132 * unmodified for the lifetime of the parameter.
134 * @G_PARAM_PRIVATE: internal
136 * Through the #GParamFlags flag values, certain aspects of parameters
141 G_PARAM_READABLE = 1 << 0,
142 G_PARAM_WRITABLE = 1 << 1,
143 G_PARAM_CONSTRUCT = 1 << 2,
144 G_PARAM_CONSTRUCT_ONLY = 1 << 3,
145 G_PARAM_LAX_VALIDATION = 1 << 4,
146 G_PARAM_STATIC_NAME = 1 << 5,
147 #ifndef G_DISABLE_DEPRECATED
148 G_PARAM_PRIVATE = G_PARAM_STATIC_NAME,
150 G_PARAM_STATIC_NICK = 1 << 6,
151 G_PARAM_STATIC_BLURB = 1 << 7
156 * #GParamFlags value alias for %G_PARAM_READABLE | %G_PARAM_WRITABLE.
158 #define G_PARAM_READWRITE (G_PARAM_READABLE | G_PARAM_WRITABLE)
160 * G_PARAM_STATIC_STRINGS:
162 * #GParamFlags value alias for %G_PARAM_STATIC_NAME | %G_PARAM_STATIC_NICK | %G_PARAM_STATIC_BLURB.
166 #define G_PARAM_STATIC_STRINGS (G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)
167 /* bits in the range 0xffffff00 are reserved for 3rd party usage */
171 * Mask containing the bits of #GParamSpec.flags which are reserved for GLib.
173 #define G_PARAM_MASK (0x000000ff)
175 * G_PARAM_USER_SHIFT:
177 * Minimum shift count to be used for user defined flags, to be stored in
180 #define G_PARAM_USER_SHIFT (8)
183 /* --- typedefs & structures --- */
184 typedef struct _GParamSpec GParamSpec;
185 typedef struct _GParamSpecClass GParamSpecClass;
186 typedef struct _GParameter GParameter;
187 typedef struct _GParamSpecPool GParamSpecPool;
190 * @g_type_instance: private #GTypeInstance portion
191 * @name: name of this parameter
192 * @flags: #GParamFlags flags for this parameter
193 * @value_type: the #GValue type for this parameter
194 * @owner_type: #GType type that uses (introduces) this paremeter
196 * All other fields of the <structname>GParamSpec</structname> struct are private and
197 * should not be used directly.
201 GTypeInstance g_type_instance;
206 GType owner_type; /* class or interface using this property */
213 guint param_id; /* sort-criteria */
217 * @g_type_class: the parent class
218 * @value_type: the #GValue type for this parameter
219 * @finalize: The instance finalization function (optional), should chain
220 * up to the finalize method of the parent class.
221 * @value_set_default: Resets a @value to the default value for this type
222 * (recommended, the default is g_value_reset()), see
223 * g_param_value_set_default().
224 * @value_validate: Ensures that the contents of @value comply with the
225 * specifications set out by this type (optional), see
226 * g_param_value_set_validate().
227 * @values_cmp: Compares @value1 with @value2 according to this type
228 * (recommended, the default is memcmp()), see g_param_values_cmp().
230 * The class structure for the <structname>GParamSpec</structname> type.
231 * Normally, <structname>GParamSpec</structname> classes are filled by
232 * g_param_type_register_static().
234 struct _GParamSpecClass
236 GTypeClass g_type_class;
240 void (*finalize) (GParamSpec *pspec);
243 void (*value_set_default) (GParamSpec *pspec,
245 gboolean (*value_validate) (GParamSpec *pspec,
247 gint (*values_cmp) (GParamSpec *pspec,
248 const GValue *value1,
249 const GValue *value2);
255 * @name: the parameter name
256 * @value: the parameter value
258 * The <structname>GParameter</structname> struct is an auxiliary structure used
259 * to hand parameter name/value pairs to g_object_newv().
261 struct _GParameter /* auxillary structure for _setv() variants */
268 /* --- prototypes --- */
269 IMPORT_C GParamSpec* g_param_spec_ref (GParamSpec *pspec);
270 IMPORT_C void g_param_spec_unref (GParamSpec *pspec);
271 IMPORT_C void g_param_spec_sink (GParamSpec *pspec);
272 IMPORT_C GParamSpec* g_param_spec_ref_sink (GParamSpec *pspec);
273 IMPORT_C gpointer g_param_spec_get_qdata (GParamSpec *pspec,
275 IMPORT_C void g_param_spec_set_qdata (GParamSpec *pspec,
278 IMPORT_C void g_param_spec_set_qdata_full (GParamSpec *pspec,
281 GDestroyNotify destroy);
282 IMPORT_C gpointer g_param_spec_steal_qdata (GParamSpec *pspec,
284 IMPORT_C GParamSpec* g_param_spec_get_redirect_target (GParamSpec *pspec);
286 IMPORT_C void g_param_value_set_default (GParamSpec *pspec,
288 IMPORT_C gboolean g_param_value_defaults (GParamSpec *pspec,
290 IMPORT_C gboolean g_param_value_validate (GParamSpec *pspec,
292 IMPORT_C gboolean g_param_value_convert (GParamSpec *pspec,
293 const GValue *src_value,
295 gboolean strict_validation);
296 IMPORT_C gint g_param_values_cmp (GParamSpec *pspec,
297 const GValue *value1,
298 const GValue *value2);
299 IMPORT_C G_CONST_RETURN gchar* g_param_spec_get_name (GParamSpec *pspec);
300 IMPORT_C G_CONST_RETURN gchar* g_param_spec_get_nick (GParamSpec *pspec);
301 IMPORT_C G_CONST_RETURN gchar* g_param_spec_get_blurb (GParamSpec *pspec);
302 IMPORT_C void g_value_set_param (GValue *value,
304 IMPORT_C GParamSpec* g_value_get_param (const GValue *value);
305 IMPORT_C GParamSpec* g_value_dup_param (const GValue *value);
308 IMPORT_C void g_value_take_param (GValue *value,
310 #ifndef G_DISABLE_DEPRECATED
311 IMPORT_C void g_value_set_param_take_ownership (GValue *value,
315 /* --- convenience functions --- */
316 typedef struct _GParamSpecTypeInfo GParamSpecTypeInfo;
318 * GParamSpecTypeInfo:
319 * @instance_size: Size of the instance (object) structure.
320 * @n_preallocs: Prior to GLib 2.10, it specified the number of pre-allocated (cached) instances to reserve memory for (0 indicates no caching). Since GLib 2.10, it is ignored, since instances are allocated with the <link linkend="glib-Memory-Slices">slice allocator</link> now.
321 * @instance_init: Location of the instance initialization function (optional).
322 * @value_type: The #GType of values conforming to this #GParamSpec
323 * @finalize: The instance finalization function (optional).
324 * @value_set_default: Resets a @value to the default value for @pspec
325 * (recommended, the default is g_value_reset()), see
326 * g_param_value_set_default().
327 * @value_validate: Ensures that the contents of @value comply with the
328 * specifications set out by @pspec (optional), see
329 * g_param_value_set_validate().
330 * @values_cmp: Compares @value1 with @value2 according to @pspec
331 * (recommended, the default is memcmp()), see g_param_values_cmp().
333 * This structure is used to provide the type system with the information
334 * required to initialize and destruct (finalize) a parameter's class and
336 * The initialized structure is passed to the g_param_type_register_static()
337 * The type system will perform a deep copy of this structure, so its memory
338 * does not need to be persistent across invocation of
339 * g_param_type_register_static().
341 struct _GParamSpecTypeInfo
343 /* type system portion */
344 guint16 instance_size; /* obligatory */
345 guint16 n_preallocs; /* optional */
346 void (*instance_init) (GParamSpec *pspec); /* optional */
349 GType value_type; /* obligatory */
350 void (*finalize) (GParamSpec *pspec); /* optional */
351 void (*value_set_default) (GParamSpec *pspec, /* recommended */
353 gboolean (*value_validate) (GParamSpec *pspec, /* optional */
355 gint (*values_cmp) (GParamSpec *pspec, /* recommended */
356 const GValue *value1,
357 const GValue *value2);
359 IMPORT_C GType g_param_type_register_static (const gchar *name,
360 const GParamSpecTypeInfo *pspec_info);
362 /* For registering builting types */
363 GType _g_param_type_register_static_constant (const gchar *name,
364 const GParamSpecTypeInfo *pspec_info,
368 /* --- protected --- */
369 IMPORT_C gpointer g_param_spec_internal (GType param_type,
374 IMPORT_C GParamSpecPool* g_param_spec_pool_new (gboolean type_prefixing);
375 IMPORT_C void g_param_spec_pool_insert (GParamSpecPool *pool,
378 IMPORT_C void g_param_spec_pool_remove (GParamSpecPool *pool,
380 IMPORT_C GParamSpec* g_param_spec_pool_lookup (GParamSpecPool *pool,
381 const gchar *param_name,
383 gboolean walk_ancestors);
384 IMPORT_C GList* g_param_spec_pool_list_owned (GParamSpecPool *pool,
386 IMPORT_C GParamSpec** g_param_spec_pool_list (GParamSpecPool *pool,
394 * gboolean value_validate (GParamSpec *pspec,
396 * modify value contents in the least destructive way, so
397 * that it complies with pspec's requirements (i.e.
398 * according to minimum/maximum ranges etc...). return
399 * whether modification was necessary.
401 * gint values_cmp (GParamSpec *pspec,
402 * const GValue *value1,
403 * const GValue *value2):
404 * return value1 - value2, i.e. (-1) if value1 < value2,
405 * (+1) if value1 > value2, and (0) otherwise (equality)
410 #endif /* __G_PARAM_H__ */