WebGUIAPI 1.2604.2801__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.
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2025 James Lin
2
+
3
+ All rights reserved.
4
+
5
+ Permission is granted for **personal, educational, or non-commercial use only**.
6
+ You **may NOT**:
7
+
8
+ 1. Sell or otherwise commercially exploit this software or any part of it.
9
+ 2. Reproduce, distribute, or sublicense this software for commercial purposes.
10
+ 3. Modify or create derivative works for commercial purposes without explicit written permission from the copyright holder.
11
+
12
+ You **may**:
13
+
14
+ - Use the software for personal learning, research, or internal company evaluation (non-commercial).
15
+ - Share the software with attribution to the original author, as long as it is not for commercial gain.
16
+
17
+ **Disclaimer:**
18
+ This software is provided "AS IS", without any warranty of any kind, either expressed or implied,
19
+ including but not limited to the warranties of merchantability, fitness for a particular purpose, or non-infringement.
20
+ In no event shall the author be liable for any claim, damages, or other liability arising from, out of, or in connection with the software or its use.
@@ -0,0 +1,3 @@
1
+ recursive-exclude src *.py
2
+ recursive-include src *__init__.py
3
+ recursive-include src *.pyd
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: WebGUIAPI
3
+ Version: 1.2604.2801
4
+ Summary: WebGUIAPI Python package
5
+ Author-email: James Lin <tylin123@ms27.hinet.net>
6
+ License: Copyright (c) 2025 James Lin
7
+
8
+ All rights reserved.
9
+
10
+ Permission is granted for **personal, educational, or non-commercial use only**.
11
+ You **may NOT**:
12
+
13
+ 1. Sell or otherwise commercially exploit this software or any part of it.
14
+ 2. Reproduce, distribute, or sublicense this software for commercial purposes.
15
+ 3. Modify or create derivative works for commercial purposes without explicit written permission from the copyright holder.
16
+
17
+ You **may**:
18
+
19
+ - Use the software for personal learning, research, or internal company evaluation (non-commercial).
20
+ - Share the software with attribution to the original author, as long as it is not for commercial gain.
21
+
22
+ **Disclaimer:**
23
+ This software is provided "AS IS", without any warranty of any kind, either expressed or implied,
24
+ including but not limited to the warranties of merchantability, fitness for a particular purpose, or non-infringement.
25
+ In no event shall the author be liable for any claim, damages, or other liability arising from, out of, or in connection with the software or its use.
26
+
27
+ Project-URL: Homepage, https://mis.gotech.biz
28
+ Requires-Python: >=3.10
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ Requires-Dist: nicegui
32
+ Dynamic: license-file
33
+
34
+ #WebGUIAPI
35
+
36
+ ## History of version
37
+ Version 1.2604.2801: 2026/04/28<BR>
38
+ Create WebGUI component for VCL framework like.
@@ -0,0 +1,5 @@
1
+ #WebGUIAPI
2
+
3
+ ## History of version
4
+ Version 1.2604.2801: 2026/04/28<BR>
5
+ Create WebGUI component for VCL framework like.
@@ -0,0 +1,27 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "WebGUIAPI"
7
+ version = "1.2604.2801"
8
+ requires-python = ">=3.10"
9
+ description = "WebGUIAPI Python package"
10
+ authors = [
11
+ { name="James Lin", email="tylin123@ms27.hinet.net" }
12
+ ]
13
+ readme = "README.md"
14
+ license = { file = "LICENSE" }
15
+ dependencies = [
16
+ "nicegui"
17
+ ]
18
+
19
+ [project.urls]
20
+ Homepage = "https://mis.gotech.biz"
21
+
22
+
23
+ [tool.setuptools.packages.find]
24
+ where = ["src"]
25
+
26
+ [tool.setuptools.package-data]
27
+ WebGUIAPI = ["*.pyd"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,179 @@
1
+ from _typeshed import Incomplete
2
+
3
+ class TComponent:
4
+ parent: Incomplete
5
+ children: Incomplete
6
+ def __init__(self, parent=None) -> None: ...
7
+ @property
8
+ def FontName(self): ...
9
+ @FontName.setter
10
+ def FontName(self, v) -> None: ...
11
+ @property
12
+ def FontSize(self): ...
13
+ @FontSize.setter
14
+ def FontSize(self, v) -> None: ...
15
+ @property
16
+ def FontColor(self): ...
17
+ @FontColor.setter
18
+ def FontColor(self, v) -> None: ...
19
+ @property
20
+ def Color(self): ...
21
+ @Color.setter
22
+ def Color(self, v) -> None: ...
23
+ @property
24
+ def Width(self): ...
25
+ @Width.setter
26
+ def Width(self, v) -> None: ...
27
+ @property
28
+ def Height(self): ...
29
+ @Height.setter
30
+ def Height(self, v) -> None: ...
31
+
32
+ class TForm:
33
+ url: Incomplete
34
+ is_kiosk: Incomplete
35
+ children: Incomplete
36
+ ui: Incomplete
37
+ def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
38
+ def Kiosk_Mode(self) -> None: ...
39
+ def Show(self, new_tab: bool = False) -> None: ...
40
+ def Close(self) -> None: ...
41
+ @property
42
+ def caption(self): ...
43
+ @caption.setter
44
+ def caption(self, value) -> None: ...
45
+ def onCreate(self) -> None: ...
46
+
47
+ class TLabel(TComponent):
48
+ ui: Incomplete
49
+ def __init__(self, parent=None, caption: str = '') -> None: ...
50
+ @property
51
+ def caption(self): ...
52
+ @caption.setter
53
+ def caption(self, value) -> None: ...
54
+
55
+ class TEdit(TComponent):
56
+ onChange: Incomplete
57
+ ui: Incomplete
58
+ def __init__(self, parent=None, text: str = '') -> None: ...
59
+ @property
60
+ def text(self): ...
61
+ @text.setter
62
+ def text(self, value) -> None: ...
63
+
64
+ class TMemo(TComponent):
65
+ ui: Incomplete
66
+ def __init__(self, parent=None) -> None: ...
67
+
68
+ class TButton(TComponent):
69
+ onClick: Incomplete
70
+ ui: Incomplete
71
+ def __init__(self, parent=None, caption: str = 'Button') -> None: ...
72
+ @property
73
+ def caption(self): ...
74
+ @caption.setter
75
+ def caption(self, value) -> None: ...
76
+
77
+ class TCheckBox(TComponent):
78
+ ui: Incomplete
79
+ def __init__(self, parent=None, caption: str = '') -> None: ...
80
+ @property
81
+ def checked(self): ...
82
+ @checked.setter
83
+ def checked(self, value) -> None: ...
84
+
85
+ class TComboBox(TComponent):
86
+ ui: Incomplete
87
+ def __init__(self, parent=None, items=None) -> None: ...
88
+ @property
89
+ def value(self): ...
90
+ @value.setter
91
+ def value(self, v) -> None: ...
92
+ @property
93
+ def options(self): ...
94
+ @options.setter
95
+ def options(self, v) -> None: ...
96
+
97
+ class TStringGrid(TComponent):
98
+ ui: Incomplete
99
+ def __init__(self, parent=None, columns=None) -> None: ...
100
+ def set_data(self, rows) -> None: ...
101
+
102
+ class TPanel(TComponent):
103
+ ui: Incomplete
104
+ def __init__(self, parent=None, width=None, height=None) -> None: ...
105
+ @property
106
+ def Width(self): ...
107
+ @Width.setter
108
+ def Width(self, value) -> None: ...
109
+ @property
110
+ def Height(self): ...
111
+ @Height.setter
112
+ def Height(self, value) -> None: ...
113
+ @property
114
+ def Color(self): ...
115
+ @Color.setter
116
+ def Color(self, value) -> None: ...
117
+ @property
118
+ def Image(self): ...
119
+ @Image.setter
120
+ def Image(self, src) -> None: ...
121
+
122
+ class TImage(TComponent):
123
+ Align: Incomplete
124
+ Stretch: bool
125
+ ui: Incomplete
126
+ def __init__(self, parent=None, src: str = '', width=None, height=None) -> None: ...
127
+ def LoadImage(self, src) -> None: ...
128
+ @property
129
+ def Width(self): ...
130
+ @Width.setter
131
+ def Width(self, value) -> None: ...
132
+ @property
133
+ def Height(self): ...
134
+ @Height.setter
135
+ def Height(self, value) -> None: ...
136
+
137
+ class TTimer:
138
+ interval: Incomplete
139
+ onTimer: Incomplete
140
+ enabled: bool
141
+ def __init__(self, interval: float = 1.0) -> None: ...
142
+ def start(self) -> None: ...
143
+ def stop(self) -> None: ...
144
+
145
+ class TVCLLayoutBase(TComponent):
146
+ def __init__(self, parent=None) -> None: ...
147
+ @property
148
+ def Width(self): ...
149
+ @Width.setter
150
+ def Width(self, value) -> None: ...
151
+ @property
152
+ def Height(self): ...
153
+ @Height.setter
154
+ def Height(self, value) -> None: ...
155
+ @property
156
+ def Color(self): ...
157
+ @Color.setter
158
+ def Color(self, value) -> None: ...
159
+
160
+ class THLayout(TVCLLayoutBase):
161
+ ui: Incomplete
162
+ def __init__(self, parent=None) -> None: ...
163
+ def add_child_style(self, child) -> None: ...
164
+
165
+ class TVLayout(TVCLLayoutBase):
166
+ ui: Incomplete
167
+ def __init__(self, parent=None) -> None: ...
168
+ def add_child_style(self, child) -> None: ...
169
+
170
+ class TGridLayout(TVCLLayoutBase):
171
+ columns: Incomplete
172
+ ui: Incomplete
173
+ def __init__(self, parent=None, columns: int = 2) -> None: ...
174
+ def add_child_style(self, child) -> None: ...
175
+
176
+ class TFrame(TComponent):
177
+ ui: Incomplete
178
+ def __init__(self, parent=None) -> None: ...
179
+ def onCreate(self) -> None: ...
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: WebGUIAPI
3
+ Version: 1.2604.2801
4
+ Summary: WebGUIAPI Python package
5
+ Author-email: James Lin <tylin123@ms27.hinet.net>
6
+ License: Copyright (c) 2025 James Lin
7
+
8
+ All rights reserved.
9
+
10
+ Permission is granted for **personal, educational, or non-commercial use only**.
11
+ You **may NOT**:
12
+
13
+ 1. Sell or otherwise commercially exploit this software or any part of it.
14
+ 2. Reproduce, distribute, or sublicense this software for commercial purposes.
15
+ 3. Modify or create derivative works for commercial purposes without explicit written permission from the copyright holder.
16
+
17
+ You **may**:
18
+
19
+ - Use the software for personal learning, research, or internal company evaluation (non-commercial).
20
+ - Share the software with attribution to the original author, as long as it is not for commercial gain.
21
+
22
+ **Disclaimer:**
23
+ This software is provided "AS IS", without any warranty of any kind, either expressed or implied,
24
+ including but not limited to the warranties of merchantability, fitness for a particular purpose, or non-infringement.
25
+ In no event shall the author be liable for any claim, damages, or other liability arising from, out of, or in connection with the software or its use.
26
+
27
+ Project-URL: Homepage, https://mis.gotech.biz
28
+ Requires-Python: >=3.10
29
+ Description-Content-Type: text/markdown
30
+ License-File: LICENSE
31
+ Requires-Dist: nicegui
32
+ Dynamic: license-file
33
+
34
+ #WebGUIAPI
35
+
36
+ ## History of version
37
+ Version 1.2604.2801: 2026/04/28<BR>
38
+ Create WebGUI component for VCL framework like.
@@ -0,0 +1,12 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ pyproject.toml
5
+ setup.cfg
6
+ src/WebGUIAPI/WebGUIvcl.cp310-win_amd64.pyd
7
+ src/WebGUIAPI/WebGUIvcl.pyi
8
+ src/WebGUIAPI.egg-info/PKG-INFO
9
+ src/WebGUIAPI.egg-info/SOURCES.txt
10
+ src/WebGUIAPI.egg-info/dependency_links.txt
11
+ src/WebGUIAPI.egg-info/requires.txt
12
+ src/WebGUIAPI.egg-info/top_level.txt