libdom
Loading...
Searching...
No Matches
html_label_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 */
7
8#ifndef dom_html_label_element_h_
9#define dom_html_label_element_h_
10
11#include <stdbool.h>
12
13#include <dom/core/exceptions.h>
14
16
18
20 dom_html_label_element *ele, dom_string **access_key);
22 dom_html_label_element *ele, dom_string *access_key);
23
25 dom_html_label_element *ele, dom_string **html_for);
27 dom_html_label_element *ele, dom_string *html_for);
28
31
32#endif
33
dom_exception
Definition exceptions.h:24
dom_exception dom_html_label_element_get_access_key(dom_html_label_element *ele, dom_string **access_key)
dom_exception dom_html_label_element_set_html_for(dom_html_label_element *ele, dom_string *html_for)
dom_exception dom_html_label_element_get_html_for(dom_html_label_element *ele, dom_string **html_for)
dom_exception dom_html_label_element_set_access_key(dom_html_label_element *ele, dom_string *access_key)
dom_exception dom_html_label_element_get_form(dom_html_label_element *ele, dom_html_form_element **form)
Definition html_label_element.c:152
Definition html_form_element.h:17
Definition html_label_element.h:16
Definition string.h:19