WebGUIAPI 1.2604.2809__tar.gz → 1.2604.2810__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.2809
3
+ Version: 1.2604.2810
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.2604.2810: 2026/04/28<BR>
38
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
+
40
+
37
41
  Version 1.2604.2808: 2026/04/28<BR>
38
42
  Add TGridLayout
39
43
  Fixed THLayout and TVLayout many problems.
@@ -1,6 +1,10 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2604.2810: 2026/04/28<BR>
5
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
6
+
7
+
4
8
  Version 1.2604.2808: 2026/04/28<BR>
5
9
  Add TGridLayout
6
10
  Fixed THLayout and TVLayout many problems.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2809"
7
+ version = "1.2604.2810"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -56,6 +56,68 @@ class TStrings:
56
56
  @property
57
57
  def Strings(self): ...
58
58
 
59
+ class TEdit(TComponent):
60
+ onChange: Incomplete
61
+ ui: Incomplete
62
+ def __init__(self, parent=None, text: str = '') -> None: ...
63
+ @property
64
+ def Text(self): ...
65
+ @Text.setter
66
+ def Text(self, v) -> None: ...
67
+ @property
68
+ def ReadOnly(self): ...
69
+ @ReadOnly.setter
70
+ def ReadOnly(self, v: bool): ...
71
+
72
+ class TMemo(TComponent):
73
+ onChange: Incomplete
74
+ ui: Incomplete
75
+ def __init__(self, parent=None, text: str = '') -> None: ...
76
+ @property
77
+ def Lines(self): ...
78
+ @Lines.setter
79
+ def Lines(self, v) -> None: ...
80
+ @property
81
+ def ReadOnly(self): ...
82
+ @ReadOnly.setter
83
+ def ReadOnly(self, v: bool): ...
84
+
85
+ class TRadioButton(TComponent):
86
+ on_click: Incomplete
87
+ ui: Incomplete
88
+ def __init__(self, parent=None, caption: str = 'RadioButton') -> None: ...
89
+ @property
90
+ def Checked(self) -> bool: ...
91
+ @Checked.setter
92
+ def Checked(self, v: bool): ...
93
+ @property
94
+ def caption(self): ...
95
+ @caption.setter
96
+ def caption(self, value) -> None: ...
97
+
98
+ class TGroupBox(TVLayout):
99
+ group_wrapper: Incomplete
100
+ legend: Incomplete
101
+ ui: Incomplete
102
+ def __init__(self, parent=None, caption: str = 'GroupBox') -> None: ...
103
+ @property
104
+ def caption(self): ...
105
+ @caption.setter
106
+ def caption(self, value) -> None: ...
107
+
108
+ class TCheckBox(TComponent):
109
+ onChange: Incomplete
110
+ ui: Incomplete
111
+ def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
112
+ @property
113
+ def Checked(self) -> bool: ...
114
+ @Checked.setter
115
+ def Checked(self, v: bool): ...
116
+ @property
117
+ def caption(self): ...
118
+ @caption.setter
119
+ def caption(self, value) -> None: ...
120
+
59
121
  class TListBox(TComponent):
60
122
  onClick: Incomplete
61
123
  ui: Incomplete
@@ -67,6 +129,14 @@ class TListBox(TComponent):
67
129
  @ItemIndex.setter
68
130
  def ItemIndex(self, v) -> None: ...
69
131
 
132
+ class TLabel(TComponent):
133
+ ui: Incomplete
134
+ def __init__(self, parent=None, caption: str = '') -> None: ...
135
+ @property
136
+ def caption(self): ...
137
+ @caption.setter
138
+ def caption(self, value) -> None: ...
139
+
70
140
  class TComboBox(TComponent):
71
141
  onChange: Incomplete
72
142
  ui: Incomplete
@@ -95,6 +165,33 @@ class TButton(TComponent):
95
165
  @caption.setter
96
166
  def caption(self, value) -> None: ...
97
167
 
168
+ class TPageControl(TComponent):
169
+ onChange: Incomplete
170
+ onChanging: Incomplete
171
+ pages: Incomplete
172
+ ui: Incomplete
173
+ tab_bar: Incomplete
174
+ tab_panels: Incomplete
175
+ def __init__(self, parent=None) -> None: ...
176
+ @property
177
+ def ActivePageIndex(self): ...
178
+ @ActivePageIndex.setter
179
+ def ActivePageIndex(self, index) -> None: ...
180
+ @property
181
+ def ActivePage(self): ...
182
+ @ActivePage.setter
183
+ def ActivePage(self, page_obj) -> None: ...
184
+
185
+ class TTabSheet(TVLayout):
186
+ tab_header: Incomplete
187
+ panel_ui: Incomplete
188
+ ui: Incomplete
189
+ def __init__(self, page_control: TPageControl, caption: str = 'TabSheet') -> None: ...
190
+ @property
191
+ def caption(self): ...
192
+ @caption.setter
193
+ def caption(self, value) -> None: ...
194
+
98
195
  class TVCLLayoutBase(TComponent): ...
99
196
 
100
197
  class THLayout(TVCLLayoutBase):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2809
3
+ Version: 1.2604.2810
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.2604.2810: 2026/04/28<BR>
38
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
39
+
40
+
37
41
  Version 1.2604.2808: 2026/04/28<BR>
38
42
  Add TGridLayout
39
43
  Fixed THLayout and TVLayout many problems.
File without changes