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.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * gparamspecs.h: GLib default param specs
22 #if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
23 #error "Only <glib-object.h> can be included directly."
26 #ifndef __G_PARAMSPECS_H__
27 #define __G_PARAMSPECS_H__
29 #include <gobject/gvalue.h>
30 #include <gobject/genums.h>
31 #include <gobject/gboxed.h>
32 #include <gobject/gobject.h>
36 /* --- type macros --- */
40 * The #GType of #GParamSpecChar.
42 #define G_TYPE_PARAM_CHAR (g_param_spec_types[0])
44 * G_IS_PARAM_SPEC_CHAR:
45 * @pspec: a valid #GParamSpec instance
47 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_CHAR.
49 * Returns: %TRUE on success.
51 #define G_IS_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_CHAR))
54 * @pspec: a valid #GParamSpec instance
56 * Cast a #GParamSpec instance into a #GParamSpecChar.
58 #define G_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_CHAR, GParamSpecChar))
63 * The #GType of #GParamSpecUChar.
65 #define G_TYPE_PARAM_UCHAR (g_param_spec_types[1])
67 * G_IS_PARAM_SPEC_UCHAR:
68 * @pspec: a valid #GParamSpec instance
70 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UCHAR.
72 * Returns: %TRUE on success.
74 #define G_IS_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UCHAR))
77 * @pspec: a valid #GParamSpec instance
79 * Cast a #GParamSpec instance into a #GParamSpecUChar.
81 #define G_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UCHAR, GParamSpecUChar))
84 * G_TYPE_PARAM_BOOLEAN:
86 * The #GType of #GParamSpecBoolean.
88 #define G_TYPE_PARAM_BOOLEAN (g_param_spec_types[2])
90 * G_IS_PARAM_SPEC_BOOLEAN:
91 * @pspec: a valid #GParamSpec instance
93 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_BOOLEAN.
95 * Returns: %TRUE on success.
97 #define G_IS_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOOLEAN))
99 * G_PARAM_SPEC_BOOLEAN:
100 * @pspec: a valid #GParamSpec instance
102 * Cast a #GParamSpec instance into a #GParamSpecBoolean.
104 #define G_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOOLEAN, GParamSpecBoolean))
109 * The #GType of #GParamSpecInt.
111 #define G_TYPE_PARAM_INT (g_param_spec_types[3])
113 * G_IS_PARAM_SPEC_INT:
114 * @pspec: a valid #GParamSpec instance
116 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_INT.
118 * Returns: %TRUE on success.
120 #define G_IS_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT))
123 * @pspec: a valid #GParamSpec instance
125 * Cast a #GParamSpec instance into a #GParamSpecInt.
127 #define G_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT, GParamSpecInt))
132 * The #GType of #GParamSpecUInt.
134 #define G_TYPE_PARAM_UINT (g_param_spec_types[4])
136 * G_IS_PARAM_SPEC_UINT:
137 * @pspec: a valid #GParamSpec instance
139 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UINT.
141 * Returns: %TRUE on success.
143 #define G_IS_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT))
146 * @pspec: a valid #GParamSpec instance
148 * Cast a #GParamSpec instance into a #GParamSpecUInt.
150 #define G_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT, GParamSpecUInt))
155 * The #GType of #GParamSpecLong.
157 #define G_TYPE_PARAM_LONG (g_param_spec_types[5])
159 * G_IS_PARAM_SPEC_LONG:
160 * @pspec: a valid #GParamSpec instance
162 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_LONG.
164 * Returns: %TRUE on success.
166 #define G_IS_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_LONG))
169 * @pspec: a valid #GParamSpec instance
171 * Cast a #GParamSpec instance into a #GParamSpecLong.
173 #define G_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_LONG, GParamSpecLong))
176 * G_TYPE_PARAM_ULONG:
178 * The #GType of #GParamSpecULong.
180 #define G_TYPE_PARAM_ULONG (g_param_spec_types[6])
182 * G_IS_PARAM_SPEC_ULONG:
183 * @pspec: a valid #GParamSpec instance
185 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_ULONG.
187 * Returns: %TRUE on success.
189 #define G_IS_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ULONG))
191 * G_PARAM_SPEC_ULONG:
192 * @pspec: a valid #GParamSpec instance
194 * Cast a #GParamSpec instance into a #GParamSpecULong.
196 #define G_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ULONG, GParamSpecULong))
199 * G_TYPE_PARAM_INT64:
201 * The #GType of #GParamSpecInt64.
203 #define G_TYPE_PARAM_INT64 (g_param_spec_types[7])
205 * G_IS_PARAM_SPEC_INT64:
206 * @pspec: a valid #GParamSpec instance
208 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_INT64.
210 * Returns: %TRUE on success.
212 #define G_IS_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT64))
214 * G_PARAM_SPEC_INT64:
215 * @pspec: a valid #GParamSpec instance
217 * Cast a #GParamSpec instance into a #GParamSpecInt64.
219 #define G_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT64, GParamSpecInt64))
222 * G_TYPE_PARAM_UINT64:
224 * The #GType of #GParamSpecUInt64.
226 #define G_TYPE_PARAM_UINT64 (g_param_spec_types[8])
228 * G_IS_PARAM_SPEC_UINT64:
229 * @pspec: a valid #GParamSpec instance
231 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UINT64.
233 * Returns: %TRUE on success.
235 #define G_IS_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT64))
237 * G_PARAM_SPEC_UINT64:
238 * @pspec: a valid #GParamSpec instance
240 * Cast a #GParamSpec instance into a #GParamSpecUInt64.
242 #define G_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT64, GParamSpecUInt64))
245 * G_TYPE_PARAM_UNICHAR:
247 * The #GType of #GParamSpecUnichar.
249 #define G_TYPE_PARAM_UNICHAR (g_param_spec_types[9])
251 * G_PARAM_SPEC_UNICHAR:
252 * @pspec: a valid #GParamSpec instance
254 * Cast a #GParamSpec instance into a #GParamSpecUnichar.
256 #define G_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UNICHAR, GParamSpecUnichar))
258 * G_IS_PARAM_SPEC_UNICHAR:
259 * @pspec: a valid #GParamSpec instance
261 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UNICHAR.
263 * Returns: %TRUE on success.
265 #define G_IS_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UNICHAR))
270 * The #GType of #GParamSpecEnum.
272 #define G_TYPE_PARAM_ENUM (g_param_spec_types[10])
274 * G_IS_PARAM_SPEC_ENUM:
275 * @pspec: a valid #GParamSpec instance
277 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_ENUM.
279 * Returns: %TRUE on success.
281 #define G_IS_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ENUM))
284 * @pspec: a valid #GParamSpec instance
286 * Cast a #GParamSpec instance into a #GParamSpecEnum.
288 #define G_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ENUM, GParamSpecEnum))
291 * G_TYPE_PARAM_FLAGS:
293 * The #GType of #GParamSpecFlags.
295 #define G_TYPE_PARAM_FLAGS (g_param_spec_types[11])
297 * G_IS_PARAM_SPEC_FLAGS:
298 * @pspec: a valid #GParamSpec instance
300 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_FLAGS.
302 * Returns: %TRUE on success.
304 #define G_IS_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLAGS))
306 * G_PARAM_SPEC_FLAGS:
307 * @pspec: a valid #GParamSpec instance
309 * Cast a #GParamSpec instance into a #GParamSpecFlags.
311 #define G_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLAGS, GParamSpecFlags))
314 * G_TYPE_PARAM_FLOAT:
316 * The #GType of #GParamSpecFloat.
318 #define G_TYPE_PARAM_FLOAT (g_param_spec_types[12])
320 * G_IS_PARAM_SPEC_FLOAT:
321 * @pspec: a valid #GParamSpec instance
323 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_FLOAT.
325 * Returns: %TRUE on success.
327 #define G_IS_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLOAT))
329 * G_PARAM_SPEC_FLOAT:
330 * @pspec: a valid #GParamSpec instance
332 * Cast a #GParamSpec instance into a #GParamSpecFloat.
334 #define G_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLOAT, GParamSpecFloat))
337 * G_TYPE_PARAM_DOUBLE:
339 * The #GType of #GParamSpecDouble.
341 #define G_TYPE_PARAM_DOUBLE (g_param_spec_types[13])
343 * G_IS_PARAM_SPEC_DOUBLE:
344 * @pspec: a valid #GParamSpec instance
346 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_DOUBLE.
348 * Returns: %TRUE on success.
350 #define G_IS_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_DOUBLE))
352 * G_PARAM_SPEC_DOUBLE:
353 * @pspec: a valid #GParamSpec instance
355 * Cast a #GParamSpec instance into a #GParamSpecDouble.
357 #define G_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_DOUBLE, GParamSpecDouble))
360 * G_TYPE_PARAM_STRING:
362 * The #GType of #GParamSpecString.
364 #define G_TYPE_PARAM_STRING (g_param_spec_types[14])
366 * G_IS_PARAM_SPEC_STRING:
367 * @pspec: a valid #GParamSpec instance
369 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_STRING.
371 * Returns: %TRUE on success.
373 #define G_IS_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_STRING))
375 * G_PARAM_SPEC_STRING:
376 * @pspec: a valid #GParamSpec instance
378 * Casts a #GParamSpec instance into a #GParamSpecString.
380 #define G_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_STRING, GParamSpecString))
383 * G_TYPE_PARAM_PARAM:
385 * The #GType of #GParamSpecParam.
387 #define G_TYPE_PARAM_PARAM (g_param_spec_types[15])
389 * G_IS_PARAM_SPEC_PARAM:
390 * @pspec: a valid #GParamSpec instance
392 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_PARAM.
394 * Returns: %TRUE on success.
396 #define G_IS_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_PARAM))
398 * G_PARAM_SPEC_PARAM:
399 * @pspec: a valid #GParamSpec instance
401 * Casts a #GParamSpec instance into a #GParamSpecParam.
403 #define G_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_PARAM, GParamSpecParam))
406 * G_TYPE_PARAM_BOXED:
408 * The #GType of #GParamSpecBoxed.
410 #define G_TYPE_PARAM_BOXED (g_param_spec_types[16])
412 * G_IS_PARAM_SPEC_BOXED:
413 * @pspec: a valid #GParamSpec instance
415 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_BOXED.
417 * Returns: %TRUE on success.
419 #define G_IS_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOXED))
421 * G_PARAM_SPEC_BOXED:
422 * @pspec: a valid #GParamSpec instance
424 * Cast a #GParamSpec instance into a #GParamSpecBoxed.
426 #define G_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOXED, GParamSpecBoxed))
429 * G_TYPE_PARAM_POINTER:
431 * The #GType of #GParamSpecPointer.
433 #define G_TYPE_PARAM_POINTER (g_param_spec_types[17])
435 * G_IS_PARAM_SPEC_POINTER:
436 * @pspec: a valid #GParamSpec instance
438 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_POINTER.
440 * Returns: %TRUE on success.
442 #define G_IS_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_POINTER))
444 * G_PARAM_SPEC_POINTER:
445 * @pspec: a valid #GParamSpec instance
447 * Casts a #GParamSpec instance into a #GParamSpecPointer.
449 #define G_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_POINTER, GParamSpecPointer))
452 * G_TYPE_PARAM_VALUE_ARRAY:
454 * The #GType of #GParamSpecValueArray.
456 #define G_TYPE_PARAM_VALUE_ARRAY (g_param_spec_types[18])
458 * G_IS_PARAM_SPEC_VALUE_ARRAY:
459 * @pspec: a valid #GParamSpec instance
461 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_VALUE_ARRAY.
463 * Returns: %TRUE on success.
465 #define G_IS_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_VALUE_ARRAY))
467 * G_PARAM_SPEC_VALUE_ARRAY:
468 * @pspec: a valid #GParamSpec instance
470 * Cast a #GParamSpec instance into a #GParamSpecValueArray.
472 #define G_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_VALUE_ARRAY, GParamSpecValueArray))
475 * G_TYPE_PARAM_OBJECT:
477 * The #GType of #GParamSpecObject.
479 #define G_TYPE_PARAM_OBJECT (g_param_spec_types[19])
481 * G_IS_PARAM_SPEC_OBJECT:
482 * @pspec: a valid #GParamSpec instance
484 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_OBJECT.
486 * Returns: %TRUE on success.
488 #define G_IS_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OBJECT))
490 * G_PARAM_SPEC_OBJECT:
491 * @pspec: a valid #GParamSpec instance
493 * Casts a #GParamSpec instance into a #GParamSpecObject.
495 #define G_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OBJECT, GParamSpecObject))
498 * G_TYPE_PARAM_OVERRIDE:
500 * The #GType of #GParamSpecOverride.
504 #define G_TYPE_PARAM_OVERRIDE (g_param_spec_types[20])
506 * G_IS_PARAM_SPEC_OVERRIDE:
507 * @pspec: a #GParamSpec
509 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_OVERRIDE.
512 * Returns: %TRUE on success.
514 #define G_IS_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OVERRIDE))
516 * G_PARAM_SPEC_OVERRIDE:
517 * @pspec: a #GParamSpec
519 * Casts a #GParamSpec into a #GParamSpecOverride.
523 #define G_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OVERRIDE, GParamSpecOverride))
526 * G_TYPE_PARAM_GTYPE:
528 * The #GType of #GParamSpecGType.
532 #define G_TYPE_PARAM_GTYPE (g_param_spec_types[21])
534 * G_IS_PARAM_SPEC_GTYPE:
535 * @pspec: a #GParamSpec
537 * Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_GTYPE.
540 * Returns: %TRUE on success.
542 #define G_IS_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_GTYPE))
544 * G_PARAM_SPEC_GTYPE:
545 * @pspec: a #GParamSpec
547 * Casts a #GParamSpec into a #GParamSpecGType.
551 #define G_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_GTYPE, GParamSpecGType))
554 /* --- typedefs & structures --- */
555 typedef struct _GParamSpecChar GParamSpecChar;
556 typedef struct _GParamSpecUChar GParamSpecUChar;
557 typedef struct _GParamSpecBoolean GParamSpecBoolean;
558 typedef struct _GParamSpecInt GParamSpecInt;
559 typedef struct _GParamSpecUInt GParamSpecUInt;
560 typedef struct _GParamSpecLong GParamSpecLong;
561 typedef struct _GParamSpecULong GParamSpecULong;
562 typedef struct _GParamSpecInt64 GParamSpecInt64;
563 typedef struct _GParamSpecUInt64 GParamSpecUInt64;
564 typedef struct _GParamSpecUnichar GParamSpecUnichar;
565 typedef struct _GParamSpecEnum GParamSpecEnum;
566 typedef struct _GParamSpecFlags GParamSpecFlags;
567 typedef struct _GParamSpecFloat GParamSpecFloat;
568 typedef struct _GParamSpecDouble GParamSpecDouble;
569 typedef struct _GParamSpecString GParamSpecString;
570 typedef struct _GParamSpecParam GParamSpecParam;
571 typedef struct _GParamSpecBoxed GParamSpecBoxed;
572 typedef struct _GParamSpecPointer GParamSpecPointer;
573 typedef struct _GParamSpecValueArray GParamSpecValueArray;
574 typedef struct _GParamSpecObject GParamSpecObject;
575 typedef struct _GParamSpecOverride GParamSpecOverride;
576 typedef struct _GParamSpecGType GParamSpecGType;
580 * @parent_instance: private #GParamSpec portion
581 * @minimum: minimum value for the property specified
582 * @maximum: maximum value for the property specified
583 * @default_value: default value for the property specified
585 * A #GParamSpec derived structure that contains the meta data for character properties.
587 struct _GParamSpecChar
589 GParamSpec parent_instance;
597 * @parent_instance: private #GParamSpec portion
598 * @minimum: minimum value for the property specified
599 * @maximum: maximum value for the property specified
600 * @default_value: default value for the property specified
602 * A #GParamSpec derived structure that contains the meta data for unsigned character properties.
604 struct _GParamSpecUChar
606 GParamSpec parent_instance;
610 guint8 default_value;
614 * @parent_instance: private #GParamSpec portion
615 * @default_value: default value for the property specified
617 * A #GParamSpec derived structure that contains the meta data for boolean properties.
619 struct _GParamSpecBoolean
621 GParamSpec parent_instance;
623 gboolean default_value;
627 * @parent_instance: private #GParamSpec portion
628 * @minimum: minimum value for the property specified
629 * @maximum: maximum value for the property specified
630 * @default_value: default value for the property specified
632 * A #GParamSpec derived structure that contains the meta data for integer properties.
634 struct _GParamSpecInt
636 GParamSpec parent_instance;
644 * @parent_instance: private #GParamSpec portion
645 * @minimum: minimum value for the property specified
646 * @maximum: maximum value for the property specified
647 * @default_value: default value for the property specified
649 * A #GParamSpec derived structure that contains the meta data for unsigned integer properties.
651 struct _GParamSpecUInt
653 GParamSpec parent_instance;
661 * @parent_instance: private #GParamSpec portion
662 * @minimum: minimum value for the property specified
663 * @maximum: maximum value for the property specified
664 * @default_value: default value for the property specified
666 * A #GParamSpec derived structure that contains the meta data for long integer properties.
668 struct _GParamSpecLong
670 GParamSpec parent_instance;
678 * @parent_instance: private #GParamSpec portion
679 * @minimum: minimum value for the property specified
680 * @maximum: maximum value for the property specified
681 * @default_value: default value for the property specified
683 * A #GParamSpec derived structure that contains the meta data for unsigned long integer properties.
685 struct _GParamSpecULong
687 GParamSpec parent_instance;
691 gulong default_value;
695 * @parent_instance: private #GParamSpec portion
696 * @minimum: minimum value for the property specified
697 * @maximum: maximum value for the property specified
698 * @default_value: default value for the property specified
700 * A #GParamSpec derived structure that contains the meta data for 64bit integer properties.
702 struct _GParamSpecInt64
704 GParamSpec parent_instance;
708 gint64 default_value;
712 * @parent_instance: private #GParamSpec portion
713 * @minimum: minimum value for the property specified
714 * @maximum: maximum value for the property specified
715 * @default_value: default value for the property specified
717 * A #GParamSpec derived structure that contains the meta data for unsigned 64bit integer properties.
719 struct _GParamSpecUInt64
721 GParamSpec parent_instance;
725 guint64 default_value;
729 * @parent_instance: private #GParamSpec portion
730 * @default_value: default value for the property specified
732 * A #GParamSpec derived structure that contains the meta data for unichar (unsigned integer) properties.
734 struct _GParamSpecUnichar
736 GParamSpec parent_instance;
738 gunichar default_value;
742 * @parent_instance: private #GParamSpec portion
743 * @enum_class: the #GEnumClass for the enum
744 * @default_value: default value for the property specified
746 * A #GParamSpec derived structure that contains the meta data for enum
749 struct _GParamSpecEnum
751 GParamSpec parent_instance;
753 GEnumClass *enum_class;
758 * @parent_instance: private #GParamSpec portion
759 * @flags_class: the #GFlagsClass for the flags
760 * @default_value: default value for the property specified
762 * A #GParamSpec derived structure that contains the meta data for flags
765 struct _GParamSpecFlags
767 GParamSpec parent_instance;
769 GFlagsClass *flags_class;
774 * @parent_instance: private #GParamSpec portion
775 * @minimum: minimum value for the property specified
776 * @maximum: maximum value for the property specified
777 * @default_value: default value for the property specified
778 * @epsilon: values closer than @epsilon will be considered identical
779 * by g_param_values_cmp(); the default value is 1e-30.
781 * A #GParamSpec derived structure that contains the meta data for float properties.
783 struct _GParamSpecFloat
785 GParamSpec parent_instance;
789 gfloat default_value;
794 * @parent_instance: private #GParamSpec portion
795 * @minimum: minimum value for the property specified
796 * @maximum: maximum value for the property specified
797 * @default_value: default value for the property specified
798 * @epsilon: values closer than @epsilon will be considered identical
799 * by g_param_values_cmp(); the default value is 1e-90.
801 * A #GParamSpec derived structure that contains the meta data for double properties.
803 struct _GParamSpecDouble
805 GParamSpec parent_instance;
809 gdouble default_value;
814 * @parent_instance: private #GParamSpec portion
815 * @default_value: default value for the property specified
816 * @cset_first: a string containing the allowed values for the first byte
817 * @cset_nth: a string containing the allowed values for the subsequent bytes
818 * @substitutor: the replacement byte for bytes which don't match @cset_first or @cset_nth.
819 * @null_fold_if_empty: replace empty string by %NULL
820 * @ensure_non_null: replace %NULL strings by an empty string
822 * A #GParamSpec derived structure that contains the meta data for string
825 struct _GParamSpecString
827 GParamSpec parent_instance;
829 gchar *default_value;
833 guint null_fold_if_empty : 1;
834 guint ensure_non_null : 1;
838 * @parent_instance: private #GParamSpec portion
840 * A #GParamSpec derived structure that contains the meta data for %G_TYPE_PARAM
843 struct _GParamSpecParam
845 GParamSpec parent_instance;
849 * @parent_instance: private #GParamSpec portion
851 * A #GParamSpec derived structure that contains the meta data for boxed properties.
853 struct _GParamSpecBoxed
855 GParamSpec parent_instance;
859 * @parent_instance: private #GParamSpec portion
861 * A #GParamSpec derived structure that contains the meta data for pointer properties.
863 struct _GParamSpecPointer
865 GParamSpec parent_instance;
868 * GParamSpecValueArray:
869 * @parent_instance: private #GParamSpec portion
870 * @element_spec: a #GParamSpec describing the elements contained in arrays of this property, may be %NULL
871 * @fixed_n_elements: if greater than 0, arrays of this property will always have this many elements
873 * A #GParamSpec derived structure that contains the meta data for #GValueArray properties.
875 struct _GParamSpecValueArray
877 GParamSpec parent_instance;
878 GParamSpec *element_spec;
879 guint fixed_n_elements;
883 * @parent_instance: private #GParamSpec portion
885 * A #GParamSpec derived structure that contains the meta data for object properties.
887 struct _GParamSpecObject
889 GParamSpec parent_instance;
892 * GParamSpecOverride:
894 * This is a type of #GParamSpec type that simply redirects operations to
895 * another paramspec. All operations other than getting or
896 * setting the value are redirected, including accessing the nick and
897 * blurb, validating a value, and so forth. See
898 * g_param_spec_get_redirect_target() for retrieving the overidden
899 * property. #GParamSpecOverride is used in implementing
900 * g_object_class_override_property(), and will not be directly useful
901 * unless you are implementing a new base type similar to GObject.
905 struct _GParamSpecOverride
908 GParamSpec parent_instance;
909 GParamSpec *overridden;
913 * @parent_instance: private #GParamSpec portion
914 * @is_a_type: a #GType whose subtypes can occur as values
916 * A #GParamSpec derived structure that contains the meta data for #GType properties.
920 struct _GParamSpecGType
922 GParamSpec parent_instance;
926 /* --- GParamSpec prototypes --- */
927 IMPORT_C GParamSpec* g_param_spec_char (const gchar *name,
934 IMPORT_C GParamSpec* g_param_spec_uchar (const gchar *name,
939 guint8 default_value,
941 IMPORT_C GParamSpec* g_param_spec_boolean (const gchar *name,
944 gboolean default_value,
946 IMPORT_C GParamSpec* g_param_spec_int (const gchar *name,
953 IMPORT_C GParamSpec* g_param_spec_uint (const gchar *name,
960 IMPORT_C GParamSpec* g_param_spec_long (const gchar *name,
967 IMPORT_C GParamSpec* g_param_spec_ulong (const gchar *name,
972 gulong default_value,
974 IMPORT_C GParamSpec* g_param_spec_int64 (const gchar *name,
979 gint64 default_value,
981 IMPORT_C GParamSpec* g_param_spec_uint64 (const gchar *name,
986 guint64 default_value,
988 IMPORT_C GParamSpec* g_param_spec_unichar (const gchar *name,
991 gunichar default_value,
993 IMPORT_C GParamSpec* g_param_spec_enum (const gchar *name,
999 IMPORT_C GParamSpec* g_param_spec_flags (const gchar *name,
1003 guint default_value,
1005 IMPORT_C GParamSpec* g_param_spec_float (const gchar *name,
1010 gfloat default_value,
1012 IMPORT_C GParamSpec* g_param_spec_double (const gchar *name,
1017 gdouble default_value,
1019 IMPORT_C GParamSpec* g_param_spec_string (const gchar *name,
1022 const gchar *default_value,
1024 IMPORT_C GParamSpec* g_param_spec_param (const gchar *name,
1029 IMPORT_C GParamSpec* g_param_spec_boxed (const gchar *name,
1034 IMPORT_C GParamSpec* g_param_spec_pointer (const gchar *name,
1038 IMPORT_C GParamSpec* g_param_spec_value_array (const gchar *name,
1041 GParamSpec *element_spec,
1043 IMPORT_C GParamSpec* g_param_spec_object (const gchar *name,
1048 IMPORT_C GParamSpec* g_param_spec_override (const gchar *name,
1049 GParamSpec *overridden);
1050 IMPORT_C GParamSpec* g_param_spec_gtype (const gchar *name,
1056 /* --- internal --- */
1057 /* We prefix variable declarations so they can
1058 * properly get exported in windows dlls.
1061 # ifdef G_PLATFORM_WIN32
1062 # ifdef GOBJECT_STATIC_COMPILATION
1063 # define GOBJECT_VAR extern
1064 # else /* !GOBJECT_STATIC_COMPILATION */
1065 # ifdef GOBJECT_COMPILATION
1067 # define GOBJECT_VAR __declspec(dllexport)
1068 # else /* !DLL_EXPORT */
1069 # define GOBJECT_VAR extern
1070 # endif /* !DLL_EXPORT */
1071 # else /* !GOBJECT_COMPILATION */
1072 # define GOBJECT_VAR extern __declspec(dllimport)
1073 # endif /* !GOBJECT_COMPILATION */
1074 # endif /* !GOBJECT_STATIC_COMPILATION */
1075 # else /* !G_PLATFORM_WIN32 */
1076 # define GOBJECT_VAR extern
1077 # endif /* !G_PLATFORM_WIN32 */
1078 #endif /* GOBJECT_VAR */
1080 #ifdef __SYMBIAN32__
1081 IMPORT_C GType ** _g_param_spec_types(void);
1082 #endif /*__SYMBIAN32__ */
1083 GOBJECT_VAR GType *g_param_spec_types;
1087 #endif /* __G_PARAMSPECS_H__ */