libdom
Loading...
Searching...
No Matches
html_anchor_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
9#ifndef dom_html_anchor_element_h_
10#define dom_html_anchor_element_h_
11
12#include <stdbool.h>
13#include <dom/core/exceptions.h>
14#include <dom/core/string.h>
15
17
18
20 dom_html_anchor_element *anchor, dom_string **access_key);
21
23 dom_html_anchor_element *anchor, dom_string *access_key);
24
26 dom_html_anchor_element *anchor, dom_string **charset);
27
29 dom_html_anchor_element *anchor, dom_string *charset);
30
32 dom_html_anchor_element *anchor, dom_string **coords);
33
35 dom_html_anchor_element *anchor, dom_string *coords);
36
38 dom_html_anchor_element *anchor, dom_string **href);
39
41 dom_html_anchor_element *anchor, dom_string *href);
42
44 dom_html_anchor_element *anchor, dom_string **hreflang);
45
47 dom_html_anchor_element *anchor, dom_string *hreflang);
48
50 dom_html_anchor_element *anchor, dom_string **name);
51
53 dom_html_anchor_element *anchor, dom_string *name);
54
56 dom_html_anchor_element *anchor, dom_string **rel);
57
60
62 dom_html_anchor_element *anchor, dom_string **rev);
63
66
68 dom_html_anchor_element *anchor, dom_string **shape);
69
71 dom_html_anchor_element *anchor, dom_string *shape);
72
74 dom_html_anchor_element *anchor, dom_string **target);
75
77 dom_html_anchor_element *anchor, dom_string *target);
78
80 dom_html_anchor_element *anchor, dom_string **type);
81
83 dom_html_anchor_element *anchor, dom_string *type);
84
86 dom_html_anchor_element *anchor, int32_t *tab_index);
87
89 dom_html_anchor_element *anchor, uint32_t tab_index);
90
93
94#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_anchor_element_get_coords(dom_html_anchor_element *anchor, dom_string **coords)
dom_exception dom_html_anchor_element_get_shape(dom_html_anchor_element *anchor, dom_string **shape)
dom_exception dom_html_anchor_element_get_type(dom_html_anchor_element *anchor, dom_string **type)
dom_exception dom_html_anchor_element_set_charset(dom_html_anchor_element *anchor, dom_string *charset)
dom_exception dom_html_anchor_element_get_rel(dom_html_anchor_element *anchor, dom_string **rel)
dom_exception dom_html_anchor_element_set_tab_index(dom_html_anchor_element *anchor, uint32_t tab_index)
Definition html_anchor_element.c:207
dom_exception dom_html_anchor_element_set_shape(dom_html_anchor_element *anchor, dom_string *shape)
dom_exception dom_html_anchor_element_get_target(dom_html_anchor_element *anchor, dom_string **target)
dom_exception dom_html_anchor_element_get_name(dom_html_anchor_element *anchor, dom_string **name)
dom_exception dom_html_anchor_element_get_hreflang(dom_html_anchor_element *anchor, dom_string **hreflang)
dom_exception dom_html_anchor_element_set_name(dom_html_anchor_element *anchor, dom_string *name)
dom_exception dom_html_anchor_element_set_type(dom_html_anchor_element *anchor, dom_string *type)
dom_exception dom_html_anchor_element_set_hreflang(dom_html_anchor_element *anchor, dom_string *hreflang)
dom_exception dom_html_anchor_element_set_rel(dom_html_anchor_element *anchor, dom_string *rel)
dom_exception dom_html_anchor_element_get_access_key(dom_html_anchor_element *anchor, dom_string **access_key)
dom_exception dom_html_anchor_element_set_access_key(dom_html_anchor_element *anchor, dom_string *access_key)
dom_exception dom_html_anchor_element_get_rev(dom_html_anchor_element *anchor, dom_string **rev)
dom_exception dom_html_anchor_element_get_href(dom_html_anchor_element *anchor, dom_string **href)
dom_exception dom_html_anchor_element_focus(dom_html_anchor_element *ele)
Definition html_anchor_element.c:241
dom_exception dom_html_anchor_element_get_charset(dom_html_anchor_element *anchor, dom_string **charset)
dom_exception dom_html_anchor_element_get_tab_index(dom_html_anchor_element *anchor, int32_t *tab_index)
Definition html_anchor_element.c:200
dom_exception dom_html_anchor_element_set_target(dom_html_anchor_element *anchor, dom_string *target)
dom_exception dom_html_anchor_element_set_coords(dom_html_anchor_element *anchor, dom_string *coords)
dom_exception dom_html_anchor_element_set_rev(dom_html_anchor_element *anchor, dom_string *rev)
dom_exception dom_html_anchor_element_set_href(dom_html_anchor_element *anchor, dom_string *href)
dom_exception dom_html_anchor_element_blur(dom_html_anchor_element *ele)
Definition html_anchor_element.c:221
Definition html_anchor_element.h:16
Definition string.h:19