libdom
Loading...
Searching...
No Matches
html_table_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 <rsk1coder99@gmail.com>
7 */
8#ifndef dom_html_table_element_h_
9#define dom_html_table_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
14
19
21
24
27
30
33
36
39
42
44 dom_html_table_element *element, dom_html_collection **t_bodies);
45
47 dom_html_table_element *table, dom_string **align);
48
50 dom_html_table_element *table, dom_string *align);
51
53 dom_html_table_element *table, dom_string **bg_color);
54
56 dom_html_table_element *table, dom_string *bg_color);
57
59 dom_html_table_element *table, dom_string **border);
60
62 dom_html_table_element *table, dom_string *border);
63
65 dom_html_table_element *table, dom_string **cell_padding);
66
68 dom_html_table_element *table, dom_string *cell_padding);
69
71 dom_html_table_element *table, dom_string **cell_spacing);
72
74 dom_html_table_element *table, dom_string *cell_spacing);
75
77 dom_html_table_element *table, dom_string **frame);
78
80 dom_html_table_element *table, dom_string *frame);
81
83 dom_html_table_element *table, dom_string **rules);
84
86 dom_html_table_element *table, dom_string *rules);
87
89 dom_html_table_element *table, dom_string **summary);
90
92 dom_html_table_element *table, dom_string *summary);
93
95 dom_html_table_element *table, dom_string **width);
96
98 dom_html_table_element *table, dom_string *width);
99
101 dom_html_table_element *element,
102 dom_html_element **caption);
103
105 dom_html_table_element *element);
106
108 dom_html_table_element *element,
109 dom_html_element **t_head);
110
112 dom_html_table_element *element);
113
115 dom_html_table_element *element,
116 dom_html_element **t_foot);
117
119 dom_html_table_element *element);
120
122 dom_html_table_element *element,
123 int32_t index, dom_html_element **row_out);
124
126 dom_html_table_element *element,
127 int32_t index);
128
129#endif
130
dom_exception
Definition exceptions.h:24
dom_exception dom_html_table_element_get_bg_color(dom_html_table_element *table, dom_string **bg_color)
dom_exception dom_html_table_element_set_bg_color(dom_html_table_element *table, dom_string *bg_color)
dom_exception dom_html_table_element_get_cell_spacing(dom_html_table_element *table, dom_string **cell_spacing)
dom_exception dom_html_table_element_set_frame(dom_html_table_element *table, dom_string *frame)
dom_exception dom_html_table_element_get_width(dom_html_table_element *table, dom_string **width)
dom_exception dom_html_table_element_set_rules(dom_html_table_element *table, dom_string *rules)
dom_exception dom_html_table_element_set_cell_spacing(dom_html_table_element *table, dom_string *cell_spacing)
dom_exception dom_html_table_element_set_align(dom_html_table_element *table, dom_string *align)
dom_exception dom_html_table_element_create_caption(dom_html_table_element *element, dom_html_element **caption)
Definition html_table_element.c:452
dom_exception dom_html_table_element_get_align(dom_html_table_element *table, dom_string **align)
dom_exception dom_html_table_element_get_border(dom_html_table_element *table, dom_string **border)
dom_exception dom_html_table_element_get_frame(dom_html_table_element *table, dom_string **frame)
dom_exception dom_html_table_element_insert_row(dom_html_table_element *element, int32_t index, dom_html_element **row_out)
Definition html_table_element.c:737
dom_exception dom_html_table_element_get_rules(dom_html_table_element *table, dom_string **rules)
dom_exception dom_html_table_element_get_t_head(dom_html_table_element *element, dom_html_table_section_element **t_head)
Definition html_table_element.c:264
dom_exception dom_html_table_element_delete_t_foot(dom_html_table_element *element)
Definition html_table_element.c:573
dom_exception dom_html_table_element_set_border(dom_html_table_element *table, dom_string *border)
dom_exception dom_html_table_element_set_t_head(dom_html_table_element *element, dom_html_table_section_element *t_head)
Definition html_table_element.c:291
dom_exception dom_html_table_element_get_t_bodies(dom_html_table_element *element, dom_html_collection **t_bodies)
Definition html_table_element.c:436
dom_exception dom_html_table_element_set_cell_padding(dom_html_table_element *table, dom_string *cell_padding)
dom_exception dom_html_table_element_get_summary(dom_html_table_element *table, dom_string **summary)
dom_exception dom_html_table_element_get_t_foot(dom_html_table_element *element, dom_html_table_section_element **t_foot)
Definition html_table_element.c:322
dom_exception dom_html_table_element_delete_t_head(dom_html_table_element *element)
Definition html_table_element.c:650
dom_exception dom_html_table_element_get_cell_padding(dom_html_table_element *table, dom_string **cell_padding)
dom_exception dom_html_table_element_delete_row(dom_html_table_element *element, int32_t index)
Definition html_table_element.c:909
dom_exception dom_html_table_element_get_caption(dom_html_table_element *element, dom_html_table_caption_element **caption)
Definition html_table_element.c:205
dom_exception dom_html_table_element_set_summary(dom_html_table_element *table, dom_string *summary)
dom_exception dom_html_table_element_create_t_head(dom_html_table_element *element, dom_html_element **t_head)
Definition html_table_element.c:601
dom_exception dom_html_table_element_set_width(dom_html_table_element *table, dom_string *width)
dom_exception dom_html_table_element_get_rows(dom_html_table_element *element, dom_html_collection **rows)
Definition html_table_element.c:401
dom_exception dom_html_table_element_delete_caption(dom_html_table_element *element)
Definition html_table_element.c:497
dom_exception dom_html_table_element_set_caption(dom_html_table_element *element, dom_html_table_caption_element *caption)
Definition html_table_element.c:233
dom_exception dom_html_table_element_create_t_foot(dom_html_table_element *element, dom_html_element **t_foot)
Definition html_table_element.c:525
dom_exception dom_html_table_element_set_t_foot(dom_html_table_element *element, dom_html_table_section_element *t_foot)
Definition html_table_element.c:349
Definition html_collection.h:21
Definition html_element.h:22
Definition html_tablecaption_element.h:16
Definition html_table_element.h:15
Definition html_tablesection_element.h:16
Definition string.h:19