WebGUIAPI 1.2605.2001__tar.gz → 1.2605.2101__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.2001
3
+ Version: 1.2605.2101
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,17 @@ Dynamic: license-file
37
37
  #WebGUIAPI
38
38
 
39
39
  ## History of version
40
+ Version 1.2605.2101: 2026/05/21<BR>
41
+ Add new TPanel
42
+ Add new properties: Enabled, Visible for TComponent
43
+ Fixed TPageControl bugs.
44
+
45
+
40
46
  Version 1.2605.2001: 2026/05/20<BR>
41
47
  Add new component TPageControl, TTabSheet.
42
48
  Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
43
49
  Fix TImage problem and add display style properties.
44
50
 
45
-
46
51
  Version 1.2605.1401: 2026/05/14<BR>
47
52
  Add Components:
48
53
  TDateComboBox, TTimeComboBox, TRadioButton
@@ -51,7 +56,6 @@ TMemo: Add OnChange Event
51
56
  TComponent:
52
57
  Add OnClick Event
53
58
 
54
-
55
59
  Version 1.2605.1202: 2026/05/12<BR>
56
60
  Fixed:Prevent flash exit in different os.
57
61
 
@@ -1,12 +1,17 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.2101: 2026/05/21<BR>
5
+ Add new TPanel
6
+ Add new properties: Enabled, Visible for TComponent
7
+ Fixed TPageControl bugs.
8
+
9
+
4
10
  Version 1.2605.2001: 2026/05/20<BR>
5
11
  Add new component TPageControl, TTabSheet.
6
12
  Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
7
13
  Fix TImage problem and add display style properties.
8
14
 
9
-
10
15
  Version 1.2605.1401: 2026/05/14<BR>
11
16
  Add Components:
12
17
  TDateComboBox, TTimeComboBox, TRadioButton
@@ -15,7 +20,6 @@ TMemo: Add OnChange Event
15
20
  TComponent:
16
21
  Add OnClick Event
17
22
 
18
-
19
23
  Version 1.2605.1202: 2026/05/12<BR>
20
24
  Fixed:Prevent flash exit in different os.
21
25
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2605.2001"
7
+ version = "1.2605.2101"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -1,3 +1,4 @@
1
+ import types
1
2
  from _typeshed import Incomplete
2
3
  from enum import Enum
3
4
 
@@ -45,9 +46,23 @@ 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 Align(self): ...
55
+ @Align.setter
56
+ def Align(self, v) -> None: ...
57
+ @property
58
+ def Left(self): ...
59
+ @Left.setter
60
+ def Left(self, v) -> None: ...
61
+ @property
62
+ def Top(self): ...
63
+ @Top.setter
64
+ def Top(self, v) -> None: ...
65
+ @property
51
66
  def FontName(self): ...
52
67
  @FontName.setter
53
68
  def FontName(self, v) -> None: ...
@@ -112,7 +127,7 @@ class TForm:
112
127
  class TLabel(TComponent):
113
128
  onClick: Incomplete
114
129
  ui: Incomplete
115
- def __init__(self, parent=None, caption: str = '') -> None: ...
130
+ def __init__(self, parent=None, caption: str = '', onClick=None) -> None: ...
116
131
  @property
117
132
  def Caption(self): ...
118
133
  @Caption.setter
@@ -143,8 +158,9 @@ class TButtonShape(Enum):
143
158
  Circle = 'Circle'
144
159
 
145
160
  class TButton(TComponent):
161
+ onClick: Incomplete
146
162
  ui: Incomplete
147
- def __init__(self, parent=None, caption: str = 'Button') -> None: ...
163
+ def __init__(self, parent=None, caption: str = 'Button', onClick=None) -> None: ...
148
164
  @property
149
165
  def Shape(self) -> TButtonShape: ...
150
166
  @Shape.setter
@@ -155,10 +171,10 @@ class TButton(TComponent):
155
171
  def Caption(self, value) -> None: ...
156
172
 
157
173
  class TCheckBox(TComponent):
174
+ onClick: Incomplete
158
175
  onChange: Incomplete
159
- onCLick: Incomplete
160
176
  ui: Incomplete
161
- def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
177
+ def __init__(self, parent=None, caption: str = 'CheckBox', onClick=None, onChange=None) -> None: ...
162
178
  @property
163
179
  def Checked(self) -> bool: ...
164
180
  @Checked.setter
@@ -201,24 +217,26 @@ class TStringGrid(TComponent):
201
217
  def set_data(self, rows) -> None: ...
202
218
 
203
219
  class TPanel(TComponent):
220
+ panel_ui: Incomplete
204
221
  ui: Incomplete
205
- def __init__(self, parent=None, width=None, height=None) -> None: ...
222
+ def __init__(self, parent=None, width: int = 300, height: int = 200) -> None: ...
206
223
  @property
207
- def Width(self): ...
208
- @Width.setter
209
- def Width(self, value) -> None: ...
224
+ def DragDrop(self): ...
225
+ @DragDrop.setter
226
+ def DragDrop(self, value: bool): ...
227
+ def handle_sync_all(self, l, t, w, h) -> None: ...
210
228
  @property
211
- def Height(self): ...
212
- @Height.setter
213
- def Height(self, value) -> None: ...
229
+ def Opacity(self): ...
230
+ @Opacity.setter
231
+ def Opacity(self, value: int): ...
214
232
  @property
215
- def Color(self): ...
216
- @Color.setter
217
- def Color(self, value) -> None: ...
233
+ def ZOrder(self): ...
234
+ @ZOrder.setter
235
+ def ZOrder(self, value: int): ...
218
236
  @property
219
- def Image(self): ...
220
- @Image.setter
221
- def Image(self, src) -> None: ...
237
+ def BorderRadius(self): ...
238
+ @BorderRadius.setter
239
+ def BorderRadius(self, value: int): ...
222
240
 
223
241
  class TImage(TComponent):
224
242
  onLoadImage: Incomplete
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2605.2001
3
+ Version: 1.2605.2101
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,17 @@ Dynamic: license-file
37
37
  #WebGUIAPI
38
38
 
39
39
  ## History of version
40
+ Version 1.2605.2101: 2026/05/21<BR>
41
+ Add new TPanel
42
+ Add new properties: Enabled, Visible for TComponent
43
+ Fixed TPageControl bugs.
44
+
45
+
40
46
  Version 1.2605.2001: 2026/05/20<BR>
41
47
  Add new component TPageControl, TTabSheet.
42
48
  Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
43
49
  Fix TImage problem and add display style properties.
44
50
 
45
-
46
51
  Version 1.2605.1401: 2026/05/14<BR>
47
52
  Add Components:
48
53
  TDateComboBox, TTimeComboBox, TRadioButton
@@ -51,7 +56,6 @@ TMemo: Add OnChange Event
51
56
  TComponent:
52
57
  Add OnClick Event
53
58
 
54
-
55
59
  Version 1.2605.1202: 2026/05/12<BR>
56
60
  Fixed:Prevent flash exit in different os.
57
61
 
File without changes