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-2009 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 <gobject/gvalue.h>
|
sl@0
|
30 |
#include <gobject/genums.h>
|
sl@0
|
31 |
#include <gobject/gboxed.h>
|
sl@0
|
32 |
#include <gobject/gobject.h>
|
sl@0
|
33 |
|
sl@0
|
34 |
G_BEGIN_DECLS
|
sl@0
|
35 |
|
sl@0
|
36 |
/* --- type macros --- */
|
sl@0
|
37 |
/**
|
sl@0
|
38 |
* G_TYPE_PARAM_CHAR:
|
sl@0
|
39 |
*
|
sl@0
|
40 |
* The #GType of #GParamSpecChar.
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
#define G_TYPE_PARAM_CHAR (g_param_spec_types[0])
|
sl@0
|
43 |
/**
|
sl@0
|
44 |
* G_IS_PARAM_SPEC_CHAR:
|
sl@0
|
45 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
46 |
*
|
sl@0
|
47 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_CHAR.
|
sl@0
|
48 |
*
|
sl@0
|
49 |
* Returns: %TRUE on success.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
#define G_IS_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_CHAR))
|
sl@0
|
52 |
/**
|
sl@0
|
53 |
* G_PARAM_SPEC_CHAR:
|
sl@0
|
54 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
55 |
*
|
sl@0
|
56 |
* Cast a #GParamSpec instance into a #GParamSpecChar.
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
#define G_PARAM_SPEC_CHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_CHAR, GParamSpecChar))
|
sl@0
|
59 |
|
sl@0
|
60 |
/**
|
sl@0
|
61 |
* G_TYPE_PARAM_UCHAR:
|
sl@0
|
62 |
*
|
sl@0
|
63 |
* The #GType of #GParamSpecUChar.
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
#define G_TYPE_PARAM_UCHAR (g_param_spec_types[1])
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
* G_IS_PARAM_SPEC_UCHAR:
|
sl@0
|
68 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
69 |
*
|
sl@0
|
70 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UCHAR.
|
sl@0
|
71 |
*
|
sl@0
|
72 |
* Returns: %TRUE on success.
|
sl@0
|
73 |
*/
|
sl@0
|
74 |
#define G_IS_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UCHAR))
|
sl@0
|
75 |
/**
|
sl@0
|
76 |
* G_PARAM_SPEC_UCHAR:
|
sl@0
|
77 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
78 |
*
|
sl@0
|
79 |
* Cast a #GParamSpec instance into a #GParamSpecUChar.
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
#define G_PARAM_SPEC_UCHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UCHAR, GParamSpecUChar))
|
sl@0
|
82 |
|
sl@0
|
83 |
/**
|
sl@0
|
84 |
* G_TYPE_PARAM_BOOLEAN:
|
sl@0
|
85 |
*
|
sl@0
|
86 |
* The #GType of #GParamSpecBoolean.
|
sl@0
|
87 |
*/
|
sl@0
|
88 |
#define G_TYPE_PARAM_BOOLEAN (g_param_spec_types[2])
|
sl@0
|
89 |
/**
|
sl@0
|
90 |
* G_IS_PARAM_SPEC_BOOLEAN:
|
sl@0
|
91 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
92 |
*
|
sl@0
|
93 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_BOOLEAN.
|
sl@0
|
94 |
*
|
sl@0
|
95 |
* Returns: %TRUE on success.
|
sl@0
|
96 |
*/
|
sl@0
|
97 |
#define G_IS_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOOLEAN))
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
* G_PARAM_SPEC_BOOLEAN:
|
sl@0
|
100 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
101 |
*
|
sl@0
|
102 |
* Cast a #GParamSpec instance into a #GParamSpecBoolean.
|
sl@0
|
103 |
*/
|
sl@0
|
104 |
#define G_PARAM_SPEC_BOOLEAN(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOOLEAN, GParamSpecBoolean))
|
sl@0
|
105 |
|
sl@0
|
106 |
/**
|
sl@0
|
107 |
* G_TYPE_PARAM_INT:
|
sl@0
|
108 |
*
|
sl@0
|
109 |
* The #GType of #GParamSpecInt.
|
sl@0
|
110 |
*/
|
sl@0
|
111 |
#define G_TYPE_PARAM_INT (g_param_spec_types[3])
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
* G_IS_PARAM_SPEC_INT:
|
sl@0
|
114 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
115 |
*
|
sl@0
|
116 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_INT.
|
sl@0
|
117 |
*
|
sl@0
|
118 |
* Returns: %TRUE on success.
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
#define G_IS_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT))
|
sl@0
|
121 |
/**
|
sl@0
|
122 |
* G_PARAM_SPEC_INT:
|
sl@0
|
123 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
124 |
*
|
sl@0
|
125 |
* Cast a #GParamSpec instance into a #GParamSpecInt.
|
sl@0
|
126 |
*/
|
sl@0
|
127 |
#define G_PARAM_SPEC_INT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT, GParamSpecInt))
|
sl@0
|
128 |
|
sl@0
|
129 |
/**
|
sl@0
|
130 |
* G_TYPE_PARAM_UINT:
|
sl@0
|
131 |
*
|
sl@0
|
132 |
* The #GType of #GParamSpecUInt.
|
sl@0
|
133 |
*/
|
sl@0
|
134 |
#define G_TYPE_PARAM_UINT (g_param_spec_types[4])
|
sl@0
|
135 |
/**
|
sl@0
|
136 |
* G_IS_PARAM_SPEC_UINT:
|
sl@0
|
137 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
138 |
*
|
sl@0
|
139 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UINT.
|
sl@0
|
140 |
*
|
sl@0
|
141 |
* Returns: %TRUE on success.
|
sl@0
|
142 |
*/
|
sl@0
|
143 |
#define G_IS_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT))
|
sl@0
|
144 |
/**
|
sl@0
|
145 |
* G_PARAM_SPEC_UINT:
|
sl@0
|
146 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
147 |
*
|
sl@0
|
148 |
* Cast a #GParamSpec instance into a #GParamSpecUInt.
|
sl@0
|
149 |
*/
|
sl@0
|
150 |
#define G_PARAM_SPEC_UINT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT, GParamSpecUInt))
|
sl@0
|
151 |
|
sl@0
|
152 |
/**
|
sl@0
|
153 |
* G_TYPE_PARAM_LONG:
|
sl@0
|
154 |
*
|
sl@0
|
155 |
* The #GType of #GParamSpecLong.
|
sl@0
|
156 |
*/
|
sl@0
|
157 |
#define G_TYPE_PARAM_LONG (g_param_spec_types[5])
|
sl@0
|
158 |
/**
|
sl@0
|
159 |
* G_IS_PARAM_SPEC_LONG:
|
sl@0
|
160 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
161 |
*
|
sl@0
|
162 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_LONG.
|
sl@0
|
163 |
*
|
sl@0
|
164 |
* Returns: %TRUE on success.
|
sl@0
|
165 |
*/
|
sl@0
|
166 |
#define G_IS_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_LONG))
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
* G_PARAM_SPEC_LONG:
|
sl@0
|
169 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
170 |
*
|
sl@0
|
171 |
* Cast a #GParamSpec instance into a #GParamSpecLong.
|
sl@0
|
172 |
*/
|
sl@0
|
173 |
#define G_PARAM_SPEC_LONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_LONG, GParamSpecLong))
|
sl@0
|
174 |
|
sl@0
|
175 |
/**
|
sl@0
|
176 |
* G_TYPE_PARAM_ULONG:
|
sl@0
|
177 |
*
|
sl@0
|
178 |
* The #GType of #GParamSpecULong.
|
sl@0
|
179 |
*/
|
sl@0
|
180 |
#define G_TYPE_PARAM_ULONG (g_param_spec_types[6])
|
sl@0
|
181 |
/**
|
sl@0
|
182 |
* G_IS_PARAM_SPEC_ULONG:
|
sl@0
|
183 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
184 |
*
|
sl@0
|
185 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_ULONG.
|
sl@0
|
186 |
*
|
sl@0
|
187 |
* Returns: %TRUE on success.
|
sl@0
|
188 |
*/
|
sl@0
|
189 |
#define G_IS_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ULONG))
|
sl@0
|
190 |
/**
|
sl@0
|
191 |
* G_PARAM_SPEC_ULONG:
|
sl@0
|
192 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
193 |
*
|
sl@0
|
194 |
* Cast a #GParamSpec instance into a #GParamSpecULong.
|
sl@0
|
195 |
*/
|
sl@0
|
196 |
#define G_PARAM_SPEC_ULONG(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ULONG, GParamSpecULong))
|
sl@0
|
197 |
|
sl@0
|
198 |
/**
|
sl@0
|
199 |
* G_TYPE_PARAM_INT64:
|
sl@0
|
200 |
*
|
sl@0
|
201 |
* The #GType of #GParamSpecInt64.
|
sl@0
|
202 |
*/
|
sl@0
|
203 |
#define G_TYPE_PARAM_INT64 (g_param_spec_types[7])
|
sl@0
|
204 |
/**
|
sl@0
|
205 |
* G_IS_PARAM_SPEC_INT64:
|
sl@0
|
206 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
207 |
*
|
sl@0
|
208 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_INT64.
|
sl@0
|
209 |
*
|
sl@0
|
210 |
* Returns: %TRUE on success.
|
sl@0
|
211 |
*/
|
sl@0
|
212 |
#define G_IS_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_INT64))
|
sl@0
|
213 |
/**
|
sl@0
|
214 |
* G_PARAM_SPEC_INT64:
|
sl@0
|
215 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
216 |
*
|
sl@0
|
217 |
* Cast a #GParamSpec instance into a #GParamSpecInt64.
|
sl@0
|
218 |
*/
|
sl@0
|
219 |
#define G_PARAM_SPEC_INT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_INT64, GParamSpecInt64))
|
sl@0
|
220 |
|
sl@0
|
221 |
/**
|
sl@0
|
222 |
* G_TYPE_PARAM_UINT64:
|
sl@0
|
223 |
*
|
sl@0
|
224 |
* The #GType of #GParamSpecUInt64.
|
sl@0
|
225 |
*/
|
sl@0
|
226 |
#define G_TYPE_PARAM_UINT64 (g_param_spec_types[8])
|
sl@0
|
227 |
/**
|
sl@0
|
228 |
* G_IS_PARAM_SPEC_UINT64:
|
sl@0
|
229 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
230 |
*
|
sl@0
|
231 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UINT64.
|
sl@0
|
232 |
*
|
sl@0
|
233 |
* Returns: %TRUE on success.
|
sl@0
|
234 |
*/
|
sl@0
|
235 |
#define G_IS_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UINT64))
|
sl@0
|
236 |
/**
|
sl@0
|
237 |
* G_PARAM_SPEC_UINT64:
|
sl@0
|
238 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
239 |
*
|
sl@0
|
240 |
* Cast a #GParamSpec instance into a #GParamSpecUInt64.
|
sl@0
|
241 |
*/
|
sl@0
|
242 |
#define G_PARAM_SPEC_UINT64(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UINT64, GParamSpecUInt64))
|
sl@0
|
243 |
|
sl@0
|
244 |
/**
|
sl@0
|
245 |
* G_TYPE_PARAM_UNICHAR:
|
sl@0
|
246 |
*
|
sl@0
|
247 |
* The #GType of #GParamSpecUnichar.
|
sl@0
|
248 |
*/
|
sl@0
|
249 |
#define G_TYPE_PARAM_UNICHAR (g_param_spec_types[9])
|
sl@0
|
250 |
/**
|
sl@0
|
251 |
* G_PARAM_SPEC_UNICHAR:
|
sl@0
|
252 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
253 |
*
|
sl@0
|
254 |
* Cast a #GParamSpec instance into a #GParamSpecUnichar.
|
sl@0
|
255 |
*/
|
sl@0
|
256 |
#define G_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_UNICHAR, GParamSpecUnichar))
|
sl@0
|
257 |
/**
|
sl@0
|
258 |
* G_IS_PARAM_SPEC_UNICHAR:
|
sl@0
|
259 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
260 |
*
|
sl@0
|
261 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_UNICHAR.
|
sl@0
|
262 |
*
|
sl@0
|
263 |
* Returns: %TRUE on success.
|
sl@0
|
264 |
*/
|
sl@0
|
265 |
#define G_IS_PARAM_SPEC_UNICHAR(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_UNICHAR))
|
sl@0
|
266 |
|
sl@0
|
267 |
/**
|
sl@0
|
268 |
* G_TYPE_PARAM_ENUM:
|
sl@0
|
269 |
*
|
sl@0
|
270 |
* The #GType of #GParamSpecEnum.
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
#define G_TYPE_PARAM_ENUM (g_param_spec_types[10])
|
sl@0
|
273 |
/**
|
sl@0
|
274 |
* G_IS_PARAM_SPEC_ENUM:
|
sl@0
|
275 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
276 |
*
|
sl@0
|
277 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_ENUM.
|
sl@0
|
278 |
*
|
sl@0
|
279 |
* Returns: %TRUE on success.
|
sl@0
|
280 |
*/
|
sl@0
|
281 |
#define G_IS_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_ENUM))
|
sl@0
|
282 |
/**
|
sl@0
|
283 |
* G_PARAM_SPEC_ENUM:
|
sl@0
|
284 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
285 |
*
|
sl@0
|
286 |
* Cast a #GParamSpec instance into a #GParamSpecEnum.
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
#define G_PARAM_SPEC_ENUM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_ENUM, GParamSpecEnum))
|
sl@0
|
289 |
|
sl@0
|
290 |
/**
|
sl@0
|
291 |
* G_TYPE_PARAM_FLAGS:
|
sl@0
|
292 |
*
|
sl@0
|
293 |
* The #GType of #GParamSpecFlags.
|
sl@0
|
294 |
*/
|
sl@0
|
295 |
#define G_TYPE_PARAM_FLAGS (g_param_spec_types[11])
|
sl@0
|
296 |
/**
|
sl@0
|
297 |
* G_IS_PARAM_SPEC_FLAGS:
|
sl@0
|
298 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
299 |
*
|
sl@0
|
300 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_FLAGS.
|
sl@0
|
301 |
*
|
sl@0
|
302 |
* Returns: %TRUE on success.
|
sl@0
|
303 |
*/
|
sl@0
|
304 |
#define G_IS_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLAGS))
|
sl@0
|
305 |
/**
|
sl@0
|
306 |
* G_PARAM_SPEC_FLAGS:
|
sl@0
|
307 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
308 |
*
|
sl@0
|
309 |
* Cast a #GParamSpec instance into a #GParamSpecFlags.
|
sl@0
|
310 |
*/
|
sl@0
|
311 |
#define G_PARAM_SPEC_FLAGS(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLAGS, GParamSpecFlags))
|
sl@0
|
312 |
|
sl@0
|
313 |
/**
|
sl@0
|
314 |
* G_TYPE_PARAM_FLOAT:
|
sl@0
|
315 |
*
|
sl@0
|
316 |
* The #GType of #GParamSpecFloat.
|
sl@0
|
317 |
*/
|
sl@0
|
318 |
#define G_TYPE_PARAM_FLOAT (g_param_spec_types[12])
|
sl@0
|
319 |
/**
|
sl@0
|
320 |
* G_IS_PARAM_SPEC_FLOAT:
|
sl@0
|
321 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
322 |
*
|
sl@0
|
323 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_FLOAT.
|
sl@0
|
324 |
*
|
sl@0
|
325 |
* Returns: %TRUE on success.
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
#define G_IS_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_FLOAT))
|
sl@0
|
328 |
/**
|
sl@0
|
329 |
* G_PARAM_SPEC_FLOAT:
|
sl@0
|
330 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
331 |
*
|
sl@0
|
332 |
* Cast a #GParamSpec instance into a #GParamSpecFloat.
|
sl@0
|
333 |
*/
|
sl@0
|
334 |
#define G_PARAM_SPEC_FLOAT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_FLOAT, GParamSpecFloat))
|
sl@0
|
335 |
|
sl@0
|
336 |
/**
|
sl@0
|
337 |
* G_TYPE_PARAM_DOUBLE:
|
sl@0
|
338 |
*
|
sl@0
|
339 |
* The #GType of #GParamSpecDouble.
|
sl@0
|
340 |
*/
|
sl@0
|
341 |
#define G_TYPE_PARAM_DOUBLE (g_param_spec_types[13])
|
sl@0
|
342 |
/**
|
sl@0
|
343 |
* G_IS_PARAM_SPEC_DOUBLE:
|
sl@0
|
344 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
345 |
*
|
sl@0
|
346 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_DOUBLE.
|
sl@0
|
347 |
*
|
sl@0
|
348 |
* Returns: %TRUE on success.
|
sl@0
|
349 |
*/
|
sl@0
|
350 |
#define G_IS_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_DOUBLE))
|
sl@0
|
351 |
/**
|
sl@0
|
352 |
* G_PARAM_SPEC_DOUBLE:
|
sl@0
|
353 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
354 |
*
|
sl@0
|
355 |
* Cast a #GParamSpec instance into a #GParamSpecDouble.
|
sl@0
|
356 |
*/
|
sl@0
|
357 |
#define G_PARAM_SPEC_DOUBLE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_DOUBLE, GParamSpecDouble))
|
sl@0
|
358 |
|
sl@0
|
359 |
/**
|
sl@0
|
360 |
* G_TYPE_PARAM_STRING:
|
sl@0
|
361 |
*
|
sl@0
|
362 |
* The #GType of #GParamSpecString.
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
#define G_TYPE_PARAM_STRING (g_param_spec_types[14])
|
sl@0
|
365 |
/**
|
sl@0
|
366 |
* G_IS_PARAM_SPEC_STRING:
|
sl@0
|
367 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
368 |
*
|
sl@0
|
369 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_STRING.
|
sl@0
|
370 |
*
|
sl@0
|
371 |
* Returns: %TRUE on success.
|
sl@0
|
372 |
*/
|
sl@0
|
373 |
#define G_IS_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_STRING))
|
sl@0
|
374 |
/**
|
sl@0
|
375 |
* G_PARAM_SPEC_STRING:
|
sl@0
|
376 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
377 |
*
|
sl@0
|
378 |
* Casts a #GParamSpec instance into a #GParamSpecString.
|
sl@0
|
379 |
*/
|
sl@0
|
380 |
#define G_PARAM_SPEC_STRING(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_STRING, GParamSpecString))
|
sl@0
|
381 |
|
sl@0
|
382 |
/**
|
sl@0
|
383 |
* G_TYPE_PARAM_PARAM:
|
sl@0
|
384 |
*
|
sl@0
|
385 |
* The #GType of #GParamSpecParam.
|
sl@0
|
386 |
*/
|
sl@0
|
387 |
#define G_TYPE_PARAM_PARAM (g_param_spec_types[15])
|
sl@0
|
388 |
/**
|
sl@0
|
389 |
* G_IS_PARAM_SPEC_PARAM:
|
sl@0
|
390 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
391 |
*
|
sl@0
|
392 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_PARAM.
|
sl@0
|
393 |
*
|
sl@0
|
394 |
* Returns: %TRUE on success.
|
sl@0
|
395 |
*/
|
sl@0
|
396 |
#define G_IS_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_PARAM))
|
sl@0
|
397 |
/**
|
sl@0
|
398 |
* G_PARAM_SPEC_PARAM:
|
sl@0
|
399 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
400 |
*
|
sl@0
|
401 |
* Casts a #GParamSpec instance into a #GParamSpecParam.
|
sl@0
|
402 |
*/
|
sl@0
|
403 |
#define G_PARAM_SPEC_PARAM(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_PARAM, GParamSpecParam))
|
sl@0
|
404 |
|
sl@0
|
405 |
/**
|
sl@0
|
406 |
* G_TYPE_PARAM_BOXED:
|
sl@0
|
407 |
*
|
sl@0
|
408 |
* The #GType of #GParamSpecBoxed.
|
sl@0
|
409 |
*/
|
sl@0
|
410 |
#define G_TYPE_PARAM_BOXED (g_param_spec_types[16])
|
sl@0
|
411 |
/**
|
sl@0
|
412 |
* G_IS_PARAM_SPEC_BOXED:
|
sl@0
|
413 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
414 |
*
|
sl@0
|
415 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_BOXED.
|
sl@0
|
416 |
*
|
sl@0
|
417 |
* Returns: %TRUE on success.
|
sl@0
|
418 |
*/
|
sl@0
|
419 |
#define G_IS_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_BOXED))
|
sl@0
|
420 |
/**
|
sl@0
|
421 |
* G_PARAM_SPEC_BOXED:
|
sl@0
|
422 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
423 |
*
|
sl@0
|
424 |
* Cast a #GParamSpec instance into a #GParamSpecBoxed.
|
sl@0
|
425 |
*/
|
sl@0
|
426 |
#define G_PARAM_SPEC_BOXED(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_BOXED, GParamSpecBoxed))
|
sl@0
|
427 |
|
sl@0
|
428 |
/**
|
sl@0
|
429 |
* G_TYPE_PARAM_POINTER:
|
sl@0
|
430 |
*
|
sl@0
|
431 |
* The #GType of #GParamSpecPointer.
|
sl@0
|
432 |
*/
|
sl@0
|
433 |
#define G_TYPE_PARAM_POINTER (g_param_spec_types[17])
|
sl@0
|
434 |
/**
|
sl@0
|
435 |
* G_IS_PARAM_SPEC_POINTER:
|
sl@0
|
436 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
437 |
*
|
sl@0
|
438 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_POINTER.
|
sl@0
|
439 |
*
|
sl@0
|
440 |
* Returns: %TRUE on success.
|
sl@0
|
441 |
*/
|
sl@0
|
442 |
#define G_IS_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_POINTER))
|
sl@0
|
443 |
/**
|
sl@0
|
444 |
* G_PARAM_SPEC_POINTER:
|
sl@0
|
445 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
446 |
*
|
sl@0
|
447 |
* Casts a #GParamSpec instance into a #GParamSpecPointer.
|
sl@0
|
448 |
*/
|
sl@0
|
449 |
#define G_PARAM_SPEC_POINTER(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_POINTER, GParamSpecPointer))
|
sl@0
|
450 |
|
sl@0
|
451 |
/**
|
sl@0
|
452 |
* G_TYPE_PARAM_VALUE_ARRAY:
|
sl@0
|
453 |
*
|
sl@0
|
454 |
* The #GType of #GParamSpecValueArray.
|
sl@0
|
455 |
*/
|
sl@0
|
456 |
#define G_TYPE_PARAM_VALUE_ARRAY (g_param_spec_types[18])
|
sl@0
|
457 |
/**
|
sl@0
|
458 |
* G_IS_PARAM_SPEC_VALUE_ARRAY:
|
sl@0
|
459 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
460 |
*
|
sl@0
|
461 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_VALUE_ARRAY.
|
sl@0
|
462 |
*
|
sl@0
|
463 |
* Returns: %TRUE on success.
|
sl@0
|
464 |
*/
|
sl@0
|
465 |
#define G_IS_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_VALUE_ARRAY))
|
sl@0
|
466 |
/**
|
sl@0
|
467 |
* G_PARAM_SPEC_VALUE_ARRAY:
|
sl@0
|
468 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
469 |
*
|
sl@0
|
470 |
* Cast a #GParamSpec instance into a #GParamSpecValueArray.
|
sl@0
|
471 |
*/
|
sl@0
|
472 |
#define G_PARAM_SPEC_VALUE_ARRAY(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_VALUE_ARRAY, GParamSpecValueArray))
|
sl@0
|
473 |
|
sl@0
|
474 |
/**
|
sl@0
|
475 |
* G_TYPE_PARAM_OBJECT:
|
sl@0
|
476 |
*
|
sl@0
|
477 |
* The #GType of #GParamSpecObject.
|
sl@0
|
478 |
*/
|
sl@0
|
479 |
#define G_TYPE_PARAM_OBJECT (g_param_spec_types[19])
|
sl@0
|
480 |
/**
|
sl@0
|
481 |
* G_IS_PARAM_SPEC_OBJECT:
|
sl@0
|
482 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
483 |
*
|
sl@0
|
484 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_OBJECT.
|
sl@0
|
485 |
*
|
sl@0
|
486 |
* Returns: %TRUE on success.
|
sl@0
|
487 |
*/
|
sl@0
|
488 |
#define G_IS_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OBJECT))
|
sl@0
|
489 |
/**
|
sl@0
|
490 |
* G_PARAM_SPEC_OBJECT:
|
sl@0
|
491 |
* @pspec: a valid #GParamSpec instance
|
sl@0
|
492 |
*
|
sl@0
|
493 |
* Casts a #GParamSpec instance into a #GParamSpecObject.
|
sl@0
|
494 |
*/
|
sl@0
|
495 |
#define G_PARAM_SPEC_OBJECT(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OBJECT, GParamSpecObject))
|
sl@0
|
496 |
|
sl@0
|
497 |
/**
|
sl@0
|
498 |
* G_TYPE_PARAM_OVERRIDE:
|
sl@0
|
499 |
*
|
sl@0
|
500 |
* The #GType of #GParamSpecOverride.
|
sl@0
|
501 |
*
|
sl@0
|
502 |
* Since: 2.4
|
sl@0
|
503 |
*/
|
sl@0
|
504 |
#define G_TYPE_PARAM_OVERRIDE (g_param_spec_types[20])
|
sl@0
|
505 |
/**
|
sl@0
|
506 |
* G_IS_PARAM_SPEC_OVERRIDE:
|
sl@0
|
507 |
* @pspec: a #GParamSpec
|
sl@0
|
508 |
*
|
sl@0
|
509 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_OVERRIDE.
|
sl@0
|
510 |
*
|
sl@0
|
511 |
* Since: 2.4
|
sl@0
|
512 |
* Returns: %TRUE on success.
|
sl@0
|
513 |
*/
|
sl@0
|
514 |
#define G_IS_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_OVERRIDE))
|
sl@0
|
515 |
/**
|
sl@0
|
516 |
* G_PARAM_SPEC_OVERRIDE:
|
sl@0
|
517 |
* @pspec: a #GParamSpec
|
sl@0
|
518 |
*
|
sl@0
|
519 |
* Casts a #GParamSpec into a #GParamSpecOverride.
|
sl@0
|
520 |
*
|
sl@0
|
521 |
* Since: 2.4
|
sl@0
|
522 |
*/
|
sl@0
|
523 |
#define G_PARAM_SPEC_OVERRIDE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_OVERRIDE, GParamSpecOverride))
|
sl@0
|
524 |
|
sl@0
|
525 |
/**
|
sl@0
|
526 |
* G_TYPE_PARAM_GTYPE:
|
sl@0
|
527 |
*
|
sl@0
|
528 |
* The #GType of #GParamSpecGType.
|
sl@0
|
529 |
*
|
sl@0
|
530 |
* Since: 2.10
|
sl@0
|
531 |
*/
|
sl@0
|
532 |
#define G_TYPE_PARAM_GTYPE (g_param_spec_types[21])
|
sl@0
|
533 |
/**
|
sl@0
|
534 |
* G_IS_PARAM_SPEC_GTYPE:
|
sl@0
|
535 |
* @pspec: a #GParamSpec
|
sl@0
|
536 |
*
|
sl@0
|
537 |
* Checks whether the given #GParamSpec is of type %G_TYPE_PARAM_GTYPE.
|
sl@0
|
538 |
*
|
sl@0
|
539 |
* Since: 2.10
|
sl@0
|
540 |
* Returns: %TRUE on success.
|
sl@0
|
541 |
*/
|
sl@0
|
542 |
#define G_IS_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM_GTYPE))
|
sl@0
|
543 |
/**
|
sl@0
|
544 |
* G_PARAM_SPEC_GTYPE:
|
sl@0
|
545 |
* @pspec: a #GParamSpec
|
sl@0
|
546 |
*
|
sl@0
|
547 |
* Casts a #GParamSpec into a #GParamSpecGType.
|
sl@0
|
548 |
*
|
sl@0
|
549 |
* Since: 2.10
|
sl@0
|
550 |
*/
|
sl@0
|
551 |
#define G_PARAM_SPEC_GTYPE(pspec) (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM_GTYPE, GParamSpecGType))
|
sl@0
|
552 |
|
sl@0
|
553 |
|
sl@0
|
554 |
/* --- typedefs & structures --- */
|
sl@0
|
555 |
typedef struct _GParamSpecChar GParamSpecChar;
|
sl@0
|
556 |
typedef struct _GParamSpecUChar GParamSpecUChar;
|
sl@0
|
557 |
typedef struct _GParamSpecBoolean GParamSpecBoolean;
|
sl@0
|
558 |
typedef struct _GParamSpecInt GParamSpecInt;
|
sl@0
|
559 |
typedef struct _GParamSpecUInt GParamSpecUInt;
|
sl@0
|
560 |
typedef struct _GParamSpecLong GParamSpecLong;
|
sl@0
|
561 |
typedef struct _GParamSpecULong GParamSpecULong;
|
sl@0
|
562 |
typedef struct _GParamSpecInt64 GParamSpecInt64;
|
sl@0
|
563 |
typedef struct _GParamSpecUInt64 GParamSpecUInt64;
|
sl@0
|
564 |
typedef struct _GParamSpecUnichar GParamSpecUnichar;
|
sl@0
|
565 |
typedef struct _GParamSpecEnum GParamSpecEnum;
|
sl@0
|
566 |
typedef struct _GParamSpecFlags GParamSpecFlags;
|
sl@0
|
567 |
typedef struct _GParamSpecFloat GParamSpecFloat;
|
sl@0
|
568 |
typedef struct _GParamSpecDouble GParamSpecDouble;
|
sl@0
|
569 |
typedef struct _GParamSpecString GParamSpecString;
|
sl@0
|
570 |
typedef struct _GParamSpecParam GParamSpecParam;
|
sl@0
|
571 |
typedef struct _GParamSpecBoxed GParamSpecBoxed;
|
sl@0
|
572 |
typedef struct _GParamSpecPointer GParamSpecPointer;
|
sl@0
|
573 |
typedef struct _GParamSpecValueArray GParamSpecValueArray;
|
sl@0
|
574 |
typedef struct _GParamSpecObject GParamSpecObject;
|
sl@0
|
575 |
typedef struct _GParamSpecOverride GParamSpecOverride;
|
sl@0
|
576 |
typedef struct _GParamSpecGType GParamSpecGType;
|
sl@0
|
577 |
|
sl@0
|
578 |
/**
|
sl@0
|
579 |
* GParamSpecChar:
|
sl@0
|
580 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
581 |
* @minimum: minimum value for the property specified
|
sl@0
|
582 |
* @maximum: maximum value for the property specified
|
sl@0
|
583 |
* @default_value: default value for the property specified
|
sl@0
|
584 |
*
|
sl@0
|
585 |
* A #GParamSpec derived structure that contains the meta data for character properties.
|
sl@0
|
586 |
*/
|
sl@0
|
587 |
struct _GParamSpecChar
|
sl@0
|
588 |
{
|
sl@0
|
589 |
GParamSpec parent_instance;
|
sl@0
|
590 |
|
sl@0
|
591 |
gint8 minimum;
|
sl@0
|
592 |
gint8 maximum;
|
sl@0
|
593 |
gint8 default_value;
|
sl@0
|
594 |
};
|
sl@0
|
595 |
/**
|
sl@0
|
596 |
* GParamSpecUChar:
|
sl@0
|
597 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
598 |
* @minimum: minimum value for the property specified
|
sl@0
|
599 |
* @maximum: maximum value for the property specified
|
sl@0
|
600 |
* @default_value: default value for the property specified
|
sl@0
|
601 |
*
|
sl@0
|
602 |
* A #GParamSpec derived structure that contains the meta data for unsigned character properties.
|
sl@0
|
603 |
*/
|
sl@0
|
604 |
struct _GParamSpecUChar
|
sl@0
|
605 |
{
|
sl@0
|
606 |
GParamSpec parent_instance;
|
sl@0
|
607 |
|
sl@0
|
608 |
guint8 minimum;
|
sl@0
|
609 |
guint8 maximum;
|
sl@0
|
610 |
guint8 default_value;
|
sl@0
|
611 |
};
|
sl@0
|
612 |
/**
|
sl@0
|
613 |
* GParamSpecBoolean:
|
sl@0
|
614 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
615 |
* @default_value: default value for the property specified
|
sl@0
|
616 |
*
|
sl@0
|
617 |
* A #GParamSpec derived structure that contains the meta data for boolean properties.
|
sl@0
|
618 |
*/
|
sl@0
|
619 |
struct _GParamSpecBoolean
|
sl@0
|
620 |
{
|
sl@0
|
621 |
GParamSpec parent_instance;
|
sl@0
|
622 |
|
sl@0
|
623 |
gboolean default_value;
|
sl@0
|
624 |
};
|
sl@0
|
625 |
/**
|
sl@0
|
626 |
* GParamSpecInt:
|
sl@0
|
627 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
628 |
* @minimum: minimum value for the property specified
|
sl@0
|
629 |
* @maximum: maximum value for the property specified
|
sl@0
|
630 |
* @default_value: default value for the property specified
|
sl@0
|
631 |
*
|
sl@0
|
632 |
* A #GParamSpec derived structure that contains the meta data for integer properties.
|
sl@0
|
633 |
*/
|
sl@0
|
634 |
struct _GParamSpecInt
|
sl@0
|
635 |
{
|
sl@0
|
636 |
GParamSpec parent_instance;
|
sl@0
|
637 |
|
sl@0
|
638 |
gint minimum;
|
sl@0
|
639 |
gint maximum;
|
sl@0
|
640 |
gint default_value;
|
sl@0
|
641 |
};
|
sl@0
|
642 |
/**
|
sl@0
|
643 |
* GParamSpecUInt:
|
sl@0
|
644 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
645 |
* @minimum: minimum value for the property specified
|
sl@0
|
646 |
* @maximum: maximum value for the property specified
|
sl@0
|
647 |
* @default_value: default value for the property specified
|
sl@0
|
648 |
*
|
sl@0
|
649 |
* A #GParamSpec derived structure that contains the meta data for unsigned integer properties.
|
sl@0
|
650 |
*/
|
sl@0
|
651 |
struct _GParamSpecUInt
|
sl@0
|
652 |
{
|
sl@0
|
653 |
GParamSpec parent_instance;
|
sl@0
|
654 |
|
sl@0
|
655 |
guint minimum;
|
sl@0
|
656 |
guint maximum;
|
sl@0
|
657 |
guint default_value;
|
sl@0
|
658 |
};
|
sl@0
|
659 |
/**
|
sl@0
|
660 |
* GParamSpecLong:
|
sl@0
|
661 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
662 |
* @minimum: minimum value for the property specified
|
sl@0
|
663 |
* @maximum: maximum value for the property specified
|
sl@0
|
664 |
* @default_value: default value for the property specified
|
sl@0
|
665 |
*
|
sl@0
|
666 |
* A #GParamSpec derived structure that contains the meta data for long integer properties.
|
sl@0
|
667 |
*/
|
sl@0
|
668 |
struct _GParamSpecLong
|
sl@0
|
669 |
{
|
sl@0
|
670 |
GParamSpec parent_instance;
|
sl@0
|
671 |
|
sl@0
|
672 |
glong minimum;
|
sl@0
|
673 |
glong maximum;
|
sl@0
|
674 |
glong default_value;
|
sl@0
|
675 |
};
|
sl@0
|
676 |
/**
|
sl@0
|
677 |
* GParamSpecULong:
|
sl@0
|
678 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
679 |
* @minimum: minimum value for the property specified
|
sl@0
|
680 |
* @maximum: maximum value for the property specified
|
sl@0
|
681 |
* @default_value: default value for the property specified
|
sl@0
|
682 |
*
|
sl@0
|
683 |
* A #GParamSpec derived structure that contains the meta data for unsigned long integer properties.
|
sl@0
|
684 |
*/
|
sl@0
|
685 |
struct _GParamSpecULong
|
sl@0
|
686 |
{
|
sl@0
|
687 |
GParamSpec parent_instance;
|
sl@0
|
688 |
|
sl@0
|
689 |
gulong minimum;
|
sl@0
|
690 |
gulong maximum;
|
sl@0
|
691 |
gulong default_value;
|
sl@0
|
692 |
};
|
sl@0
|
693 |
/**
|
sl@0
|
694 |
* GParamSpecInt64:
|
sl@0
|
695 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
696 |
* @minimum: minimum value for the property specified
|
sl@0
|
697 |
* @maximum: maximum value for the property specified
|
sl@0
|
698 |
* @default_value: default value for the property specified
|
sl@0
|
699 |
*
|
sl@0
|
700 |
* A #GParamSpec derived structure that contains the meta data for 64bit integer properties.
|
sl@0
|
701 |
*/
|
sl@0
|
702 |
struct _GParamSpecInt64
|
sl@0
|
703 |
{
|
sl@0
|
704 |
GParamSpec parent_instance;
|
sl@0
|
705 |
|
sl@0
|
706 |
gint64 minimum;
|
sl@0
|
707 |
gint64 maximum;
|
sl@0
|
708 |
gint64 default_value;
|
sl@0
|
709 |
};
|
sl@0
|
710 |
/**
|
sl@0
|
711 |
* GParamSpecUInt64:
|
sl@0
|
712 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
713 |
* @minimum: minimum value for the property specified
|
sl@0
|
714 |
* @maximum: maximum value for the property specified
|
sl@0
|
715 |
* @default_value: default value for the property specified
|
sl@0
|
716 |
*
|
sl@0
|
717 |
* A #GParamSpec derived structure that contains the meta data for unsigned 64bit integer properties.
|
sl@0
|
718 |
*/
|
sl@0
|
719 |
struct _GParamSpecUInt64
|
sl@0
|
720 |
{
|
sl@0
|
721 |
GParamSpec parent_instance;
|
sl@0
|
722 |
|
sl@0
|
723 |
guint64 minimum;
|
sl@0
|
724 |
guint64 maximum;
|
sl@0
|
725 |
guint64 default_value;
|
sl@0
|
726 |
};
|
sl@0
|
727 |
/**
|
sl@0
|
728 |
* GParamSpecUnichar:
|
sl@0
|
729 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
730 |
* @default_value: default value for the property specified
|
sl@0
|
731 |
*
|
sl@0
|
732 |
* A #GParamSpec derived structure that contains the meta data for unichar (unsigned integer) properties.
|
sl@0
|
733 |
*/
|
sl@0
|
734 |
struct _GParamSpecUnichar
|
sl@0
|
735 |
{
|
sl@0
|
736 |
GParamSpec parent_instance;
|
sl@0
|
737 |
|
sl@0
|
738 |
gunichar default_value;
|
sl@0
|
739 |
};
|
sl@0
|
740 |
/**
|
sl@0
|
741 |
* GParamSpecEnum:
|
sl@0
|
742 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
743 |
* @enum_class: the #GEnumClass for the enum
|
sl@0
|
744 |
* @default_value: default value for the property specified
|
sl@0
|
745 |
*
|
sl@0
|
746 |
* A #GParamSpec derived structure that contains the meta data for enum
|
sl@0
|
747 |
* properties.
|
sl@0
|
748 |
*/
|
sl@0
|
749 |
struct _GParamSpecEnum
|
sl@0
|
750 |
{
|
sl@0
|
751 |
GParamSpec parent_instance;
|
sl@0
|
752 |
|
sl@0
|
753 |
GEnumClass *enum_class;
|
sl@0
|
754 |
gint default_value;
|
sl@0
|
755 |
};
|
sl@0
|
756 |
/**
|
sl@0
|
757 |
* GParamSpecFlags:
|
sl@0
|
758 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
759 |
* @flags_class: the #GFlagsClass for the flags
|
sl@0
|
760 |
* @default_value: default value for the property specified
|
sl@0
|
761 |
*
|
sl@0
|
762 |
* A #GParamSpec derived structure that contains the meta data for flags
|
sl@0
|
763 |
* properties.
|
sl@0
|
764 |
*/
|
sl@0
|
765 |
struct _GParamSpecFlags
|
sl@0
|
766 |
{
|
sl@0
|
767 |
GParamSpec parent_instance;
|
sl@0
|
768 |
|
sl@0
|
769 |
GFlagsClass *flags_class;
|
sl@0
|
770 |
guint default_value;
|
sl@0
|
771 |
};
|
sl@0
|
772 |
/**
|
sl@0
|
773 |
* GParamSpecFloat:
|
sl@0
|
774 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
775 |
* @minimum: minimum value for the property specified
|
sl@0
|
776 |
* @maximum: maximum value for the property specified
|
sl@0
|
777 |
* @default_value: default value for the property specified
|
sl@0
|
778 |
* @epsilon: values closer than @epsilon will be considered identical
|
sl@0
|
779 |
* by g_param_values_cmp(); the default value is 1e-30.
|
sl@0
|
780 |
*
|
sl@0
|
781 |
* A #GParamSpec derived structure that contains the meta data for float properties.
|
sl@0
|
782 |
*/
|
sl@0
|
783 |
struct _GParamSpecFloat
|
sl@0
|
784 |
{
|
sl@0
|
785 |
GParamSpec parent_instance;
|
sl@0
|
786 |
|
sl@0
|
787 |
gfloat minimum;
|
sl@0
|
788 |
gfloat maximum;
|
sl@0
|
789 |
gfloat default_value;
|
sl@0
|
790 |
gfloat epsilon;
|
sl@0
|
791 |
};
|
sl@0
|
792 |
/**
|
sl@0
|
793 |
* GParamSpecDouble:
|
sl@0
|
794 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
795 |
* @minimum: minimum value for the property specified
|
sl@0
|
796 |
* @maximum: maximum value for the property specified
|
sl@0
|
797 |
* @default_value: default value for the property specified
|
sl@0
|
798 |
* @epsilon: values closer than @epsilon will be considered identical
|
sl@0
|
799 |
* by g_param_values_cmp(); the default value is 1e-90.
|
sl@0
|
800 |
*
|
sl@0
|
801 |
* A #GParamSpec derived structure that contains the meta data for double properties.
|
sl@0
|
802 |
*/
|
sl@0
|
803 |
struct _GParamSpecDouble
|
sl@0
|
804 |
{
|
sl@0
|
805 |
GParamSpec parent_instance;
|
sl@0
|
806 |
|
sl@0
|
807 |
gdouble minimum;
|
sl@0
|
808 |
gdouble maximum;
|
sl@0
|
809 |
gdouble default_value;
|
sl@0
|
810 |
gdouble epsilon;
|
sl@0
|
811 |
};
|
sl@0
|
812 |
/**
|
sl@0
|
813 |
* GParamSpecString:
|
sl@0
|
814 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
815 |
* @default_value: default value for the property specified
|
sl@0
|
816 |
* @cset_first: a string containing the allowed values for the first byte
|
sl@0
|
817 |
* @cset_nth: a string containing the allowed values for the subsequent bytes
|
sl@0
|
818 |
* @substitutor: the replacement byte for bytes which don't match @cset_first or @cset_nth.
|
sl@0
|
819 |
* @null_fold_if_empty: replace empty string by %NULL
|
sl@0
|
820 |
* @ensure_non_null: replace %NULL strings by an empty string
|
sl@0
|
821 |
*
|
sl@0
|
822 |
* A #GParamSpec derived structure that contains the meta data for string
|
sl@0
|
823 |
* properties.
|
sl@0
|
824 |
*/
|
sl@0
|
825 |
struct _GParamSpecString
|
sl@0
|
826 |
{
|
sl@0
|
827 |
GParamSpec parent_instance;
|
sl@0
|
828 |
|
sl@0
|
829 |
gchar *default_value;
|
sl@0
|
830 |
gchar *cset_first;
|
sl@0
|
831 |
gchar *cset_nth;
|
sl@0
|
832 |
gchar substitutor;
|
sl@0
|
833 |
guint null_fold_if_empty : 1;
|
sl@0
|
834 |
guint ensure_non_null : 1;
|
sl@0
|
835 |
};
|
sl@0
|
836 |
/**
|
sl@0
|
837 |
* GParamSpecParam:
|
sl@0
|
838 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
839 |
*
|
sl@0
|
840 |
* A #GParamSpec derived structure that contains the meta data for %G_TYPE_PARAM
|
sl@0
|
841 |
* properties.
|
sl@0
|
842 |
*/
|
sl@0
|
843 |
struct _GParamSpecParam
|
sl@0
|
844 |
{
|
sl@0
|
845 |
GParamSpec parent_instance;
|
sl@0
|
846 |
};
|
sl@0
|
847 |
/**
|
sl@0
|
848 |
* GParamSpecBoxed:
|
sl@0
|
849 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
850 |
*
|
sl@0
|
851 |
* A #GParamSpec derived structure that contains the meta data for boxed properties.
|
sl@0
|
852 |
*/
|
sl@0
|
853 |
struct _GParamSpecBoxed
|
sl@0
|
854 |
{
|
sl@0
|
855 |
GParamSpec parent_instance;
|
sl@0
|
856 |
};
|
sl@0
|
857 |
/**
|
sl@0
|
858 |
* GParamSpecPointer:
|
sl@0
|
859 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
860 |
*
|
sl@0
|
861 |
* A #GParamSpec derived structure that contains the meta data for pointer properties.
|
sl@0
|
862 |
*/
|
sl@0
|
863 |
struct _GParamSpecPointer
|
sl@0
|
864 |
{
|
sl@0
|
865 |
GParamSpec parent_instance;
|
sl@0
|
866 |
};
|
sl@0
|
867 |
/**
|
sl@0
|
868 |
* GParamSpecValueArray:
|
sl@0
|
869 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
870 |
* @element_spec: a #GParamSpec describing the elements contained in arrays of this property, may be %NULL
|
sl@0
|
871 |
* @fixed_n_elements: if greater than 0, arrays of this property will always have this many elements
|
sl@0
|
872 |
*
|
sl@0
|
873 |
* A #GParamSpec derived structure that contains the meta data for #GValueArray properties.
|
sl@0
|
874 |
*/
|
sl@0
|
875 |
struct _GParamSpecValueArray
|
sl@0
|
876 |
{
|
sl@0
|
877 |
GParamSpec parent_instance;
|
sl@0
|
878 |
GParamSpec *element_spec;
|
sl@0
|
879 |
guint fixed_n_elements;
|
sl@0
|
880 |
};
|
sl@0
|
881 |
/**
|
sl@0
|
882 |
* GParamSpecObject:
|
sl@0
|
883 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
884 |
*
|
sl@0
|
885 |
* A #GParamSpec derived structure that contains the meta data for object properties.
|
sl@0
|
886 |
*/
|
sl@0
|
887 |
struct _GParamSpecObject
|
sl@0
|
888 |
{
|
sl@0
|
889 |
GParamSpec parent_instance;
|
sl@0
|
890 |
};
|
sl@0
|
891 |
/**
|
sl@0
|
892 |
* GParamSpecOverride:
|
sl@0
|
893 |
*
|
sl@0
|
894 |
* This is a type of #GParamSpec type that simply redirects operations to
|
sl@0
|
895 |
* another paramspec. All operations other than getting or
|
sl@0
|
896 |
* setting the value are redirected, including accessing the nick and
|
sl@0
|
897 |
* blurb, validating a value, and so forth. See
|
sl@0
|
898 |
* g_param_spec_get_redirect_target() for retrieving the overidden
|
sl@0
|
899 |
* property. #GParamSpecOverride is used in implementing
|
sl@0
|
900 |
* g_object_class_override_property(), and will not be directly useful
|
sl@0
|
901 |
* unless you are implementing a new base type similar to GObject.
|
sl@0
|
902 |
*
|
sl@0
|
903 |
* Since: 2.4
|
sl@0
|
904 |
*/
|
sl@0
|
905 |
struct _GParamSpecOverride
|
sl@0
|
906 |
{
|
sl@0
|
907 |
/*< private >*/
|
sl@0
|
908 |
GParamSpec parent_instance;
|
sl@0
|
909 |
GParamSpec *overridden;
|
sl@0
|
910 |
};
|
sl@0
|
911 |
/**
|
sl@0
|
912 |
* GParamSpecGType:
|
sl@0
|
913 |
* @parent_instance: private #GParamSpec portion
|
sl@0
|
914 |
* @is_a_type: a #GType whose subtypes can occur as values
|
sl@0
|
915 |
*
|
sl@0
|
916 |
* A #GParamSpec derived structure that contains the meta data for #GType properties.
|
sl@0
|
917 |
*
|
sl@0
|
918 |
* Since: 2.10
|
sl@0
|
919 |
*/
|
sl@0
|
920 |
struct _GParamSpecGType
|
sl@0
|
921 |
{
|
sl@0
|
922 |
GParamSpec parent_instance;
|
sl@0
|
923 |
GType is_a_type;
|
sl@0
|
924 |
};
|
sl@0
|
925 |
|
sl@0
|
926 |
/* --- GParamSpec prototypes --- */
|
sl@0
|
927 |
IMPORT_C GParamSpec* g_param_spec_char (const gchar *name,
|
sl@0
|
928 |
const gchar *nick,
|
sl@0
|
929 |
const gchar *blurb,
|
sl@0
|
930 |
gint8 minimum,
|
sl@0
|
931 |
gint8 maximum,
|
sl@0
|
932 |
gint8 default_value,
|
sl@0
|
933 |
GParamFlags flags);
|
sl@0
|
934 |
IMPORT_C GParamSpec* g_param_spec_uchar (const gchar *name,
|
sl@0
|
935 |
const gchar *nick,
|
sl@0
|
936 |
const gchar *blurb,
|
sl@0
|
937 |
guint8 minimum,
|
sl@0
|
938 |
guint8 maximum,
|
sl@0
|
939 |
guint8 default_value,
|
sl@0
|
940 |
GParamFlags flags);
|
sl@0
|
941 |
IMPORT_C GParamSpec* g_param_spec_boolean (const gchar *name,
|
sl@0
|
942 |
const gchar *nick,
|
sl@0
|
943 |
const gchar *blurb,
|
sl@0
|
944 |
gboolean default_value,
|
sl@0
|
945 |
GParamFlags flags);
|
sl@0
|
946 |
IMPORT_C GParamSpec* g_param_spec_int (const gchar *name,
|
sl@0
|
947 |
const gchar *nick,
|
sl@0
|
948 |
const gchar *blurb,
|
sl@0
|
949 |
gint minimum,
|
sl@0
|
950 |
gint maximum,
|
sl@0
|
951 |
gint default_value,
|
sl@0
|
952 |
GParamFlags flags);
|
sl@0
|
953 |
IMPORT_C GParamSpec* g_param_spec_uint (const gchar *name,
|
sl@0
|
954 |
const gchar *nick,
|
sl@0
|
955 |
const gchar *blurb,
|
sl@0
|
956 |
guint minimum,
|
sl@0
|
957 |
guint maximum,
|
sl@0
|
958 |
guint default_value,
|
sl@0
|
959 |
GParamFlags flags);
|
sl@0
|
960 |
IMPORT_C GParamSpec* g_param_spec_long (const gchar *name,
|
sl@0
|
961 |
const gchar *nick,
|
sl@0
|
962 |
const gchar *blurb,
|
sl@0
|
963 |
glong minimum,
|
sl@0
|
964 |
glong maximum,
|
sl@0
|
965 |
glong default_value,
|
sl@0
|
966 |
GParamFlags flags);
|
sl@0
|
967 |
IMPORT_C GParamSpec* g_param_spec_ulong (const gchar *name,
|
sl@0
|
968 |
const gchar *nick,
|
sl@0
|
969 |
const gchar *blurb,
|
sl@0
|
970 |
gulong minimum,
|
sl@0
|
971 |
gulong maximum,
|
sl@0
|
972 |
gulong default_value,
|
sl@0
|
973 |
GParamFlags flags);
|
sl@0
|
974 |
IMPORT_C GParamSpec* g_param_spec_int64 (const gchar *name,
|
sl@0
|
975 |
const gchar *nick,
|
sl@0
|
976 |
const gchar *blurb,
|
sl@0
|
977 |
gint64 minimum,
|
sl@0
|
978 |
gint64 maximum,
|
sl@0
|
979 |
gint64 default_value,
|
sl@0
|
980 |
GParamFlags flags);
|
sl@0
|
981 |
IMPORT_C GParamSpec* g_param_spec_uint64 (const gchar *name,
|
sl@0
|
982 |
const gchar *nick,
|
sl@0
|
983 |
const gchar *blurb,
|
sl@0
|
984 |
guint64 minimum,
|
sl@0
|
985 |
guint64 maximum,
|
sl@0
|
986 |
guint64 default_value,
|
sl@0
|
987 |
GParamFlags flags);
|
sl@0
|
988 |
IMPORT_C GParamSpec* g_param_spec_unichar (const gchar *name,
|
sl@0
|
989 |
const gchar *nick,
|
sl@0
|
990 |
const gchar *blurb,
|
sl@0
|
991 |
gunichar default_value,
|
sl@0
|
992 |
GParamFlags flags);
|
sl@0
|
993 |
IMPORT_C GParamSpec* g_param_spec_enum (const gchar *name,
|
sl@0
|
994 |
const gchar *nick,
|
sl@0
|
995 |
const gchar *blurb,
|
sl@0
|
996 |
GType enum_type,
|
sl@0
|
997 |
gint default_value,
|
sl@0
|
998 |
GParamFlags flags);
|
sl@0
|
999 |
IMPORT_C GParamSpec* g_param_spec_flags (const gchar *name,
|
sl@0
|
1000 |
const gchar *nick,
|
sl@0
|
1001 |
const gchar *blurb,
|
sl@0
|
1002 |
GType flags_type,
|
sl@0
|
1003 |
guint default_value,
|
sl@0
|
1004 |
GParamFlags flags);
|
sl@0
|
1005 |
IMPORT_C GParamSpec* g_param_spec_float (const gchar *name,
|
sl@0
|
1006 |
const gchar *nick,
|
sl@0
|
1007 |
const gchar *blurb,
|
sl@0
|
1008 |
gfloat minimum,
|
sl@0
|
1009 |
gfloat maximum,
|
sl@0
|
1010 |
gfloat default_value,
|
sl@0
|
1011 |
GParamFlags flags);
|
sl@0
|
1012 |
IMPORT_C GParamSpec* g_param_spec_double (const gchar *name,
|
sl@0
|
1013 |
const gchar *nick,
|
sl@0
|
1014 |
const gchar *blurb,
|
sl@0
|
1015 |
gdouble minimum,
|
sl@0
|
1016 |
gdouble maximum,
|
sl@0
|
1017 |
gdouble default_value,
|
sl@0
|
1018 |
GParamFlags flags);
|
sl@0
|
1019 |
IMPORT_C GParamSpec* g_param_spec_string (const gchar *name,
|
sl@0
|
1020 |
const gchar *nick,
|
sl@0
|
1021 |
const gchar *blurb,
|
sl@0
|
1022 |
const gchar *default_value,
|
sl@0
|
1023 |
GParamFlags flags);
|
sl@0
|
1024 |
IMPORT_C GParamSpec* g_param_spec_param (const gchar *name,
|
sl@0
|
1025 |
const gchar *nick,
|
sl@0
|
1026 |
const gchar *blurb,
|
sl@0
|
1027 |
GType param_type,
|
sl@0
|
1028 |
GParamFlags flags);
|
sl@0
|
1029 |
IMPORT_C GParamSpec* g_param_spec_boxed (const gchar *name,
|
sl@0
|
1030 |
const gchar *nick,
|
sl@0
|
1031 |
const gchar *blurb,
|
sl@0
|
1032 |
GType boxed_type,
|
sl@0
|
1033 |
GParamFlags flags);
|
sl@0
|
1034 |
IMPORT_C GParamSpec* g_param_spec_pointer (const gchar *name,
|
sl@0
|
1035 |
const gchar *nick,
|
sl@0
|
1036 |
const gchar *blurb,
|
sl@0
|
1037 |
GParamFlags flags);
|
sl@0
|
1038 |
IMPORT_C GParamSpec* g_param_spec_value_array (const gchar *name,
|
sl@0
|
1039 |
const gchar *nick,
|
sl@0
|
1040 |
const gchar *blurb,
|
sl@0
|
1041 |
GParamSpec *element_spec,
|
sl@0
|
1042 |
GParamFlags flags);
|
sl@0
|
1043 |
IMPORT_C GParamSpec* g_param_spec_object (const gchar *name,
|
sl@0
|
1044 |
const gchar *nick,
|
sl@0
|
1045 |
const gchar *blurb,
|
sl@0
|
1046 |
GType object_type,
|
sl@0
|
1047 |
GParamFlags flags);
|
sl@0
|
1048 |
IMPORT_C GParamSpec* g_param_spec_override (const gchar *name,
|
sl@0
|
1049 |
GParamSpec *overridden);
|
sl@0
|
1050 |
IMPORT_C GParamSpec* g_param_spec_gtype (const gchar *name,
|
sl@0
|
1051 |
const gchar *nick,
|
sl@0
|
1052 |
const gchar *blurb,
|
sl@0
|
1053 |
GType is_a_type,
|
sl@0
|
1054 |
GParamFlags flags);
|
sl@0
|
1055 |
|
sl@0
|
1056 |
/* --- internal --- */
|
sl@0
|
1057 |
/* We prefix variable declarations so they can
|
sl@0
|
1058 |
* properly get exported in windows dlls.
|
sl@0
|
1059 |
*/
|
sl@0
|
1060 |
#ifndef GOBJECT_VAR
|
sl@0
|
1061 |
# ifdef G_PLATFORM_WIN32
|
sl@0
|
1062 |
# ifdef GOBJECT_STATIC_COMPILATION
|
sl@0
|
1063 |
# define GOBJECT_VAR extern
|
sl@0
|
1064 |
# else /* !GOBJECT_STATIC_COMPILATION */
|
sl@0
|
1065 |
# ifdef GOBJECT_COMPILATION
|
sl@0
|
1066 |
# ifdef DLL_EXPORT
|
sl@0
|
1067 |
# define GOBJECT_VAR __declspec(dllexport)
|
sl@0
|
1068 |
# else /* !DLL_EXPORT */
|
sl@0
|
1069 |
# define GOBJECT_VAR extern
|
sl@0
|
1070 |
# endif /* !DLL_EXPORT */
|
sl@0
|
1071 |
# else /* !GOBJECT_COMPILATION */
|
sl@0
|
1072 |
# define GOBJECT_VAR extern __declspec(dllimport)
|
sl@0
|
1073 |
# endif /* !GOBJECT_COMPILATION */
|
sl@0
|
1074 |
# endif /* !GOBJECT_STATIC_COMPILATION */
|
sl@0
|
1075 |
# else /* !G_PLATFORM_WIN32 */
|
sl@0
|
1076 |
# define GOBJECT_VAR extern
|
sl@0
|
1077 |
# endif /* !G_PLATFORM_WIN32 */
|
sl@0
|
1078 |
#endif /* GOBJECT_VAR */
|
sl@0
|
1079 |
|
sl@0
|
1080 |
#ifdef __SYMBIAN32__
|
sl@0
|
1081 |
IMPORT_C GType ** _g_param_spec_types(void);
|
sl@0
|
1082 |
#endif /*__SYMBIAN32__ */
|
sl@0
|
1083 |
GOBJECT_VAR GType *g_param_spec_types;
|
sl@0
|
1084 |
|
sl@0
|
1085 |
G_END_DECLS
|
sl@0
|
1086 |
|
sl@0
|
1087 |
#endif /* __G_PARAMSPECS_H__ */
|