WebGUIAPI 1.2604.2811__tar.gz → 1.2604.2812__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.2811/src/WebGUIAPI.egg-info → webguiapi-1.2604.2812}/PKG-INFO +1 -1
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/pyproject.toml +1 -1
- webguiapi-1.2604.2812/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/src/WebGUIAPI/WebGUIvcl.pyi +171 -114
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812/src/WebGUIAPI.egg-info}/PKG-INFO +1 -1
- webguiapi-1.2604.2811/src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/LICENSE +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/MANIFEST.in +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/README.md +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/setup.cfg +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/src/WebGUIAPI.egg-info/SOURCES.txt +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/src/WebGUIAPI.egg-info/dependency_links.txt +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/src/WebGUIAPI.egg-info/requires.txt +0 -0
- {webguiapi-1.2604.2811 → webguiapi-1.2604.2812}/src/WebGUIAPI.egg-info/top_level.txt +0 -0
|
Binary file
|
|
@@ -1,24 +1,11 @@
|
|
|
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
|
-
|
|
9
4
|
class TComponent:
|
|
10
5
|
parent: Incomplete
|
|
11
6
|
children: Incomplete
|
|
12
7
|
def __init__(self, parent=None) -> None: ...
|
|
13
8
|
@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
|
|
22
9
|
def FontName(self): ...
|
|
23
10
|
@FontName.setter
|
|
24
11
|
def FontName(self, v) -> None: ...
|
|
@@ -34,38 +21,21 @@ class TComponent:
|
|
|
34
21
|
def Color(self): ...
|
|
35
22
|
@Color.setter
|
|
36
23
|
def Color(self, v) -> None: ...
|
|
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
24
|
@property
|
|
54
|
-
def
|
|
55
|
-
@
|
|
56
|
-
def
|
|
25
|
+
def Width(self): ...
|
|
26
|
+
@Width.setter
|
|
27
|
+
def Width(self, v) -> None: ...
|
|
57
28
|
@property
|
|
58
|
-
def
|
|
59
|
-
@
|
|
60
|
-
def
|
|
61
|
-
def Grid(self, row, col): ...
|
|
62
|
-
def add_child_style(self, child) -> None: ...
|
|
29
|
+
def Height(self): ...
|
|
30
|
+
@Height.setter
|
|
31
|
+
def Height(self, v) -> None: ...
|
|
63
32
|
|
|
64
|
-
class TForm
|
|
33
|
+
class TForm:
|
|
65
34
|
url: Incomplete
|
|
66
35
|
is_kiosk: Incomplete
|
|
36
|
+
children: Incomplete
|
|
67
37
|
ui: Incomplete
|
|
68
|
-
def __init__(self, url: str = '/', title: str = '
|
|
38
|
+
def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
|
|
69
39
|
def Kiosk_Mode(self) -> None: ...
|
|
70
40
|
def Show(self, new_tab: bool = False) -> None: ...
|
|
71
41
|
def Close(self) -> None: ...
|
|
@@ -75,98 +45,56 @@ class TForm(TComponent):
|
|
|
75
45
|
def caption(self, value) -> None: ...
|
|
76
46
|
def onCreate(self) -> None: ...
|
|
77
47
|
|
|
78
|
-
class
|
|
79
|
-
|
|
80
|
-
def
|
|
81
|
-
def Clear(self) -> None: ...
|
|
48
|
+
class TLabel(TComponent):
|
|
49
|
+
ui: Incomplete
|
|
50
|
+
def __init__(self, parent=None, caption: str = '') -> None: ...
|
|
82
51
|
@property
|
|
83
|
-
def
|
|
52
|
+
def caption(self): ...
|
|
53
|
+
@caption.setter
|
|
54
|
+
def caption(self, value) -> None: ...
|
|
84
55
|
|
|
85
56
|
class TEdit(TComponent):
|
|
86
57
|
onChange: Incomplete
|
|
87
58
|
ui: Incomplete
|
|
88
59
|
def __init__(self, parent=None, text: str = '') -> None: ...
|
|
89
60
|
@property
|
|
90
|
-
def
|
|
91
|
-
@
|
|
92
|
-
def
|
|
93
|
-
@property
|
|
94
|
-
def ReadOnly(self): ...
|
|
95
|
-
@ReadOnly.setter
|
|
96
|
-
def ReadOnly(self, v: bool): ...
|
|
61
|
+
def text(self): ...
|
|
62
|
+
@text.setter
|
|
63
|
+
def text(self, value) -> None: ...
|
|
97
64
|
|
|
98
65
|
class TMemo(TComponent):
|
|
99
|
-
onChange: Incomplete
|
|
100
66
|
ui: Incomplete
|
|
101
|
-
def __init__(self, parent=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: ...
|
|
67
|
+
def __init__(self, parent=None) -> None: ...
|
|
123
68
|
|
|
124
|
-
class
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
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: ...
|
|
69
|
+
class TButtonShape(Enum):
|
|
70
|
+
Rectangle = 'Rectangle'
|
|
71
|
+
RoundRect = 'RoundRect'
|
|
72
|
+
Circle = 'Circle'
|
|
133
73
|
|
|
134
|
-
class
|
|
135
|
-
|
|
74
|
+
class TButton(TComponent):
|
|
75
|
+
onClick: Incomplete
|
|
136
76
|
ui: Incomplete
|
|
137
|
-
def __init__(self, parent=None, caption: str = '
|
|
77
|
+
def __init__(self, parent=None, caption: str = 'Button') -> None: ...
|
|
138
78
|
@property
|
|
139
|
-
def
|
|
140
|
-
@
|
|
141
|
-
def
|
|
79
|
+
def Shape(self) -> TButtonShape: ...
|
|
80
|
+
@Shape.setter
|
|
81
|
+
def Shape(self, v: TButtonShape): ...
|
|
142
82
|
@property
|
|
143
83
|
def caption(self): ...
|
|
144
84
|
@caption.setter
|
|
145
85
|
def caption(self, value) -> None: ...
|
|
146
86
|
|
|
147
|
-
class
|
|
148
|
-
onClick: Incomplete
|
|
149
|
-
ui: Incomplete
|
|
150
|
-
list_container: Incomplete
|
|
151
|
-
Items: Incomplete
|
|
152
|
-
def __init__(self, parent=None) -> None: ...
|
|
153
|
-
@property
|
|
154
|
-
def ItemIndex(self): ...
|
|
155
|
-
@ItemIndex.setter
|
|
156
|
-
def ItemIndex(self, v) -> None: ...
|
|
157
|
-
|
|
158
|
-
class TLabel(TComponent):
|
|
87
|
+
class TCheckBox(TComponent):
|
|
159
88
|
ui: Incomplete
|
|
160
89
|
def __init__(self, parent=None, caption: str = '') -> None: ...
|
|
161
90
|
@property
|
|
162
|
-
def
|
|
163
|
-
@
|
|
164
|
-
def
|
|
91
|
+
def checked(self): ...
|
|
92
|
+
@checked.setter
|
|
93
|
+
def checked(self, value) -> None: ...
|
|
165
94
|
|
|
166
95
|
class TComboBox(TComponent):
|
|
167
96
|
onChange: Incomplete
|
|
168
97
|
ui: Incomplete
|
|
169
|
-
Items: Incomplete
|
|
170
98
|
def __init__(self, parent=None, items=None) -> None: ...
|
|
171
99
|
@property
|
|
172
100
|
def ItemIndex(self): ...
|
|
@@ -178,18 +106,111 @@ class TStringGrid(TComponent):
|
|
|
178
106
|
def __init__(self, parent=None, columns=None) -> None: ...
|
|
179
107
|
def set_data(self, rows) -> None: ...
|
|
180
108
|
|
|
181
|
-
class
|
|
182
|
-
onClick: Incomplete
|
|
109
|
+
class TPanel(TComponent):
|
|
183
110
|
ui: Incomplete
|
|
184
|
-
def __init__(self, parent=None,
|
|
111
|
+
def __init__(self, parent=None, width=None, height=None) -> None: ...
|
|
185
112
|
@property
|
|
186
|
-
def
|
|
187
|
-
@
|
|
188
|
-
def
|
|
113
|
+
def Width(self): ...
|
|
114
|
+
@Width.setter
|
|
115
|
+
def Width(self, value) -> None: ...
|
|
189
116
|
@property
|
|
190
|
-
def
|
|
191
|
-
@
|
|
192
|
-
def
|
|
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
|
+
ui: Incomplete
|
|
179
|
+
def __init__(self, parent=None) -> None: ...
|
|
180
|
+
@property
|
|
181
|
+
def Cols(self): ...
|
|
182
|
+
@Cols.setter
|
|
183
|
+
def Cols(self, v) -> None: ...
|
|
184
|
+
@property
|
|
185
|
+
def Rows(self): ...
|
|
186
|
+
@Rows.setter
|
|
187
|
+
def Rows(self, v) -> None: ...
|
|
188
|
+
def Grid(self, row, col): ...
|
|
189
|
+
def add_child_style(self, child) -> None: ...
|
|
190
|
+
|
|
191
|
+
class TFrame(TComponent):
|
|
192
|
+
ui: Incomplete
|
|
193
|
+
def __init__(self, parent=None) -> None: ...
|
|
194
|
+
def onCreate(self) -> None: ...
|
|
195
|
+
|
|
196
|
+
class TStrings:
|
|
197
|
+
def __init__(self, owner, on_change_callback) -> None: ...
|
|
198
|
+
def Add(self, text): ...
|
|
199
|
+
def Delete(self, index) -> None: ...
|
|
200
|
+
def Clear(self) -> None: ...
|
|
201
|
+
@property
|
|
202
|
+
def Strings(self): ...
|
|
203
|
+
|
|
204
|
+
class TListBox(TComponent):
|
|
205
|
+
onClick: Incomplete
|
|
206
|
+
ui: Incomplete
|
|
207
|
+
list_container: Incomplete
|
|
208
|
+
Items: Incomplete
|
|
209
|
+
def __init__(self, parent=None) -> None: ...
|
|
210
|
+
@property
|
|
211
|
+
def ItemIndex(self): ...
|
|
212
|
+
@ItemIndex.setter
|
|
213
|
+
def ItemIndex(self, index) -> None: ...
|
|
193
214
|
|
|
194
215
|
class TPageControl(TComponent):
|
|
195
216
|
onChange: Incomplete
|
|
@@ -217,3 +238,39 @@ class TTabSheet(TVLayout):
|
|
|
217
238
|
def caption(self): ...
|
|
218
239
|
@caption.setter
|
|
219
240
|
def caption(self, value) -> None: ...
|
|
241
|
+
|
|
242
|
+
class TRadioButton(TComponent):
|
|
243
|
+
on_click: Incomplete
|
|
244
|
+
ui: Incomplete
|
|
245
|
+
def __init__(self, parent=None, caption: str = 'RadioButton') -> None: ...
|
|
246
|
+
@property
|
|
247
|
+
def Checked(self) -> bool: ...
|
|
248
|
+
@Checked.setter
|
|
249
|
+
def Checked(self, v: bool): ...
|
|
250
|
+
@property
|
|
251
|
+
def caption(self): ...
|
|
252
|
+
@caption.setter
|
|
253
|
+
def caption(self, value) -> None: ...
|
|
254
|
+
|
|
255
|
+
class TGroupBox(TVLayout):
|
|
256
|
+
group_wrapper: Incomplete
|
|
257
|
+
legend: Incomplete
|
|
258
|
+
ui: Incomplete
|
|
259
|
+
def __init__(self, parent=None, caption: str = 'GroupBox') -> None: ...
|
|
260
|
+
@property
|
|
261
|
+
def caption(self): ...
|
|
262
|
+
@caption.setter
|
|
263
|
+
def caption(self, value) -> None: ...
|
|
264
|
+
|
|
265
|
+
class TCheckBox(TComponent):
|
|
266
|
+
onChange: Incomplete
|
|
267
|
+
ui: Incomplete
|
|
268
|
+
def __init__(self, parent=None, caption: str = 'CheckBox') -> None: ...
|
|
269
|
+
@property
|
|
270
|
+
def Checked(self) -> bool: ...
|
|
271
|
+
@Checked.setter
|
|
272
|
+
def Checked(self, v: bool): ...
|
|
273
|
+
@property
|
|
274
|
+
def caption(self): ...
|
|
275
|
+
@caption.setter
|
|
276
|
+
def caption(self, value) -> None: ...
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|