WebGUIAPI 1.2604.2807__tar.gz → 1.2604.2809__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.
- {webguiapi-1.2604.2807/src/WebGUIAPI.egg-info → webguiapi-1.2604.2809}/PKG-INFO +5 -1
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/README.md +4 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/pyproject.toml +1 -1
- webguiapi-1.2604.2809/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/src/WebGUIAPI/WebGUIvcl.pyi +45 -128
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809/src/WebGUIAPI.egg-info}/PKG-INFO +5 -1
- webguiapi-1.2604.2807/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/LICENSE +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/MANIFEST.in +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/setup.cfg +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2604.2807 → webguiapi-1.2604.2809}/src/WebGUIAPI.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2604.
|
|
3
|
+
Version: 1.2604.2809
|
|
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
|
|
|
Binary file
|
|
@@ -1,11 +1,24 @@
|
|
|
1
1
|
from _typeshed import Incomplete
|
|
2
2
|
from enum import Enum
|
|
3
3
|
|
|
4
|
+
class TButtonShape(Enum):
|
|
5
|
+
Rectangle = 'Rectangle'
|
|
6
|
+
RoundRect = 'RoundRect'
|
|
7
|
+
Circle = 'Circle'
|
|
8
|
+
|
|
4
9
|
class TComponent:
|
|
5
10
|
parent: Incomplete
|
|
6
11
|
children: Incomplete
|
|
7
12
|
def __init__(self, parent=None) -> None: ...
|
|
8
13
|
@property
|
|
14
|
+
def Width(self): ...
|
|
15
|
+
@Width.setter
|
|
16
|
+
def Width(self, v) -> None: ...
|
|
17
|
+
@property
|
|
18
|
+
def Height(self): ...
|
|
19
|
+
@Height.setter
|
|
20
|
+
def Height(self, v) -> None: ...
|
|
21
|
+
@property
|
|
9
22
|
def FontName(self): ...
|
|
10
23
|
@FontName.setter
|
|
11
24
|
def FontName(self, v) -> None: ...
|
|
@@ -21,19 +34,10 @@ class TComponent:
|
|
|
21
34
|
def Color(self): ...
|
|
22
35
|
@Color.setter
|
|
23
36
|
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
37
|
|
|
33
|
-
class TForm:
|
|
38
|
+
class TForm(TComponent):
|
|
34
39
|
url: Incomplete
|
|
35
40
|
is_kiosk: Incomplete
|
|
36
|
-
children: Incomplete
|
|
37
41
|
ui: Incomplete
|
|
38
42
|
def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
|
|
39
43
|
def Kiosk_Mode(self) -> None: ...
|
|
@@ -45,56 +49,28 @@ class TForm:
|
|
|
45
49
|
def caption(self, value) -> None: ...
|
|
46
50
|
def onCreate(self) -> None: ...
|
|
47
51
|
|
|
48
|
-
class
|
|
49
|
-
|
|
50
|
-
def
|
|
51
|
-
|
|
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: ...
|
|
52
|
+
class TStrings:
|
|
53
|
+
def __init__(self, owner, on_change_callback) -> None: ...
|
|
54
|
+
def Add(self, text): ...
|
|
55
|
+
def Clear(self) -> None: ...
|
|
60
56
|
@property
|
|
61
|
-
def
|
|
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'
|
|
57
|
+
def Strings(self): ...
|
|
73
58
|
|
|
74
|
-
class
|
|
59
|
+
class TListBox(TComponent):
|
|
75
60
|
onClick: Incomplete
|
|
76
61
|
ui: Incomplete
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
def
|
|
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: ...
|
|
62
|
+
list_container: Incomplete
|
|
63
|
+
Items: Incomplete
|
|
64
|
+
def __init__(self, parent=None) -> None: ...
|
|
90
65
|
@property
|
|
91
|
-
def
|
|
92
|
-
@
|
|
93
|
-
def
|
|
66
|
+
def ItemIndex(self): ...
|
|
67
|
+
@ItemIndex.setter
|
|
68
|
+
def ItemIndex(self, v) -> None: ...
|
|
94
69
|
|
|
95
70
|
class TComboBox(TComponent):
|
|
96
71
|
onChange: Incomplete
|
|
97
72
|
ui: Incomplete
|
|
73
|
+
Items: Incomplete
|
|
98
74
|
def __init__(self, parent=None, items=None) -> None: ...
|
|
99
75
|
@property
|
|
100
76
|
def ItemIndex(self): ...
|
|
@@ -106,63 +82,20 @@ class TStringGrid(TComponent):
|
|
|
106
82
|
def __init__(self, parent=None, columns=None) -> None: ...
|
|
107
83
|
def set_data(self, rows) -> None: ...
|
|
108
84
|
|
|
109
|
-
class
|
|
110
|
-
|
|
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
|
|
85
|
+
class TButton(TComponent):
|
|
86
|
+
onClick: Incomplete
|
|
132
87
|
ui: Incomplete
|
|
133
|
-
def __init__(self, parent=None,
|
|
134
|
-
def LoadImage(self, src) -> None: ...
|
|
88
|
+
def __init__(self, parent=None, caption: str = 'Button') -> None: ...
|
|
135
89
|
@property
|
|
136
|
-
def
|
|
137
|
-
@
|
|
138
|
-
def
|
|
90
|
+
def Shape(self) -> TButtonShape: ...
|
|
91
|
+
@Shape.setter
|
|
92
|
+
def Shape(self, v: TButtonShape): ...
|
|
139
93
|
@property
|
|
140
|
-
def
|
|
141
|
-
@
|
|
142
|
-
def
|
|
94
|
+
def caption(self): ...
|
|
95
|
+
@caption.setter
|
|
96
|
+
def caption(self, value) -> None: ...
|
|
143
97
|
|
|
144
|
-
class
|
|
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: ...
|
|
98
|
+
class TVCLLayoutBase(TComponent): ...
|
|
166
99
|
|
|
167
100
|
class THLayout(TVCLLayoutBase):
|
|
168
101
|
ui: Incomplete
|
|
@@ -175,31 +108,15 @@ class TVLayout(TVCLLayoutBase):
|
|
|
175
108
|
def add_child_style(self, child) -> None: ...
|
|
176
109
|
|
|
177
110
|
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
111
|
ui: Incomplete
|
|
185
112
|
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
113
|
@property
|
|
194
|
-
def
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
onClick: Incomplete
|
|
198
|
-
ui: Incomplete
|
|
199
|
-
list_container: Incomplete
|
|
200
|
-
Items: Incomplete
|
|
201
|
-
def __init__(self, parent=None) -> None: ...
|
|
114
|
+
def Cols(self): ...
|
|
115
|
+
@Cols.setter
|
|
116
|
+
def Cols(self, v) -> None: ...
|
|
202
117
|
@property
|
|
203
|
-
def
|
|
204
|
-
@
|
|
205
|
-
def
|
|
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: ...
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: WebGUIAPI
|
|
3
|
-
Version: 1.2604.
|
|
3
|
+
Version: 1.2604.2809
|
|
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
|
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|