WebGUIAPI 1.2605.801__tar.gz → 1.2605.802__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.801/src/WebGUIAPI.egg-info → webguiapi-1.2605.802}/PKG-INFO +5 -1
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/README.md +4 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/pyproject.toml +1 -1
- webguiapi-1.2605.802/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/src/WebGUIAPI/WebGUIvcl.pyi +70 -4
- {webguiapi-1.2605.801 → webguiapi-1.2605.802/src/WebGUIAPI.egg-info}/PKG-INFO +5 -1
- webguiapi-1.2605.801/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/LICENSE +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/MANIFEST.in +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/setup.cfg +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2605.801 → webguiapi-1.2605.802}/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.802
|
|
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.0802: 2026/05/08<BR>
|
|
38
|
+
Add TMediaPlayer, TProgressBar
|
|
39
|
+
|
|
40
|
+
|
|
37
41
|
Version 1.2605.0801: 2026/05/08<BR>
|
|
38
42
|
Fixed problem: TPanel, TImage layer
|
|
39
43
|
Fixed container : TVLayout
|
|
Binary file
|
|
@@ -35,15 +35,19 @@ class TForm:
|
|
|
35
35
|
is_kiosk: Incomplete
|
|
36
36
|
children: Incomplete
|
|
37
37
|
ui: Incomplete
|
|
38
|
-
def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
|
|
38
|
+
def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False, favicon=None) -> None: ...
|
|
39
39
|
def Kiosk_Mode(self) -> None: ...
|
|
40
40
|
def Show(self, new_tab: bool = False) -> None: ...
|
|
41
41
|
def Close(self) -> None: ...
|
|
42
42
|
@property
|
|
43
|
-
def
|
|
44
|
-
@
|
|
45
|
-
def
|
|
43
|
+
def Caption(self): ...
|
|
44
|
+
@Caption.setter
|
|
45
|
+
def Caption(self, value) -> None: ...
|
|
46
46
|
def onCreate(self) -> None: ...
|
|
47
|
+
@property
|
|
48
|
+
def icon(self): ...
|
|
49
|
+
@icon.setter
|
|
50
|
+
def icon(self, url) -> None: ...
|
|
47
51
|
|
|
48
52
|
class TLabel(TComponent):
|
|
49
53
|
ui: Incomplete
|
|
@@ -228,3 +232,65 @@ class TCheckBox(TComponent):
|
|
|
228
232
|
def Caption(self): ...
|
|
229
233
|
@Caption.setter
|
|
230
234
|
def caption(self, value) -> None: ...
|
|
235
|
+
|
|
236
|
+
class TMediaPlayer(TComponent):
|
|
237
|
+
ui_container: Incomplete
|
|
238
|
+
ui: Incomplete
|
|
239
|
+
def __init__(self, parent=None) -> None: ...
|
|
240
|
+
player: Incomplete
|
|
241
|
+
def LoadMedia(self, url: str): ...
|
|
242
|
+
def Play(self) -> None: ...
|
|
243
|
+
def Pause(self) -> None: ...
|
|
244
|
+
@property
|
|
245
|
+
def Autoplay(self): ...
|
|
246
|
+
@Autoplay.setter
|
|
247
|
+
def Autoplay(self, v) -> None: ...
|
|
248
|
+
@property
|
|
249
|
+
def Muted(self): ...
|
|
250
|
+
@Muted.setter
|
|
251
|
+
def Muted(self, v) -> None: ...
|
|
252
|
+
@property
|
|
253
|
+
def Visible(self): ...
|
|
254
|
+
@Visible.setter
|
|
255
|
+
def Visible(self, v: bool): ...
|
|
256
|
+
@property
|
|
257
|
+
def Volume(self): ...
|
|
258
|
+
@Volume.setter
|
|
259
|
+
def Volume(self, value) -> None: ...
|
|
260
|
+
|
|
261
|
+
class TSlideBar(TComponent):
|
|
262
|
+
onChange: Incomplete
|
|
263
|
+
ui: Incomplete
|
|
264
|
+
def __init__(self, parent=None) -> None: ...
|
|
265
|
+
@property
|
|
266
|
+
def Position(self): ...
|
|
267
|
+
@Position.setter
|
|
268
|
+
def Position(self, v) -> None: ...
|
|
269
|
+
@property
|
|
270
|
+
def Min(self): ...
|
|
271
|
+
@Min.setter
|
|
272
|
+
def Min(self, v) -> None: ...
|
|
273
|
+
@property
|
|
274
|
+
def Max(self): ...
|
|
275
|
+
@Max.setter
|
|
276
|
+
def Max(self, v) -> None: ...
|
|
277
|
+
|
|
278
|
+
class TProgressBar(TComponent):
|
|
279
|
+
ui: Incomplete
|
|
280
|
+
def __init__(self, parent=None) -> None: ...
|
|
281
|
+
@property
|
|
282
|
+
def Position(self): ...
|
|
283
|
+
@Position.setter
|
|
284
|
+
def Position(self, v) -> None: ...
|
|
285
|
+
@property
|
|
286
|
+
def Min(self): ...
|
|
287
|
+
@Min.setter
|
|
288
|
+
def Min(self, v) -> None: ...
|
|
289
|
+
@property
|
|
290
|
+
def Max(self): ...
|
|
291
|
+
@Max.setter
|
|
292
|
+
def Max(self, v) -> None: ...
|
|
293
|
+
@property
|
|
294
|
+
def BarColor(self): ...
|
|
295
|
+
@BarColor.setter
|
|
296
|
+
def BarColor(self, v) -> None: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2605.
|
|
3
|
+
Version: 1.2605.802
|
|
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.0802: 2026/05/08<BR>
|
|
38
|
+
Add TMediaPlayer, TProgressBar
|
|
39
|
+
|
|
40
|
+
|
|
37
41
|
Version 1.2605.0801: 2026/05/08<BR>
|
|
38
42
|
Fixed problem: TPanel, TImage layer
|
|
39
43
|
Fixed container : TVLayout
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|