summaryrefslogtreecommitdiff
path: root/gobject-introspection/gidl.vapi
blob: 59ca3734c32f228c9ca844cbe11a95bab4750034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/* gidl.vala
 *
 * Copyright (C) 2006-2007  Jürg Billeter
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.

 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 *
 * Author:
 * 	Jürg Billeter <j@bitron.ch>
 */

[CCode (cprefix = "G", lower_case_cprefix = "g_", cheader_filename = "glib.h")]
namespace GLib {
	[CCode (cheader_filename = "gidlparser.h")]
	namespace Idl {
		public List<IdlModule> parse_file (string filename) throws MarkupError;
	}

	[Compact]
	[CCode (free_function = "g_idl_module_free", cheader_filename = "gidlmodule.h")]
	public class IdlModule {
		public string name;
		public List<IdlNode> entries;
	}

	[CCode (cprefix = "G_IDL_NODE_", cheader_filename = "gidlnode.h")]
	public enum IdlNodeTypeId {
		INVALID,
		FUNCTION,
		CALLBACK,
		STRUCT,
		BOXED,
		ENUM,
		FLAGS,
		OBJECT,
		INTERFACE,
		CONSTANT,
		ERROR_DOMAIN,
		UNION,
		PARAM,
		TYPE,
		PROPERTY,
		SIGNAL,
		VALUE,
		VFUNC,
		FIELD,
		XREF
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNode {
		public IdlNodeTypeId type;
		public string name;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeFunction : IdlNode {
		public bool deprecated;
		
		public bool is_method;
		public bool is_setter;
		public bool is_getter;
		public bool is_constructor;
		public bool wraps_vfunc;
		
		public string symbol;
		
		public IdlNodeParam result;
		public List<IdlNodeParam> parameters;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeVFunc : IdlNode {
		public bool must_chain_up;
		public bool must_be_implemented;
		public bool must_not_be_implemented;
		public bool is_class_closure;
		    
		public List<IdlNodeParam> parameters;
		public IdlNodeParam result;
		public int offset;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeSignal : IdlNode {
		public bool deprecated;
		
		public bool run_first;
		public bool run_last;
		public bool run_cleanup;
		public bool no_recurse;
		public bool detailed;
		public bool action;
		public bool no_hooks;
		
		public bool has_class_closure;
		public bool true_stops_emit;
		
		public int class_closure;
		
		public List<IdlNodeParam> parameters;
		public IdlNodeParam result;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeBoxed : IdlNode {
		public bool deprecated;
		
		public string gtype_name;
		public string gtype_init;
		
		public List<IdlNode> members;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeEnum : IdlNode {
		public bool deprecated;
		
		public string gtype_name;
		public string gtype_init;
		
		public List<IdlNode> values;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeField : IdlNode {
		public bool readable;
		public bool writable;
		public int bits;
		public int offset;
		
		public IdlNodeType type;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeConstant : IdlNode {
		public bool deprecated;
		
		public IdlNodeType type;
		
		public string value;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeInterface : IdlNode {
		public bool deprecated;
		
		public string gtype_name;
		public string gtype_init;
		
		public string parent;
		
		public List<string> interfaces;
		public List<string> prerequisites;
		
		public List<IdlNode> members;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeParam : IdlNode {
		public bool @in;
		public bool @out;
		public bool dipper;
		public bool optional;
		public bool retval;
		public bool null_ok;
		public bool transfer;
		public bool shallow_transfer;
		
		public IdlNodeType type;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeProperty : IdlNode {
		public bool deprecated;
		
		public string name;
		
		public bool readable;
		public bool writable;
		public bool @construct;
		public bool construct_only;
		
		public IdlNodeType type;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeStruct : IdlNode {
		public bool deprecated;
		
		public List<IdlNode> members;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeUnion : IdlNode {
		public bool deprecated;
		
		public List<IdlNode> members;
	}

	[Compact]
	[CCode (free_function = "g_idl_node_free", cheader_filename = "gidlnode.h")]
	public class IdlNodeType : IdlNode {
		public bool is_pointer;
		public bool is_basic;
		public bool is_array;
		public bool is_glist;
		public bool is_gslist;
		public bool is_ghashtable;
		public bool is_interface;
		public bool is_error;
		public TypeTag tag;
		
		public string unparsed;
		
		public bool zero_terminated;
		public bool has_length;
		public int length;
		
		public IdlNodeType parameter_type1;
		public IdlNodeType parameter_type2;
		
		public string @interface;
		public string[] errors;
	}

	[CCode (cname = "TypeTag", cprefix = "TYPE_TAG_", cheader_filename = "gmetadata.h")]
	public enum TypeTag
	{
		VOID,
		BOOLEAN,
		INT8,
		UINT8,
		INT16,
		UINT16,  
		INT32,
		UINT32,
		INT64,
		UINT64,
		INT,
		UINT,
		LONG,
		ULONG,
		SSIZE,
		SIZE,
		FLOAT,
		DOUBLE,
		UTF8,
		FILENAME,
		ARRAY,
		INTERFACE,
		LIST,
		SLIST,
		HASH,
		ERROR
	}
}