1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/glib/gobject/genums.c Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,676 @@
1.4 +/* GObject - GLib Type, Object, Parameter and Signal Library
1.5 + * Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
1.6 + * Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
1.7 + *
1.8 + * This library is free software; you can redistribute it and/or
1.9 + * modify it under the terms of the GNU Lesser General Public
1.10 + * License as published by the Free Software Foundation; either
1.11 + * version 2 of the License, or (at your option) any later version.
1.12 + *
1.13 + * This library is distributed in the hope that it will be useful,
1.14 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.15 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1.16 + * Lesser General Public License for more details.
1.17 + *
1.18 + * You should have received a copy of the GNU Lesser General
1.19 + * Public License along with this library; if not, write to the
1.20 + * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
1.21 + * Boston, MA 02111-1307, USA.
1.22 + */
1.23 +
1.24 +/*
1.25 + * MT safe
1.26 + */
1.27 +
1.28 +#include "config.h"
1.29 +
1.30 +#include <string.h>
1.31 +
1.32 +#include "genums.h"
1.33 +#include "gvalue.h"
1.34 +#include "gvaluecollector.h"
1.35 +#include "gobjectalias.h"
1.36 +
1.37 +#ifdef __SYMBIAN32__
1.38 +#include "gobject_wsd.h"
1.39 +#endif /* __SYMBIAN32__ */
1.40 +
1.41 +
1.42 +/**
1.43 + * SECTION:enumerations_flags
1.44 + * @short_description: Enumeration and flags types
1.45 + * @see_also:#GParamSpecEnum, #GParamSpecFlags, g_param_spec_enum(),
1.46 + * g_param_spec_flags(),
1.47 + *
1.48 + * <link linkend="glib-mkenums">glib-mkenums</link>
1.49 + * @title: Enumeration and Flag Types
1.50 + *
1.51 + * The GLib type system provides fundamental types for enumeration and
1.52 + * flags types. (Flags types are like enumerations, but allow their
1.53 + * values to be combined by bitwise or). A registered enumeration or
1.54 + * flags type associates a name and a nickname with each allowed
1.55 + * value, and the methods g_enum_get_value_by_name(),
1.56 + * g_enum_get_value_by_nick(), g_flags_get_value_by_name() and
1.57 + * g_flags_get_value_by_nick() can look up values by their name or
1.58 + * nickname. When an enumeration or flags type is registered with the
1.59 + * GLib type system, it can be used as value type for object
1.60 + * properties, using g_param_spec_enum() or g_param_spec_flags().
1.61 + *
1.62 + * GObject ships with a utility called <link
1.63 + * linkend="glib-mkenums">glib-mkenums</link> that can construct
1.64 + * suitable type registration functions from C enumeration
1.65 + * definitions.
1.66 + */
1.67 +
1.68 +
1.69 +/* --- prototypes --- */
1.70 +static void g_enum_class_init (GEnumClass *class,
1.71 + gpointer class_data);
1.72 +static void g_flags_class_init (GFlagsClass *class,
1.73 + gpointer class_data);
1.74 +static void value_flags_enum_init (GValue *value);
1.75 +static void value_flags_enum_copy_value (const GValue *src_value,
1.76 + GValue *dest_value);
1.77 +static gchar* value_flags_enum_collect_value (GValue *value,
1.78 + guint n_collect_values,
1.79 + GTypeCValue *collect_values,
1.80 + guint collect_flags);
1.81 +static gchar* value_flags_enum_lcopy_value (const GValue *value,
1.82 + guint n_collect_values,
1.83 + GTypeCValue *collect_values,
1.84 + guint collect_flags);
1.85 +
1.86 +/* --- functions --- */
1.87 +#if EMULATOR
1.88 +
1.89 +PLS(initialized ,g_enum_types_init,gboolean)
1.90 +PLS(info,g_enum_types_init,GTypeInfo)
1.91 +
1.92 +#define initialized (*FUNCTION_NAME(initialized ,g_enum_types_init)())
1.93 +#define info (*FUNCTION_NAME(info ,g_enum_types_init)())
1.94 +
1.95 +const GTypeValueTable temp_flags_enum_value_table = {
1.96 + value_flags_enum_init, /* value_init */
1.97 + NULL, /* value_free */
1.98 + value_flags_enum_copy_value, /* value_copy */
1.99 + NULL, /* value_peek_pointer */
1.100 + "i", /* collect_format */
1.101 + value_flags_enum_collect_value, /* collect_value */
1.102 + "p", /* lcopy_format */
1.103 + value_flags_enum_lcopy_value, /* lcopy_value */
1.104 + };
1.105 +
1.106 +const GTypeInfo temp_info = {
1.107 + 0, /* class_size */
1.108 + NULL, /* base_init */
1.109 + NULL, /* base_destroy */
1.110 + NULL, /* class_init */
1.111 + NULL, /* class_destroy */
1.112 + NULL, /* class_data */
1.113 + 0, /* instance_size */
1.114 + 0, /* n_preallocs */
1.115 + NULL, /* instance_init */
1.116 + &temp_flags_enum_value_table, /* value_table */
1.117 + };
1.118 +
1.119 +#endif /* EMULATOR */
1.120 +
1.121 +void
1.122 +g_enum_types_init (void)
1.123 +{
1.124 +#if !(EMULATOR)
1.125 + static gboolean initialized = FALSE;
1.126 +#endif /*EMULATOR */
1.127 + static const GTypeValueTable flags_enum_value_table = {
1.128 + value_flags_enum_init, /* value_init */
1.129 + NULL, /* value_free */
1.130 + value_flags_enum_copy_value, /* value_copy */
1.131 + NULL, /* value_peek_pointer */
1.132 + "i", /* collect_format */
1.133 + value_flags_enum_collect_value, /* collect_value */
1.134 + "p", /* lcopy_format */
1.135 + value_flags_enum_lcopy_value, /* lcopy_value */
1.136 + };
1.137 +
1.138 +#if !(EMULATOR)
1.139 + static GTypeInfo info = {
1.140 + 0, /* class_size */
1.141 + NULL, /* base_init */
1.142 + NULL, /* base_destroy */
1.143 + NULL, /* class_init */
1.144 + NULL, /* class_destroy */
1.145 + NULL, /* class_data */
1.146 + 0, /* instance_size */
1.147 + 0, /* n_preallocs */
1.148 + NULL, /* instance_init */
1.149 + &flags_enum_value_table, /* value_table */
1.150 + };
1.151 +#endif /*EMULATOR */
1.152 +
1.153 + static const GTypeFundamentalInfo finfo = {
1.154 + G_TYPE_FLAG_CLASSED | G_TYPE_FLAG_DERIVABLE,
1.155 + };
1.156 + GType type;
1.157 +
1.158 + g_return_if_fail (initialized == FALSE);
1.159 + initialized = TRUE;
1.160 +
1.161 + /* G_TYPE_ENUM
1.162 + */
1.163 + info.class_size = sizeof (GEnumClass);
1.164 + type = g_type_register_fundamental (G_TYPE_ENUM, g_intern_static_string ("GEnum"), &info, &finfo,
1.165 + G_TYPE_FLAG_ABSTRACT | G_TYPE_FLAG_VALUE_ABSTRACT);
1.166 + g_assert (type == G_TYPE_ENUM);
1.167 +
1.168 + /* G_TYPE_FLAGS
1.169 + */
1.170 + info.class_size = sizeof (GFlagsClass);
1.171 + type = g_type_register_fundamental (G_TYPE_FLAGS, g_intern_static_string ("GFlags"), &info, &finfo,
1.172 + G_TYPE_FLAG_ABSTRACT | G_TYPE_FLAG_VALUE_ABSTRACT);
1.173 + g_assert (type == G_TYPE_FLAGS);
1.174 +}
1.175 +
1.176 +#if EMULATOR
1.177 +#undef initialized
1.178 +#undef info
1.179 +#endif /* EMULATOR */
1.180 +
1.181 +static void
1.182 +value_flags_enum_init (GValue *value)
1.183 +{
1.184 + value->data[0].v_long = 0;
1.185 +}
1.186 +
1.187 +static void
1.188 +value_flags_enum_copy_value (const GValue *src_value,
1.189 + GValue *dest_value)
1.190 +{
1.191 + dest_value->data[0].v_long = src_value->data[0].v_long;
1.192 +}
1.193 +
1.194 +static gchar*
1.195 +value_flags_enum_collect_value (GValue *value,
1.196 + guint n_collect_values,
1.197 + GTypeCValue *collect_values,
1.198 + guint collect_flags)
1.199 +{
1.200 + value->data[0].v_long = collect_values[0].v_int;
1.201 +
1.202 + return NULL;
1.203 +}
1.204 +
1.205 +static gchar*
1.206 +value_flags_enum_lcopy_value (const GValue *value,
1.207 + guint n_collect_values,
1.208 + GTypeCValue *collect_values,
1.209 + guint collect_flags)
1.210 +{
1.211 + gint *int_p = collect_values[0].v_pointer;
1.212 +
1.213 + if (!int_p)
1.214 + return g_strdup_printf ("value location for `%s' passed as NULL", G_VALUE_TYPE_NAME (value));
1.215 +
1.216 + *int_p = value->data[0].v_long;
1.217 +
1.218 + return NULL;
1.219 +}
1.220 +
1.221 +/**
1.222 + * g_enum_register_static:
1.223 + * @name: A nul-terminated string used as the name of the new type.
1.224 + * @const_static_values: An array of #GEnumValue structs for the possible
1.225 + * enumeration values. The array is terminated by a struct with all
1.226 + * members being 0. GObject keeps a reference to the data, so it cannot
1.227 + * be stack-allocated.
1.228 + *
1.229 + * Registers a new static enumeration type with the name @name.
1.230 + *
1.231 + * It is normally more convenient to let <link
1.232 + * linkend="glib-mkenums">glib-mkenums</link> generate a
1.233 + * my_enum_get_type() function from a usual C enumeration definition
1.234 + * than to write one yourself using g_enum_register_static().
1.235 + *
1.236 + * Returns: The new type identifier.
1.237 + */
1.238 +EXPORT_C GType
1.239 +g_enum_register_static (const gchar *name,
1.240 + const GEnumValue *const_static_values)
1.241 +{
1.242 + GTypeInfo enum_type_info = {
1.243 + sizeof (GEnumClass), /* class_size */
1.244 + NULL, /* base_init */
1.245 + NULL, /* base_finalize */
1.246 + (GClassInitFunc) g_enum_class_init,
1.247 + NULL, /* class_finalize */
1.248 + NULL, /* class_data */
1.249 + 0, /* instance_size */
1.250 + 0, /* n_preallocs */
1.251 + NULL, /* instance_init */
1.252 + NULL, /* value_table */
1.253 + };
1.254 + GType type;
1.255 +
1.256 + g_return_val_if_fail (name != NULL, 0);
1.257 + g_return_val_if_fail (const_static_values != NULL, 0);
1.258 +
1.259 + enum_type_info.class_data = const_static_values;
1.260 +
1.261 + type = g_type_register_static (G_TYPE_ENUM, name, &enum_type_info, 0);
1.262 +
1.263 + return type;
1.264 +}
1.265 +
1.266 +/**
1.267 + * g_flags_register_static:
1.268 + * @name: A nul-terminated string used as the name of the new type.
1.269 + * @const_static_values: An array of #GFlagsValue structs for the possible
1.270 + * flags values. The array is terminated by a struct with all members being 0.
1.271 + * GObject keeps a reference to the data, so it cannot be stack-allocated.
1.272 + *
1.273 + * Registers a new static flags type with the name @name.
1.274 + *
1.275 + * It is normally more convenient to let <link
1.276 + * linkend="glib-mkenums">glib-mkenums</link> generate a
1.277 + * my_flags_get_type() function from a usual C enumeration definition
1.278 + * than to write one yourself using g_flags_register_static().
1.279 + *
1.280 + * Returns: The new type identifier.
1.281 + */
1.282 +EXPORT_C GType
1.283 +g_flags_register_static (const gchar *name,
1.284 + const GFlagsValue *const_static_values)
1.285 +{
1.286 + GTypeInfo flags_type_info = {
1.287 + sizeof (GFlagsClass), /* class_size */
1.288 + NULL, /* base_init */
1.289 + NULL, /* base_finalize */
1.290 + (GClassInitFunc) g_flags_class_init,
1.291 + NULL, /* class_finalize */
1.292 + NULL, /* class_data */
1.293 + 0, /* instance_size */
1.294 + 0, /* n_preallocs */
1.295 + NULL, /* instance_init */
1.296 + NULL, /* value_table */
1.297 + };
1.298 + GType type;
1.299 +
1.300 + g_return_val_if_fail (name != NULL, 0);
1.301 + g_return_val_if_fail (const_static_values != NULL, 0);
1.302 +
1.303 + flags_type_info.class_data = const_static_values;
1.304 +
1.305 + type = g_type_register_static (G_TYPE_FLAGS, name, &flags_type_info, 0);
1.306 +
1.307 + return type;
1.308 +}
1.309 +
1.310 +/**
1.311 + * g_enum_complete_type_info:
1.312 + * @g_enum_type: the type identifier of the type being completed
1.313 + * @info: the #GTypeInfo struct to be filled in
1.314 + * @const_values: An array of #GEnumValue structs for the possible
1.315 + * enumeration values. The array is terminated by a struct with all
1.316 + * members being 0.
1.317 + *
1.318 + * This function is meant to be called from the complete_type_info()
1.319 + * function of a #GTypePlugin implementation, as in the following
1.320 + * example:
1.321 + *
1.322 + * |[
1.323 + * static void
1.324 + * my_enum_complete_type_info (GTypePlugin *plugin,
1.325 + * GType g_type,
1.326 + * GTypeInfo *info,
1.327 + * GTypeValueTable *value_table)
1.328 + * {
1.329 + * static const GEnumValue values[] = {
1.330 + * { MY_ENUM_FOO, "MY_ENUM_FOO", "foo" },
1.331 + * { MY_ENUM_BAR, "MY_ENUM_BAR", "bar" },
1.332 + * { 0, NULL, NULL }
1.333 + * };
1.334 + *
1.335 + * g_enum_complete_type_info (type, info, values);
1.336 + * }
1.337 + * ]|
1.338 + */
1.339 +EXPORT_C void
1.340 +g_enum_complete_type_info (GType g_enum_type,
1.341 + GTypeInfo *info,
1.342 + const GEnumValue *const_values)
1.343 +{
1.344 + g_return_if_fail (G_TYPE_IS_ENUM (g_enum_type));
1.345 + g_return_if_fail (info != NULL);
1.346 + g_return_if_fail (const_values != NULL);
1.347 +
1.348 + info->class_size = sizeof (GEnumClass);
1.349 + info->base_init = NULL;
1.350 + info->base_finalize = NULL;
1.351 + info->class_init = (GClassInitFunc) g_enum_class_init;
1.352 + info->class_finalize = NULL;
1.353 + info->class_data = const_values;
1.354 +}
1.355 +
1.356 +/**
1.357 + * g_flags_complete_type_info:
1.358 + * @g_flags_type: the type identifier of the type being completed
1.359 + * @info: the #GTypeInfo struct to be filled in
1.360 + * @const_values: An array of #GFlagsValue structs for the possible
1.361 + * enumeration values. The array is terminated by a struct with all
1.362 + * members being 0.
1.363 + *
1.364 + * This function is meant to be called from the complete_type_info()
1.365 + * function of a #GTypePlugin implementation, see the example for
1.366 + * g_enum_complete_type_info() above.
1.367 + */
1.368 +EXPORT_C void
1.369 +g_flags_complete_type_info (GType g_flags_type,
1.370 + GTypeInfo *info,
1.371 + const GFlagsValue *const_values)
1.372 +{
1.373 + g_return_if_fail (G_TYPE_IS_FLAGS (g_flags_type));
1.374 + g_return_if_fail (info != NULL);
1.375 + g_return_if_fail (const_values != NULL);
1.376 +
1.377 + info->class_size = sizeof (GFlagsClass);
1.378 + info->base_init = NULL;
1.379 + info->base_finalize = NULL;
1.380 + info->class_init = (GClassInitFunc) g_flags_class_init;
1.381 + info->class_finalize = NULL;
1.382 + info->class_data = const_values;
1.383 +}
1.384 +
1.385 +static void
1.386 +g_enum_class_init (GEnumClass *class,
1.387 + gpointer class_data)
1.388 +{
1.389 + g_return_if_fail (G_IS_ENUM_CLASS (class));
1.390 +
1.391 + class->minimum = 0;
1.392 + class->maximum = 0;
1.393 + class->n_values = 0;
1.394 + class->values = class_data;
1.395 +
1.396 + if (class->values)
1.397 + {
1.398 + GEnumValue *values;
1.399 +
1.400 + class->minimum = class->values->value;
1.401 + class->maximum = class->values->value;
1.402 + for (values = class->values; values->value_name; values++)
1.403 + {
1.404 + class->minimum = MIN (class->minimum, values->value);
1.405 + class->maximum = MAX (class->maximum, values->value);
1.406 + class->n_values++;
1.407 + }
1.408 + }
1.409 +}
1.410 +
1.411 +static void
1.412 +g_flags_class_init (GFlagsClass *class,
1.413 + gpointer class_data)
1.414 +{
1.415 + g_return_if_fail (G_IS_FLAGS_CLASS (class));
1.416 +
1.417 + class->mask = 0;
1.418 + class->n_values = 0;
1.419 + class->values = class_data;
1.420 +
1.421 + if (class->values)
1.422 + {
1.423 + GFlagsValue *values;
1.424 +
1.425 + for (values = class->values; values->value_name; values++)
1.426 + {
1.427 + class->mask |= values->value;
1.428 + class->n_values++;
1.429 + }
1.430 + }
1.431 +}
1.432 +
1.433 +/**
1.434 + * g_enum_get_value_by_name:
1.435 + * @enum_class: a #GEnumClass
1.436 + * @name: the name to look up
1.437 + *
1.438 + * Looks up a #GEnumValue by name.
1.439 + *
1.440 + * Returns: the #GEnumValue with name @name, or %NULL if the
1.441 + * enumeration doesn't have a member with that name
1.442 + */
1.443 +EXPORT_C GEnumValue*
1.444 +g_enum_get_value_by_name (GEnumClass *enum_class,
1.445 + const gchar *name)
1.446 +{
1.447 + g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), NULL);
1.448 + g_return_val_if_fail (name != NULL, NULL);
1.449 +
1.450 + if (enum_class->n_values)
1.451 + {
1.452 + GEnumValue *enum_value;
1.453 +
1.454 + for (enum_value = enum_class->values; enum_value->value_name; enum_value++)
1.455 + if (strcmp (name, enum_value->value_name) == 0)
1.456 + return enum_value;
1.457 + }
1.458 +
1.459 + return NULL;
1.460 +}
1.461 +
1.462 +/**
1.463 + * g_flags_get_value_by_name:
1.464 + * @flags_class: a #GFlagsClass
1.465 + * @name: the name to look up
1.466 + *
1.467 + * Looks up a #GFlagsValue by name.
1.468 + *
1.469 + * Returns: the #GFlagsValue with name @name, or %NULL if there is no
1.470 + * flag with that name
1.471 + */
1.472 +EXPORT_C GFlagsValue*
1.473 +g_flags_get_value_by_name (GFlagsClass *flags_class,
1.474 + const gchar *name)
1.475 +{
1.476 + g_return_val_if_fail (G_IS_FLAGS_CLASS (flags_class), NULL);
1.477 + g_return_val_if_fail (name != NULL, NULL);
1.478 +
1.479 + if (flags_class->n_values)
1.480 + {
1.481 + GFlagsValue *flags_value;
1.482 +
1.483 + for (flags_value = flags_class->values; flags_value->value_name; flags_value++)
1.484 + if (strcmp (name, flags_value->value_name) == 0)
1.485 + return flags_value;
1.486 + }
1.487 +
1.488 + return NULL;
1.489 +}
1.490 +
1.491 +/**
1.492 + * g_enum_get_value_by_nick:
1.493 + * @enum_class: a #GEnumClass
1.494 + * @nick: the nickname to look up
1.495 + *
1.496 + * Looks up a #GEnumValue by nickname.
1.497 + *
1.498 + * Returns: the #GEnumValue with nickname @nick, or %NULL if the
1.499 + * enumeration doesn't have a member with that nickname
1.500 + */
1.501 +EXPORT_C GEnumValue*
1.502 +g_enum_get_value_by_nick (GEnumClass *enum_class,
1.503 + const gchar *nick)
1.504 +{
1.505 + g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), NULL);
1.506 + g_return_val_if_fail (nick != NULL, NULL);
1.507 +
1.508 + if (enum_class->n_values)
1.509 + {
1.510 + GEnumValue *enum_value;
1.511 +
1.512 + for (enum_value = enum_class->values; enum_value->value_name; enum_value++)
1.513 + if (enum_value->value_nick && strcmp (nick, enum_value->value_nick) == 0)
1.514 + return enum_value;
1.515 + }
1.516 +
1.517 + return NULL;
1.518 +}
1.519 +
1.520 +/**
1.521 + * g_flags_get_value_by_nick:
1.522 + * @flags_class: a #GFlagsClass
1.523 + * @nick: the nickname to look up
1.524 + *
1.525 + * Looks up a #GFlagsValue by nickname.
1.526 + *
1.527 + * Returns: the #GFlagsValue with nickname @nick, or %NULL if there is
1.528 + * no flag with that nickname
1.529 + */
1.530 +EXPORT_C GFlagsValue*
1.531 +g_flags_get_value_by_nick (GFlagsClass *flags_class,
1.532 + const gchar *nick)
1.533 +{
1.534 + g_return_val_if_fail (G_IS_FLAGS_CLASS (flags_class), NULL);
1.535 + g_return_val_if_fail (nick != NULL, NULL);
1.536 +
1.537 + if (flags_class->n_values)
1.538 + {
1.539 + GFlagsValue *flags_value;
1.540 +
1.541 + for (flags_value = flags_class->values; flags_value->value_nick; flags_value++)
1.542 + if (flags_value->value_nick && strcmp (nick, flags_value->value_nick) == 0)
1.543 + return flags_value;
1.544 + }
1.545 +
1.546 + return NULL;
1.547 +}
1.548 +
1.549 +/**
1.550 + * g_enum_get_value:
1.551 + * @enum_class: a #GEnumClass
1.552 + * @value: the value to look up
1.553 + *
1.554 + * Returns the #GEnumValue for a value.
1.555 + *
1.556 + * Returns: the #GEnumValue for @value, or %NULL if @value is not a
1.557 + * member of the enumeration
1.558 + */
1.559 +EXPORT_C GEnumValue*
1.560 +g_enum_get_value (GEnumClass *enum_class,
1.561 + gint value)
1.562 +{
1.563 + g_return_val_if_fail (G_IS_ENUM_CLASS (enum_class), NULL);
1.564 +
1.565 + if (enum_class->n_values)
1.566 + {
1.567 + GEnumValue *enum_value;
1.568 +
1.569 + for (enum_value = enum_class->values; enum_value->value_name; enum_value++)
1.570 + if (enum_value->value == value)
1.571 + return enum_value;
1.572 + }
1.573 +
1.574 + return NULL;
1.575 +}
1.576 +
1.577 +/**
1.578 + * g_flags_get_first_value:
1.579 + * @flags_class: a #GFlagsClass
1.580 + * @value: the value
1.581 + *
1.582 + * Returns the first #GFlagsValue which is set in @value.
1.583 + *
1.584 + * Returns: the first #GFlagsValue which is set in @value, or %NULL if
1.585 + * none is set
1.586 + */
1.587 +EXPORT_C GFlagsValue*
1.588 +g_flags_get_first_value (GFlagsClass *flags_class,
1.589 + guint value)
1.590 +{
1.591 + g_return_val_if_fail (G_IS_FLAGS_CLASS (flags_class), NULL);
1.592 +
1.593 + if (flags_class->n_values)
1.594 + {
1.595 + GFlagsValue *flags_value;
1.596 +
1.597 + if (value == 0)
1.598 + {
1.599 + for (flags_value = flags_class->values; flags_value->value_name; flags_value++)
1.600 + if (flags_value->value == 0)
1.601 + return flags_value;
1.602 + }
1.603 + else
1.604 + {
1.605 + for (flags_value = flags_class->values; flags_value->value_name; flags_value++)
1.606 + if (flags_value->value != 0 && (flags_value->value & value) == flags_value->value)
1.607 + return flags_value;
1.608 + }
1.609 + }
1.610 +
1.611 + return NULL;
1.612 +}
1.613 +
1.614 +/**
1.615 + * g_value_set_enum:
1.616 + * @value: a valid #GValue whose type is derived from %G_TYPE_ENUM
1.617 + * @v_enum: enum value to be set
1.618 + *
1.619 + * Set the contents of a %G_TYPE_ENUM #GValue to @v_enum.
1.620 + */
1.621 +EXPORT_C void
1.622 +g_value_set_enum (GValue *value,
1.623 + gint v_enum)
1.624 +{
1.625 + g_return_if_fail (G_VALUE_HOLDS_ENUM (value));
1.626 +
1.627 + value->data[0].v_long = v_enum;
1.628 +}
1.629 +
1.630 +/**
1.631 + * g_value_get_enum:
1.632 + * @value: a valid #GValue whose type is derived from %G_TYPE_ENUM
1.633 + *
1.634 + * Get the contents of a %G_TYPE_ENUM #GValue.
1.635 + *
1.636 + * Returns: enum contents of @value
1.637 + */
1.638 +EXPORT_C gint
1.639 +g_value_get_enum (const GValue *value)
1.640 +{
1.641 + g_return_val_if_fail (G_VALUE_HOLDS_ENUM (value), 0);
1.642 +
1.643 + return value->data[0].v_long;
1.644 +}
1.645 +
1.646 +/**
1.647 + * g_value_set_flags:
1.648 + * @value: a valid #GValue whose type is derived from %G_TYPE_FLAGS
1.649 + * @v_flags: flags value to be set
1.650 + *
1.651 + * Set the contents of a %G_TYPE_FLAGS #GValue to @v_flags.
1.652 + */
1.653 +EXPORT_C void
1.654 +g_value_set_flags (GValue *value,
1.655 + guint v_flags)
1.656 +{
1.657 + g_return_if_fail (G_VALUE_HOLDS_FLAGS (value));
1.658 +
1.659 + value->data[0].v_ulong = v_flags;
1.660 +}
1.661 +
1.662 +/**
1.663 + * g_value_get_flags:
1.664 + * @value: a valid #GValue whose type is derived from %G_TYPE_FLAGS
1.665 + *
1.666 + * Get the contents of a %G_TYPE_FLAGS #GValue.
1.667 + *
1.668 + * Returns: flags contents of @value
1.669 + */
1.670 +EXPORT_C guint
1.671 +g_value_get_flags (const GValue *value)
1.672 +{
1.673 + g_return_val_if_fail (G_VALUE_HOLDS_FLAGS (value), 0);
1.674 +
1.675 + return value->data[0].v_ulong;
1.676 +}
1.677 +
1.678 +#define __G_ENUMS_C__
1.679 +#include "gobjectaliasdef.c"