WebGUIAPI 1.2604.2812__tar.gz → 1.2605.801__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.2812
3
+ Version: 1.2605.801
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,13 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2605.0801: 2026/05/08<BR>
38
+ Fixed problem: TPanel, TImage layer
39
+ Fixed container : TVLayout
40
+
41
+ Version 1.2604.2901: 2026/04/29<BR>
42
+ Fixed TCheckBox problem.
43
+
37
44
  Version 1.2604.2811: 2026/04/28<BR>
38
45
  Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
46
 
@@ -1,6 +1,13 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.0801: 2026/05/08<BR>
5
+ Fixed problem: TPanel, TImage layer
6
+ Fixed container : TVLayout
7
+
8
+ Version 1.2604.2901: 2026/04/29<BR>
9
+ Fixed TCheckBox problem.
10
+
4
11
  Version 1.2604.2811: 2026/04/28<BR>
5
12
  Fixed TVLayout/THLayout/TGridLayout Undefined error.
6
13
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2812"
7
+ version = "1.2605.0801"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -49,9 +49,9 @@ class TLabel(TComponent):
49
49
  ui: Incomplete
50
50
  def __init__(self, parent=None, caption: str = '') -> None: ...
51
51
  @property
52
- def caption(self): ...
53
- @caption.setter
54
- def caption(self, value) -> None: ...
52
+ def Caption(self): ...
53
+ @Caption.setter
54
+ def Caption(self, value) -> None: ...
55
55
 
56
56
  class TEdit(TComponent):
57
57
  onChange: Incomplete
@@ -80,9 +80,9 @@ class TButton(TComponent):
80
80
  @Shape.setter
81
81
  def Shape(self, v: TButtonShape): ...
82
82
  @property
83
- def caption(self): ...
84
- @caption.setter
85
- def caption(self, value) -> None: ...
83
+ def Caption(self): ...
84
+ @Caption.setter
85
+ def Caption(self, value) -> None: ...
86
86
 
87
87
  class TCheckBox(TComponent):
88
88
  ui: Incomplete
@@ -129,8 +129,11 @@ class TPanel(TComponent):
129
129
  class TImage(TComponent):
130
130
  Align: Incomplete
131
131
  Stretch: bool
132
+ wrapper: Incomplete
133
+ img_obj: Incomplete
132
134
  ui: Incomplete
133
135
  def __init__(self, parent=None, src: str = '', width=None, height=None) -> None: ...
136
+ def add_child_style(self, child) -> None: ...
134
137
  def LoadImage(self, src) -> None: ...
135
138
  @property
136
139
  def Width(self): ...
@@ -212,58 +215,9 @@ class TListBox(TComponent):
212
215
  @ItemIndex.setter
213
216
  def ItemIndex(self, index) -> None: ...
214
217
 
215
- class TPageControl(TComponent):
216
- onChange: Incomplete
217
- onChanging: Incomplete
218
- pages: Incomplete
219
- ui: Incomplete
220
- tab_bar: Incomplete
221
- tab_panels: Incomplete
222
- def __init__(self, parent=None) -> None: ...
223
- @property
224
- def ActivePageIndex(self): ...
225
- @ActivePageIndex.setter
226
- def ActivePageIndex(self, index) -> None: ...
227
- @property
228
- def ActivePage(self): ...
229
- @ActivePage.setter
230
- def ActivePage(self, page_obj) -> None: ...
231
-
232
- class TTabSheet(TVLayout):
233
- tab_header: Incomplete
234
- panel_ui: Incomplete
235
- ui: Incomplete
236
- def __init__(self, page_control: TPageControl, caption: str = 'TabSheet') -> None: ...
237
- @property
238
- def caption(self): ...
239
- @caption.setter
240
- def caption(self, value) -> None: ...
241
-
242
- class TRadioButton(TComponent):
243
- on_click: Incomplete
244
- ui: Incomplete
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: ...
254
-
255
- class TGroupBox(TVLayout):
256
- group_wrapper: Incomplete
257
- legend: Incomplete
258
- ui: Incomplete
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: ...
264
-
265
218
  class TCheckBox(TComponent):
266
219
  onChange: Incomplete
220
+ onClick: Incomplete
267
221
  ui: Incomplete
268
222
  def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
269
223
  @property
@@ -271,6 +225,6 @@ class TCheckBox(TComponent):
271
225
  @Checked.setter
272
226
  def Checked(self, v: bool): ...
273
227
  @property
274
- def caption(self): ...
275
- @caption.setter
228
+ def Caption(self): ...
229
+ @Caption.setter
276
230
  def caption(self, value) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2812
3
+ Version: 1.2605.801
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,13 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2605.0801: 2026/05/08<BR>
38
+ Fixed problem: TPanel, TImage layer
39
+ Fixed container : TVLayout
40
+
41
+ Version 1.2604.2901: 2026/04/29<BR>
42
+ Fixed TCheckBox problem.
43
+
37
44
  Version 1.2604.2811: 2026/04/28<BR>
38
45
  Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
46
 
File without changes