sl@0
|
1 |
/* GObject - GLib Type, Object, Parameter and Signal Library
|
sl@0
|
2 |
* Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc.
|
sl@0
|
3 |
* Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
sl@0
|
4 |
*
|
sl@0
|
5 |
* This library is free software; you can redistribute it and/or
|
sl@0
|
6 |
* modify it under the terms of the GNU Lesser General Public
|
sl@0
|
7 |
* License as published by the Free Software Foundation; either
|
sl@0
|
8 |
* version 2 of the License, or (at your option) any later version.
|
sl@0
|
9 |
*
|
sl@0
|
10 |
* This library is distributed in the hope that it will be useful,
|
sl@0
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
sl@0
|
13 |
* Lesser General Public License for more details.
|
sl@0
|
14 |
*
|
sl@0
|
15 |
* You should have received a copy of the GNU Lesser General
|
sl@0
|
16 |
* Public License along with this library; if not, write to the
|
sl@0
|
17 |
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
sl@0
|
18 |
* Boston, MA 02111-1307, USA.
|
sl@0
|
19 |
*
|
sl@0
|
20 |
* gparamspecs.h: GLib default param specs
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
|
sl@0
|
23 |
#error "Only <glib-object.h> can be included directly."
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
#ifndef __G_PARAMSPECS_H__
|
sl@0
|
27 |
#define __G_PARAMSPECS_H__
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <_ansi.h>
|
sl@0
|
30 |
#include <gobject/gvalue.h>
|
sl@0
|
31 |
#include <gobject/genums.h>
|
sl@0
|
32 |
#include <gobject/gboxed.h>
|
sl@0
|
33 |
#include <gobject/gobject.h>
|
sl@0
|
34 |
|
sl@0
|
35 |
G_BEGIN_DECLS
|
sl@0
|
36 |
|
sl@0
|
37 |
/* --- type macros --- */
|
sl@0
|
38 |
#define G_TYPE_PARAM_CHAR (g_param_spec_types[0])
|
sl@0
|
39 |
#define G_IS_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_CHAR))
|
sl@0
|
40 |
#define G_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_CHAR, GParamSpecChar))
|
sl@0
|
41 |
#define G_TYPE_PARAM_UCHAR (g_param_spec_types[1])
|
sl@0
|
42 |
#define G_IS_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UCHAR))
|
sl@0
|
43 |
#define G_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UCHAR, GParamSpecUChar))
|
sl@0
|
44 |
#define G_TYPE_PARAM_BOOLEAN (g_param_spec_types[2])
|
sl@0
|
45 |
#define G_IS_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOOLEAN))
|
sl@0
|
46 |
#define G_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOOLEAN, GParamSpecBoolean))
|
sl@0
|
47 |
#define G_TYPE_PARAM_INT (g_param_spec_types[3])
|
sl@0
|
48 |
#define G_IS_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT))
|
sl@0
|
49 |
#define G_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT, GParamSpecInt))
|
sl@0
|
50 |
#define G_TYPE_PARAM_UINT (g_param_spec_types[4])
|
sl@0
|
51 |
#define G_IS_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT))
|
sl@0
|
52 |
#define G_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT, GParamSpecUInt))
|
sl@0
|
53 |
#define G_TYPE_PARAM_LONG (g_param_spec_types[5])
|
sl@0
|
54 |
#define G_IS_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_LONG))
|
sl@0
|
55 |
#define G_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_LONG, GParamSpecLong))
|
sl@0
|
56 |
#define G_TYPE_PARAM_ULONG (g_param_spec_types[6])
|
sl@0
|
57 |
#define G_IS_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ULONG))
|
sl@0
|
58 |
#define G_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ULONG, GParamSpecULong))
|
sl@0
|
59 |
#define G_TYPE_PARAM_INT64 (g_param_spec_types[7])
|
sl@0
|
60 |
#define G_IS_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT64))
|
sl@0
|
61 |
#define G_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT64, GParamSpecInt64))
|
sl@0
|
62 |
#define G_TYPE_PARAM_UINT64 (g_param_spec_types[8])
|
sl@0
|
63 |
#define G_IS_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT64))
|
sl@0
|
64 |
#define G_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT64, GParamSpecUInt64))
|
sl@0
|
65 |
#define G_TYPE_PARAM_UNICHAR (g_param_spec_types[9])
|
sl@0
|
66 |
#define G_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UNICHAR, GParamSpecUnichar))
|
sl@0
|
67 |
#define G_IS_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UNICHAR))
|
sl@0
|
68 |
#define G_TYPE_PARAM_ENUM (g_param_spec_types[10])
|
sl@0
|
69 |
#define G_IS_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ENUM))
|
sl@0
|
70 |
#define G_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ENUM, GParamSpecEnum))
|
sl@0
|
71 |
#define G_TYPE_PARAM_FLAGS (g_param_spec_types[11])
|
sl@0
|
72 |
#define G_IS_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLAGS))
|
sl@0
|
73 |
#define G_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLAGS, GParamSpecFlags))
|
sl@0
|
74 |
#define G_TYPE_PARAM_FLOAT (g_param_spec_types[12])
|
sl@0
|
75 |
#define G_IS_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLOAT))
|
sl@0
|
76 |
#define G_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLOAT, GParamSpecFloat))
|
sl@0
|
77 |
#define G_TYPE_PARAM_DOUBLE (g_param_spec_types[13])
|
sl@0
|
78 |
#define G_IS_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_DOUBLE))
|
sl@0
|
79 |
#define G_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_DOUBLE, GParamSpecDouble))
|
sl@0
|
80 |
#define G_TYPE_PARAM_STRING (g_param_spec_types[14])
|
sl@0
|
81 |
#define G_IS_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_STRING))
|
sl@0
|
82 |
#define G_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_STRING, GParamSpecString))
|
sl@0
|
83 |
#define G_TYPE_PARAM_PARAM (g_param_spec_types[15])
|
sl@0
|
84 |
#define G_IS_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_PARAM))
|
sl@0
|
85 |
#define G_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_PARAM, GParamSpecParam))
|
sl@0
|
86 |
#define G_TYPE_PARAM_BOXED (g_param_spec_types[16])
|
sl@0
|
87 |
#define G_IS_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOXED))
|
sl@0
|
88 |
#define G_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOXED, GParamSpecBoxed))
|
sl@0
|
89 |
#define G_TYPE_PARAM_POINTER (g_param_spec_types[17])
|
sl@0
|
90 |
#define G_IS_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_POINTER))
|
sl@0
|
91 |
#define G_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_POINTER, GParamSpecPointer))
|
sl@0
|
92 |
#define G_TYPE_PARAM_VALUE_ARRAY (g_param_spec_types[18])
|
sl@0
|
93 |
#define G_IS_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_VALUE_ARRAY))
|
sl@0
|
94 |
#define G_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_VALUE_ARRAY, GParamSpecValueArray))
|
sl@0
|
95 |
#define G_TYPE_PARAM_OBJECT (g_param_spec_types[19])
|
sl@0
|
96 |
#define G_IS_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OBJECT))
|
sl@0
|
97 |
#define G_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OBJECT, GParamSpecObject))
|
sl@0
|
98 |
#define G_TYPE_PARAM_OVERRIDE (g_param_spec_types[20])
|
sl@0
|
99 |
#define G_IS_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OVERRIDE))
|
sl@0
|
100 |
#define G_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OVERRIDE, GParamSpecOverride))
|
sl@0
|
101 |
#define G_TYPE_PARAM_GTYPE (g_param_spec_types[21])
|
sl@0
|
102 |
#define G_IS_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_GTYPE))
|
sl@0
|
103 |
#define G_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_GTYPE, GParamSpecGType))
|
sl@0
|
104 |
|
sl@0
|
105 |
|
sl@0
|
106 |
/* --- typedefs & structures --- */
|
sl@0
|
107 |
typedef struct _GParamSpecChar GParamSpecChar;
|
sl@0
|
108 |
typedef struct _GParamSpecUChar GParamSpecUChar;
|
sl@0
|
109 |
typedef struct _GParamSpecBoolean GParamSpecBoolean;
|
sl@0
|
110 |
typedef struct _GParamSpecInt GParamSpecInt;
|
sl@0
|
111 |
typedef struct _GParamSpecUInt GParamSpecUInt;
|
sl@0
|
112 |
typedef struct _GParamSpecLong GParamSpecLong;
|
sl@0
|
113 |
typedef struct _GParamSpecULong GParamSpecULong;
|
sl@0
|
114 |
typedef struct _GParamSpecInt64 GParamSpecInt64;
|
sl@0
|
115 |
typedef struct _GParamSpecUInt64 GParamSpecUInt64;
|
sl@0
|
116 |
typedef struct _GParamSpecUnichar GParamSpecUnichar;
|
sl@0
|
117 |
typedef struct _GParamSpecEnum GParamSpecEnum;
|
sl@0
|
118 |
typedef struct _GParamSpecFlags GParamSpecFlags;
|
sl@0
|
119 |
typedef struct _GParamSpecFloat GParamSpecFloat;
|
sl@0
|
120 |
typedef struct _GParamSpecDouble GParamSpecDouble;
|
sl@0
|
121 |
typedef struct _GParamSpecString GParamSpecString;
|
sl@0
|
122 |
typedef struct _GParamSpecParam GParamSpecParam;
|
sl@0
|
123 |
typedef struct _GParamSpecBoxed GParamSpecBoxed;
|
sl@0
|
124 |
typedef struct _GParamSpecPointer GParamSpecPointer;
|
sl@0
|
125 |
typedef struct _GParamSpecValueArray GParamSpecValueArray;
|
sl@0
|
126 |
typedef struct _GParamSpecObject GParamSpecObject;
|
sl@0
|
127 |
typedef struct _GParamSpecOverride GParamSpecOverride;
|
sl@0
|
128 |
typedef struct _GParamSpecGType GParamSpecGType;
|
sl@0
|
129 |
|
sl@0
|
130 |
struct _GParamSpecChar
|
sl@0
|
131 |
{
|
sl@0
|
132 |
GParamSpec parent_instance;
|
sl@0
|
133 |
|
sl@0
|
134 |
gint8 minimum;
|
sl@0
|
135 |
gint8 maximum;
|
sl@0
|
136 |
gint8 default_value;
|
sl@0
|
137 |
};
|
sl@0
|
138 |
struct _GParamSpecUChar
|
sl@0
|
139 |
{
|
sl@0
|
140 |
GParamSpec parent_instance;
|
sl@0
|
141 |
|
sl@0
|
142 |
guint8 minimum;
|
sl@0
|
143 |
guint8 maximum;
|
sl@0
|
144 |
guint8 default_value;
|
sl@0
|
145 |
};
|
sl@0
|
146 |
struct _GParamSpecBoolean
|
sl@0
|
147 |
{
|
sl@0
|
148 |
GParamSpec parent_instance;
|
sl@0
|
149 |
|
sl@0
|
150 |
gboolean default_value;
|
sl@0
|
151 |
};
|
sl@0
|
152 |
struct _GParamSpecInt
|
sl@0
|
153 |
{
|
sl@0
|
154 |
GParamSpec parent_instance;
|
sl@0
|
155 |
|
sl@0
|
156 |
gint minimum;
|
sl@0
|
157 |
gint maximum;
|
sl@0
|
158 |
gint default_value;
|
sl@0
|
159 |
};
|
sl@0
|
160 |
struct _GParamSpecUInt
|
sl@0
|
161 |
{
|
sl@0
|
162 |
GParamSpec parent_instance;
|
sl@0
|
163 |
|
sl@0
|
164 |
guint minimum;
|
sl@0
|
165 |
guint maximum;
|
sl@0
|
166 |
guint default_value;
|
sl@0
|
167 |
};
|
sl@0
|
168 |
struct _GParamSpecLong
|
sl@0
|
169 |
{
|
sl@0
|
170 |
GParamSpec parent_instance;
|
sl@0
|
171 |
|
sl@0
|
172 |
glong minimum;
|
sl@0
|
173 |
glong maximum;
|
sl@0
|
174 |
glong default_value;
|
sl@0
|
175 |
};
|
sl@0
|
176 |
struct _GParamSpecULong
|
sl@0
|
177 |
{
|
sl@0
|
178 |
GParamSpec parent_instance;
|
sl@0
|
179 |
|
sl@0
|
180 |
gulong minimum;
|
sl@0
|
181 |
gulong maximum;
|
sl@0
|
182 |
gulong default_value;
|
sl@0
|
183 |
};
|
sl@0
|
184 |
struct _GParamSpecInt64
|
sl@0
|
185 |
{
|
sl@0
|
186 |
GParamSpec parent_instance;
|
sl@0
|
187 |
|
sl@0
|
188 |
gint64 minimum;
|
sl@0
|
189 |
gint64 maximum;
|
sl@0
|
190 |
gint64 default_value;
|
sl@0
|
191 |
};
|
sl@0
|
192 |
struct _GParamSpecUInt64
|
sl@0
|
193 |
{
|
sl@0
|
194 |
GParamSpec parent_instance;
|
sl@0
|
195 |
|
sl@0
|
196 |
guint64 minimum;
|
sl@0
|
197 |
guint64 maximum;
|
sl@0
|
198 |
guint64 default_value;
|
sl@0
|
199 |
};
|
sl@0
|
200 |
struct _GParamSpecUnichar
|
sl@0
|
201 |
{
|
sl@0
|
202 |
GParamSpec parent_instance;
|
sl@0
|
203 |
|
sl@0
|
204 |
gunichar default_value;
|
sl@0
|
205 |
};
|
sl@0
|
206 |
struct _GParamSpecEnum
|
sl@0
|
207 |
{
|
sl@0
|
208 |
GParamSpec parent_instance;
|
sl@0
|
209 |
|
sl@0
|
210 |
GEnumClass *enum_class;
|
sl@0
|
211 |
gint default_value;
|
sl@0
|
212 |
};
|
sl@0
|
213 |
struct _GParamSpecFlags
|
sl@0
|
214 |
{
|
sl@0
|
215 |
GParamSpec parent_instance;
|
sl@0
|
216 |
|
sl@0
|
217 |
GFlagsClass *flags_class;
|
sl@0
|
218 |
guint default_value;
|
sl@0
|
219 |
};
|
sl@0
|
220 |
struct _GParamSpecFloat
|
sl@0
|
221 |
{
|
sl@0
|
222 |
GParamSpec parent_instance;
|
sl@0
|
223 |
|
sl@0
|
224 |
gfloat minimum;
|
sl@0
|
225 |
gfloat maximum;
|
sl@0
|
226 |
gfloat default_value;
|
sl@0
|
227 |
gfloat epsilon;
|
sl@0
|
228 |
};
|
sl@0
|
229 |
struct _GParamSpecDouble
|
sl@0
|
230 |
{
|
sl@0
|
231 |
GParamSpec parent_instance;
|
sl@0
|
232 |
|
sl@0
|
233 |
gdouble minimum;
|
sl@0
|
234 |
gdouble maximum;
|
sl@0
|
235 |
gdouble default_value;
|
sl@0
|
236 |
gdouble epsilon;
|
sl@0
|
237 |
};
|
sl@0
|
238 |
struct _GParamSpecString
|
sl@0
|
239 |
{
|
sl@0
|
240 |
GParamSpec parent_instance;
|
sl@0
|
241 |
|
sl@0
|
242 |
gchar *default_value;
|
sl@0
|
243 |
gchar *cset_first;
|
sl@0
|
244 |
gchar *cset_nth;
|
sl@0
|
245 |
gchar substitutor;
|
sl@0
|
246 |
guint null_fold_if_empty : 1;
|
sl@0
|
247 |
guint ensure_non_null : 1;
|
sl@0
|
248 |
};
|
sl@0
|
249 |
struct _GParamSpecParam
|
sl@0
|
250 |
{
|
sl@0
|
251 |
GParamSpec parent_instance;
|
sl@0
|
252 |
};
|
sl@0
|
253 |
struct _GParamSpecBoxed
|
sl@0
|
254 |
{
|
sl@0
|
255 |
GParamSpec parent_instance;
|
sl@0
|
256 |
};
|
sl@0
|
257 |
struct _GParamSpecPointer
|
sl@0
|
258 |
{
|
sl@0
|
259 |
GParamSpec parent_instance;
|
sl@0
|
260 |
};
|
sl@0
|
261 |
struct _GParamSpecValueArray
|
sl@0
|
262 |
{
|
sl@0
|
263 |
GParamSpec parent_instance;
|
sl@0
|
264 |
GParamSpec *element_spec;
|
sl@0
|
265 |
guint fixed_n_elements;
|
sl@0
|
266 |
};
|
sl@0
|
267 |
struct _GParamSpecObject
|
sl@0
|
268 |
{
|
sl@0
|
269 |
GParamSpec parent_instance;
|
sl@0
|
270 |
};
|
sl@0
|
271 |
struct _GParamSpecOverride
|
sl@0
|
272 |
{
|
sl@0
|
273 |
/*< private >*/
|
sl@0
|
274 |
GParamSpec parent_instance;
|
sl@0
|
275 |
GParamSpec *overridden;
|
sl@0
|
276 |
};
|
sl@0
|
277 |
struct _GParamSpecGType
|
sl@0
|
278 |
{
|
sl@0
|
279 |
GParamSpec parent_instance;
|
sl@0
|
280 |
GType is_a_type;
|
sl@0
|
281 |
};
|
sl@0
|
282 |
|
sl@0
|
283 |
/* --- GParamSpec prototypes --- */
|
sl@0
|
284 |
IMPORT_C GParamSpec* g_param_spec_char (const gchar *name,
|
sl@0
|
285 |
const gchar *nick,
|
sl@0
|
286 |
const gchar *blurb,
|
sl@0
|
287 |
gint8 minimum,
|
sl@0
|
288 |
gint8 maximum,
|
sl@0
|
289 |
gint8 default_value,
|
sl@0
|
290 |
GParamFlags flags);
|
sl@0
|
291 |
IMPORT_C GParamSpec* g_param_spec_uchar (const gchar *name,
|
sl@0
|
292 |
const gchar *nick,
|
sl@0
|
293 |
const gchar *blurb,
|
sl@0
|
294 |
guint8 minimum,
|
sl@0
|
295 |
guint8 maximum,
|
sl@0
|
296 |
guint8 default_value,
|
sl@0
|
297 |
GParamFlags flags);
|
sl@0
|
298 |
IMPORT_C GParamSpec* g_param_spec_boolean (const gchar *name,
|
sl@0
|
299 |
const gchar *nick,
|
sl@0
|
300 |
const gchar *blurb,
|
sl@0
|
301 |
gboolean default_value,
|
sl@0
|
302 |
GParamFlags flags);
|
sl@0
|
303 |
IMPORT_C GParamSpec* g_param_spec_int (const gchar *name,
|
sl@0
|
304 |
const gchar *nick,
|
sl@0
|
305 |
const gchar *blurb,
|
sl@0
|
306 |
gint minimum,
|
sl@0
|
307 |
gint maximum,
|
sl@0
|
308 |
gint default_value,
|
sl@0
|
309 |
GParamFlags flags);
|
sl@0
|
310 |
IMPORT_C GParamSpec* g_param_spec_uint (const gchar *name,
|
sl@0
|
311 |
const gchar *nick,
|
sl@0
|
312 |
const gchar *blurb,
|
sl@0
|
313 |
guint minimum,
|
sl@0
|
314 |
guint maximum,
|
sl@0
|
315 |
guint default_value,
|
sl@0
|
316 |
GParamFlags flags);
|
sl@0
|
317 |
IMPORT_C GParamSpec* g_param_spec_long (const gchar *name,
|
sl@0
|
318 |
const gchar *nick,
|
sl@0
|
319 |
const gchar *blurb,
|
sl@0
|
320 |
glong minimum,
|
sl@0
|
321 |
glong maximum,
|
sl@0
|
322 |
glong default_value,
|
sl@0
|
323 |
GParamFlags flags);
|
sl@0
|
324 |
IMPORT_C GParamSpec* g_param_spec_ulong (const gchar *name,
|
sl@0
|
325 |
const gchar *nick,
|
sl@0
|
326 |
const gchar *blurb,
|
sl@0
|
327 |
gulong minimum,
|
sl@0
|
328 |
gulong maximum,
|
sl@0
|
329 |
gulong default_value,
|
sl@0
|
330 |
GParamFlags flags);
|
sl@0
|
331 |
IMPORT_C GParamSpec* g_param_spec_int64 (const gchar *name,
|
sl@0
|
332 |
const gchar *nick,
|
sl@0
|
333 |
const gchar *blurb,
|
sl@0
|
334 |
gint64 minimum,
|
sl@0
|
335 |
gint64 maximum,
|
sl@0
|
336 |
gint64 default_value,
|
sl@0
|
337 |
GParamFlags flags);
|
sl@0
|
338 |
IMPORT_C GParamSpec* g_param_spec_uint64 (const gchar *name,
|
sl@0
|
339 |
const gchar *nick,
|
sl@0
|
340 |
const gchar *blurb,
|
sl@0
|
341 |
guint64 minimum,
|
sl@0
|
342 |
guint64 maximum,
|
sl@0
|
343 |
guint64 default_value,
|
sl@0
|
344 |
GParamFlags flags);
|
sl@0
|
345 |
IMPORT_C GParamSpec* g_param_spec_unichar (const gchar *name,
|
sl@0
|
346 |
const gchar *nick,
|
sl@0
|
347 |
const gchar *blurb,
|
sl@0
|
348 |
gunichar default_value,
|
sl@0
|
349 |
GParamFlags flags);
|
sl@0
|
350 |
IMPORT_C GParamSpec* g_param_spec_enum (const gchar *name,
|
sl@0
|
351 |
const gchar *nick,
|
sl@0
|
352 |
const gchar *blurb,
|
sl@0
|
353 |
GType enum_type,
|
sl@0
|
354 |
gint default_value,
|
sl@0
|
355 |
GParamFlags flags);
|
sl@0
|
356 |
IMPORT_C GParamSpec* g_param_spec_flags (const gchar *name,
|
sl@0
|
357 |
const gchar *nick,
|
sl@0
|
358 |
const gchar *blurb,
|
sl@0
|
359 |
GType flags_type,
|
sl@0
|
360 |
guint default_value,
|
sl@0
|
361 |
GParamFlags flags);
|
sl@0
|
362 |
IMPORT_C GParamSpec* g_param_spec_float (const gchar *name,
|
sl@0
|
363 |
const gchar *nick,
|
sl@0
|
364 |
const gchar *blurb,
|
sl@0
|
365 |
gfloat minimum,
|
sl@0
|
366 |
gfloat maximum,
|
sl@0
|
367 |
gfloat default_value,
|
sl@0
|
368 |
GParamFlags flags);
|
sl@0
|
369 |
IMPORT_C GParamSpec* g_param_spec_double (const gchar *name,
|
sl@0
|
370 |
const gchar *nick,
|
sl@0
|
371 |
const gchar *blurb,
|
sl@0
|
372 |
gdouble minimum,
|
sl@0
|
373 |
gdouble maximum,
|
sl@0
|
374 |
gdouble default_value,
|
sl@0
|
375 |
GParamFlags flags);
|
sl@0
|
376 |
IMPORT_C GParamSpec* g_param_spec_string (const gchar *name,
|
sl@0
|
377 |
const gchar *nick,
|
sl@0
|
378 |
const gchar *blurb,
|
sl@0
|
379 |
const gchar *default_value,
|
sl@0
|
380 |
GParamFlags flags);
|
sl@0
|
381 |
IMPORT_C GParamSpec* g_param_spec_param (const gchar *name,
|
sl@0
|
382 |
const gchar *nick,
|
sl@0
|
383 |
const gchar *blurb,
|
sl@0
|
384 |
GType param_type,
|
sl@0
|
385 |
GParamFlags flags);
|
sl@0
|
386 |
IMPORT_C GParamSpec* g_param_spec_boxed (const gchar *name,
|
sl@0
|
387 |
const gchar *nick,
|
sl@0
|
388 |
const gchar *blurb,
|
sl@0
|
389 |
GType boxed_type,
|
sl@0
|
390 |
GParamFlags flags);
|
sl@0
|
391 |
IMPORT_C GParamSpec* g_param_spec_pointer (const gchar *name,
|
sl@0
|
392 |
const gchar *nick,
|
sl@0
|
393 |
const gchar *blurb,
|
sl@0
|
394 |
GParamFlags flags);
|
sl@0
|
395 |
IMPORT_C GParamSpec* g_param_spec_value_array (const gchar *name,
|
sl@0
|
396 |
const gchar *nick,
|
sl@0
|
397 |
const gchar *blurb,
|
sl@0
|
398 |
GParamSpec *element_spec,
|
sl@0
|
399 |
GParamFlags flags);
|
sl@0
|
400 |
IMPORT_C GParamSpec* g_param_spec_object (const gchar *name,
|
sl@0
|
401 |
const gchar *nick,
|
sl@0
|
402 |
const gchar *blurb,
|
sl@0
|
403 |
GType object_type,
|
sl@0
|
404 |
GParamFlags flags);
|
sl@0
|
405 |
IMPORT_C GParamSpec* g_param_spec_override (const gchar *name,
|
sl@0
|
406 |
GParamSpec *overridden);
|
sl@0
|
407 |
IMPORT_C GParamSpec* g_param_spec_gtype (const gchar *name,
|
sl@0
|
408 |
const gchar *nick,
|
sl@0
|
409 |
const gchar *blurb,
|
sl@0
|
410 |
GType is_a_type,
|
sl@0
|
411 |
GParamFlags flags);
|
sl@0
|
412 |
|
sl@0
|
413 |
/* --- internal --- */
|
sl@0
|
414 |
/* We prefix variable declarations so they can
|
sl@0
|
415 |
* properly get exported in windows dlls.
|
sl@0
|
416 |
*/
|
sl@0
|
417 |
#ifndef GOBJECT_VAR
|
sl@0
|
418 |
# ifdef G_PLATFORM_WIN32
|
sl@0
|
419 |
# ifdef GOBJECT_STATIC_COMPILATION
|
sl@0
|
420 |
# define GOBJECT_VAR extern
|
sl@0
|
421 |
# else /* !GOBJECT_STATIC_COMPILATION */
|
sl@0
|
422 |
# ifdef GOBJECT_COMPILATION
|
sl@0
|
423 |
# ifdef DLL_EXPORT
|
sl@0
|
424 |
# define GOBJECT_VAR __declspec(dllexport)
|
sl@0
|
425 |
# else /* !DLL_EXPORT */
|
sl@0
|
426 |
# define GOBJECT_VAR extern
|
sl@0
|
427 |
# endif /* !DLL_EXPORT */
|
sl@0
|
428 |
# else /* !GOBJECT_COMPILATION */
|
sl@0
|
429 |
# define GOBJECT_VAR extern __declspec(dllimport)
|
sl@0
|
430 |
# endif /* !GOBJECT_COMPILATION */
|
sl@0
|
431 |
# endif /* !GOBJECT_STATIC_COMPILATION */
|
sl@0
|
432 |
# else /* !G_PLATFORM_WIN32 */
|
sl@0
|
433 |
# define GOBJECT_VAR extern
|
sl@0
|
434 |
# endif /* !G_PLATFORM_WIN32 */
|
sl@0
|
435 |
#endif /* GOBJECT_VAR */
|
sl@0
|
436 |
|
sl@0
|
437 |
#ifdef __SYMBIAN32__
|
sl@0
|
438 |
IMPORT_C GType ** _g_param_spec_types();
|
sl@0
|
439 |
#endif /*__SYMBIAN32__ */
|
sl@0
|
440 |
GOBJECT_VAR GType *g_param_spec_types;
|
sl@0
|
441 |
|
sl@0
|
442 |
G_END_DECLS
|
sl@0
|
443 |
|
sl@0
|
444 |
#endif /* __G_PARAMSPECS_H__ */
|