WebGUIAPI 1.2604.2901__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.
- {webguiapi-1.2604.2901/src/WebGUIAPI.egg-info → webguiapi-1.2605.801}/PKG-INFO +5 -1
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/README.md +4 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/pyproject.toml +1 -1
- webguiapi-1.2605.801/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/src/WebGUIAPI/WebGUIvcl.pyi +11 -8
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801/src/WebGUIAPI.egg-info}/PKG-INFO +5 -1
- webguiapi-1.2604.2901/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/LICENSE +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/MANIFEST.in +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/setup.cfg +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2604.2901 → webguiapi-1.2605.801}/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.
|
|
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,10 @@ 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
|
+
|
|
37
41
|
Version 1.2604.2901: 2026/04/29<BR>
|
|
38
42
|
Fixed TCheckBox problem.
|
|
39
43
|
|
|
Binary file
|
|
@@ -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
|
|
53
|
-
@
|
|
54
|
-
def
|
|
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
|
|
84
|
-
@
|
|
85
|
-
def
|
|
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): ...
|
|
@@ -222,6 +225,6 @@ class TCheckBox(TComponent):
|
|
|
222
225
|
@Checked.setter
|
|
223
226
|
def Checked(self, v: bool): ...
|
|
224
227
|
@property
|
|
225
|
-
def
|
|
226
|
-
@
|
|
228
|
+
def Caption(self): ...
|
|
229
|
+
@Caption.setter
|
|
227
230
|
def caption(self, value) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.
|
|
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,10 @@ 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
|
+
|
|
37
41
|
Version 1.2604.2901: 2026/04/29<BR>
|
|
38
42
|
Fixed TCheckBox problem.
|
|
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
|