libdom
Loading...
Searching...
No Matches
html_opt_group_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_opt_group_element_h_
9#define dom_html_opt_group_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_opt_group_element *opt_group, bool *disabled);
23
25 dom_html_opt_group_element *opt_group, bool disabled);
26
28 dom_html_opt_group_element *opt_group, dom_string **label);
29
31 dom_html_opt_group_element *opt_group, dom_string *label);
32
33#endif
dom_exception
Definition exceptions.h:24
dom_exception dom_html_opt_group_element_set_disabled(dom_html_opt_group_element *opt_group, bool disabled)
Definition html_opt_group_element.c:111
dom_exception dom_html_opt_group_element_set_label(dom_html_opt_group_element *opt_group, dom_string *label)
dom_exception dom_html_opt_group_element_get_form(dom_html_opt_group_element *opt_group, dom_html_form_element **form)
dom_exception dom_html_opt_group_element_get_label(dom_html_opt_group_element *opt_group, dom_string **label)
dom_exception dom_html_opt_group_element_get_disabled(dom_html_opt_group_element *opt_group, bool *disabled)
Definition html_opt_group_element.c:97
Definition html_form_element.h:17
Definition html_opt_group_element.h:15
Definition string.h:19