-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibex_html_functions.h
More file actions
executable file
·153 lines (122 loc) · 9.39 KB
/
libex_html_functions.h
File metadata and controls
executable file
·153 lines (122 loc) · 9.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* -------------------------------------------------------------------------- */
/* (c) ali@balarabe.com [libex_html_functions.h] */
/* -------------------------------------------------------------------------- */
#if !defined INCLUDED_LIBEX_HTML_FUNCTIONS_H
#define INCLUDED_LIBEX_HTML_FUNCTIONS_H
#include "libex.h"
#if defined _MSC_VER
#pragma once
#endif
/* -------------------------------------------------------------------------- */
LX_NAMESPACE(lx_c)
/* -------------------------------------------------------------------------- */
/* Functions: Public */
LX_PUBLIC lx_chars_t lx_html_meta_content_type( void ); /*F*/
/* -------------------------------------------------------------------------- */
/* Functions: Public, Allocating */
LX_PUBLIC lx_new_chars_t lx_html_button_back( /*F*/
lx_chars_t href_, /*-*/
lx_chars_t style_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_button_cancel_form_js( void ); /*F*/
LX_PUBLIC lx_new_chars_t lx_html_button_home( void ); /*F*/
LX_PUBLIC lx_new_chars_t lx_html_button_print( /*F*/
lx_chars_t href_, /*-*/
lx_chars_t style_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_button_save_form_js( void ); /*F*/
LX_PUBLIC lx_new_chars_t lx_html_field_checkbox( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
lx_chars_t style_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_date( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
lx_chars_t style_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_date_time( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
lx_chars_t style_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_int( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
lx_chars_t style_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_money( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
lx_chars_t style_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_real( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
lx_chars_t style_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_select( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
lx_chars_t values_, /*-*/
lx_chars_t style_opt_, /*-*/
lx_chars_t alt_name_opt_, /*-*/
lx_chars_t tag_name_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_select_uae( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t style_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_text( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
const int max_len_, /*-*/
lx_chars_t style_opt_, /*-*/
lx_chars_t on_change_code_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_field_text_list( /*F*/
lx_chars_t row_or_value_, /*-*/
lx_chars_t field_name_, /*-*/
lx_chars_t label_, /*-*/
const int max_len_, /*-*/
lx_chars_t style_opt_, /*-*/
lx_chars_t on_change_code_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_header( lx_chars_t content_ ); /*F*/
LX_PUBLIC lx_new_chars_t lx_html_link( /*F*/
lx_chars_t href_, /*-*/
lx_chars_t content_, /*-*/
lx_chars_t class_opt_, /*-*/
lx_chars_t on_click_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_option( /*F*/
lx_chars_t value_, /*-*/
lx_chars_t option_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_script( /*F*/
lx_chars_t script_1_, /*-*/
lx_chars_t script_2_opt_, /*-*/
lx_chars_t script_3_opt_, /*-*/
lx_chars_t script_4_opt_, /*-*/
lx_chars_t script_5_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_style( /*F*/
lx_chars_t style_1_, /*-*/
lx_chars_t style_2_opt_, /*-*/
lx_chars_t style_3_opt_, /*-*/
lx_chars_t style_4_opt_, /*-*/
lx_chars_t style_5_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_table_head( lx_chars_t columns_ ); /*F*/
LX_PUBLIC lx_new_chars_t lx_html_table_row( /*F*/
lx_chars_t column_1_, /*-*/
lx_chars_t column_2_opt_, /*-*/
lx_chars_t column_3_opt_, /*-*/
lx_chars_t column_4_opt_, /*-*/
lx_chars_t column_5_opt_, /*-*/
lx_chars_t column_6_opt_, /*-*/
lx_chars_t column_7_opt_, /*-*/
lx_chars_t column_8_opt_, /*-*/
lx_chars_t column_9_opt_, /*-*/
lx_chars_t column_10_opt_, /*-*/
lx_chars_t column_11_opt_, /*-*/
lx_chars_t column_12_opt_, /*-*/
lx_chars_t column_13_opt_, /*-*/
lx_chars_t column_14_opt_, /*-*/
lx_chars_t column_15_opt_ ); /*-*/
LX_PUBLIC lx_new_chars_t lx_html_title( lx_chars_t title_ ); /*F*/
LX_END_NAMESPACE /*lx_c*/
#endif /*eof*/