WebGUIAPI 1.2605.801__tar.gz → 1.2605.1201__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2605.801
3
+ Version: 1.2605.1201
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,15 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2605.1201: 2026/05/12<BR>
38
+ Modify TVlayout/THlayout: Include property Gap_xxx
39
+ Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
40
+
41
+
42
+ Version 1.2605.0802: 2026/05/08<BR>
43
+ Add TMediaPlayer, TProgressBar
44
+
45
+
37
46
  Version 1.2605.0801: 2026/05/08<BR>
38
47
  Fixed problem: TPanel, TImage layer
39
48
  Fixed container : TVLayout
@@ -1,6 +1,15 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.1201: 2026/05/12<BR>
5
+ Modify TVlayout/THlayout: Include property Gap_xxx
6
+ Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
7
+
8
+
9
+ Version 1.2605.0802: 2026/05/08<BR>
10
+ Add TMediaPlayer, TProgressBar
11
+
12
+
4
13
  Version 1.2605.0801: 2026/05/08<BR>
5
14
  Fixed problem: TPanel, TImage layer
6
15
  Fixed container : TVLayout
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2605.0801"
7
+ version = "1.2605.1201"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -29,21 +29,41 @@ class TComponent:
29
29
  def Height(self): ...
30
30
  @Height.setter
31
31
  def Height(self, v) -> None: ...
32
+ @property
33
+ def WidthR(self): ...
34
+ @WidthR.setter
35
+ def WidthR(self, v) -> None: ...
36
+ @property
37
+ def HeightR(self): ...
38
+ @HeightR.setter
39
+ def HeightR(self, v) -> None: ...
40
+ @property
41
+ def Width(self): ...
42
+ @Width.setter
43
+ def Width(self, v) -> None: ...
44
+ @property
45
+ def Height(self): ...
46
+ @Height.setter
47
+ def Height(self, v) -> None: ...
32
48
 
33
49
  class TForm:
34
50
  url: Incomplete
35
51
  is_kiosk: Incomplete
36
52
  children: Incomplete
37
53
  ui: Incomplete
38
- def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
54
+ def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False, favicon=None) -> None: ...
39
55
  def Kiosk_Mode(self) -> None: ...
40
56
  def Show(self, new_tab: bool = False) -> None: ...
41
57
  def Close(self) -> None: ...
42
58
  @property
43
- def caption(self): ...
44
- @caption.setter
45
- def caption(self, value) -> None: ...
59
+ def Caption(self): ...
60
+ @Caption.setter
61
+ def Caption(self, value) -> None: ...
46
62
  def onCreate(self) -> None: ...
63
+ @property
64
+ def icon(self): ...
65
+ @icon.setter
66
+ def icon(self, url) -> None: ...
47
67
 
48
68
  class TLabel(TComponent):
49
69
  ui: Incomplete
@@ -166,6 +186,22 @@ class TVCLLayoutBase(TComponent):
166
186
  def Color(self): ...
167
187
  @Color.setter
168
188
  def Color(self, value) -> None: ...
189
+ @property
190
+ def Gap_Top(self): ...
191
+ @Gap_Top.setter
192
+ def Gap_Top(self, v) -> None: ...
193
+ @property
194
+ def Gap_Bottom(self): ...
195
+ @Gap_Bottom.setter
196
+ def Gap_Bottom(self, v) -> None: ...
197
+ @property
198
+ def Gap_Left(self): ...
199
+ @Gap_Left.setter
200
+ def Gap_Left(self, v) -> None: ...
201
+ @property
202
+ def Gap_Right(self): ...
203
+ @Gap_Right.setter
204
+ def Gap_Right(self, v) -> None: ...
169
205
 
170
206
  class THLayout(TVCLLayoutBase):
171
207
  ui: Incomplete
@@ -228,3 +264,65 @@ class TCheckBox(TComponent):
228
264
  def Caption(self): ...
229
265
  @Caption.setter
230
266
  def caption(self, value) -> None: ...
267
+
268
+ class TMediaPlayer(TComponent):
269
+ ui_container: Incomplete
270
+ ui: Incomplete
271
+ def __init__(self, parent=None) -> None: ...
272
+ player: Incomplete
273
+ def LoadMedia(self, url: str): ...
274
+ def Play(self) -> None: ...
275
+ def Pause(self) -> None: ...
276
+ @property
277
+ def Autoplay(self): ...
278
+ @Autoplay.setter
279
+ def Autoplay(self, v) -> None: ...
280
+ @property
281
+ def Muted(self): ...
282
+ @Muted.setter
283
+ def Muted(self, v) -> None: ...
284
+ @property
285
+ def Visible(self): ...
286
+ @Visible.setter
287
+ def Visible(self, v: bool): ...
288
+ @property
289
+ def Volume(self): ...
290
+ @Volume.setter
291
+ def Volume(self, value) -> None: ...
292
+
293
+ class TSlideBar(TComponent):
294
+ onChange: Incomplete
295
+ ui: Incomplete
296
+ def __init__(self, parent=None) -> None: ...
297
+ @property
298
+ def Position(self): ...
299
+ @Position.setter
300
+ def Position(self, v) -> None: ...
301
+ @property
302
+ def Min(self): ...
303
+ @Min.setter
304
+ def Min(self, v) -> None: ...
305
+ @property
306
+ def Max(self): ...
307
+ @Max.setter
308
+ def Max(self, v) -> None: ...
309
+
310
+ class TProgressBar(TComponent):
311
+ ui: Incomplete
312
+ def __init__(self, parent=None) -> None: ...
313
+ @property
314
+ def Position(self): ...
315
+ @Position.setter
316
+ def Position(self, v) -> None: ...
317
+ @property
318
+ def Min(self): ...
319
+ @Min.setter
320
+ def Min(self, v) -> None: ...
321
+ @property
322
+ def Max(self): ...
323
+ @Max.setter
324
+ def Max(self, v) -> None: ...
325
+ @property
326
+ def BarColor(self): ...
327
+ @BarColor.setter
328
+ def BarColor(self, v) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2605.801
3
+ Version: 1.2605.1201
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,15 @@ Dynamic: license-file
34
34
  #WebGUIAPI
35
35
 
36
36
  ## History of version
37
+ Version 1.2605.1201: 2026/05/12<BR>
38
+ Modify TVlayout/THlayout: Include property Gap_xxx
39
+ Modify TComponent: include WidthR/HeightR (Auto resize by ratio)
40
+
41
+
42
+ Version 1.2605.0802: 2026/05/08<BR>
43
+ Add TMediaPlayer, TProgressBar
44
+
45
+
37
46
  Version 1.2605.0801: 2026/05/08<BR>
38
47
  Fixed problem: TPanel, TImage layer
39
48
  Fixed container : TVLayout
File without changes