WebGUIAPI 1.2604.2807__tar.gz → 1.2604.2808__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.2807
3
+ Version: 1.2604.2808
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.2808: 2026/04/28<BR>
38
+ Add TGridLayout
39
+ Fixed THLayout and TVLayout many problems.
40
+
37
41
  Version 1.2604.2807: 2026/04/28<BR>
38
42
  Fixed: TListBox-->_refresh_items(self) items issue.
39
43
 
@@ -1,6 +1,10 @@
1
1
  #WebGUIAPI
2
2
 
3
3
  ## History of version
4
+ Version 1.2604.2808: 2026/04/28<BR>
5
+ Add TGridLayout
6
+ Fixed THLayout and TVLayout many problems.
7
+
4
8
  Version 1.2604.2807: 2026/04/28<BR>
5
9
  Fixed: TListBox-->_refresh_items(self) items issue.
6
10
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2807"
7
+ version = "1.2604.2808"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -0,0 +1,57 @@
1
+ from _typeshed import Incomplete
2
+ from enum import Enum as Enum
3
+
4
+ class TComponent:
5
+ parent: Incomplete
6
+ children: Incomplete
7
+ def __init__(self, parent=None) -> None: ...
8
+ @property
9
+ def Width(self): ...
10
+ @Width.setter
11
+ def Width(self, v) -> None: ...
12
+ @property
13
+ def Height(self): ...
14
+ @Height.setter
15
+ def Height(self, v) -> None: ...
16
+
17
+ class TVCLLayoutBase(TComponent): ...
18
+
19
+ class THLayout(TVCLLayoutBase):
20
+ ui: Incomplete
21
+ def __init__(self, parent=None) -> None: ...
22
+ def add_child_style(self, child) -> None: ...
23
+
24
+ class TGridLayout(TVCLLayoutBase):
25
+ ui: Incomplete
26
+ def __init__(self, parent=None) -> None: ...
27
+ @property
28
+ def Cols(self): ...
29
+ @Cols.setter
30
+ def Cols(self, v) -> None: ...
31
+ @property
32
+ def Rows(self): ...
33
+ @Rows.setter
34
+ def Rows(self, v) -> None: ...
35
+ def Grid(self, row, col): ...
36
+ def add_child_style(self, child) -> None: ...
37
+
38
+ class TStrings:
39
+ def __init__(self, owner, on_change_callback) -> None: ...
40
+ def Add(self, text): ...
41
+ @property
42
+ def Strings(self): ...
43
+
44
+ class TListBox(TComponent):
45
+ onClick: Incomplete
46
+ ui: Incomplete
47
+ list_container: Incomplete
48
+ Items: Incomplete
49
+ def __init__(self, parent=None) -> None: ...
50
+
51
+ class TComboBox(TComponent):
52
+ ui: Incomplete
53
+ def __init__(self, parent=None, items=None) -> None: ...
54
+
55
+ class TForm:
56
+ def __init__(self, url: str = '/', title: str = 'VCL Form') -> None: ...
57
+ def onCreate(self) -> None: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2807
3
+ Version: 1.2604.2808
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.2808: 2026/04/28<BR>
38
+ Add TGridLayout
39
+ Fixed THLayout and TVLayout many problems.
40
+
37
41
  Version 1.2604.2807: 2026/04/28<BR>
38
42
  Fixed: TListBox-->_refresh_items(self) items issue.
39
43
 
@@ -1,205 +0,0 @@
1
- from _typeshed import Incomplete
2
- from enum import Enum
3
-
4
- class TComponent:
5
- parent: Incomplete
6
- children: Incomplete
7
- def __init__(self, parent=None) -> None: ...
8
- @property
9
- def FontName(self): ...
10
- @FontName.setter
11
- def FontName(self, v) -> None: ...
12
- @property
13
- def FontSize(self): ...
14
- @FontSize.setter
15
- def FontSize(self, v) -> None: ...
16
- @property
17
- def FontColor(self): ...
18
- @FontColor.setter
19
- def FontColor(self, v) -> None: ...
20
- @property
21
- def Color(self): ...
22
- @Color.setter
23
- def Color(self, v) -> None: ...
24
- @property
25
- def Width(self): ...
26
- @Width.setter
27
- def Width(self, v) -> None: ...
28
- @property
29
- def Height(self): ...
30
- @Height.setter
31
- def Height(self, v) -> None: ...
32
-
33
- class TForm:
34
- url: Incomplete
35
- is_kiosk: Incomplete
36
- children: Incomplete
37
- ui: Incomplete
38
- def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
39
- def Kiosk_Mode(self) -> None: ...
40
- def Show(self, new_tab: bool = False) -> None: ...
41
- def Close(self) -> None: ...
42
- @property
43
- def caption(self): ...
44
- @caption.setter
45
- def caption(self, value) -> None: ...
46
- def onCreate(self) -> None: ...
47
-
48
- class TLabel(TComponent):
49
- ui: Incomplete
50
- def __init__(self, parent=None, caption: str = '') -> None: ...
51
- @property
52
- def caption(self): ...
53
- @caption.setter
54
- def caption(self, value) -> None: ...
55
-
56
- class TEdit(TComponent):
57
- onChange: Incomplete
58
- ui: Incomplete
59
- def __init__(self, parent=None, text: str = '') -> None: ...
60
- @property
61
- def text(self): ...
62
- @text.setter
63
- def text(self, value) -> None: ...
64
-
65
- class TMemo(TComponent):
66
- ui: Incomplete
67
- def __init__(self, parent=None) -> None: ...
68
-
69
- class TButtonShape(Enum):
70
- Rectangle = 'Rectangle'
71
- RoundRect = 'RoundRect'
72
- Circle = 'Circle'
73
-
74
- class TButton(TComponent):
75
- onClick: Incomplete
76
- ui: Incomplete
77
- def __init__(self, parent=None, caption: str = 'Button') -> None: ...
78
- @property
79
- def Shape(self) -> TButtonShape: ...
80
- @Shape.setter
81
- def Shape(self, v: TButtonShape): ...
82
- @property
83
- def caption(self): ...
84
- @caption.setter
85
- def caption(self, value) -> None: ...
86
-
87
- class TCheckBox(TComponent):
88
- ui: Incomplete
89
- def __init__(self, parent=None, caption: str = '') -> None: ...
90
- @property
91
- def checked(self): ...
92
- @checked.setter
93
- def checked(self, value) -> None: ...
94
-
95
- class TComboBox(TComponent):
96
- onChange: Incomplete
97
- ui: Incomplete
98
- def __init__(self, parent=None, items=None) -> None: ...
99
- @property
100
- def ItemIndex(self): ...
101
- @ItemIndex.setter
102
- def ItemIndex(self, index) -> None: ...
103
-
104
- class TStringGrid(TComponent):
105
- ui: Incomplete
106
- def __init__(self, parent=None, columns=None) -> None: ...
107
- def set_data(self, rows) -> None: ...
108
-
109
- class TPanel(TComponent):
110
- ui: Incomplete
111
- def __init__(self, parent=None, width=None, height=None) -> None: ...
112
- @property
113
- def Width(self): ...
114
- @Width.setter
115
- def Width(self, value) -> None: ...
116
- @property
117
- def Height(self): ...
118
- @Height.setter
119
- def Height(self, value) -> None: ...
120
- @property
121
- def Color(self): ...
122
- @Color.setter
123
- def Color(self, value) -> None: ...
124
- @property
125
- def Image(self): ...
126
- @Image.setter
127
- def Image(self, src) -> None: ...
128
-
129
- class TImage(TComponent):
130
- Align: Incomplete
131
- Stretch: bool
132
- ui: Incomplete
133
- def __init__(self, parent=None, src: str = '', width=None, height=None) -> None: ...
134
- def LoadImage(self, src) -> None: ...
135
- @property
136
- def Width(self): ...
137
- @Width.setter
138
- def Width(self, value) -> None: ...
139
- @property
140
- def Height(self): ...
141
- @Height.setter
142
- def Height(self, value) -> None: ...
143
-
144
- class TTimer:
145
- interval: Incomplete
146
- onTimer: Incomplete
147
- enabled: bool
148
- def __init__(self, interval: float = 1.0) -> None: ...
149
- def start(self) -> None: ...
150
- def stop(self) -> None: ...
151
-
152
- class TVCLLayoutBase(TComponent):
153
- def __init__(self, parent=None) -> None: ...
154
- @property
155
- def Width(self): ...
156
- @Width.setter
157
- def Width(self, value) -> None: ...
158
- @property
159
- def Height(self): ...
160
- @Height.setter
161
- def Height(self, value) -> None: ...
162
- @property
163
- def Color(self): ...
164
- @Color.setter
165
- def Color(self, value) -> None: ...
166
-
167
- class THLayout(TVCLLayoutBase):
168
- ui: Incomplete
169
- def __init__(self, parent=None) -> None: ...
170
- def add_child_style(self, child) -> None: ...
171
-
172
- class TVLayout(TVCLLayoutBase):
173
- ui: Incomplete
174
- def __init__(self, parent=None) -> None: ...
175
- def add_child_style(self, child) -> None: ...
176
-
177
- class TGridLayout(TVCLLayoutBase):
178
- columns: Incomplete
179
- ui: Incomplete
180
- def __init__(self, parent=None, columns: int = 2) -> None: ...
181
- def add_child_style(self, child) -> None: ...
182
-
183
- class TFrame(TComponent):
184
- ui: Incomplete
185
- def __init__(self, parent=None) -> None: ...
186
- def onCreate(self) -> None: ...
187
-
188
- class TStrings:
189
- def __init__(self, owner, on_change_callback) -> None: ...
190
- def Add(self, text): ...
191
- def Delete(self, index) -> None: ...
192
- def Clear(self) -> None: ...
193
- @property
194
- def Strings(self): ...
195
-
196
- class TListBox(TComponent):
197
- onClick: Incomplete
198
- ui: Incomplete
199
- list_container: Incomplete
200
- Items: Incomplete
201
- def __init__(self, parent=None) -> None: ...
202
- @property
203
- def ItemIndex(self): ...
204
- @ItemIndex.setter
205
- def ItemIndex(self, index) -> None: ...
File without changes