WebGUIAPI 1.2604.2808__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2808
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "WebGUIAPI"
7
- version = "1.2604.2808"
7
+ version = "1.2604.2809"
8
8
  requires-python = ">=3.10"
9
9
  description = "WebGUIAPI Python package"
10
10
  authors = [
@@ -0,0 +1,122 @@
1
+ from _typeshed import Incomplete
2
+ from enum import Enum
3
+
4
+ class TButtonShape(Enum):
5
+ Rectangle = 'Rectangle'
6
+ RoundRect = 'RoundRect'
7
+ Circle = 'Circle'
8
+
9
+ class TComponent:
10
+ parent: Incomplete
11
+ children: Incomplete
12
+ def __init__(self, parent=None) -> None: ...
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
22
+ def FontName(self): ...
23
+ @FontName.setter
24
+ def FontName(self, v) -> None: ...
25
+ @property
26
+ def FontSize(self): ...
27
+ @FontSize.setter
28
+ def FontSize(self, v) -> None: ...
29
+ @property
30
+ def FontColor(self): ...
31
+ @FontColor.setter
32
+ def FontColor(self, v) -> None: ...
33
+ @property
34
+ def Color(self): ...
35
+ @Color.setter
36
+ def Color(self, v) -> None: ...
37
+
38
+ class TForm(TComponent):
39
+ url: Incomplete
40
+ is_kiosk: Incomplete
41
+ ui: Incomplete
42
+ def __init__(self, url: str = '/', title: str = 'VCL Form', kiosk: bool = False) -> None: ...
43
+ def Kiosk_Mode(self) -> None: ...
44
+ def Show(self, new_tab: bool = False) -> None: ...
45
+ def Close(self) -> None: ...
46
+ @property
47
+ def caption(self): ...
48
+ @caption.setter
49
+ def caption(self, value) -> None: ...
50
+ def onCreate(self) -> None: ...
51
+
52
+ class TStrings:
53
+ def __init__(self, owner, on_change_callback) -> None: ...
54
+ def Add(self, text): ...
55
+ def Clear(self) -> None: ...
56
+ @property
57
+ def Strings(self): ...
58
+
59
+ class TListBox(TComponent):
60
+ onClick: Incomplete
61
+ ui: Incomplete
62
+ list_container: Incomplete
63
+ Items: Incomplete
64
+ def __init__(self, parent=None) -> None: ...
65
+ @property
66
+ def ItemIndex(self): ...
67
+ @ItemIndex.setter
68
+ def ItemIndex(self, v) -> None: ...
69
+
70
+ class TComboBox(TComponent):
71
+ onChange: Incomplete
72
+ ui: Incomplete
73
+ Items: Incomplete
74
+ def __init__(self, parent=None, items=None) -> None: ...
75
+ @property
76
+ def ItemIndex(self): ...
77
+ @ItemIndex.setter
78
+ def ItemIndex(self, index) -> None: ...
79
+
80
+ class TStringGrid(TComponent):
81
+ ui: Incomplete
82
+ def __init__(self, parent=None, columns=None) -> None: ...
83
+ def set_data(self, rows) -> None: ...
84
+
85
+ class TButton(TComponent):
86
+ onClick: Incomplete
87
+ ui: Incomplete
88
+ def __init__(self, parent=None, caption: str = 'Button') -> None: ...
89
+ @property
90
+ def Shape(self) -> TButtonShape: ...
91
+ @Shape.setter
92
+ def Shape(self, v: TButtonShape): ...
93
+ @property
94
+ def caption(self): ...
95
+ @caption.setter
96
+ def caption(self, value) -> None: ...
97
+
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):
106
+ ui: Incomplete
107
+ def __init__(self, parent=None) -> None: ...
108
+ def add_child_style(self, child) -> None: ...
109
+
110
+ class TGridLayout(TVCLLayoutBase):
111
+ ui: Incomplete
112
+ def __init__(self, parent=None) -> None: ...
113
+ @property
114
+ def Cols(self): ...
115
+ @Cols.setter
116
+ def Cols(self, v) -> None: ...
117
+ @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: ...
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: WebGUIAPI
3
- Version: 1.2604.2808
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
@@ -1,57 +0,0 @@
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: ...
File without changes