WebGUIAPI 1.2607.201__cp310-cp310-win_amd64.whl

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,29 @@
1
+ from .WebGUIvcl import TComponent as TComponent, TMouseEventArgs as TMouseEventArgs
2
+ from _typeshed import Incomplete
3
+
4
+ class TBanner(TComponent):
5
+ class TMediaManager:
6
+ owner: Incomplete
7
+ def __init__(self, owner) -> None: ...
8
+ def Add(self, url: str): ...
9
+ def Delete(self, index: int): ...
10
+ @property
11
+ def Count(self): ...
12
+ Medias: Incomplete
13
+ onMediaChange: Incomplete
14
+ ui: Incomplete
15
+ def __init__(self, parent=None) -> None: ...
16
+ def Play(self) -> None: ...
17
+ def Stop(self) -> None: ...
18
+ def Next(self) -> None: ...
19
+ def Prior(self) -> None: ...
20
+ def Home(self) -> None: ...
21
+ def Goto(self, index: int): ...
22
+ @property
23
+ def Interval(self): ...
24
+ @Interval.setter
25
+ def Interval(self, v) -> None: ...
26
+ @property
27
+ def Visible(self): ...
28
+ @Visible.setter
29
+ def Visible(self, v) -> None: ...
@@ -0,0 +1,146 @@
1
+ from .WebGUIvcl import *
2
+ from _typeshed import Incomplete
3
+ from enum import Enum
4
+
5
+ class TChartLineStyle(Enum):
6
+ Solid = 'solid'
7
+ Dash = 'dash'
8
+ Dot = 'dot'
9
+ DashDot = 'dashdot'
10
+ DashDotDot = 'longdashdot'
11
+
12
+ class TChartSeriesType(Enum):
13
+ Line = 'line'
14
+ Bar = 'bar'
15
+ Pie = 'pie'
16
+ StackedBar = 'stackedbar'
17
+
18
+ class TBarFillStyle(Enum):
19
+ Solid = 'solid'
20
+ Hollow = 'none'
21
+ Slash = '/'
22
+ BackSlash = '\\'
23
+ Cross = '+'
24
+ XCross = 'x'
25
+ Horizontal = '-'
26
+ Vertical = '|'
27
+ Dot = '.'
28
+
29
+ class TBarShapeStyle(Enum):
30
+ Rectangle = 'rectangle'
31
+ Ellipse = 'ellipse'
32
+ Triangle = 'triangle'
33
+
34
+ class TChartSeries:
35
+ Name: Incomplete
36
+ SeriesType: Incomplete
37
+ X: Incomplete
38
+ Y: Incomplete
39
+ LineColor: str
40
+ LineWidth: int
41
+ LineStyle: Incomplete
42
+ BarColor: str
43
+ BarWidth: float
44
+ BarShapeColor: str
45
+ BarShapeWidth: int
46
+ BarFillStyle: Incomplete
47
+ BarShapeStyle: Incomplete
48
+ PieShowLabel: bool
49
+ PieShowPercent: bool
50
+ PieTextColor: str
51
+ PieBorderColor: str
52
+ PieBorderWidth: int
53
+ PieColors: Incomplete
54
+ ExplodeIndex: int
55
+ ExplodeIndexes: Incomplete
56
+ ExplodeRadius: float
57
+ def __init__(self, name: str = 'Series', series_type=..., owner=None) -> None: ...
58
+ @property
59
+ def ExplodeBiggest(self): ...
60
+ @ExplodeBiggest.setter
61
+ def ExplodeBiggest(self, v) -> None: ...
62
+ @property
63
+ def PieHole(self): ...
64
+ @PieHole.setter
65
+ def PieHole(self, v) -> None: ...
66
+
67
+ class TChart(TComponent):
68
+ ui: Incomplete
69
+ def __init__(self, parent=None, title: str = 'Chart') -> None: ...
70
+ def AddLineSeries(self, name: str = 'Series'): ...
71
+ def AddBarSeries(self, name: str = 'Series'): ...
72
+ def AddPieSeries(self, name: str = 'Series'): ...
73
+ def AddStackedBarSeries(self, name: str = 'Series'): ...
74
+ def Series(self, index): ...
75
+ def AddXY(self, series, x, y) -> None: ...
76
+ def Clear(self, index=None) -> None: ...
77
+ def LoadPicture(self, Pms_FileName): ...
78
+ def ClearPicture(self) -> None: ...
79
+ @property
80
+ def Title(self): ...
81
+ @Title.setter
82
+ def Title(self, v) -> None: ...
83
+ @property
84
+ def TitleFontSize(self): ...
85
+ @TitleFontSize.setter
86
+ def TitleFontSize(self, v) -> None: ...
87
+ @property
88
+ def TitleFontName(self): ...
89
+ @TitleFontName.setter
90
+ def TitleFontName(self, v) -> None: ...
91
+ @property
92
+ def TitleFontColor(self): ...
93
+ @TitleFontColor.setter
94
+ def TitleFontColor(self, v) -> None: ...
95
+ @property
96
+ def GridLineColor(self): ...
97
+ @GridLineColor.setter
98
+ def GridLineColor(self, v) -> None: ...
99
+ @property
100
+ def AxisX_Title(self): ...
101
+ @AxisX_Title.setter
102
+ def AxisX_Title(self, v) -> None: ...
103
+ @property
104
+ def AxisY_Title(self): ...
105
+ @AxisY_Title.setter
106
+ def AxisY_Title(self, v) -> None: ...
107
+ @property
108
+ def BackgroundOpacity(self): ...
109
+ @BackgroundOpacity.setter
110
+ def BackgroundOpacity(self, v) -> None: ...
111
+ @property
112
+ def AxisX_Logarithmic(self): ...
113
+ @AxisX_Logarithmic.setter
114
+ def AxisX_Logarithmic(self, v) -> None: ...
115
+ @property
116
+ def AxisY_Logarithmic(self): ...
117
+ @AxisY_Logarithmic.setter
118
+ def AxisY_Logarithmic(self, v) -> None: ...
119
+ @property
120
+ def LegendVisible(self): ...
121
+ @LegendVisible.setter
122
+ def LegendVisible(self, v) -> None: ...
123
+ @property
124
+ def LegendFontSize(self): ...
125
+ @LegendFontSize.setter
126
+ def LegendFontSize(self, v) -> None: ...
127
+ @property
128
+ def LegendFontName(self): ...
129
+ @LegendFontName.setter
130
+ def LegendFontName(self, v) -> None: ...
131
+ @property
132
+ def LegendFontColor(self): ...
133
+ @LegendFontColor.setter
134
+ def LegendFontColor(self, v) -> None: ...
135
+ @property
136
+ def LegendColor(self): ...
137
+ @LegendColor.setter
138
+ def LegendColor(self, v) -> None: ...
139
+ @property
140
+ def AxisX_Position(self): ...
141
+ @AxisX_Position.setter
142
+ def AxisX_Position(self, v) -> None: ...
143
+ @property
144
+ def AxisY_Position(self): ...
145
+ @AxisY_Position.setter
146
+ def AxisY_Position(self, v) -> None: ...
Binary file