Update contrib.
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1998-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.
31 #include "gvaluecollector.h"
32 #include "gobjectalias.h"
35 #include "gobject_wsd.h"
36 #endif /* __SYMBIAN32__ */
40 * SECTION:enumerations_flags
41 * @short_description: Enumeration and flags types
42 * @see_also:#GParamSpecEnum, #GParamSpecFlags, g_param_spec_enum(),
43 * g_param_spec_flags(),
45 * <link linkend="glib-mkenums">glib-mkenums</link>
46 * @title: Enumeration and Flag Types
48 * The GLib type system provides fundamental types for enumeration and
49 * flags types. (Flags types are like enumerations, but allow their
50 * values to be combined by bitwise or). A registered enumeration or
51 * flags type associates a name and a nickname with each allowed
52 * value, and the methods g_enum_get_value_by_name(),
53 * g_enum_get_value_by_nick(), g_flags_get_value_by_name() and
54 * g_flags_get_value_by_nick() can look up values by their name or
55 * nickname. When an enumeration or flags type is registered with the
56 * GLib type system, it can be used as value type for object
57 * properties, using g_param_spec_enum() or g_param_spec_flags().
59 * GObject ships with a utility called <link
60 * linkend="glib-mkenums">glib-mkenums</link> that can construct
61 * suitable type registration functions from C enumeration
66 /* --- prototypes --- */
67 static void g_enum_class_init (GEnumClass *class,
69 static void g_flags_class_init (GFlagsClass *class,
71 static void value_flags_enum_init (GValue *value);
72 static void value_flags_enum_copy_value (const GValue *src_value,
74 static gchar* value_flags_enum_collect_value (GValue *value,
75 guint n_collect_values,
76 GTypeCValue *collect_values,
78 static gchar* value_flags_enum_lcopy_value (const GValue *value,
79 guint n_collect_values,
80 GTypeCValue *collect_values,
83 /* --- functions --- */
86 PLS(initialized ,g_enum_types_init,gboolean)
87 PLS(info,g_enum_types_init,GTypeInfo)
89 #define initialized (*FUNCTION_NAME(initialized ,g_enum_types_init)())
90 #define info (*FUNCTION_NAME(info ,g_enum_types_init)())
92 const GTypeValueTable temp_flags_enum_value_table = {
93 value_flags_enum_init, /* value_init */
94 NULL, /* value_free */
95 value_flags_enum_copy_value, /* value_copy */
96 NULL, /* value_peek_pointer */
97 "i", /* collect_format */
98 value_flags_enum_collect_value, /* collect_value */
99 "p", /* lcopy_format */
100 value_flags_enum_lcopy_value, /* lcopy_value */
103 const GTypeInfo temp_info = {
105 NULL, /* base_init */
106 NULL, /* base_destroy */
107 NULL, /* class_init */
108 NULL, /* class_destroy */
109 NULL, /* class_data */
110 0, /* instance_size */
112 NULL, /* instance_init */
113 &temp_flags_enum_value_table, /* value_table */
116 #endif /* EMULATOR */
119 g_enum_types_init (void)
122 static gboolean initialized = FALSE;
124 static const GTypeValueTable flags_enum_value_table = {
125 value_flags_enum_init, /* value_init */
126 NULL, /* value_free */
127 value_flags_enum_copy_value, /* value_copy */
128 NULL, /* value_peek_pointer */
129 "i", /* collect_format */
130 value_flags_enum_collect_value, /* collect_value */
131 "p", /* lcopy_format */
132 value_flags_enum_lcopy_value, /* lcopy_value */
136 static GTypeInfo info = {
138 NULL, /* base_init */
139 NULL, /* base_destroy */
140 NULL, /* class_init */
141 NULL, /* class_destroy */
142 NULL, /* class_data */
143 0, /* instance_size */
145 NULL, /* instance_init */
146 &flags_enum_value_table, /* value_table */
150 static const GTypeFundamentalInfo finfo = {
151 G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_DERIVABLE,
155 g_return_if_fail (initialized == FALSE);
160 info.class_size = sizeof (GEnumClass);
161 type = g_type_register_fundamental (G_TYPE_ENUM, g_intern_static_string ("GEnum"), &info, &finfo,
162 G_TYPE_FLAG_ABSTRACT | G_TYPE_FLAG_VALUE_ABSTRACT);
163 g_assert (type == G_TYPE_ENUM);
167 info.class_size = sizeof (GFlagsClass);
168 type = g_type_register_fundamental (G_TYPE_FLAGS, g_intern_static_string ("GFlags"), &info, &finfo,
169 G_TYPE_FLAG_ABSTRACT | G_TYPE_FLAG_VALUE_ABSTRACT);
170 g_assert (type == G_TYPE_FLAGS);
176 #endif /* EMULATOR */
179 value_flags_enum_init (GValue *value)
181 value->data[0].v_long = 0;
185 value_flags_enum_copy_value (const GValue *src_value,
188 dest_value->data[0].v_long = src_value->data[0].v_long;
192 value_flags_enum_collect_value (GValue *value,
193 guint n_collect_values,
194 GTypeCValue *collect_values,
197 value->data[0].v_long = collect_values[0].v_int;
203 value_flags_enum_lcopy_value (const GValue *value,
204 guint n_collect_values,
205 GTypeCValue *collect_values,
208 gint *int_p = collect_values[0].v_pointer;
211 return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
213 *int_p = value->data[0].v_long;
219 * g_enum_register_static:
220 * @name: A nul-terminated string used as the name of the new type.
221 * @const_static_values: An array of #GEnumValue structs for the possible
222 * enumeration values. The array is terminated by a struct with all
223 * members being 0. GObject keeps a reference to the data, so it cannot
224 * be stack-allocated.
226 * Registers a new static enumeration type with the name @name.
228 * It is normally more convenient to let <link
229 * linkend="glib-mkenums">glib-mkenums</link> generate a
230 * my_enum_get_type() function from a usual C enumeration definition
231 * than to write one yourself using g_enum_register_static().
233 * Returns: The new type identifier.
236 g_enum_register_static (const gchar *name,
237 const GEnumValue *const_static_values)
239 GTypeInfo enum_type_info = {
240 sizeof (GEnumClass), /* class_size */
241 NULL, /* base_init */
242 NULL, /* base_finalize */
243 (GClassInitFunc) g_enum_class_init,
244 NULL, /* class_finalize */
245 NULL, /* class_data */
246 0, /* instance_size */
248 NULL, /* instance_init */
249 NULL, /* value_table */
253 g_return_val_if_fail (name != NULL, 0);
254 g_return_val_if_fail (const_static_values != NULL, 0);
256 enum_type_info.class_data = const_static_values;
258 type = g_type_register_static (G_TYPE_ENUM, name, &enum_type_info, 0);
264 * g_flags_register_static:
265 * @name: A nul-terminated string used as the name of the new type.
266 * @const_static_values: An array of #GFlagsValue structs for the possible
267 * flags values. The array is terminated by a struct with all members being 0.
268 * GObject keeps a reference to the data, so it cannot be stack-allocated.
270 * Registers a new static flags type with the name @name.
272 * It is normally more convenient to let <link
273 * linkend="glib-mkenums">glib-mkenums</link> generate a
274 * my_flags_get_type() function from a usual C enumeration definition
275 * than to write one yourself using g_flags_register_static().
277 * Returns: The new type identifier.
280 g_flags_register_static (const gchar *name,
281 const GFlagsValue *const_static_values)
283 GTypeInfo flags_type_info = {
284 sizeof (GFlagsClass), /* class_size */
285 NULL, /* base_init */
286 NULL, /* base_finalize */
287 (GClassInitFunc) g_flags_class_init,
288 NULL, /* class_finalize */
289 NULL, /* class_data */
290 0, /* instance_size */
292 NULL, /* instance_init */
293 NULL, /* value_table */
297 g_return_val_if_fail (name != NULL, 0);
298 g_return_val_if_fail (const_static_values != NULL, 0);
300 flags_type_info.class_data = const_static_values;
302 type = g_type_register_static (G_TYPE_FLAGS, name, &flags_type_info, 0);
308 * g_enum_complete_type_info:
309 * @g_enum_type: the type identifier of the type being completed
310 * @info: the #GTypeInfo struct to be filled in
311 * @const_values: An array of #GEnumValue structs for the possible
312 * enumeration values. The array is terminated by a struct with all
315 * This function is meant to be called from the complete_type_info()
316 * function of a #GTypePlugin implementation, as in the following
321 * my_enum_complete_type_info (GTypePlugin *plugin,
324 * GTypeValueTable *value_table)
326 * static const GEnumValue values[] = {
327 * { MY_ENUM_FOO, "MY_ENUM_FOO", "foo" },
328 * { MY_ENUM_BAR, "MY_ENUM_BAR", "bar" },
332 * g_enum_complete_type_info (type, info, values);
337 g_enum_complete_type_info (GType g_enum_type,
339 const GEnumValue *const_values)
341 g_return_if_fail (G_TYPE_IS_ENUM (g_enum_type));
342 g_return_if_fail (info != NULL);
343 g_return_if_fail (const_values != NULL);
345 info->class_size = sizeof (GEnumClass);
346 info->base_init = NULL;
347 info->base_finalize = NULL;
348 info->class_init = (GClassInitFunc) g_enum_class_init;
349 info->class_finalize = NULL;
350 info->class_data = const_values;
354 * g_flags_complete_type_info:
355 * @g_flags_type: the type identifier of the type being completed
356 * @info: the #GTypeInfo struct to be filled in
357 * @const_values: An array of #GFlagsValue structs for the possible
358 * enumeration values. The array is terminated by a struct with all
361 * This function is meant to be called from the complete_type_info()
362 * function of a #GTypePlugin implementation, see the example for
363 * g_enum_complete_type_info() above.
366 g_flags_complete_type_info (GType g_flags_type,
368 const GFlagsValue *const_values)
370 g_return_if_fail (G_TYPE_IS_FLAGS (g_flags_type));
371 g_return_if_fail (info != NULL);
372 g_return_if_fail (const_values != NULL);
374 info->class_size = sizeof (GFlagsClass);
375 info->base_init = NULL;
376 info->base_finalize = NULL;
377 info->class_init = (GClassInitFunc) g_flags_class_init;
378 info->class_finalize = NULL;
379 info->class_data = const_values;
383 g_enum_class_init (GEnumClass *class,
386 g_return_if_fail (G_IS_ENUM_CLASS (class));
391 class->values = class_data;
397 class->minimum = class->values->value;
398 class->maximum = class->values->value;
399 for (values = class->values; values->value_name; values++)
401 class->minimum = MIN (class->minimum, values->value);
402 class->maximum = MAX (class->maximum, values->value);
409 g_flags_class_init (GFlagsClass *class,
412 g_return_if_fail (G_IS_FLAGS_CLASS (class));
416 class->values = class_data;
422 for (values = class->values; values->value_name; values++)
424 class->mask |= values->value;
431 * g_enum_get_value_by_name:
432 * @enum_class: a #GEnumClass
433 * @name: the name to look up
435 * Looks up a #GEnumValue by name.
437 * Returns: the #GEnumValue with name @name, or %NULL if the
438 * enumeration doesn't have a member with that name
441 g_enum_get_value_by_name (GEnumClass *enum_class,
444 g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), NULL);
445 g_return_val_if_fail (name != NULL, NULL);
447 if (enum_class->n_values)
449 GEnumValue *enum_value;
451 for (enum_value = enum_class->values; enum_value->value_name; enum_value++)
452 if (strcmp (name, enum_value->value_name) == 0)
460 * g_flags_get_value_by_name:
461 * @flags_class: a #GFlagsClass
462 * @name: the name to look up
464 * Looks up a #GFlagsValue by name.
466 * Returns: the #GFlagsValue with name @name, or %NULL if there is no
467 * flag with that name
469 EXPORT_C GFlagsValue*
470 g_flags_get_value_by_name (GFlagsClass *flags_class,
473 g_return_val_if_fail (G_IS_FLAGS_CLASS (flags_class), NULL);
474 g_return_val_if_fail (name != NULL, NULL);
476 if (flags_class->n_values)
478 GFlagsValue *flags_value;
480 for (flags_value = flags_class->values; flags_value->value_name; flags_value++)
481 if (strcmp (name, flags_value->value_name) == 0)
489 * g_enum_get_value_by_nick:
490 * @enum_class: a #GEnumClass
491 * @nick: the nickname to look up
493 * Looks up a #GEnumValue by nickname.
495 * Returns: the #GEnumValue with nickname @nick, or %NULL if the
496 * enumeration doesn't have a member with that nickname
499 g_enum_get_value_by_nick (GEnumClass *enum_class,
502 g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), NULL);
503 g_return_val_if_fail (nick != NULL, NULL);
505 if (enum_class->n_values)
507 GEnumValue *enum_value;
509 for (enum_value = enum_class->values; enum_value->value_name; enum_value++)
510 if (enum_value->value_nick && strcmp (nick, enum_value->value_nick) == 0)
518 * g_flags_get_value_by_nick:
519 * @flags_class: a #GFlagsClass
520 * @nick: the nickname to look up
522 * Looks up a #GFlagsValue by nickname.
524 * Returns: the #GFlagsValue with nickname @nick, or %NULL if there is
525 * no flag with that nickname
527 EXPORT_C GFlagsValue*
528 g_flags_get_value_by_nick (GFlagsClass *flags_class,
531 g_return_val_if_fail (G_IS_FLAGS_CLASS (flags_class), NULL);
532 g_return_val_if_fail (nick != NULL, NULL);
534 if (flags_class->n_values)
536 GFlagsValue *flags_value;
538 for (flags_value = flags_class->values; flags_value->value_nick; flags_value++)
539 if (flags_value->value_nick && strcmp (nick, flags_value->value_nick) == 0)
548 * @enum_class: a #GEnumClass
549 * @value: the value to look up
551 * Returns the #GEnumValue for a value.
553 * Returns: the #GEnumValue for @value, or %NULL if @value is not a
554 * member of the enumeration
557 g_enum_get_value (GEnumClass *enum_class,
560 g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), NULL);
562 if (enum_class->n_values)
564 GEnumValue *enum_value;
566 for (enum_value = enum_class->values; enum_value->value_name; enum_value++)
567 if (enum_value->value == value)
575 * g_flags_get_first_value:
576 * @flags_class: a #GFlagsClass
579 * Returns the first #GFlagsValue which is set in @value.
581 * Returns: the first #GFlagsValue which is set in @value, or %NULL if
584 EXPORT_C GFlagsValue*
585 g_flags_get_first_value (GFlagsClass *flags_class,
588 g_return_val_if_fail (G_IS_FLAGS_CLASS (flags_class), NULL);
590 if (flags_class->n_values)
592 GFlagsValue *flags_value;
596 for (flags_value = flags_class->values; flags_value->value_name; flags_value++)
597 if (flags_value->value == 0)
602 for (flags_value = flags_class->values; flags_value->value_name; flags_value++)
603 if (flags_value->value != 0 && (flags_value->value & value) == flags_value->value)
613 * @value: a valid #GValue whose type is derived from %G_TYPE_ENUM
614 * @v_enum: enum value to be set
616 * Set the contents of a %G_TYPE_ENUM #GValue to @v_enum.
619 g_value_set_enum (GValue *value,
622 g_return_if_fail (G_VALUE_HOLDS_ENUM (value));
624 value->data[0].v_long = v_enum;
629 * @value: a valid #GValue whose type is derived from %G_TYPE_ENUM
631 * Get the contents of a %G_TYPE_ENUM #GValue.
633 * Returns: enum contents of @value
636 g_value_get_enum (const GValue *value)
638 g_return_val_if_fail (G_VALUE_HOLDS_ENUM (value), 0);
640 return value->data[0].v_long;
645 * @value: a valid #GValue whose type is derived from %G_TYPE_FLAGS
646 * @v_flags: flags value to be set
648 * Set the contents of a %G_TYPE_FLAGS #GValue to @v_flags.
651 g_value_set_flags (GValue *value,
654 g_return_if_fail (G_VALUE_HOLDS_FLAGS (value));
656 value->data[0].v_ulong = v_flags;
661 * @value: a valid #GValue whose type is derived from %G_TYPE_FLAGS
663 * Get the contents of a %G_TYPE_FLAGS #GValue.
665 * Returns: flags contents of @value
668 g_value_get_flags (const GValue *value)
670 g_return_val_if_fail (G_VALUE_HOLDS_FLAGS (value), 0);
672 return value->data[0].v_ulong;
675 #define __G_ENUMS_C__
676 #include "gobjectaliasdef.c"