libdom
Loading...
Searching...
No Matches
html_form_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.com>
6 */
7
8#ifndef dom_html_form_element_h_
9#define dom_html_form_element_h_
10
11#include <dom/core/exceptions.h>
12#include <dom/core/string.h>
13
15
17
19 struct dom_html_collection **col);
21 uint32_t *len);
22
24 dom_html_form_element *ele, dom_string **accept_charset);
25
27 dom_html_form_element *ele, dom_string *accept_charset);
28
30 dom_html_form_element *ele, dom_string **action);
31
33 dom_html_form_element *ele, dom_string *action);
34
36 dom_html_form_element *ele, dom_string **enctype);
37
39 dom_html_form_element *ele, dom_string *enctype);
40
42 dom_html_form_element *ele, dom_string **method);
43
45 dom_html_form_element *ele, dom_string *method);
46
48 dom_html_form_element *ele, dom_string **target);
49
51 dom_html_form_element *ele, dom_string *target);
52
55
56#endif
57
dom_exception
Definition exceptions.h:24
dom_exception dom_html_form_element_set_target(dom_html_form_element *ele, dom_string *target)
dom_exception dom_html_form_element_submit(dom_html_form_element *ele)
Definition html_form_element.c:259
dom_exception dom_html_form_element_set_action(dom_html_form_element *ele, dom_string *action)
dom_exception dom_html_form_element_get_elements(dom_html_form_element *ele, struct dom_html_collection **col)
Definition html_form_element.c:169
dom_exception dom_html_form_element_get_action(dom_html_form_element *ele, dom_string **action)
dom_exception dom_html_form_element_set_accept_charset(dom_html_form_element *ele, dom_string *accept_charset)
dom_exception dom_html_form_element_get_method(dom_html_form_element *ele, dom_string **method)
dom_exception dom_html_form_element_get_length(dom_html_form_element *ele, uint32_t *len)
Definition html_form_element.c:189
dom_exception dom_html_form_element_set_method(dom_html_form_element *ele, dom_string *method)
dom_exception dom_html_form_element_reset(dom_html_form_element *ele)
Definition html_form_element.c:281
dom_exception dom_html_form_element_get_target(dom_html_form_element *ele, dom_string **target)
dom_exception dom_html_form_element_get_enctype(dom_html_form_element *ele, dom_string **enctype)
dom_exception dom_html_form_element_set_enctype(dom_html_form_element *ele, dom_string *enctype)
dom_exception dom_html_form_element_get_accept_charset(dom_html_form_element *ele, dom_string **accept_charset)
Definition html_collection.h:21
Definition html_form_element.h:17
Definition string.h:19