WebGUIAPI 1.2604.2901__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2901
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,14 @@ 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
+
41
+ Version 1.2605.0801: 2026/05/08<BR>
42
+ Fixed problem: TPanel, TImage layer
43
+ Fixed container : TVLayout
44
+
37
45
  Version 1.2604.2901: 2026/04/29<BR>
38
46
  Fixed TCheckBox problem.
39
47
 
@@ -1,6 +1,14 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.0802: 2026/05/08<BR>
5
+ Add TMediaPlayer, TProgressBar
6
+
7
+
8
+ Version 1.2605.0801: 2026/05/08<BR>
9
+ Fixed problem: TPanel, TImage layer
10
+ Fixed container : TVLayout
11
+
4
12
  Version 1.2604.2901: 2026/04/29<BR>
5
13
  Fixed TCheckBox problem.
6
14
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2901"
7
+ version = "1.2605.0802"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -35,23 +35,27 @@ 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 caption(self): ...
44
- @caption.setter
45
- def caption(self, value) -> None: ...
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
50
54
  def __init__(self, parent=None, caption: str = '') -> None: ...
51
55
  @property
52
- def caption(self): ...
53
- @caption.setter
54
- def caption(self, value) -> None: ...
56
+ def Caption(self): ...
57
+ @Caption.setter
58
+ def Caption(self, value) -> None: ...
55
59
 
56
60
  class TEdit(TComponent):
57
61
  onChange: Incomplete
@@ -80,9 +84,9 @@ class TButton(TComponent):
80
84
  @Shape.setter
81
85
  def Shape(self, v: TButtonShape): ...
82
86
  @property
83
- def caption(self): ...
84
- @caption.setter
85
- def caption(self, value) -> None: ...
87
+ def Caption(self): ...
88
+ @Caption.setter
89
+ def Caption(self, value) -> None: ...
86
90
 
87
91
  class TCheckBox(TComponent):
88
92
  ui: Incomplete
@@ -129,8 +133,11 @@ class TPanel(TComponent):
129
133
  class TImage(TComponent):
130
134
  Align: Incomplete
131
135
  Stretch: bool
136
+ wrapper: Incomplete
137
+ img_obj: Incomplete
132
138
  ui: Incomplete
133
139
  def __init__(self, parent=None, src: str = '', width=None, height=None) -> None: ...
140
+ def add_child_style(self, child) -> None: ...
134
141
  def LoadImage(self, src) -> None: ...
135
142
  @property
136
143
  def Width(self): ...
@@ -222,6 +229,68 @@ class TCheckBox(TComponent):
222
229
  @Checked.setter
223
230
  def Checked(self, v: bool): ...
224
231
  @property
225
- def caption(self): ...
226
- @caption.setter
232
+ def Caption(self): ...
233
+ @Caption.setter
227
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.2604.2901
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,14 @@ 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
+
41
+ Version 1.2605.0801: 2026/05/08<BR>
42
+ Fixed problem: TPanel, TImage layer
43
+ Fixed container : TVLayout
44
+
37
45
  Version 1.2604.2901: 2026/04/29<BR>
38
46
  Fixed TCheckBox problem.
39
47
 
File without changes