WebGUIAPI 1.2605.1202__tar.gz → 1.2605.1401__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.1202/src/WebGUIAPI.egg-info → webguiapi-1.2605.1401}/PKG-INFO +10 -1
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/README.md +9 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/pyproject.toml +1 -1
- webguiapi-1.2605.1401/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/src/WebGUIAPI/WebGUIvcl.pyi +81 -6
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401/src/WebGUIAPI.egg-info}/PKG-INFO +10 -1
- webguiapi-1.2605.1202/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/LICENSE +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/MANIFEST.in +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/setup.cfg +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2605.1202 → webguiapi-1.2605.1401}/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.1401
|
|
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,6 +37,15 @@ Dynamic: license-file
|
|
|
37
37
|
#WebGUIAPI
|
|
38
38
|
|
|
39
39
|
## History of version
|
|
40
|
+
Version 1.2605.1401: 2026/05/14<BR>
|
|
41
|
+
Add Components:
|
|
42
|
+
TDateComboBox, TTimeComboBox, TRadioButton
|
|
43
|
+
Improve Function:
|
|
44
|
+
TMemo: Add OnChange Event
|
|
45
|
+
TComponent:
|
|
46
|
+
Add OnClick Event
|
|
47
|
+
|
|
48
|
+
|
|
40
49
|
Version 1.2605.1202: 2026/05/12<BR>
|
|
41
50
|
Fixed:Prevent flash exit in different os.
|
|
42
51
|
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
#WebGUIAPI
|
|
2
2
|
|
|
3
3
|
## History of version
|
|
4
|
+
Version 1.2605.1401: 2026/05/14<BR>
|
|
5
|
+
Add Components:
|
|
6
|
+
TDateComboBox, TTimeComboBox, TRadioButton
|
|
7
|
+
Improve Function:
|
|
8
|
+
TMemo: Add OnChange Event
|
|
9
|
+
TComponent:
|
|
10
|
+
Add OnClick Event
|
|
11
|
+
|
|
12
|
+
|
|
4
13
|
Version 1.2605.1202: 2026/05/12<BR>
|
|
5
14
|
Fixed:Prevent flash exit in different os.
|
|
6
15
|
|
|
Binary file
|
|
@@ -4,6 +4,7 @@ from enum import Enum
|
|
|
4
4
|
class TComponent:
|
|
5
5
|
parent: Incomplete
|
|
6
6
|
children: Incomplete
|
|
7
|
+
Tag: int
|
|
7
8
|
def __init__(self, parent=None) -> None: ...
|
|
8
9
|
@property
|
|
9
10
|
def FontName(self): ...
|
|
@@ -66,6 +67,7 @@ class TForm:
|
|
|
66
67
|
def icon(self, url) -> None: ...
|
|
67
68
|
|
|
68
69
|
class TLabel(TComponent):
|
|
70
|
+
onClick: Incomplete
|
|
69
71
|
ui: Incomplete
|
|
70
72
|
def __init__(self, parent=None, caption: str = '') -> None: ...
|
|
71
73
|
@property
|
|
@@ -83,8 +85,14 @@ class TEdit(TComponent):
|
|
|
83
85
|
def text(self, value) -> None: ...
|
|
84
86
|
|
|
85
87
|
class TMemo(TComponent):
|
|
88
|
+
onChange: Incomplete
|
|
86
89
|
ui: Incomplete
|
|
90
|
+
Lines: Incomplete
|
|
87
91
|
def __init__(self, parent=None) -> None: ...
|
|
92
|
+
@property
|
|
93
|
+
def Text(self): ...
|
|
94
|
+
@Text.setter
|
|
95
|
+
def Text(self, value) -> None: ...
|
|
88
96
|
|
|
89
97
|
class TButtonShape(Enum):
|
|
90
98
|
Rectangle = 'Rectangle'
|
|
@@ -105,12 +113,36 @@ class TButton(TComponent):
|
|
|
105
113
|
def Caption(self, value) -> None: ...
|
|
106
114
|
|
|
107
115
|
class TCheckBox(TComponent):
|
|
116
|
+
onChange: Incomplete
|
|
117
|
+
onCLick: Incomplete
|
|
108
118
|
ui: Incomplete
|
|
109
|
-
def __init__(self, parent=None, caption: str = '') -> None: ...
|
|
119
|
+
def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
|
|
120
|
+
@property
|
|
121
|
+
def Checked(self) -> bool: ...
|
|
122
|
+
@Checked.setter
|
|
123
|
+
def Checked(self, v: bool): ...
|
|
124
|
+
@property
|
|
125
|
+
def Caption(self): ...
|
|
126
|
+
@Caption.setter
|
|
127
|
+
def Caption(self, value) -> None: ...
|
|
128
|
+
|
|
129
|
+
class TRadioButton(TComponent):
|
|
130
|
+
onClick: Incomplete
|
|
131
|
+
Tag: int
|
|
132
|
+
ui: Incomplete
|
|
133
|
+
def __init__(self, parent=None, caption: str = 'RadioButton') -> None: ...
|
|
134
|
+
@property
|
|
135
|
+
def ButtonColor(self): ...
|
|
136
|
+
@ButtonColor.setter
|
|
137
|
+
def ButtonColor(self, value) -> None: ...
|
|
138
|
+
@property
|
|
139
|
+
def Checked(self) -> bool: ...
|
|
140
|
+
@Checked.setter
|
|
141
|
+
def Checked(self, v: bool): ...
|
|
110
142
|
@property
|
|
111
|
-
def
|
|
112
|
-
@
|
|
113
|
-
def
|
|
143
|
+
def Caption(self): ...
|
|
144
|
+
@Caption.setter
|
|
145
|
+
def Caption(self, value) -> None: ...
|
|
114
146
|
|
|
115
147
|
class TComboBox(TComponent):
|
|
116
148
|
onChange: Incomplete
|
|
@@ -147,6 +179,9 @@ class TPanel(TComponent):
|
|
|
147
179
|
def Image(self, src) -> None: ...
|
|
148
180
|
|
|
149
181
|
class TImage(TComponent):
|
|
182
|
+
onClick: Incomplete
|
|
183
|
+
onLoadImage: Incomplete
|
|
184
|
+
onLoadImageFinish: Incomplete
|
|
150
185
|
Align: Incomplete
|
|
151
186
|
Stretch: bool
|
|
152
187
|
wrapper: Incomplete
|
|
@@ -165,10 +200,16 @@ class TImage(TComponent):
|
|
|
165
200
|
def Height(self, value) -> None: ...
|
|
166
201
|
|
|
167
202
|
class TTimer:
|
|
168
|
-
interval: Incomplete
|
|
169
203
|
onTimer: Incomplete
|
|
170
|
-
enabled: bool
|
|
171
204
|
def __init__(self, interval: float = 1.0) -> None: ...
|
|
205
|
+
@property
|
|
206
|
+
def Enabled(self): ...
|
|
207
|
+
@Enabled.setter
|
|
208
|
+
def Enabled(self, value: bool): ...
|
|
209
|
+
@property
|
|
210
|
+
def Interval(self): ...
|
|
211
|
+
@Interval.setter
|
|
212
|
+
def Interval(self, value) -> None: ...
|
|
172
213
|
def start(self) -> None: ...
|
|
173
214
|
def stop(self) -> None: ...
|
|
174
215
|
|
|
@@ -326,3 +367,37 @@ class TProgressBar(TComponent):
|
|
|
326
367
|
def BarColor(self): ...
|
|
327
368
|
@BarColor.setter
|
|
328
369
|
def BarColor(self, v) -> None: ...
|
|
370
|
+
|
|
371
|
+
class TDateComboBox(TComponent):
|
|
372
|
+
onChange: Incomplete
|
|
373
|
+
Tag: int
|
|
374
|
+
PopupWidth: str
|
|
375
|
+
PopupHeight: str
|
|
376
|
+
icon: Incomplete
|
|
377
|
+
ui: Incomplete
|
|
378
|
+
date_picker: Incomplete
|
|
379
|
+
def __init__(self, parent=None, date_str: str = '', caption: str = '') -> None: ...
|
|
380
|
+
@property
|
|
381
|
+
def Caption(self): ...
|
|
382
|
+
@Caption.setter
|
|
383
|
+
def Caption(self, value) -> None: ...
|
|
384
|
+
@property
|
|
385
|
+
def Date(self): ...
|
|
386
|
+
@Date.setter
|
|
387
|
+
def Date(self, value) -> None: ...
|
|
388
|
+
|
|
389
|
+
class TTimeComboBox(TComponent):
|
|
390
|
+
onChange: Incomplete
|
|
391
|
+
Tag: int
|
|
392
|
+
ui: Incomplete
|
|
393
|
+
icon: Incomplete
|
|
394
|
+
time_picker: Incomplete
|
|
395
|
+
def __init__(self, parent=None, time_str: str = '', caption: str = '') -> None: ...
|
|
396
|
+
@property
|
|
397
|
+
def Caption(self): ...
|
|
398
|
+
@Caption.setter
|
|
399
|
+
def Caption(self, value) -> None: ...
|
|
400
|
+
@property
|
|
401
|
+
def Time(self): ...
|
|
402
|
+
@Time.setter
|
|
403
|
+
def Time(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.1401
|
|
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,6 +37,15 @@ Dynamic: license-file
|
|
|
37
37
|
#WebGUIAPI
|
|
38
38
|
|
|
39
39
|
## History of version
|
|
40
|
+
Version 1.2605.1401: 2026/05/14<BR>
|
|
41
|
+
Add Components:
|
|
42
|
+
TDateComboBox, TTimeComboBox, TRadioButton
|
|
43
|
+
Improve Function:
|
|
44
|
+
TMemo: Add OnChange Event
|
|
45
|
+
TComponent:
|
|
46
|
+
Add OnClick Event
|
|
47
|
+
|
|
48
|
+
|
|
40
49
|
Version 1.2605.1202: 2026/05/12<BR>
|
|
41
50
|
Fixed:Prevent flash exit in different os.
|
|
42
51
|
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|