1/*
2 *  This file is part of the WebKit open source project.
3 *  This file has been generated by generate-bindings.pl. DO NOT MODIFY!
4 *
5 *  This library is free software; you can redistribute it and/or
6 *  modify it under the terms of the GNU Library General Public
7 *  License as published by the Free Software Foundation; either
8 *  version 2 of the License, or (at your option) any later version.
9 *
10 *  This library is distributed in the hope that it will be useful,
11 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 *  Library General Public License for more details.
14 *
15 *  You should have received a copy of the GNU Library General Public License
16 *  along with this library; see the file COPYING.LIB.  If not, write to
17 *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 *  Boston, MA 02110-1301, USA.
19 */
20
21#ifndef WebKitDOMTestTypedefs_h
22#define WebKitDOMTestTypedefs_h
23
24#ifdef WEBKIT_DOM_USE_UNSTABLE_API
25
26#include <glib-object.h>
27#include <webkitdom/WebKitDOMObject.h>
28#include <webkitdom/webkitdomdefines-unstable.h>
29
30G_BEGIN_DECLS
31
32#define WEBKIT_DOM_TYPE_TEST_TYPEDEFS            (webkit_dom_test_typedefs_get_type())
33#define WEBKIT_DOM_TEST_TYPEDEFS(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_TEST_TYPEDEFS, WebKitDOMTestTypedefs))
34#define WEBKIT_DOM_TEST_TYPEDEFS_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  WEBKIT_DOM_TYPE_TEST_TYPEDEFS, WebKitDOMTestTypedefsClass)
35#define WEBKIT_DOM_IS_TEST_TYPEDEFS(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_TEST_TYPEDEFS))
36#define WEBKIT_DOM_IS_TEST_TYPEDEFS_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  WEBKIT_DOM_TYPE_TEST_TYPEDEFS))
37#define WEBKIT_DOM_TEST_TYPEDEFS_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  WEBKIT_DOM_TYPE_TEST_TYPEDEFS, WebKitDOMTestTypedefsClass))
38
39struct _WebKitDOMTestTypedefs {
40    WebKitDOMObject parent_instance;
41};
42
43struct _WebKitDOMTestTypedefsClass {
44    WebKitDOMObjectClass parent_class;
45};
46
47WEBKIT_API GType
48webkit_dom_test_typedefs_get_type(void);
49
50/**
51 * webkit_dom_test_typedefs_func:
52 * @self: A #WebKitDOMTestTypedefs
53 * @x: A #WebKitDOMlong[]
54 *
55 * Stability: Unstable
56**/
57WEBKIT_API void
58webkit_dom_test_typedefs_func(WebKitDOMTestTypedefs* self, WebKitDOMlong[]* x);
59
60/**
61 * webkit_dom_test_typedefs_set_shadow:
62 * @self: A #WebKitDOMTestTypedefs
63 * @width: A #gfloat
64 * @height: A #gfloat
65 * @blur: A #gfloat
66 * @color: A #gchar
67 * @alpha: A #gfloat
68 *
69 * Stability: Unstable
70**/
71WEBKIT_API void
72webkit_dom_test_typedefs_set_shadow(WebKitDOMTestTypedefs* self, gfloat width, gfloat height, gfloat blur, const gchar* color, gfloat alpha);
73
74/**
75 * webkit_dom_test_typedefs_nullable_array_arg:
76 * @self: A #WebKitDOMTestTypedefs
77 * @arrayArg: A #WebKitDOMDOMString[]
78 *
79 * Stability: Unstable
80**/
81WEBKIT_API void
82webkit_dom_test_typedefs_nullable_array_arg(WebKitDOMTestTypedefs* self, WebKitDOMDOMString[]* arrayArg);
83
84/**
85 * webkit_dom_test_typedefs_immutable_point_function:
86 * @self: A #WebKitDOMTestTypedefs
87 *
88 * Returns: (transfer none): A #WebKitDOMSVGPoint
89 *
90 * Stability: Unstable
91**/
92WEBKIT_API WebKitDOMSVGPoint*
93webkit_dom_test_typedefs_immutable_point_function(WebKitDOMTestTypedefs* self);
94
95/**
96 * webkit_dom_test_typedefs_method_with_exception:
97 * @self: A #WebKitDOMTestTypedefs
98 * @error: #GError
99 *
100 * Stability: Unstable
101**/
102WEBKIT_API void
103webkit_dom_test_typedefs_method_with_exception(WebKitDOMTestTypedefs* self, GError** error);
104
105/**
106 * webkit_dom_test_typedefs_get_unsigned_long_long_attr:
107 * @self: A #WebKitDOMTestTypedefs
108 *
109 * Returns: A #guint64
110 *
111 * Stability: Unstable
112**/
113WEBKIT_API guint64
114webkit_dom_test_typedefs_get_unsigned_long_long_attr(WebKitDOMTestTypedefs* self);
115
116/**
117 * webkit_dom_test_typedefs_set_unsigned_long_long_attr:
118 * @self: A #WebKitDOMTestTypedefs
119 * @value: A #guint64
120 *
121 * Stability: Unstable
122**/
123WEBKIT_API void
124webkit_dom_test_typedefs_set_unsigned_long_long_attr(WebKitDOMTestTypedefs* self, guint64 value);
125
126/**
127 * webkit_dom_test_typedefs_get_immutable_serialized_script_value:
128 * @self: A #WebKitDOMTestTypedefs
129 *
130 * Returns: (transfer none): A #WebKitDOMSerializedScriptValue
131 *
132 * Stability: Unstable
133**/
134WEBKIT_API WebKitDOMSerializedScriptValue*
135webkit_dom_test_typedefs_get_immutable_serialized_script_value(WebKitDOMTestTypedefs* self);
136
137/**
138 * webkit_dom_test_typedefs_set_immutable_serialized_script_value:
139 * @self: A #WebKitDOMTestTypedefs
140 * @value: A #WebKitDOMSerializedScriptValue
141 *
142 * Stability: Unstable
143**/
144WEBKIT_API void
145webkit_dom_test_typedefs_set_immutable_serialized_script_value(WebKitDOMTestTypedefs* self, WebKitDOMSerializedScriptValue* value);
146
147/**
148 * webkit_dom_test_typedefs_get_attr_with_getter_exception:
149 * @self: A #WebKitDOMTestTypedefs
150 * @error: #GError
151 *
152 * Returns: A #glong
153 *
154 * Stability: Unstable
155**/
156WEBKIT_API glong
157webkit_dom_test_typedefs_get_attr_with_getter_exception(WebKitDOMTestTypedefs* self, GError** error);
158
159/**
160 * webkit_dom_test_typedefs_set_attr_with_getter_exception:
161 * @self: A #WebKitDOMTestTypedefs
162 * @value: A #glong
163 *
164 * Stability: Unstable
165**/
166WEBKIT_API void
167webkit_dom_test_typedefs_set_attr_with_getter_exception(WebKitDOMTestTypedefs* self, glong value);
168
169/**
170 * webkit_dom_test_typedefs_get_attr_with_setter_exception:
171 * @self: A #WebKitDOMTestTypedefs
172 *
173 * Returns: A #glong
174 *
175 * Stability: Unstable
176**/
177WEBKIT_API glong
178webkit_dom_test_typedefs_get_attr_with_setter_exception(WebKitDOMTestTypedefs* self);
179
180/**
181 * webkit_dom_test_typedefs_set_attr_with_setter_exception:
182 * @self: A #WebKitDOMTestTypedefs
183 * @value: A #glong
184 * @error: #GError
185 *
186 * Stability: Unstable
187**/
188WEBKIT_API void
189webkit_dom_test_typedefs_set_attr_with_setter_exception(WebKitDOMTestTypedefs* self, glong value, GError** error);
190
191/**
192 * webkit_dom_test_typedefs_get_string_attr_with_getter_exception:
193 * @self: A #WebKitDOMTestTypedefs
194 * @error: #GError
195 *
196 * Returns: A #gchar
197 *
198 * Stability: Unstable
199**/
200WEBKIT_API gchar*
201webkit_dom_test_typedefs_get_string_attr_with_getter_exception(WebKitDOMTestTypedefs* self, GError** error);
202
203/**
204 * webkit_dom_test_typedefs_set_string_attr_with_getter_exception:
205 * @self: A #WebKitDOMTestTypedefs
206 * @value: A #gchar
207 *
208 * Stability: Unstable
209**/
210WEBKIT_API void
211webkit_dom_test_typedefs_set_string_attr_with_getter_exception(WebKitDOMTestTypedefs* self, const gchar* value);
212
213/**
214 * webkit_dom_test_typedefs_get_string_attr_with_setter_exception:
215 * @self: A #WebKitDOMTestTypedefs
216 *
217 * Returns: A #gchar
218 *
219 * Stability: Unstable
220**/
221WEBKIT_API gchar*
222webkit_dom_test_typedefs_get_string_attr_with_setter_exception(WebKitDOMTestTypedefs* self);
223
224/**
225 * webkit_dom_test_typedefs_set_string_attr_with_setter_exception:
226 * @self: A #WebKitDOMTestTypedefs
227 * @value: A #gchar
228 * @error: #GError
229 *
230 * Stability: Unstable
231**/
232WEBKIT_API void
233webkit_dom_test_typedefs_set_string_attr_with_setter_exception(WebKitDOMTestTypedefs* self, const gchar* value, GError** error);
234
235G_END_DECLS
236
237#endif /* WEBKIT_DOM_USE_UNSTABLE_API */
238#endif /* WebKitDOMTestTypedefs_h */
239