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 WebKitDOMHTMLFrameElement_h
25#define WebKitDOMHTMLFrameElement_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_FRAME_ELEMENT (webkit_dom_html_frame_element_get_type())
34#define WEBKIT_DOM_HTML_FRAME_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_HTML_FRAME_ELEMENT, WebKitDOMHTMLFrameElement))
35#define WEBKIT_DOM_HTML_FRAME_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), WEBKIT_DOM_TYPE_HTML_FRAME_ELEMENT, WebKitDOMHTMLFrameElementClass)
36#define WEBKIT_DOM_IS_HTML_FRAME_ELEMENT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_HTML_FRAME_ELEMENT))
37#define WEBKIT_DOM_IS_HTML_FRAME_ELEMENT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), WEBKIT_DOM_TYPE_HTML_FRAME_ELEMENT))
38#define WEBKIT_DOM_HTML_FRAME_ELEMENT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), WEBKIT_DOM_TYPE_HTML_FRAME_ELEMENT, WebKitDOMHTMLFrameElementClass))
39
40struct _WebKitDOMHTMLFrameElement {
41 WebKitDOMHTMLElement parent_instance;
42};
43
44struct _WebKitDOMHTMLFrameElementClass {
45 WebKitDOMHTMLElementClass parent_class;
46};
47
48WEBKIT_DEPRECATED GType
49webkit_dom_html_frame_element_get_type(void);
50
51/**
52 * webkit_dom_html_frame_element_get_frame_border:
53 * @self: A #WebKitDOMHTMLFrameElement
54 *
55 * Returns: A #gchar
56 *
57 * Deprecated: 2.22: Use JavaScriptCore API instead
58**/
59WEBKIT_DEPRECATED gchar*
60webkit_dom_html_frame_element_get_frame_border(WebKitDOMHTMLFrameElement* self);
61
62/**
63 * webkit_dom_html_frame_element_set_frame_border:
64 * @self: A #WebKitDOMHTMLFrameElement
65 * @value: A #gchar
66 *
67 *
68 * Deprecated: 2.22: Use JavaScriptCore API instead
69**/
70WEBKIT_DEPRECATED void
71webkit_dom_html_frame_element_set_frame_border(WebKitDOMHTMLFrameElement* self, const gchar* value);
72
73/**
74 * webkit_dom_html_frame_element_get_long_desc:
75 * @self: A #WebKitDOMHTMLFrameElement
76 *
77 * Returns: A #gchar
78 *
79 * Deprecated: 2.22: Use JavaScriptCore API instead
80**/
81WEBKIT_DEPRECATED gchar*
82webkit_dom_html_frame_element_get_long_desc(WebKitDOMHTMLFrameElement* self);
83
84/**
85 * webkit_dom_html_frame_element_set_long_desc:
86 * @self: A #WebKitDOMHTMLFrameElement
87 * @value: A #gchar
88 *
89 *
90 * Deprecated: 2.22: Use JavaScriptCore API instead
91**/
92WEBKIT_DEPRECATED void
93webkit_dom_html_frame_element_set_long_desc(WebKitDOMHTMLFrameElement* self, const gchar* value);
94
95/**
96 * webkit_dom_html_frame_element_get_margin_height:
97 * @self: A #WebKitDOMHTMLFrameElement
98 *
99 * Returns: A #gchar
100 *
101 * Deprecated: 2.22: Use JavaScriptCore API instead
102**/
103WEBKIT_DEPRECATED gchar*
104webkit_dom_html_frame_element_get_margin_height(WebKitDOMHTMLFrameElement* self);
105
106/**
107 * webkit_dom_html_frame_element_set_margin_height:
108 * @self: A #WebKitDOMHTMLFrameElement
109 * @value: A #gchar
110 *
111 *
112 * Deprecated: 2.22: Use JavaScriptCore API instead
113**/
114WEBKIT_DEPRECATED void
115webkit_dom_html_frame_element_set_margin_height(WebKitDOMHTMLFrameElement* self, const gchar* value);
116
117/**
118 * webkit_dom_html_frame_element_get_margin_width:
119 * @self: A #WebKitDOMHTMLFrameElement
120 *
121 * Returns: A #gchar
122 *
123 * Deprecated: 2.22: Use JavaScriptCore API instead
124**/
125WEBKIT_DEPRECATED gchar*
126webkit_dom_html_frame_element_get_margin_width(WebKitDOMHTMLFrameElement* self);
127
128/**
129 * webkit_dom_html_frame_element_set_margin_width:
130 * @self: A #WebKitDOMHTMLFrameElement
131 * @value: A #gchar
132 *
133 *
134 * Deprecated: 2.22: Use JavaScriptCore API instead
135**/
136WEBKIT_DEPRECATED void
137webkit_dom_html_frame_element_set_margin_width(WebKitDOMHTMLFrameElement* self, const gchar* value);
138
139/**
140 * webkit_dom_html_frame_element_get_name:
141 * @self: A #WebKitDOMHTMLFrameElement
142 *
143 * Returns: A #gchar
144 *
145 * Deprecated: 2.22: Use JavaScriptCore API instead
146**/
147WEBKIT_DEPRECATED gchar*
148webkit_dom_html_frame_element_get_name(WebKitDOMHTMLFrameElement* self);
149
150/**
151 * webkit_dom_html_frame_element_set_name:
152 * @self: A #WebKitDOMHTMLFrameElement
153 * @value: A #gchar
154 *
155 *
156 * Deprecated: 2.22: Use JavaScriptCore API instead
157**/
158WEBKIT_DEPRECATED void
159webkit_dom_html_frame_element_set_name(WebKitDOMHTMLFrameElement* self, const gchar* value);
160
161/**
162 * webkit_dom_html_frame_element_get_no_resize:
163 * @self: A #WebKitDOMHTMLFrameElement
164 *
165 * Returns: A #gboolean
166 *
167 * Deprecated: 2.22: Use JavaScriptCore API instead
168**/
169WEBKIT_DEPRECATED gboolean
170webkit_dom_html_frame_element_get_no_resize(WebKitDOMHTMLFrameElement* self);
171
172/**
173 * webkit_dom_html_frame_element_set_no_resize:
174 * @self: A #WebKitDOMHTMLFrameElement
175 * @value: A #gboolean
176 *
177 *
178 * Deprecated: 2.22: Use JavaScriptCore API instead
179**/
180WEBKIT_DEPRECATED void
181webkit_dom_html_frame_element_set_no_resize(WebKitDOMHTMLFrameElement* self, gboolean value);
182
183/**
184 * webkit_dom_html_frame_element_get_scrolling:
185 * @self: A #WebKitDOMHTMLFrameElement
186 *
187 * Returns: A #gchar
188 *
189 * Deprecated: 2.22: Use JavaScriptCore API instead
190**/
191WEBKIT_DEPRECATED gchar*
192webkit_dom_html_frame_element_get_scrolling(WebKitDOMHTMLFrameElement* self);
193
194/**
195 * webkit_dom_html_frame_element_set_scrolling:
196 * @self: A #WebKitDOMHTMLFrameElement
197 * @value: A #gchar
198 *
199 *
200 * Deprecated: 2.22: Use JavaScriptCore API instead
201**/
202WEBKIT_DEPRECATED void
203webkit_dom_html_frame_element_set_scrolling(WebKitDOMHTMLFrameElement* self, const gchar* value);
204
205/**
206 * webkit_dom_html_frame_element_get_src:
207 * @self: A #WebKitDOMHTMLFrameElement
208 *
209 * Returns: A #gchar
210 *
211 * Deprecated: 2.22: Use JavaScriptCore API instead
212**/
213WEBKIT_DEPRECATED gchar*
214webkit_dom_html_frame_element_get_src(WebKitDOMHTMLFrameElement* self);
215
216/**
217 * webkit_dom_html_frame_element_set_src:
218 * @self: A #WebKitDOMHTMLFrameElement
219 * @value: A #gchar
220 *
221 *
222 * Deprecated: 2.22: Use JavaScriptCore API instead
223**/
224WEBKIT_DEPRECATED void
225webkit_dom_html_frame_element_set_src(WebKitDOMHTMLFrameElement* self, const gchar* value);
226
227/**
228 * webkit_dom_html_frame_element_get_content_document:
229 * @self: A #WebKitDOMHTMLFrameElement
230 *
231 * Returns: (transfer none): A #WebKitDOMDocument
232 *
233 * Deprecated: 2.22: Use JavaScriptCore API instead
234**/
235WEBKIT_DEPRECATED WebKitDOMDocument*
236webkit_dom_html_frame_element_get_content_document(WebKitDOMHTMLFrameElement* self);
237
238/**
239 * webkit_dom_html_frame_element_get_content_window:
240 * @self: A #WebKitDOMHTMLFrameElement
241 *
242 * Returns: (transfer full): A #WebKitDOMDOMWindow
243 *
244 * Deprecated: 2.22: Use JavaScriptCore API instead
245**/
246WEBKIT_DEPRECATED WebKitDOMDOMWindow*
247webkit_dom_html_frame_element_get_content_window(WebKitDOMHTMLFrameElement* self);
248
249/**
250 * webkit_dom_html_frame_element_get_width:
251 * @self: A #WebKitDOMHTMLFrameElement
252 *
253 * Returns: A #glong
254 *
255 * Deprecated: 2.22: Use JavaScriptCore API instead
256**/
257WEBKIT_DEPRECATED glong
258webkit_dom_html_frame_element_get_width(WebKitDOMHTMLFrameElement* self);
259
260/**
261 * webkit_dom_html_frame_element_get_height:
262 * @self: A #WebKitDOMHTMLFrameElement
263 *
264 * Returns: A #glong
265 *
266 * Deprecated: 2.22: Use JavaScriptCore API instead
267**/
268WEBKIT_DEPRECATED glong
269webkit_dom_html_frame_element_get_height(WebKitDOMHTMLFrameElement* self);
270
271G_END_DECLS
272
273#endif /* WebKitDOMHTMLFrameElement_h */
274