WebGUIAPI 1.2604.2812__tar.gz → 1.2604.2901__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.
- {webguiapi-1.2604.2812/src/WebGUIAPI.egg-info → webguiapi-1.2604.2901}/PKG-INFO +4 -1
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/README.md +3 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/pyproject.toml +1 -1
- webguiapi-1.2604.2901/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/src/WebGUIAPI/WebGUIvcl.pyi +1 -50
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901/src/WebGUIAPI.egg-info}/PKG-INFO +4 -1
- webguiapi-1.2604.2812/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/LICENSE +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/MANIFEST.in +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/setup.cfg +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2604.2812 → webguiapi-1.2604.2901}/src/WebGUIAPI.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2604.
|
|
3
|
+
Version: 1.2604.2901
|
|
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,9 @@ Dynamic: license-file
|
|
|
34
34
|
#WebGUIAPI
|
|
35
35
|
|
|
36
36
|
## History of version
|
|
37
|
+
Version 1.2604.2901: 2026/04/29<BR>
|
|
38
|
+
Fixed TCheckBox problem.
|
|
39
|
+
|
|
37
40
|
Version 1.2604.2811: 2026/04/28<BR>
|
|
38
41
|
Fixed TVLayout/THLayout/TGridLayout Undefined error.
|
|
39
42
|
|
|
Binary file
|
|
@@ -212,58 +212,9 @@ class TListBox(TComponent):
|
|
|
212
212
|
@ItemIndex.setter
|
|
213
213
|
def ItemIndex(self, index) -> None: ...
|
|
214
214
|
|
|
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
215
|
class TCheckBox(TComponent):
|
|
266
216
|
onChange: Incomplete
|
|
217
|
+
onClick: Incomplete
|
|
267
218
|
ui: Incomplete
|
|
268
219
|
def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
|
|
269
220
|
@property
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2604.
|
|
3
|
+
Version: 1.2604.2901
|
|
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,9 @@ Dynamic: license-file
|
|
|
34
34
|
#WebGUIAPI
|
|
35
35
|
|
|
36
36
|
## History of version
|
|
37
|
+
Version 1.2604.2901: 2026/04/29<BR>
|
|
38
|
+
Fixed TCheckBox problem.
|
|
39
|
+
|
|
37
40
|
Version 1.2604.2811: 2026/04/28<BR>
|
|
38
41
|
Fixed TVLayout/THLayout/TGridLayout Undefined error.
|
|
39
42
|
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|