libdom
Loading...
Searching...
No Matches
html_frame_element.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
6 * Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
7 */
8#ifndef dom_html_frame_element_h_
9#define dom_html_frame_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
14
17
19 dom_html_frame_element *element, dom_string **frame_border);
20
22 dom_html_frame_element *element, dom_string *frame_border);
23
25 dom_html_frame_element *ele, dom_string *long_desc);
26
28 dom_html_frame_element *ele, dom_string **long_desc);
29
31 dom_html_frame_element *element, dom_string **margin_height);
32
34 dom_html_frame_element *element, dom_string *margin_height);
35
37 dom_html_frame_element *element, dom_string **margin_width);
38
40 dom_html_frame_element *element, dom_string *margin_width);
41
43 dom_html_frame_element *element, dom_string **name);
44
46 dom_html_frame_element *element, dom_string *name);
47
49 dom_html_frame_element *element, dom_string **scrolling);
50
52 dom_html_frame_element *element, dom_string *scrolling);
53
55 dom_html_frame_element *element, dom_string **src);
56
58 dom_html_frame_element *element, dom_string *src);
59
61 bool no_resize);
62
64 bool *no_resize);
65
68 dom_document **content_document);
69
70#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_frame_element_get_no_resize(dom_html_frame_element *ele, bool *no_resize)
Definition html_frame_element.c:94
dom_exception dom_html_frame_element_set_margin_height(dom_html_frame_element *element, dom_string *margin_height)
dom_exception dom_html_frame_element_get_content_document(dom_html_frame_element *ele, dom_document **content_document)
Definition html_frame_element.c:223
dom_exception dom_html_frame_element_set_no_resize(dom_html_frame_element *ele, bool no_resize)
Definition html_frame_element.c:108
dom_exception dom_html_frame_element_set_src(dom_html_frame_element *element, dom_string *src)
dom_exception dom_html_frame_element_get_src(dom_html_frame_element *element, dom_string **src)
dom_exception dom_html_frame_element_get_margin_height(dom_html_frame_element *element, dom_string **margin_height)
dom_exception dom_html_frame_element_get_frame_border(dom_html_frame_element *element, dom_string **frame_border)
dom_exception dom_html_frame_element_get_margin_width(dom_html_frame_element *element, dom_string **margin_width)
dom_exception dom_html_frame_element_get_scrolling(dom_html_frame_element *element, dom_string **scrolling)
dom_exception dom_html_frame_element_set_long_desc(dom_html_frame_element *ele, dom_string *long_desc)
dom_exception dom_html_frame_element_set_scrolling(dom_html_frame_element *element, dom_string *scrolling)
dom_exception dom_html_frame_element_set_margin_width(dom_html_frame_element *element, dom_string *margin_width)
dom_exception dom_html_frame_element_set_frame_border(dom_html_frame_element *element, dom_string *frame_border)
dom_exception dom_html_frame_element_get_long_desc(dom_html_frame_element *ele, dom_string **long_desc)
dom_exception dom_html_frame_element_set_name(dom_html_frame_element *element, dom_string *name)
dom_exception dom_html_frame_element_get_name(dom_html_frame_element *element, dom_string **name)
Definition document.h:43
Definition html_frame_element.h:16
Definition string.h:19