WebGUIAPI 1.2604.2809__tar.gz → 1.2604.2811__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.2811
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.2604.2811: 2026/04/28<BR>
38
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
+
40
+
41
+ Version 1.2604.2810: 2026/04/28<BR>
42
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
43
+
44
+
37
45
  Version 1.2604.2808: 2026/04/28<BR>
38
46
  Add TGridLayout
39
47
  Fixed THLayout and TVLayout many problems.
@@ -1,6 +1,14 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2604.2811: 2026/04/28<BR>
5
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
6
+
7
+
8
+ Version 1.2604.2810: 2026/04/28<BR>
9
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
10
+
11
+
4
12
  Version 1.2604.2808: 2026/04/28<BR>
5
13
  Add TGridLayout
6
14
  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.2811"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -35,11 +35,37 @@ class TComponent:
35
35
  @Color.setter
36
36
  def Color(self, v) -> None: ...
37
37
 
38
+ class TVCLLayoutBase(TComponent): ...
39
+
40
+ class THLayout(TVCLLayoutBase):
41
+ ui: Incomplete
42
+ def __init__(self, parent=None) -> None: ...
43
+ def add_child_style(self, child) -> None: ...
44
+
45
+ class TVLayout(TVCLLayoutBase):
46
+ ui: Incomplete
47
+ def __init__(self, parent=None) -> None: ...
48
+ def add_child_style(self, child) -> None: ...
49
+
50
+ class TGridLayout(TVCLLayoutBase):
51
+ ui: Incomplete
52
+ def __init__(self, parent=None) -> None: ...
53
+ @property
54
+ def Cols(self): ...
55
+ @Cols.setter
56
+ def Cols(self, v) -> None: ...
57
+ @property
58
+ def Rows(self): ...
59
+ @Rows.setter
60
+ def Rows(self, v) -> None: ...
61
+ def Grid(self, row, col): ...
62
+ def add_child_style(self, child) -> None: ...
63
+
38
64
  class TForm(TComponent):
39
65
  url: Incomplete
40
66
  is_kiosk: Incomplete
41
67
  ui: Incomplete
42
- def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
68
+ def __init__(self, url: str = '/', title: str = 'Untitle Web Form', kiosk: bool = False) -> None: ...
43
69
  def Kiosk_Mode(self) -> None: ...
44
70
  def Show(self, new_tab: bool = False) -> None: ...
45
71
  def Close(self) -> None: ...
@@ -56,6 +82,68 @@ class TStrings:
56
82
  @property
57
83
  def Strings(self): ...
58
84
 
85
+ class TEdit(TComponent):
86
+ onChange: Incomplete
87
+ ui: Incomplete
88
+ def __init__(self, parent=None, text: str = '') -> None: ...
89
+ @property
90
+ def Text(self): ...
91
+ @Text.setter
92
+ def Text(self, v) -> None: ...
93
+ @property
94
+ def ReadOnly(self): ...
95
+ @ReadOnly.setter
96
+ def ReadOnly(self, v: bool): ...
97
+
98
+ class TMemo(TComponent):
99
+ onChange: Incomplete
100
+ ui: Incomplete
101
+ def __init__(self, parent=None, text: str = '') -> None: ...
102
+ @property
103
+ def Lines(self): ...
104
+ @Lines.setter
105
+ def Lines(self, v) -> None: ...
106
+ @property
107
+ def ReadOnly(self): ...
108
+ @ReadOnly.setter
109
+ def ReadOnly(self, v: bool): ...
110
+
111
+ class TRadioButton(TComponent):
112
+ on_click: Incomplete
113
+ ui: Incomplete
114
+ def __init__(self, parent=None, caption: str = 'RadioButton') -> None: ...
115
+ @property
116
+ def Checked(self) -> bool: ...
117
+ @Checked.setter
118
+ def Checked(self, v: bool): ...
119
+ @property
120
+ def caption(self): ...
121
+ @caption.setter
122
+ def caption(self, value) -> None: ...
123
+
124
+ class TGroupBox(TVLayout):
125
+ group_wrapper: Incomplete
126
+ legend: Incomplete
127
+ ui: Incomplete
128
+ def __init__(self, parent=None, caption: str = 'GroupBox') -> None: ...
129
+ @property
130
+ def caption(self): ...
131
+ @caption.setter
132
+ def caption(self, value) -> None: ...
133
+
134
+ class TCheckBox(TComponent):
135
+ onChange: Incomplete
136
+ ui: Incomplete
137
+ def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
138
+ @property
139
+ def Checked(self) -> bool: ...
140
+ @Checked.setter
141
+ def Checked(self, v: bool): ...
142
+ @property
143
+ def caption(self): ...
144
+ @caption.setter
145
+ def caption(self, value) -> None: ...
146
+
59
147
  class TListBox(TComponent):
60
148
  onClick: Incomplete
61
149
  ui: Incomplete
@@ -67,6 +155,14 @@ class TListBox(TComponent):
67
155
  @ItemIndex.setter
68
156
  def ItemIndex(self, v) -> None: ...
69
157
 
158
+ class TLabel(TComponent):
159
+ ui: Incomplete
160
+ def __init__(self, parent=None, caption: str = '') -> None: ...
161
+ @property
162
+ def caption(self): ...
163
+ @caption.setter
164
+ def caption(self, value) -> None: ...
165
+
70
166
  class TComboBox(TComponent):
71
167
  onChange: Incomplete
72
168
  ui: Incomplete
@@ -95,28 +191,29 @@ class TButton(TComponent):
95
191
  @caption.setter
96
192
  def caption(self, value) -> None: ...
97
193
 
98
- class TVCLLayoutBase(TComponent): ...
99
-
100
- class THLayout(TVCLLayoutBase):
101
- ui: Incomplete
102
- def __init__(self, parent=None) -> None: ...
103
- def add_child_style(self, child) -> None: ...
104
-
105
- class TVLayout(TVCLLayoutBase):
194
+ class TPageControl(TComponent):
195
+ onChange: Incomplete
196
+ onChanging: Incomplete
197
+ pages: Incomplete
106
198
  ui: Incomplete
199
+ tab_bar: Incomplete
200
+ tab_panels: Incomplete
107
201
  def __init__(self, parent=None) -> None: ...
108
- def add_child_style(self, child) -> None: ...
202
+ @property
203
+ def ActivePageIndex(self): ...
204
+ @ActivePageIndex.setter
205
+ def ActivePageIndex(self, index) -> None: ...
206
+ @property
207
+ def ActivePage(self): ...
208
+ @ActivePage.setter
209
+ def ActivePage(self, page_obj) -> None: ...
109
210
 
110
- class TGridLayout(TVCLLayoutBase):
211
+ class TTabSheet(TVLayout):
212
+ tab_header: Incomplete
213
+ panel_ui: Incomplete
111
214
  ui: Incomplete
112
- def __init__(self, parent=None) -> None: ...
113
- @property
114
- def Cols(self): ...
115
- @Cols.setter
116
- def Cols(self, v) -> None: ...
215
+ def __init__(self, page_control: TPageControl, caption: str = 'TabSheet') -> None: ...
117
216
  @property
118
- def Rows(self): ...
119
- @Rows.setter
120
- def Rows(self, v) -> None: ...
121
- def Grid(self, row, col): ...
122
- def add_child_style(self, child) -> None: ...
217
+ def caption(self): ...
218
+ @caption.setter
219
+ def caption(self, value) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2809
3
+ Version: 1.2604.2811
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.2604.2811: 2026/04/28<BR>
38
+ Fixed TVLayout/THLayout/TGridLayout Undefined error.
39
+
40
+
41
+ Version 1.2604.2810: 2026/04/28<BR>
42
+ Add TPageControl, TGroupBox, TRadioButton, TCheckBox
43
+
44
+
37
45
  Version 1.2604.2808: 2026/04/28<BR>
38
46
  Add TGridLayout
39
47
  Fixed THLayout and TVLayout many problems.
File without changes