WebGUIAPI 1.2605.2001__tar.gz → 1.2605.2102__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.2102
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,21 @@ Dynamic: license-file
37
37
  #WebGUIAPI
38
38
 
39
39
  ## History of version
40
+ Version 1.2605.2102: 2026/05/21<BR>
41
+ Fixed TComponent::TTabSheet Enabled bug
42
+
43
+
44
+ Version 1.2605.2101: 2026/05/21<BR>
45
+ Add new TPanel
46
+ Add new properties: Enabled, Visible for TComponent
47
+ Fixed TPageControl bugs.
48
+
49
+
40
50
  Version 1.2605.2001: 2026/05/20<BR>
41
51
  Add new component TPageControl, TTabSheet.
42
52
  Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
43
53
  Fix TImage problem and add display style properties.
44
54
 
45
-
46
55
  Version 1.2605.1401: 2026/05/14<BR>
47
56
  Add Components:
48
57
  TDateComboBox, TTimeComboBox, TRadioButton
@@ -51,7 +60,6 @@ TMemo: Add OnChange Event
51
60
  TComponent:
52
61
  Add OnClick Event
53
62
 
54
-
55
63
  Version 1.2605.1202: 2026/05/12<BR>
56
64
  Fixed:Prevent flash exit in different os.
57
65
 
@@ -1,12 +1,21 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2605.2102: 2026/05/21<BR>
5
+ Fixed TComponent::TTabSheet Enabled bug
6
+
7
+
8
+ Version 1.2605.2101: 2026/05/21<BR>
9
+ Add new TPanel
10
+ Add new properties: Enabled, Visible for TComponent
11
+ Fixed TPageControl bugs.
12
+
13
+
4
14
  Version 1.2605.2001: 2026/05/20<BR>
5
15
  Add new component TPageControl, TTabSheet.
6
16
  Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
7
17
  Fix TImage problem and add display style properties.
8
18
 
9
-
10
19
  Version 1.2605.1401: 2026/05/14<BR>
11
20
  Add Components:
12
21
  TDateComboBox, TTimeComboBox, TRadioButton
@@ -15,7 +24,6 @@ TMemo: Add OnChange Event
15
24
  TComponent:
16
25
  Add OnClick Event
17
26
 
18
-
19
27
  Version 1.2605.1202: 2026/05/12<BR>
20
28
  Fixed:Prevent flash exit in different os.
21
29
 
@@ -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.2102"
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,31 @@ 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 Enabled(self): ...
55
+ @Enabled.setter
56
+ def Enabled(self, v: bool): ...
57
+ @property
58
+ def Visible(self): ...
59
+ @Visible.setter
60
+ def Visible(self, v: bool): ...
61
+ @property
62
+ def Align(self): ...
63
+ @Align.setter
64
+ def Align(self, v) -> None: ...
65
+ @property
66
+ def Left(self): ...
67
+ @Left.setter
68
+ def Left(self, v) -> None: ...
69
+ @property
70
+ def Top(self): ...
71
+ @Top.setter
72
+ def Top(self, v) -> None: ...
73
+ @property
51
74
  def FontName(self): ...
52
75
  @FontName.setter
53
76
  def FontName(self, v) -> None: ...
@@ -112,7 +135,7 @@ class TForm:
112
135
  class TLabel(TComponent):
113
136
  onClick: Incomplete
114
137
  ui: Incomplete
115
- def __init__(self, parent=None, caption: str = '') -> None: ...
138
+ def __init__(self, parent=None, caption: str = '', onClick=None) -> None: ...
116
139
  @property
117
140
  def Caption(self): ...
118
141
  @Caption.setter
@@ -143,8 +166,9 @@ class TButtonShape(Enum):
143
166
  Circle = 'Circle'
144
167
 
145
168
  class TButton(TComponent):
169
+ onClick: Incomplete
146
170
  ui: Incomplete
147
- def __init__(self, parent=None, caption: str = 'Button') -> None: ...
171
+ def __init__(self, parent=None, caption: str = 'Button', onClick=None) -> None: ...
148
172
  @property
149
173
  def Shape(self) -> TButtonShape: ...
150
174
  @Shape.setter
@@ -155,10 +179,10 @@ class TButton(TComponent):
155
179
  def Caption(self, value) -> None: ...
156
180
 
157
181
  class TCheckBox(TComponent):
182
+ onClick: Incomplete
158
183
  onChange: Incomplete
159
- onCLick: Incomplete
160
184
  ui: Incomplete
161
- def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
185
+ def __init__(self, parent=None, caption: str = 'CheckBox', onClick=None, onChange=None) -> None: ...
162
186
  @property
163
187
  def Checked(self) -> bool: ...
164
188
  @Checked.setter
@@ -201,24 +225,34 @@ class TStringGrid(TComponent):
201
225
  def set_data(self, rows) -> None: ...
202
226
 
203
227
  class TPanel(TComponent):
228
+ panel_ui: Incomplete
204
229
  ui: Incomplete
205
- def __init__(self, parent=None, width=None, height=None) -> None: ...
230
+ def __init__(self, parent=None, width: int = 300, height: int = 200) -> None: ...
206
231
  @property
207
- def Width(self): ...
208
- @Width.setter
209
- def Width(self, value) -> None: ...
232
+ def Visible(self): ...
233
+ @Visible.setter
234
+ def Visible(self, v: bool): ...
210
235
  @property
211
- def Height(self): ...
212
- @Height.setter
213
- def Height(self, value) -> None: ...
236
+ def Sizeable(self): ...
237
+ @Sizeable.setter
238
+ def Sizeable(self, v: bool): ...
214
239
  @property
215
- def Color(self): ...
216
- @Color.setter
217
- def Color(self, value) -> None: ...
240
+ def DragDrop(self): ...
241
+ @DragDrop.setter
242
+ def DragDrop(self, value: bool): ...
243
+ def handle_sync_all(self, l, t, w, h) -> None: ...
244
+ @property
245
+ def Opacity(self): ...
246
+ @Opacity.setter
247
+ def Opacity(self, value: int): ...
248
+ @property
249
+ def ZOrder(self): ...
250
+ @ZOrder.setter
251
+ def ZOrder(self, value: int): ...
218
252
  @property
219
- def Image(self): ...
220
- @Image.setter
221
- def Image(self, src) -> None: ...
253
+ def BorderRadius(self): ...
254
+ @BorderRadius.setter
255
+ def BorderRadius(self, value: int): ...
222
256
 
223
257
  class TImage(TComponent):
224
258
  onLoadImage: Incomplete
@@ -488,6 +522,10 @@ class TPageControl(TComponent):
488
522
  ActivePageIndex: int
489
523
  def NewTabSheet(self, caption: str = 'New Page'): ...
490
524
  @property
525
+ def Enabled(self): ...
526
+ @Enabled.setter
527
+ def Enabled(self, v: bool): ...
528
+ @property
491
529
  def FocusColor(self): ...
492
530
  @FocusColor.setter
493
531
  def FocusColor(self, value) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2605.2001
3
+ Version: 1.2605.2102
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,21 @@ Dynamic: license-file
37
37
  #WebGUIAPI
38
38
 
39
39
  ## History of version
40
+ Version 1.2605.2102: 2026/05/21<BR>
41
+ Fixed TComponent::TTabSheet Enabled bug
42
+
43
+
44
+ Version 1.2605.2101: 2026/05/21<BR>
45
+ Add new TPanel
46
+ Add new properties: Enabled, Visible for TComponent
47
+ Fixed TPageControl bugs.
48
+
49
+
40
50
  Version 1.2605.2001: 2026/05/20<BR>
41
51
  Add new component TPageControl, TTabSheet.
42
52
  Implement events onMouseKeyDown, onMouseKeyUp, onKeyDown, onKeyUp for TComponent
43
53
  Fix TImage problem and add display style properties.
44
54
 
45
-
46
55
  Version 1.2605.1401: 2026/05/14<BR>
47
56
  Add Components:
48
57
  TDateComboBox, TTimeComboBox, TRadioButton
@@ -51,7 +60,6 @@ TMemo: Add OnChange Event
51
60
  TComponent:
52
61
  Add OnClick Event
53
62
 
54
-
55
63
  Version 1.2605.1202: 2026/05/12<BR>
56
64
  Fixed:Prevent flash exit in different os.
57
65
 
File without changes