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 WebKitDOMHTMLTableRowElement_h |
25 | #define WebKitDOMHTMLTableRowElement_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_TABLE_ROW_ELEMENT (webkit_dom_html_table_row_element_get_type()) |
34 | #define WEBKIT_DOM_HTML_TABLE_ROW_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_HTML_TABLE_ROW_ELEMENT, WebKitDOMHTMLTableRowElement)) |
35 | #define WEBKIT_DOM_HTML_TABLE_ROW_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WEBKIT_DOM_TYPE_HTML_TABLE_ROW_ELEMENT, WebKitDOMHTMLTableRowElementClass) |
36 | #define WEBKIT_DOM_IS_HTML_TABLE_ROW_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_HTML_TABLE_ROW_ELEMENT)) |
37 | #define WEBKIT_DOM_IS_HTML_TABLE_ROW_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WEBKIT_DOM_TYPE_HTML_TABLE_ROW_ELEMENT)) |
38 | #define WEBKIT_DOM_HTML_TABLE_ROW_ELEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WEBKIT_DOM_TYPE_HTML_TABLE_ROW_ELEMENT, WebKitDOMHTMLTableRowElementClass)) |
39 | |
40 | struct _WebKitDOMHTMLTableRowElement { |
41 | WebKitDOMHTMLElement parent_instance; |
42 | }; |
43 | |
44 | struct _WebKitDOMHTMLTableRowElementClass { |
45 | WebKitDOMHTMLElementClass parent_class; |
46 | }; |
47 | |
48 | WEBKIT_DEPRECATED GType |
49 | webkit_dom_html_table_row_element_get_type(void); |
50 | |
51 | /** |
52 | * webkit_dom_html_table_row_element_insert_cell: |
53 | * @self: A #WebKitDOMHTMLTableRowElement |
54 | * @index: A #glong |
55 | * @error: #GError |
56 | * |
57 | * Returns: (transfer none): A #WebKitDOMHTMLElement |
58 | * |
59 | * Deprecated: 2.22: Use JavaScriptCore API instead |
60 | **/ |
61 | WEBKIT_DEPRECATED WebKitDOMHTMLElement* |
62 | webkit_dom_html_table_row_element_insert_cell(WebKitDOMHTMLTableRowElement* self, glong index, GError** error); |
63 | |
64 | /** |
65 | * webkit_dom_html_table_row_element_delete_cell: |
66 | * @self: A #WebKitDOMHTMLTableRowElement |
67 | * @index: A #glong |
68 | * @error: #GError |
69 | * |
70 | * |
71 | * Deprecated: 2.22: Use JavaScriptCore API instead |
72 | **/ |
73 | WEBKIT_DEPRECATED void |
74 | webkit_dom_html_table_row_element_delete_cell(WebKitDOMHTMLTableRowElement* self, glong index, GError** error); |
75 | |
76 | /** |
77 | * webkit_dom_html_table_row_element_get_row_index: |
78 | * @self: A #WebKitDOMHTMLTableRowElement |
79 | * |
80 | * Returns: A #glong |
81 | * |
82 | * Deprecated: 2.22: Use JavaScriptCore API instead |
83 | **/ |
84 | WEBKIT_DEPRECATED glong |
85 | webkit_dom_html_table_row_element_get_row_index(WebKitDOMHTMLTableRowElement* self); |
86 | |
87 | /** |
88 | * webkit_dom_html_table_row_element_get_section_row_index: |
89 | * @self: A #WebKitDOMHTMLTableRowElement |
90 | * |
91 | * Returns: A #glong |
92 | * |
93 | * Deprecated: 2.22: Use JavaScriptCore API instead |
94 | **/ |
95 | WEBKIT_DEPRECATED glong |
96 | webkit_dom_html_table_row_element_get_section_row_index(WebKitDOMHTMLTableRowElement* self); |
97 | |
98 | /** |
99 | * webkit_dom_html_table_row_element_get_cells: |
100 | * @self: A #WebKitDOMHTMLTableRowElement |
101 | * |
102 | * Returns: (transfer full): A #WebKitDOMHTMLCollection |
103 | * |
104 | * Deprecated: 2.22: Use JavaScriptCore API instead |
105 | **/ |
106 | WEBKIT_DEPRECATED WebKitDOMHTMLCollection* |
107 | webkit_dom_html_table_row_element_get_cells(WebKitDOMHTMLTableRowElement* self); |
108 | |
109 | /** |
110 | * webkit_dom_html_table_row_element_get_align: |
111 | * @self: A #WebKitDOMHTMLTableRowElement |
112 | * |
113 | * Returns: A #gchar |
114 | * |
115 | * Deprecated: 2.22: Use JavaScriptCore API instead |
116 | **/ |
117 | WEBKIT_DEPRECATED gchar* |
118 | webkit_dom_html_table_row_element_get_align(WebKitDOMHTMLTableRowElement* self); |
119 | |
120 | /** |
121 | * webkit_dom_html_table_row_element_set_align: |
122 | * @self: A #WebKitDOMHTMLTableRowElement |
123 | * @value: A #gchar |
124 | * |
125 | * |
126 | * Deprecated: 2.22: Use JavaScriptCore API instead |
127 | **/ |
128 | WEBKIT_DEPRECATED void |
129 | webkit_dom_html_table_row_element_set_align(WebKitDOMHTMLTableRowElement* self, const gchar* value); |
130 | |
131 | /** |
132 | * webkit_dom_html_table_row_element_get_bg_color: |
133 | * @self: A #WebKitDOMHTMLTableRowElement |
134 | * |
135 | * Returns: A #gchar |
136 | * |
137 | * Deprecated: 2.22: Use JavaScriptCore API instead |
138 | **/ |
139 | WEBKIT_DEPRECATED gchar* |
140 | webkit_dom_html_table_row_element_get_bg_color(WebKitDOMHTMLTableRowElement* self); |
141 | |
142 | /** |
143 | * webkit_dom_html_table_row_element_set_bg_color: |
144 | * @self: A #WebKitDOMHTMLTableRowElement |
145 | * @value: A #gchar |
146 | * |
147 | * |
148 | * Deprecated: 2.22: Use JavaScriptCore API instead |
149 | **/ |
150 | WEBKIT_DEPRECATED void |
151 | webkit_dom_html_table_row_element_set_bg_color(WebKitDOMHTMLTableRowElement* self, const gchar* value); |
152 | |
153 | /** |
154 | * webkit_dom_html_table_row_element_get_ch: |
155 | * @self: A #WebKitDOMHTMLTableRowElement |
156 | * |
157 | * Returns: A #gchar |
158 | * |
159 | * Deprecated: 2.22: Use JavaScriptCore API instead |
160 | **/ |
161 | WEBKIT_DEPRECATED gchar* |
162 | webkit_dom_html_table_row_element_get_ch(WebKitDOMHTMLTableRowElement* self); |
163 | |
164 | /** |
165 | * webkit_dom_html_table_row_element_set_ch: |
166 | * @self: A #WebKitDOMHTMLTableRowElement |
167 | * @value: A #gchar |
168 | * |
169 | * |
170 | * Deprecated: 2.22: Use JavaScriptCore API instead |
171 | **/ |
172 | WEBKIT_DEPRECATED void |
173 | webkit_dom_html_table_row_element_set_ch(WebKitDOMHTMLTableRowElement* self, const gchar* value); |
174 | |
175 | /** |
176 | * webkit_dom_html_table_row_element_get_ch_off: |
177 | * @self: A #WebKitDOMHTMLTableRowElement |
178 | * |
179 | * Returns: A #gchar |
180 | * |
181 | * Deprecated: 2.22: Use JavaScriptCore API instead |
182 | **/ |
183 | WEBKIT_DEPRECATED gchar* |
184 | webkit_dom_html_table_row_element_get_ch_off(WebKitDOMHTMLTableRowElement* self); |
185 | |
186 | /** |
187 | * webkit_dom_html_table_row_element_set_ch_off: |
188 | * @self: A #WebKitDOMHTMLTableRowElement |
189 | * @value: A #gchar |
190 | * |
191 | * |
192 | * Deprecated: 2.22: Use JavaScriptCore API instead |
193 | **/ |
194 | WEBKIT_DEPRECATED void |
195 | webkit_dom_html_table_row_element_set_ch_off(WebKitDOMHTMLTableRowElement* self, const gchar* value); |
196 | |
197 | /** |
198 | * webkit_dom_html_table_row_element_get_v_align: |
199 | * @self: A #WebKitDOMHTMLTableRowElement |
200 | * |
201 | * Returns: A #gchar |
202 | * |
203 | * Deprecated: 2.22: Use JavaScriptCore API instead |
204 | **/ |
205 | WEBKIT_DEPRECATED gchar* |
206 | webkit_dom_html_table_row_element_get_v_align(WebKitDOMHTMLTableRowElement* self); |
207 | |
208 | /** |
209 | * webkit_dom_html_table_row_element_set_v_align: |
210 | * @self: A #WebKitDOMHTMLTableRowElement |
211 | * @value: A #gchar |
212 | * |
213 | * |
214 | * Deprecated: 2.22: Use JavaScriptCore API instead |
215 | **/ |
216 | WEBKIT_DEPRECATED void |
217 | webkit_dom_html_table_row_element_set_v_align(WebKitDOMHTMLTableRowElement* self, const gchar* value); |
218 | |
219 | G_END_DECLS |
220 | |
221 | #endif /* WebKitDOMHTMLTableRowElement_h */ |
222 | |