summaryrefslogtreecommitdiff
path: root/include/dom/html/html_body_element.h
blob: febd285bd645f05c921ed7bc76b89242342ee9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
 * This file is part of libdom.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2012 Daniel Silverstone <dsilvers@netsurf-browser.org>
 */

#ifndef dom_html_body_element_h_
#define dom_html_body_element_h_

#include <dom/core/exceptions.h>
#include <dom/core/string.h>

typedef struct dom_html_body_element dom_html_body_element;

dom_exception dom_html_body_element_get_a_link(dom_html_body_element *ele,
		dom_string **a_link);

dom_exception dom_html_body_element_set_a_link(dom_html_body_element *ele,
		dom_string *a_link);

dom_exception dom_html_body_element_get_v_link(dom_html_body_element *ele,
		dom_string **v_link);

dom_exception dom_html_body_element_set_v_link(dom_html_body_element *ele,
		dom_string *v_link);

dom_exception dom_html_body_element_get_background(dom_html_body_element *ele,
		dom_string **background);

dom_exception dom_html_body_element_set_background(dom_html_body_element *ele,
		dom_string *background);

dom_exception dom_html_body_element_get_bg_color(dom_html_body_element *ele,
		dom_string **bg_color);

dom_exception dom_html_body_element_set_bg_color(dom_html_body_element *ele,
		dom_string *bg_color);

dom_exception dom_html_body_element_get_link(dom_html_body_element *ele,
		dom_string **link);

dom_exception dom_html_body_element_set_link(dom_html_body_element *ele,
		dom_string *link);

dom_exception dom_html_body_element_get_text(dom_html_body_element *ele,
		dom_string **text);

dom_exception dom_html_body_element_set_text(dom_html_body_element *ele,
		dom_string *text);

#endif