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 WebKitDOMHTMLTableCellElement_h
25#define WebKitDOMHTMLTableCellElement_h
26
27#include <glib-object.h>
28#include <webkitdom/WebKitDOMHTMLElement.h>
29#include <webkitdom/webkitdomdefines.h>
30
31G_BEGIN_DECLS
32
33#define WEBKIT_DOM_TYPE_HTML_TABLE_CELL_ELEMENT (webkit_dom_html_table_cell_element_get_type())
34#define WEBKIT_DOM_HTML_TABLE_CELL_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_HTML_TABLE_CELL_ELEMENT, WebKitDOMHTMLTableCellElement))
35#define WEBKIT_DOM_HTML_TABLE_CELL_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WEBKIT_DOM_TYPE_HTML_TABLE_CELL_ELEMENT, WebKitDOMHTMLTableCellElementClass)
36#define WEBKIT_DOM_IS_HTML_TABLE_CELL_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_HTML_TABLE_CELL_ELEMENT))
37#define WEBKIT_DOM_IS_HTML_TABLE_CELL_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WEBKIT_DOM_TYPE_HTML_TABLE_CELL_ELEMENT))
38#define WEBKIT_DOM_HTML_TABLE_CELL_ELEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WEBKIT_DOM_TYPE_HTML_TABLE_CELL_ELEMENT, WebKitDOMHTMLTableCellElementClass))
39
40struct _WebKitDOMHTMLTableCellElement {
41 WebKitDOMHTMLElement parent_instance;
42};
43
44struct _WebKitDOMHTMLTableCellElementClass {
45 WebKitDOMHTMLElementClass parent_class;
46};
47
48WEBKIT_DEPRECATED GType
49webkit_dom_html_table_cell_element_get_type(void);
50
51/**
52 * webkit_dom_html_table_cell_element_get_cell_index:
53 * @self: A #WebKitDOMHTMLTableCellElement
54 *
55 * Returns: A #glong
56 *
57 * Deprecated: 2.22: Use JavaScriptCore API instead
58**/
59WEBKIT_DEPRECATED glong
60webkit_dom_html_table_cell_element_get_cell_index(WebKitDOMHTMLTableCellElement* self);
61
62/**
63 * webkit_dom_html_table_cell_element_get_align:
64 * @self: A #WebKitDOMHTMLTableCellElement
65 *
66 * Returns: A #gchar
67 *
68 * Deprecated: 2.22: Use JavaScriptCore API instead
69**/
70WEBKIT_DEPRECATED gchar*
71webkit_dom_html_table_cell_element_get_align(WebKitDOMHTMLTableCellElement* self);
72
73/**
74 * webkit_dom_html_table_cell_element_set_align:
75 * @self: A #WebKitDOMHTMLTableCellElement
76 * @value: A #gchar
77 *
78 *
79 * Deprecated: 2.22: Use JavaScriptCore API instead
80**/
81WEBKIT_DEPRECATED void
82webkit_dom_html_table_cell_element_set_align(WebKitDOMHTMLTableCellElement* self, const gchar* value);
83
84/**
85 * webkit_dom_html_table_cell_element_get_axis:
86 * @self: A #WebKitDOMHTMLTableCellElement
87 *
88 * Returns: A #gchar
89 *
90 * Deprecated: 2.22: Use JavaScriptCore API instead
91**/
92WEBKIT_DEPRECATED gchar*
93webkit_dom_html_table_cell_element_get_axis(WebKitDOMHTMLTableCellElement* self);
94
95/**
96 * webkit_dom_html_table_cell_element_set_axis:
97 * @self: A #WebKitDOMHTMLTableCellElement
98 * @value: A #gchar
99 *
100 *
101 * Deprecated: 2.22: Use JavaScriptCore API instead
102**/
103WEBKIT_DEPRECATED void
104webkit_dom_html_table_cell_element_set_axis(WebKitDOMHTMLTableCellElement* self, const gchar* value);
105
106/**
107 * webkit_dom_html_table_cell_element_get_bg_color:
108 * @self: A #WebKitDOMHTMLTableCellElement
109 *
110 * Returns: A #gchar
111 *
112 * Deprecated: 2.22: Use JavaScriptCore API instead
113**/
114WEBKIT_DEPRECATED gchar*
115webkit_dom_html_table_cell_element_get_bg_color(WebKitDOMHTMLTableCellElement* self);
116
117/**
118 * webkit_dom_html_table_cell_element_set_bg_color:
119 * @self: A #WebKitDOMHTMLTableCellElement
120 * @value: A #gchar
121 *
122 *
123 * Deprecated: 2.22: Use JavaScriptCore API instead
124**/
125WEBKIT_DEPRECATED void
126webkit_dom_html_table_cell_element_set_bg_color(WebKitDOMHTMLTableCellElement* self, const gchar* value);
127
128/**
129 * webkit_dom_html_table_cell_element_get_ch:
130 * @self: A #WebKitDOMHTMLTableCellElement
131 *
132 * Returns: A #gchar
133 *
134 * Deprecated: 2.22: Use JavaScriptCore API instead
135**/
136WEBKIT_DEPRECATED gchar*
137webkit_dom_html_table_cell_element_get_ch(WebKitDOMHTMLTableCellElement* self);
138
139/**
140 * webkit_dom_html_table_cell_element_set_ch:
141 * @self: A #WebKitDOMHTMLTableCellElement
142 * @value: A #gchar
143 *
144 *
145 * Deprecated: 2.22: Use JavaScriptCore API instead
146**/
147WEBKIT_DEPRECATED void
148webkit_dom_html_table_cell_element_set_ch(WebKitDOMHTMLTableCellElement* self, const gchar* value);
149
150/**
151 * webkit_dom_html_table_cell_element_get_ch_off:
152 * @self: A #WebKitDOMHTMLTableCellElement
153 *
154 * Returns: A #gchar
155 *
156 * Deprecated: 2.22: Use JavaScriptCore API instead
157**/
158WEBKIT_DEPRECATED gchar*
159webkit_dom_html_table_cell_element_get_ch_off(WebKitDOMHTMLTableCellElement* self);
160
161/**
162 * webkit_dom_html_table_cell_element_set_ch_off:
163 * @self: A #WebKitDOMHTMLTableCellElement
164 * @value: A #gchar
165 *
166 *
167 * Deprecated: 2.22: Use JavaScriptCore API instead
168**/
169WEBKIT_DEPRECATED void
170webkit_dom_html_table_cell_element_set_ch_off(WebKitDOMHTMLTableCellElement* self, const gchar* value);
171
172/**
173 * webkit_dom_html_table_cell_element_get_col_span:
174 * @self: A #WebKitDOMHTMLTableCellElement
175 *
176 * Returns: A #glong
177 *
178 * Deprecated: 2.22: Use JavaScriptCore API instead
179**/
180WEBKIT_DEPRECATED glong
181webkit_dom_html_table_cell_element_get_col_span(WebKitDOMHTMLTableCellElement* self);
182
183/**
184 * webkit_dom_html_table_cell_element_set_col_span:
185 * @self: A #WebKitDOMHTMLTableCellElement
186 * @value: A #glong
187 *
188 *
189 * Deprecated: 2.22: Use JavaScriptCore API instead
190**/
191WEBKIT_DEPRECATED void
192webkit_dom_html_table_cell_element_set_col_span(WebKitDOMHTMLTableCellElement* self, glong value);
193
194/**
195 * webkit_dom_html_table_cell_element_get_row_span:
196 * @self: A #WebKitDOMHTMLTableCellElement
197 *
198 * Returns: A #glong
199 *
200 * Deprecated: 2.22: Use JavaScriptCore API instead
201**/
202WEBKIT_DEPRECATED glong
203webkit_dom_html_table_cell_element_get_row_span(WebKitDOMHTMLTableCellElement* self);
204
205/**
206 * webkit_dom_html_table_cell_element_set_row_span:
207 * @self: A #WebKitDOMHTMLTableCellElement
208 * @value: A #glong
209 *
210 *
211 * Deprecated: 2.22: Use JavaScriptCore API instead
212**/
213WEBKIT_DEPRECATED void
214webkit_dom_html_table_cell_element_set_row_span(WebKitDOMHTMLTableCellElement* self, glong value);
215
216/**
217 * webkit_dom_html_table_cell_element_get_headers:
218 * @self: A #WebKitDOMHTMLTableCellElement
219 *
220 * Returns: A #gchar
221 *
222 * Deprecated: 2.22: Use JavaScriptCore API instead
223**/
224WEBKIT_DEPRECATED gchar*
225webkit_dom_html_table_cell_element_get_headers(WebKitDOMHTMLTableCellElement* self);
226
227/**
228 * webkit_dom_html_table_cell_element_set_headers:
229 * @self: A #WebKitDOMHTMLTableCellElement
230 * @value: A #gchar
231 *
232 *
233 * Deprecated: 2.22: Use JavaScriptCore API instead
234**/
235WEBKIT_DEPRECATED void
236webkit_dom_html_table_cell_element_set_headers(WebKitDOMHTMLTableCellElement* self, const gchar* value);
237
238/**
239 * webkit_dom_html_table_cell_element_get_height:
240 * @self: A #WebKitDOMHTMLTableCellElement
241 *
242 * Returns: A #gchar
243 *
244 * Deprecated: 2.22: Use JavaScriptCore API instead
245**/
246WEBKIT_DEPRECATED gchar*
247webkit_dom_html_table_cell_element_get_height(WebKitDOMHTMLTableCellElement* self);
248
249/**
250 * webkit_dom_html_table_cell_element_set_height:
251 * @self: A #WebKitDOMHTMLTableCellElement
252 * @value: A #gchar
253 *
254 *
255 * Deprecated: 2.22: Use JavaScriptCore API instead
256**/
257WEBKIT_DEPRECATED void
258webkit_dom_html_table_cell_element_set_height(WebKitDOMHTMLTableCellElement* self, const gchar* value);
259
260/**
261 * webkit_dom_html_table_cell_element_get_no_wrap:
262 * @self: A #WebKitDOMHTMLTableCellElement
263 *
264 * Returns: A #gboolean
265 *
266 * Deprecated: 2.22: Use JavaScriptCore API instead
267**/
268WEBKIT_DEPRECATED gboolean
269webkit_dom_html_table_cell_element_get_no_wrap(WebKitDOMHTMLTableCellElement* self);
270
271/**
272 * webkit_dom_html_table_cell_element_set_no_wrap:
273 * @self: A #WebKitDOMHTMLTableCellElement
274 * @value: A #gboolean
275 *
276 *
277 * Deprecated: 2.22: Use JavaScriptCore API instead
278**/
279WEBKIT_DEPRECATED void
280webkit_dom_html_table_cell_element_set_no_wrap(WebKitDOMHTMLTableCellElement* self, gboolean value);
281
282/**
283 * webkit_dom_html_table_cell_element_get_v_align:
284 * @self: A #WebKitDOMHTMLTableCellElement
285 *
286 * Returns: A #gchar
287 *
288 * Deprecated: 2.22: Use JavaScriptCore API instead
289**/
290WEBKIT_DEPRECATED gchar*
291webkit_dom_html_table_cell_element_get_v_align(WebKitDOMHTMLTableCellElement* self);
292
293/**
294 * webkit_dom_html_table_cell_element_set_v_align:
295 * @self: A #WebKitDOMHTMLTableCellElement
296 * @value: A #gchar
297 *
298 *
299 * Deprecated: 2.22: Use JavaScriptCore API instead
300**/
301WEBKIT_DEPRECATED void
302webkit_dom_html_table_cell_element_set_v_align(WebKitDOMHTMLTableCellElement* self, const gchar* value);
303
304/**
305 * webkit_dom_html_table_cell_element_get_width:
306 * @self: A #WebKitDOMHTMLTableCellElement
307 *
308 * Returns: A #gchar
309 *
310 * Deprecated: 2.22: Use JavaScriptCore API instead
311**/
312WEBKIT_DEPRECATED gchar*
313webkit_dom_html_table_cell_element_get_width(WebKitDOMHTMLTableCellElement* self);
314
315/**
316 * webkit_dom_html_table_cell_element_set_width:
317 * @self: A #WebKitDOMHTMLTableCellElement
318 * @value: A #gchar
319 *
320 *
321 * Deprecated: 2.22: Use JavaScriptCore API instead
322**/
323WEBKIT_DEPRECATED void
324webkit_dom_html_table_cell_element_set_width(WebKitDOMHTMLTableCellElement* self, const gchar* value);
325
326/**
327 * webkit_dom_html_table_cell_element_get_abbr:
328 * @self: A #WebKitDOMHTMLTableCellElement
329 *
330 * Returns: A #gchar
331 *
332 * Deprecated: 2.22: Use JavaScriptCore API instead
333**/
334WEBKIT_DEPRECATED gchar*
335webkit_dom_html_table_cell_element_get_abbr(WebKitDOMHTMLTableCellElement* self);
336
337/**
338 * webkit_dom_html_table_cell_element_set_abbr:
339 * @self: A #WebKitDOMHTMLTableCellElement
340 * @value: A #gchar
341 *
342 *
343 * Deprecated: 2.22: Use JavaScriptCore API instead
344**/
345WEBKIT_DEPRECATED void
346webkit_dom_html_table_cell_element_set_abbr(WebKitDOMHTMLTableCellElement* self, const gchar* value);
347
348/**
349 * webkit_dom_html_table_cell_element_get_scope:
350 * @self: A #WebKitDOMHTMLTableCellElement
351 *
352 * Returns: A #gchar
353 *
354 * Deprecated: 2.22: Use JavaScriptCore API instead
355**/
356WEBKIT_DEPRECATED gchar*
357webkit_dom_html_table_cell_element_get_scope(WebKitDOMHTMLTableCellElement* self);
358
359/**
360 * webkit_dom_html_table_cell_element_set_scope:
361 * @self: A #WebKitDOMHTMLTableCellElement
362 * @value: A #gchar
363 *
364 *
365 * Deprecated: 2.22: Use JavaScriptCore API instead
366**/
367WEBKIT_DEPRECATED void
368webkit_dom_html_table_cell_element_set_scope(WebKitDOMHTMLTableCellElement* self, const gchar* value);
369
370G_END_DECLS
371
372#endif /* WebKitDOMHTMLTableCellElement_h */
373