WebGUIAPI 1.2605.2001__py3-none-any.whl → 1.2605.2102__py3-none-any.whl
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/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- WebGUIAPI/WebGUIvcl.pyi +55 -17
- {webguiapi-1.2605.2001.dist-info → webguiapi-1.2605.2102.dist-info}/METADATA +11 -3
- webguiapi-1.2605.2102.dist-info/RECORD +7 -0
- webguiapi-1.2605.2001.dist-info/RECORD +0 -7
- {webguiapi-1.2605.2001.dist-info → webguiapi-1.2605.2102.dist-info}/WHEEL +0 -0
- {webguiapi-1.2605.2001.dist-info → webguiapi-1.2605.2102.dist-info}/licenses/LICENSE +0 -0
- {webguiapi-1.2605.2001.dist-info → webguiapi-1.2605.2102.dist-info}/top_level.txt +0 -0
|
Binary file
|
WebGUIAPI/WebGUIvcl.pyi
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import types
|
|
1
2
|
from _typeshed import Incomplete
|
|
2
3
|
from enum import Enum
|
|
3
4
|
|
|
@@ -45,9 +46,31 @@ 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 Enabled(self): ...
|
|
55
|
+
@Enabled.setter
|
|
56
|
+
def Enabled(self, v: bool): ...
|
|
57
|
+
@property
|
|
58
|
+
def Visible(self): ...
|
|
59
|
+
@Visible.setter
|
|
60
|
+
def Visible(self, v: bool): ...
|
|
61
|
+
@property
|
|
62
|
+
def Align(self): ...
|
|
63
|
+
@Align.setter
|
|
64
|
+
def Align(self, v) -> None: ...
|
|
65
|
+
@property
|
|
66
|
+
def Left(self): ...
|
|
67
|
+
@Left.setter
|
|
68
|
+
def Left(self, v) -> None: ...
|
|
69
|
+
@property
|
|
70
|
+
def Top(self): ...
|
|
71
|
+
@Top.setter
|
|
72
|
+
def Top(self, v) -> None: ...
|
|
73
|
+
@property
|
|
51
74
|
def FontName(self): ...
|
|
52
75
|
@FontName.setter
|
|
53
76
|
def FontName(self, v) -> None: ...
|
|
@@ -112,7 +135,7 @@ class TForm:
|
|
|
112
135
|
class TLabel(TComponent):
|
|
113
136
|
onClick: Incomplete
|
|
114
137
|
ui: Incomplete
|
|
115
|
-
def __init__(self, parent=None, caption: str = '') -> None: ...
|
|
138
|
+
def __init__(self, parent=None, caption: str = '', onClick=None) -> None: ...
|
|
116
139
|
@property
|
|
117
140
|
def Caption(self): ...
|
|
118
141
|
@Caption.setter
|
|
@@ -143,8 +166,9 @@ class TButtonShape(Enum):
|
|
|
143
166
|
Circle = 'Circle'
|
|
144
167
|
|
|
145
168
|
class TButton(TComponent):
|
|
169
|
+
onClick: Incomplete
|
|
146
170
|
ui: Incomplete
|
|
147
|
-
def __init__(self, parent=None, caption: str = 'Button') -> None: ...
|
|
171
|
+
def __init__(self, parent=None, caption: str = 'Button', onClick=None) -> None: ...
|
|
148
172
|
@property
|
|
149
173
|
def Shape(self) -> TButtonShape: ...
|
|
150
174
|
@Shape.setter
|
|
@@ -155,10 +179,10 @@ class TButton(TComponent):
|
|
|
155
179
|
def Caption(self, value) -> None: ...
|
|
156
180
|
|
|
157
181
|
class TCheckBox(TComponent):
|
|
182
|
+
onClick: Incomplete
|
|
158
183
|
onChange: Incomplete
|
|
159
|
-
onCLick: Incomplete
|
|
160
184
|
ui: Incomplete
|
|
161
|
-
def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
|
|
185
|
+
def __init__(self, parent=None, caption: str = 'CheckBox', onClick=None, onChange=None) -> None: ...
|
|
162
186
|
@property
|
|
163
187
|
def Checked(self) -> bool: ...
|
|
164
188
|
@Checked.setter
|
|
@@ -201,24 +225,34 @@ class TStringGrid(TComponent):
|
|
|
201
225
|
def set_data(self, rows) -> None: ...
|
|
202
226
|
|
|
203
227
|
class TPanel(TComponent):
|
|
228
|
+
panel_ui: Incomplete
|
|
204
229
|
ui: Incomplete
|
|
205
|
-
def __init__(self, parent=None, width=
|
|
230
|
+
def __init__(self, parent=None, width: int = 300, height: int = 200) -> None: ...
|
|
206
231
|
@property
|
|
207
|
-
def
|
|
208
|
-
@
|
|
209
|
-
def
|
|
232
|
+
def Visible(self): ...
|
|
233
|
+
@Visible.setter
|
|
234
|
+
def Visible(self, v: bool): ...
|
|
210
235
|
@property
|
|
211
|
-
def
|
|
212
|
-
@
|
|
213
|
-
def
|
|
236
|
+
def Sizeable(self): ...
|
|
237
|
+
@Sizeable.setter
|
|
238
|
+
def Sizeable(self, v: bool): ...
|
|
214
239
|
@property
|
|
215
|
-
def
|
|
216
|
-
@
|
|
217
|
-
def
|
|
240
|
+
def DragDrop(self): ...
|
|
241
|
+
@DragDrop.setter
|
|
242
|
+
def DragDrop(self, value: bool): ...
|
|
243
|
+
def handle_sync_all(self, l, t, w, h) -> None: ...
|
|
244
|
+
@property
|
|
245
|
+
def Opacity(self): ...
|
|
246
|
+
@Opacity.setter
|
|
247
|
+
def Opacity(self, value: int): ...
|
|
248
|
+
@property
|
|
249
|
+
def ZOrder(self): ...
|
|
250
|
+
@ZOrder.setter
|
|
251
|
+
def ZOrder(self, value: int): ...
|
|
218
252
|
@property
|
|
219
|
-
def
|
|
220
|
-
@
|
|
221
|
-
def
|
|
253
|
+
def BorderRadius(self): ...
|
|
254
|
+
@BorderRadius.setter
|
|
255
|
+
def BorderRadius(self, value: int): ...
|
|
222
256
|
|
|
223
257
|
class TImage(TComponent):
|
|
224
258
|
onLoadImage: Incomplete
|
|
@@ -488,6 +522,10 @@ class TPageControl(TComponent):
|
|
|
488
522
|
ActivePageIndex: int
|
|
489
523
|
def NewTabSheet(self, caption: str = 'New Page'): ...
|
|
490
524
|
@property
|
|
525
|
+
def Enabled(self): ...
|
|
526
|
+
@Enabled.setter
|
|
527
|
+
def Enabled(self, v: bool): ...
|
|
528
|
+
@property
|
|
491
529
|
def FocusColor(self): ...
|
|
492
530
|
@FocusColor.setter
|
|
493
531
|
def FocusColor(self, value) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2605.
|
|
3
|
+
Version: 1.2605.2102
|
|
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,21 @@ Dynamic: license-file
|
|
|
37
37
|
#WebGUIAPI
|
|
38
38
|
|
|
39
39
|
## History of version
|
|
40
|
+
Version 1.2605.2102: 2026/05/21<BR>
|
|
41
|
+
Fixed TComponent::TTabSheet Enabled bug
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
Version 1.2605.2101: 2026/05/21<BR>
|
|
45
|
+
Add new TPanel
|
|
46
|
+
Add new properties: Enabled, Visible for TComponent
|
|
47
|
+
Fixed TPageControl bugs.
|
|
48
|
+
|
|
49
|
+
|
|
40
50
|
Version 1.2605.2001: 2026/05/20<BR>
|
|
41
51
|
Add new component TPageControl, TTabSheet.
|
|
42
52
|
Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
|
|
43
53
|
Fix TImage problem and add display style properties.
|
|
44
54
|
|
|
45
|
-
|
|
46
55
|
Version 1.2605.1401: 2026/05/14<BR>
|
|
47
56
|
Add Components:
|
|
48
57
|
TDateComboBox, TTimeComboBox, TRadioButton
|
|
@@ -51,7 +60,6 @@ TMemo: Add OnChange Event
|
|
|
51
60
|
TComponent:
|
|
52
61
|
Add OnClick Event
|
|
53
62
|
|
|
54
|
-
|
|
55
63
|
Version 1.2605.1202: 2026/05/12<BR>
|
|
56
64
|
Fixed:Prevent flash exit in different os.
|
|
57
65
|
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd,sha256=i-fDA6Cb6HrUcbnssWlfoUGAQfDqwhmJFGF_VyELfSk,881664
|
|
2
|
+
WebGUIAPI/WebGUIvcl.pyi,sha256=7bJTilz5LGFuz4bKChwChqzLSg_702HDI33sVQNOaFs,14646
|
|
3
|
+
webguiapi-1.2605.2102.dist-info/licenses/LICENSE,sha256=bTN6shImvjBn0VScA1LIqy7LH3B_O6XZieGPnoT4Gxk,1054
|
|
4
|
+
webguiapi-1.2605.2102.dist-info/METADATA,sha256=Eg5TGgtlgfHrniipDR3sDu6IWVHIpGETQsVlLLylu-Y,3719
|
|
5
|
+
webguiapi-1.2605.2102.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
6
|
+
webguiapi-1.2605.2102.dist-info/top_level.txt,sha256=3190iyqImiZbcT-X6pHYhSmIpu8DxiPMgDzwScmF_B8,10
|
|
7
|
+
webguiapi-1.2605.2102.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd,sha256=2Z0nmRxlFKyJz3HMgrNMgkqfXi9E0Bz9gX6CzTr5q0w,827392
|
|
2
|
-
WebGUIAPI/WebGUIvcl.pyi,sha256=d4zKttCTUO2gSaivULVzbIMN2exRXunn5Kj3U6TlOfs,13467
|
|
3
|
-
webguiapi-1.2605.2001.dist-info/licenses/LICENSE,sha256=bTN6shImvjBn0VScA1LIqy7LH3B_O6XZieGPnoT4Gxk,1054
|
|
4
|
-
webguiapi-1.2605.2001.dist-info/METADATA,sha256=iUWE11ftL_p2TNQUm2_ZPmvxxnyIUzbRGvrA_m68gvQ,3504
|
|
5
|
-
webguiapi-1.2605.2001.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
6
|
-
webguiapi-1.2605.2001.dist-info/top_level.txt,sha256=3190iyqImiZbcT-X6pHYhSmIpu8DxiPMgDzwScmF_B8,10
|
|
7
|
-
webguiapi-1.2605.2001.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|