libdom
Loading...
Searching...
No Matches
html_body_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 2012 Daniel Silverstone <dsilvers@netsurf-browser.org>
6 */
7
8#ifndef dom_html_body_element_h_
9#define dom_html_body_element_h_
10
11#include <dom/core/exceptions.h>
12#include <dom/core/string.h>
13
15
17 dom_string **a_link);
18
20 dom_string *a_link);
21
23 dom_string **v_link);
24
26 dom_string *v_link);
27
29 dom_string **background);
30
32 dom_string *background);
33
35 dom_string **bg_color);
36
38 dom_string *bg_color);
39
41 dom_string **link);
42
44 dom_string *link);
45
47 dom_string **text);
48
50 dom_string *text);
51
52#endif
53
dom_exception
Definition exceptions.h:24
dom_exception dom_html_body_element_set_link(dom_html_body_element *ele, dom_string *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_get_a_link(dom_html_body_element *ele, dom_string **a_link)
dom_exception dom_html_body_element_get_link(dom_html_body_element *ele, dom_string **link)
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_a_link(dom_html_body_element *ele, dom_string *a_link)
dom_exception dom_html_body_element_set_background(dom_html_body_element *ele, dom_string *background)
dom_exception dom_html_body_element_set_text(dom_html_body_element *ele, dom_string *text)
dom_exception dom_html_body_element_get_background(dom_html_body_element *ele, dom_string **background)
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_text(dom_html_body_element *ele, dom_string **text)
dom_exception dom_html_body_element_set_v_link(dom_html_body_element *ele, dom_string *v_link)
Definition html_body_element.h:15
Definition string.h:19