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.
29 #include "gparamspecs.h"
30 #include "gvaluecollector.h"
31 #include "gvaluearray.h"
32 #include "gobjectalias.h"
35 #include "gobject_wsd.h"
36 #endif /* __SYMBIAN32__ */
38 * SECTION:param_value_types
39 * @short_description: Standard Parameter and Value Types
40 * @see_also: #GParamSpec, #GValue, g_object_class_install_property().
41 * @title: Parameters and Values
43 * #GValue provides an abstract container structure which can be
44 * copied, transformed and compared while holding a value of any
45 * (derived) type, which is registered as a #GType with a
46 * #GTypeValueTable in its #GTypeInfo structure. Parameter
47 * specifications for most value types can be created as #GParamSpec
48 * derived instances, to implement e.g. #GObject properties which
49 * operate on #GValue containers.
51 * Parameter names need to start with a letter (a-z or A-Z). Subsequent
52 * characters can be letters, numbers or a '-'.
53 * All other characters are replaced by a '-' during construction.
57 #define G_FLOAT_EPSILON (1e-30)
58 #define G_DOUBLE_EPSILON (1e-90)
62 PLS(g_param_spec_types ,gparamspecs,GType *)
63 #define g_param_spec_types (*FUNCTION_NAME(g_param_spec_types ,gparamspecs)())
68 /* --- param spec functions --- */
70 param_char_init (GParamSpec *pspec)
72 GParamSpecChar *cspec = G_PARAM_SPEC_CHAR (pspec);
74 cspec->minimum = 0x7f;
75 cspec->maximum = 0x80;
76 cspec->default_value = 0;
80 param_char_set_default (GParamSpec *pspec,
83 value->data[0].v_int = G_PARAM_SPEC_CHAR (pspec)->default_value;
87 param_char_validate (GParamSpec *pspec,
90 GParamSpecChar *cspec = G_PARAM_SPEC_CHAR (pspec);
91 gint oval = value->data[0].v_int;
93 value->data[0].v_int = CLAMP (value->data[0].v_int, cspec->minimum, cspec->maximum);
95 return value->data[0].v_int != oval;
99 param_uchar_init (GParamSpec *pspec)
101 GParamSpecUChar *uspec = G_PARAM_SPEC_UCHAR (pspec);
104 uspec->maximum = 0xff;
105 uspec->default_value = 0;
109 param_uchar_set_default (GParamSpec *pspec,
112 value->data[0].v_uint = G_PARAM_SPEC_UCHAR (pspec)->default_value;
116 param_uchar_validate (GParamSpec *pspec,
119 GParamSpecUChar *uspec = G_PARAM_SPEC_UCHAR (pspec);
120 guint oval = value->data[0].v_uint;
122 value->data[0].v_uint = CLAMP (value->data[0].v_uint, uspec->minimum, uspec->maximum);
124 return value->data[0].v_uint != oval;
128 param_boolean_set_default (GParamSpec *pspec,
131 value->data[0].v_int = G_PARAM_SPEC_BOOLEAN (pspec)->default_value;
135 param_boolean_validate (GParamSpec *pspec,
138 gint oval = value->data[0].v_int;
140 value->data[0].v_int = value->data[0].v_int != FALSE;
142 return value->data[0].v_int != oval;
146 param_int_init (GParamSpec *pspec)
148 GParamSpecInt *ispec = G_PARAM_SPEC_INT (pspec);
150 ispec->minimum = 0x7fffffff;
151 ispec->maximum = 0x80000000;
152 ispec->default_value = 0;
156 param_int_set_default (GParamSpec *pspec,
159 value->data[0].v_int = G_PARAM_SPEC_INT (pspec)->default_value;
163 param_int_validate (GParamSpec *pspec,
166 GParamSpecInt *ispec = G_PARAM_SPEC_INT (pspec);
167 gint oval = value->data[0].v_int;
169 value->data[0].v_int = CLAMP (value->data[0].v_int, ispec->minimum, ispec->maximum);
171 return value->data[0].v_int != oval;
175 param_int_values_cmp (GParamSpec *pspec,
176 const GValue *value1,
177 const GValue *value2)
179 if (value1->data[0].v_int < value2->data[0].v_int)
182 return value1->data[0].v_int > value2->data[0].v_int;
186 param_uint_init (GParamSpec *pspec)
188 GParamSpecUInt *uspec = G_PARAM_SPEC_UINT (pspec);
191 uspec->maximum = 0xffffffff;
192 uspec->default_value = 0;
196 param_uint_set_default (GParamSpec *pspec,
199 value->data[0].v_uint = G_PARAM_SPEC_UINT (pspec)->default_value;
203 param_uint_validate (GParamSpec *pspec,
206 GParamSpecUInt *uspec = G_PARAM_SPEC_UINT (pspec);
207 guint oval = value->data[0].v_uint;
209 value->data[0].v_uint = CLAMP (value->data[0].v_uint, uspec->minimum, uspec->maximum);
211 return value->data[0].v_uint != oval;
215 param_uint_values_cmp (GParamSpec *pspec,
216 const GValue *value1,
217 const GValue *value2)
219 if (value1->data[0].v_uint < value2->data[0].v_uint)
222 return value1->data[0].v_uint > value2->data[0].v_uint;
226 param_long_init (GParamSpec *pspec)
228 GParamSpecLong *lspec = G_PARAM_SPEC_LONG (pspec);
231 lspec->minimum = 0x7fffffff;
232 lspec->maximum = 0x80000000;
233 #else /* SIZEOF_LONG != 4 (8) */
234 lspec->minimum = 0x7fffffffffffffff;
235 lspec->maximum = 0x8000000000000000;
237 lspec->default_value = 0;
241 param_long_set_default (GParamSpec *pspec,
244 value->data[0].v_long = G_PARAM_SPEC_LONG (pspec)->default_value;
248 param_long_validate (GParamSpec *pspec,
251 GParamSpecLong *lspec = G_PARAM_SPEC_LONG (pspec);
252 glong oval = value->data[0].v_long;
254 value->data[0].v_long = CLAMP (value->data[0].v_long, lspec->minimum, lspec->maximum);
256 return value->data[0].v_long != oval;
260 param_long_values_cmp (GParamSpec *pspec,
261 const GValue *value1,
262 const GValue *value2)
264 if (value1->data[0].v_long < value2->data[0].v_long)
267 return value1->data[0].v_long > value2->data[0].v_long;
271 param_ulong_init (GParamSpec *pspec)
273 GParamSpecULong *uspec = G_PARAM_SPEC_ULONG (pspec);
277 uspec->maximum = 0xffffffff;
278 #else /* SIZEOF_LONG != 4 (8) */
279 uspec->maximum = 0xffffffffffffffff;
281 uspec->default_value = 0;
285 param_ulong_set_default (GParamSpec *pspec,
288 value->data[0].v_ulong = G_PARAM_SPEC_ULONG (pspec)->default_value;
292 param_ulong_validate (GParamSpec *pspec,
295 GParamSpecULong *uspec = G_PARAM_SPEC_ULONG (pspec);
296 gulong oval = value->data[0].v_ulong;
298 value->data[0].v_ulong = CLAMP (value->data[0].v_ulong, uspec->minimum, uspec->maximum);
300 return value->data[0].v_ulong != oval;
304 param_ulong_values_cmp (GParamSpec *pspec,
305 const GValue *value1,
306 const GValue *value2)
308 if (value1->data[0].v_ulong < value2->data[0].v_ulong)
311 return value1->data[0].v_ulong > value2->data[0].v_ulong;
315 param_int64_init (GParamSpec *pspec)
317 GParamSpecInt64 *lspec = G_PARAM_SPEC_INT64 (pspec);
319 lspec->minimum = G_MININT64;
320 lspec->maximum = G_MAXINT64;
321 lspec->default_value = 0;
325 param_int64_set_default (GParamSpec *pspec,
328 value->data[0].v_int64 = G_PARAM_SPEC_INT64 (pspec)->default_value;
332 param_int64_validate (GParamSpec *pspec,
335 GParamSpecInt64 *lspec = G_PARAM_SPEC_INT64 (pspec);
336 gint64 oval = value->data[0].v_int64;
338 value->data[0].v_int64 = CLAMP (value->data[0].v_int64, lspec->minimum, lspec->maximum);
340 return value->data[0].v_int64 != oval;
344 param_int64_values_cmp (GParamSpec *pspec,
345 const GValue *value1,
346 const GValue *value2)
348 if (value1->data[0].v_int64 < value2->data[0].v_int64)
351 return value1->data[0].v_int64 > value2->data[0].v_int64;
355 param_uint64_init (GParamSpec *pspec)
357 GParamSpecUInt64 *uspec = G_PARAM_SPEC_UINT64 (pspec);
360 uspec->maximum = G_MAXUINT64;
361 uspec->default_value = 0;
365 param_uint64_set_default (GParamSpec *pspec,
368 value->data[0].v_uint64 = G_PARAM_SPEC_UINT64 (pspec)->default_value;
372 param_uint64_validate (GParamSpec *pspec,
375 GParamSpecUInt64 *uspec = G_PARAM_SPEC_UINT64 (pspec);
376 guint64 oval = value->data[0].v_uint64;
378 value->data[0].v_uint64 = CLAMP (value->data[0].v_uint64, uspec->minimum, uspec->maximum);
380 return value->data[0].v_uint64 != oval;
384 param_uint64_values_cmp (GParamSpec *pspec,
385 const GValue *value1,
386 const GValue *value2)
388 if (value1->data[0].v_uint64 < value2->data[0].v_uint64)
391 return value1->data[0].v_uint64 > value2->data[0].v_uint64;
395 param_unichar_init (GParamSpec *pspec)
397 GParamSpecUnichar *uspec = G_PARAM_SPEC_UNICHAR (pspec);
399 uspec->default_value = 0;
403 param_unichar_set_default (GParamSpec *pspec,
406 value->data[0].v_uint = G_PARAM_SPEC_UNICHAR (pspec)->default_value;
410 param_unichar_validate (GParamSpec *pspec,
413 gunichar oval = value->data[0].v_uint;
414 gboolean changed = FALSE;
416 if (!g_unichar_validate (oval))
418 value->data[0].v_uint = 0;
426 param_unichar_values_cmp (GParamSpec *pspec,
427 const GValue *value1,
428 const GValue *value2)
430 if (value1->data[0].v_uint < value2->data[0].v_uint)
433 return value1->data[0].v_uint > value2->data[0].v_uint;
437 param_enum_init (GParamSpec *pspec)
439 GParamSpecEnum *espec = G_PARAM_SPEC_ENUM (pspec);
441 espec->enum_class = NULL;
442 espec->default_value = 0;
446 param_enum_finalize (GParamSpec *pspec)
448 GParamSpecEnum *espec = G_PARAM_SPEC_ENUM (pspec);
449 GParamSpecClass *parent_class = g_type_class_peek (g_type_parent (G_TYPE_PARAM_ENUM));
451 if (espec->enum_class)
453 g_type_class_unref (espec->enum_class);
454 espec->enum_class = NULL;
457 parent_class->finalize (pspec);
461 param_enum_set_default (GParamSpec *pspec,
464 value->data[0].v_long = G_PARAM_SPEC_ENUM (pspec)->default_value;
468 param_enum_validate (GParamSpec *pspec,
471 GParamSpecEnum *espec = G_PARAM_SPEC_ENUM (pspec);
472 glong oval = value->data[0].v_long;
474 if (!espec->enum_class ||
475 !g_enum_get_value (espec->enum_class, value->data[0].v_long))
476 value->data[0].v_long = espec->default_value;
478 return value->data[0].v_long != oval;
482 param_flags_init (GParamSpec *pspec)
484 GParamSpecFlags *fspec = G_PARAM_SPEC_FLAGS (pspec);
486 fspec->flags_class = NULL;
487 fspec->default_value = 0;
491 param_flags_finalize (GParamSpec *pspec)
493 GParamSpecFlags *fspec = G_PARAM_SPEC_FLAGS (pspec);
494 GParamSpecClass *parent_class = g_type_class_peek (g_type_parent (G_TYPE_PARAM_FLAGS));
496 if (fspec->flags_class)
498 g_type_class_unref (fspec->flags_class);
499 fspec->flags_class = NULL;
502 parent_class->finalize (pspec);
506 param_flags_set_default (GParamSpec *pspec,
509 value->data[0].v_ulong = G_PARAM_SPEC_FLAGS (pspec)->default_value;
513 param_flags_validate (GParamSpec *pspec,
516 GParamSpecFlags *fspec = G_PARAM_SPEC_FLAGS (pspec);
517 gulong oval = value->data[0].v_ulong;
519 if (fspec->flags_class)
520 value->data[0].v_ulong &= fspec->flags_class->mask;
522 value->data[0].v_ulong = fspec->default_value;
524 return value->data[0].v_ulong != oval;
528 param_float_init (GParamSpec *pspec)
530 GParamSpecFloat *fspec = G_PARAM_SPEC_FLOAT (pspec);
532 fspec->minimum = -G_MAXFLOAT;
533 fspec->maximum = G_MAXFLOAT;
534 fspec->default_value = 0;
535 fspec->epsilon = G_FLOAT_EPSILON;
539 param_float_set_default (GParamSpec *pspec,
542 value->data[0].v_float = G_PARAM_SPEC_FLOAT (pspec)->default_value;
546 param_float_validate (GParamSpec *pspec,
549 GParamSpecFloat *fspec = G_PARAM_SPEC_FLOAT (pspec);
550 gfloat oval = value->data[0].v_float;
552 value->data[0].v_float = CLAMP (value->data[0].v_float, fspec->minimum, fspec->maximum);
554 return value->data[0].v_float != oval;
558 param_float_values_cmp (GParamSpec *pspec,
559 const GValue *value1,
560 const GValue *value2)
562 gfloat epsilon = G_PARAM_SPEC_FLOAT (pspec)->epsilon;
564 if (value1->data[0].v_float < value2->data[0].v_float)
565 return - (value2->data[0].v_float - value1->data[0].v_float > epsilon);
567 return value1->data[0].v_float - value2->data[0].v_float > epsilon;
571 param_double_init (GParamSpec *pspec)
573 GParamSpecDouble *dspec = G_PARAM_SPEC_DOUBLE (pspec);
575 dspec->minimum = -G_MAXDOUBLE;
576 dspec->maximum = G_MAXDOUBLE;
577 dspec->default_value = 0;
578 dspec->epsilon = G_DOUBLE_EPSILON;
582 param_double_set_default (GParamSpec *pspec,
585 value->data[0].v_double = G_PARAM_SPEC_DOUBLE (pspec)->default_value;
589 param_double_validate (GParamSpec *pspec,
592 GParamSpecDouble *dspec = G_PARAM_SPEC_DOUBLE (pspec);
593 gdouble oval = value->data[0].v_double;
595 value->data[0].v_double = CLAMP (value->data[0].v_double, dspec->minimum, dspec->maximum);
597 return value->data[0].v_double != oval;
601 param_double_values_cmp (GParamSpec *pspec,
602 const GValue *value1,
603 const GValue *value2)
605 gdouble epsilon = G_PARAM_SPEC_DOUBLE (pspec)->epsilon;
607 if (value1->data[0].v_double < value2->data[0].v_double)
608 return - (value2->data[0].v_double - value1->data[0].v_double > epsilon);
610 return value1->data[0].v_double - value2->data[0].v_double > epsilon;
614 param_string_init (GParamSpec *pspec)
616 GParamSpecString *sspec = G_PARAM_SPEC_STRING (pspec);
618 sspec->default_value = NULL;
619 sspec->cset_first = NULL;
620 sspec->cset_nth = NULL;
621 sspec->substitutor = '_';
622 sspec->null_fold_if_empty = FALSE;
623 sspec->ensure_non_null = FALSE;
627 param_string_finalize (GParamSpec *pspec)
629 GParamSpecString *sspec = G_PARAM_SPEC_STRING (pspec);
630 GParamSpecClass *parent_class = g_type_class_peek (g_type_parent (G_TYPE_PARAM_STRING));
632 g_free (sspec->default_value);
633 g_free (sspec->cset_first);
634 g_free (sspec->cset_nth);
635 sspec->default_value = NULL;
636 sspec->cset_first = NULL;
637 sspec->cset_nth = NULL;
639 parent_class->finalize (pspec);
643 param_string_set_default (GParamSpec *pspec,
646 value->data[0].v_pointer = g_strdup (G_PARAM_SPEC_STRING (pspec)->default_value);
650 param_string_validate (GParamSpec *pspec,
653 GParamSpecString *sspec = G_PARAM_SPEC_STRING (pspec);
654 gchar *string = value->data[0].v_pointer;
657 if (string && string[0])
661 if (sspec->cset_first && !strchr (sspec->cset_first, string[0]))
663 if (value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS)
665 value->data[0].v_pointer = g_strdup (string);
666 string = value->data[0].v_pointer;
667 value->data[1].v_uint &= ~G_VALUE_NOCOPY_CONTENTS;
669 string[0] = sspec->substitutor;
673 for (s = string + 1; *s; s++)
674 if (!strchr (sspec->cset_nth, *s))
676 if (value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS)
678 value->data[0].v_pointer = g_strdup (string);
679 s = (gchar*) value->data[0].v_pointer + (s - string);
680 string = value->data[0].v_pointer;
681 value->data[1].v_uint &= ~G_VALUE_NOCOPY_CONTENTS;
683 *s = sspec->substitutor;
687 if (sspec->null_fold_if_empty && string && string[0] == 0)
689 if (!(value->data[1].v_uint & G_VALUE_NOCOPY_CONTENTS))
690 g_free (value->data[0].v_pointer);
692 value->data[1].v_uint &= ~G_VALUE_NOCOPY_CONTENTS;
693 value->data[0].v_pointer = NULL;
695 string = value->data[0].v_pointer;
697 if (sspec->ensure_non_null && !string)
699 value->data[1].v_uint &= ~G_VALUE_NOCOPY_CONTENTS;
700 value->data[0].v_pointer = g_strdup ("");
702 string = value->data[0].v_pointer;
709 param_string_values_cmp (GParamSpec *pspec,
710 const GValue *value1,
711 const GValue *value2)
713 if (!value1->data[0].v_pointer)
714 return value2->data[0].v_pointer != NULL ? -1 : 0;
715 else if (!value2->data[0].v_pointer)
716 return value1->data[0].v_pointer != NULL;
718 return strcmp (value1->data[0].v_pointer, value2->data[0].v_pointer);
722 param_param_init (GParamSpec *pspec)
724 /* GParamSpecParam *spec = G_PARAM_SPEC_PARAM (pspec); */
728 param_param_set_default (GParamSpec *pspec,
731 value->data[0].v_pointer = NULL;
735 param_param_validate (GParamSpec *pspec,
738 /* GParamSpecParam *spec = G_PARAM_SPEC_PARAM (pspec); */
739 GParamSpec *param = value->data[0].v_pointer;
742 if (param && !g_value_type_compatible (G_PARAM_SPEC_TYPE (param), G_PARAM_SPEC_VALUE_TYPE (pspec)))
744 g_param_spec_unref (param);
745 value->data[0].v_pointer = NULL;
753 param_boxed_init (GParamSpec *pspec)
755 /* GParamSpecBoxed *bspec = G_PARAM_SPEC_BOXED (pspec); */
759 param_boxed_set_default (GParamSpec *pspec,
762 value->data[0].v_pointer = NULL;
766 param_boxed_validate (GParamSpec *pspec,
769 /* GParamSpecBoxed *bspec = G_PARAM_SPEC_BOXED (pspec); */
772 /* can't do a whole lot here since we haven't even G_BOXED_TYPE() */
778 param_boxed_values_cmp (GParamSpec *pspec,
779 const GValue *value1,
780 const GValue *value2)
782 guint8 *p1 = value1->data[0].v_pointer;
783 guint8 *p2 = value2->data[0].v_pointer;
785 /* not much to compare here, try to at least provide stable lesser/greater result */
787 return p1 < p2 ? -1 : p1 > p2;
791 param_pointer_init (GParamSpec *pspec)
793 /* GParamSpecPointer *spec = G_PARAM_SPEC_POINTER (pspec); */
797 param_pointer_set_default (GParamSpec *pspec,
800 value->data[0].v_pointer = NULL;
804 param_pointer_validate (GParamSpec *pspec,
807 /* GParamSpecPointer *spec = G_PARAM_SPEC_POINTER (pspec); */
814 param_pointer_values_cmp (GParamSpec *pspec,
815 const GValue *value1,
816 const GValue *value2)
818 guint8 *p1 = value1->data[0].v_pointer;
819 guint8 *p2 = value2->data[0].v_pointer;
821 /* not much to compare here, try to at least provide stable lesser/greater result */
823 return p1 < p2 ? -1 : p1 > p2;
827 param_value_array_init (GParamSpec *pspec)
829 GParamSpecValueArray *aspec = G_PARAM_SPEC_VALUE_ARRAY (pspec);
831 aspec->element_spec = NULL;
832 aspec->fixed_n_elements = 0; /* disable */
836 value_array_ensure_size (GValueArray *value_array,
837 guint fixed_n_elements)
841 if (fixed_n_elements)
843 while (value_array->n_values < fixed_n_elements)
845 g_value_array_append (value_array, NULL);
848 while (value_array->n_values > fixed_n_elements)
850 g_value_array_remove (value_array, value_array->n_values - 1);
858 param_value_array_finalize (GParamSpec *pspec)
860 GParamSpecValueArray *aspec = G_PARAM_SPEC_VALUE_ARRAY (pspec);
861 GParamSpecClass *parent_class = g_type_class_peek (g_type_parent (G_TYPE_PARAM_VALUE_ARRAY));
863 if (aspec->element_spec)
865 g_param_spec_unref (aspec->element_spec);
866 aspec->element_spec = NULL;
869 parent_class->finalize (pspec);
873 param_value_array_set_default (GParamSpec *pspec,
876 GParamSpecValueArray *aspec = G_PARAM_SPEC_VALUE_ARRAY (pspec);
878 if (!value->data[0].v_pointer && aspec->fixed_n_elements)
879 value->data[0].v_pointer = g_value_array_new (aspec->fixed_n_elements);
881 if (value->data[0].v_pointer)
883 /* g_value_reset (value); already done */
884 value_array_ensure_size (value->data[0].v_pointer, aspec->fixed_n_elements);
889 param_value_array_validate (GParamSpec *pspec,
892 GParamSpecValueArray *aspec = G_PARAM_SPEC_VALUE_ARRAY (pspec);
893 GValueArray *value_array = value->data[0].v_pointer;
896 if (!value->data[0].v_pointer && aspec->fixed_n_elements)
897 value->data[0].v_pointer = g_value_array_new (aspec->fixed_n_elements);
899 if (value->data[0].v_pointer)
901 /* ensure array size validity */
902 changed += value_array_ensure_size (value_array, aspec->fixed_n_elements);
904 /* ensure array values validity against a present element spec */
905 if (aspec->element_spec)
907 GParamSpec *element_spec = aspec->element_spec;
910 for (i = 0; i < value_array->n_values; i++)
912 GValue *element = value_array->values + i;
914 /* need to fixup value type, or ensure that the array value is initialized at all */
915 if (!g_value_type_compatible (G_VALUE_TYPE (element), G_PARAM_SPEC_VALUE_TYPE (element_spec)))
917 if (G_VALUE_TYPE (element) != 0)
918 g_value_unset (element);
919 g_value_init (element, G_PARAM_SPEC_VALUE_TYPE (element_spec));
920 g_param_value_set_default (element_spec, element);
923 /* validate array value against element_spec */
924 changed += g_param_value_validate (element_spec, element);
933 param_value_array_values_cmp (GParamSpec *pspec,
934 const GValue *value1,
935 const GValue *value2)
937 GParamSpecValueArray *aspec = G_PARAM_SPEC_VALUE_ARRAY (pspec);
938 GValueArray *value_array1 = value1->data[0].v_pointer;
939 GValueArray *value_array2 = value2->data[0].v_pointer;
941 if (!value_array1 || !value_array2)
942 return value_array2 ? -1 : value_array1 != value_array2;
944 if (value_array1->n_values != value_array2->n_values)
945 return value_array1->n_values < value_array2->n_values ? -1 : 1;
946 else if (!aspec->element_spec)
948 /* we need an element specification for comparisons, so there's not much
949 * to compare here, try to at least provide stable lesser/greater result
951 return value_array1->n_values < value_array2->n_values ? -1 : value_array1->n_values > value_array2->n_values;
953 else /* value_array1->n_values == value_array2->n_values */
957 for (i = 0; i < value_array1->n_values; i++)
959 GValue *element1 = value_array1->values + i;
960 GValue *element2 = value_array2->values + i;
963 /* need corresponding element types, provide stable result otherwise */
964 if (G_VALUE_TYPE (element1) != G_VALUE_TYPE (element2))
965 return G_VALUE_TYPE (element1) < G_VALUE_TYPE (element2) ? -1 : 1;
966 cmp = g_param_values_cmp (aspec->element_spec, element1, element2);
975 param_object_init (GParamSpec *pspec)
977 /* GParamSpecObject *ospec = G_PARAM_SPEC_OBJECT (pspec); */
981 param_object_set_default (GParamSpec *pspec,
984 value->data[0].v_pointer = NULL;
988 param_object_validate (GParamSpec *pspec,
991 GParamSpecObject *ospec = G_PARAM_SPEC_OBJECT (pspec);
992 GObject *object = value->data[0].v_pointer;
995 if (object && !g_value_type_compatible (G_OBJECT_TYPE (object), G_PARAM_SPEC_VALUE_TYPE (ospec)))
997 g_object_unref (object);
998 value->data[0].v_pointer = NULL;
1006 param_object_values_cmp (GParamSpec *pspec,
1007 const GValue *value1,
1008 const GValue *value2)
1010 guint8 *p1 = value1->data[0].v_pointer;
1011 guint8 *p2 = value2->data[0].v_pointer;
1013 /* not much to compare here, try to at least provide stable lesser/greater result */
1015 return p1 < p2 ? -1 : p1 > p2;
1019 param_override_init (GParamSpec *pspec)
1021 /* GParamSpecOverride *ospec = G_PARAM_SPEC_OVERRIDE (pspec); */
1025 param_override_finalize (GParamSpec *pspec)
1027 GParamSpecOverride *ospec = G_PARAM_SPEC_OVERRIDE (pspec);
1028 GParamSpecClass *parent_class = g_type_class_peek (g_type_parent (G_TYPE_PARAM_OVERRIDE));
1030 if (ospec->overridden)
1032 g_param_spec_unref (ospec->overridden);
1033 ospec->overridden = NULL;
1036 parent_class->finalize (pspec);
1040 param_override_set_default (GParamSpec *pspec,
1043 GParamSpecOverride *ospec = G_PARAM_SPEC_OVERRIDE (pspec);
1045 g_param_value_set_default (ospec->overridden, value);
1049 param_override_validate (GParamSpec *pspec,
1052 GParamSpecOverride *ospec = G_PARAM_SPEC_OVERRIDE (pspec);
1054 return g_param_value_validate (ospec->overridden, value);
1058 param_override_values_cmp (GParamSpec *pspec,
1059 const GValue *value1,
1060 const GValue *value2)
1062 GParamSpecOverride *ospec = G_PARAM_SPEC_OVERRIDE (pspec);
1064 return g_param_values_cmp (ospec->overridden, value1, value2);
1068 param_gtype_init (GParamSpec *pspec)
1073 param_gtype_set_default (GParamSpec *pspec,
1076 GParamSpecGType *tspec = G_PARAM_SPEC_GTYPE (pspec);
1078 value->data[0].v_long = tspec->is_a_type;
1082 param_gtype_validate (GParamSpec *pspec,
1085 GParamSpecGType *tspec = G_PARAM_SPEC_GTYPE (pspec);
1086 GType gtype = value->data[0].v_long;
1089 if (tspec->is_a_type != G_TYPE_NONE && !g_type_is_a (gtype, tspec->is_a_type))
1091 value->data[0].v_long = tspec->is_a_type;
1099 param_gtype_values_cmp (GParamSpec *pspec,
1100 const GValue *value1,
1101 const GValue *value2)
1103 GType p1 = value1->data[0].v_long;
1104 GType p2 = value2->data[0].v_long;
1106 /* not much to compare here, try to at least provide stable lesser/greater result */
1108 return p1 < p2 ? -1 : p1 > p2;
1111 /* --- type initialization --- */
1113 GType *g_param_spec_types = NULL;
1114 #endif /* EMULATOR */
1116 #ifdef __SYMBIAN32__
1117 EXPORT_C GType **_g_param_spec_types(void)
1119 return &g_param_spec_types;
1121 #endif//__SYMBIAN32__
1124 PLS(pspec_info,g_param_spec_types_init ,GParamSpecTypeInfo)
1125 const GParamSpecTypeInfo temp_pspec_info = {
1126 sizeof (GParamSpecValueArray), /* instance_size */
1127 0, /* n_preallocs */
1128 param_value_array_init, /* instance_init */
1129 0xdeadbeef, /* value_type, assigned further down */
1130 param_value_array_finalize, /* finalize */
1131 param_value_array_set_default, /* value_set_default */
1132 param_value_array_validate, /* value_validate */
1133 param_value_array_values_cmp, /* values_cmp */
1135 #endif /* EMULATOR */
1138 g_param_spec_types_init (void)
1140 const guint n_types = 22;
1141 GType type, *spec_types, *spec_types_bound;
1143 g_param_spec_types = g_new0 (GType, n_types);
1144 spec_types = g_param_spec_types;
1145 spec_types_bound = g_param_spec_types + n_types;
1147 /* G_TYPE_PARAM_CHAR
1150 static const GParamSpecTypeInfo pspec_info = {
1151 sizeof (GParamSpecChar), /* instance_size */
1152 16, /* n_preallocs */
1153 param_char_init, /* instance_init */
1154 G_TYPE_CHAR, /* value_type */
1155 NULL, /* finalize */
1156 param_char_set_default, /* value_set_default */
1157 param_char_validate, /* value_validate */
1158 param_int_values_cmp, /* values_cmp */
1160 type = g_param_type_register_static (g_intern_static_string ("GParamChar"), &pspec_info);
1161 *spec_types++ = type;
1162 g_assert (type == G_TYPE_PARAM_CHAR);
1165 /* G_TYPE_PARAM_UCHAR
1168 static const GParamSpecTypeInfo pspec_info = {
1169 sizeof (GParamSpecUChar), /* instance_size */
1170 16, /* n_preallocs */
1171 param_uchar_init, /* instance_init */
1172 G_TYPE_UCHAR, /* value_type */
1173 NULL, /* finalize */
1174 param_uchar_set_default, /* value_set_default */
1175 param_uchar_validate, /* value_validate */
1176 param_uint_values_cmp, /* values_cmp */
1178 type = g_param_type_register_static (g_intern_static_string ("GParamUChar"), &pspec_info);
1179 *spec_types++ = type;
1180 g_assert (type == G_TYPE_PARAM_UCHAR);
1183 /* G_TYPE_PARAM_BOOLEAN
1186 static const GParamSpecTypeInfo pspec_info = {
1187 sizeof (GParamSpecBoolean), /* instance_size */
1188 16, /* n_preallocs */
1189 NULL, /* instance_init */
1190 G_TYPE_BOOLEAN, /* value_type */
1191 NULL, /* finalize */
1192 param_boolean_set_default, /* value_set_default */
1193 param_boolean_validate, /* value_validate */
1194 param_int_values_cmp, /* values_cmp */
1196 type = g_param_type_register_static (g_intern_static_string ("GParamBoolean"), &pspec_info);
1197 *spec_types++ = type;
1198 g_assert (type == G_TYPE_PARAM_BOOLEAN);
1204 static const GParamSpecTypeInfo pspec_info = {
1205 sizeof (GParamSpecInt), /* instance_size */
1206 16, /* n_preallocs */
1207 param_int_init, /* instance_init */
1208 G_TYPE_INT, /* value_type */
1209 NULL, /* finalize */
1210 param_int_set_default, /* value_set_default */
1211 param_int_validate, /* value_validate */
1212 param_int_values_cmp, /* values_cmp */
1214 type = g_param_type_register_static (g_intern_static_string ("GParamInt"), &pspec_info);
1215 *spec_types++ = type;
1216 g_assert (type == G_TYPE_PARAM_INT);
1219 /* G_TYPE_PARAM_UINT
1222 static const GParamSpecTypeInfo pspec_info = {
1223 sizeof (GParamSpecUInt), /* instance_size */
1224 16, /* n_preallocs */
1225 param_uint_init, /* instance_init */
1226 G_TYPE_UINT, /* value_type */
1227 NULL, /* finalize */
1228 param_uint_set_default, /* value_set_default */
1229 param_uint_validate, /* value_validate */
1230 param_uint_values_cmp, /* values_cmp */
1232 type = g_param_type_register_static (g_intern_static_string ("GParamUInt"), &pspec_info);
1233 *spec_types++ = type;
1234 g_assert (type == G_TYPE_PARAM_UINT);
1237 /* G_TYPE_PARAM_LONG
1240 static const GParamSpecTypeInfo pspec_info = {
1241 sizeof (GParamSpecLong), /* instance_size */
1242 16, /* n_preallocs */
1243 param_long_init, /* instance_init */
1244 G_TYPE_LONG, /* value_type */
1245 NULL, /* finalize */
1246 param_long_set_default, /* value_set_default */
1247 param_long_validate, /* value_validate */
1248 param_long_values_cmp, /* values_cmp */
1250 type = g_param_type_register_static (g_intern_static_string ("GParamLong"), &pspec_info);
1251 *spec_types++ = type;
1252 g_assert (type == G_TYPE_PARAM_LONG);
1255 /* G_TYPE_PARAM_ULONG
1258 static const GParamSpecTypeInfo pspec_info = {
1259 sizeof (GParamSpecULong), /* instance_size */
1260 16, /* n_preallocs */
1261 param_ulong_init, /* instance_init */
1262 G_TYPE_ULONG, /* value_type */
1263 NULL, /* finalize */
1264 param_ulong_set_default, /* value_set_default */
1265 param_ulong_validate, /* value_validate */
1266 param_ulong_values_cmp, /* values_cmp */
1268 type = g_param_type_register_static (g_intern_static_string ("GParamULong"), &pspec_info);
1269 *spec_types++ = type;
1270 g_assert (type == G_TYPE_PARAM_ULONG);
1273 /* G_TYPE_PARAM_INT64
1276 static const GParamSpecTypeInfo pspec_info = {
1277 sizeof (GParamSpecInt64), /* instance_size */
1278 16, /* n_preallocs */
1279 param_int64_init, /* instance_init */
1280 G_TYPE_INT64, /* value_type */
1281 NULL, /* finalize */
1282 param_int64_set_default, /* value_set_default */
1283 param_int64_validate, /* value_validate */
1284 param_int64_values_cmp, /* values_cmp */
1286 type = g_param_type_register_static (g_intern_static_string ("GParamInt64"), &pspec_info);
1287 *spec_types++ = type;
1288 g_assert (type == G_TYPE_PARAM_INT64);
1291 /* G_TYPE_PARAM_UINT64
1294 static const GParamSpecTypeInfo pspec_info = {
1295 sizeof (GParamSpecUInt64), /* instance_size */
1296 16, /* n_preallocs */
1297 param_uint64_init, /* instance_init */
1298 G_TYPE_UINT64, /* value_type */
1299 NULL, /* finalize */
1300 param_uint64_set_default, /* value_set_default */
1301 param_uint64_validate, /* value_validate */
1302 param_uint64_values_cmp, /* values_cmp */
1304 type = g_param_type_register_static (g_intern_static_string ("GParamUInt64"), &pspec_info);
1305 *spec_types++ = type;
1306 g_assert (type == G_TYPE_PARAM_UINT64);
1309 /* G_TYPE_PARAM_UNICHAR
1312 static const GParamSpecTypeInfo pspec_info = {
1313 sizeof (GParamSpecUnichar), /* instance_size */
1314 16, /* n_preallocs */
1315 param_unichar_init, /* instance_init */
1316 G_TYPE_UINT, /* value_type */
1317 NULL, /* finalize */
1318 param_unichar_set_default, /* value_set_default */
1319 param_unichar_validate, /* value_validate */
1320 param_unichar_values_cmp, /* values_cmp */
1322 type = g_param_type_register_static (g_intern_static_string ("GParamUnichar"), &pspec_info);
1323 *spec_types++ = type;
1324 g_assert (type == G_TYPE_PARAM_UNICHAR);
1327 /* G_TYPE_PARAM_ENUM
1330 static const GParamSpecTypeInfo pspec_info = {
1331 sizeof (GParamSpecEnum), /* instance_size */
1332 16, /* n_preallocs */
1333 param_enum_init, /* instance_init */
1334 G_TYPE_ENUM, /* value_type */
1335 param_enum_finalize, /* finalize */
1336 param_enum_set_default, /* value_set_default */
1337 param_enum_validate, /* value_validate */
1338 param_long_values_cmp, /* values_cmp */
1340 type = g_param_type_register_static (g_intern_static_string ("GParamEnum"), &pspec_info);
1341 *spec_types++ = type;
1342 g_assert (type == G_TYPE_PARAM_ENUM);
1345 /* G_TYPE_PARAM_FLAGS
1348 static const GParamSpecTypeInfo pspec_info = {
1349 sizeof (GParamSpecFlags), /* instance_size */
1350 16, /* n_preallocs */
1351 param_flags_init, /* instance_init */
1352 G_TYPE_FLAGS, /* value_type */
1353 param_flags_finalize, /* finalize */
1354 param_flags_set_default, /* value_set_default */
1355 param_flags_validate, /* value_validate */
1356 param_ulong_values_cmp, /* values_cmp */
1358 type = g_param_type_register_static (g_intern_static_string ("GParamFlags"), &pspec_info);
1359 *spec_types++ = type;
1360 g_assert (type == G_TYPE_PARAM_FLAGS);
1363 /* G_TYPE_PARAM_FLOAT
1366 static const GParamSpecTypeInfo pspec_info = {
1367 sizeof (GParamSpecFloat), /* instance_size */
1368 16, /* n_preallocs */
1369 param_float_init, /* instance_init */
1370 G_TYPE_FLOAT, /* value_type */
1371 NULL, /* finalize */
1372 param_float_set_default, /* value_set_default */
1373 param_float_validate, /* value_validate */
1374 param_float_values_cmp, /* values_cmp */
1376 type = g_param_type_register_static (g_intern_static_string ("GParamFloat"), &pspec_info);
1377 *spec_types++ = type;
1378 g_assert (type == G_TYPE_PARAM_FLOAT);
1381 /* G_TYPE_PARAM_DOUBLE
1384 static const GParamSpecTypeInfo pspec_info = {
1385 sizeof (GParamSpecDouble), /* instance_size */
1386 16, /* n_preallocs */
1387 param_double_init, /* instance_init */
1388 G_TYPE_DOUBLE, /* value_type */
1389 NULL, /* finalize */
1390 param_double_set_default, /* value_set_default */
1391 param_double_validate, /* value_validate */
1392 param_double_values_cmp, /* values_cmp */
1394 type = g_param_type_register_static (g_intern_static_string ("GParamDouble"), &pspec_info);
1395 *spec_types++ = type;
1396 g_assert (type == G_TYPE_PARAM_DOUBLE);
1399 /* G_TYPE_PARAM_STRING
1402 static const GParamSpecTypeInfo pspec_info = {
1403 sizeof (GParamSpecString), /* instance_size */
1404 16, /* n_preallocs */
1405 param_string_init, /* instance_init */
1406 G_TYPE_STRING, /* value_type */
1407 param_string_finalize, /* finalize */
1408 param_string_set_default, /* value_set_default */
1409 param_string_validate, /* value_validate */
1410 param_string_values_cmp, /* values_cmp */
1412 type = g_param_type_register_static (g_intern_static_string ("GParamString"), &pspec_info);
1413 *spec_types++ = type;
1414 g_assert (type == G_TYPE_PARAM_STRING);
1417 /* G_TYPE_PARAM_PARAM
1420 static const GParamSpecTypeInfo pspec_info = {
1421 sizeof (GParamSpecParam), /* instance_size */
1422 16, /* n_preallocs */
1423 param_param_init, /* instance_init */
1424 G_TYPE_PARAM, /* value_type */
1425 NULL, /* finalize */
1426 param_param_set_default, /* value_set_default */
1427 param_param_validate, /* value_validate */
1428 param_pointer_values_cmp, /* values_cmp */
1430 type = g_param_type_register_static (g_intern_static_string ("GParamParam"), &pspec_info);
1431 *spec_types++ = type;
1432 g_assert (type == G_TYPE_PARAM_PARAM);
1435 /* G_TYPE_PARAM_BOXED
1438 static const GParamSpecTypeInfo pspec_info = {
1439 sizeof (GParamSpecBoxed), /* instance_size */
1440 4, /* n_preallocs */
1441 param_boxed_init, /* instance_init */
1442 G_TYPE_BOXED, /* value_type */
1443 NULL, /* finalize */
1444 param_boxed_set_default, /* value_set_default */
1445 param_boxed_validate, /* value_validate */
1446 param_boxed_values_cmp, /* values_cmp */
1448 type = g_param_type_register_static (g_intern_static_string ("GParamBoxed"), &pspec_info);
1449 *spec_types++ = type;
1450 g_assert (type == G_TYPE_PARAM_BOXED);
1453 /* G_TYPE_PARAM_POINTER
1456 static const GParamSpecTypeInfo pspec_info = {
1457 sizeof (GParamSpecPointer), /* instance_size */
1458 0, /* n_preallocs */
1459 param_pointer_init, /* instance_init */
1460 G_TYPE_POINTER, /* value_type */
1461 NULL, /* finalize */
1462 param_pointer_set_default, /* value_set_default */
1463 param_pointer_validate, /* value_validate */
1464 param_pointer_values_cmp, /* values_cmp */
1466 type = g_param_type_register_static (g_intern_static_string ("GParamPointer"), &pspec_info);
1467 *spec_types++ = type;
1468 g_assert (type == G_TYPE_PARAM_POINTER);
1471 /* G_TYPE_PARAM_VALUE_ARRAY
1475 #define pspec_info (*FUNCTION_NAME(pspec_info,g_param_spec_types_init )())
1477 static /* const */ GParamSpecTypeInfo pspec_info = {
1478 sizeof (GParamSpecValueArray), /* instance_size */
1479 0, /* n_preallocs */
1480 param_value_array_init, /* instance_init */
1481 0xdeadbeef, /* value_type, assigned further down */
1482 param_value_array_finalize, /* finalize */
1483 param_value_array_set_default, /* value_set_default */
1484 param_value_array_validate, /* value_validate */
1485 param_value_array_values_cmp, /* values_cmp */
1487 #endif /*EMULATOR */
1488 pspec_info.value_type = G_TYPE_VALUE_ARRAY;
1489 type = g_param_type_register_static (g_intern_static_string ("GParamValueArray"), &pspec_info);
1490 *spec_types++ = type;
1491 g_assert (type == G_TYPE_PARAM_VALUE_ARRAY);
1494 #endif /* EMULATOR */
1497 /* G_TYPE_PARAM_OBJECT
1500 static const GParamSpecTypeInfo pspec_info = {
1501 sizeof (GParamSpecObject), /* instance_size */
1502 16, /* n_preallocs */
1503 param_object_init, /* instance_init */
1504 G_TYPE_OBJECT, /* value_type */
1505 NULL, /* finalize */
1506 param_object_set_default, /* value_set_default */
1507 param_object_validate, /* value_validate */
1508 param_object_values_cmp, /* values_cmp */
1510 type = g_param_type_register_static (g_intern_static_string ("GParamObject"), &pspec_info);
1511 *spec_types++ = type;
1512 g_assert (type == G_TYPE_PARAM_OBJECT);
1515 /* G_TYPE_PARAM_OVERRIDE
1518 static const GParamSpecTypeInfo pspec_info = {
1519 sizeof (GParamSpecOverride), /* instance_size */
1520 16, /* n_preallocs */
1521 param_override_init, /* instance_init */
1522 G_TYPE_NONE, /* value_type */
1523 param_override_finalize, /* finalize */
1524 param_override_set_default, /* value_set_default */
1525 param_override_validate, /* value_validate */
1526 param_override_values_cmp, /* values_cmp */
1528 type = g_param_type_register_static (g_intern_static_string ("GParamOverride"), &pspec_info);
1529 *spec_types++ = type;
1530 g_assert (type == G_TYPE_PARAM_OVERRIDE);
1533 /* G_TYPE_PARAM_GTYPE
1536 GParamSpecTypeInfo pspec_info = {
1537 sizeof (GParamSpecGType), /* instance_size */
1538 0, /* n_preallocs */
1539 param_gtype_init, /* instance_init */
1540 0xdeadbeef, /* value_type, assigned further down */
1541 NULL, /* finalize */
1542 param_gtype_set_default, /* value_set_default */
1543 param_gtype_validate, /* value_validate */
1544 param_gtype_values_cmp, /* values_cmp */
1546 pspec_info.value_type = G_TYPE_GTYPE;
1547 type = g_param_type_register_static (g_intern_static_string ("GParamGType"), &pspec_info);
1548 *spec_types++ = type;
1549 g_assert (type == G_TYPE_PARAM_GTYPE);
1552 g_assert (spec_types == spec_types_bound);
1555 /* --- GParamSpec initialization --- */
1558 * g_param_spec_char:
1559 * @name: canonical name of the property specified
1560 * @nick: nick name for the property specified
1561 * @blurb: description of the property specified
1562 * @minimum: minimum value for the property specified
1563 * @maximum: maximum value for the property specified
1564 * @default_value: default value for the property specified
1565 * @flags: flags for the property specified
1567 * Creates a new #GParamSpecChar instance specifying a %G_TYPE_CHAR property.
1569 * Returns: a newly created parameter specification
1571 EXPORT_C GParamSpec*
1572 g_param_spec_char (const gchar *name,
1577 gint8 default_value,
1580 GParamSpecChar *cspec;
1582 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1584 cspec = g_param_spec_internal (G_TYPE_PARAM_CHAR,
1590 cspec->minimum = minimum;
1591 cspec->maximum = maximum;
1592 cspec->default_value = default_value;
1594 return G_PARAM_SPEC (cspec);
1598 * g_param_spec_uchar:
1599 * @name: canonical name of the property specified
1600 * @nick: nick name for the property specified
1601 * @blurb: description of the property specified
1602 * @minimum: minimum value for the property specified
1603 * @maximum: maximum value for the property specified
1604 * @default_value: default value for the property specified
1605 * @flags: flags for the property specified
1607 * Creates a new #GParamSpecUChar instance specifying a %G_TYPE_UCHAR property.
1609 * Returns: a newly created parameter specification
1611 EXPORT_C GParamSpec*
1612 g_param_spec_uchar (const gchar *name,
1617 guint8 default_value,
1620 GParamSpecUChar *uspec;
1622 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1624 uspec = g_param_spec_internal (G_TYPE_PARAM_UCHAR,
1630 uspec->minimum = minimum;
1631 uspec->maximum = maximum;
1632 uspec->default_value = default_value;
1634 return G_PARAM_SPEC (uspec);
1638 * g_param_spec_boolean:
1639 * @name: canonical name of the property specified
1640 * @nick: nick name for the property specified
1641 * @blurb: description of the property specified
1642 * @default_value: default value for the property specified
1643 * @flags: flags for the property specified
1645 * Creates a new #GParamSpecBoolean instance specifying a %G_TYPE_BOOLEAN
1648 * See g_param_spec_internal() for details on property names.
1650 * Returns: a newly created parameter specification
1652 EXPORT_C GParamSpec*
1653 g_param_spec_boolean (const gchar *name,
1656 gboolean default_value,
1659 GParamSpecBoolean *bspec;
1661 g_return_val_if_fail (default_value == TRUE || default_value == FALSE, NULL);
1663 bspec = g_param_spec_internal (G_TYPE_PARAM_BOOLEAN,
1669 bspec->default_value = default_value;
1671 return G_PARAM_SPEC (bspec);
1676 * @name: canonical name of the property specified
1677 * @nick: nick name for the property specified
1678 * @blurb: description of the property specified
1679 * @minimum: minimum value for the property specified
1680 * @maximum: maximum value for the property specified
1681 * @default_value: default value for the property specified
1682 * @flags: flags for the property specified
1684 * Creates a new #GParamSpecInt instance specifying a %G_TYPE_INT property.
1686 * See g_param_spec_internal() for details on property names.
1688 * Returns: a newly created parameter specification
1690 EXPORT_C GParamSpec*
1691 g_param_spec_int (const gchar *name,
1699 GParamSpecInt *ispec;
1701 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1703 ispec = g_param_spec_internal (G_TYPE_PARAM_INT,
1709 ispec->minimum = minimum;
1710 ispec->maximum = maximum;
1711 ispec->default_value = default_value;
1713 return G_PARAM_SPEC (ispec);
1717 * g_param_spec_uint:
1718 * @name: canonical name of the property specified
1719 * @nick: nick name for the property specified
1720 * @blurb: description of the property specified
1721 * @minimum: minimum value for the property specified
1722 * @maximum: maximum value for the property specified
1723 * @default_value: default value for the property specified
1724 * @flags: flags for the property specified
1726 * Creates a new #GParamSpecUInt instance specifying a %G_TYPE_UINT property.
1728 * See g_param_spec_internal() for details on property names.
1730 * Returns: a newly created parameter specification
1732 EXPORT_C GParamSpec*
1733 g_param_spec_uint (const gchar *name,
1738 guint default_value,
1741 GParamSpecUInt *uspec;
1743 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1745 uspec = g_param_spec_internal (G_TYPE_PARAM_UINT,
1751 uspec->minimum = minimum;
1752 uspec->maximum = maximum;
1753 uspec->default_value = default_value;
1755 return G_PARAM_SPEC (uspec);
1759 * g_param_spec_long:
1760 * @name: canonical name of the property specified
1761 * @nick: nick name for the property specified
1762 * @blurb: description of the property specified
1763 * @minimum: minimum value for the property specified
1764 * @maximum: maximum value for the property specified
1765 * @default_value: default value for the property specified
1766 * @flags: flags for the property specified
1768 * Creates a new #GParamSpecLong instance specifying a %G_TYPE_LONG property.
1770 * See g_param_spec_internal() for details on property names.
1772 * Returns: a newly created parameter specification
1774 EXPORT_C GParamSpec*
1775 g_param_spec_long (const gchar *name,
1780 glong default_value,
1783 GParamSpecLong *lspec;
1785 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1787 lspec = g_param_spec_internal (G_TYPE_PARAM_LONG,
1793 lspec->minimum = minimum;
1794 lspec->maximum = maximum;
1795 lspec->default_value = default_value;
1797 return G_PARAM_SPEC (lspec);
1801 * g_param_spec_ulong:
1802 * @name: canonical name of the property specified
1803 * @nick: nick name for the property specified
1804 * @blurb: description of the property specified
1805 * @minimum: minimum value for the property specified
1806 * @maximum: maximum value for the property specified
1807 * @default_value: default value for the property specified
1808 * @flags: flags for the property specified
1810 * Creates a new #GParamSpecULong instance specifying a %G_TYPE_ULONG
1813 * See g_param_spec_internal() for details on property names.
1815 * Returns: a newly created parameter specification
1817 EXPORT_C GParamSpec*
1818 g_param_spec_ulong (const gchar *name,
1823 gulong default_value,
1826 GParamSpecULong *uspec;
1828 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1830 uspec = g_param_spec_internal (G_TYPE_PARAM_ULONG,
1836 uspec->minimum = minimum;
1837 uspec->maximum = maximum;
1838 uspec->default_value = default_value;
1840 return G_PARAM_SPEC (uspec);
1844 * g_param_spec_int64:
1845 * @name: canonical name of the property specified
1846 * @nick: nick name for the property specified
1847 * @blurb: description of the property specified
1848 * @minimum: minimum value for the property specified
1849 * @maximum: maximum value for the property specified
1850 * @default_value: default value for the property specified
1851 * @flags: flags for the property specified
1853 * Creates a new #GParamSpecInt64 instance specifying a %G_TYPE_INT64 property.
1855 * See g_param_spec_internal() for details on property names.
1857 * Returns: a newly created parameter specification
1859 EXPORT_C GParamSpec*
1860 g_param_spec_int64 (const gchar *name,
1865 gint64 default_value,
1868 GParamSpecInt64 *lspec;
1870 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1872 lspec = g_param_spec_internal (G_TYPE_PARAM_INT64,
1878 lspec->minimum = minimum;
1879 lspec->maximum = maximum;
1880 lspec->default_value = default_value;
1882 return G_PARAM_SPEC (lspec);
1886 * g_param_spec_uint64:
1887 * @name: canonical name of the property specified
1888 * @nick: nick name for the property specified
1889 * @blurb: description of the property specified
1890 * @minimum: minimum value for the property specified
1891 * @maximum: maximum value for the property specified
1892 * @default_value: default value for the property specified
1893 * @flags: flags for the property specified
1895 * Creates a new #GParamSpecUInt64 instance specifying a %G_TYPE_UINT64
1898 * See g_param_spec_internal() for details on property names.
1900 * Returns: a newly created parameter specification
1902 EXPORT_C GParamSpec*
1903 g_param_spec_uint64 (const gchar *name,
1908 guint64 default_value,
1911 GParamSpecUInt64 *uspec;
1913 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
1915 uspec = g_param_spec_internal (G_TYPE_PARAM_UINT64,
1921 uspec->minimum = minimum;
1922 uspec->maximum = maximum;
1923 uspec->default_value = default_value;
1925 return G_PARAM_SPEC (uspec);
1929 * g_param_spec_unichar:
1930 * @name: canonical name of the property specified
1931 * @nick: nick name for the property specified
1932 * @blurb: description of the property specified
1933 * @default_value: default value for the property specified
1934 * @flags: flags for the property specified
1936 * Creates a new #GParamSpecUnichar instance specifying a %G_TYPE_UINT
1937 * property. #GValue structures for this property can be accessed with
1938 * g_value_set_uint() and g_value_get_uint().
1940 * See g_param_spec_internal() for details on property names.
1942 * Returns: a newly created parameter specification
1944 EXPORT_C GParamSpec*
1945 g_param_spec_unichar (const gchar *name,
1948 gunichar default_value,
1951 GParamSpecUnichar *uspec;
1953 uspec = g_param_spec_internal (G_TYPE_PARAM_UNICHAR,
1959 uspec->default_value = default_value;
1961 return G_PARAM_SPEC (uspec);
1965 * g_param_spec_enum:
1966 * @name: canonical name of the property specified
1967 * @nick: nick name for the property specified
1968 * @blurb: description of the property specified
1969 * @enum_type: a #GType derived from %G_TYPE_ENUM
1970 * @default_value: default value for the property specified
1971 * @flags: flags for the property specified
1973 * Creates a new #GParamSpecEnum instance specifying a %G_TYPE_ENUM
1976 * See g_param_spec_internal() for details on property names.
1978 * Returns: a newly created parameter specification
1980 EXPORT_C GParamSpec*
1981 g_param_spec_enum (const gchar *name,
1988 GParamSpecEnum *espec;
1989 GEnumClass *enum_class;
1991 g_return_val_if_fail (G_TYPE_IS_ENUM (enum_type), NULL);
1993 enum_class = g_type_class_ref (enum_type);
1995 g_return_val_if_fail (g_enum_get_value (enum_class, default_value) != NULL, NULL);
1997 espec = g_param_spec_internal (G_TYPE_PARAM_ENUM,
2003 espec->enum_class = enum_class;
2004 espec->default_value = default_value;
2005 G_PARAM_SPEC (espec)->value_type = enum_type;
2007 return G_PARAM_SPEC (espec);
2011 * g_param_spec_flags:
2012 * @name: canonical name of the property specified
2013 * @nick: nick name for the property specified
2014 * @blurb: description of the property specified
2015 * @flags_type: a #GType derived from %G_TYPE_FLAGS
2016 * @default_value: default value for the property specified
2017 * @flags: flags for the property specified
2019 * Creates a new #GParamSpecFlags instance specifying a %G_TYPE_FLAGS
2022 * See g_param_spec_internal() for details on property names.
2024 * Returns: a newly created parameter specification
2026 EXPORT_C GParamSpec*
2027 g_param_spec_flags (const gchar *name,
2031 guint default_value,
2034 GParamSpecFlags *fspec;
2035 GFlagsClass *flags_class;
2037 g_return_val_if_fail (G_TYPE_IS_FLAGS (flags_type), NULL);
2039 flags_class = g_type_class_ref (flags_type);
2041 g_return_val_if_fail ((default_value & flags_class->mask) == default_value, NULL);
2043 fspec = g_param_spec_internal (G_TYPE_PARAM_FLAGS,
2049 fspec->flags_class = flags_class;
2050 fspec->default_value = default_value;
2051 G_PARAM_SPEC (fspec)->value_type = flags_type;
2053 return G_PARAM_SPEC (fspec);
2057 * g_param_spec_float:
2058 * @name: canonical name of the property specified
2059 * @nick: nick name for the property specified
2060 * @blurb: description of the property specified
2061 * @minimum: minimum value for the property specified
2062 * @maximum: maximum value for the property specified
2063 * @default_value: default value for the property specified
2064 * @flags: flags for the property specified
2066 * Creates a new #GParamSpecFloat instance specifying a %G_TYPE_FLOAT property.
2068 * See g_param_spec_internal() for details on property names.
2070 * Returns: a newly created parameter specification
2072 EXPORT_C GParamSpec*
2073 g_param_spec_float (const gchar *name,
2078 gfloat default_value,
2081 GParamSpecFloat *fspec;
2083 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
2085 fspec = g_param_spec_internal (G_TYPE_PARAM_FLOAT,
2091 fspec->minimum = minimum;
2092 fspec->maximum = maximum;
2093 fspec->default_value = default_value;
2095 return G_PARAM_SPEC (fspec);
2099 * g_param_spec_double:
2100 * @name: canonical name of the property specified
2101 * @nick: nick name for the property specified
2102 * @blurb: description of the property specified
2103 * @minimum: minimum value for the property specified
2104 * @maximum: maximum value for the property specified
2105 * @default_value: default value for the property specified
2106 * @flags: flags for the property specified
2108 * Creates a new #GParamSpecDouble instance specifying a %G_TYPE_DOUBLE
2111 * See g_param_spec_internal() for details on property names.
2113 * Returns: a newly created parameter specification
2115 EXPORT_C GParamSpec*
2116 g_param_spec_double (const gchar *name,
2121 gdouble default_value,
2124 GParamSpecDouble *dspec;
2126 g_return_val_if_fail (default_value >= minimum && default_value <= maximum, NULL);
2128 dspec = g_param_spec_internal (G_TYPE_PARAM_DOUBLE,
2134 dspec->minimum = minimum;
2135 dspec->maximum = maximum;
2136 dspec->default_value = default_value;
2138 return G_PARAM_SPEC (dspec);
2142 * g_param_spec_string:
2143 * @name: canonical name of the property specified
2144 * @nick: nick name for the property specified
2145 * @blurb: description of the property specified
2146 * @default_value: default value for the property specified
2147 * @flags: flags for the property specified
2149 * Creates a new #GParamSpecString instance.
2151 * See g_param_spec_internal() for details on property names.
2153 * Returns: a newly created parameter specification
2155 EXPORT_C GParamSpec*
2156 g_param_spec_string (const gchar *name,
2159 const gchar *default_value,
2162 GParamSpecString *sspec = g_param_spec_internal (G_TYPE_PARAM_STRING,
2167 g_free (sspec->default_value);
2168 sspec->default_value = g_strdup (default_value);
2170 return G_PARAM_SPEC (sspec);
2174 * g_param_spec_param:
2175 * @name: canonical name of the property specified
2176 * @nick: nick name for the property specified
2177 * @blurb: description of the property specified
2178 * @param_type: a #GType derived from %G_TYPE_PARAM
2179 * @flags: flags for the property specified
2181 * Creates a new #GParamSpecParam instance specifying a %G_TYPE_PARAM
2184 * See g_param_spec_internal() for details on property names.
2186 * Returns: a newly created parameter specification
2188 EXPORT_C GParamSpec*
2189 g_param_spec_param (const gchar *name,
2195 GParamSpecParam *pspec;
2197 g_return_val_if_fail (G_TYPE_IS_PARAM (param_type), NULL);
2199 pspec = g_param_spec_internal (G_TYPE_PARAM_PARAM,
2204 G_PARAM_SPEC (pspec)->value_type = param_type;
2206 return G_PARAM_SPEC (pspec);
2210 * g_param_spec_boxed:
2211 * @name: canonical name of the property specified
2212 * @nick: nick name for the property specified
2213 * @blurb: description of the property specified
2214 * @boxed_type: %G_TYPE_BOXED derived type of this property
2215 * @flags: flags for the property specified
2217 * Creates a new #GParamSpecBoxed instance specifying a %G_TYPE_BOXED
2220 * See g_param_spec_internal() for details on property names.
2222 * Returns: a newly created parameter specification
2224 EXPORT_C GParamSpec*
2225 g_param_spec_boxed (const gchar *name,
2231 GParamSpecBoxed *bspec;
2233 g_return_val_if_fail (G_TYPE_IS_BOXED (boxed_type), NULL);
2234 g_return_val_if_fail (G_TYPE_IS_VALUE_TYPE (boxed_type), NULL);
2236 bspec = g_param_spec_internal (G_TYPE_PARAM_BOXED,
2241 G_PARAM_SPEC (bspec)->value_type = boxed_type;
2243 return G_PARAM_SPEC (bspec);
2247 * g_param_spec_pointer:
2248 * @name: canonical name of the property specified
2249 * @nick: nick name for the property specified
2250 * @blurb: description of the property specified
2251 * @flags: flags for the property specified
2253 * Creates a new #GParamSpecPoiner instance specifying a pointer property.
2255 * See g_param_spec_internal() for details on property names.
2257 * Returns: a newly created parameter specification
2259 EXPORT_C GParamSpec*
2260 g_param_spec_pointer (const gchar *name,
2265 GParamSpecPointer *pspec;
2267 pspec = g_param_spec_internal (G_TYPE_PARAM_POINTER,
2272 return G_PARAM_SPEC (pspec);
2276 * g_param_spec_gtype:
2277 * @name: canonical name of the property specified
2278 * @nick: nick name for the property specified
2279 * @blurb: description of the property specified
2280 * @is_a_type: a #GType whose subtypes are allowed as values
2281 * of the property (use %G_TYPE_NONE for any type)
2282 * @flags: flags for the property specified
2284 * Creates a new #GParamSpecGType instance specifying a
2285 * %G_TYPE_GTYPE property.
2287 * See g_param_spec_internal() for details on property names.
2291 * Returns: a newly created parameter specification
2293 EXPORT_C GParamSpec*
2294 g_param_spec_gtype (const gchar *name,
2300 GParamSpecGType *tspec;
2302 tspec = g_param_spec_internal (G_TYPE_PARAM_GTYPE,
2308 tspec->is_a_type = is_a_type;
2310 return G_PARAM_SPEC (tspec);
2314 * g_param_spec_value_array:
2315 * @name: canonical name of the property specified
2316 * @nick: nick name for the property specified
2317 * @blurb: description of the property specified
2318 * @element_spec: a #GParamSpec describing the elements contained in
2319 * arrays of this property, may be %NULL
2320 * @flags: flags for the property specified
2322 * Creates a new #GParamSpecValueArray instance specifying a
2323 * %G_TYPE_VALUE_ARRAY property. %G_TYPE_VALUE_ARRAY is a
2324 * %G_TYPE_BOXED type, as such, #GValue structures for this property
2325 * can be accessed with g_value_set_boxed() and g_value_get_boxed().
2327 * See g_param_spec_internal() for details on property names.
2329 * Returns: a newly created parameter specification
2331 EXPORT_C GParamSpec*
2332 g_param_spec_value_array (const gchar *name,
2335 GParamSpec *element_spec,
2338 GParamSpecValueArray *aspec;
2341 g_return_val_if_fail (G_IS_PARAM_SPEC (element_spec), NULL);
2343 aspec = g_param_spec_internal (G_TYPE_PARAM_VALUE_ARRAY,
2350 aspec->element_spec = g_param_spec_ref (element_spec);
2351 g_param_spec_sink (element_spec);
2354 return G_PARAM_SPEC (aspec);
2358 * g_param_spec_object:
2359 * @name: canonical name of the property specified
2360 * @nick: nick name for the property specified
2361 * @blurb: description of the property specified
2362 * @object_type: %G_TYPE_OBJECT derived type of this property
2363 * @flags: flags for the property specified
2365 * Creates a new #GParamSpecBoxed instance specifying a %G_TYPE_OBJECT
2368 * See g_param_spec_internal() for details on property names.
2370 * Returns: a newly created parameter specification
2372 EXPORT_C GParamSpec*
2373 g_param_spec_object (const gchar *name,
2379 GParamSpecObject *ospec;
2381 g_return_val_if_fail (g_type_is_a (object_type, G_TYPE_OBJECT), NULL);
2383 ospec = g_param_spec_internal (G_TYPE_PARAM_OBJECT,
2388 G_PARAM_SPEC (ospec)->value_type = object_type;
2390 return G_PARAM_SPEC (ospec);
2394 * g_param_spec_override:
2395 * @name: the name of the property.
2396 * @overridden: The property that is being overridden
2398 * Creates a new property of type #GParamSpecOverride. This is used
2399 * to direct operations to another paramspec, and will not be directly
2400 * useful unless you are implementing a new base type similar to GObject.
2404 * Returns: the newly created #GParamSpec
2406 EXPORT_C GParamSpec*
2407 g_param_spec_override (const gchar *name,
2408 GParamSpec *overridden)
2412 g_return_val_if_fail (name != NULL, NULL);
2413 g_return_val_if_fail (G_IS_PARAM_SPEC (overridden), NULL);
2415 /* Dereference further redirections for property that was passed in
2419 GParamSpec *indirect = g_param_spec_get_redirect_target (overridden);
2421 overridden = indirect;
2426 pspec = g_param_spec_internal (G_TYPE_PARAM_OVERRIDE,
2430 pspec->value_type = G_PARAM_SPEC_VALUE_TYPE (overridden);
2431 G_PARAM_SPEC_OVERRIDE (pspec)->overridden = g_param_spec_ref (overridden);
2436 #define __G_PARAMSPECS_C__
2437 #include "gobjectaliasdef.c"