sl@0
|
1 |
/* GObject - GLib Type, Object, Parameter and Signal Library
|
sl@0
|
2 |
* Copyright (C) 1998-1999, 2000-2001 Tim Janik and Red Hat, Inc.
|
sl@0
|
3 |
* Portions copyright (c) 2006-2009 Nokia Corporation. All rights reserved.
|
sl@0
|
4 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
5 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
6 |
* License as published by the Free Software Foundation; either
|
sl@0
|
7 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
12 |
* Lesser General Public License for more details.
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* You should have received a copy of the GNU Lesser General
|
sl@0
|
15 |
* Public License along with this library; if not, write to the
|
sl@0
|
16 |
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
sl@0
|
17 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
18 |
*/
|
sl@0
|
19 |
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
|
sl@0
|
20 |
#error "Only <glib-object.h> can be included directly."
|
sl@0
|
21 |
#endif
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef __G_ENUMS_H__
|
sl@0
|
24 |
#define __G_ENUMS_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <gobject/gtype.h>
|
sl@0
|
27 |
|
sl@0
|
28 |
G_BEGIN_DECLS
|
sl@0
|
29 |
|
sl@0
|
30 |
/* --- type macros --- */
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
* G_TYPE_IS_ENUM:
|
sl@0
|
33 |
* @type: a #GType ID.
|
sl@0
|
34 |
*
|
sl@0
|
35 |
* Checks whether @type "is a" %G_TYPE_ENUM.
|
sl@0
|
36 |
*
|
sl@0
|
37 |
* Returns: %TRUE if @type "is a" %G_TYPE_ENUM.
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
#define G_TYPE_IS_ENUM(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_ENUM)
|
sl@0
|
40 |
/**
|
sl@0
|
41 |
* G_ENUM_CLASS:
|
sl@0
|
42 |
* @class: a valid #GEnumClass
|
sl@0
|
43 |
*
|
sl@0
|
44 |
* Casts a derived #GEnumClass structure into a #GEnumClass structure.
|
sl@0
|
45 |
*/
|
sl@0
|
46 |
#define G_ENUM_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_ENUM, GEnumClass))
|
sl@0
|
47 |
/**
|
sl@0
|
48 |
* G_IS_ENUM_CLASS:
|
sl@0
|
49 |
* @class: a #GEnumClass
|
sl@0
|
50 |
*
|
sl@0
|
51 |
* Checks whether @class "is a" valid #GEnumClass structure of type %G_TYPE_ENUM
|
sl@0
|
52 |
* or derived.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
#define G_IS_ENUM_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_ENUM))
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
* G_ENUM_CLASS_TYPE:
|
sl@0
|
57 |
* @class: a #GEnumClass
|
sl@0
|
58 |
*
|
sl@0
|
59 |
* Get the type identifier from a given #GEnumClass structure.
|
sl@0
|
60 |
*
|
sl@0
|
61 |
* Returns: the #GType
|
sl@0
|
62 |
*/
|
sl@0
|
63 |
#define G_ENUM_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class))
|
sl@0
|
64 |
/**
|
sl@0
|
65 |
* G_ENUM_CLASS_TYPE_NAME:
|
sl@0
|
66 |
* @class: a #GEnumClass
|
sl@0
|
67 |
*
|
sl@0
|
68 |
* Get the static type name from a given #GEnumClass structure.
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* Returns: the type name.
|
sl@0
|
71 |
*/
|
sl@0
|
72 |
#define G_ENUM_CLASS_TYPE_NAME(class) (g_type_name (G_ENUM_CLASS_TYPE (class)))
|
sl@0
|
73 |
|
sl@0
|
74 |
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
* G_TYPE_IS_FLAGS:
|
sl@0
|
77 |
* @type: a #GType ID.
|
sl@0
|
78 |
*
|
sl@0
|
79 |
* Checks whether @type "is a" %G_TYPE_FLAGS.
|
sl@0
|
80 |
*
|
sl@0
|
81 |
* Returns: %TRUE if @type "is a" %G_TYPE_FLAGS.
|
sl@0
|
82 |
*/
|
sl@0
|
83 |
#define G_TYPE_IS_FLAGS(type) (G_TYPE_FUNDAMENTAL (type) == G_TYPE_FLAGS)
|
sl@0
|
84 |
/**
|
sl@0
|
85 |
* G_FLAGS_CLASS:
|
sl@0
|
86 |
* @class: a valid #GFlagsClass
|
sl@0
|
87 |
*
|
sl@0
|
88 |
* Casts a derived #GFlagsClass structure into a #GFlagsClass structure.
|
sl@0
|
89 |
*/
|
sl@0
|
90 |
#define G_FLAGS_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_FLAGS, GFlagsClass))
|
sl@0
|
91 |
/**
|
sl@0
|
92 |
* G_IS_FLAGS_CLASS:
|
sl@0
|
93 |
* @class: a #GFlagsClass
|
sl@0
|
94 |
*
|
sl@0
|
95 |
* Checks whether @class "is a" valid #GFlagsClass structure of type %G_TYPE_FLAGS
|
sl@0
|
96 |
* or derived.
|
sl@0
|
97 |
*/
|
sl@0
|
98 |
#define G_IS_FLAGS_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_FLAGS))
|
sl@0
|
99 |
/**
|
sl@0
|
100 |
* G_FLAGS_CLASS_TYPE:
|
sl@0
|
101 |
* @class: a #GFlagsClass
|
sl@0
|
102 |
*
|
sl@0
|
103 |
* Get the type identifier from a given #GFlagsClass structure.
|
sl@0
|
104 |
*
|
sl@0
|
105 |
* Returns: the #GType
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
#define G_FLAGS_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class))
|
sl@0
|
108 |
/**
|
sl@0
|
109 |
* G_FLAGS_CLASS_TYPE_NAME:
|
sl@0
|
110 |
* @class: a #GFlagsClass
|
sl@0
|
111 |
*
|
sl@0
|
112 |
* Get the static type name from a given #GFlagsClass structure.
|
sl@0
|
113 |
*
|
sl@0
|
114 |
* Returns: the type name.
|
sl@0
|
115 |
*/
|
sl@0
|
116 |
#define G_FLAGS_CLASS_TYPE_NAME(class) (g_type_name (G_FLAGS_CLASS_TYPE (class)))
|
sl@0
|
117 |
|
sl@0
|
118 |
|
sl@0
|
119 |
/**
|
sl@0
|
120 |
* G_VALUE_HOLDS_ENUM:
|
sl@0
|
121 |
* @value: a valid #GValue structure
|
sl@0
|
122 |
*
|
sl@0
|
123 |
* Checks whether the given #GValue can hold values derived from type %G_TYPE_ENUM.
|
sl@0
|
124 |
*
|
sl@0
|
125 |
* Returns: %TRUE on success.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
#define G_VALUE_HOLDS_ENUM(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_ENUM))
|
sl@0
|
128 |
/**
|
sl@0
|
129 |
* G_VALUE_HOLDS_FLAGS:
|
sl@0
|
130 |
* @value: a valid #GValue structure
|
sl@0
|
131 |
*
|
sl@0
|
132 |
* Checks whether the given #GValue can hold values derived from type %G_TYPE_FLAGS.
|
sl@0
|
133 |
*
|
sl@0
|
134 |
* Returns: %TRUE on success.
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
#define G_VALUE_HOLDS_FLAGS(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_FLAGS))
|
sl@0
|
137 |
|
sl@0
|
138 |
|
sl@0
|
139 |
/* --- enum/flag values & classes --- */
|
sl@0
|
140 |
typedef struct _GEnumClass GEnumClass;
|
sl@0
|
141 |
typedef struct _GFlagsClass GFlagsClass;
|
sl@0
|
142 |
typedef struct _GEnumValue GEnumValue;
|
sl@0
|
143 |
typedef struct _GFlagsValue GFlagsValue;
|
sl@0
|
144 |
|
sl@0
|
145 |
/**
|
sl@0
|
146 |
* GEnumClass:
|
sl@0
|
147 |
* @g_type_class: the parent class
|
sl@0
|
148 |
* @minimum: the smallest possible value.
|
sl@0
|
149 |
* @maximum: the largest possible value.
|
sl@0
|
150 |
* @n_values: the number of possible values.
|
sl@0
|
151 |
* @values: an array of #GEnumValue structs describing the
|
sl@0
|
152 |
* individual values.
|
sl@0
|
153 |
*
|
sl@0
|
154 |
* The class of an enumeration type holds information about its
|
sl@0
|
155 |
* possible values.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
struct _GEnumClass
|
sl@0
|
158 |
{
|
sl@0
|
159 |
GTypeClass g_type_class;
|
sl@0
|
160 |
|
sl@0
|
161 |
/*< public >*/
|
sl@0
|
162 |
gint minimum;
|
sl@0
|
163 |
gint maximum;
|
sl@0
|
164 |
guint n_values;
|
sl@0
|
165 |
GEnumValue *values;
|
sl@0
|
166 |
};
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
* GFlagsClass:
|
sl@0
|
169 |
* @g_type_class: the parent class
|
sl@0
|
170 |
* @mask: a mask covering all possible values.
|
sl@0
|
171 |
* @n_values: the number of possible values.
|
sl@0
|
172 |
* @values: an array of #GFlagsValue structs describing the
|
sl@0
|
173 |
* individual values.
|
sl@0
|
174 |
*
|
sl@0
|
175 |
* The class of a flags type holds information about its
|
sl@0
|
176 |
* possible values.
|
sl@0
|
177 |
*/
|
sl@0
|
178 |
struct _GFlagsClass
|
sl@0
|
179 |
{
|
sl@0
|
180 |
GTypeClass g_type_class;
|
sl@0
|
181 |
|
sl@0
|
182 |
/*< public >*/
|
sl@0
|
183 |
guint mask;
|
sl@0
|
184 |
guint n_values;
|
sl@0
|
185 |
GFlagsValue *values;
|
sl@0
|
186 |
};
|
sl@0
|
187 |
/**
|
sl@0
|
188 |
* GEnumValue:
|
sl@0
|
189 |
* @value: the enum value
|
sl@0
|
190 |
* @value_name: the name of the value
|
sl@0
|
191 |
* @value_nick: the nickname of the value
|
sl@0
|
192 |
*
|
sl@0
|
193 |
* A structure which contains a single enum value, its name, and its
|
sl@0
|
194 |
* nickname.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
struct _GEnumValue
|
sl@0
|
197 |
{
|
sl@0
|
198 |
gint value;
|
sl@0
|
199 |
const gchar *value_name;
|
sl@0
|
200 |
const gchar *value_nick;
|
sl@0
|
201 |
};
|
sl@0
|
202 |
/**
|
sl@0
|
203 |
* GFlagsValue:
|
sl@0
|
204 |
* @value: the flags value
|
sl@0
|
205 |
* @value_name: the name of the value
|
sl@0
|
206 |
* @value_nick: the nickname of the value
|
sl@0
|
207 |
*
|
sl@0
|
208 |
* A structure which contains a single flags value, its name, and its
|
sl@0
|
209 |
* nickname.
|
sl@0
|
210 |
*/
|
sl@0
|
211 |
struct _GFlagsValue
|
sl@0
|
212 |
{
|
sl@0
|
213 |
guint value;
|
sl@0
|
214 |
const gchar *value_name;
|
sl@0
|
215 |
const gchar *value_nick;
|
sl@0
|
216 |
};
|
sl@0
|
217 |
|
sl@0
|
218 |
|
sl@0
|
219 |
/* --- prototypes --- */
|
sl@0
|
220 |
IMPORT_C GEnumValue* g_enum_get_value (GEnumClass *enum_class,
|
sl@0
|
221 |
gint value);
|
sl@0
|
222 |
IMPORT_C GEnumValue* g_enum_get_value_by_name (GEnumClass *enum_class,
|
sl@0
|
223 |
const gchar *name);
|
sl@0
|
224 |
IMPORT_C GEnumValue* g_enum_get_value_by_nick (GEnumClass *enum_class,
|
sl@0
|
225 |
const gchar *nick);
|
sl@0
|
226 |
IMPORT_C GFlagsValue* g_flags_get_first_value (GFlagsClass *flags_class,
|
sl@0
|
227 |
guint value);
|
sl@0
|
228 |
IMPORT_C GFlagsValue* g_flags_get_value_by_name (GFlagsClass *flags_class,
|
sl@0
|
229 |
const gchar *name);
|
sl@0
|
230 |
IMPORT_C GFlagsValue* g_flags_get_value_by_nick (GFlagsClass *flags_class,
|
sl@0
|
231 |
const gchar *nick);
|
sl@0
|
232 |
IMPORT_C void g_value_set_enum (GValue *value,
|
sl@0
|
233 |
gint v_enum);
|
sl@0
|
234 |
IMPORT_C gint g_value_get_enum (const GValue *value);
|
sl@0
|
235 |
IMPORT_C void g_value_set_flags (GValue *value,
|
sl@0
|
236 |
guint v_flags);
|
sl@0
|
237 |
IMPORT_C guint g_value_get_flags (const GValue *value);
|
sl@0
|
238 |
|
sl@0
|
239 |
|
sl@0
|
240 |
|
sl@0
|
241 |
/* --- registration functions --- */
|
sl@0
|
242 |
/* const_static_values is a NULL terminated array of enum/flags
|
sl@0
|
243 |
* values that is taken over!
|
sl@0
|
244 |
*/
|
sl@0
|
245 |
IMPORT_C GType g_enum_register_static (const gchar *name,
|
sl@0
|
246 |
const GEnumValue *const_static_values);
|
sl@0
|
247 |
IMPORT_C GType g_flags_register_static (const gchar *name,
|
sl@0
|
248 |
const GFlagsValue *const_static_values);
|
sl@0
|
249 |
/* functions to complete the type information
|
sl@0
|
250 |
* for enums/flags implemented by plugins
|
sl@0
|
251 |
*/
|
sl@0
|
252 |
IMPORT_C void g_enum_complete_type_info (GType g_enum_type,
|
sl@0
|
253 |
GTypeInfo *info,
|
sl@0
|
254 |
const GEnumValue *const_values);
|
sl@0
|
255 |
IMPORT_C void g_flags_complete_type_info (GType g_flags_type,
|
sl@0
|
256 |
GTypeInfo *info,
|
sl@0
|
257 |
const GFlagsValue *const_values);
|
sl@0
|
258 |
|
sl@0
|
259 |
G_END_DECLS
|
sl@0
|
260 |
|
sl@0
|
261 |
#endif /* __G_ENUMS_H__ */
|