libdom
Loading...
Searching...
No Matches
html_tablecell_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 <rsk1bg_colorr99@gmail.com>
7 */
8
9#ifndef dom_html_table_cell_element_h_
10#define dom_html_table_cell_element_h_
11
12#include <stdbool.h>
13
14#include <dom/inttypes.h>
15#include <dom/core/exceptions.h>
16#include <dom/core/string.h>
17
19
21 dom_html_table_cell_element *table_cell, dom_long *cell_index);
22
24 dom_html_table_cell_element *table_cell, dom_string **abbr);
25
27 dom_html_table_cell_element *table_cell, dom_string *abbr);
28
30 dom_html_table_cell_element *table_cell, dom_string **align);
31
33 dom_html_table_cell_element *table_cell, dom_string *align);
34
36 dom_html_table_cell_element *table_cell, dom_string **axis);
37
39 dom_html_table_cell_element *table_cell, dom_string *axis);
40
42 dom_html_table_cell_element *table_cell, dom_string **bg_color);
43
45 dom_html_table_cell_element *table_cell, dom_string *bg_color);
46
48 dom_html_table_cell_element *table_cell, dom_string **ch);
49
52
54 dom_html_table_cell_element *table_cell, dom_string **ch_off);
55
57 dom_html_table_cell_element *table_cell, dom_string *ch_off);
58
60 dom_html_table_cell_element *table_cell, dom_string **headers);
61
63 dom_html_table_cell_element *table_cell, dom_string *headers);
64
66 dom_html_table_cell_element *table_cell, dom_string **height);
67
69 dom_html_table_cell_element *table_cell, dom_string *height);
70
72 dom_html_table_cell_element *table_cell, dom_string **scope);
73
75 dom_html_table_cell_element *table_cell, dom_string *scope);
76
78 dom_html_table_cell_element *table_cell, dom_string **v_align);
79
81 dom_html_table_cell_element *table_cell, dom_string *v_align);
82
84 dom_html_table_cell_element *table_cell, dom_string **width);
85
87 dom_html_table_cell_element *table_cell, dom_string *width);
88
90 dom_html_table_cell_element *table_cell, dom_ulong *col_span);
91
93 dom_html_table_cell_element *table_cell, dom_ulong col_span);
94
96 dom_html_table_cell_element *table_cell, dom_ulong *row_span);
97
99 dom_html_table_cell_element *table_cell, dom_ulong row_span);
100
102 dom_html_table_cell_element *ele, bool *no_wrap);
103
105 dom_html_table_cell_element *ele, bool no_wrap);
106
107#endif
108
dom_exception
Definition exceptions.h:24
dom_exception dom_html_table_cell_element_set_v_align(dom_html_table_cell_element *table_cell, dom_string *v_align)
dom_exception dom_html_table_cell_element_set_row_span(dom_html_table_cell_element *table_cell, dom_ulong row_span)
Definition html_tablecell_element.c:308
dom_exception dom_html_table_cell_element_set_headers(dom_html_table_cell_element *table_cell, dom_string *headers)
dom_exception dom_html_table_cell_element_set_ch_off(dom_html_table_cell_element *table_cell, dom_string *ch_off)
dom_exception dom_html_table_cell_element_get_ch(dom_html_table_cell_element *table_cell, dom_string **ch)
dom_exception dom_html_table_cell_element_get_abbr(dom_html_table_cell_element *table_cell, dom_string **abbr)
dom_exception dom_html_table_cell_element_set_bg_color(dom_html_table_cell_element *table_cell, dom_string *bg_color)
dom_exception dom_html_table_cell_element_set_width(dom_html_table_cell_element *table_cell, dom_string *width)
dom_exception dom_html_table_cell_element_set_abbr(dom_html_table_cell_element *table_cell, dom_string *abbr)
dom_exception dom_html_table_cell_element_get_axis(dom_html_table_cell_element *table_cell, dom_string **axis)
dom_exception dom_html_table_cell_element_set_scope(dom_html_table_cell_element *table_cell, dom_string *scope)
dom_exception dom_html_table_cell_element_set_align(dom_html_table_cell_element *table_cell, dom_string *align)
dom_exception dom_html_table_cell_element_get_row_span(dom_html_table_cell_element *table_cell, dom_ulong *row_span)
Definition html_tablecell_element.c:294
dom_exception dom_html_table_cell_element_get_headers(dom_html_table_cell_element *table_cell, dom_string **headers)
dom_exception dom_html_table_cell_element_get_align(dom_html_table_cell_element *table_cell, dom_string **align)
dom_exception dom_html_table_cell_element_set_ch(dom_html_table_cell_element *table_cell, dom_string *ch)
dom_exception dom_html_table_cell_element_get_cell_index(dom_html_table_cell_element *table_cell, dom_long *cell_index)
Definition html_tablecell_element.c:207
dom_exception dom_html_table_cell_element_get_width(dom_html_table_cell_element *table_cell, dom_string **width)
dom_exception dom_html_table_cell_element_get_ch_off(dom_html_table_cell_element *table_cell, dom_string **ch_off)
dom_exception dom_html_table_cell_element_get_v_align(dom_html_table_cell_element *table_cell, dom_string **v_align)
dom_exception dom_html_table_cell_element_set_height(dom_html_table_cell_element *table_cell, dom_string *height)
dom_exception dom_html_table_cell_element_set_axis(dom_html_table_cell_element *table_cell, dom_string *axis)
dom_exception dom_html_table_cell_element_set_no_wrap(dom_html_table_cell_element *ele, bool no_wrap)
Definition html_tablecell_element.c:336
dom_exception dom_html_table_cell_element_set_col_span(dom_html_table_cell_element *table_cell, dom_ulong col_span)
Definition html_tablecell_element.c:280
dom_exception dom_html_table_cell_element_get_col_span(dom_html_table_cell_element *table_cell, dom_ulong *col_span)
Definition html_tablecell_element.c:266
dom_exception dom_html_table_cell_element_get_no_wrap(dom_html_table_cell_element *ele, bool *no_wrap)
Definition html_tablecell_element.c:322
dom_exception dom_html_table_cell_element_get_height(dom_html_table_cell_element *table_cell, dom_string **height)
dom_exception dom_html_table_cell_element_get_scope(dom_html_table_cell_element *table_cell, dom_string **scope)
dom_exception dom_html_table_cell_element_get_bg_color(dom_html_table_cell_element *table_cell, dom_string **bg_color)
int32_t dom_long
Definition inttypes.h:26
uint32_t dom_ulong
Definition inttypes.h:31
Definition html_tablecell_element.h:16
Definition string.h:19