1 | /* |
2 | * This file is part of the WebKit open source project. |
3 | * |
4 | * This library is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Library General Public |
6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License, or (at your option) any later version. |
8 | * |
9 | * This library is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. |
13 | * |
14 | * You should have received a copy of the GNU Library General Public License |
15 | * along with this library; see the file COPYING.LIB. If not, write to |
16 | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
17 | * Boston, MA 02110-1301, USA. |
18 | */ |
19 | |
20 | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) |
21 | #error "Only <webkitdom/webkitdom.h> can be included directly." |
22 | #endif |
23 | |
24 | #ifndef WebKitDOMHTMLAreaElement_h |
25 | #define WebKitDOMHTMLAreaElement_h |
26 | |
27 | #include <glib-object.h> |
28 | #include <webkitdom/WebKitDOMHTMLElement.h> |
29 | #include <webkitdom/webkitdomdefines.h> |
30 | |
31 | G_BEGIN_DECLS |
32 | |
33 | #define WEBKIT_DOM_TYPE_HTML_AREA_ELEMENT (webkit_dom_html_area_element_get_type()) |
34 | #define WEBKIT_DOM_HTML_AREA_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_HTML_AREA_ELEMENT, WebKitDOMHTMLAreaElement)) |
35 | #define WEBKIT_DOM_HTML_AREA_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WEBKIT_DOM_TYPE_HTML_AREA_ELEMENT, WebKitDOMHTMLAreaElementClass) |
36 | #define WEBKIT_DOM_IS_HTML_AREA_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_HTML_AREA_ELEMENT)) |
37 | #define WEBKIT_DOM_IS_HTML_AREA_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WEBKIT_DOM_TYPE_HTML_AREA_ELEMENT)) |
38 | #define WEBKIT_DOM_HTML_AREA_ELEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WEBKIT_DOM_TYPE_HTML_AREA_ELEMENT, WebKitDOMHTMLAreaElementClass)) |
39 | |
40 | struct _WebKitDOMHTMLAreaElement { |
41 | WebKitDOMHTMLElement parent_instance; |
42 | }; |
43 | |
44 | struct _WebKitDOMHTMLAreaElementClass { |
45 | WebKitDOMHTMLElementClass parent_class; |
46 | }; |
47 | |
48 | WEBKIT_DEPRECATED GType |
49 | webkit_dom_html_area_element_get_type(void); |
50 | |
51 | /** |
52 | * webkit_dom_html_area_element_get_alt: |
53 | * @self: A #WebKitDOMHTMLAreaElement |
54 | * |
55 | * Returns: A #gchar |
56 | * |
57 | * Deprecated: 2.22: Use JavaScriptCore API instead |
58 | **/ |
59 | WEBKIT_DEPRECATED gchar* |
60 | webkit_dom_html_area_element_get_alt(WebKitDOMHTMLAreaElement* self); |
61 | |
62 | /** |
63 | * webkit_dom_html_area_element_set_alt: |
64 | * @self: A #WebKitDOMHTMLAreaElement |
65 | * @value: A #gchar |
66 | * |
67 | * |
68 | * Deprecated: 2.22: Use JavaScriptCore API instead |
69 | **/ |
70 | WEBKIT_DEPRECATED void |
71 | webkit_dom_html_area_element_set_alt(WebKitDOMHTMLAreaElement* self, const gchar* value); |
72 | |
73 | /** |
74 | * webkit_dom_html_area_element_get_coords: |
75 | * @self: A #WebKitDOMHTMLAreaElement |
76 | * |
77 | * Returns: A #gchar |
78 | * |
79 | * Deprecated: 2.22: Use JavaScriptCore API instead |
80 | **/ |
81 | WEBKIT_DEPRECATED gchar* |
82 | webkit_dom_html_area_element_get_coords(WebKitDOMHTMLAreaElement* self); |
83 | |
84 | /** |
85 | * webkit_dom_html_area_element_set_coords: |
86 | * @self: A #WebKitDOMHTMLAreaElement |
87 | * @value: A #gchar |
88 | * |
89 | * |
90 | * Deprecated: 2.22: Use JavaScriptCore API instead |
91 | **/ |
92 | WEBKIT_DEPRECATED void |
93 | webkit_dom_html_area_element_set_coords(WebKitDOMHTMLAreaElement* self, const gchar* value); |
94 | |
95 | /** |
96 | * webkit_dom_html_area_element_get_no_href: |
97 | * @self: A #WebKitDOMHTMLAreaElement |
98 | * |
99 | * Returns: A #gboolean |
100 | * |
101 | * Deprecated: 2.22: Use JavaScriptCore API instead |
102 | **/ |
103 | WEBKIT_DEPRECATED gboolean |
104 | webkit_dom_html_area_element_get_no_href(WebKitDOMHTMLAreaElement* self); |
105 | |
106 | /** |
107 | * webkit_dom_html_area_element_set_no_href: |
108 | * @self: A #WebKitDOMHTMLAreaElement |
109 | * @value: A #gboolean |
110 | * |
111 | * |
112 | * Deprecated: 2.22: Use JavaScriptCore API instead |
113 | **/ |
114 | WEBKIT_DEPRECATED void |
115 | webkit_dom_html_area_element_set_no_href(WebKitDOMHTMLAreaElement* self, gboolean value); |
116 | |
117 | /** |
118 | * webkit_dom_html_area_element_get_shape: |
119 | * @self: A #WebKitDOMHTMLAreaElement |
120 | * |
121 | * Returns: A #gchar |
122 | * |
123 | * Deprecated: 2.22: Use JavaScriptCore API instead |
124 | **/ |
125 | WEBKIT_DEPRECATED gchar* |
126 | webkit_dom_html_area_element_get_shape(WebKitDOMHTMLAreaElement* self); |
127 | |
128 | /** |
129 | * webkit_dom_html_area_element_set_shape: |
130 | * @self: A #WebKitDOMHTMLAreaElement |
131 | * @value: A #gchar |
132 | * |
133 | * |
134 | * Deprecated: 2.22: Use JavaScriptCore API instead |
135 | **/ |
136 | WEBKIT_DEPRECATED void |
137 | webkit_dom_html_area_element_set_shape(WebKitDOMHTMLAreaElement* self, const gchar* value); |
138 | |
139 | /** |
140 | * webkit_dom_html_area_element_get_target: |
141 | * @self: A #WebKitDOMHTMLAreaElement |
142 | * |
143 | * Returns: A #gchar |
144 | * |
145 | * Deprecated: 2.22: Use JavaScriptCore API instead |
146 | **/ |
147 | WEBKIT_DEPRECATED gchar* |
148 | webkit_dom_html_area_element_get_target(WebKitDOMHTMLAreaElement* self); |
149 | |
150 | /** |
151 | * webkit_dom_html_area_element_set_target: |
152 | * @self: A #WebKitDOMHTMLAreaElement |
153 | * @value: A #gchar |
154 | * |
155 | * |
156 | * Deprecated: 2.22: Use JavaScriptCore API instead |
157 | **/ |
158 | WEBKIT_DEPRECATED void |
159 | webkit_dom_html_area_element_set_target(WebKitDOMHTMLAreaElement* self, const gchar* value); |
160 | |
161 | /** |
162 | * webkit_dom_html_area_element_get_href: |
163 | * @self: A #WebKitDOMHTMLAreaElement |
164 | * |
165 | * Returns: A #gchar |
166 | * |
167 | * Deprecated: 2.22: Use JavaScriptCore API instead |
168 | **/ |
169 | WEBKIT_DEPRECATED gchar* |
170 | webkit_dom_html_area_element_get_href(WebKitDOMHTMLAreaElement* self); |
171 | |
172 | /** |
173 | * webkit_dom_html_area_element_set_href: |
174 | * @self: A #WebKitDOMHTMLAreaElement |
175 | * @value: A #gchar |
176 | * |
177 | * |
178 | * Deprecated: 2.22: Use JavaScriptCore API instead |
179 | **/ |
180 | WEBKIT_DEPRECATED void |
181 | webkit_dom_html_area_element_set_href(WebKitDOMHTMLAreaElement* self, const gchar* value); |
182 | |
183 | /** |
184 | * webkit_dom_html_area_element_get_protocol: |
185 | * @self: A #WebKitDOMHTMLAreaElement |
186 | * |
187 | * Returns: A #gchar |
188 | * |
189 | * Deprecated: 2.22: Use JavaScriptCore API instead |
190 | **/ |
191 | WEBKIT_DEPRECATED gchar* |
192 | webkit_dom_html_area_element_get_protocol(WebKitDOMHTMLAreaElement* self); |
193 | |
194 | /** |
195 | * webkit_dom_html_area_element_set_protocol: |
196 | * @self: A #WebKitDOMHTMLAreaElement |
197 | * @value: A #gchar |
198 | * |
199 | * Since: 2.16 |
200 | * |
201 | * Deprecated: 2.22: Use JavaScriptCore API instead |
202 | **/ |
203 | WEBKIT_DEPRECATED void |
204 | webkit_dom_html_area_element_set_protocol(WebKitDOMHTMLAreaElement* self, const gchar* value); |
205 | |
206 | /** |
207 | * webkit_dom_html_area_element_get_host: |
208 | * @self: A #WebKitDOMHTMLAreaElement |
209 | * |
210 | * Returns: A #gchar |
211 | * |
212 | * Deprecated: 2.22: Use JavaScriptCore API instead |
213 | **/ |
214 | WEBKIT_DEPRECATED gchar* |
215 | webkit_dom_html_area_element_get_host(WebKitDOMHTMLAreaElement* self); |
216 | |
217 | /** |
218 | * webkit_dom_html_area_element_set_host: |
219 | * @self: A #WebKitDOMHTMLAreaElement |
220 | * @value: A #gchar |
221 | * |
222 | * Since: 2.16 |
223 | * |
224 | * Deprecated: 2.22: Use JavaScriptCore API instead |
225 | **/ |
226 | WEBKIT_DEPRECATED void |
227 | webkit_dom_html_area_element_set_host(WebKitDOMHTMLAreaElement* self, const gchar* value); |
228 | |
229 | /** |
230 | * webkit_dom_html_area_element_get_hostname: |
231 | * @self: A #WebKitDOMHTMLAreaElement |
232 | * |
233 | * Returns: A #gchar |
234 | * |
235 | * Deprecated: 2.22: Use JavaScriptCore API instead |
236 | **/ |
237 | WEBKIT_DEPRECATED gchar* |
238 | webkit_dom_html_area_element_get_hostname(WebKitDOMHTMLAreaElement* self); |
239 | |
240 | /** |
241 | * webkit_dom_html_area_element_set_hostname: |
242 | * @self: A #WebKitDOMHTMLAreaElement |
243 | * @value: A #gchar |
244 | * |
245 | * Since: 2.16 |
246 | * |
247 | * Deprecated: 2.22: Use JavaScriptCore API instead |
248 | **/ |
249 | WEBKIT_DEPRECATED void |
250 | webkit_dom_html_area_element_set_hostname(WebKitDOMHTMLAreaElement* self, const gchar* value); |
251 | |
252 | /** |
253 | * webkit_dom_html_area_element_get_port: |
254 | * @self: A #WebKitDOMHTMLAreaElement |
255 | * |
256 | * Returns: A #gchar |
257 | * |
258 | * Deprecated: 2.22: Use JavaScriptCore API instead |
259 | **/ |
260 | WEBKIT_DEPRECATED gchar* |
261 | webkit_dom_html_area_element_get_port(WebKitDOMHTMLAreaElement* self); |
262 | |
263 | /** |
264 | * webkit_dom_html_area_element_set_port: |
265 | * @self: A #WebKitDOMHTMLAreaElement |
266 | * @value: A #gchar |
267 | * |
268 | * Since: 2.16 |
269 | * |
270 | * Deprecated: 2.22: Use JavaScriptCore API instead |
271 | **/ |
272 | WEBKIT_DEPRECATED void |
273 | webkit_dom_html_area_element_set_port(WebKitDOMHTMLAreaElement* self, const gchar* value); |
274 | |
275 | /** |
276 | * webkit_dom_html_area_element_get_pathname: |
277 | * @self: A #WebKitDOMHTMLAreaElement |
278 | * |
279 | * Returns: A #gchar |
280 | * |
281 | * Deprecated: 2.22: Use JavaScriptCore API instead |
282 | **/ |
283 | WEBKIT_DEPRECATED gchar* |
284 | webkit_dom_html_area_element_get_pathname(WebKitDOMHTMLAreaElement* self); |
285 | |
286 | /** |
287 | * webkit_dom_html_area_element_set_pathname: |
288 | * @self: A #WebKitDOMHTMLAreaElement |
289 | * @value: A #gchar |
290 | * |
291 | * Since: 2.16 |
292 | * |
293 | * Deprecated: 2.22: Use JavaScriptCore API instead |
294 | **/ |
295 | WEBKIT_DEPRECATED void |
296 | webkit_dom_html_area_element_set_pathname(WebKitDOMHTMLAreaElement* self, const gchar* value); |
297 | |
298 | /** |
299 | * webkit_dom_html_area_element_get_search: |
300 | * @self: A #WebKitDOMHTMLAreaElement |
301 | * |
302 | * Returns: A #gchar |
303 | * |
304 | * Deprecated: 2.22: Use JavaScriptCore API instead |
305 | **/ |
306 | WEBKIT_DEPRECATED gchar* |
307 | webkit_dom_html_area_element_get_search(WebKitDOMHTMLAreaElement* self); |
308 | |
309 | /** |
310 | * webkit_dom_html_area_element_set_search: |
311 | * @self: A #WebKitDOMHTMLAreaElement |
312 | * @value: A #gchar |
313 | * |
314 | * Since: 2.16 |
315 | * |
316 | * Deprecated: 2.22: Use JavaScriptCore API instead |
317 | **/ |
318 | WEBKIT_DEPRECATED void |
319 | webkit_dom_html_area_element_set_search(WebKitDOMHTMLAreaElement* self, const gchar* value); |
320 | |
321 | /** |
322 | * webkit_dom_html_area_element_get_hash: |
323 | * @self: A #WebKitDOMHTMLAreaElement |
324 | * |
325 | * Returns: A #gchar |
326 | * |
327 | * Deprecated: 2.22: Use JavaScriptCore API instead |
328 | **/ |
329 | WEBKIT_DEPRECATED gchar* |
330 | webkit_dom_html_area_element_get_hash(WebKitDOMHTMLAreaElement* self); |
331 | |
332 | /** |
333 | * webkit_dom_html_area_element_set_hash: |
334 | * @self: A #WebKitDOMHTMLAreaElement |
335 | * @value: A #gchar |
336 | * |
337 | * Stability: Unstable |
338 | * |
339 | * Deprecated: 2.22: Use JavaScriptCore API instead |
340 | **/ |
341 | WEBKIT_DEPRECATED void |
342 | webkit_dom_html_area_element_set_hash(WebKitDOMHTMLAreaElement* self, const gchar* value); |
343 | |
344 | G_END_DECLS |
345 | |
346 | #endif /* WebKitDOMHTMLAreaElement_h */ |
347 | |