all: remove use of 'register' keyword
[glib.git] / gobject / gparam.h
blobd0191edae4712343240688d91cea13859628db0e
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc.
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, see <http://www.gnu.org/licenses/>.
17 * gparam.h: GParamSpec base class implementation
19 #ifndef __G_PARAM_H__
20 #define __G_PARAM_H__
22 #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
23 #error "Only <glib-object.h> can be included directly."
24 #endif
26 #include <gobject/gvalue.h>
28 G_BEGIN_DECLS
30 /* --- standard type macros --- */
31 /**
32 * G_TYPE_IS_PARAM:
33 * @type: a #GType ID
35 * Checks whether @type "is a" %G_TYPE_PARAM.
37 #define G_TYPE_IS_PARAM(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_PARAM)
38 /**
39 * G_PARAM_SPEC:
40 * @pspec: a valid #GParamSpec
42 * Casts a derived #GParamSpec object (e.g. of type #GParamSpecInt) into
43 * a #GParamSpec object.
45 #define G_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec))
46 /**
47 * G_IS_PARAM_SPEC:
48 * @pspec: a #GParamSpec
50 * Checks whether @pspec "is a" valid #GParamSpec structure of type %G_TYPE_PARAM
51 * or derived.
53 #if GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_42
54 #define G_IS_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_FUNDAMENTAL_TYPE ((pspec), G_TYPE_PARAM))
55 #else
56 #define G_IS_PARAM_SPEC(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM))
57 #endif
58 /**
59 * G_PARAM_SPEC_CLASS:
60 * @pclass: a valid #GParamSpecClass
62 * Casts a derived #GParamSpecClass structure into a #GParamSpecClass structure.
64 #define G_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_CAST ((pclass), G_TYPE_PARAM, GParamSpecClass))
65 /**
66 * G_IS_PARAM_SPEC_CLASS:
67 * @pclass: a #GParamSpecClass
69 * Checks whether @pclass "is a" valid #GParamSpecClass structure of type
70 * %G_TYPE_PARAM or derived.
72 #define G_IS_PARAM_SPEC_CLASS(pclass) (G_TYPE_CHECK_CLASS_TYPE ((pclass), G_TYPE_PARAM))
73 /**
74 * G_PARAM_SPEC_GET_CLASS:
75 * @pspec: a valid #GParamSpec
77 * Retrieves the #GParamSpecClass of a #GParamSpec.
79 #define G_PARAM_SPEC_GET_CLASS(pspec) (G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARAM, GParamSpecClass))
82 /* --- convenience macros --- */
83 /**
84 * G_PARAM_SPEC_TYPE:
85 * @pspec: a valid #GParamSpec
87 * Retrieves the #GType of this @pspec.
89 #define G_PARAM_SPEC_TYPE(pspec) (G_TYPE_FROM_INSTANCE (pspec))
90 /**
91 * G_PARAM_SPEC_TYPE_NAME:
92 * @pspec: a valid #GParamSpec
94 * Retrieves the #GType name of this @pspec.
96 #define G_PARAM_SPEC_TYPE_NAME(pspec) (g_type_name (G_PARAM_SPEC_TYPE (pspec)))
97 /**
98 * G_PARAM_SPEC_VALUE_TYPE:
99 * @pspec: a valid #GParamSpec
101 * Retrieves the #GType to initialize a #GValue for this parameter.
103 #define G_PARAM_SPEC_VALUE_TYPE(pspec) (G_PARAM_SPEC (pspec)->value_type)
105 * G_VALUE_HOLDS_PARAM:
106 * @value: a valid #GValue structure
108 * Checks whether the given #GValue can hold values derived from type %G_TYPE_PARAM.
110 * Returns: %TRUE on success.
112 #define G_VALUE_HOLDS_PARAM(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_PARAM))
115 /* --- flags --- */
117 * GParamFlags:
118 * @G_PARAM_READABLE: the parameter is readable
119 * @G_PARAM_WRITABLE: the parameter is writable
120 * @G_PARAM_READWRITE: alias for %G_PARAM_READABLE | %G_PARAM_WRITABLE
121 * @G_PARAM_CONSTRUCT: the parameter will be set upon object construction
122 * @G_PARAM_CONSTRUCT_ONLY: the parameter will only be set upon object construction
123 * @G_PARAM_LAX_VALIDATION: upon parameter conversion (see g_param_value_convert())
124 * strict validation is not required
125 * @G_PARAM_STATIC_NAME: the string used as name when constructing the
126 * parameter is guaranteed to remain valid and
127 * unmodified for the lifetime of the parameter.
128 * Since 2.8
129 * @G_PARAM_STATIC_NICK: the string used as nick when constructing the
130 * parameter is guaranteed to remain valid and
131 * unmmodified for the lifetime of the parameter.
132 * Since 2.8
133 * @G_PARAM_STATIC_BLURB: the string used as blurb when constructing the
134 * parameter is guaranteed to remain valid and
135 * unmodified for the lifetime of the parameter.
136 * Since 2.8
137 * @G_PARAM_EXPLICIT_NOTIFY: calls to g_object_set_property() for this
138 * property will not automatically result in a "notify" signal being
139 * emitted: the implementation must call g_object_notify() themselves
140 * in case the property actually changes. Since: 2.42.
141 * @G_PARAM_PRIVATE: internal
142 * @G_PARAM_DEPRECATED: the parameter is deprecated and will be removed
143 * in a future version. A warning will be generated if it is used
144 * while running with G_ENABLE_DIAGNOSTIC=1.
145 * Since 2.26
147 * Through the #GParamFlags flag values, certain aspects of parameters
148 * can be configured. See also #G_PARAM_READWRITE and #G_PARAM_STATIC_STRINGS.
150 typedef enum
152 G_PARAM_READABLE = 1 << 0,
153 G_PARAM_WRITABLE = 1 << 1,
154 G_PARAM_READWRITE = (G_PARAM_READABLE | G_PARAM_WRITABLE),
155 G_PARAM_CONSTRUCT = 1 << 2,
156 G_PARAM_CONSTRUCT_ONLY = 1 << 3,
157 G_PARAM_LAX_VALIDATION = 1 << 4,
158 G_PARAM_STATIC_NAME = 1 << 5,
159 #ifndef G_DISABLE_DEPRECATED
160 G_PARAM_PRIVATE = G_PARAM_STATIC_NAME,
161 #endif
162 G_PARAM_STATIC_NICK = 1 << 6,
163 G_PARAM_STATIC_BLURB = 1 << 7,
164 /* User defined flags go here */
165 G_PARAM_EXPLICIT_NOTIFY = 1 << 30,
166 G_PARAM_DEPRECATED = 1 << 31
167 } GParamFlags;
169 * G_PARAM_STATIC_STRINGS:
171 * #GParamFlags value alias for %G_PARAM_STATIC_NAME | %G_PARAM_STATIC_NICK | %G_PARAM_STATIC_BLURB.
173 * Since 2.13.0
175 #define G_PARAM_STATIC_STRINGS (G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)
176 /* bits in the range 0xffffff00 are reserved for 3rd party usage */
178 * G_PARAM_MASK:
180 * Mask containing the bits of #GParamSpec.flags which are reserved for GLib.
182 #define G_PARAM_MASK (0x000000ff)
184 * G_PARAM_USER_SHIFT:
186 * Minimum shift count to be used for user defined flags, to be stored in
187 * #GParamSpec.flags. The maximum allowed is 10.
189 #define G_PARAM_USER_SHIFT (8)
191 /* --- typedefs & structures --- */
192 typedef struct _GParamSpec GParamSpec;
193 typedef struct _GParamSpecClass GParamSpecClass;
194 typedef struct _GParameter GParameter;
195 typedef struct _GParamSpecPool GParamSpecPool;
197 * GParamSpec:
198 * @g_type_instance: private #GTypeInstance portion
199 * @name: name of this parameter: always an interned string
200 * @flags: #GParamFlags flags for this parameter
201 * @value_type: the #GValue type for this parameter
202 * @owner_type: #GType type that uses (introduces) this parameter
204 * All other fields of the GParamSpec struct are private and
205 * should not be used directly.
207 struct _GParamSpec
209 GTypeInstance g_type_instance;
211 const gchar *name; /* interned string */
212 GParamFlags flags;
213 GType value_type;
214 GType owner_type; /* class or interface using this property */
216 /*< private >*/
217 gchar *_nick;
218 gchar *_blurb;
219 GData *qdata;
220 guint ref_count;
221 guint param_id; /* sort-criteria */
224 * GParamSpecClass:
225 * @g_type_class: the parent class
226 * @value_type: the #GValue type for this parameter
227 * @finalize: The instance finalization function (optional), should chain
228 * up to the finalize method of the parent class.
229 * @value_set_default: Resets a @value to the default value for this type
230 * (recommended, the default is g_value_reset()), see
231 * g_param_value_set_default().
232 * @value_validate: Ensures that the contents of @value comply with the
233 * specifications set out by this type (optional), see
234 * g_param_value_validate().
235 * @values_cmp: Compares @value1 with @value2 according to this type
236 * (recommended, the default is memcmp()), see g_param_values_cmp().
238 * The class structure for the GParamSpec type.
239 * Normally, GParamSpec classes are filled by
240 * g_param_type_register_static().
242 struct _GParamSpecClass
244 GTypeClass g_type_class;
246 GType value_type;
248 void (*finalize) (GParamSpec *pspec);
250 /* GParam methods */
251 void (*value_set_default) (GParamSpec *pspec,
252 GValue *value);
253 gboolean (*value_validate) (GParamSpec *pspec,
254 GValue *value);
255 gint (*values_cmp) (GParamSpec *pspec,
256 const GValue *value1,
257 const GValue *value2);
258 /*< private >*/
259 gpointer dummy[4];
262 * GParameter:
263 * @name: the parameter name
264 * @value: the parameter value
266 * The GParameter struct is an auxiliary structure used
267 * to hand parameter name/value pairs to g_object_newv().
269 struct _GParameter /* auxiliary structure for _setv() variants */
271 const gchar *name;
272 GValue value;
276 /* --- prototypes --- */
277 GLIB_AVAILABLE_IN_ALL
278 GParamSpec* g_param_spec_ref (GParamSpec *pspec);
279 GLIB_AVAILABLE_IN_ALL
280 void g_param_spec_unref (GParamSpec *pspec);
281 GLIB_AVAILABLE_IN_ALL
282 void g_param_spec_sink (GParamSpec *pspec);
283 GLIB_AVAILABLE_IN_ALL
284 GParamSpec* g_param_spec_ref_sink (GParamSpec *pspec);
285 GLIB_AVAILABLE_IN_ALL
286 gpointer g_param_spec_get_qdata (GParamSpec *pspec,
287 GQuark quark);
288 GLIB_AVAILABLE_IN_ALL
289 void g_param_spec_set_qdata (GParamSpec *pspec,
290 GQuark quark,
291 gpointer data);
292 GLIB_AVAILABLE_IN_ALL
293 void g_param_spec_set_qdata_full (GParamSpec *pspec,
294 GQuark quark,
295 gpointer data,
296 GDestroyNotify destroy);
297 GLIB_AVAILABLE_IN_ALL
298 gpointer g_param_spec_steal_qdata (GParamSpec *pspec,
299 GQuark quark);
300 GLIB_AVAILABLE_IN_ALL
301 GParamSpec* g_param_spec_get_redirect_target (GParamSpec *pspec);
303 GLIB_AVAILABLE_IN_ALL
304 void g_param_value_set_default (GParamSpec *pspec,
305 GValue *value);
306 GLIB_AVAILABLE_IN_ALL
307 gboolean g_param_value_defaults (GParamSpec *pspec,
308 GValue *value);
309 GLIB_AVAILABLE_IN_ALL
310 gboolean g_param_value_validate (GParamSpec *pspec,
311 GValue *value);
312 GLIB_AVAILABLE_IN_ALL
313 gboolean g_param_value_convert (GParamSpec *pspec,
314 const GValue *src_value,
315 GValue *dest_value,
316 gboolean strict_validation);
317 GLIB_AVAILABLE_IN_ALL
318 gint g_param_values_cmp (GParamSpec *pspec,
319 const GValue *value1,
320 const GValue *value2);
321 GLIB_AVAILABLE_IN_ALL
322 const gchar * g_param_spec_get_name (GParamSpec *pspec);
323 GLIB_AVAILABLE_IN_ALL
324 const gchar * g_param_spec_get_nick (GParamSpec *pspec);
325 GLIB_AVAILABLE_IN_ALL
326 const gchar * g_param_spec_get_blurb (GParamSpec *pspec);
327 GLIB_AVAILABLE_IN_ALL
328 void g_value_set_param (GValue *value,
329 GParamSpec *param);
330 GLIB_AVAILABLE_IN_ALL
331 GParamSpec* g_value_get_param (const GValue *value);
332 GLIB_AVAILABLE_IN_ALL
333 GParamSpec* g_value_dup_param (const GValue *value);
336 GLIB_AVAILABLE_IN_ALL
337 void g_value_take_param (GValue *value,
338 GParamSpec *param);
339 GLIB_DEPRECATED_FOR(g_value_take_param)
340 void g_value_set_param_take_ownership (GValue *value,
341 GParamSpec *param);
342 GLIB_AVAILABLE_IN_2_36
343 const GValue * g_param_spec_get_default_value (GParamSpec *param);
345 /* --- convenience functions --- */
346 typedef struct _GParamSpecTypeInfo GParamSpecTypeInfo;
348 * GParamSpecTypeInfo:
349 * @instance_size: Size of the instance (object) structure.
350 * @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 [slice allocator][glib-Memory-Slices] now.
351 * @instance_init: Location of the instance initialization function (optional).
352 * @value_type: The #GType of values conforming to this #GParamSpec
353 * @finalize: The instance finalization function (optional).
354 * @value_set_default: Resets a @value to the default value for @pspec
355 * (recommended, the default is g_value_reset()), see
356 * g_param_value_set_default().
357 * @value_validate: Ensures that the contents of @value comply with the
358 * specifications set out by @pspec (optional), see
359 * g_param_value_validate().
360 * @values_cmp: Compares @value1 with @value2 according to @pspec
361 * (recommended, the default is memcmp()), see g_param_values_cmp().
363 * This structure is used to provide the type system with the information
364 * required to initialize and destruct (finalize) a parameter's class and
365 * instances thereof.
366 * The initialized structure is passed to the g_param_type_register_static()
367 * The type system will perform a deep copy of this structure, so its memory
368 * does not need to be persistent across invocation of
369 * g_param_type_register_static().
371 struct _GParamSpecTypeInfo
373 /* type system portion */
374 guint16 instance_size; /* obligatory */
375 guint16 n_preallocs; /* optional */
376 void (*instance_init) (GParamSpec *pspec); /* optional */
378 /* class portion */
379 GType value_type; /* obligatory */
380 void (*finalize) (GParamSpec *pspec); /* optional */
381 void (*value_set_default) (GParamSpec *pspec, /* recommended */
382 GValue *value);
383 gboolean (*value_validate) (GParamSpec *pspec, /* optional */
384 GValue *value);
385 gint (*values_cmp) (GParamSpec *pspec, /* recommended */
386 const GValue *value1,
387 const GValue *value2);
389 GLIB_AVAILABLE_IN_ALL
390 GType g_param_type_register_static (const gchar *name,
391 const GParamSpecTypeInfo *pspec_info);
393 /* For registering builting types */
394 GType _g_param_type_register_static_constant (const gchar *name,
395 const GParamSpecTypeInfo *pspec_info,
396 GType opt_type);
399 /* --- protected --- */
400 GLIB_AVAILABLE_IN_ALL
401 gpointer g_param_spec_internal (GType param_type,
402 const gchar *name,
403 const gchar *nick,
404 const gchar *blurb,
405 GParamFlags flags);
406 GLIB_AVAILABLE_IN_ALL
407 GParamSpecPool* g_param_spec_pool_new (gboolean type_prefixing);
408 GLIB_AVAILABLE_IN_ALL
409 void g_param_spec_pool_insert (GParamSpecPool *pool,
410 GParamSpec *pspec,
411 GType owner_type);
412 GLIB_AVAILABLE_IN_ALL
413 void g_param_spec_pool_remove (GParamSpecPool *pool,
414 GParamSpec *pspec);
415 GLIB_AVAILABLE_IN_ALL
416 GParamSpec* g_param_spec_pool_lookup (GParamSpecPool *pool,
417 const gchar *param_name,
418 GType owner_type,
419 gboolean walk_ancestors);
420 GLIB_AVAILABLE_IN_ALL
421 GList* g_param_spec_pool_list_owned (GParamSpecPool *pool,
422 GType owner_type);
423 GLIB_AVAILABLE_IN_ALL
424 GParamSpec** g_param_spec_pool_list (GParamSpecPool *pool,
425 GType owner_type,
426 guint *n_pspecs_p);
429 /* contracts:
431 * gboolean value_validate (GParamSpec *pspec,
432 * GValue *value):
433 * modify value contents in the least destructive way, so
434 * that it complies with pspec's requirements (i.e.
435 * according to minimum/maximum ranges etc...). return
436 * whether modification was necessary.
438 * gint values_cmp (GParamSpec *pspec,
439 * const GValue *value1,
440 * const GValue *value2):
441 * return value1 - value2, i.e. (-1) if value1 < value2,
442 * (+1) if value1 > value2, and (0) otherwise (equality)
445 G_END_DECLS
447 #endif /* __G_PARAM_H__ */