WebGUIAPI 1.2604.2810__tar.gz → 1.2604.2811__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.2810/src/WebGUIAPI.egg-info → webguiapi-1.2604.2811}/PKG-INFO +5 -1
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/README.md +4 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/pyproject.toml +1 -1
- webguiapi-1.2604.2811/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/src/WebGUIAPI/WebGUIvcl.pyi +27 -27
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811/src/WebGUIAPI.egg-info}/PKG-INFO +5 -1
- webguiapi-1.2604.2810/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/LICENSE +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/MANIFEST.in +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/setup.cfg +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2604.2810 → webguiapi-1.2604.2811}/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.2811
|
|
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
|
|
|
Binary file
|
|
@@ -35,11 +35,37 @@ class TComponent:
|
|
|
35
35
|
@Color.setter
|
|
36
36
|
def Color(self, v) -> None: ...
|
|
37
37
|
|
|
38
|
+
class TVCLLayoutBase(TComponent): ...
|
|
39
|
+
|
|
40
|
+
class THLayout(TVCLLayoutBase):
|
|
41
|
+
ui: Incomplete
|
|
42
|
+
def __init__(self, parent=None) -> None: ...
|
|
43
|
+
def add_child_style(self, child) -> None: ...
|
|
44
|
+
|
|
45
|
+
class TVLayout(TVCLLayoutBase):
|
|
46
|
+
ui: Incomplete
|
|
47
|
+
def __init__(self, parent=None) -> None: ...
|
|
48
|
+
def add_child_style(self, child) -> None: ...
|
|
49
|
+
|
|
50
|
+
class TGridLayout(TVCLLayoutBase):
|
|
51
|
+
ui: Incomplete
|
|
52
|
+
def __init__(self, parent=None) -> None: ...
|
|
53
|
+
@property
|
|
54
|
+
def Cols(self): ...
|
|
55
|
+
@Cols.setter
|
|
56
|
+
def Cols(self, v) -> None: ...
|
|
57
|
+
@property
|
|
58
|
+
def Rows(self): ...
|
|
59
|
+
@Rows.setter
|
|
60
|
+
def Rows(self, v) -> None: ...
|
|
61
|
+
def Grid(self, row, col): ...
|
|
62
|
+
def add_child_style(self, child) -> None: ...
|
|
63
|
+
|
|
38
64
|
class TForm(TComponent):
|
|
39
65
|
url: Incomplete
|
|
40
66
|
is_kiosk: Incomplete
|
|
41
67
|
ui: Incomplete
|
|
42
|
-
def __init__(self, url: str = '/', title: str = '
|
|
68
|
+
def __init__(self, url: str = '/', title: str = 'Untitle Web Form', kiosk: bool = False) -> None: ...
|
|
43
69
|
def Kiosk_Mode(self) -> None: ...
|
|
44
70
|
def Show(self, new_tab: bool = False) -> None: ...
|
|
45
71
|
def Close(self) -> None: ...
|
|
@@ -191,29 +217,3 @@ class TTabSheet(TVLayout):
|
|
|
191
217
|
def caption(self): ...
|
|
192
218
|
@caption.setter
|
|
193
219
|
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.
|
|
3
|
+
Version: 1.2604.2811
|
|
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
|
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|