WebGUIAPI 1.2604.2808__tar.gz → 1.2604.2810__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2808
3
+ Version: 1.2604.2810
4
4
  Summary: WebGUIAPI Python package
5
5
  Author-email: James Lin <tylin123@ms27.hinet.net>
6
6
  License: Copyright (c) 2025 James Lin
@@ -34,6 +34,10 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2604.2810: 2026/04/28<BR>
38
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
+
40
+
37
41
  Version 1.2604.2808: 2026/04/28<BR>
38
42
  Add TGridLayout
39
43
  Fixed THLayout and TVLayout many problems.
@@ -1,6 +1,10 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2604.2810: 2026/04/28<BR>
5
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
6
+
7
+
4
8
  Version 1.2604.2808: 2026/04/28<BR>
5
9
  Add TGridLayout
6
10
  Fixed THLayout and TVLayout many problems.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2808"
7
+ version = "1.2604.2810"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -0,0 +1,219 @@
1
+ from _typeshed import Incomplete
2
+ from enum import Enum
3
+
4
+ class TButtonShape(Enum):
5
+ Rectangle = 'Rectangle'
6
+ RoundRect = 'RoundRect'
7
+ Circle = 'Circle'
8
+
9
+ class TComponent:
10
+ parent: Incomplete
11
+ children: Incomplete
12
+ def __init__(self, parent=None) -> None: ...
13
+ @property
14
+ def Width(self): ...
15
+ @Width.setter
16
+ def Width(self, v) -> None: ...
17
+ @property
18
+ def Height(self): ...
19
+ @Height.setter
20
+ def Height(self, v) -> None: ...
21
+ @property
22
+ def FontName(self): ...
23
+ @FontName.setter
24
+ def FontName(self, v) -> None: ...
25
+ @property
26
+ def FontSize(self): ...
27
+ @FontSize.setter
28
+ def FontSize(self, v) -> None: ...
29
+ @property
30
+ def FontColor(self): ...
31
+ @FontColor.setter
32
+ def FontColor(self, v) -> None: ...
33
+ @property
34
+ def Color(self): ...
35
+ @Color.setter
36
+ def Color(self, v) -> None: ...
37
+
38
+ class TForm(TComponent):
39
+ url: Incomplete
40
+ is_kiosk: Incomplete
41
+ ui: Incomplete
42
+ def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
43
+ def Kiosk_Mode(self) -> None: ...
44
+ def Show(self, new_tab: bool = False) -> None: ...
45
+ def Close(self) -> None: ...
46
+ @property
47
+ def caption(self): ...
48
+ @caption.setter
49
+ def caption(self, value) -> None: ...
50
+ def onCreate(self) -> None: ...
51
+
52
+ class TStrings:
53
+ def __init__(self, owner, on_change_callback) -> None: ...
54
+ def Add(self, text): ...
55
+ def Clear(self) -> None: ...
56
+ @property
57
+ def Strings(self): ...
58
+
59
+ class TEdit(TComponent):
60
+ onChange: Incomplete
61
+ ui: Incomplete
62
+ def __init__(self, parent=None, text: str = '') -> None: ...
63
+ @property
64
+ def Text(self): ...
65
+ @Text.setter
66
+ def Text(self, v) -> None: ...
67
+ @property
68
+ def ReadOnly(self): ...
69
+ @ReadOnly.setter
70
+ def ReadOnly(self, v: bool): ...
71
+
72
+ class TMemo(TComponent):
73
+ onChange: Incomplete
74
+ ui: Incomplete
75
+ def __init__(self, parent=None, text: str = '') -> None: ...
76
+ @property
77
+ def Lines(self): ...
78
+ @Lines.setter
79
+ def Lines(self, v) -> None: ...
80
+ @property
81
+ def ReadOnly(self): ...
82
+ @ReadOnly.setter
83
+ def ReadOnly(self, v: bool): ...
84
+
85
+ class TRadioButton(TComponent):
86
+ on_click: Incomplete
87
+ ui: Incomplete
88
+ def __init__(self, parent=None, caption: str = 'RadioButton') -> None: ...
89
+ @property
90
+ def Checked(self) -> bool: ...
91
+ @Checked.setter
92
+ def Checked(self, v: bool): ...
93
+ @property
94
+ def caption(self): ...
95
+ @caption.setter
96
+ def caption(self, value) -> None: ...
97
+
98
+ class TGroupBox(TVLayout):
99
+ group_wrapper: Incomplete
100
+ legend: Incomplete
101
+ ui: Incomplete
102
+ def __init__(self, parent=None, caption: str = 'GroupBox') -> None: ...
103
+ @property
104
+ def caption(self): ...
105
+ @caption.setter
106
+ def caption(self, value) -> None: ...
107
+
108
+ class TCheckBox(TComponent):
109
+ onChange: Incomplete
110
+ ui: Incomplete
111
+ def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
112
+ @property
113
+ def Checked(self) -> bool: ...
114
+ @Checked.setter
115
+ def Checked(self, v: bool): ...
116
+ @property
117
+ def caption(self): ...
118
+ @caption.setter
119
+ def caption(self, value) -> None: ...
120
+
121
+ class TListBox(TComponent):
122
+ onClick: Incomplete
123
+ ui: Incomplete
124
+ list_container: Incomplete
125
+ Items: Incomplete
126
+ def __init__(self, parent=None) -> None: ...
127
+ @property
128
+ def ItemIndex(self): ...
129
+ @ItemIndex.setter
130
+ def ItemIndex(self, v) -> None: ...
131
+
132
+ class TLabel(TComponent):
133
+ ui: Incomplete
134
+ def __init__(self, parent=None, caption: str = '') -> None: ...
135
+ @property
136
+ def caption(self): ...
137
+ @caption.setter
138
+ def caption(self, value) -> None: ...
139
+
140
+ class TComboBox(TComponent):
141
+ onChange: Incomplete
142
+ ui: Incomplete
143
+ Items: Incomplete
144
+ def __init__(self, parent=None, items=None) -> None: ...
145
+ @property
146
+ def ItemIndex(self): ...
147
+ @ItemIndex.setter
148
+ def ItemIndex(self, index) -> None: ...
149
+
150
+ class TStringGrid(TComponent):
151
+ ui: Incomplete
152
+ def __init__(self, parent=None, columns=None) -> None: ...
153
+ def set_data(self, rows) -> None: ...
154
+
155
+ class TButton(TComponent):
156
+ onClick: Incomplete
157
+ ui: Incomplete
158
+ def __init__(self, parent=None, caption: str = 'Button') -> None: ...
159
+ @property
160
+ def Shape(self) -> TButtonShape: ...
161
+ @Shape.setter
162
+ def Shape(self, v: TButtonShape): ...
163
+ @property
164
+ def caption(self): ...
165
+ @caption.setter
166
+ def caption(self, value) -> None: ...
167
+
168
+ class TPageControl(TComponent):
169
+ onChange: Incomplete
170
+ onChanging: Incomplete
171
+ pages: Incomplete
172
+ ui: Incomplete
173
+ tab_bar: Incomplete
174
+ tab_panels: Incomplete
175
+ def __init__(self, parent=None) -> None: ...
176
+ @property
177
+ def ActivePageIndex(self): ...
178
+ @ActivePageIndex.setter
179
+ def ActivePageIndex(self, index) -> None: ...
180
+ @property
181
+ def ActivePage(self): ...
182
+ @ActivePage.setter
183
+ def ActivePage(self, page_obj) -> None: ...
184
+
185
+ class TTabSheet(TVLayout):
186
+ tab_header: Incomplete
187
+ panel_ui: Incomplete
188
+ ui: Incomplete
189
+ def __init__(self, page_control: TPageControl, caption: str = 'TabSheet') -> None: ...
190
+ @property
191
+ def caption(self): ...
192
+ @caption.setter
193
+ def caption(self, value) -> None: ...
194
+
195
+ class TVCLLayoutBase(TComponent): ...
196
+
197
+ class THLayout(TVCLLayoutBase):
198
+ ui: Incomplete
199
+ def __init__(self, parent=None) -> None: ...
200
+ def add_child_style(self, child) -> None: ...
201
+
202
+ class TVLayout(TVCLLayoutBase):
203
+ ui: Incomplete
204
+ def __init__(self, parent=None) -> None: ...
205
+ def add_child_style(self, child) -> None: ...
206
+
207
+ class TGridLayout(TVCLLayoutBase):
208
+ ui: Incomplete
209
+ def __init__(self, parent=None) -> None: ...
210
+ @property
211
+ def Cols(self): ...
212
+ @Cols.setter
213
+ def Cols(self, v) -> None: ...
214
+ @property
215
+ def Rows(self): ...
216
+ @Rows.setter
217
+ def Rows(self, v) -> None: ...
218
+ def Grid(self, row, col): ...
219
+ def add_child_style(self, child) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2808
3
+ Version: 1.2604.2810
4
4
  Summary: WebGUIAPI Python package
5
5
  Author-email: James Lin <tylin123@ms27.hinet.net>
6
6
  License: Copyright (c) 2025 James Lin
@@ -34,6 +34,10 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2604.2810: 2026/04/28<BR>
38
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
+
40
+
37
41
  Version 1.2604.2808: 2026/04/28<BR>
38
42
  Add TGridLayout
39
43
  Fixed THLayout and TVLayout many problems.
@@ -1,57 +0,0 @@
1
- from _typeshed import Incomplete
2
- from enum import Enum as Enum
3
-
4
- class TComponent:
5
- parent: Incomplete
6
- children: Incomplete
7
- def __init__(self, parent=None) -> None: ...
8
- @property
9
- def Width(self): ...
10
- @Width.setter
11
- def Width(self, v) -> None: ...
12
- @property
13
- def Height(self): ...
14
- @Height.setter
15
- def Height(self, v) -> None: ...
16
-
17
- class TVCLLayoutBase(TComponent): ...
18
-
19
- class THLayout(TVCLLayoutBase):
20
- ui: Incomplete
21
- def __init__(self, parent=None) -> None: ...
22
- def add_child_style(self, child) -> None: ...
23
-
24
- class TGridLayout(TVCLLayoutBase):
25
- ui: Incomplete
26
- def __init__(self, parent=None) -> None: ...
27
- @property
28
- def Cols(self): ...
29
- @Cols.setter
30
- def Cols(self, v) -> None: ...
31
- @property
32
- def Rows(self): ...
33
- @Rows.setter
34
- def Rows(self, v) -> None: ...
35
- def Grid(self, row, col): ...
36
- def add_child_style(self, child) -> None: ...
37
-
38
- class TStrings:
39
- def __init__(self, owner, on_change_callback) -> None: ...
40
- def Add(self, text): ...
41
- @property
42
- def Strings(self): ...
43
-
44
- class TListBox(TComponent):
45
- onClick: Incomplete
46
- ui: Incomplete
47
- list_container: Incomplete
48
- Items: Incomplete
49
- def __init__(self, parent=None) -> None: ...
50
-
51
- class TComboBox(TComponent):
52
- ui: Incomplete
53
- def __init__(self, parent=None, items=None) -> None: ...
54
-
55
- class TForm:
56
- def __init__(self, url: str = '/', title: str = 'VCL Form') -> None: ...
57
- def onCreate(self) -> None: ...
File without changes