libdom
Loading...
Searching...
No Matches
html_area_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 <rsk1access_keyr99@gmail.com>
7 */
8
9#ifndef dom_html_area_element_h_
10#define dom_html_area_element_h_
11
12#include <stdbool.h>
13#include <dom/core/exceptions.h>
14#include <dom/core/string.h>
15
18
20
22 dom_html_area_element *area, dom_string **access_key);
23
25 dom_html_area_element *area, dom_string *access_key);
26
29
32
34 dom_html_area_element *area, dom_string **coords);
35
37 dom_html_area_element *area, dom_string *coords);
38
40 dom_html_area_element *area, dom_string **href);
41
44
46 dom_html_area_element *ele, bool *no_href);
47
49 dom_html_area_element *ele, bool no_href);
50
52 dom_html_area_element *area, dom_string **shape);
53
55 dom_html_area_element *area, dom_string *shape);
56
58 dom_html_area_element *area, int32_t *tab_index);
59
61 dom_html_area_element *area, uint32_t tab_index);
62
64 dom_html_area_element *area, dom_string **target);
65
67 dom_html_area_element *area, dom_string *target);
68
69#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_area_element_get_no_href(dom_html_area_element *ele, bool *no_href)
Definition html_area_element.c:94
dom_exception dom_html_area_element_get_coords(dom_html_area_element *area, dom_string **coords)
dom_exception dom_html_area_element_set_target(dom_html_area_element *area, dom_string *target)
dom_exception dom_html_area_element_set_no_href(dom_html_area_element *ele, bool no_href)
Definition html_area_element.c:108
dom_exception dom_html_area_element_set_access_key(dom_html_area_element *area, dom_string *access_key)
dom_exception dom_html_area_element_get_alt(dom_html_area_element *area, dom_string **alt)
dom_exception dom_html_area_element_get_shape(dom_html_area_element *area, dom_string **shape)
dom_exception dom_html_area_element_get_access_key(dom_html_area_element *area, dom_string **access_key)
dom_exception dom_html_area_element_get_href(dom_html_area_element *area, dom_string **href)
dom_exception dom_html_area_element_set_href(dom_html_area_element *area, dom_string *href)
dom_exception dom_html_area_element_set_shape(dom_html_area_element *area, dom_string *shape)
dom_exception dom_html_area_element_get_tab_index(dom_html_area_element *area, int32_t *tab_index)
Definition html_area_element.c:122
dom_exception dom_html_area_element_set_tab_index(dom_html_area_element *area, uint32_t tab_index)
Definition html_area_element.c:136
dom_exception dom_html_area_element_get_target(dom_html_area_element *area, dom_string **target)
dom_exception dom_html_area_element_set_coords(dom_html_area_element *area, dom_string *coords)
dom_exception dom_html_area_element_set_alt(dom_html_area_element *area, dom_string *alt)
Definition html_area_element.h:16
Definition string.h:19