WebGUIAPI 1.2605.2001__tar.gz → 1.2605.2101__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.2605.2001/src/WebGUIAPI.egg-info → webguiapi-1.2605.2101}/PKG-INFO +7 -3
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/README.md +6 -2
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/pyproject.toml +1 -1
- webguiapi-1.2605.2101/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/src/WebGUIAPI/WebGUIvcl.pyi +35 -17
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101/src/WebGUIAPI.egg-info}/PKG-INFO +7 -3
- webguiapi-1.2605.2001/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/LICENSE +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/MANIFEST.in +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/setup.cfg +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2605.2001 → webguiapi-1.2605.2101}/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.2605.
|
|
3
|
+
Version: 1.2605.2101
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -37,12 +37,17 @@ Dynamic: license-file
|
|
|
37
37
|
#WebGUIAPI
|
|
38
38
|
|
|
39
39
|
## History of version
|
|
40
|
+
Version 1.2605.2101: 2026/05/21<BR>
|
|
41
|
+
Add new TPanel
|
|
42
|
+
Add new properties: Enabled, Visible for TComponent
|
|
43
|
+
Fixed TPageControl bugs.
|
|
44
|
+
|
|
45
|
+
|
|
40
46
|
Version 1.2605.2001: 2026/05/20<BR>
|
|
41
47
|
Add new component TPageControl, TTabSheet.
|
|
42
48
|
Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
|
|
43
49
|
Fix TImage problem and add display style properties.
|
|
44
50
|
|
|
45
|
-
|
|
46
51
|
Version 1.2605.1401: 2026/05/14<BR>
|
|
47
52
|
Add Components:
|
|
48
53
|
TDateComboBox, TTimeComboBox, TRadioButton
|
|
@@ -51,7 +56,6 @@ TMemo: Add OnChange Event
|
|
|
51
56
|
TComponent:
|
|
52
57
|
Add OnClick Event
|
|
53
58
|
|
|
54
|
-
|
|
55
59
|
Version 1.2605.1202: 2026/05/12<BR>
|
|
56
60
|
Fixed:Prevent flash exit in different os.
|
|
57
61
|
|
|
@@ -1,12 +1,17 @@
|
|
|
1
1
|
#WebGUIAPI
|
|
2
2
|
|
|
3
3
|
## History of version
|
|
4
|
+
Version 1.2605.2101: 2026/05/21<BR>
|
|
5
|
+
Add new TPanel
|
|
6
|
+
Add new properties: Enabled, Visible for TComponent
|
|
7
|
+
Fixed TPageControl bugs.
|
|
8
|
+
|
|
9
|
+
|
|
4
10
|
Version 1.2605.2001: 2026/05/20<BR>
|
|
5
11
|
Add new component TPageControl, TTabSheet.
|
|
6
12
|
Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
|
|
7
13
|
Fix TImage problem and add display style properties.
|
|
8
14
|
|
|
9
|
-
|
|
10
15
|
Version 1.2605.1401: 2026/05/14<BR>
|
|
11
16
|
Add Components:
|
|
12
17
|
TDateComboBox, TTimeComboBox, TRadioButton
|
|
@@ -15,7 +20,6 @@ TMemo: Add OnChange Event
|
|
|
15
20
|
TComponent:
|
|
16
21
|
Add OnClick Event
|
|
17
22
|
|
|
18
|
-
|
|
19
23
|
Version 1.2605.1202: 2026/05/12<BR>
|
|
20
24
|
Fixed:Prevent flash exit in different os.
|
|
21
25
|
|
|
Binary file
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import types
|
|
1
2
|
from _typeshed import Incomplete
|
|
2
3
|
from enum import Enum
|
|
3
4
|
|
|
@@ -45,9 +46,23 @@ class TComponent:
|
|
|
45
46
|
onKeyDown: Incomplete
|
|
46
47
|
onKeyUp: Incomplete
|
|
47
48
|
def __init__(self, parent=None) -> None: ...
|
|
49
|
+
def __enter__(self): ...
|
|
50
|
+
def __exit__(self, exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: types.TracebackType | None) -> None: ...
|
|
48
51
|
@property
|
|
49
52
|
def ClassName(self): ...
|
|
50
53
|
@property
|
|
54
|
+
def Align(self): ...
|
|
55
|
+
@Align.setter
|
|
56
|
+
def Align(self, v) -> None: ...
|
|
57
|
+
@property
|
|
58
|
+
def Left(self): ...
|
|
59
|
+
@Left.setter
|
|
60
|
+
def Left(self, v) -> None: ...
|
|
61
|
+
@property
|
|
62
|
+
def Top(self): ...
|
|
63
|
+
@Top.setter
|
|
64
|
+
def Top(self, v) -> None: ...
|
|
65
|
+
@property
|
|
51
66
|
def FontName(self): ...
|
|
52
67
|
@FontName.setter
|
|
53
68
|
def FontName(self, v) -> None: ...
|
|
@@ -112,7 +127,7 @@ class TForm:
|
|
|
112
127
|
class TLabel(TComponent):
|
|
113
128
|
onClick: Incomplete
|
|
114
129
|
ui: Incomplete
|
|
115
|
-
def __init__(self, parent=None, caption: str = '') -> None: ...
|
|
130
|
+
def __init__(self, parent=None, caption: str = '', onClick=None) -> None: ...
|
|
116
131
|
@property
|
|
117
132
|
def Caption(self): ...
|
|
118
133
|
@Caption.setter
|
|
@@ -143,8 +158,9 @@ class TButtonShape(Enum):
|
|
|
143
158
|
Circle = 'Circle'
|
|
144
159
|
|
|
145
160
|
class TButton(TComponent):
|
|
161
|
+
onClick: Incomplete
|
|
146
162
|
ui: Incomplete
|
|
147
|
-
def __init__(self, parent=None, caption: str = 'Button') -> None: ...
|
|
163
|
+
def __init__(self, parent=None, caption: str = 'Button', onClick=None) -> None: ...
|
|
148
164
|
@property
|
|
149
165
|
def Shape(self) -> TButtonShape: ...
|
|
150
166
|
@Shape.setter
|
|
@@ -155,10 +171,10 @@ class TButton(TComponent):
|
|
|
155
171
|
def Caption(self, value) -> None: ...
|
|
156
172
|
|
|
157
173
|
class TCheckBox(TComponent):
|
|
174
|
+
onClick: Incomplete
|
|
158
175
|
onChange: Incomplete
|
|
159
|
-
onCLick: Incomplete
|
|
160
176
|
ui: Incomplete
|
|
161
|
-
def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
|
|
177
|
+
def __init__(self, parent=None, caption: str = 'CheckBox', onClick=None, onChange=None) -> None: ...
|
|
162
178
|
@property
|
|
163
179
|
def Checked(self) -> bool: ...
|
|
164
180
|
@Checked.setter
|
|
@@ -201,24 +217,26 @@ class TStringGrid(TComponent):
|
|
|
201
217
|
def set_data(self, rows) -> None: ...
|
|
202
218
|
|
|
203
219
|
class TPanel(TComponent):
|
|
220
|
+
panel_ui: Incomplete
|
|
204
221
|
ui: Incomplete
|
|
205
|
-
def __init__(self, parent=None, width=
|
|
222
|
+
def __init__(self, parent=None, width: int = 300, height: int = 200) -> None: ...
|
|
206
223
|
@property
|
|
207
|
-
def
|
|
208
|
-
@
|
|
209
|
-
def
|
|
224
|
+
def DragDrop(self): ...
|
|
225
|
+
@DragDrop.setter
|
|
226
|
+
def DragDrop(self, value: bool): ...
|
|
227
|
+
def handle_sync_all(self, l, t, w, h) -> None: ...
|
|
210
228
|
@property
|
|
211
|
-
def
|
|
212
|
-
@
|
|
213
|
-
def
|
|
229
|
+
def Opacity(self): ...
|
|
230
|
+
@Opacity.setter
|
|
231
|
+
def Opacity(self, value: int): ...
|
|
214
232
|
@property
|
|
215
|
-
def
|
|
216
|
-
@
|
|
217
|
-
def
|
|
233
|
+
def ZOrder(self): ...
|
|
234
|
+
@ZOrder.setter
|
|
235
|
+
def ZOrder(self, value: int): ...
|
|
218
236
|
@property
|
|
219
|
-
def
|
|
220
|
-
@
|
|
221
|
-
def
|
|
237
|
+
def BorderRadius(self): ...
|
|
238
|
+
@BorderRadius.setter
|
|
239
|
+
def BorderRadius(self, value: int): ...
|
|
222
240
|
|
|
223
241
|
class TImage(TComponent):
|
|
224
242
|
onLoadImage: Incomplete
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2605.
|
|
3
|
+
Version: 1.2605.2101
|
|
4
4
|
Summary: WebGUIAPI Python package
|
|
5
5
|
Author-email: James Lin <tylin123@ms27.hinet.net>
|
|
6
6
|
License: Copyright (c) 2025 James Lin
|
|
@@ -37,12 +37,17 @@ Dynamic: license-file
|
|
|
37
37
|
#WebGUIAPI
|
|
38
38
|
|
|
39
39
|
## History of version
|
|
40
|
+
Version 1.2605.2101: 2026/05/21<BR>
|
|
41
|
+
Add new TPanel
|
|
42
|
+
Add new properties: Enabled, Visible for TComponent
|
|
43
|
+
Fixed TPageControl bugs.
|
|
44
|
+
|
|
45
|
+
|
|
40
46
|
Version 1.2605.2001: 2026/05/20<BR>
|
|
41
47
|
Add new component TPageControl, TTabSheet.
|
|
42
48
|
Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
|
|
43
49
|
Fix TImage problem and add display style properties.
|
|
44
50
|
|
|
45
|
-
|
|
46
51
|
Version 1.2605.1401: 2026/05/14<BR>
|
|
47
52
|
Add Components:
|
|
48
53
|
TDateComboBox, TTimeComboBox, TRadioButton
|
|
@@ -51,7 +56,6 @@ TMemo: Add OnChange Event
|
|
|
51
56
|
TComponent:
|
|
52
57
|
Add OnClick Event
|
|
53
58
|
|
|
54
|
-
|
|
55
59
|
Version 1.2605.1202: 2026/05/12<BR>
|
|
56
60
|
Fixed:Prevent flash exit in different os.
|
|
57
61
|
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|