libdom
Loading...
Searching...
No Matches
html_button_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_button_element_h_
9#define dom_html_button_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
15
17
20
22 dom_html_button_element *button, dom_string **access_key);
23
25 dom_html_button_element *button, dom_string *access_key);
26
28 dom_html_button_element *button, bool *disabled);
29
31 dom_html_button_element *button, bool disabled);
32
34 dom_html_button_element *button, dom_string **name);
35
37 dom_html_button_element *button, dom_string *name);
38
40 dom_html_button_element *button, int32_t *tab_index);
41
43 dom_html_button_element *button, uint32_t tab_index);
44
46 dom_html_button_element *button, dom_string **type);
47
49 dom_html_button_element *button, dom_string **value);
50
52 dom_html_button_element *button, dom_string *value);
53
54#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_button_element_get_type(dom_html_button_element *button, dom_string **type)
dom_exception dom_html_button_element_get_disabled(dom_html_button_element *button, bool *disabled)
Definition html_button_element.c:99
dom_exception dom_html_button_element_set_disabled(dom_html_button_element *button, bool disabled)
Definition html_button_element.c:113
dom_exception dom_html_button_element_get_value(dom_html_button_element *button, dom_string **value)
dom_exception dom_html_button_element_set_tab_index(dom_html_button_element *button, uint32_t tab_index)
Definition html_button_element.c:236
dom_exception dom_html_button_element_get_name(dom_html_button_element *button, dom_string **name)
dom_exception dom_html_button_element_get_form(dom_html_button_element *button, dom_html_form_element **form)
Definition html_button_element.c:243
dom_exception dom_html_button_element_set_access_key(dom_html_button_element *button, dom_string *access_key)
dom_exception dom_html_button_element_get_tab_index(dom_html_button_element *button, int32_t *tab_index)
Definition html_button_element.c:229
dom_exception dom_html_button_element_set_value(dom_html_button_element *button, dom_string *value)
dom_exception dom_html_button_element_get_access_key(dom_html_button_element *button, dom_string **access_key)
dom_exception dom_html_button_element_set_name(dom_html_button_element *button, dom_string *name)
Definition html_button_element.h:15
struct dom_html_form_element * form
Definition html_button_element.h:18
Definition html_form_element.h:17
Definition string.h:19