WebGUIAPI 1.2604.2801__tar.gz → 1.2604.2803__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.2801/src/WebGUIAPI.egg-info → webguiapi-1.2604.2803}/PKG-INFO +9 -1
- webguiapi-1.2604.2803/README.md +13 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/pyproject.toml +1 -1
- webguiapi-1.2604.2803/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/src/WebGUIAPI/WebGUIvcl.pyi +28 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803/src/WebGUIAPI.egg-info}/PKG-INFO +9 -1
- webguiapi-1.2604.2801/README.md +0 -5
- webguiapi-1.2604.2801/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/LICENSE +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/MANIFEST.in +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/setup.cfg +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2604.2801 → webguiapi-1.2604.2803}/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.2803
|
|
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,5 +34,13 @@ Dynamic: license-file
|
|
|
34
34
|
#WebGUIAPI
|
|
35
35
|
|
|
36
36
|
## History of version
|
|
37
|
+
Version 1.2604.2803: 2026/04/28<BR>
|
|
38
|
+
Fix problem:
|
|
39
|
+
TEdit component err --> NameError: name 'v' is not defined
|
|
40
|
+
|
|
41
|
+
Version 1.2604.2802: 2026/04/28<BR>
|
|
42
|
+
1.Add TListBox component.
|
|
43
|
+
2.Improve TButton add TButtonShape property.
|
|
44
|
+
|
|
37
45
|
Version 1.2604.2801: 2026/04/28<BR>
|
|
38
46
|
Create WebGUI component for VCL framework like.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
#WebGUIAPI
|
|
2
|
+
|
|
3
|
+
## History of version
|
|
4
|
+
Version 1.2604.2803: 2026/04/28<BR>
|
|
5
|
+
Fix problem:
|
|
6
|
+
TEdit component err --> NameError: name 'v' is not defined
|
|
7
|
+
|
|
8
|
+
Version 1.2604.2802: 2026/04/28<BR>
|
|
9
|
+
1.Add TListBox component.
|
|
10
|
+
2.Improve TButton add TButtonShape property.
|
|
11
|
+
|
|
12
|
+
Version 1.2604.2801: 2026/04/28<BR>
|
|
13
|
+
Create WebGUI component for VCL framework like.
|
|
Binary file
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
|
+
from enum import Enum
|
|
2
3
|
|
|
3
4
|
class TComponent:
|
|
4
5
|
parent: Incomplete
|
|
@@ -65,11 +66,20 @@ class TMemo(TComponent):
|
|
|
65
66
|
ui: Incomplete
|
|
66
67
|
def __init__(self, parent=None) -> None: ...
|
|
67
68
|
|
|
69
|
+
class TButtonShape(Enum):
|
|
70
|
+
Rectangle = 'Rectangle'
|
|
71
|
+
RoundRect = 'RoundRect'
|
|
72
|
+
Circle = 'Circle'
|
|
73
|
+
|
|
68
74
|
class TButton(TComponent):
|
|
69
75
|
onClick: Incomplete
|
|
70
76
|
ui: Incomplete
|
|
71
77
|
def __init__(self, parent=None, caption: str = 'Button') -> None: ...
|
|
72
78
|
@property
|
|
79
|
+
def Shape(self) -> TButtonShape: ...
|
|
80
|
+
@Shape.setter
|
|
81
|
+
def Shape(self, v: TButtonShape): ...
|
|
82
|
+
@property
|
|
73
83
|
def caption(self): ...
|
|
74
84
|
@caption.setter
|
|
75
85
|
def caption(self, value) -> None: ...
|
|
@@ -177,3 +187,21 @@ class TFrame(TComponent):
|
|
|
177
187
|
ui: Incomplete
|
|
178
188
|
def __init__(self, parent=None) -> None: ...
|
|
179
189
|
def onCreate(self) -> None: ...
|
|
190
|
+
|
|
191
|
+
class TStrings:
|
|
192
|
+
def __init__(self, owner_ui, on_change_callback) -> None: ...
|
|
193
|
+
def Add(self, text): ...
|
|
194
|
+
def Delete(self, index) -> None: ...
|
|
195
|
+
def Clear(self) -> None: ...
|
|
196
|
+
@property
|
|
197
|
+
def Strings(self): ...
|
|
198
|
+
|
|
199
|
+
class TListBox(TComponent):
|
|
200
|
+
onClick: Incomplete
|
|
201
|
+
ui: Incomplete
|
|
202
|
+
Items: Incomplete
|
|
203
|
+
def __init__(self, parent=None) -> None: ...
|
|
204
|
+
@property
|
|
205
|
+
def ItemIndex(self): ...
|
|
206
|
+
@ItemIndex.setter
|
|
207
|
+
def ItemIndex(self, index) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2604.
|
|
3
|
+
Version: 1.2604.2803
|
|
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,5 +34,13 @@ Dynamic: license-file
|
|
|
34
34
|
#WebGUIAPI
|
|
35
35
|
|
|
36
36
|
## History of version
|
|
37
|
+
Version 1.2604.2803: 2026/04/28<BR>
|
|
38
|
+
Fix problem:
|
|
39
|
+
TEdit component err --> NameError: name 'v' is not defined
|
|
40
|
+
|
|
41
|
+
Version 1.2604.2802: 2026/04/28<BR>
|
|
42
|
+
1.Add TListBox component.
|
|
43
|
+
2.Improve TButton add TButtonShape property.
|
|
44
|
+
|
|
37
45
|
Version 1.2604.2801: 2026/04/28<BR>
|
|
38
46
|
Create WebGUI component for VCL framework like.
|
webguiapi-1.2604.2801/README.md
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|