WebGUIAPI 1.2604.2810__tar.gz → 1.2604.2812__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.2810
3
+ Version: 1.2604.2812
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.2811: 2026/04/28<BR>
38
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
+
40
+
37
41
  Version 1.2604.2810: 2026/04/28<BR>
38
42
  Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
43
 
@@ -1,6 +1,10 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2604.2811: 2026/04/28<BR>
5
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
6
+
7
+
4
8
  Version 1.2604.2810: 2026/04/28<BR>
5
9
  Add TPageControl, TGroupBox, TRadioButton, TCheckBox
6
10
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2810"
7
+ version = "1.2604.2812"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -1,24 +1,11 @@
1
1
  from _typeshed import Incomplete
2
2
  from enum import Enum
3
3
 
4
- class TButtonShape(Enum):
5
- Rectangle = 'Rectangle'
6
- RoundRect = 'RoundRect'
7
- Circle = 'Circle'
8
-
9
4
  class TComponent:
10
5
  parent: Incomplete
11
6
  children: Incomplete
12
7
  def __init__(self, parent=None) -> None: ...
13
8
  @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
9
  def FontName(self): ...
23
10
  @FontName.setter
24
11
  def FontName(self, v) -> None: ...
@@ -34,10 +21,19 @@ class TComponent:
34
21
  def Color(self): ...
35
22
  @Color.setter
36
23
  def Color(self, v) -> None: ...
24
+ @property
25
+ def Width(self): ...
26
+ @Width.setter
27
+ def Width(self, v) -> None: ...
28
+ @property
29
+ def Height(self): ...
30
+ @Height.setter
31
+ def Height(self, v) -> None: ...
37
32
 
38
- class TForm(TComponent):
33
+ class TForm:
39
34
  url: Incomplete
40
35
  is_kiosk: Incomplete
36
+ children: Incomplete
41
37
  ui: Incomplete
42
38
  def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
43
39
  def Kiosk_Mode(self) -> None: ...
@@ -49,98 +45,56 @@ class TForm(TComponent):
49
45
  def caption(self, value) -> None: ...
50
46
  def onCreate(self) -> None: ...
51
47
 
52
- class TStrings:
53
- def __init__(self, owner, on_change_callback) -> None: ...
54
- def Add(self, text): ...
55
- def Clear(self) -> None: ...
48
+ class TLabel(TComponent):
49
+ ui: Incomplete
50
+ def __init__(self, parent=None, caption: str = '') -> None: ...
56
51
  @property
57
- def Strings(self): ...
52
+ def caption(self): ...
53
+ @caption.setter
54
+ def caption(self, value) -> None: ...
58
55
 
59
56
  class TEdit(TComponent):
60
57
  onChange: Incomplete
61
58
  ui: Incomplete
62
59
  def __init__(self, parent=None, text: str = '') -> None: ...
63
60
  @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): ...
61
+ def text(self): ...
62
+ @text.setter
63
+ def text(self, value) -> None: ...
71
64
 
72
65
  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
66
  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: ...
67
+ def __init__(self, parent=None) -> None: ...
97
68
 
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: ...
69
+ class TButtonShape(Enum):
70
+ Rectangle = 'Rectangle'
71
+ RoundRect = 'RoundRect'
72
+ Circle = 'Circle'
107
73
 
108
- class TCheckBox(TComponent):
109
- onChange: Incomplete
74
+ class TButton(TComponent):
75
+ onClick: Incomplete
110
76
  ui: Incomplete
111
- def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
77
+ def __init__(self, parent=None, caption: str = 'Button') -> None: ...
112
78
  @property
113
- def Checked(self) -> bool: ...
114
- @Checked.setter
115
- def Checked(self, v: bool): ...
79
+ def Shape(self) -> TButtonShape: ...
80
+ @Shape.setter
81
+ def Shape(self, v: TButtonShape): ...
116
82
  @property
117
83
  def caption(self): ...
118
84
  @caption.setter
119
85
  def caption(self, value) -> None: ...
120
86
 
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):
87
+ class TCheckBox(TComponent):
133
88
  ui: Incomplete
134
89
  def __init__(self, parent=None, caption: str = '') -> None: ...
135
90
  @property
136
- def caption(self): ...
137
- @caption.setter
138
- def caption(self, value) -> None: ...
91
+ def checked(self): ...
92
+ @checked.setter
93
+ def checked(self, value) -> None: ...
139
94
 
140
95
  class TComboBox(TComponent):
141
96
  onChange: Incomplete
142
97
  ui: Incomplete
143
- Items: Incomplete
144
98
  def __init__(self, parent=None, items=None) -> None: ...
145
99
  @property
146
100
  def ItemIndex(self): ...
@@ -152,18 +106,111 @@ class TStringGrid(TComponent):
152
106
  def __init__(self, parent=None, columns=None) -> None: ...
153
107
  def set_data(self, rows) -> None: ...
154
108
 
155
- class TButton(TComponent):
156
- onClick: Incomplete
109
+ class TPanel(TComponent):
157
110
  ui: Incomplete
158
- def __init__(self, parent=None, caption: str = 'Button') -> None: ...
111
+ def __init__(self, parent=None, width=None, height=None) -> None: ...
159
112
  @property
160
- def Shape(self) -> TButtonShape: ...
161
- @Shape.setter
162
- def Shape(self, v: TButtonShape): ...
113
+ def Width(self): ...
114
+ @Width.setter
115
+ def Width(self, value) -> None: ...
163
116
  @property
164
- def caption(self): ...
165
- @caption.setter
166
- def caption(self, value) -> None: ...
117
+ def Height(self): ...
118
+ @Height.setter
119
+ def Height(self, value) -> None: ...
120
+ @property
121
+ def Color(self): ...
122
+ @Color.setter
123
+ def Color(self, value) -> None: ...
124
+ @property
125
+ def Image(self): ...
126
+ @Image.setter
127
+ def Image(self, src) -> None: ...
128
+
129
+ class TImage(TComponent):
130
+ Align: Incomplete
131
+ Stretch: bool
132
+ ui: Incomplete
133
+ def __init__(self, parent=None, src: str = '', width=None, height=None) -> None: ...
134
+ def LoadImage(self, src) -> None: ...
135
+ @property
136
+ def Width(self): ...
137
+ @Width.setter
138
+ def Width(self, value) -> None: ...
139
+ @property
140
+ def Height(self): ...
141
+ @Height.setter
142
+ def Height(self, value) -> None: ...
143
+
144
+ class TTimer:
145
+ interval: Incomplete
146
+ onTimer: Incomplete
147
+ enabled: bool
148
+ def __init__(self, interval: float = 1.0) -> None: ...
149
+ def start(self) -> None: ...
150
+ def stop(self) -> None: ...
151
+
152
+ class TVCLLayoutBase(TComponent):
153
+ def __init__(self, parent=None) -> None: ...
154
+ @property
155
+ def Width(self): ...
156
+ @Width.setter
157
+ def Width(self, value) -> None: ...
158
+ @property
159
+ def Height(self): ...
160
+ @Height.setter
161
+ def Height(self, value) -> None: ...
162
+ @property
163
+ def Color(self): ...
164
+ @Color.setter
165
+ def Color(self, value) -> None: ...
166
+
167
+ class THLayout(TVCLLayoutBase):
168
+ ui: Incomplete
169
+ def __init__(self, parent=None) -> None: ...
170
+ def add_child_style(self, child) -> None: ...
171
+
172
+ class TVLayout(TVCLLayoutBase):
173
+ ui: Incomplete
174
+ def __init__(self, parent=None) -> None: ...
175
+ def add_child_style(self, child) -> None: ...
176
+
177
+ class TGridLayout(TVCLLayoutBase):
178
+ ui: Incomplete
179
+ def __init__(self, parent=None) -> None: ...
180
+ @property
181
+ def Cols(self): ...
182
+ @Cols.setter
183
+ def Cols(self, v) -> None: ...
184
+ @property
185
+ def Rows(self): ...
186
+ @Rows.setter
187
+ def Rows(self, v) -> None: ...
188
+ def Grid(self, row, col): ...
189
+ def add_child_style(self, child) -> None: ...
190
+
191
+ class TFrame(TComponent):
192
+ ui: Incomplete
193
+ def __init__(self, parent=None) -> None: ...
194
+ def onCreate(self) -> None: ...
195
+
196
+ class TStrings:
197
+ def __init__(self, owner, on_change_callback) -> None: ...
198
+ def Add(self, text): ...
199
+ def Delete(self, index) -> None: ...
200
+ def Clear(self) -> None: ...
201
+ @property
202
+ def Strings(self): ...
203
+
204
+ class TListBox(TComponent):
205
+ onClick: Incomplete
206
+ ui: Incomplete
207
+ list_container: Incomplete
208
+ Items: Incomplete
209
+ def __init__(self, parent=None) -> None: ...
210
+ @property
211
+ def ItemIndex(self): ...
212
+ @ItemIndex.setter
213
+ def ItemIndex(self, index) -> None: ...
167
214
 
168
215
  class TPageControl(TComponent):
169
216
  onChange: Incomplete
@@ -192,28 +239,38 @@ class TTabSheet(TVLayout):
192
239
  @caption.setter
193
240
  def caption(self, value) -> None: ...
194
241
 
195
- class TVCLLayoutBase(TComponent): ...
196
-
197
- class THLayout(TVCLLayoutBase):
242
+ class TRadioButton(TComponent):
243
+ on_click: Incomplete
198
244
  ui: Incomplete
199
- def __init__(self, parent=None) -> None: ...
200
- def add_child_style(self, child) -> None: ...
245
+ def __init__(self, parent=None, caption: str = 'RadioButton') -> None: ...
246
+ @property
247
+ def Checked(self) -> bool: ...
248
+ @Checked.setter
249
+ def Checked(self, v: bool): ...
250
+ @property
251
+ def caption(self): ...
252
+ @caption.setter
253
+ def caption(self, value) -> None: ...
201
254
 
202
- class TVLayout(TVCLLayoutBase):
255
+ class TGroupBox(TVLayout):
256
+ group_wrapper: Incomplete
257
+ legend: Incomplete
203
258
  ui: Incomplete
204
- def __init__(self, parent=None) -> None: ...
205
- def add_child_style(self, child) -> None: ...
259
+ def __init__(self, parent=None, caption: str = 'GroupBox') -> None: ...
260
+ @property
261
+ def caption(self): ...
262
+ @caption.setter
263
+ def caption(self, value) -> None: ...
206
264
 
207
- class TGridLayout(TVCLLayoutBase):
265
+ class TCheckBox(TComponent):
266
+ onChange: Incomplete
208
267
  ui: Incomplete
209
- def __init__(self, parent=None) -> None: ...
268
+ def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
210
269
  @property
211
- def Cols(self): ...
212
- @Cols.setter
213
- def Cols(self, v) -> None: ...
270
+ def Checked(self) -> bool: ...
271
+ @Checked.setter
272
+ def Checked(self, v: bool): ...
214
273
  @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: ...
274
+ def caption(self): ...
275
+ @caption.setter
276
+ def caption(self, value) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2810
3
+ Version: 1.2604.2812
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.2811: 2026/04/28<BR>
38
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
+
40
+
37
41
  Version 1.2604.2810: 2026/04/28<BR>
38
42
  Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
43
 
File without changes