win32more-Microsoft.WindowsAppSDK 0.6.1.5.240227000__py2.py3-none-any.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.
Potentially problematic release.
This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.
- win32more/Microsoft/Foundation/__init__.py +7 -0
- win32more/Microsoft/Graphics/DirectX/__init__.py +167 -0
- win32more/Microsoft/Graphics/Display/__init__.py +174 -0
- win32more/Microsoft/UI/Composition/Core/__init__.py +52 -0
- win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +63 -0
- win32more/Microsoft/UI/Composition/Effects/__init__.py +96 -0
- win32more/Microsoft/UI/Composition/Interactions/__init__.py +951 -0
- win32more/Microsoft/UI/Composition/Scenes/__init__.py +671 -0
- win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +356 -0
- win32more/Microsoft/UI/Composition/__init__.py +4793 -0
- win32more/Microsoft/UI/Content/__init__.py +918 -0
- win32more/Microsoft/UI/Dispatching/__init__.py +241 -0
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +235 -0
- win32more/Microsoft/UI/Input/Interop/__init__.py +19 -0
- win32more/Microsoft/UI/Input/__init__.py +1927 -0
- win32more/Microsoft/UI/System/__init__.py +46 -0
- win32more/Microsoft/UI/Text/__init__.py +1090 -0
- win32more/Microsoft/UI/Windowing/__init__.py +877 -0
- win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +3414 -0
- win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py +489 -0
- win32more/Microsoft/UI/Xaml/Automation/Text/__init__.py +17 -0
- win32more/Microsoft/UI/Xaml/Automation/__init__.py +1607 -0
- win32more/Microsoft/UI/Xaml/Controls/AnimatedVisuals/__init__.py +170 -0
- win32more/Microsoft/UI/Xaml/Controls/Primitives/__init__.py +6458 -0
- win32more/Microsoft/UI/Xaml/Controls/__init__.py +31159 -0
- win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +7 -0
- win32more/Microsoft/UI/Xaml/Data/__init__.py +670 -0
- win32more/Microsoft/UI/Xaml/Documents/__init__.py +2030 -0
- win32more/Microsoft/UI/Xaml/Hosting/__init__.py +329 -0
- win32more/Microsoft/UI/Xaml/Input/__init__.py +1985 -0
- win32more/Microsoft/UI/Xaml/Interop/__init__.py +148 -0
- win32more/Microsoft/UI/Xaml/Markup/__init__.py +391 -0
- win32more/Microsoft/UI/Xaml/Media/Animation/__init__.py +4167 -0
- win32more/Microsoft/UI/Xaml/Media/Imaging/__init__.py +632 -0
- win32more/Microsoft/UI/Xaml/Media/Media3D/__init__.py +373 -0
- win32more/Microsoft/UI/Xaml/Media/__init__.py +3510 -0
- win32more/Microsoft/UI/Xaml/Navigation/__init__.py +255 -0
- win32more/Microsoft/UI/Xaml/Printing/__init__.py +193 -0
- win32more/Microsoft/UI/Xaml/Resources/__init__.py +53 -0
- win32more/Microsoft/UI/Xaml/Shapes/__init__.py +538 -0
- win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py +39 -0
- win32more/Microsoft/UI/Xaml/__init__.py +6010 -0
- win32more/Microsoft/UI/__init__.py +912 -0
- win32more/Microsoft/Web/WebView2/Core/__init__.py +4685 -0
- win32more/Microsoft/Windows/AppLifecycle/__init__.py +180 -0
- win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +572 -0
- win32more/Microsoft/Windows/AppNotifications/__init__.py +333 -0
- win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py +244 -0
- win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +322 -0
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +114 -0
- win32more/Microsoft/Windows/Management/Deployment/__init__.py +1114 -0
- win32more/Microsoft/Windows/PushNotifications/__init__.py +146 -0
- win32more/Microsoft/Windows/Security/AccessControl/__init__.py +25 -0
- win32more/Microsoft/Windows/System/Power/__init__.py +223 -0
- win32more/Microsoft/Windows/System/__init__.py +78 -0
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +181 -0
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py +325 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +11 -0
- win32more/appsdk/versioninfo.py +3 -0
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/METADATA +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/RECORD +66 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/WHEEL +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +90 -0
|
@@ -0,0 +1,3510 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Composition
|
|
4
|
+
import win32more.Microsoft.UI.Composition.SystemBackdrops
|
|
5
|
+
import win32more.Microsoft.UI.Xaml
|
|
6
|
+
import win32more.Microsoft.UI.Xaml.Controls.Primitives
|
|
7
|
+
import win32more.Microsoft.UI.Xaml.Media
|
|
8
|
+
import win32more.Microsoft.UI.Xaml.Media.Media3D
|
|
9
|
+
import win32more.Windows.Foundation
|
|
10
|
+
import win32more.Windows.Foundation.Collections
|
|
11
|
+
import win32more.Windows.Storage.Streams
|
|
12
|
+
import win32more.Windows.UI
|
|
13
|
+
class _AcrylicBrush_Meta_(ComPtr.__class__):
|
|
14
|
+
pass
|
|
15
|
+
class AcrylicBrush(ComPtr, metaclass=_AcrylicBrush_Meta_):
|
|
16
|
+
extends: win32more.Microsoft.UI.Xaml.Media.XamlCompositionBrushBase
|
|
17
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush
|
|
18
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.AcrylicBrush'
|
|
19
|
+
def __init__(self, *args, **kwargs):
|
|
20
|
+
if kwargs:
|
|
21
|
+
super().__init__(**kwargs)
|
|
22
|
+
elif len(args) == 0:
|
|
23
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.AcrylicBrush.CreateInstance(*args, None, None))
|
|
24
|
+
else:
|
|
25
|
+
raise ValueError('no matched constructor')
|
|
26
|
+
@winrt_factorymethod
|
|
27
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrushFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.AcrylicBrush: ...
|
|
28
|
+
@winrt_mixinmethod
|
|
29
|
+
def get_TintColor(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush) -> win32more.Windows.UI.Color: ...
|
|
30
|
+
@winrt_mixinmethod
|
|
31
|
+
def put_TintColor(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush, value: win32more.Windows.UI.Color) -> Void: ...
|
|
32
|
+
@winrt_mixinmethod
|
|
33
|
+
def get_TintOpacity(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush) -> Double: ...
|
|
34
|
+
@winrt_mixinmethod
|
|
35
|
+
def put_TintOpacity(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush, value: Double) -> Void: ...
|
|
36
|
+
@winrt_mixinmethod
|
|
37
|
+
def get_TintTransitionDuration(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
38
|
+
@winrt_mixinmethod
|
|
39
|
+
def put_TintTransitionDuration(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
40
|
+
@winrt_mixinmethod
|
|
41
|
+
def get_AlwaysUseFallback(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush) -> Boolean: ...
|
|
42
|
+
@winrt_mixinmethod
|
|
43
|
+
def put_AlwaysUseFallback(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush, value: Boolean) -> Void: ...
|
|
44
|
+
@winrt_mixinmethod
|
|
45
|
+
def get_TintLuminosityOpacity(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush2) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
46
|
+
@winrt_mixinmethod
|
|
47
|
+
def put_TintLuminosityOpacity(self: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrush2, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
48
|
+
@winrt_classmethod
|
|
49
|
+
def get_TintLuminosityOpacityProperty(cls: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrushStatics2) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
50
|
+
@winrt_classmethod
|
|
51
|
+
def get_TintColorProperty(cls: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
52
|
+
@winrt_classmethod
|
|
53
|
+
def get_TintOpacityProperty(cls: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
54
|
+
@winrt_classmethod
|
|
55
|
+
def get_TintTransitionDurationProperty(cls: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
56
|
+
@winrt_classmethod
|
|
57
|
+
def get_AlwaysUseFallbackProperty(cls: win32more.Microsoft.UI.Xaml.Media.IAcrylicBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
58
|
+
AlwaysUseFallback = property(get_AlwaysUseFallback, put_AlwaysUseFallback)
|
|
59
|
+
TintColor = property(get_TintColor, put_TintColor)
|
|
60
|
+
TintLuminosityOpacity = property(get_TintLuminosityOpacity, put_TintLuminosityOpacity)
|
|
61
|
+
TintOpacity = property(get_TintOpacity, put_TintOpacity)
|
|
62
|
+
TintTransitionDuration = property(get_TintTransitionDuration, put_TintTransitionDuration)
|
|
63
|
+
_AcrylicBrush_Meta_.AlwaysUseFallbackProperty = property(get_AlwaysUseFallbackProperty, None)
|
|
64
|
+
_AcrylicBrush_Meta_.TintColorProperty = property(get_TintColorProperty, None)
|
|
65
|
+
_AcrylicBrush_Meta_.TintLuminosityOpacityProperty = property(get_TintLuminosityOpacityProperty, None)
|
|
66
|
+
_AcrylicBrush_Meta_.TintOpacityProperty = property(get_TintOpacityProperty, None)
|
|
67
|
+
_AcrylicBrush_Meta_.TintTransitionDurationProperty = property(get_TintTransitionDurationProperty, None)
|
|
68
|
+
class AlignmentX(Enum, Int32):
|
|
69
|
+
Left = 0
|
|
70
|
+
Center = 1
|
|
71
|
+
Right = 2
|
|
72
|
+
class AlignmentY(Enum, Int32):
|
|
73
|
+
Top = 0
|
|
74
|
+
Center = 1
|
|
75
|
+
Bottom = 2
|
|
76
|
+
class _ArcSegment_Meta_(ComPtr.__class__):
|
|
77
|
+
pass
|
|
78
|
+
class ArcSegment(ComPtr, metaclass=_ArcSegment_Meta_):
|
|
79
|
+
extends: win32more.Microsoft.UI.Xaml.Media.PathSegment
|
|
80
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IArcSegment
|
|
81
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ArcSegment'
|
|
82
|
+
def __init__(self, *args, **kwargs):
|
|
83
|
+
if kwargs:
|
|
84
|
+
super().__init__(**kwargs)
|
|
85
|
+
elif len(args) == 0:
|
|
86
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.ArcSegment.CreateInstance(*args))
|
|
87
|
+
else:
|
|
88
|
+
raise ValueError('no matched constructor')
|
|
89
|
+
@winrt_activatemethod
|
|
90
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.ArcSegment: ...
|
|
91
|
+
@winrt_mixinmethod
|
|
92
|
+
def get_Point(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment) -> win32more.Windows.Foundation.Point: ...
|
|
93
|
+
@winrt_mixinmethod
|
|
94
|
+
def put_Point(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
95
|
+
@winrt_mixinmethod
|
|
96
|
+
def get_Size(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment) -> win32more.Windows.Foundation.Size: ...
|
|
97
|
+
@winrt_mixinmethod
|
|
98
|
+
def put_Size(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment, value: win32more.Windows.Foundation.Size) -> Void: ...
|
|
99
|
+
@winrt_mixinmethod
|
|
100
|
+
def get_RotationAngle(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment) -> Double: ...
|
|
101
|
+
@winrt_mixinmethod
|
|
102
|
+
def put_RotationAngle(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment, value: Double) -> Void: ...
|
|
103
|
+
@winrt_mixinmethod
|
|
104
|
+
def get_IsLargeArc(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment) -> Boolean: ...
|
|
105
|
+
@winrt_mixinmethod
|
|
106
|
+
def put_IsLargeArc(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment, value: Boolean) -> Void: ...
|
|
107
|
+
@winrt_mixinmethod
|
|
108
|
+
def get_SweepDirection(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment) -> win32more.Microsoft.UI.Xaml.Media.SweepDirection: ...
|
|
109
|
+
@winrt_mixinmethod
|
|
110
|
+
def put_SweepDirection(self: win32more.Microsoft.UI.Xaml.Media.IArcSegment, value: win32more.Microsoft.UI.Xaml.Media.SweepDirection) -> Void: ...
|
|
111
|
+
@winrt_classmethod
|
|
112
|
+
def get_PointProperty(cls: win32more.Microsoft.UI.Xaml.Media.IArcSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
113
|
+
@winrt_classmethod
|
|
114
|
+
def get_SizeProperty(cls: win32more.Microsoft.UI.Xaml.Media.IArcSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
115
|
+
@winrt_classmethod
|
|
116
|
+
def get_RotationAngleProperty(cls: win32more.Microsoft.UI.Xaml.Media.IArcSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
117
|
+
@winrt_classmethod
|
|
118
|
+
def get_IsLargeArcProperty(cls: win32more.Microsoft.UI.Xaml.Media.IArcSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
119
|
+
@winrt_classmethod
|
|
120
|
+
def get_SweepDirectionProperty(cls: win32more.Microsoft.UI.Xaml.Media.IArcSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
121
|
+
IsLargeArc = property(get_IsLargeArc, put_IsLargeArc)
|
|
122
|
+
Point = property(get_Point, put_Point)
|
|
123
|
+
RotationAngle = property(get_RotationAngle, put_RotationAngle)
|
|
124
|
+
Size = property(get_Size, put_Size)
|
|
125
|
+
SweepDirection = property(get_SweepDirection, put_SweepDirection)
|
|
126
|
+
_ArcSegment_Meta_.IsLargeArcProperty = property(get_IsLargeArcProperty, None)
|
|
127
|
+
_ArcSegment_Meta_.PointProperty = property(get_PointProperty, None)
|
|
128
|
+
_ArcSegment_Meta_.RotationAngleProperty = property(get_RotationAngleProperty, None)
|
|
129
|
+
_ArcSegment_Meta_.SizeProperty = property(get_SizeProperty, None)
|
|
130
|
+
_ArcSegment_Meta_.SweepDirectionProperty = property(get_SweepDirectionProperty, None)
|
|
131
|
+
class _BezierSegment_Meta_(ComPtr.__class__):
|
|
132
|
+
pass
|
|
133
|
+
class BezierSegment(ComPtr, metaclass=_BezierSegment_Meta_):
|
|
134
|
+
extends: win32more.Microsoft.UI.Xaml.Media.PathSegment
|
|
135
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IBezierSegment
|
|
136
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.BezierSegment'
|
|
137
|
+
def __init__(self, *args, **kwargs):
|
|
138
|
+
if kwargs:
|
|
139
|
+
super().__init__(**kwargs)
|
|
140
|
+
elif len(args) == 0:
|
|
141
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.BezierSegment.CreateInstance(*args))
|
|
142
|
+
else:
|
|
143
|
+
raise ValueError('no matched constructor')
|
|
144
|
+
@winrt_activatemethod
|
|
145
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.BezierSegment: ...
|
|
146
|
+
@winrt_mixinmethod
|
|
147
|
+
def get_Point1(self: win32more.Microsoft.UI.Xaml.Media.IBezierSegment) -> win32more.Windows.Foundation.Point: ...
|
|
148
|
+
@winrt_mixinmethod
|
|
149
|
+
def put_Point1(self: win32more.Microsoft.UI.Xaml.Media.IBezierSegment, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
150
|
+
@winrt_mixinmethod
|
|
151
|
+
def get_Point2(self: win32more.Microsoft.UI.Xaml.Media.IBezierSegment) -> win32more.Windows.Foundation.Point: ...
|
|
152
|
+
@winrt_mixinmethod
|
|
153
|
+
def put_Point2(self: win32more.Microsoft.UI.Xaml.Media.IBezierSegment, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
154
|
+
@winrt_mixinmethod
|
|
155
|
+
def get_Point3(self: win32more.Microsoft.UI.Xaml.Media.IBezierSegment) -> win32more.Windows.Foundation.Point: ...
|
|
156
|
+
@winrt_mixinmethod
|
|
157
|
+
def put_Point3(self: win32more.Microsoft.UI.Xaml.Media.IBezierSegment, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
158
|
+
@winrt_classmethod
|
|
159
|
+
def get_Point1Property(cls: win32more.Microsoft.UI.Xaml.Media.IBezierSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
160
|
+
@winrt_classmethod
|
|
161
|
+
def get_Point2Property(cls: win32more.Microsoft.UI.Xaml.Media.IBezierSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
162
|
+
@winrt_classmethod
|
|
163
|
+
def get_Point3Property(cls: win32more.Microsoft.UI.Xaml.Media.IBezierSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
164
|
+
Point1 = property(get_Point1, put_Point1)
|
|
165
|
+
Point2 = property(get_Point2, put_Point2)
|
|
166
|
+
Point3 = property(get_Point3, put_Point3)
|
|
167
|
+
_BezierSegment_Meta_.Point1Property = property(get_Point1Property, None)
|
|
168
|
+
_BezierSegment_Meta_.Point2Property = property(get_Point2Property, None)
|
|
169
|
+
_BezierSegment_Meta_.Point3Property = property(get_Point3Property, None)
|
|
170
|
+
class BitmapCache(ComPtr):
|
|
171
|
+
extends: win32more.Microsoft.UI.Xaml.Media.CacheMode
|
|
172
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IBitmapCache
|
|
173
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.BitmapCache'
|
|
174
|
+
def __init__(self, *args, **kwargs):
|
|
175
|
+
if kwargs:
|
|
176
|
+
super().__init__(**kwargs)
|
|
177
|
+
elif len(args) == 0:
|
|
178
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.BitmapCache.CreateInstance(*args))
|
|
179
|
+
else:
|
|
180
|
+
raise ValueError('no matched constructor')
|
|
181
|
+
@winrt_activatemethod
|
|
182
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.BitmapCache: ...
|
|
183
|
+
class _Brush_Meta_(ComPtr.__class__):
|
|
184
|
+
pass
|
|
185
|
+
class Brush(ComPtr, metaclass=_Brush_Meta_):
|
|
186
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
187
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IBrush
|
|
188
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Brush'
|
|
189
|
+
def __init__(self, *args, **kwargs):
|
|
190
|
+
if kwargs:
|
|
191
|
+
super().__init__(**kwargs)
|
|
192
|
+
elif len(args) == 0:
|
|
193
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Brush.CreateInstance(*args, None, None))
|
|
194
|
+
else:
|
|
195
|
+
raise ValueError('no matched constructor')
|
|
196
|
+
@winrt_factorymethod
|
|
197
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IBrushFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
198
|
+
@winrt_mixinmethod
|
|
199
|
+
def get_Opacity(self: win32more.Microsoft.UI.Xaml.Media.IBrush) -> Double: ...
|
|
200
|
+
@winrt_mixinmethod
|
|
201
|
+
def put_Opacity(self: win32more.Microsoft.UI.Xaml.Media.IBrush, value: Double) -> Void: ...
|
|
202
|
+
@winrt_mixinmethod
|
|
203
|
+
def get_Transform(self: win32more.Microsoft.UI.Xaml.Media.IBrush) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
|
|
204
|
+
@winrt_mixinmethod
|
|
205
|
+
def put_Transform(self: win32more.Microsoft.UI.Xaml.Media.IBrush, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
206
|
+
@winrt_mixinmethod
|
|
207
|
+
def get_RelativeTransform(self: win32more.Microsoft.UI.Xaml.Media.IBrush) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
|
|
208
|
+
@winrt_mixinmethod
|
|
209
|
+
def put_RelativeTransform(self: win32more.Microsoft.UI.Xaml.Media.IBrush, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
210
|
+
@winrt_mixinmethod
|
|
211
|
+
def PopulatePropertyInfoOverride(self: win32more.Microsoft.UI.Xaml.Media.IBrushOverrides, propertyName: WinRT_String, animationPropertyInfo: win32more.Microsoft.UI.Composition.AnimationPropertyInfo) -> Void: ...
|
|
212
|
+
@winrt_mixinmethod
|
|
213
|
+
def PopulatePropertyInfo(self: win32more.Microsoft.UI.Composition.IAnimationObject, propertyName: WinRT_String, propertyInfo: win32more.Microsoft.UI.Composition.AnimationPropertyInfo) -> Void: ...
|
|
214
|
+
@winrt_classmethod
|
|
215
|
+
def get_OpacityProperty(cls: win32more.Microsoft.UI.Xaml.Media.IBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
216
|
+
@winrt_classmethod
|
|
217
|
+
def get_TransformProperty(cls: win32more.Microsoft.UI.Xaml.Media.IBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
218
|
+
@winrt_classmethod
|
|
219
|
+
def get_RelativeTransformProperty(cls: win32more.Microsoft.UI.Xaml.Media.IBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
220
|
+
Opacity = property(get_Opacity, put_Opacity)
|
|
221
|
+
RelativeTransform = property(get_RelativeTransform, put_RelativeTransform)
|
|
222
|
+
Transform = property(get_Transform, put_Transform)
|
|
223
|
+
_Brush_Meta_.OpacityProperty = property(get_OpacityProperty, None)
|
|
224
|
+
_Brush_Meta_.RelativeTransformProperty = property(get_RelativeTransformProperty, None)
|
|
225
|
+
_Brush_Meta_.TransformProperty = property(get_TransformProperty, None)
|
|
226
|
+
class BrushCollection(ComPtr):
|
|
227
|
+
extends: IInspectable
|
|
228
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Brush]]
|
|
229
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush]
|
|
230
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.BrushCollection'
|
|
231
|
+
def __init__(self, *args, **kwargs):
|
|
232
|
+
if kwargs:
|
|
233
|
+
super().__init__(**kwargs)
|
|
234
|
+
elif len(args) == 0:
|
|
235
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.BrushCollection.CreateInstance(*args))
|
|
236
|
+
else:
|
|
237
|
+
raise ValueError('no matched constructor')
|
|
238
|
+
@winrt_activatemethod
|
|
239
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.BrushCollection: ...
|
|
240
|
+
@winrt_mixinmethod
|
|
241
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
242
|
+
@winrt_mixinmethod
|
|
243
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush]) -> UInt32: ...
|
|
244
|
+
@winrt_mixinmethod
|
|
245
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Brush]: ...
|
|
246
|
+
@winrt_mixinmethod
|
|
247
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], value: win32more.Microsoft.UI.Xaml.Media.Brush, index: POINTER(UInt32)) -> Boolean: ...
|
|
248
|
+
@winrt_mixinmethod
|
|
249
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
250
|
+
@winrt_mixinmethod
|
|
251
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
252
|
+
@winrt_mixinmethod
|
|
253
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], index: UInt32) -> Void: ...
|
|
254
|
+
@winrt_mixinmethod
|
|
255
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], value: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
256
|
+
@winrt_mixinmethod
|
|
257
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush]) -> Void: ...
|
|
258
|
+
@winrt_mixinmethod
|
|
259
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush]) -> Void: ...
|
|
260
|
+
@winrt_mixinmethod
|
|
261
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Brush]) -> UInt32: ...
|
|
262
|
+
@winrt_mixinmethod
|
|
263
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Brush], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Brush]) -> Void: ...
|
|
264
|
+
@winrt_mixinmethod
|
|
265
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Brush]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Brush]: ...
|
|
266
|
+
Size = property(get_Size, None)
|
|
267
|
+
class BrushMappingMode(Enum, Int32):
|
|
268
|
+
Absolute = 0
|
|
269
|
+
RelativeToBoundingBox = 1
|
|
270
|
+
class CacheMode(ComPtr):
|
|
271
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
272
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ICacheMode
|
|
273
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.CacheMode'
|
|
274
|
+
def __init__(self, *args, **kwargs):
|
|
275
|
+
if kwargs:
|
|
276
|
+
super().__init__(**kwargs)
|
|
277
|
+
elif len(args) == 0:
|
|
278
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.CacheMode.CreateInstance(*args, None, None))
|
|
279
|
+
else:
|
|
280
|
+
raise ValueError('no matched constructor')
|
|
281
|
+
@winrt_factorymethod
|
|
282
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.ICacheModeFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.CacheMode: ...
|
|
283
|
+
class ColorInterpolationMode(Enum, Int32):
|
|
284
|
+
ScRgbLinearInterpolation = 0
|
|
285
|
+
SRgbLinearInterpolation = 1
|
|
286
|
+
class _CompositeTransform_Meta_(ComPtr.__class__):
|
|
287
|
+
pass
|
|
288
|
+
class CompositeTransform(ComPtr, metaclass=_CompositeTransform_Meta_):
|
|
289
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Transform
|
|
290
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform
|
|
291
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.CompositeTransform'
|
|
292
|
+
def __init__(self, *args, **kwargs):
|
|
293
|
+
if kwargs:
|
|
294
|
+
super().__init__(**kwargs)
|
|
295
|
+
elif len(args) == 0:
|
|
296
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.CompositeTransform.CreateInstance(*args))
|
|
297
|
+
else:
|
|
298
|
+
raise ValueError('no matched constructor')
|
|
299
|
+
@winrt_activatemethod
|
|
300
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.CompositeTransform: ...
|
|
301
|
+
@winrt_mixinmethod
|
|
302
|
+
def get_CenterX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
303
|
+
@winrt_mixinmethod
|
|
304
|
+
def put_CenterX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
305
|
+
@winrt_mixinmethod
|
|
306
|
+
def get_CenterY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
307
|
+
@winrt_mixinmethod
|
|
308
|
+
def put_CenterY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
309
|
+
@winrt_mixinmethod
|
|
310
|
+
def get_ScaleX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
311
|
+
@winrt_mixinmethod
|
|
312
|
+
def put_ScaleX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
313
|
+
@winrt_mixinmethod
|
|
314
|
+
def get_ScaleY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
315
|
+
@winrt_mixinmethod
|
|
316
|
+
def put_ScaleY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
317
|
+
@winrt_mixinmethod
|
|
318
|
+
def get_SkewX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
319
|
+
@winrt_mixinmethod
|
|
320
|
+
def put_SkewX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
321
|
+
@winrt_mixinmethod
|
|
322
|
+
def get_SkewY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
323
|
+
@winrt_mixinmethod
|
|
324
|
+
def put_SkewY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
325
|
+
@winrt_mixinmethod
|
|
326
|
+
def get_Rotation(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
327
|
+
@winrt_mixinmethod
|
|
328
|
+
def put_Rotation(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
329
|
+
@winrt_mixinmethod
|
|
330
|
+
def get_TranslateX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
331
|
+
@winrt_mixinmethod
|
|
332
|
+
def put_TranslateX(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
333
|
+
@winrt_mixinmethod
|
|
334
|
+
def get_TranslateY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform) -> Double: ...
|
|
335
|
+
@winrt_mixinmethod
|
|
336
|
+
def put_TranslateY(self: win32more.Microsoft.UI.Xaml.Media.ICompositeTransform, value: Double) -> Void: ...
|
|
337
|
+
@winrt_classmethod
|
|
338
|
+
def get_CenterXProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
339
|
+
@winrt_classmethod
|
|
340
|
+
def get_CenterYProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
341
|
+
@winrt_classmethod
|
|
342
|
+
def get_ScaleXProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
343
|
+
@winrt_classmethod
|
|
344
|
+
def get_ScaleYProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
345
|
+
@winrt_classmethod
|
|
346
|
+
def get_SkewXProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
347
|
+
@winrt_classmethod
|
|
348
|
+
def get_SkewYProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
349
|
+
@winrt_classmethod
|
|
350
|
+
def get_RotationProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
351
|
+
@winrt_classmethod
|
|
352
|
+
def get_TranslateXProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
353
|
+
@winrt_classmethod
|
|
354
|
+
def get_TranslateYProperty(cls: win32more.Microsoft.UI.Xaml.Media.ICompositeTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
355
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
356
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
357
|
+
Rotation = property(get_Rotation, put_Rotation)
|
|
358
|
+
ScaleX = property(get_ScaleX, put_ScaleX)
|
|
359
|
+
ScaleY = property(get_ScaleY, put_ScaleY)
|
|
360
|
+
SkewX = property(get_SkewX, put_SkewX)
|
|
361
|
+
SkewY = property(get_SkewY, put_SkewY)
|
|
362
|
+
TranslateX = property(get_TranslateX, put_TranslateX)
|
|
363
|
+
TranslateY = property(get_TranslateY, put_TranslateY)
|
|
364
|
+
_CompositeTransform_Meta_.CenterXProperty = property(get_CenterXProperty, None)
|
|
365
|
+
_CompositeTransform_Meta_.CenterYProperty = property(get_CenterYProperty, None)
|
|
366
|
+
_CompositeTransform_Meta_.RotationProperty = property(get_RotationProperty, None)
|
|
367
|
+
_CompositeTransform_Meta_.ScaleXProperty = property(get_ScaleXProperty, None)
|
|
368
|
+
_CompositeTransform_Meta_.ScaleYProperty = property(get_ScaleYProperty, None)
|
|
369
|
+
_CompositeTransform_Meta_.SkewXProperty = property(get_SkewXProperty, None)
|
|
370
|
+
_CompositeTransform_Meta_.SkewYProperty = property(get_SkewYProperty, None)
|
|
371
|
+
_CompositeTransform_Meta_.TranslateXProperty = property(get_TranslateXProperty, None)
|
|
372
|
+
_CompositeTransform_Meta_.TranslateYProperty = property(get_TranslateYProperty, None)
|
|
373
|
+
class CompositionTarget(ComPtr):
|
|
374
|
+
extends: IInspectable
|
|
375
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ICompositionTarget
|
|
376
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.CompositionTarget'
|
|
377
|
+
@winrt_classmethod
|
|
378
|
+
def add_Rendering(cls: win32more.Microsoft.UI.Xaml.Media.ICompositionTargetStatics, handler: win32more.Windows.Foundation.EventHandler[IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
379
|
+
@winrt_classmethod
|
|
380
|
+
def remove_Rendering(cls: win32more.Microsoft.UI.Xaml.Media.ICompositionTargetStatics, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
381
|
+
@winrt_classmethod
|
|
382
|
+
def add_Rendered(cls: win32more.Microsoft.UI.Xaml.Media.ICompositionTargetStatics, handler: win32more.Windows.Foundation.EventHandler[win32more.Microsoft.UI.Xaml.Media.RenderedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
383
|
+
@winrt_classmethod
|
|
384
|
+
def remove_Rendered(cls: win32more.Microsoft.UI.Xaml.Media.ICompositionTargetStatics, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
385
|
+
@winrt_classmethod
|
|
386
|
+
def add_SurfaceContentsLost(cls: win32more.Microsoft.UI.Xaml.Media.ICompositionTargetStatics, handler: win32more.Windows.Foundation.EventHandler[IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
387
|
+
@winrt_classmethod
|
|
388
|
+
def remove_SurfaceContentsLost(cls: win32more.Microsoft.UI.Xaml.Media.ICompositionTargetStatics, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
389
|
+
@winrt_classmethod
|
|
390
|
+
def GetCompositorForCurrentThread(cls: win32more.Microsoft.UI.Xaml.Media.ICompositionTargetStatics) -> win32more.Microsoft.UI.Composition.Compositor: ...
|
|
391
|
+
class DesktopAcrylicBackdrop(ComPtr):
|
|
392
|
+
extends: win32more.Microsoft.UI.Xaml.Media.SystemBackdrop
|
|
393
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IDesktopAcrylicBackdrop
|
|
394
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.DesktopAcrylicBackdrop'
|
|
395
|
+
def __init__(self, *args, **kwargs):
|
|
396
|
+
if kwargs:
|
|
397
|
+
super().__init__(**kwargs)
|
|
398
|
+
elif len(args) == 0:
|
|
399
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.DesktopAcrylicBackdrop.CreateInstance(*args, None, None))
|
|
400
|
+
else:
|
|
401
|
+
raise ValueError('no matched constructor')
|
|
402
|
+
@winrt_factorymethod
|
|
403
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IDesktopAcrylicBackdropFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.DesktopAcrylicBackdrop: ...
|
|
404
|
+
class DoubleCollection(ComPtr):
|
|
405
|
+
extends: IInspectable
|
|
406
|
+
implements: Tuple[SequenceProtocol[Double]]
|
|
407
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[Double]
|
|
408
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.DoubleCollection'
|
|
409
|
+
def __init__(self, *args, **kwargs):
|
|
410
|
+
if kwargs:
|
|
411
|
+
super().__init__(**kwargs)
|
|
412
|
+
elif len(args) == 0:
|
|
413
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.DoubleCollection.CreateInstance(*args))
|
|
414
|
+
else:
|
|
415
|
+
raise ValueError('no matched constructor')
|
|
416
|
+
@winrt_activatemethod
|
|
417
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.DoubleCollection: ...
|
|
418
|
+
@winrt_mixinmethod
|
|
419
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[Double], index: UInt32) -> Double: ...
|
|
420
|
+
@winrt_mixinmethod
|
|
421
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[Double]) -> UInt32: ...
|
|
422
|
+
@winrt_mixinmethod
|
|
423
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[Double]) -> win32more.Windows.Foundation.Collections.IVectorView[Double]: ...
|
|
424
|
+
@winrt_mixinmethod
|
|
425
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[Double], value: Double, index: POINTER(UInt32)) -> Boolean: ...
|
|
426
|
+
@winrt_mixinmethod
|
|
427
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[Double], index: UInt32, value: Double) -> Void: ...
|
|
428
|
+
@winrt_mixinmethod
|
|
429
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[Double], index: UInt32, value: Double) -> Void: ...
|
|
430
|
+
@winrt_mixinmethod
|
|
431
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[Double], index: UInt32) -> Void: ...
|
|
432
|
+
@winrt_mixinmethod
|
|
433
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[Double], value: Double) -> Void: ...
|
|
434
|
+
@winrt_mixinmethod
|
|
435
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[Double]) -> Void: ...
|
|
436
|
+
@winrt_mixinmethod
|
|
437
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[Double]) -> Void: ...
|
|
438
|
+
@winrt_mixinmethod
|
|
439
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[Double], startIndex: UInt32, items: FillArray[Double]) -> UInt32: ...
|
|
440
|
+
@winrt_mixinmethod
|
|
441
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[Double], items: PassArray[Double]) -> Void: ...
|
|
442
|
+
@winrt_mixinmethod
|
|
443
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[Double]) -> win32more.Windows.Foundation.Collections.IIterator[Double]: ...
|
|
444
|
+
Size = property(get_Size, None)
|
|
445
|
+
class ElementCompositeMode(Enum, Int32):
|
|
446
|
+
Inherit = 0
|
|
447
|
+
SourceOver = 1
|
|
448
|
+
MinBlend = 2
|
|
449
|
+
class _EllipseGeometry_Meta_(ComPtr.__class__):
|
|
450
|
+
pass
|
|
451
|
+
class EllipseGeometry(ComPtr, metaclass=_EllipseGeometry_Meta_):
|
|
452
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Geometry
|
|
453
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometry
|
|
454
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.EllipseGeometry'
|
|
455
|
+
def __init__(self, *args, **kwargs):
|
|
456
|
+
if kwargs:
|
|
457
|
+
super().__init__(**kwargs)
|
|
458
|
+
elif len(args) == 0:
|
|
459
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.EllipseGeometry.CreateInstance(*args))
|
|
460
|
+
else:
|
|
461
|
+
raise ValueError('no matched constructor')
|
|
462
|
+
@winrt_activatemethod
|
|
463
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.EllipseGeometry: ...
|
|
464
|
+
@winrt_mixinmethod
|
|
465
|
+
def get_Center(self: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometry) -> win32more.Windows.Foundation.Point: ...
|
|
466
|
+
@winrt_mixinmethod
|
|
467
|
+
def put_Center(self: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometry, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
468
|
+
@winrt_mixinmethod
|
|
469
|
+
def get_RadiusX(self: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometry) -> Double: ...
|
|
470
|
+
@winrt_mixinmethod
|
|
471
|
+
def put_RadiusX(self: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometry, value: Double) -> Void: ...
|
|
472
|
+
@winrt_mixinmethod
|
|
473
|
+
def get_RadiusY(self: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometry) -> Double: ...
|
|
474
|
+
@winrt_mixinmethod
|
|
475
|
+
def put_RadiusY(self: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometry, value: Double) -> Void: ...
|
|
476
|
+
@winrt_classmethod
|
|
477
|
+
def get_CenterProperty(cls: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
478
|
+
@winrt_classmethod
|
|
479
|
+
def get_RadiusXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
480
|
+
@winrt_classmethod
|
|
481
|
+
def get_RadiusYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IEllipseGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
482
|
+
Center = property(get_Center, put_Center)
|
|
483
|
+
RadiusX = property(get_RadiusX, put_RadiusX)
|
|
484
|
+
RadiusY = property(get_RadiusY, put_RadiusY)
|
|
485
|
+
_EllipseGeometry_Meta_.CenterProperty = property(get_CenterProperty, None)
|
|
486
|
+
_EllipseGeometry_Meta_.RadiusXProperty = property(get_RadiusXProperty, None)
|
|
487
|
+
_EllipseGeometry_Meta_.RadiusYProperty = property(get_RadiusYProperty, None)
|
|
488
|
+
class FastPlayFallbackBehaviour(Enum, Int32):
|
|
489
|
+
Skip = 0
|
|
490
|
+
Hide = 1
|
|
491
|
+
Disable = 2
|
|
492
|
+
class FillRule(Enum, Int32):
|
|
493
|
+
EvenOdd = 0
|
|
494
|
+
Nonzero = 1
|
|
495
|
+
class _FontFamily_Meta_(ComPtr.__class__):
|
|
496
|
+
pass
|
|
497
|
+
class FontFamily(ComPtr, metaclass=_FontFamily_Meta_):
|
|
498
|
+
extends: IInspectable
|
|
499
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IFontFamily
|
|
500
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.FontFamily'
|
|
501
|
+
def __init__(self, *args, **kwargs):
|
|
502
|
+
if kwargs:
|
|
503
|
+
super().__init__(**kwargs)
|
|
504
|
+
elif len(args) == 1:
|
|
505
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.FontFamily.CreateInstanceWithName(*args, None, None))
|
|
506
|
+
else:
|
|
507
|
+
raise ValueError('no matched constructor')
|
|
508
|
+
@winrt_factorymethod
|
|
509
|
+
def CreateInstanceWithName(cls: win32more.Microsoft.UI.Xaml.Media.IFontFamilyFactory, familyName: WinRT_String, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.FontFamily: ...
|
|
510
|
+
@winrt_mixinmethod
|
|
511
|
+
def get_Source(self: win32more.Microsoft.UI.Xaml.Media.IFontFamily) -> WinRT_String: ...
|
|
512
|
+
@winrt_classmethod
|
|
513
|
+
def get_XamlAutoFontFamily(cls: win32more.Microsoft.UI.Xaml.Media.IFontFamilyStatics) -> win32more.Microsoft.UI.Xaml.Media.FontFamily: ...
|
|
514
|
+
Source = property(get_Source, None)
|
|
515
|
+
_FontFamily_Meta_.XamlAutoFontFamily = property(get_XamlAutoFontFamily, None)
|
|
516
|
+
class GeneralTransform(ComPtr):
|
|
517
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
518
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IGeneralTransform
|
|
519
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.GeneralTransform'
|
|
520
|
+
def __init__(self, *args, **kwargs):
|
|
521
|
+
if kwargs:
|
|
522
|
+
super().__init__(**kwargs)
|
|
523
|
+
elif len(args) == 0:
|
|
524
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.GeneralTransform.CreateInstance(*args, None, None))
|
|
525
|
+
else:
|
|
526
|
+
raise ValueError('no matched constructor')
|
|
527
|
+
@winrt_factorymethod
|
|
528
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IGeneralTransformFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.GeneralTransform: ...
|
|
529
|
+
@winrt_mixinmethod
|
|
530
|
+
def get_Inverse(self: win32more.Microsoft.UI.Xaml.Media.IGeneralTransform) -> win32more.Microsoft.UI.Xaml.Media.GeneralTransform: ...
|
|
531
|
+
@winrt_mixinmethod
|
|
532
|
+
def TransformPoint(self: win32more.Microsoft.UI.Xaml.Media.IGeneralTransform, point: win32more.Windows.Foundation.Point) -> win32more.Windows.Foundation.Point: ...
|
|
533
|
+
@winrt_mixinmethod
|
|
534
|
+
def TryTransform(self: win32more.Microsoft.UI.Xaml.Media.IGeneralTransform, inPoint: win32more.Windows.Foundation.Point, outPoint: POINTER(win32more.Windows.Foundation.Point)) -> Boolean: ...
|
|
535
|
+
@winrt_mixinmethod
|
|
536
|
+
def TransformBounds(self: win32more.Microsoft.UI.Xaml.Media.IGeneralTransform, rect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Foundation.Rect: ...
|
|
537
|
+
@winrt_mixinmethod
|
|
538
|
+
def get_InverseCore(self: win32more.Microsoft.UI.Xaml.Media.IGeneralTransformOverrides) -> win32more.Microsoft.UI.Xaml.Media.GeneralTransform: ...
|
|
539
|
+
@winrt_mixinmethod
|
|
540
|
+
def TryTransformCore(self: win32more.Microsoft.UI.Xaml.Media.IGeneralTransformOverrides, inPoint: win32more.Windows.Foundation.Point, outPoint: POINTER(win32more.Windows.Foundation.Point)) -> Boolean: ...
|
|
541
|
+
@winrt_mixinmethod
|
|
542
|
+
def TransformBoundsCore(self: win32more.Microsoft.UI.Xaml.Media.IGeneralTransformOverrides, rect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Foundation.Rect: ...
|
|
543
|
+
Inverse = property(get_Inverse, None)
|
|
544
|
+
InverseCore = property(get_InverseCore, None)
|
|
545
|
+
class _Geometry_Meta_(ComPtr.__class__):
|
|
546
|
+
pass
|
|
547
|
+
class Geometry(ComPtr, metaclass=_Geometry_Meta_):
|
|
548
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
549
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IGeometry
|
|
550
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Geometry'
|
|
551
|
+
@winrt_mixinmethod
|
|
552
|
+
def get_Transform(self: win32more.Microsoft.UI.Xaml.Media.IGeometry) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
|
|
553
|
+
@winrt_mixinmethod
|
|
554
|
+
def put_Transform(self: win32more.Microsoft.UI.Xaml.Media.IGeometry, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
555
|
+
@winrt_mixinmethod
|
|
556
|
+
def get_Bounds(self: win32more.Microsoft.UI.Xaml.Media.IGeometry) -> win32more.Windows.Foundation.Rect: ...
|
|
557
|
+
@winrt_classmethod
|
|
558
|
+
def get_Empty(cls: win32more.Microsoft.UI.Xaml.Media.IGeometryStatics) -> win32more.Microsoft.UI.Xaml.Media.Geometry: ...
|
|
559
|
+
@winrt_classmethod
|
|
560
|
+
def get_StandardFlatteningTolerance(cls: win32more.Microsoft.UI.Xaml.Media.IGeometryStatics) -> Double: ...
|
|
561
|
+
@winrt_classmethod
|
|
562
|
+
def get_TransformProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
563
|
+
Bounds = property(get_Bounds, None)
|
|
564
|
+
Transform = property(get_Transform, put_Transform)
|
|
565
|
+
_Geometry_Meta_.Empty = property(get_Empty, None)
|
|
566
|
+
_Geometry_Meta_.StandardFlatteningTolerance = property(get_StandardFlatteningTolerance, None)
|
|
567
|
+
_Geometry_Meta_.TransformProperty = property(get_TransformProperty, None)
|
|
568
|
+
class GeometryCollection(ComPtr):
|
|
569
|
+
extends: IInspectable
|
|
570
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Geometry]]
|
|
571
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry]
|
|
572
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.GeometryCollection'
|
|
573
|
+
def __init__(self, *args, **kwargs):
|
|
574
|
+
if kwargs:
|
|
575
|
+
super().__init__(**kwargs)
|
|
576
|
+
elif len(args) == 0:
|
|
577
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.GeometryCollection.CreateInstance(*args))
|
|
578
|
+
else:
|
|
579
|
+
raise ValueError('no matched constructor')
|
|
580
|
+
@winrt_activatemethod
|
|
581
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.GeometryCollection: ...
|
|
582
|
+
@winrt_mixinmethod
|
|
583
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Geometry: ...
|
|
584
|
+
@winrt_mixinmethod
|
|
585
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry]) -> UInt32: ...
|
|
586
|
+
@winrt_mixinmethod
|
|
587
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Geometry]: ...
|
|
588
|
+
@winrt_mixinmethod
|
|
589
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], value: win32more.Microsoft.UI.Xaml.Media.Geometry, index: POINTER(UInt32)) -> Boolean: ...
|
|
590
|
+
@winrt_mixinmethod
|
|
591
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Geometry) -> Void: ...
|
|
592
|
+
@winrt_mixinmethod
|
|
593
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Geometry) -> Void: ...
|
|
594
|
+
@winrt_mixinmethod
|
|
595
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], index: UInt32) -> Void: ...
|
|
596
|
+
@winrt_mixinmethod
|
|
597
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], value: win32more.Microsoft.UI.Xaml.Media.Geometry) -> Void: ...
|
|
598
|
+
@winrt_mixinmethod
|
|
599
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry]) -> Void: ...
|
|
600
|
+
@winrt_mixinmethod
|
|
601
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry]) -> Void: ...
|
|
602
|
+
@winrt_mixinmethod
|
|
603
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Geometry]) -> UInt32: ...
|
|
604
|
+
@winrt_mixinmethod
|
|
605
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Geometry], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Geometry]) -> Void: ...
|
|
606
|
+
@winrt_mixinmethod
|
|
607
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Geometry]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Geometry]: ...
|
|
608
|
+
Size = property(get_Size, None)
|
|
609
|
+
class _GeometryGroup_Meta_(ComPtr.__class__):
|
|
610
|
+
pass
|
|
611
|
+
class GeometryGroup(ComPtr, metaclass=_GeometryGroup_Meta_):
|
|
612
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Geometry
|
|
613
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IGeometryGroup
|
|
614
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.GeometryGroup'
|
|
615
|
+
def __init__(self, *args, **kwargs):
|
|
616
|
+
if kwargs:
|
|
617
|
+
super().__init__(**kwargs)
|
|
618
|
+
elif len(args) == 0:
|
|
619
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.GeometryGroup.CreateInstance(*args))
|
|
620
|
+
else:
|
|
621
|
+
raise ValueError('no matched constructor')
|
|
622
|
+
@winrt_activatemethod
|
|
623
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.GeometryGroup: ...
|
|
624
|
+
@winrt_mixinmethod
|
|
625
|
+
def get_FillRule(self: win32more.Microsoft.UI.Xaml.Media.IGeometryGroup) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
|
|
626
|
+
@winrt_mixinmethod
|
|
627
|
+
def put_FillRule(self: win32more.Microsoft.UI.Xaml.Media.IGeometryGroup, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
|
|
628
|
+
@winrt_mixinmethod
|
|
629
|
+
def get_Children(self: win32more.Microsoft.UI.Xaml.Media.IGeometryGroup) -> win32more.Microsoft.UI.Xaml.Media.GeometryCollection: ...
|
|
630
|
+
@winrt_mixinmethod
|
|
631
|
+
def put_Children(self: win32more.Microsoft.UI.Xaml.Media.IGeometryGroup, value: win32more.Microsoft.UI.Xaml.Media.GeometryCollection) -> Void: ...
|
|
632
|
+
@winrt_classmethod
|
|
633
|
+
def get_FillRuleProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGeometryGroupStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
634
|
+
@winrt_classmethod
|
|
635
|
+
def get_ChildrenProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGeometryGroupStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
636
|
+
Children = property(get_Children, put_Children)
|
|
637
|
+
FillRule = property(get_FillRule, put_FillRule)
|
|
638
|
+
_GeometryGroup_Meta_.ChildrenProperty = property(get_ChildrenProperty, None)
|
|
639
|
+
_GeometryGroup_Meta_.FillRuleProperty = property(get_FillRuleProperty, None)
|
|
640
|
+
class _GradientBrush_Meta_(ComPtr.__class__):
|
|
641
|
+
pass
|
|
642
|
+
class GradientBrush(ComPtr, metaclass=_GradientBrush_Meta_):
|
|
643
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Brush
|
|
644
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IGradientBrush
|
|
645
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.GradientBrush'
|
|
646
|
+
def __init__(self, *args, **kwargs):
|
|
647
|
+
if kwargs:
|
|
648
|
+
super().__init__(**kwargs)
|
|
649
|
+
elif len(args) == 0:
|
|
650
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.GradientBrush.CreateInstance(*args, None, None))
|
|
651
|
+
else:
|
|
652
|
+
raise ValueError('no matched constructor')
|
|
653
|
+
@winrt_factorymethod
|
|
654
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IGradientBrushFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.GradientBrush: ...
|
|
655
|
+
@winrt_mixinmethod
|
|
656
|
+
def get_SpreadMethod(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush) -> win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod: ...
|
|
657
|
+
@winrt_mixinmethod
|
|
658
|
+
def put_SpreadMethod(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush, value: win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod) -> Void: ...
|
|
659
|
+
@winrt_mixinmethod
|
|
660
|
+
def get_MappingMode(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush) -> win32more.Microsoft.UI.Xaml.Media.BrushMappingMode: ...
|
|
661
|
+
@winrt_mixinmethod
|
|
662
|
+
def put_MappingMode(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush, value: win32more.Microsoft.UI.Xaml.Media.BrushMappingMode) -> Void: ...
|
|
663
|
+
@winrt_mixinmethod
|
|
664
|
+
def get_ColorInterpolationMode(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush) -> win32more.Microsoft.UI.Xaml.Media.ColorInterpolationMode: ...
|
|
665
|
+
@winrt_mixinmethod
|
|
666
|
+
def put_ColorInterpolationMode(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush, value: win32more.Microsoft.UI.Xaml.Media.ColorInterpolationMode) -> Void: ...
|
|
667
|
+
@winrt_mixinmethod
|
|
668
|
+
def get_GradientStops(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush) -> win32more.Microsoft.UI.Xaml.Media.GradientStopCollection: ...
|
|
669
|
+
@winrt_mixinmethod
|
|
670
|
+
def put_GradientStops(self: win32more.Microsoft.UI.Xaml.Media.IGradientBrush, value: win32more.Microsoft.UI.Xaml.Media.GradientStopCollection) -> Void: ...
|
|
671
|
+
@winrt_classmethod
|
|
672
|
+
def get_SpreadMethodProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
673
|
+
@winrt_classmethod
|
|
674
|
+
def get_MappingModeProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
675
|
+
@winrt_classmethod
|
|
676
|
+
def get_ColorInterpolationModeProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
677
|
+
@winrt_classmethod
|
|
678
|
+
def get_GradientStopsProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
679
|
+
ColorInterpolationMode = property(get_ColorInterpolationMode, put_ColorInterpolationMode)
|
|
680
|
+
GradientStops = property(get_GradientStops, put_GradientStops)
|
|
681
|
+
MappingMode = property(get_MappingMode, put_MappingMode)
|
|
682
|
+
SpreadMethod = property(get_SpreadMethod, put_SpreadMethod)
|
|
683
|
+
_GradientBrush_Meta_.ColorInterpolationModeProperty = property(get_ColorInterpolationModeProperty, None)
|
|
684
|
+
_GradientBrush_Meta_.GradientStopsProperty = property(get_GradientStopsProperty, None)
|
|
685
|
+
_GradientBrush_Meta_.MappingModeProperty = property(get_MappingModeProperty, None)
|
|
686
|
+
_GradientBrush_Meta_.SpreadMethodProperty = property(get_SpreadMethodProperty, None)
|
|
687
|
+
class GradientSpreadMethod(Enum, Int32):
|
|
688
|
+
Pad = 0
|
|
689
|
+
Reflect = 1
|
|
690
|
+
Repeat = 2
|
|
691
|
+
class _GradientStop_Meta_(ComPtr.__class__):
|
|
692
|
+
pass
|
|
693
|
+
class GradientStop(ComPtr, metaclass=_GradientStop_Meta_):
|
|
694
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
695
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IGradientStop
|
|
696
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.GradientStop'
|
|
697
|
+
def __init__(self, *args, **kwargs):
|
|
698
|
+
if kwargs:
|
|
699
|
+
super().__init__(**kwargs)
|
|
700
|
+
elif len(args) == 0:
|
|
701
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.GradientStop.CreateInstance(*args))
|
|
702
|
+
else:
|
|
703
|
+
raise ValueError('no matched constructor')
|
|
704
|
+
@winrt_activatemethod
|
|
705
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.GradientStop: ...
|
|
706
|
+
@winrt_mixinmethod
|
|
707
|
+
def get_Color(self: win32more.Microsoft.UI.Xaml.Media.IGradientStop) -> win32more.Windows.UI.Color: ...
|
|
708
|
+
@winrt_mixinmethod
|
|
709
|
+
def put_Color(self: win32more.Microsoft.UI.Xaml.Media.IGradientStop, value: win32more.Windows.UI.Color) -> Void: ...
|
|
710
|
+
@winrt_mixinmethod
|
|
711
|
+
def get_Offset(self: win32more.Microsoft.UI.Xaml.Media.IGradientStop) -> Double: ...
|
|
712
|
+
@winrt_mixinmethod
|
|
713
|
+
def put_Offset(self: win32more.Microsoft.UI.Xaml.Media.IGradientStop, value: Double) -> Void: ...
|
|
714
|
+
@winrt_classmethod
|
|
715
|
+
def get_ColorProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGradientStopStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
716
|
+
@winrt_classmethod
|
|
717
|
+
def get_OffsetProperty(cls: win32more.Microsoft.UI.Xaml.Media.IGradientStopStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
718
|
+
Color = property(get_Color, put_Color)
|
|
719
|
+
Offset = property(get_Offset, put_Offset)
|
|
720
|
+
_GradientStop_Meta_.ColorProperty = property(get_ColorProperty, None)
|
|
721
|
+
_GradientStop_Meta_.OffsetProperty = property(get_OffsetProperty, None)
|
|
722
|
+
class GradientStopCollection(ComPtr):
|
|
723
|
+
extends: IInspectable
|
|
724
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.GradientStop]]
|
|
725
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop]
|
|
726
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.GradientStopCollection'
|
|
727
|
+
def __init__(self, *args, **kwargs):
|
|
728
|
+
if kwargs:
|
|
729
|
+
super().__init__(**kwargs)
|
|
730
|
+
elif len(args) == 0:
|
|
731
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.GradientStopCollection.CreateInstance(*args))
|
|
732
|
+
else:
|
|
733
|
+
raise ValueError('no matched constructor')
|
|
734
|
+
@winrt_activatemethod
|
|
735
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.GradientStopCollection: ...
|
|
736
|
+
@winrt_mixinmethod
|
|
737
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.GradientStop: ...
|
|
738
|
+
@winrt_mixinmethod
|
|
739
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop]) -> UInt32: ...
|
|
740
|
+
@winrt_mixinmethod
|
|
741
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.GradientStop]: ...
|
|
742
|
+
@winrt_mixinmethod
|
|
743
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], value: win32more.Microsoft.UI.Xaml.Media.GradientStop, index: POINTER(UInt32)) -> Boolean: ...
|
|
744
|
+
@winrt_mixinmethod
|
|
745
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.GradientStop) -> Void: ...
|
|
746
|
+
@winrt_mixinmethod
|
|
747
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.GradientStop) -> Void: ...
|
|
748
|
+
@winrt_mixinmethod
|
|
749
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], index: UInt32) -> Void: ...
|
|
750
|
+
@winrt_mixinmethod
|
|
751
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], value: win32more.Microsoft.UI.Xaml.Media.GradientStop) -> Void: ...
|
|
752
|
+
@winrt_mixinmethod
|
|
753
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop]) -> Void: ...
|
|
754
|
+
@winrt_mixinmethod
|
|
755
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop]) -> Void: ...
|
|
756
|
+
@winrt_mixinmethod
|
|
757
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.GradientStop]) -> UInt32: ...
|
|
758
|
+
@winrt_mixinmethod
|
|
759
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.GradientStop], items: PassArray[win32more.Microsoft.UI.Xaml.Media.GradientStop]) -> Void: ...
|
|
760
|
+
@winrt_mixinmethod
|
|
761
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.GradientStop]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.GradientStop]: ...
|
|
762
|
+
Size = property(get_Size, None)
|
|
763
|
+
class IAcrylicBrush(ComPtr):
|
|
764
|
+
extends: IInspectable
|
|
765
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IAcrylicBrush'
|
|
766
|
+
_iid_ = Guid('{3a8c760a-941f-58bc-a6d4-aa7a0dd1d036}')
|
|
767
|
+
@winrt_commethod(6)
|
|
768
|
+
def get_TintColor(self) -> win32more.Windows.UI.Color: ...
|
|
769
|
+
@winrt_commethod(7)
|
|
770
|
+
def put_TintColor(self, value: win32more.Windows.UI.Color) -> Void: ...
|
|
771
|
+
@winrt_commethod(8)
|
|
772
|
+
def get_TintOpacity(self) -> Double: ...
|
|
773
|
+
@winrt_commethod(9)
|
|
774
|
+
def put_TintOpacity(self, value: Double) -> Void: ...
|
|
775
|
+
@winrt_commethod(10)
|
|
776
|
+
def get_TintTransitionDuration(self) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
777
|
+
@winrt_commethod(11)
|
|
778
|
+
def put_TintTransitionDuration(self, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
779
|
+
@winrt_commethod(12)
|
|
780
|
+
def get_AlwaysUseFallback(self) -> Boolean: ...
|
|
781
|
+
@winrt_commethod(13)
|
|
782
|
+
def put_AlwaysUseFallback(self, value: Boolean) -> Void: ...
|
|
783
|
+
AlwaysUseFallback = property(get_AlwaysUseFallback, put_AlwaysUseFallback)
|
|
784
|
+
TintColor = property(get_TintColor, put_TintColor)
|
|
785
|
+
TintOpacity = property(get_TintOpacity, put_TintOpacity)
|
|
786
|
+
TintTransitionDuration = property(get_TintTransitionDuration, put_TintTransitionDuration)
|
|
787
|
+
class IAcrylicBrush2(ComPtr):
|
|
788
|
+
extends: IInspectable
|
|
789
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IAcrylicBrush2'
|
|
790
|
+
_iid_ = Guid('{23fad570-43ed-5a73-9de7-a303553d5414}')
|
|
791
|
+
@winrt_commethod(6)
|
|
792
|
+
def get_TintLuminosityOpacity(self) -> win32more.Windows.Foundation.IReference[Double]: ...
|
|
793
|
+
@winrt_commethod(7)
|
|
794
|
+
def put_TintLuminosityOpacity(self, value: win32more.Windows.Foundation.IReference[Double]) -> Void: ...
|
|
795
|
+
TintLuminosityOpacity = property(get_TintLuminosityOpacity, put_TintLuminosityOpacity)
|
|
796
|
+
class IAcrylicBrushFactory(ComPtr):
|
|
797
|
+
extends: IInspectable
|
|
798
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IAcrylicBrushFactory'
|
|
799
|
+
_iid_ = Guid('{80173353-611d-5a02-8864-1aaa279dff1c}')
|
|
800
|
+
@winrt_commethod(6)
|
|
801
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.AcrylicBrush: ...
|
|
802
|
+
class IAcrylicBrushStatics(ComPtr):
|
|
803
|
+
extends: IInspectable
|
|
804
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IAcrylicBrushStatics'
|
|
805
|
+
_iid_ = Guid('{9d9d366b-00a3-5f3e-98b8-1df7fec1828c}')
|
|
806
|
+
@winrt_commethod(6)
|
|
807
|
+
def get_TintColorProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
808
|
+
@winrt_commethod(7)
|
|
809
|
+
def get_TintOpacityProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
810
|
+
@winrt_commethod(8)
|
|
811
|
+
def get_TintTransitionDurationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
812
|
+
@winrt_commethod(9)
|
|
813
|
+
def get_AlwaysUseFallbackProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
814
|
+
AlwaysUseFallbackProperty = property(get_AlwaysUseFallbackProperty, None)
|
|
815
|
+
TintColorProperty = property(get_TintColorProperty, None)
|
|
816
|
+
TintOpacityProperty = property(get_TintOpacityProperty, None)
|
|
817
|
+
TintTransitionDurationProperty = property(get_TintTransitionDurationProperty, None)
|
|
818
|
+
class IAcrylicBrushStatics2(ComPtr):
|
|
819
|
+
extends: IInspectable
|
|
820
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IAcrylicBrushStatics2'
|
|
821
|
+
_iid_ = Guid('{6e3eb0bd-20a1-52ea-aede-478061012279}')
|
|
822
|
+
@winrt_commethod(6)
|
|
823
|
+
def get_TintLuminosityOpacityProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
824
|
+
TintLuminosityOpacityProperty = property(get_TintLuminosityOpacityProperty, None)
|
|
825
|
+
class IArcSegment(ComPtr):
|
|
826
|
+
extends: IInspectable
|
|
827
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IArcSegment'
|
|
828
|
+
_iid_ = Guid('{6b7ce02b-87be-5acb-9d3b-c9964c6962d0}')
|
|
829
|
+
@winrt_commethod(6)
|
|
830
|
+
def get_Point(self) -> win32more.Windows.Foundation.Point: ...
|
|
831
|
+
@winrt_commethod(7)
|
|
832
|
+
def put_Point(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
833
|
+
@winrt_commethod(8)
|
|
834
|
+
def get_Size(self) -> win32more.Windows.Foundation.Size: ...
|
|
835
|
+
@winrt_commethod(9)
|
|
836
|
+
def put_Size(self, value: win32more.Windows.Foundation.Size) -> Void: ...
|
|
837
|
+
@winrt_commethod(10)
|
|
838
|
+
def get_RotationAngle(self) -> Double: ...
|
|
839
|
+
@winrt_commethod(11)
|
|
840
|
+
def put_RotationAngle(self, value: Double) -> Void: ...
|
|
841
|
+
@winrt_commethod(12)
|
|
842
|
+
def get_IsLargeArc(self) -> Boolean: ...
|
|
843
|
+
@winrt_commethod(13)
|
|
844
|
+
def put_IsLargeArc(self, value: Boolean) -> Void: ...
|
|
845
|
+
@winrt_commethod(14)
|
|
846
|
+
def get_SweepDirection(self) -> win32more.Microsoft.UI.Xaml.Media.SweepDirection: ...
|
|
847
|
+
@winrt_commethod(15)
|
|
848
|
+
def put_SweepDirection(self, value: win32more.Microsoft.UI.Xaml.Media.SweepDirection) -> Void: ...
|
|
849
|
+
IsLargeArc = property(get_IsLargeArc, put_IsLargeArc)
|
|
850
|
+
Point = property(get_Point, put_Point)
|
|
851
|
+
RotationAngle = property(get_RotationAngle, put_RotationAngle)
|
|
852
|
+
Size = property(get_Size, put_Size)
|
|
853
|
+
SweepDirection = property(get_SweepDirection, put_SweepDirection)
|
|
854
|
+
class IArcSegmentStatics(ComPtr):
|
|
855
|
+
extends: IInspectable
|
|
856
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IArcSegmentStatics'
|
|
857
|
+
_iid_ = Guid('{5ba7ccb3-5bc7-5038-99c5-93dc730230cf}')
|
|
858
|
+
@winrt_commethod(6)
|
|
859
|
+
def get_PointProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
860
|
+
@winrt_commethod(7)
|
|
861
|
+
def get_SizeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
862
|
+
@winrt_commethod(8)
|
|
863
|
+
def get_RotationAngleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
864
|
+
@winrt_commethod(9)
|
|
865
|
+
def get_IsLargeArcProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
866
|
+
@winrt_commethod(10)
|
|
867
|
+
def get_SweepDirectionProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
868
|
+
IsLargeArcProperty = property(get_IsLargeArcProperty, None)
|
|
869
|
+
PointProperty = property(get_PointProperty, None)
|
|
870
|
+
RotationAngleProperty = property(get_RotationAngleProperty, None)
|
|
871
|
+
SizeProperty = property(get_SizeProperty, None)
|
|
872
|
+
SweepDirectionProperty = property(get_SweepDirectionProperty, None)
|
|
873
|
+
class IBezierSegment(ComPtr):
|
|
874
|
+
extends: IInspectable
|
|
875
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IBezierSegment'
|
|
876
|
+
_iid_ = Guid('{0f36bade-892e-51fe-b94a-3875e86feaae}')
|
|
877
|
+
@winrt_commethod(6)
|
|
878
|
+
def get_Point1(self) -> win32more.Windows.Foundation.Point: ...
|
|
879
|
+
@winrt_commethod(7)
|
|
880
|
+
def put_Point1(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
881
|
+
@winrt_commethod(8)
|
|
882
|
+
def get_Point2(self) -> win32more.Windows.Foundation.Point: ...
|
|
883
|
+
@winrt_commethod(9)
|
|
884
|
+
def put_Point2(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
885
|
+
@winrt_commethod(10)
|
|
886
|
+
def get_Point3(self) -> win32more.Windows.Foundation.Point: ...
|
|
887
|
+
@winrt_commethod(11)
|
|
888
|
+
def put_Point3(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
889
|
+
Point1 = property(get_Point1, put_Point1)
|
|
890
|
+
Point2 = property(get_Point2, put_Point2)
|
|
891
|
+
Point3 = property(get_Point3, put_Point3)
|
|
892
|
+
class IBezierSegmentStatics(ComPtr):
|
|
893
|
+
extends: IInspectable
|
|
894
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IBezierSegmentStatics'
|
|
895
|
+
_iid_ = Guid('{98e74d5c-c97a-50b0-ae0e-d436dc9df16d}')
|
|
896
|
+
@winrt_commethod(6)
|
|
897
|
+
def get_Point1Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
898
|
+
@winrt_commethod(7)
|
|
899
|
+
def get_Point2Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
900
|
+
@winrt_commethod(8)
|
|
901
|
+
def get_Point3Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
902
|
+
Point1Property = property(get_Point1Property, None)
|
|
903
|
+
Point2Property = property(get_Point2Property, None)
|
|
904
|
+
Point3Property = property(get_Point3Property, None)
|
|
905
|
+
class IBitmapCache(ComPtr):
|
|
906
|
+
extends: IInspectable
|
|
907
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IBitmapCache'
|
|
908
|
+
_iid_ = Guid('{4b3a8983-27a2-592a-bda4-270431eae038}')
|
|
909
|
+
class IBrush(ComPtr):
|
|
910
|
+
extends: IInspectable
|
|
911
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IBrush'
|
|
912
|
+
_iid_ = Guid('{2de3cb83-1329-5679-88f8-c822bc5442cb}')
|
|
913
|
+
@winrt_commethod(6)
|
|
914
|
+
def get_Opacity(self) -> Double: ...
|
|
915
|
+
@winrt_commethod(7)
|
|
916
|
+
def put_Opacity(self, value: Double) -> Void: ...
|
|
917
|
+
@winrt_commethod(8)
|
|
918
|
+
def get_Transform(self) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
|
|
919
|
+
@winrt_commethod(9)
|
|
920
|
+
def put_Transform(self, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
921
|
+
@winrt_commethod(10)
|
|
922
|
+
def get_RelativeTransform(self) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
|
|
923
|
+
@winrt_commethod(11)
|
|
924
|
+
def put_RelativeTransform(self, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
925
|
+
Opacity = property(get_Opacity, put_Opacity)
|
|
926
|
+
RelativeTransform = property(get_RelativeTransform, put_RelativeTransform)
|
|
927
|
+
Transform = property(get_Transform, put_Transform)
|
|
928
|
+
class IBrushFactory(ComPtr):
|
|
929
|
+
extends: IInspectable
|
|
930
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IBrushFactory'
|
|
931
|
+
_iid_ = Guid('{b5258717-6c49-5ba5-87fd-35df382647a5}')
|
|
932
|
+
@winrt_commethod(6)
|
|
933
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Brush: ...
|
|
934
|
+
class IBrushOverrides(ComPtr):
|
|
935
|
+
extends: IInspectable
|
|
936
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IBrushOverrides'
|
|
937
|
+
_iid_ = Guid('{b6b08394-bacf-53db-9ac7-be1c693e3513}')
|
|
938
|
+
@winrt_commethod(6)
|
|
939
|
+
def PopulatePropertyInfoOverride(self, propertyName: WinRT_String, animationPropertyInfo: win32more.Microsoft.UI.Composition.AnimationPropertyInfo) -> Void: ...
|
|
940
|
+
class IBrushStatics(ComPtr):
|
|
941
|
+
extends: IInspectable
|
|
942
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IBrushStatics'
|
|
943
|
+
_iid_ = Guid('{5b854f50-f818-5f01-91b0-28132d3f5957}')
|
|
944
|
+
@winrt_commethod(6)
|
|
945
|
+
def get_OpacityProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
946
|
+
@winrt_commethod(7)
|
|
947
|
+
def get_TransformProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
948
|
+
@winrt_commethod(8)
|
|
949
|
+
def get_RelativeTransformProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
950
|
+
OpacityProperty = property(get_OpacityProperty, None)
|
|
951
|
+
RelativeTransformProperty = property(get_RelativeTransformProperty, None)
|
|
952
|
+
TransformProperty = property(get_TransformProperty, None)
|
|
953
|
+
class ICacheMode(ComPtr):
|
|
954
|
+
extends: IInspectable
|
|
955
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ICacheMode'
|
|
956
|
+
_iid_ = Guid('{2ff1a1cb-0f48-53fd-b1de-e2223dfb2ff6}')
|
|
957
|
+
class ICacheModeFactory(ComPtr):
|
|
958
|
+
extends: IInspectable
|
|
959
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ICacheModeFactory'
|
|
960
|
+
_iid_ = Guid('{e257811e-dcc5-51d8-829a-3e9400198a41}')
|
|
961
|
+
@winrt_commethod(6)
|
|
962
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.CacheMode: ...
|
|
963
|
+
class ICompositeTransform(ComPtr):
|
|
964
|
+
extends: IInspectable
|
|
965
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ICompositeTransform'
|
|
966
|
+
_iid_ = Guid('{55c5f8f3-20e4-5b80-a046-ce4d0f62f2fe}')
|
|
967
|
+
@winrt_commethod(6)
|
|
968
|
+
def get_CenterX(self) -> Double: ...
|
|
969
|
+
@winrt_commethod(7)
|
|
970
|
+
def put_CenterX(self, value: Double) -> Void: ...
|
|
971
|
+
@winrt_commethod(8)
|
|
972
|
+
def get_CenterY(self) -> Double: ...
|
|
973
|
+
@winrt_commethod(9)
|
|
974
|
+
def put_CenterY(self, value: Double) -> Void: ...
|
|
975
|
+
@winrt_commethod(10)
|
|
976
|
+
def get_ScaleX(self) -> Double: ...
|
|
977
|
+
@winrt_commethod(11)
|
|
978
|
+
def put_ScaleX(self, value: Double) -> Void: ...
|
|
979
|
+
@winrt_commethod(12)
|
|
980
|
+
def get_ScaleY(self) -> Double: ...
|
|
981
|
+
@winrt_commethod(13)
|
|
982
|
+
def put_ScaleY(self, value: Double) -> Void: ...
|
|
983
|
+
@winrt_commethod(14)
|
|
984
|
+
def get_SkewX(self) -> Double: ...
|
|
985
|
+
@winrt_commethod(15)
|
|
986
|
+
def put_SkewX(self, value: Double) -> Void: ...
|
|
987
|
+
@winrt_commethod(16)
|
|
988
|
+
def get_SkewY(self) -> Double: ...
|
|
989
|
+
@winrt_commethod(17)
|
|
990
|
+
def put_SkewY(self, value: Double) -> Void: ...
|
|
991
|
+
@winrt_commethod(18)
|
|
992
|
+
def get_Rotation(self) -> Double: ...
|
|
993
|
+
@winrt_commethod(19)
|
|
994
|
+
def put_Rotation(self, value: Double) -> Void: ...
|
|
995
|
+
@winrt_commethod(20)
|
|
996
|
+
def get_TranslateX(self) -> Double: ...
|
|
997
|
+
@winrt_commethod(21)
|
|
998
|
+
def put_TranslateX(self, value: Double) -> Void: ...
|
|
999
|
+
@winrt_commethod(22)
|
|
1000
|
+
def get_TranslateY(self) -> Double: ...
|
|
1001
|
+
@winrt_commethod(23)
|
|
1002
|
+
def put_TranslateY(self, value: Double) -> Void: ...
|
|
1003
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
1004
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
1005
|
+
Rotation = property(get_Rotation, put_Rotation)
|
|
1006
|
+
ScaleX = property(get_ScaleX, put_ScaleX)
|
|
1007
|
+
ScaleY = property(get_ScaleY, put_ScaleY)
|
|
1008
|
+
SkewX = property(get_SkewX, put_SkewX)
|
|
1009
|
+
SkewY = property(get_SkewY, put_SkewY)
|
|
1010
|
+
TranslateX = property(get_TranslateX, put_TranslateX)
|
|
1011
|
+
TranslateY = property(get_TranslateY, put_TranslateY)
|
|
1012
|
+
class ICompositeTransformStatics(ComPtr):
|
|
1013
|
+
extends: IInspectable
|
|
1014
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ICompositeTransformStatics'
|
|
1015
|
+
_iid_ = Guid('{7701385b-8eab-5071-bfa5-b453e1e52b43}')
|
|
1016
|
+
@winrt_commethod(6)
|
|
1017
|
+
def get_CenterXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1018
|
+
@winrt_commethod(7)
|
|
1019
|
+
def get_CenterYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1020
|
+
@winrt_commethod(8)
|
|
1021
|
+
def get_ScaleXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1022
|
+
@winrt_commethod(9)
|
|
1023
|
+
def get_ScaleYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1024
|
+
@winrt_commethod(10)
|
|
1025
|
+
def get_SkewXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1026
|
+
@winrt_commethod(11)
|
|
1027
|
+
def get_SkewYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1028
|
+
@winrt_commethod(12)
|
|
1029
|
+
def get_RotationProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1030
|
+
@winrt_commethod(13)
|
|
1031
|
+
def get_TranslateXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1032
|
+
@winrt_commethod(14)
|
|
1033
|
+
def get_TranslateYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1034
|
+
CenterXProperty = property(get_CenterXProperty, None)
|
|
1035
|
+
CenterYProperty = property(get_CenterYProperty, None)
|
|
1036
|
+
RotationProperty = property(get_RotationProperty, None)
|
|
1037
|
+
ScaleXProperty = property(get_ScaleXProperty, None)
|
|
1038
|
+
ScaleYProperty = property(get_ScaleYProperty, None)
|
|
1039
|
+
SkewXProperty = property(get_SkewXProperty, None)
|
|
1040
|
+
SkewYProperty = property(get_SkewYProperty, None)
|
|
1041
|
+
TranslateXProperty = property(get_TranslateXProperty, None)
|
|
1042
|
+
TranslateYProperty = property(get_TranslateYProperty, None)
|
|
1043
|
+
class ICompositionTarget(ComPtr):
|
|
1044
|
+
extends: IInspectable
|
|
1045
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ICompositionTarget'
|
|
1046
|
+
_iid_ = Guid('{7d938324-e3ad-597c-93f6-520725410e68}')
|
|
1047
|
+
class ICompositionTargetStatics(ComPtr):
|
|
1048
|
+
extends: IInspectable
|
|
1049
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ICompositionTargetStatics'
|
|
1050
|
+
_iid_ = Guid('{12a4be6f-6db1-5165-b622-d57ab782745b}')
|
|
1051
|
+
@winrt_commethod(6)
|
|
1052
|
+
def add_Rendering(self, handler: win32more.Windows.Foundation.EventHandler[IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1053
|
+
@winrt_commethod(7)
|
|
1054
|
+
def remove_Rendering(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1055
|
+
@winrt_commethod(8)
|
|
1056
|
+
def add_Rendered(self, handler: win32more.Windows.Foundation.EventHandler[win32more.Microsoft.UI.Xaml.Media.RenderedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1057
|
+
@winrt_commethod(9)
|
|
1058
|
+
def remove_Rendered(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1059
|
+
@winrt_commethod(10)
|
|
1060
|
+
def add_SurfaceContentsLost(self, handler: win32more.Windows.Foundation.EventHandler[IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1061
|
+
@winrt_commethod(11)
|
|
1062
|
+
def remove_SurfaceContentsLost(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1063
|
+
@winrt_commethod(12)
|
|
1064
|
+
def GetCompositorForCurrentThread(self) -> win32more.Microsoft.UI.Composition.Compositor: ...
|
|
1065
|
+
Rendering = event()
|
|
1066
|
+
Rendered = event()
|
|
1067
|
+
SurfaceContentsLost = event()
|
|
1068
|
+
class IDesktopAcrylicBackdrop(ComPtr):
|
|
1069
|
+
extends: IInspectable
|
|
1070
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IDesktopAcrylicBackdrop'
|
|
1071
|
+
_iid_ = Guid('{bfd9915b-82a6-5df6-aff0-a4824ddc1143}')
|
|
1072
|
+
class IDesktopAcrylicBackdropFactory(ComPtr):
|
|
1073
|
+
extends: IInspectable
|
|
1074
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IDesktopAcrylicBackdropFactory'
|
|
1075
|
+
_iid_ = Guid('{00922e6d-ae51-564a-bce2-1973d5e463dd}')
|
|
1076
|
+
@winrt_commethod(6)
|
|
1077
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.DesktopAcrylicBackdrop: ...
|
|
1078
|
+
class IEllipseGeometry(ComPtr):
|
|
1079
|
+
extends: IInspectable
|
|
1080
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IEllipseGeometry'
|
|
1081
|
+
_iid_ = Guid('{ababd262-d8e4-5b49-bce9-0108a5209d45}')
|
|
1082
|
+
@winrt_commethod(6)
|
|
1083
|
+
def get_Center(self) -> win32more.Windows.Foundation.Point: ...
|
|
1084
|
+
@winrt_commethod(7)
|
|
1085
|
+
def put_Center(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1086
|
+
@winrt_commethod(8)
|
|
1087
|
+
def get_RadiusX(self) -> Double: ...
|
|
1088
|
+
@winrt_commethod(9)
|
|
1089
|
+
def put_RadiusX(self, value: Double) -> Void: ...
|
|
1090
|
+
@winrt_commethod(10)
|
|
1091
|
+
def get_RadiusY(self) -> Double: ...
|
|
1092
|
+
@winrt_commethod(11)
|
|
1093
|
+
def put_RadiusY(self, value: Double) -> Void: ...
|
|
1094
|
+
Center = property(get_Center, put_Center)
|
|
1095
|
+
RadiusX = property(get_RadiusX, put_RadiusX)
|
|
1096
|
+
RadiusY = property(get_RadiusY, put_RadiusY)
|
|
1097
|
+
class IEllipseGeometryStatics(ComPtr):
|
|
1098
|
+
extends: IInspectable
|
|
1099
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IEllipseGeometryStatics'
|
|
1100
|
+
_iid_ = Guid('{e8a33c80-d72f-5248-a71f-4b70a0757f89}')
|
|
1101
|
+
@winrt_commethod(6)
|
|
1102
|
+
def get_CenterProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1103
|
+
@winrt_commethod(7)
|
|
1104
|
+
def get_RadiusXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1105
|
+
@winrt_commethod(8)
|
|
1106
|
+
def get_RadiusYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1107
|
+
CenterProperty = property(get_CenterProperty, None)
|
|
1108
|
+
RadiusXProperty = property(get_RadiusXProperty, None)
|
|
1109
|
+
RadiusYProperty = property(get_RadiusYProperty, None)
|
|
1110
|
+
class IFontFamily(ComPtr):
|
|
1111
|
+
extends: IInspectable
|
|
1112
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IFontFamily'
|
|
1113
|
+
_iid_ = Guid('{18fa5bc1-7294-527c-bb02-b213e0b3a2a3}')
|
|
1114
|
+
@winrt_commethod(6)
|
|
1115
|
+
def get_Source(self) -> WinRT_String: ...
|
|
1116
|
+
Source = property(get_Source, None)
|
|
1117
|
+
class IFontFamilyFactory(ComPtr):
|
|
1118
|
+
extends: IInspectable
|
|
1119
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IFontFamilyFactory'
|
|
1120
|
+
_iid_ = Guid('{61b88a77-d0f9-5e9e-8c28-eda01fede22e}')
|
|
1121
|
+
@winrt_commethod(6)
|
|
1122
|
+
def CreateInstanceWithName(self, familyName: WinRT_String, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.FontFamily: ...
|
|
1123
|
+
class IFontFamilyStatics(ComPtr):
|
|
1124
|
+
extends: IInspectable
|
|
1125
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IFontFamilyStatics'
|
|
1126
|
+
_iid_ = Guid('{b3eadceb-c471-58fe-93d0-d71b04a7fd54}')
|
|
1127
|
+
@winrt_commethod(6)
|
|
1128
|
+
def get_XamlAutoFontFamily(self) -> win32more.Microsoft.UI.Xaml.Media.FontFamily: ...
|
|
1129
|
+
XamlAutoFontFamily = property(get_XamlAutoFontFamily, None)
|
|
1130
|
+
class IGeneralTransform(ComPtr):
|
|
1131
|
+
extends: IInspectable
|
|
1132
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeneralTransform'
|
|
1133
|
+
_iid_ = Guid('{04eedeeb-31e5-54c0-ae3f-8bd06645d339}')
|
|
1134
|
+
@winrt_commethod(6)
|
|
1135
|
+
def get_Inverse(self) -> win32more.Microsoft.UI.Xaml.Media.GeneralTransform: ...
|
|
1136
|
+
@winrt_commethod(7)
|
|
1137
|
+
def TransformPoint(self, point: win32more.Windows.Foundation.Point) -> win32more.Windows.Foundation.Point: ...
|
|
1138
|
+
@winrt_commethod(8)
|
|
1139
|
+
def TryTransform(self, inPoint: win32more.Windows.Foundation.Point, outPoint: POINTER(win32more.Windows.Foundation.Point)) -> Boolean: ...
|
|
1140
|
+
@winrt_commethod(9)
|
|
1141
|
+
def TransformBounds(self, rect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Foundation.Rect: ...
|
|
1142
|
+
Inverse = property(get_Inverse, None)
|
|
1143
|
+
class IGeneralTransformFactory(ComPtr):
|
|
1144
|
+
extends: IInspectable
|
|
1145
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeneralTransformFactory'
|
|
1146
|
+
_iid_ = Guid('{2f1025a3-5391-5d1b-8382-3caaa1d26a96}')
|
|
1147
|
+
@winrt_commethod(6)
|
|
1148
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.GeneralTransform: ...
|
|
1149
|
+
class IGeneralTransformOverrides(ComPtr):
|
|
1150
|
+
extends: IInspectable
|
|
1151
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeneralTransformOverrides'
|
|
1152
|
+
_iid_ = Guid('{ce8970f1-83f8-543f-9cf5-439c461601f1}')
|
|
1153
|
+
@winrt_commethod(6)
|
|
1154
|
+
def get_InverseCore(self) -> win32more.Microsoft.UI.Xaml.Media.GeneralTransform: ...
|
|
1155
|
+
@winrt_commethod(7)
|
|
1156
|
+
def TryTransformCore(self, inPoint: win32more.Windows.Foundation.Point, outPoint: POINTER(win32more.Windows.Foundation.Point)) -> Boolean: ...
|
|
1157
|
+
@winrt_commethod(8)
|
|
1158
|
+
def TransformBoundsCore(self, rect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Foundation.Rect: ...
|
|
1159
|
+
InverseCore = property(get_InverseCore, None)
|
|
1160
|
+
class IGeometry(ComPtr):
|
|
1161
|
+
extends: IInspectable
|
|
1162
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeometry'
|
|
1163
|
+
_iid_ = Guid('{dc102dcc-3be2-5414-8599-94b6e76ef39b}')
|
|
1164
|
+
@winrt_commethod(6)
|
|
1165
|
+
def get_Transform(self) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
|
|
1166
|
+
@winrt_commethod(7)
|
|
1167
|
+
def put_Transform(self, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
1168
|
+
@winrt_commethod(8)
|
|
1169
|
+
def get_Bounds(self) -> win32more.Windows.Foundation.Rect: ...
|
|
1170
|
+
Bounds = property(get_Bounds, None)
|
|
1171
|
+
Transform = property(get_Transform, put_Transform)
|
|
1172
|
+
class IGeometryFactory(ComPtr):
|
|
1173
|
+
extends: IInspectable
|
|
1174
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeometryFactory'
|
|
1175
|
+
_iid_ = Guid('{4edcd536-7949-548a-a9b1-6ff03b951cf3}')
|
|
1176
|
+
class IGeometryGroup(ComPtr):
|
|
1177
|
+
extends: IInspectable
|
|
1178
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeometryGroup'
|
|
1179
|
+
_iid_ = Guid('{b4dde569-ea96-5883-914c-ebb7d818dd3a}')
|
|
1180
|
+
@winrt_commethod(6)
|
|
1181
|
+
def get_FillRule(self) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
|
|
1182
|
+
@winrt_commethod(7)
|
|
1183
|
+
def put_FillRule(self, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
|
|
1184
|
+
@winrt_commethod(8)
|
|
1185
|
+
def get_Children(self) -> win32more.Microsoft.UI.Xaml.Media.GeometryCollection: ...
|
|
1186
|
+
@winrt_commethod(9)
|
|
1187
|
+
def put_Children(self, value: win32more.Microsoft.UI.Xaml.Media.GeometryCollection) -> Void: ...
|
|
1188
|
+
Children = property(get_Children, put_Children)
|
|
1189
|
+
FillRule = property(get_FillRule, put_FillRule)
|
|
1190
|
+
class IGeometryGroupStatics(ComPtr):
|
|
1191
|
+
extends: IInspectable
|
|
1192
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeometryGroupStatics'
|
|
1193
|
+
_iid_ = Guid('{56a23da5-d015-568a-9f8b-11b125cfd9b4}')
|
|
1194
|
+
@winrt_commethod(6)
|
|
1195
|
+
def get_FillRuleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1196
|
+
@winrt_commethod(7)
|
|
1197
|
+
def get_ChildrenProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1198
|
+
ChildrenProperty = property(get_ChildrenProperty, None)
|
|
1199
|
+
FillRuleProperty = property(get_FillRuleProperty, None)
|
|
1200
|
+
class IGeometryStatics(ComPtr):
|
|
1201
|
+
extends: IInspectable
|
|
1202
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGeometryStatics'
|
|
1203
|
+
_iid_ = Guid('{349f78d0-4978-5742-b7d2-b34ea2c95600}')
|
|
1204
|
+
@winrt_commethod(6)
|
|
1205
|
+
def get_Empty(self) -> win32more.Microsoft.UI.Xaml.Media.Geometry: ...
|
|
1206
|
+
@winrt_commethod(7)
|
|
1207
|
+
def get_StandardFlatteningTolerance(self) -> Double: ...
|
|
1208
|
+
@winrt_commethod(8)
|
|
1209
|
+
def get_TransformProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1210
|
+
Empty = property(get_Empty, None)
|
|
1211
|
+
StandardFlatteningTolerance = property(get_StandardFlatteningTolerance, None)
|
|
1212
|
+
TransformProperty = property(get_TransformProperty, None)
|
|
1213
|
+
class IGradientBrush(ComPtr):
|
|
1214
|
+
extends: IInspectable
|
|
1215
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGradientBrush'
|
|
1216
|
+
_iid_ = Guid('{77c347fa-c4c4-5174-a945-65cab3aa1c75}')
|
|
1217
|
+
@winrt_commethod(6)
|
|
1218
|
+
def get_SpreadMethod(self) -> win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod: ...
|
|
1219
|
+
@winrt_commethod(7)
|
|
1220
|
+
def put_SpreadMethod(self, value: win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod) -> Void: ...
|
|
1221
|
+
@winrt_commethod(8)
|
|
1222
|
+
def get_MappingMode(self) -> win32more.Microsoft.UI.Xaml.Media.BrushMappingMode: ...
|
|
1223
|
+
@winrt_commethod(9)
|
|
1224
|
+
def put_MappingMode(self, value: win32more.Microsoft.UI.Xaml.Media.BrushMappingMode) -> Void: ...
|
|
1225
|
+
@winrt_commethod(10)
|
|
1226
|
+
def get_ColorInterpolationMode(self) -> win32more.Microsoft.UI.Xaml.Media.ColorInterpolationMode: ...
|
|
1227
|
+
@winrt_commethod(11)
|
|
1228
|
+
def put_ColorInterpolationMode(self, value: win32more.Microsoft.UI.Xaml.Media.ColorInterpolationMode) -> Void: ...
|
|
1229
|
+
@winrt_commethod(12)
|
|
1230
|
+
def get_GradientStops(self) -> win32more.Microsoft.UI.Xaml.Media.GradientStopCollection: ...
|
|
1231
|
+
@winrt_commethod(13)
|
|
1232
|
+
def put_GradientStops(self, value: win32more.Microsoft.UI.Xaml.Media.GradientStopCollection) -> Void: ...
|
|
1233
|
+
ColorInterpolationMode = property(get_ColorInterpolationMode, put_ColorInterpolationMode)
|
|
1234
|
+
GradientStops = property(get_GradientStops, put_GradientStops)
|
|
1235
|
+
MappingMode = property(get_MappingMode, put_MappingMode)
|
|
1236
|
+
SpreadMethod = property(get_SpreadMethod, put_SpreadMethod)
|
|
1237
|
+
class IGradientBrushFactory(ComPtr):
|
|
1238
|
+
extends: IInspectable
|
|
1239
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGradientBrushFactory'
|
|
1240
|
+
_iid_ = Guid('{64ff6177-1eda-565b-b7aa-ac50152e3136}')
|
|
1241
|
+
@winrt_commethod(6)
|
|
1242
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.GradientBrush: ...
|
|
1243
|
+
class IGradientBrushStatics(ComPtr):
|
|
1244
|
+
extends: IInspectable
|
|
1245
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGradientBrushStatics'
|
|
1246
|
+
_iid_ = Guid('{4d3697d7-c6db-501c-8fa2-da30b8c8ca3b}')
|
|
1247
|
+
@winrt_commethod(6)
|
|
1248
|
+
def get_SpreadMethodProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1249
|
+
@winrt_commethod(7)
|
|
1250
|
+
def get_MappingModeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1251
|
+
@winrt_commethod(8)
|
|
1252
|
+
def get_ColorInterpolationModeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1253
|
+
@winrt_commethod(9)
|
|
1254
|
+
def get_GradientStopsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1255
|
+
ColorInterpolationModeProperty = property(get_ColorInterpolationModeProperty, None)
|
|
1256
|
+
GradientStopsProperty = property(get_GradientStopsProperty, None)
|
|
1257
|
+
MappingModeProperty = property(get_MappingModeProperty, None)
|
|
1258
|
+
SpreadMethodProperty = property(get_SpreadMethodProperty, None)
|
|
1259
|
+
class IGradientStop(ComPtr):
|
|
1260
|
+
extends: IInspectable
|
|
1261
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGradientStop'
|
|
1262
|
+
_iid_ = Guid('{48bcb039-e8e1-5743-94c3-f766011d3b5d}')
|
|
1263
|
+
@winrt_commethod(6)
|
|
1264
|
+
def get_Color(self) -> win32more.Windows.UI.Color: ...
|
|
1265
|
+
@winrt_commethod(7)
|
|
1266
|
+
def put_Color(self, value: win32more.Windows.UI.Color) -> Void: ...
|
|
1267
|
+
@winrt_commethod(8)
|
|
1268
|
+
def get_Offset(self) -> Double: ...
|
|
1269
|
+
@winrt_commethod(9)
|
|
1270
|
+
def put_Offset(self, value: Double) -> Void: ...
|
|
1271
|
+
Color = property(get_Color, put_Color)
|
|
1272
|
+
Offset = property(get_Offset, put_Offset)
|
|
1273
|
+
class IGradientStopStatics(ComPtr):
|
|
1274
|
+
extends: IInspectable
|
|
1275
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IGradientStopStatics'
|
|
1276
|
+
_iid_ = Guid('{0b566c1b-37de-5bfd-b419-0f7c4c0a0523}')
|
|
1277
|
+
@winrt_commethod(6)
|
|
1278
|
+
def get_ColorProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1279
|
+
@winrt_commethod(7)
|
|
1280
|
+
def get_OffsetProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1281
|
+
ColorProperty = property(get_ColorProperty, None)
|
|
1282
|
+
OffsetProperty = property(get_OffsetProperty, None)
|
|
1283
|
+
class IImageBrush(ComPtr):
|
|
1284
|
+
extends: IInspectable
|
|
1285
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IImageBrush'
|
|
1286
|
+
_iid_ = Guid('{edcd91a3-a868-5ba6-9489-5b12b4c29d85}')
|
|
1287
|
+
@winrt_commethod(6)
|
|
1288
|
+
def get_ImageSource(self) -> win32more.Microsoft.UI.Xaml.Media.ImageSource: ...
|
|
1289
|
+
@winrt_commethod(7)
|
|
1290
|
+
def put_ImageSource(self, value: win32more.Microsoft.UI.Xaml.Media.ImageSource) -> Void: ...
|
|
1291
|
+
@winrt_commethod(8)
|
|
1292
|
+
def add_ImageFailed(self, handler: win32more.Microsoft.UI.Xaml.ExceptionRoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1293
|
+
@winrt_commethod(9)
|
|
1294
|
+
def remove_ImageFailed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1295
|
+
@winrt_commethod(10)
|
|
1296
|
+
def add_ImageOpened(self, handler: win32more.Microsoft.UI.Xaml.RoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1297
|
+
@winrt_commethod(11)
|
|
1298
|
+
def remove_ImageOpened(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1299
|
+
ImageSource = property(get_ImageSource, put_ImageSource)
|
|
1300
|
+
ImageFailed = event()
|
|
1301
|
+
ImageOpened = event()
|
|
1302
|
+
class IImageBrushStatics(ComPtr):
|
|
1303
|
+
extends: IInspectable
|
|
1304
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IImageBrushStatics'
|
|
1305
|
+
_iid_ = Guid('{ce8082dc-a505-5b4f-8861-79630f52c189}')
|
|
1306
|
+
@winrt_commethod(6)
|
|
1307
|
+
def get_ImageSourceProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1308
|
+
ImageSourceProperty = property(get_ImageSourceProperty, None)
|
|
1309
|
+
class IImageSource(ComPtr):
|
|
1310
|
+
extends: IInspectable
|
|
1311
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IImageSource'
|
|
1312
|
+
_iid_ = Guid('{6c2038f6-d6d5-55e9-9b9e-082f12dbff60}')
|
|
1313
|
+
class IImageSourceFactory(ComPtr):
|
|
1314
|
+
extends: IInspectable
|
|
1315
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IImageSourceFactory'
|
|
1316
|
+
_iid_ = Guid('{0b1e64a3-e353-5901-b84b-ae9842aea5cd}')
|
|
1317
|
+
class ILineGeometry(ComPtr):
|
|
1318
|
+
extends: IInspectable
|
|
1319
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILineGeometry'
|
|
1320
|
+
_iid_ = Guid('{467ef3c5-bc43-50ed-bb23-16be2c63356e}')
|
|
1321
|
+
@winrt_commethod(6)
|
|
1322
|
+
def get_StartPoint(self) -> win32more.Windows.Foundation.Point: ...
|
|
1323
|
+
@winrt_commethod(7)
|
|
1324
|
+
def put_StartPoint(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1325
|
+
@winrt_commethod(8)
|
|
1326
|
+
def get_EndPoint(self) -> win32more.Windows.Foundation.Point: ...
|
|
1327
|
+
@winrt_commethod(9)
|
|
1328
|
+
def put_EndPoint(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1329
|
+
EndPoint = property(get_EndPoint, put_EndPoint)
|
|
1330
|
+
StartPoint = property(get_StartPoint, put_StartPoint)
|
|
1331
|
+
class ILineGeometryStatics(ComPtr):
|
|
1332
|
+
extends: IInspectable
|
|
1333
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILineGeometryStatics'
|
|
1334
|
+
_iid_ = Guid('{ce0ecbf3-9389-5304-b7c8-5e610902f258}')
|
|
1335
|
+
@winrt_commethod(6)
|
|
1336
|
+
def get_StartPointProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1337
|
+
@winrt_commethod(7)
|
|
1338
|
+
def get_EndPointProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1339
|
+
EndPointProperty = property(get_EndPointProperty, None)
|
|
1340
|
+
StartPointProperty = property(get_StartPointProperty, None)
|
|
1341
|
+
class ILineSegment(ComPtr):
|
|
1342
|
+
extends: IInspectable
|
|
1343
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILineSegment'
|
|
1344
|
+
_iid_ = Guid('{0c618e54-d883-588c-8875-bd8dfd6a6a3e}')
|
|
1345
|
+
@winrt_commethod(6)
|
|
1346
|
+
def get_Point(self) -> win32more.Windows.Foundation.Point: ...
|
|
1347
|
+
@winrt_commethod(7)
|
|
1348
|
+
def put_Point(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1349
|
+
Point = property(get_Point, put_Point)
|
|
1350
|
+
class ILineSegmentStatics(ComPtr):
|
|
1351
|
+
extends: IInspectable
|
|
1352
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILineSegmentStatics'
|
|
1353
|
+
_iid_ = Guid('{c3ec48a9-b9c0-561f-9925-d1d1b2a6bae6}')
|
|
1354
|
+
@winrt_commethod(6)
|
|
1355
|
+
def get_PointProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1356
|
+
PointProperty = property(get_PointProperty, None)
|
|
1357
|
+
class ILinearGradientBrush(ComPtr):
|
|
1358
|
+
extends: IInspectable
|
|
1359
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILinearGradientBrush'
|
|
1360
|
+
_iid_ = Guid('{c0ab9638-1bd9-5fa4-9649-48cfa12f0d1e}')
|
|
1361
|
+
@winrt_commethod(6)
|
|
1362
|
+
def get_StartPoint(self) -> win32more.Windows.Foundation.Point: ...
|
|
1363
|
+
@winrt_commethod(7)
|
|
1364
|
+
def put_StartPoint(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1365
|
+
@winrt_commethod(8)
|
|
1366
|
+
def get_EndPoint(self) -> win32more.Windows.Foundation.Point: ...
|
|
1367
|
+
@winrt_commethod(9)
|
|
1368
|
+
def put_EndPoint(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1369
|
+
EndPoint = property(get_EndPoint, put_EndPoint)
|
|
1370
|
+
StartPoint = property(get_StartPoint, put_StartPoint)
|
|
1371
|
+
class ILinearGradientBrushFactory(ComPtr):
|
|
1372
|
+
extends: IInspectable
|
|
1373
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILinearGradientBrushFactory'
|
|
1374
|
+
_iid_ = Guid('{c0ba7de3-ccfd-534c-882f-3ab39ae723f3}')
|
|
1375
|
+
@winrt_commethod(6)
|
|
1376
|
+
def CreateInstanceWithGradientStopCollectionAndAngle(self, gradientStopCollection: win32more.Microsoft.UI.Xaml.Media.GradientStopCollection, angle: Double) -> win32more.Microsoft.UI.Xaml.Media.LinearGradientBrush: ...
|
|
1377
|
+
class ILinearGradientBrushStatics(ComPtr):
|
|
1378
|
+
extends: IInspectable
|
|
1379
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILinearGradientBrushStatics'
|
|
1380
|
+
_iid_ = Guid('{df029e84-f6be-5b7e-ba22-3b4e7a6bceee}')
|
|
1381
|
+
@winrt_commethod(6)
|
|
1382
|
+
def get_StartPointProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1383
|
+
@winrt_commethod(7)
|
|
1384
|
+
def get_EndPointProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1385
|
+
EndPointProperty = property(get_EndPointProperty, None)
|
|
1386
|
+
StartPointProperty = property(get_StartPointProperty, None)
|
|
1387
|
+
class ILoadedImageSourceLoadCompletedEventArgs(ComPtr):
|
|
1388
|
+
extends: IInspectable
|
|
1389
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILoadedImageSourceLoadCompletedEventArgs'
|
|
1390
|
+
_iid_ = Guid('{4121bb7c-48e8-542d-b950-3ea7e709c0d6}')
|
|
1391
|
+
@winrt_commethod(6)
|
|
1392
|
+
def get_Status(self) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSourceLoadStatus: ...
|
|
1393
|
+
Status = property(get_Status, None)
|
|
1394
|
+
class ILoadedImageSurface(ComPtr):
|
|
1395
|
+
extends: IInspectable
|
|
1396
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILoadedImageSurface'
|
|
1397
|
+
_iid_ = Guid('{b5275540-1706-5851-95cc-498ee81fb183}')
|
|
1398
|
+
@winrt_commethod(6)
|
|
1399
|
+
def get_DecodedPhysicalSize(self) -> win32more.Windows.Foundation.Size: ...
|
|
1400
|
+
@winrt_commethod(7)
|
|
1401
|
+
def get_DecodedSize(self) -> win32more.Windows.Foundation.Size: ...
|
|
1402
|
+
@winrt_commethod(8)
|
|
1403
|
+
def get_NaturalSize(self) -> win32more.Windows.Foundation.Size: ...
|
|
1404
|
+
@winrt_commethod(9)
|
|
1405
|
+
def add_LoadCompleted(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface, win32more.Microsoft.UI.Xaml.Media.LoadedImageSourceLoadCompletedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1406
|
+
@winrt_commethod(10)
|
|
1407
|
+
def remove_LoadCompleted(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1408
|
+
DecodedPhysicalSize = property(get_DecodedPhysicalSize, None)
|
|
1409
|
+
DecodedSize = property(get_DecodedSize, None)
|
|
1410
|
+
NaturalSize = property(get_NaturalSize, None)
|
|
1411
|
+
LoadCompleted = event()
|
|
1412
|
+
class ILoadedImageSurfaceStatics(ComPtr):
|
|
1413
|
+
extends: IInspectable
|
|
1414
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ILoadedImageSurfaceStatics'
|
|
1415
|
+
_iid_ = Guid('{25d390c4-4e32-52c2-868f-f2ede74ee442}')
|
|
1416
|
+
@winrt_commethod(6)
|
|
1417
|
+
def StartLoadFromUriWithSize(self, uri: win32more.Windows.Foundation.Uri, desiredMaxSize: win32more.Windows.Foundation.Size) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
1418
|
+
@winrt_commethod(7)
|
|
1419
|
+
def StartLoadFromUri(self, uri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
1420
|
+
@winrt_commethod(8)
|
|
1421
|
+
def StartLoadFromStreamWithSize(self, stream: win32more.Windows.Storage.Streams.IRandomAccessStream, desiredMaxSize: win32more.Windows.Foundation.Size) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
1422
|
+
@winrt_commethod(9)
|
|
1423
|
+
def StartLoadFromStream(self, stream: win32more.Windows.Storage.Streams.IRandomAccessStream) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
1424
|
+
class IMatrix3DProjection(ComPtr):
|
|
1425
|
+
extends: IInspectable
|
|
1426
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMatrix3DProjection'
|
|
1427
|
+
_iid_ = Guid('{fc3338ef-f390-5bb1-932e-3b7c08788187}')
|
|
1428
|
+
@winrt_commethod(6)
|
|
1429
|
+
def get_ProjectionMatrix(self) -> win32more.Microsoft.UI.Xaml.Media.Media3D.Matrix3D: ...
|
|
1430
|
+
@winrt_commethod(7)
|
|
1431
|
+
def put_ProjectionMatrix(self, value: win32more.Microsoft.UI.Xaml.Media.Media3D.Matrix3D) -> Void: ...
|
|
1432
|
+
ProjectionMatrix = property(get_ProjectionMatrix, put_ProjectionMatrix)
|
|
1433
|
+
class IMatrix3DProjectionStatics(ComPtr):
|
|
1434
|
+
extends: IInspectable
|
|
1435
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMatrix3DProjectionStatics'
|
|
1436
|
+
_iid_ = Guid('{a5a7e267-7a5d-58ef-a8cd-b88ebdf82207}')
|
|
1437
|
+
@winrt_commethod(6)
|
|
1438
|
+
def get_ProjectionMatrixProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1439
|
+
ProjectionMatrixProperty = property(get_ProjectionMatrixProperty, None)
|
|
1440
|
+
class IMatrixHelper(ComPtr):
|
|
1441
|
+
extends: IInspectable
|
|
1442
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMatrixHelper'
|
|
1443
|
+
_iid_ = Guid('{9571fd76-cc5c-534d-ac85-cb4ac870c912}')
|
|
1444
|
+
class IMatrixHelperStatics(ComPtr):
|
|
1445
|
+
extends: IInspectable
|
|
1446
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMatrixHelperStatics'
|
|
1447
|
+
_iid_ = Guid('{5762cf6b-4fb0-532f-8368-de960042701f}')
|
|
1448
|
+
@winrt_commethod(6)
|
|
1449
|
+
def get_Identity(self) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
1450
|
+
@winrt_commethod(7)
|
|
1451
|
+
def FromElements(self, m11: Double, m12: Double, m21: Double, m22: Double, offsetX: Double, offsetY: Double) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
1452
|
+
@winrt_commethod(8)
|
|
1453
|
+
def GetIsIdentity(self, target: win32more.Microsoft.UI.Xaml.Media.Matrix) -> Boolean: ...
|
|
1454
|
+
@winrt_commethod(9)
|
|
1455
|
+
def Transform(self, target: win32more.Microsoft.UI.Xaml.Media.Matrix, point: win32more.Windows.Foundation.Point) -> win32more.Windows.Foundation.Point: ...
|
|
1456
|
+
Identity = property(get_Identity, None)
|
|
1457
|
+
class IMatrixTransform(ComPtr):
|
|
1458
|
+
extends: IInspectable
|
|
1459
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMatrixTransform'
|
|
1460
|
+
_iid_ = Guid('{f03138e1-addd-59fa-b993-3ea69b888ace}')
|
|
1461
|
+
@winrt_commethod(6)
|
|
1462
|
+
def get_Matrix(self) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
1463
|
+
@winrt_commethod(7)
|
|
1464
|
+
def put_Matrix(self, value: win32more.Microsoft.UI.Xaml.Media.Matrix) -> Void: ...
|
|
1465
|
+
Matrix = property(get_Matrix, put_Matrix)
|
|
1466
|
+
class IMatrixTransformStatics(ComPtr):
|
|
1467
|
+
extends: IInspectable
|
|
1468
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMatrixTransformStatics'
|
|
1469
|
+
_iid_ = Guid('{d7db9de3-5071-5115-98fb-ccad2fd46e44}')
|
|
1470
|
+
@winrt_commethod(6)
|
|
1471
|
+
def get_MatrixProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1472
|
+
MatrixProperty = property(get_MatrixProperty, None)
|
|
1473
|
+
class IMediaTransportControlsThumbnailRequestedEventArgs(ComPtr):
|
|
1474
|
+
extends: IInspectable
|
|
1475
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMediaTransportControlsThumbnailRequestedEventArgs'
|
|
1476
|
+
_iid_ = Guid('{fe0ffb86-74b0-5031-accc-b34d0382a637}')
|
|
1477
|
+
@winrt_commethod(6)
|
|
1478
|
+
def SetThumbnailImage(self, source: win32more.Windows.Storage.Streams.IInputStream) -> Void: ...
|
|
1479
|
+
@winrt_commethod(7)
|
|
1480
|
+
def GetDeferral(self) -> win32more.Windows.Foundation.Deferral: ...
|
|
1481
|
+
class IMicaBackdrop(ComPtr):
|
|
1482
|
+
extends: IInspectable
|
|
1483
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMicaBackdrop'
|
|
1484
|
+
_iid_ = Guid('{c156a404-3dac-593a-b1f3-7a33c289dc83}')
|
|
1485
|
+
@winrt_commethod(6)
|
|
1486
|
+
def get_Kind(self) -> win32more.Microsoft.UI.Composition.SystemBackdrops.MicaKind: ...
|
|
1487
|
+
@winrt_commethod(7)
|
|
1488
|
+
def put_Kind(self, value: win32more.Microsoft.UI.Composition.SystemBackdrops.MicaKind) -> Void: ...
|
|
1489
|
+
Kind = property(get_Kind, put_Kind)
|
|
1490
|
+
class IMicaBackdropFactory(ComPtr):
|
|
1491
|
+
extends: IInspectable
|
|
1492
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMicaBackdropFactory'
|
|
1493
|
+
_iid_ = Guid('{774379ce-74bd-59d4-849d-d99c4184d838}')
|
|
1494
|
+
@winrt_commethod(6)
|
|
1495
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.MicaBackdrop: ...
|
|
1496
|
+
class IMicaBackdropStatics(ComPtr):
|
|
1497
|
+
extends: IInspectable
|
|
1498
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IMicaBackdropStatics'
|
|
1499
|
+
_iid_ = Guid('{a63abdce-c796-5509-9f4d-072bc1e599f1}')
|
|
1500
|
+
@winrt_commethod(6)
|
|
1501
|
+
def get_KindProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1502
|
+
KindProperty = property(get_KindProperty, None)
|
|
1503
|
+
class IPathFigure(ComPtr):
|
|
1504
|
+
extends: IInspectable
|
|
1505
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPathFigure'
|
|
1506
|
+
_iid_ = Guid('{0ee00712-bf65-5f27-9c06-14abdf6656d7}')
|
|
1507
|
+
@winrt_commethod(6)
|
|
1508
|
+
def get_Segments(self) -> win32more.Microsoft.UI.Xaml.Media.PathSegmentCollection: ...
|
|
1509
|
+
@winrt_commethod(7)
|
|
1510
|
+
def put_Segments(self, value: win32more.Microsoft.UI.Xaml.Media.PathSegmentCollection) -> Void: ...
|
|
1511
|
+
@winrt_commethod(8)
|
|
1512
|
+
def get_StartPoint(self) -> win32more.Windows.Foundation.Point: ...
|
|
1513
|
+
@winrt_commethod(9)
|
|
1514
|
+
def put_StartPoint(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1515
|
+
@winrt_commethod(10)
|
|
1516
|
+
def get_IsClosed(self) -> Boolean: ...
|
|
1517
|
+
@winrt_commethod(11)
|
|
1518
|
+
def put_IsClosed(self, value: Boolean) -> Void: ...
|
|
1519
|
+
@winrt_commethod(12)
|
|
1520
|
+
def get_IsFilled(self) -> Boolean: ...
|
|
1521
|
+
@winrt_commethod(13)
|
|
1522
|
+
def put_IsFilled(self, value: Boolean) -> Void: ...
|
|
1523
|
+
IsClosed = property(get_IsClosed, put_IsClosed)
|
|
1524
|
+
IsFilled = property(get_IsFilled, put_IsFilled)
|
|
1525
|
+
Segments = property(get_Segments, put_Segments)
|
|
1526
|
+
StartPoint = property(get_StartPoint, put_StartPoint)
|
|
1527
|
+
class IPathFigureStatics(ComPtr):
|
|
1528
|
+
extends: IInspectable
|
|
1529
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPathFigureStatics'
|
|
1530
|
+
_iid_ = Guid('{93bc33c4-879a-5edb-b8d7-7ecb861a7314}')
|
|
1531
|
+
@winrt_commethod(6)
|
|
1532
|
+
def get_SegmentsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1533
|
+
@winrt_commethod(7)
|
|
1534
|
+
def get_StartPointProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1535
|
+
@winrt_commethod(8)
|
|
1536
|
+
def get_IsClosedProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1537
|
+
@winrt_commethod(9)
|
|
1538
|
+
def get_IsFilledProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1539
|
+
IsClosedProperty = property(get_IsClosedProperty, None)
|
|
1540
|
+
IsFilledProperty = property(get_IsFilledProperty, None)
|
|
1541
|
+
SegmentsProperty = property(get_SegmentsProperty, None)
|
|
1542
|
+
StartPointProperty = property(get_StartPointProperty, None)
|
|
1543
|
+
class IPathGeometry(ComPtr):
|
|
1544
|
+
extends: IInspectable
|
|
1545
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPathGeometry'
|
|
1546
|
+
_iid_ = Guid('{11b9d95d-d3d9-5337-a05c-73a27a2b5124}')
|
|
1547
|
+
@winrt_commethod(6)
|
|
1548
|
+
def get_FillRule(self) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
|
|
1549
|
+
@winrt_commethod(7)
|
|
1550
|
+
def put_FillRule(self, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
|
|
1551
|
+
@winrt_commethod(8)
|
|
1552
|
+
def get_Figures(self) -> win32more.Microsoft.UI.Xaml.Media.PathFigureCollection: ...
|
|
1553
|
+
@winrt_commethod(9)
|
|
1554
|
+
def put_Figures(self, value: win32more.Microsoft.UI.Xaml.Media.PathFigureCollection) -> Void: ...
|
|
1555
|
+
Figures = property(get_Figures, put_Figures)
|
|
1556
|
+
FillRule = property(get_FillRule, put_FillRule)
|
|
1557
|
+
class IPathGeometryStatics(ComPtr):
|
|
1558
|
+
extends: IInspectable
|
|
1559
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPathGeometryStatics'
|
|
1560
|
+
_iid_ = Guid('{d7f408fe-6c3a-5cce-91cc-c5a95d4b345a}')
|
|
1561
|
+
@winrt_commethod(6)
|
|
1562
|
+
def get_FillRuleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1563
|
+
@winrt_commethod(7)
|
|
1564
|
+
def get_FiguresProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1565
|
+
FiguresProperty = property(get_FiguresProperty, None)
|
|
1566
|
+
FillRuleProperty = property(get_FillRuleProperty, None)
|
|
1567
|
+
class IPathSegment(ComPtr):
|
|
1568
|
+
extends: IInspectable
|
|
1569
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPathSegment'
|
|
1570
|
+
_iid_ = Guid('{b922ebbe-08f0-57e9-8785-7e57097f3bd4}')
|
|
1571
|
+
class IPathSegmentFactory(ComPtr):
|
|
1572
|
+
extends: IInspectable
|
|
1573
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPathSegmentFactory'
|
|
1574
|
+
_iid_ = Guid('{0559a4ff-ac4b-5bb7-b541-d373960e083b}')
|
|
1575
|
+
class IPlaneProjection(ComPtr):
|
|
1576
|
+
extends: IInspectable
|
|
1577
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPlaneProjection'
|
|
1578
|
+
_iid_ = Guid('{d3e22836-0322-5d75-941c-a5ffb05192b2}')
|
|
1579
|
+
@winrt_commethod(6)
|
|
1580
|
+
def get_LocalOffsetX(self) -> Double: ...
|
|
1581
|
+
@winrt_commethod(7)
|
|
1582
|
+
def put_LocalOffsetX(self, value: Double) -> Void: ...
|
|
1583
|
+
@winrt_commethod(8)
|
|
1584
|
+
def get_LocalOffsetY(self) -> Double: ...
|
|
1585
|
+
@winrt_commethod(9)
|
|
1586
|
+
def put_LocalOffsetY(self, value: Double) -> Void: ...
|
|
1587
|
+
@winrt_commethod(10)
|
|
1588
|
+
def get_LocalOffsetZ(self) -> Double: ...
|
|
1589
|
+
@winrt_commethod(11)
|
|
1590
|
+
def put_LocalOffsetZ(self, value: Double) -> Void: ...
|
|
1591
|
+
@winrt_commethod(12)
|
|
1592
|
+
def get_RotationX(self) -> Double: ...
|
|
1593
|
+
@winrt_commethod(13)
|
|
1594
|
+
def put_RotationX(self, value: Double) -> Void: ...
|
|
1595
|
+
@winrt_commethod(14)
|
|
1596
|
+
def get_RotationY(self) -> Double: ...
|
|
1597
|
+
@winrt_commethod(15)
|
|
1598
|
+
def put_RotationY(self, value: Double) -> Void: ...
|
|
1599
|
+
@winrt_commethod(16)
|
|
1600
|
+
def get_RotationZ(self) -> Double: ...
|
|
1601
|
+
@winrt_commethod(17)
|
|
1602
|
+
def put_RotationZ(self, value: Double) -> Void: ...
|
|
1603
|
+
@winrt_commethod(18)
|
|
1604
|
+
def get_CenterOfRotationX(self) -> Double: ...
|
|
1605
|
+
@winrt_commethod(19)
|
|
1606
|
+
def put_CenterOfRotationX(self, value: Double) -> Void: ...
|
|
1607
|
+
@winrt_commethod(20)
|
|
1608
|
+
def get_CenterOfRotationY(self) -> Double: ...
|
|
1609
|
+
@winrt_commethod(21)
|
|
1610
|
+
def put_CenterOfRotationY(self, value: Double) -> Void: ...
|
|
1611
|
+
@winrt_commethod(22)
|
|
1612
|
+
def get_CenterOfRotationZ(self) -> Double: ...
|
|
1613
|
+
@winrt_commethod(23)
|
|
1614
|
+
def put_CenterOfRotationZ(self, value: Double) -> Void: ...
|
|
1615
|
+
@winrt_commethod(24)
|
|
1616
|
+
def get_GlobalOffsetX(self) -> Double: ...
|
|
1617
|
+
@winrt_commethod(25)
|
|
1618
|
+
def put_GlobalOffsetX(self, value: Double) -> Void: ...
|
|
1619
|
+
@winrt_commethod(26)
|
|
1620
|
+
def get_GlobalOffsetY(self) -> Double: ...
|
|
1621
|
+
@winrt_commethod(27)
|
|
1622
|
+
def put_GlobalOffsetY(self, value: Double) -> Void: ...
|
|
1623
|
+
@winrt_commethod(28)
|
|
1624
|
+
def get_GlobalOffsetZ(self) -> Double: ...
|
|
1625
|
+
@winrt_commethod(29)
|
|
1626
|
+
def put_GlobalOffsetZ(self, value: Double) -> Void: ...
|
|
1627
|
+
@winrt_commethod(30)
|
|
1628
|
+
def get_ProjectionMatrix(self) -> win32more.Microsoft.UI.Xaml.Media.Media3D.Matrix3D: ...
|
|
1629
|
+
CenterOfRotationX = property(get_CenterOfRotationX, put_CenterOfRotationX)
|
|
1630
|
+
CenterOfRotationY = property(get_CenterOfRotationY, put_CenterOfRotationY)
|
|
1631
|
+
CenterOfRotationZ = property(get_CenterOfRotationZ, put_CenterOfRotationZ)
|
|
1632
|
+
GlobalOffsetX = property(get_GlobalOffsetX, put_GlobalOffsetX)
|
|
1633
|
+
GlobalOffsetY = property(get_GlobalOffsetY, put_GlobalOffsetY)
|
|
1634
|
+
GlobalOffsetZ = property(get_GlobalOffsetZ, put_GlobalOffsetZ)
|
|
1635
|
+
LocalOffsetX = property(get_LocalOffsetX, put_LocalOffsetX)
|
|
1636
|
+
LocalOffsetY = property(get_LocalOffsetY, put_LocalOffsetY)
|
|
1637
|
+
LocalOffsetZ = property(get_LocalOffsetZ, put_LocalOffsetZ)
|
|
1638
|
+
ProjectionMatrix = property(get_ProjectionMatrix, None)
|
|
1639
|
+
RotationX = property(get_RotationX, put_RotationX)
|
|
1640
|
+
RotationY = property(get_RotationY, put_RotationY)
|
|
1641
|
+
RotationZ = property(get_RotationZ, put_RotationZ)
|
|
1642
|
+
class IPlaneProjectionStatics(ComPtr):
|
|
1643
|
+
extends: IInspectable
|
|
1644
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPlaneProjectionStatics'
|
|
1645
|
+
_iid_ = Guid('{96d86c18-90dd-564a-828a-8735e4219b1d}')
|
|
1646
|
+
@winrt_commethod(6)
|
|
1647
|
+
def get_LocalOffsetXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1648
|
+
@winrt_commethod(7)
|
|
1649
|
+
def get_LocalOffsetYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1650
|
+
@winrt_commethod(8)
|
|
1651
|
+
def get_LocalOffsetZProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1652
|
+
@winrt_commethod(9)
|
|
1653
|
+
def get_RotationXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1654
|
+
@winrt_commethod(10)
|
|
1655
|
+
def get_RotationYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1656
|
+
@winrt_commethod(11)
|
|
1657
|
+
def get_RotationZProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1658
|
+
@winrt_commethod(12)
|
|
1659
|
+
def get_CenterOfRotationXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1660
|
+
@winrt_commethod(13)
|
|
1661
|
+
def get_CenterOfRotationYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1662
|
+
@winrt_commethod(14)
|
|
1663
|
+
def get_CenterOfRotationZProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1664
|
+
@winrt_commethod(15)
|
|
1665
|
+
def get_GlobalOffsetXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1666
|
+
@winrt_commethod(16)
|
|
1667
|
+
def get_GlobalOffsetYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1668
|
+
@winrt_commethod(17)
|
|
1669
|
+
def get_GlobalOffsetZProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1670
|
+
@winrt_commethod(18)
|
|
1671
|
+
def get_ProjectionMatrixProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1672
|
+
CenterOfRotationXProperty = property(get_CenterOfRotationXProperty, None)
|
|
1673
|
+
CenterOfRotationYProperty = property(get_CenterOfRotationYProperty, None)
|
|
1674
|
+
CenterOfRotationZProperty = property(get_CenterOfRotationZProperty, None)
|
|
1675
|
+
GlobalOffsetXProperty = property(get_GlobalOffsetXProperty, None)
|
|
1676
|
+
GlobalOffsetYProperty = property(get_GlobalOffsetYProperty, None)
|
|
1677
|
+
GlobalOffsetZProperty = property(get_GlobalOffsetZProperty, None)
|
|
1678
|
+
LocalOffsetXProperty = property(get_LocalOffsetXProperty, None)
|
|
1679
|
+
LocalOffsetYProperty = property(get_LocalOffsetYProperty, None)
|
|
1680
|
+
LocalOffsetZProperty = property(get_LocalOffsetZProperty, None)
|
|
1681
|
+
ProjectionMatrixProperty = property(get_ProjectionMatrixProperty, None)
|
|
1682
|
+
RotationXProperty = property(get_RotationXProperty, None)
|
|
1683
|
+
RotationYProperty = property(get_RotationYProperty, None)
|
|
1684
|
+
RotationZProperty = property(get_RotationZProperty, None)
|
|
1685
|
+
class IPolyBezierSegment(ComPtr):
|
|
1686
|
+
extends: IInspectable
|
|
1687
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPolyBezierSegment'
|
|
1688
|
+
_iid_ = Guid('{d7f760a0-b93a-562a-8118-6330ed22c307}')
|
|
1689
|
+
@winrt_commethod(6)
|
|
1690
|
+
def get_Points(self) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
|
|
1691
|
+
@winrt_commethod(7)
|
|
1692
|
+
def put_Points(self, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
|
|
1693
|
+
Points = property(get_Points, put_Points)
|
|
1694
|
+
class IPolyBezierSegmentStatics(ComPtr):
|
|
1695
|
+
extends: IInspectable
|
|
1696
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPolyBezierSegmentStatics'
|
|
1697
|
+
_iid_ = Guid('{738ef089-a80f-53e0-816f-f787a4461907}')
|
|
1698
|
+
@winrt_commethod(6)
|
|
1699
|
+
def get_PointsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1700
|
+
PointsProperty = property(get_PointsProperty, None)
|
|
1701
|
+
class IPolyLineSegment(ComPtr):
|
|
1702
|
+
extends: IInspectable
|
|
1703
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPolyLineSegment'
|
|
1704
|
+
_iid_ = Guid('{426ef287-0287-536f-ad9e-6a05ecbb323a}')
|
|
1705
|
+
@winrt_commethod(6)
|
|
1706
|
+
def get_Points(self) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
|
|
1707
|
+
@winrt_commethod(7)
|
|
1708
|
+
def put_Points(self, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
|
|
1709
|
+
Points = property(get_Points, put_Points)
|
|
1710
|
+
class IPolyLineSegmentStatics(ComPtr):
|
|
1711
|
+
extends: IInspectable
|
|
1712
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPolyLineSegmentStatics'
|
|
1713
|
+
_iid_ = Guid('{cf54e568-101a-5349-9189-6f9a1e7f5280}')
|
|
1714
|
+
@winrt_commethod(6)
|
|
1715
|
+
def get_PointsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1716
|
+
PointsProperty = property(get_PointsProperty, None)
|
|
1717
|
+
class IPolyQuadraticBezierSegment(ComPtr):
|
|
1718
|
+
extends: IInspectable
|
|
1719
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPolyQuadraticBezierSegment'
|
|
1720
|
+
_iid_ = Guid('{56372f4c-c531-5c3e-b0e0-1645f5a8d872}')
|
|
1721
|
+
@winrt_commethod(6)
|
|
1722
|
+
def get_Points(self) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
|
|
1723
|
+
@winrt_commethod(7)
|
|
1724
|
+
def put_Points(self, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
|
|
1725
|
+
Points = property(get_Points, put_Points)
|
|
1726
|
+
class IPolyQuadraticBezierSegmentStatics(ComPtr):
|
|
1727
|
+
extends: IInspectable
|
|
1728
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IPolyQuadraticBezierSegmentStatics'
|
|
1729
|
+
_iid_ = Guid('{7eb6374d-cd30-5507-b2ab-c4e3a7dc60bf}')
|
|
1730
|
+
@winrt_commethod(6)
|
|
1731
|
+
def get_PointsProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1732
|
+
PointsProperty = property(get_PointsProperty, None)
|
|
1733
|
+
class IProjection(ComPtr):
|
|
1734
|
+
extends: IInspectable
|
|
1735
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IProjection'
|
|
1736
|
+
_iid_ = Guid('{c95364b3-6058-5ee5-9e28-d38b7679fcd4}')
|
|
1737
|
+
class IProjectionFactory(ComPtr):
|
|
1738
|
+
extends: IInspectable
|
|
1739
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IProjectionFactory'
|
|
1740
|
+
_iid_ = Guid('{870ea34f-db61-5b75-89ad-e0480c802937}')
|
|
1741
|
+
@winrt_commethod(6)
|
|
1742
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Projection: ...
|
|
1743
|
+
class IQuadraticBezierSegment(ComPtr):
|
|
1744
|
+
extends: IInspectable
|
|
1745
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IQuadraticBezierSegment'
|
|
1746
|
+
_iid_ = Guid('{6048abe4-7a12-5195-bd61-71dfd0361c38}')
|
|
1747
|
+
@winrt_commethod(6)
|
|
1748
|
+
def get_Point1(self) -> win32more.Windows.Foundation.Point: ...
|
|
1749
|
+
@winrt_commethod(7)
|
|
1750
|
+
def put_Point1(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1751
|
+
@winrt_commethod(8)
|
|
1752
|
+
def get_Point2(self) -> win32more.Windows.Foundation.Point: ...
|
|
1753
|
+
@winrt_commethod(9)
|
|
1754
|
+
def put_Point2(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1755
|
+
Point1 = property(get_Point1, put_Point1)
|
|
1756
|
+
Point2 = property(get_Point2, put_Point2)
|
|
1757
|
+
class IQuadraticBezierSegmentStatics(ComPtr):
|
|
1758
|
+
extends: IInspectable
|
|
1759
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IQuadraticBezierSegmentStatics'
|
|
1760
|
+
_iid_ = Guid('{4d56ea65-0a1a-528a-a5b6-41da03ac71f4}')
|
|
1761
|
+
@winrt_commethod(6)
|
|
1762
|
+
def get_Point1Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1763
|
+
@winrt_commethod(7)
|
|
1764
|
+
def get_Point2Property(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1765
|
+
Point1Property = property(get_Point1Property, None)
|
|
1766
|
+
Point2Property = property(get_Point2Property, None)
|
|
1767
|
+
class IRadialGradientBrush(ComPtr):
|
|
1768
|
+
extends: IInspectable
|
|
1769
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRadialGradientBrush'
|
|
1770
|
+
_iid_ = Guid('{5d493ce1-b844-546a-b772-b3bcba7e98ee}')
|
|
1771
|
+
@winrt_commethod(6)
|
|
1772
|
+
def get_Center(self) -> win32more.Windows.Foundation.Point: ...
|
|
1773
|
+
@winrt_commethod(7)
|
|
1774
|
+
def put_Center(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1775
|
+
@winrt_commethod(8)
|
|
1776
|
+
def get_RadiusX(self) -> Double: ...
|
|
1777
|
+
@winrt_commethod(9)
|
|
1778
|
+
def put_RadiusX(self, value: Double) -> Void: ...
|
|
1779
|
+
@winrt_commethod(10)
|
|
1780
|
+
def get_RadiusY(self) -> Double: ...
|
|
1781
|
+
@winrt_commethod(11)
|
|
1782
|
+
def put_RadiusY(self, value: Double) -> Void: ...
|
|
1783
|
+
@winrt_commethod(12)
|
|
1784
|
+
def get_GradientOrigin(self) -> win32more.Windows.Foundation.Point: ...
|
|
1785
|
+
@winrt_commethod(13)
|
|
1786
|
+
def put_GradientOrigin(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1787
|
+
@winrt_commethod(14)
|
|
1788
|
+
def get_MappingMode(self) -> win32more.Microsoft.UI.Xaml.Media.BrushMappingMode: ...
|
|
1789
|
+
@winrt_commethod(15)
|
|
1790
|
+
def put_MappingMode(self, value: win32more.Microsoft.UI.Xaml.Media.BrushMappingMode) -> Void: ...
|
|
1791
|
+
@winrt_commethod(16)
|
|
1792
|
+
def get_InterpolationSpace(self) -> win32more.Microsoft.UI.Composition.CompositionColorSpace: ...
|
|
1793
|
+
@winrt_commethod(17)
|
|
1794
|
+
def put_InterpolationSpace(self, value: win32more.Microsoft.UI.Composition.CompositionColorSpace) -> Void: ...
|
|
1795
|
+
@winrt_commethod(18)
|
|
1796
|
+
def get_SpreadMethod(self) -> win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod: ...
|
|
1797
|
+
@winrt_commethod(19)
|
|
1798
|
+
def put_SpreadMethod(self, value: win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod) -> Void: ...
|
|
1799
|
+
@winrt_commethod(20)
|
|
1800
|
+
def get_GradientStops(self) -> win32more.Windows.Foundation.Collections.IObservableVector[win32more.Microsoft.UI.Xaml.Media.GradientStop]: ...
|
|
1801
|
+
Center = property(get_Center, put_Center)
|
|
1802
|
+
GradientOrigin = property(get_GradientOrigin, put_GradientOrigin)
|
|
1803
|
+
GradientStops = property(get_GradientStops, None)
|
|
1804
|
+
InterpolationSpace = property(get_InterpolationSpace, put_InterpolationSpace)
|
|
1805
|
+
MappingMode = property(get_MappingMode, put_MappingMode)
|
|
1806
|
+
RadiusX = property(get_RadiusX, put_RadiusX)
|
|
1807
|
+
RadiusY = property(get_RadiusY, put_RadiusY)
|
|
1808
|
+
SpreadMethod = property(get_SpreadMethod, put_SpreadMethod)
|
|
1809
|
+
class IRadialGradientBrushFactory(ComPtr):
|
|
1810
|
+
extends: IInspectable
|
|
1811
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRadialGradientBrushFactory'
|
|
1812
|
+
_iid_ = Guid('{d90ba26e-9e67-54bd-a2d9-61c8f9f1d433}')
|
|
1813
|
+
@winrt_commethod(6)
|
|
1814
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.RadialGradientBrush: ...
|
|
1815
|
+
class IRadialGradientBrushStatics(ComPtr):
|
|
1816
|
+
extends: IInspectable
|
|
1817
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics'
|
|
1818
|
+
_iid_ = Guid('{f275a0b8-66f9-5b7d-a415-7eda65fe6dd3}')
|
|
1819
|
+
@winrt_commethod(6)
|
|
1820
|
+
def get_CenterProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1821
|
+
@winrt_commethod(7)
|
|
1822
|
+
def get_RadiusXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1823
|
+
@winrt_commethod(8)
|
|
1824
|
+
def get_RadiusYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1825
|
+
@winrt_commethod(9)
|
|
1826
|
+
def get_GradientOriginProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1827
|
+
@winrt_commethod(10)
|
|
1828
|
+
def get_InterpolationSpaceProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1829
|
+
@winrt_commethod(11)
|
|
1830
|
+
def get_MappingModeProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1831
|
+
@winrt_commethod(12)
|
|
1832
|
+
def get_SpreadMethodProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1833
|
+
CenterProperty = property(get_CenterProperty, None)
|
|
1834
|
+
GradientOriginProperty = property(get_GradientOriginProperty, None)
|
|
1835
|
+
InterpolationSpaceProperty = property(get_InterpolationSpaceProperty, None)
|
|
1836
|
+
MappingModeProperty = property(get_MappingModeProperty, None)
|
|
1837
|
+
RadiusXProperty = property(get_RadiusXProperty, None)
|
|
1838
|
+
RadiusYProperty = property(get_RadiusYProperty, None)
|
|
1839
|
+
SpreadMethodProperty = property(get_SpreadMethodProperty, None)
|
|
1840
|
+
class IRectangleGeometry(ComPtr):
|
|
1841
|
+
extends: IInspectable
|
|
1842
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRectangleGeometry'
|
|
1843
|
+
_iid_ = Guid('{b6143890-a5f5-54e0-ab42-d88bab451f04}')
|
|
1844
|
+
@winrt_commethod(6)
|
|
1845
|
+
def get_Rect(self) -> win32more.Windows.Foundation.Rect: ...
|
|
1846
|
+
@winrt_commethod(7)
|
|
1847
|
+
def put_Rect(self, value: win32more.Windows.Foundation.Rect) -> Void: ...
|
|
1848
|
+
Rect = property(get_Rect, put_Rect)
|
|
1849
|
+
class IRectangleGeometryStatics(ComPtr):
|
|
1850
|
+
extends: IInspectable
|
|
1851
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRectangleGeometryStatics'
|
|
1852
|
+
_iid_ = Guid('{1ae7ac26-8a8b-55a5-b035-586e2b642919}')
|
|
1853
|
+
@winrt_commethod(6)
|
|
1854
|
+
def get_RectProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1855
|
+
RectProperty = property(get_RectProperty, None)
|
|
1856
|
+
class IRenderedEventArgs(ComPtr):
|
|
1857
|
+
extends: IInspectable
|
|
1858
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRenderedEventArgs'
|
|
1859
|
+
_iid_ = Guid('{b268b885-118d-5b66-8099-3b6bb8644726}')
|
|
1860
|
+
@winrt_commethod(6)
|
|
1861
|
+
def get_FrameDuration(self) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
1862
|
+
FrameDuration = property(get_FrameDuration, None)
|
|
1863
|
+
class IRenderingEventArgs(ComPtr):
|
|
1864
|
+
extends: IInspectable
|
|
1865
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRenderingEventArgs'
|
|
1866
|
+
_iid_ = Guid('{a67c8f8d-1885-5fc9-975c-901224f79b1e}')
|
|
1867
|
+
@winrt_commethod(6)
|
|
1868
|
+
def get_RenderingTime(self) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
1869
|
+
RenderingTime = property(get_RenderingTime, None)
|
|
1870
|
+
class IRotateTransform(ComPtr):
|
|
1871
|
+
extends: IInspectable
|
|
1872
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRotateTransform'
|
|
1873
|
+
_iid_ = Guid('{d4686e7c-a374-5cac-8927-0ef07c5b254d}')
|
|
1874
|
+
@winrt_commethod(6)
|
|
1875
|
+
def get_CenterX(self) -> Double: ...
|
|
1876
|
+
@winrt_commethod(7)
|
|
1877
|
+
def put_CenterX(self, value: Double) -> Void: ...
|
|
1878
|
+
@winrt_commethod(8)
|
|
1879
|
+
def get_CenterY(self) -> Double: ...
|
|
1880
|
+
@winrt_commethod(9)
|
|
1881
|
+
def put_CenterY(self, value: Double) -> Void: ...
|
|
1882
|
+
@winrt_commethod(10)
|
|
1883
|
+
def get_Angle(self) -> Double: ...
|
|
1884
|
+
@winrt_commethod(11)
|
|
1885
|
+
def put_Angle(self, value: Double) -> Void: ...
|
|
1886
|
+
Angle = property(get_Angle, put_Angle)
|
|
1887
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
1888
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
1889
|
+
class IRotateTransformStatics(ComPtr):
|
|
1890
|
+
extends: IInspectable
|
|
1891
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IRotateTransformStatics'
|
|
1892
|
+
_iid_ = Guid('{8ec4c662-04f8-51d7-bcb2-17f10c2faa38}')
|
|
1893
|
+
@winrt_commethod(6)
|
|
1894
|
+
def get_CenterXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1895
|
+
@winrt_commethod(7)
|
|
1896
|
+
def get_CenterYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1897
|
+
@winrt_commethod(8)
|
|
1898
|
+
def get_AngleProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1899
|
+
AngleProperty = property(get_AngleProperty, None)
|
|
1900
|
+
CenterXProperty = property(get_CenterXProperty, None)
|
|
1901
|
+
CenterYProperty = property(get_CenterYProperty, None)
|
|
1902
|
+
class IScaleTransform(ComPtr):
|
|
1903
|
+
extends: IInspectable
|
|
1904
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IScaleTransform'
|
|
1905
|
+
_iid_ = Guid('{94b064a4-34f0-5ef9-8b67-444f5699f52a}')
|
|
1906
|
+
@winrt_commethod(6)
|
|
1907
|
+
def get_CenterX(self) -> Double: ...
|
|
1908
|
+
@winrt_commethod(7)
|
|
1909
|
+
def put_CenterX(self, value: Double) -> Void: ...
|
|
1910
|
+
@winrt_commethod(8)
|
|
1911
|
+
def get_CenterY(self) -> Double: ...
|
|
1912
|
+
@winrt_commethod(9)
|
|
1913
|
+
def put_CenterY(self, value: Double) -> Void: ...
|
|
1914
|
+
@winrt_commethod(10)
|
|
1915
|
+
def get_ScaleX(self) -> Double: ...
|
|
1916
|
+
@winrt_commethod(11)
|
|
1917
|
+
def put_ScaleX(self, value: Double) -> Void: ...
|
|
1918
|
+
@winrt_commethod(12)
|
|
1919
|
+
def get_ScaleY(self) -> Double: ...
|
|
1920
|
+
@winrt_commethod(13)
|
|
1921
|
+
def put_ScaleY(self, value: Double) -> Void: ...
|
|
1922
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
1923
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
1924
|
+
ScaleX = property(get_ScaleX, put_ScaleX)
|
|
1925
|
+
ScaleY = property(get_ScaleY, put_ScaleY)
|
|
1926
|
+
class IScaleTransformStatics(ComPtr):
|
|
1927
|
+
extends: IInspectable
|
|
1928
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IScaleTransformStatics'
|
|
1929
|
+
_iid_ = Guid('{76485bd5-a5bf-5790-a837-8193c84df353}')
|
|
1930
|
+
@winrt_commethod(6)
|
|
1931
|
+
def get_CenterXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1932
|
+
@winrt_commethod(7)
|
|
1933
|
+
def get_CenterYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1934
|
+
@winrt_commethod(8)
|
|
1935
|
+
def get_ScaleXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1936
|
+
@winrt_commethod(9)
|
|
1937
|
+
def get_ScaleYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1938
|
+
CenterXProperty = property(get_CenterXProperty, None)
|
|
1939
|
+
CenterYProperty = property(get_CenterYProperty, None)
|
|
1940
|
+
ScaleXProperty = property(get_ScaleXProperty, None)
|
|
1941
|
+
ScaleYProperty = property(get_ScaleYProperty, None)
|
|
1942
|
+
class IShadow(ComPtr):
|
|
1943
|
+
extends: IInspectable
|
|
1944
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IShadow'
|
|
1945
|
+
_iid_ = Guid('{cc12fd6a-50aa-5eb3-9a0e-b938b454c439}')
|
|
1946
|
+
class IShadowFactory(ComPtr):
|
|
1947
|
+
extends: IInspectable
|
|
1948
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IShadowFactory'
|
|
1949
|
+
_iid_ = Guid('{c9115fbb-fcc3-52bf-b8ee-c348102a46e0}')
|
|
1950
|
+
class ISkewTransform(ComPtr):
|
|
1951
|
+
extends: IInspectable
|
|
1952
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISkewTransform'
|
|
1953
|
+
_iid_ = Guid('{230abaa6-a9b6-5210-873f-36bea29d7c06}')
|
|
1954
|
+
@winrt_commethod(6)
|
|
1955
|
+
def get_CenterX(self) -> Double: ...
|
|
1956
|
+
@winrt_commethod(7)
|
|
1957
|
+
def put_CenterX(self, value: Double) -> Void: ...
|
|
1958
|
+
@winrt_commethod(8)
|
|
1959
|
+
def get_CenterY(self) -> Double: ...
|
|
1960
|
+
@winrt_commethod(9)
|
|
1961
|
+
def put_CenterY(self, value: Double) -> Void: ...
|
|
1962
|
+
@winrt_commethod(10)
|
|
1963
|
+
def get_AngleX(self) -> Double: ...
|
|
1964
|
+
@winrt_commethod(11)
|
|
1965
|
+
def put_AngleX(self, value: Double) -> Void: ...
|
|
1966
|
+
@winrt_commethod(12)
|
|
1967
|
+
def get_AngleY(self) -> Double: ...
|
|
1968
|
+
@winrt_commethod(13)
|
|
1969
|
+
def put_AngleY(self, value: Double) -> Void: ...
|
|
1970
|
+
AngleX = property(get_AngleX, put_AngleX)
|
|
1971
|
+
AngleY = property(get_AngleY, put_AngleY)
|
|
1972
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
1973
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
1974
|
+
class ISkewTransformStatics(ComPtr):
|
|
1975
|
+
extends: IInspectable
|
|
1976
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISkewTransformStatics'
|
|
1977
|
+
_iid_ = Guid('{93265150-53d0-52e3-88a3-3d93e2ed861a}')
|
|
1978
|
+
@winrt_commethod(6)
|
|
1979
|
+
def get_CenterXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1980
|
+
@winrt_commethod(7)
|
|
1981
|
+
def get_CenterYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1982
|
+
@winrt_commethod(8)
|
|
1983
|
+
def get_AngleXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1984
|
+
@winrt_commethod(9)
|
|
1985
|
+
def get_AngleYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
1986
|
+
AngleXProperty = property(get_AngleXProperty, None)
|
|
1987
|
+
AngleYProperty = property(get_AngleYProperty, None)
|
|
1988
|
+
CenterXProperty = property(get_CenterXProperty, None)
|
|
1989
|
+
CenterYProperty = property(get_CenterYProperty, None)
|
|
1990
|
+
class ISolidColorBrush(ComPtr):
|
|
1991
|
+
extends: IInspectable
|
|
1992
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISolidColorBrush'
|
|
1993
|
+
_iid_ = Guid('{b3865c31-37c8-55c1-8a72-d41c67642e2a}')
|
|
1994
|
+
@winrt_commethod(6)
|
|
1995
|
+
def get_Color(self) -> win32more.Windows.UI.Color: ...
|
|
1996
|
+
@winrt_commethod(7)
|
|
1997
|
+
def put_Color(self, value: win32more.Windows.UI.Color) -> Void: ...
|
|
1998
|
+
Color = property(get_Color, put_Color)
|
|
1999
|
+
class ISolidColorBrushFactory(ComPtr):
|
|
2000
|
+
extends: IInspectable
|
|
2001
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISolidColorBrushFactory'
|
|
2002
|
+
_iid_ = Guid('{7b559384-4daa-54f4-91ef-33a23fd816ca}')
|
|
2003
|
+
@winrt_commethod(6)
|
|
2004
|
+
def CreateInstanceWithColor(self, color: win32more.Windows.UI.Color) -> win32more.Microsoft.UI.Xaml.Media.SolidColorBrush: ...
|
|
2005
|
+
class ISolidColorBrushStatics(ComPtr):
|
|
2006
|
+
extends: IInspectable
|
|
2007
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISolidColorBrushStatics'
|
|
2008
|
+
_iid_ = Guid('{6bc16da0-c4e6-59b8-995b-b31e48424c07}')
|
|
2009
|
+
@winrt_commethod(6)
|
|
2010
|
+
def get_ColorProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2011
|
+
ColorProperty = property(get_ColorProperty, None)
|
|
2012
|
+
class ISystemBackdrop(ComPtr):
|
|
2013
|
+
extends: IInspectable
|
|
2014
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISystemBackdrop'
|
|
2015
|
+
_iid_ = Guid('{5aeed5c4-37ac-5852-b73f-1b76ebc3205f}')
|
|
2016
|
+
@winrt_commethod(6)
|
|
2017
|
+
def GetDefaultSystemBackdropConfiguration(self, target: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> win32more.Microsoft.UI.Composition.SystemBackdrops.SystemBackdropConfiguration: ...
|
|
2018
|
+
class ISystemBackdropFactory(ComPtr):
|
|
2019
|
+
extends: IInspectable
|
|
2020
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISystemBackdropFactory'
|
|
2021
|
+
_iid_ = Guid('{1e07656b-fad2-5b29-913f-b6748bc45942}')
|
|
2022
|
+
@winrt_commethod(6)
|
|
2023
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.SystemBackdrop: ...
|
|
2024
|
+
class ISystemBackdropOverrides(ComPtr):
|
|
2025
|
+
extends: IInspectable
|
|
2026
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ISystemBackdropOverrides'
|
|
2027
|
+
_iid_ = Guid('{eb1f5399-cad7-5611-b637-09d76a07e708}')
|
|
2028
|
+
@winrt_commethod(6)
|
|
2029
|
+
def OnTargetConnected(self, connectedTarget: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> Void: ...
|
|
2030
|
+
@winrt_commethod(7)
|
|
2031
|
+
def OnTargetDisconnected(self, disconnectedTarget: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop) -> Void: ...
|
|
2032
|
+
@winrt_commethod(8)
|
|
2033
|
+
def OnDefaultSystemBackdropConfigurationChanged(self, target: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> Void: ...
|
|
2034
|
+
class IThemeShadow(ComPtr):
|
|
2035
|
+
extends: IInspectable
|
|
2036
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IThemeShadow'
|
|
2037
|
+
_iid_ = Guid('{c264208a-d1f4-58ae-8a88-fc59148bee69}')
|
|
2038
|
+
@winrt_commethod(6)
|
|
2039
|
+
def get_Receivers(self) -> win32more.Microsoft.UI.Xaml.UIElementWeakCollection: ...
|
|
2040
|
+
Receivers = property(get_Receivers, None)
|
|
2041
|
+
class IThemeShadowFactory(ComPtr):
|
|
2042
|
+
extends: IInspectable
|
|
2043
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IThemeShadowFactory'
|
|
2044
|
+
_iid_ = Guid('{704a9c96-76a0-569e-8ceb-34e92a23fe11}')
|
|
2045
|
+
@winrt_commethod(6)
|
|
2046
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.ThemeShadow: ...
|
|
2047
|
+
class ITileBrush(ComPtr):
|
|
2048
|
+
extends: IInspectable
|
|
2049
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITileBrush'
|
|
2050
|
+
_iid_ = Guid('{ee46060d-cabc-505d-883c-75d2e0e45875}')
|
|
2051
|
+
@winrt_commethod(6)
|
|
2052
|
+
def get_AlignmentX(self) -> win32more.Microsoft.UI.Xaml.Media.AlignmentX: ...
|
|
2053
|
+
@winrt_commethod(7)
|
|
2054
|
+
def put_AlignmentX(self, value: win32more.Microsoft.UI.Xaml.Media.AlignmentX) -> Void: ...
|
|
2055
|
+
@winrt_commethod(8)
|
|
2056
|
+
def get_AlignmentY(self) -> win32more.Microsoft.UI.Xaml.Media.AlignmentY: ...
|
|
2057
|
+
@winrt_commethod(9)
|
|
2058
|
+
def put_AlignmentY(self, value: win32more.Microsoft.UI.Xaml.Media.AlignmentY) -> Void: ...
|
|
2059
|
+
@winrt_commethod(10)
|
|
2060
|
+
def get_Stretch(self) -> win32more.Microsoft.UI.Xaml.Media.Stretch: ...
|
|
2061
|
+
@winrt_commethod(11)
|
|
2062
|
+
def put_Stretch(self, value: win32more.Microsoft.UI.Xaml.Media.Stretch) -> Void: ...
|
|
2063
|
+
AlignmentX = property(get_AlignmentX, put_AlignmentX)
|
|
2064
|
+
AlignmentY = property(get_AlignmentY, put_AlignmentY)
|
|
2065
|
+
Stretch = property(get_Stretch, put_Stretch)
|
|
2066
|
+
class ITileBrushFactory(ComPtr):
|
|
2067
|
+
extends: IInspectable
|
|
2068
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITileBrushFactory'
|
|
2069
|
+
_iid_ = Guid('{8542e5e6-5177-506f-8a3b-aa7da651f099}')
|
|
2070
|
+
@winrt_commethod(6)
|
|
2071
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.TileBrush: ...
|
|
2072
|
+
class ITileBrushStatics(ComPtr):
|
|
2073
|
+
extends: IInspectable
|
|
2074
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITileBrushStatics'
|
|
2075
|
+
_iid_ = Guid('{f402197b-9047-5f8a-90bc-6f5d8c748a5f}')
|
|
2076
|
+
@winrt_commethod(6)
|
|
2077
|
+
def get_AlignmentXProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2078
|
+
@winrt_commethod(7)
|
|
2079
|
+
def get_AlignmentYProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2080
|
+
@winrt_commethod(8)
|
|
2081
|
+
def get_StretchProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2082
|
+
AlignmentXProperty = property(get_AlignmentXProperty, None)
|
|
2083
|
+
AlignmentYProperty = property(get_AlignmentYProperty, None)
|
|
2084
|
+
StretchProperty = property(get_StretchProperty, None)
|
|
2085
|
+
class ITransform(ComPtr):
|
|
2086
|
+
extends: IInspectable
|
|
2087
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITransform'
|
|
2088
|
+
_iid_ = Guid('{92a8dee5-1413-56b9-8cca-3c46918fde1b}')
|
|
2089
|
+
class ITransformFactory(ComPtr):
|
|
2090
|
+
extends: IInspectable
|
|
2091
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITransformFactory'
|
|
2092
|
+
_iid_ = Guid('{7da293f9-b82e-5d15-b623-c08210cbb640}')
|
|
2093
|
+
class ITransformGroup(ComPtr):
|
|
2094
|
+
extends: IInspectable
|
|
2095
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITransformGroup'
|
|
2096
|
+
_iid_ = Guid('{17c55f3b-899c-588f-8bd4-40fa3a5fcb04}')
|
|
2097
|
+
@winrt_commethod(6)
|
|
2098
|
+
def get_Children(self) -> win32more.Microsoft.UI.Xaml.Media.TransformCollection: ...
|
|
2099
|
+
@winrt_commethod(7)
|
|
2100
|
+
def put_Children(self, value: win32more.Microsoft.UI.Xaml.Media.TransformCollection) -> Void: ...
|
|
2101
|
+
@winrt_commethod(8)
|
|
2102
|
+
def get_Value(self) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
2103
|
+
Children = property(get_Children, put_Children)
|
|
2104
|
+
Value = property(get_Value, None)
|
|
2105
|
+
class ITransformGroupStatics(ComPtr):
|
|
2106
|
+
extends: IInspectable
|
|
2107
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITransformGroupStatics'
|
|
2108
|
+
_iid_ = Guid('{8f1508f6-7dcf-53d5-bbc0-d8fcd96d7399}')
|
|
2109
|
+
@winrt_commethod(6)
|
|
2110
|
+
def get_ChildrenProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2111
|
+
ChildrenProperty = property(get_ChildrenProperty, None)
|
|
2112
|
+
class ITranslateTransform(ComPtr):
|
|
2113
|
+
extends: IInspectable
|
|
2114
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITranslateTransform'
|
|
2115
|
+
_iid_ = Guid('{cfa21ca9-b79f-5450-b459-a96c48cb2c8f}')
|
|
2116
|
+
@winrt_commethod(6)
|
|
2117
|
+
def get_X(self) -> Double: ...
|
|
2118
|
+
@winrt_commethod(7)
|
|
2119
|
+
def put_X(self, value: Double) -> Void: ...
|
|
2120
|
+
@winrt_commethod(8)
|
|
2121
|
+
def get_Y(self) -> Double: ...
|
|
2122
|
+
@winrt_commethod(9)
|
|
2123
|
+
def put_Y(self, value: Double) -> Void: ...
|
|
2124
|
+
X = property(get_X, put_X)
|
|
2125
|
+
Y = property(get_Y, put_Y)
|
|
2126
|
+
class ITranslateTransformStatics(ComPtr):
|
|
2127
|
+
extends: IInspectable
|
|
2128
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ITranslateTransformStatics'
|
|
2129
|
+
_iid_ = Guid('{1342eb11-5a6e-5263-ab3e-9b672a86fc0c}')
|
|
2130
|
+
@winrt_commethod(6)
|
|
2131
|
+
def get_XProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2132
|
+
@winrt_commethod(7)
|
|
2133
|
+
def get_YProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2134
|
+
XProperty = property(get_XProperty, None)
|
|
2135
|
+
YProperty = property(get_YProperty, None)
|
|
2136
|
+
class IVisualTreeHelper(ComPtr):
|
|
2137
|
+
extends: IInspectable
|
|
2138
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IVisualTreeHelper'
|
|
2139
|
+
_iid_ = Guid('{5f69ac1e-6504-5e3f-a11c-87684c1db814}')
|
|
2140
|
+
class IVisualTreeHelperStatics(ComPtr):
|
|
2141
|
+
extends: IInspectable
|
|
2142
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics'
|
|
2143
|
+
_iid_ = Guid('{5aece43c-7651-5bb5-855c-2198496e455e}')
|
|
2144
|
+
@winrt_commethod(6)
|
|
2145
|
+
def FindElementsInHostCoordinatesPoint(self, intersectingPoint: win32more.Windows.Foundation.Point, subtree: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
2146
|
+
@winrt_commethod(7)
|
|
2147
|
+
def FindElementsInHostCoordinatesRect(self, intersectingRect: win32more.Windows.Foundation.Rect, subtree: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
2148
|
+
@winrt_commethod(8)
|
|
2149
|
+
def FindAllElementsInHostCoordinatesPoint(self, intersectingPoint: win32more.Windows.Foundation.Point, subtree: win32more.Microsoft.UI.Xaml.UIElement, includeAllElements: Boolean) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
2150
|
+
@winrt_commethod(9)
|
|
2151
|
+
def FindAllElementsInHostCoordinatesRect(self, intersectingRect: win32more.Windows.Foundation.Rect, subtree: win32more.Microsoft.UI.Xaml.UIElement, includeAllElements: Boolean) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
2152
|
+
@winrt_commethod(10)
|
|
2153
|
+
def GetChild(self, reference: win32more.Microsoft.UI.Xaml.DependencyObject, childIndex: Int32) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2154
|
+
@winrt_commethod(11)
|
|
2155
|
+
def GetChildrenCount(self, reference: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
2156
|
+
@winrt_commethod(12)
|
|
2157
|
+
def GetParent(self, reference: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
2158
|
+
@winrt_commethod(13)
|
|
2159
|
+
def DisconnectChildrenRecursive(self, element: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
2160
|
+
@winrt_commethod(14)
|
|
2161
|
+
def GetOpenPopups(self, window: win32more.Microsoft.UI.Xaml.Window) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Controls.Primitives.Popup]: ...
|
|
2162
|
+
@winrt_commethod(15)
|
|
2163
|
+
def GetOpenPopupsForXamlRoot(self, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Controls.Primitives.Popup]: ...
|
|
2164
|
+
class IXamlCompositionBrushBase(ComPtr):
|
|
2165
|
+
extends: IInspectable
|
|
2166
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlCompositionBrushBase'
|
|
2167
|
+
_iid_ = Guid('{feaead28-5cd0-5e58-bcea-8670f832aca9}')
|
|
2168
|
+
@winrt_commethod(6)
|
|
2169
|
+
def get_FallbackColor(self) -> win32more.Windows.UI.Color: ...
|
|
2170
|
+
@winrt_commethod(7)
|
|
2171
|
+
def put_FallbackColor(self, value: win32more.Windows.UI.Color) -> Void: ...
|
|
2172
|
+
FallbackColor = property(get_FallbackColor, put_FallbackColor)
|
|
2173
|
+
class IXamlCompositionBrushBaseFactory(ComPtr):
|
|
2174
|
+
extends: IInspectable
|
|
2175
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseFactory'
|
|
2176
|
+
_iid_ = Guid('{b1626d56-0f6f-5416-ada4-5c8105d3f082}')
|
|
2177
|
+
@winrt_commethod(6)
|
|
2178
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.XamlCompositionBrushBase: ...
|
|
2179
|
+
class IXamlCompositionBrushBaseOverrides(ComPtr):
|
|
2180
|
+
extends: IInspectable
|
|
2181
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseOverrides'
|
|
2182
|
+
_iid_ = Guid('{8881b559-54a0-56c4-a79a-135152fb1dfa}')
|
|
2183
|
+
@winrt_commethod(6)
|
|
2184
|
+
def OnConnected(self) -> Void: ...
|
|
2185
|
+
@winrt_commethod(7)
|
|
2186
|
+
def OnDisconnected(self) -> Void: ...
|
|
2187
|
+
class IXamlCompositionBrushBaseProtected(ComPtr):
|
|
2188
|
+
extends: IInspectable
|
|
2189
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseProtected'
|
|
2190
|
+
_iid_ = Guid('{6617e1a5-e27a-5b95-b03e-6758b58f92a0}')
|
|
2191
|
+
@winrt_commethod(6)
|
|
2192
|
+
def get_CompositionBrush(self) -> win32more.Microsoft.UI.Composition.CompositionBrush: ...
|
|
2193
|
+
@winrt_commethod(7)
|
|
2194
|
+
def put_CompositionBrush(self, value: win32more.Microsoft.UI.Composition.CompositionBrush) -> Void: ...
|
|
2195
|
+
CompositionBrush = property(get_CompositionBrush, put_CompositionBrush)
|
|
2196
|
+
class IXamlCompositionBrushBaseStatics(ComPtr):
|
|
2197
|
+
extends: IInspectable
|
|
2198
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseStatics'
|
|
2199
|
+
_iid_ = Guid('{3eed6e16-c386-5a1c-b70d-ef1c0015e691}')
|
|
2200
|
+
@winrt_commethod(6)
|
|
2201
|
+
def get_FallbackColorProperty(self) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2202
|
+
FallbackColorProperty = property(get_FallbackColorProperty, None)
|
|
2203
|
+
class IXamlLight(ComPtr):
|
|
2204
|
+
extends: IInspectable
|
|
2205
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlLight'
|
|
2206
|
+
_iid_ = Guid('{dcd20139-8cd5-5da5-a25c-2b7b813d8d58}')
|
|
2207
|
+
class IXamlLightFactory(ComPtr):
|
|
2208
|
+
extends: IInspectable
|
|
2209
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlLightFactory'
|
|
2210
|
+
_iid_ = Guid('{76da6306-96fc-553e-bb39-9a4801d06f48}')
|
|
2211
|
+
@winrt_commethod(6)
|
|
2212
|
+
def CreateInstance(self, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.XamlLight: ...
|
|
2213
|
+
class IXamlLightOverrides(ComPtr):
|
|
2214
|
+
extends: IInspectable
|
|
2215
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlLightOverrides'
|
|
2216
|
+
_iid_ = Guid('{696d4f30-92ee-540d-ad70-33d4489514d0}')
|
|
2217
|
+
@winrt_commethod(6)
|
|
2218
|
+
def GetId(self) -> WinRT_String: ...
|
|
2219
|
+
@winrt_commethod(7)
|
|
2220
|
+
def OnConnected(self, newElement: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
2221
|
+
@winrt_commethod(8)
|
|
2222
|
+
def OnDisconnected(self, oldElement: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
2223
|
+
class IXamlLightProtected(ComPtr):
|
|
2224
|
+
extends: IInspectable
|
|
2225
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlLightProtected'
|
|
2226
|
+
_iid_ = Guid('{c307bf12-fdaf-54ca-a631-ad0e86263c6e}')
|
|
2227
|
+
@winrt_commethod(6)
|
|
2228
|
+
def get_CompositionLight(self) -> win32more.Microsoft.UI.Composition.CompositionLight: ...
|
|
2229
|
+
@winrt_commethod(7)
|
|
2230
|
+
def put_CompositionLight(self, value: win32more.Microsoft.UI.Composition.CompositionLight) -> Void: ...
|
|
2231
|
+
CompositionLight = property(get_CompositionLight, put_CompositionLight)
|
|
2232
|
+
class IXamlLightStatics(ComPtr):
|
|
2233
|
+
extends: IInspectable
|
|
2234
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.IXamlLightStatics'
|
|
2235
|
+
_iid_ = Guid('{a2d8ea26-26ff-5374-b1dd-f232d5604f6a}')
|
|
2236
|
+
@winrt_commethod(6)
|
|
2237
|
+
def AddTargetElement(self, lightId: WinRT_String, element: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
2238
|
+
@winrt_commethod(7)
|
|
2239
|
+
def RemoveTargetElement(self, lightId: WinRT_String, element: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
2240
|
+
@winrt_commethod(8)
|
|
2241
|
+
def AddTargetBrush(self, lightId: WinRT_String, brush: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
2242
|
+
@winrt_commethod(9)
|
|
2243
|
+
def RemoveTargetBrush(self, lightId: WinRT_String, brush: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
2244
|
+
class _ImageBrush_Meta_(ComPtr.__class__):
|
|
2245
|
+
pass
|
|
2246
|
+
class ImageBrush(ComPtr, metaclass=_ImageBrush_Meta_):
|
|
2247
|
+
extends: win32more.Microsoft.UI.Xaml.Media.TileBrush
|
|
2248
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IImageBrush
|
|
2249
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ImageBrush'
|
|
2250
|
+
def __init__(self, *args, **kwargs):
|
|
2251
|
+
if kwargs:
|
|
2252
|
+
super().__init__(**kwargs)
|
|
2253
|
+
elif len(args) == 0:
|
|
2254
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.ImageBrush.CreateInstance(*args))
|
|
2255
|
+
else:
|
|
2256
|
+
raise ValueError('no matched constructor')
|
|
2257
|
+
@winrt_activatemethod
|
|
2258
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.ImageBrush: ...
|
|
2259
|
+
@winrt_mixinmethod
|
|
2260
|
+
def get_ImageSource(self: win32more.Microsoft.UI.Xaml.Media.IImageBrush) -> win32more.Microsoft.UI.Xaml.Media.ImageSource: ...
|
|
2261
|
+
@winrt_mixinmethod
|
|
2262
|
+
def put_ImageSource(self: win32more.Microsoft.UI.Xaml.Media.IImageBrush, value: win32more.Microsoft.UI.Xaml.Media.ImageSource) -> Void: ...
|
|
2263
|
+
@winrt_mixinmethod
|
|
2264
|
+
def add_ImageFailed(self: win32more.Microsoft.UI.Xaml.Media.IImageBrush, handler: win32more.Microsoft.UI.Xaml.ExceptionRoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
2265
|
+
@winrt_mixinmethod
|
|
2266
|
+
def remove_ImageFailed(self: win32more.Microsoft.UI.Xaml.Media.IImageBrush, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
2267
|
+
@winrt_mixinmethod
|
|
2268
|
+
def add_ImageOpened(self: win32more.Microsoft.UI.Xaml.Media.IImageBrush, handler: win32more.Microsoft.UI.Xaml.RoutedEventHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
2269
|
+
@winrt_mixinmethod
|
|
2270
|
+
def remove_ImageOpened(self: win32more.Microsoft.UI.Xaml.Media.IImageBrush, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
2271
|
+
@winrt_classmethod
|
|
2272
|
+
def get_ImageSourceProperty(cls: win32more.Microsoft.UI.Xaml.Media.IImageBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2273
|
+
ImageSource = property(get_ImageSource, put_ImageSource)
|
|
2274
|
+
_ImageBrush_Meta_.ImageSourceProperty = property(get_ImageSourceProperty, None)
|
|
2275
|
+
ImageFailed = event()
|
|
2276
|
+
ImageOpened = event()
|
|
2277
|
+
class ImageSource(ComPtr):
|
|
2278
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
2279
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IImageSource
|
|
2280
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ImageSource'
|
|
2281
|
+
class _LineGeometry_Meta_(ComPtr.__class__):
|
|
2282
|
+
pass
|
|
2283
|
+
class LineGeometry(ComPtr, metaclass=_LineGeometry_Meta_):
|
|
2284
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Geometry
|
|
2285
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ILineGeometry
|
|
2286
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.LineGeometry'
|
|
2287
|
+
def __init__(self, *args, **kwargs):
|
|
2288
|
+
if kwargs:
|
|
2289
|
+
super().__init__(**kwargs)
|
|
2290
|
+
elif len(args) == 0:
|
|
2291
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.LineGeometry.CreateInstance(*args))
|
|
2292
|
+
else:
|
|
2293
|
+
raise ValueError('no matched constructor')
|
|
2294
|
+
@winrt_activatemethod
|
|
2295
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.LineGeometry: ...
|
|
2296
|
+
@winrt_mixinmethod
|
|
2297
|
+
def get_StartPoint(self: win32more.Microsoft.UI.Xaml.Media.ILineGeometry) -> win32more.Windows.Foundation.Point: ...
|
|
2298
|
+
@winrt_mixinmethod
|
|
2299
|
+
def put_StartPoint(self: win32more.Microsoft.UI.Xaml.Media.ILineGeometry, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2300
|
+
@winrt_mixinmethod
|
|
2301
|
+
def get_EndPoint(self: win32more.Microsoft.UI.Xaml.Media.ILineGeometry) -> win32more.Windows.Foundation.Point: ...
|
|
2302
|
+
@winrt_mixinmethod
|
|
2303
|
+
def put_EndPoint(self: win32more.Microsoft.UI.Xaml.Media.ILineGeometry, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2304
|
+
@winrt_classmethod
|
|
2305
|
+
def get_StartPointProperty(cls: win32more.Microsoft.UI.Xaml.Media.ILineGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2306
|
+
@winrt_classmethod
|
|
2307
|
+
def get_EndPointProperty(cls: win32more.Microsoft.UI.Xaml.Media.ILineGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2308
|
+
EndPoint = property(get_EndPoint, put_EndPoint)
|
|
2309
|
+
StartPoint = property(get_StartPoint, put_StartPoint)
|
|
2310
|
+
_LineGeometry_Meta_.EndPointProperty = property(get_EndPointProperty, None)
|
|
2311
|
+
_LineGeometry_Meta_.StartPointProperty = property(get_StartPointProperty, None)
|
|
2312
|
+
class _LineSegment_Meta_(ComPtr.__class__):
|
|
2313
|
+
pass
|
|
2314
|
+
class LineSegment(ComPtr, metaclass=_LineSegment_Meta_):
|
|
2315
|
+
extends: win32more.Microsoft.UI.Xaml.Media.PathSegment
|
|
2316
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ILineSegment
|
|
2317
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.LineSegment'
|
|
2318
|
+
def __init__(self, *args, **kwargs):
|
|
2319
|
+
if kwargs:
|
|
2320
|
+
super().__init__(**kwargs)
|
|
2321
|
+
elif len(args) == 0:
|
|
2322
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.LineSegment.CreateInstance(*args))
|
|
2323
|
+
else:
|
|
2324
|
+
raise ValueError('no matched constructor')
|
|
2325
|
+
@winrt_activatemethod
|
|
2326
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.LineSegment: ...
|
|
2327
|
+
@winrt_mixinmethod
|
|
2328
|
+
def get_Point(self: win32more.Microsoft.UI.Xaml.Media.ILineSegment) -> win32more.Windows.Foundation.Point: ...
|
|
2329
|
+
@winrt_mixinmethod
|
|
2330
|
+
def put_Point(self: win32more.Microsoft.UI.Xaml.Media.ILineSegment, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2331
|
+
@winrt_classmethod
|
|
2332
|
+
def get_PointProperty(cls: win32more.Microsoft.UI.Xaml.Media.ILineSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2333
|
+
Point = property(get_Point, put_Point)
|
|
2334
|
+
_LineSegment_Meta_.PointProperty = property(get_PointProperty, None)
|
|
2335
|
+
class _LinearGradientBrush_Meta_(ComPtr.__class__):
|
|
2336
|
+
pass
|
|
2337
|
+
class LinearGradientBrush(ComPtr, metaclass=_LinearGradientBrush_Meta_):
|
|
2338
|
+
extends: win32more.Microsoft.UI.Xaml.Media.GradientBrush
|
|
2339
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrush
|
|
2340
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.LinearGradientBrush'
|
|
2341
|
+
def __init__(self, *args, **kwargs):
|
|
2342
|
+
if kwargs:
|
|
2343
|
+
super().__init__(**kwargs)
|
|
2344
|
+
elif len(args) == 0:
|
|
2345
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.LinearGradientBrush.CreateInstance(*args))
|
|
2346
|
+
elif len(args) == 2:
|
|
2347
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.LinearGradientBrush.CreateInstanceWithGradientStopCollectionAndAngle(*args))
|
|
2348
|
+
else:
|
|
2349
|
+
raise ValueError('no matched constructor')
|
|
2350
|
+
@winrt_activatemethod
|
|
2351
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.LinearGradientBrush: ...
|
|
2352
|
+
@winrt_factorymethod
|
|
2353
|
+
def CreateInstanceWithGradientStopCollectionAndAngle(cls: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrushFactory, gradientStopCollection: win32more.Microsoft.UI.Xaml.Media.GradientStopCollection, angle: Double) -> win32more.Microsoft.UI.Xaml.Media.LinearGradientBrush: ...
|
|
2354
|
+
@winrt_mixinmethod
|
|
2355
|
+
def get_StartPoint(self: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrush) -> win32more.Windows.Foundation.Point: ...
|
|
2356
|
+
@winrt_mixinmethod
|
|
2357
|
+
def put_StartPoint(self: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrush, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2358
|
+
@winrt_mixinmethod
|
|
2359
|
+
def get_EndPoint(self: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrush) -> win32more.Windows.Foundation.Point: ...
|
|
2360
|
+
@winrt_mixinmethod
|
|
2361
|
+
def put_EndPoint(self: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrush, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2362
|
+
@winrt_classmethod
|
|
2363
|
+
def get_StartPointProperty(cls: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2364
|
+
@winrt_classmethod
|
|
2365
|
+
def get_EndPointProperty(cls: win32more.Microsoft.UI.Xaml.Media.ILinearGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2366
|
+
EndPoint = property(get_EndPoint, put_EndPoint)
|
|
2367
|
+
StartPoint = property(get_StartPoint, put_StartPoint)
|
|
2368
|
+
_LinearGradientBrush_Meta_.EndPointProperty = property(get_EndPointProperty, None)
|
|
2369
|
+
_LinearGradientBrush_Meta_.StartPointProperty = property(get_StartPointProperty, None)
|
|
2370
|
+
class LoadedImageSourceLoadCompletedEventArgs(ComPtr):
|
|
2371
|
+
extends: IInspectable
|
|
2372
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSourceLoadCompletedEventArgs
|
|
2373
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.LoadedImageSourceLoadCompletedEventArgs'
|
|
2374
|
+
@winrt_mixinmethod
|
|
2375
|
+
def get_Status(self: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSourceLoadCompletedEventArgs) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSourceLoadStatus: ...
|
|
2376
|
+
Status = property(get_Status, None)
|
|
2377
|
+
class LoadedImageSourceLoadStatus(Enum, Int32):
|
|
2378
|
+
Success = 0
|
|
2379
|
+
NetworkError = 1
|
|
2380
|
+
InvalidFormat = 2
|
|
2381
|
+
Other = 3
|
|
2382
|
+
class LoadedImageSurface(ComPtr):
|
|
2383
|
+
extends: IInspectable
|
|
2384
|
+
implements: Tuple[ContextManagerProtocol]
|
|
2385
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurface
|
|
2386
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.LoadedImageSurface'
|
|
2387
|
+
@winrt_mixinmethod
|
|
2388
|
+
def get_DecodedPhysicalSize(self: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurface) -> win32more.Windows.Foundation.Size: ...
|
|
2389
|
+
@winrt_mixinmethod
|
|
2390
|
+
def get_DecodedSize(self: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurface) -> win32more.Windows.Foundation.Size: ...
|
|
2391
|
+
@winrt_mixinmethod
|
|
2392
|
+
def get_NaturalSize(self: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurface) -> win32more.Windows.Foundation.Size: ...
|
|
2393
|
+
@winrt_mixinmethod
|
|
2394
|
+
def add_LoadCompleted(self: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurface, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface, win32more.Microsoft.UI.Xaml.Media.LoadedImageSourceLoadCompletedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
2395
|
+
@winrt_mixinmethod
|
|
2396
|
+
def remove_LoadCompleted(self: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurface, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
2397
|
+
@winrt_mixinmethod
|
|
2398
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
2399
|
+
@winrt_classmethod
|
|
2400
|
+
def StartLoadFromUriWithSize(cls: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurfaceStatics, uri: win32more.Windows.Foundation.Uri, desiredMaxSize: win32more.Windows.Foundation.Size) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
2401
|
+
@winrt_classmethod
|
|
2402
|
+
def StartLoadFromUri(cls: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurfaceStatics, uri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
2403
|
+
@winrt_classmethod
|
|
2404
|
+
def StartLoadFromStreamWithSize(cls: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurfaceStatics, stream: win32more.Windows.Storage.Streams.IRandomAccessStream, desiredMaxSize: win32more.Windows.Foundation.Size) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
2405
|
+
@winrt_classmethod
|
|
2406
|
+
def StartLoadFromStream(cls: win32more.Microsoft.UI.Xaml.Media.ILoadedImageSurfaceStatics, stream: win32more.Windows.Storage.Streams.IRandomAccessStream) -> win32more.Microsoft.UI.Xaml.Media.LoadedImageSurface: ...
|
|
2407
|
+
DecodedPhysicalSize = property(get_DecodedPhysicalSize, None)
|
|
2408
|
+
DecodedSize = property(get_DecodedSize, None)
|
|
2409
|
+
NaturalSize = property(get_NaturalSize, None)
|
|
2410
|
+
LoadCompleted = event()
|
|
2411
|
+
class Matrix(Structure):
|
|
2412
|
+
M11: Double
|
|
2413
|
+
M12: Double
|
|
2414
|
+
M21: Double
|
|
2415
|
+
M22: Double
|
|
2416
|
+
OffsetX: Double
|
|
2417
|
+
OffsetY: Double
|
|
2418
|
+
class _Matrix3DProjection_Meta_(ComPtr.__class__):
|
|
2419
|
+
pass
|
|
2420
|
+
class Matrix3DProjection(ComPtr, metaclass=_Matrix3DProjection_Meta_):
|
|
2421
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Projection
|
|
2422
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IMatrix3DProjection
|
|
2423
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Matrix3DProjection'
|
|
2424
|
+
def __init__(self, *args, **kwargs):
|
|
2425
|
+
if kwargs:
|
|
2426
|
+
super().__init__(**kwargs)
|
|
2427
|
+
elif len(args) == 0:
|
|
2428
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Matrix3DProjection.CreateInstance(*args))
|
|
2429
|
+
else:
|
|
2430
|
+
raise ValueError('no matched constructor')
|
|
2431
|
+
@winrt_activatemethod
|
|
2432
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.Matrix3DProjection: ...
|
|
2433
|
+
@winrt_mixinmethod
|
|
2434
|
+
def get_ProjectionMatrix(self: win32more.Microsoft.UI.Xaml.Media.IMatrix3DProjection) -> win32more.Microsoft.UI.Xaml.Media.Media3D.Matrix3D: ...
|
|
2435
|
+
@winrt_mixinmethod
|
|
2436
|
+
def put_ProjectionMatrix(self: win32more.Microsoft.UI.Xaml.Media.IMatrix3DProjection, value: win32more.Microsoft.UI.Xaml.Media.Media3D.Matrix3D) -> Void: ...
|
|
2437
|
+
@winrt_classmethod
|
|
2438
|
+
def get_ProjectionMatrixProperty(cls: win32more.Microsoft.UI.Xaml.Media.IMatrix3DProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2439
|
+
ProjectionMatrix = property(get_ProjectionMatrix, put_ProjectionMatrix)
|
|
2440
|
+
_Matrix3DProjection_Meta_.ProjectionMatrixProperty = property(get_ProjectionMatrixProperty, None)
|
|
2441
|
+
class _MatrixHelper_Meta_(ComPtr.__class__):
|
|
2442
|
+
pass
|
|
2443
|
+
class MatrixHelper(ComPtr, metaclass=_MatrixHelper_Meta_):
|
|
2444
|
+
extends: IInspectable
|
|
2445
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IMatrixHelper
|
|
2446
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.MatrixHelper'
|
|
2447
|
+
@winrt_classmethod
|
|
2448
|
+
def get_Identity(cls: win32more.Microsoft.UI.Xaml.Media.IMatrixHelperStatics) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
2449
|
+
@winrt_classmethod
|
|
2450
|
+
def FromElements(cls: win32more.Microsoft.UI.Xaml.Media.IMatrixHelperStatics, m11: Double, m12: Double, m21: Double, m22: Double, offsetX: Double, offsetY: Double) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
2451
|
+
@winrt_classmethod
|
|
2452
|
+
def GetIsIdentity(cls: win32more.Microsoft.UI.Xaml.Media.IMatrixHelperStatics, target: win32more.Microsoft.UI.Xaml.Media.Matrix) -> Boolean: ...
|
|
2453
|
+
@winrt_classmethod
|
|
2454
|
+
def Transform(cls: win32more.Microsoft.UI.Xaml.Media.IMatrixHelperStatics, target: win32more.Microsoft.UI.Xaml.Media.Matrix, point: win32more.Windows.Foundation.Point) -> win32more.Windows.Foundation.Point: ...
|
|
2455
|
+
_MatrixHelper_Meta_.Identity = property(get_Identity, None)
|
|
2456
|
+
class _MatrixTransform_Meta_(ComPtr.__class__):
|
|
2457
|
+
pass
|
|
2458
|
+
class MatrixTransform(ComPtr, metaclass=_MatrixTransform_Meta_):
|
|
2459
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Transform
|
|
2460
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IMatrixTransform
|
|
2461
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.MatrixTransform'
|
|
2462
|
+
def __init__(self, *args, **kwargs):
|
|
2463
|
+
if kwargs:
|
|
2464
|
+
super().__init__(**kwargs)
|
|
2465
|
+
elif len(args) == 0:
|
|
2466
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.MatrixTransform.CreateInstance(*args))
|
|
2467
|
+
else:
|
|
2468
|
+
raise ValueError('no matched constructor')
|
|
2469
|
+
@winrt_activatemethod
|
|
2470
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.MatrixTransform: ...
|
|
2471
|
+
@winrt_mixinmethod
|
|
2472
|
+
def get_Matrix(self: win32more.Microsoft.UI.Xaml.Media.IMatrixTransform) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
2473
|
+
@winrt_mixinmethod
|
|
2474
|
+
def put_Matrix(self: win32more.Microsoft.UI.Xaml.Media.IMatrixTransform, value: win32more.Microsoft.UI.Xaml.Media.Matrix) -> Void: ...
|
|
2475
|
+
@winrt_classmethod
|
|
2476
|
+
def get_MatrixProperty(cls: win32more.Microsoft.UI.Xaml.Media.IMatrixTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2477
|
+
Matrix = property(get_Matrix, put_Matrix)
|
|
2478
|
+
_MatrixTransform_Meta_.MatrixProperty = property(get_MatrixProperty, None)
|
|
2479
|
+
class MediaTransportControlsThumbnailRequestedEventArgs(ComPtr):
|
|
2480
|
+
extends: IInspectable
|
|
2481
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IMediaTransportControlsThumbnailRequestedEventArgs
|
|
2482
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.MediaTransportControlsThumbnailRequestedEventArgs'
|
|
2483
|
+
@winrt_mixinmethod
|
|
2484
|
+
def SetThumbnailImage(self: win32more.Microsoft.UI.Xaml.Media.IMediaTransportControlsThumbnailRequestedEventArgs, source: win32more.Windows.Storage.Streams.IInputStream) -> Void: ...
|
|
2485
|
+
@winrt_mixinmethod
|
|
2486
|
+
def GetDeferral(self: win32more.Microsoft.UI.Xaml.Media.IMediaTransportControlsThumbnailRequestedEventArgs) -> win32more.Windows.Foundation.Deferral: ...
|
|
2487
|
+
class _MicaBackdrop_Meta_(ComPtr.__class__):
|
|
2488
|
+
pass
|
|
2489
|
+
class MicaBackdrop(ComPtr, metaclass=_MicaBackdrop_Meta_):
|
|
2490
|
+
extends: win32more.Microsoft.UI.Xaml.Media.SystemBackdrop
|
|
2491
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IMicaBackdrop
|
|
2492
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.MicaBackdrop'
|
|
2493
|
+
def __init__(self, *args, **kwargs):
|
|
2494
|
+
if kwargs:
|
|
2495
|
+
super().__init__(**kwargs)
|
|
2496
|
+
elif len(args) == 0:
|
|
2497
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.MicaBackdrop.CreateInstance(*args, None, None))
|
|
2498
|
+
else:
|
|
2499
|
+
raise ValueError('no matched constructor')
|
|
2500
|
+
@winrt_factorymethod
|
|
2501
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IMicaBackdropFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.MicaBackdrop: ...
|
|
2502
|
+
@winrt_mixinmethod
|
|
2503
|
+
def get_Kind(self: win32more.Microsoft.UI.Xaml.Media.IMicaBackdrop) -> win32more.Microsoft.UI.Composition.SystemBackdrops.MicaKind: ...
|
|
2504
|
+
@winrt_mixinmethod
|
|
2505
|
+
def put_Kind(self: win32more.Microsoft.UI.Xaml.Media.IMicaBackdrop, value: win32more.Microsoft.UI.Composition.SystemBackdrops.MicaKind) -> Void: ...
|
|
2506
|
+
@winrt_classmethod
|
|
2507
|
+
def get_KindProperty(cls: win32more.Microsoft.UI.Xaml.Media.IMicaBackdropStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2508
|
+
Kind = property(get_Kind, put_Kind)
|
|
2509
|
+
_MicaBackdrop_Meta_.KindProperty = property(get_KindProperty, None)
|
|
2510
|
+
class _PathFigure_Meta_(ComPtr.__class__):
|
|
2511
|
+
pass
|
|
2512
|
+
class PathFigure(ComPtr, metaclass=_PathFigure_Meta_):
|
|
2513
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
2514
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IPathFigure
|
|
2515
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PathFigure'
|
|
2516
|
+
def __init__(self, *args, **kwargs):
|
|
2517
|
+
if kwargs:
|
|
2518
|
+
super().__init__(**kwargs)
|
|
2519
|
+
elif len(args) == 0:
|
|
2520
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PathFigure.CreateInstance(*args))
|
|
2521
|
+
else:
|
|
2522
|
+
raise ValueError('no matched constructor')
|
|
2523
|
+
@winrt_activatemethod
|
|
2524
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PathFigure: ...
|
|
2525
|
+
@winrt_mixinmethod
|
|
2526
|
+
def get_Segments(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure) -> win32more.Microsoft.UI.Xaml.Media.PathSegmentCollection: ...
|
|
2527
|
+
@winrt_mixinmethod
|
|
2528
|
+
def put_Segments(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure, value: win32more.Microsoft.UI.Xaml.Media.PathSegmentCollection) -> Void: ...
|
|
2529
|
+
@winrt_mixinmethod
|
|
2530
|
+
def get_StartPoint(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure) -> win32more.Windows.Foundation.Point: ...
|
|
2531
|
+
@winrt_mixinmethod
|
|
2532
|
+
def put_StartPoint(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2533
|
+
@winrt_mixinmethod
|
|
2534
|
+
def get_IsClosed(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure) -> Boolean: ...
|
|
2535
|
+
@winrt_mixinmethod
|
|
2536
|
+
def put_IsClosed(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure, value: Boolean) -> Void: ...
|
|
2537
|
+
@winrt_mixinmethod
|
|
2538
|
+
def get_IsFilled(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure) -> Boolean: ...
|
|
2539
|
+
@winrt_mixinmethod
|
|
2540
|
+
def put_IsFilled(self: win32more.Microsoft.UI.Xaml.Media.IPathFigure, value: Boolean) -> Void: ...
|
|
2541
|
+
@winrt_classmethod
|
|
2542
|
+
def get_SegmentsProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPathFigureStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2543
|
+
@winrt_classmethod
|
|
2544
|
+
def get_StartPointProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPathFigureStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2545
|
+
@winrt_classmethod
|
|
2546
|
+
def get_IsClosedProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPathFigureStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2547
|
+
@winrt_classmethod
|
|
2548
|
+
def get_IsFilledProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPathFigureStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2549
|
+
IsClosed = property(get_IsClosed, put_IsClosed)
|
|
2550
|
+
IsFilled = property(get_IsFilled, put_IsFilled)
|
|
2551
|
+
Segments = property(get_Segments, put_Segments)
|
|
2552
|
+
StartPoint = property(get_StartPoint, put_StartPoint)
|
|
2553
|
+
_PathFigure_Meta_.IsClosedProperty = property(get_IsClosedProperty, None)
|
|
2554
|
+
_PathFigure_Meta_.IsFilledProperty = property(get_IsFilledProperty, None)
|
|
2555
|
+
_PathFigure_Meta_.SegmentsProperty = property(get_SegmentsProperty, None)
|
|
2556
|
+
_PathFigure_Meta_.StartPointProperty = property(get_StartPointProperty, None)
|
|
2557
|
+
class PathFigureCollection(ComPtr):
|
|
2558
|
+
extends: IInspectable
|
|
2559
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.PathFigure]]
|
|
2560
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure]
|
|
2561
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PathFigureCollection'
|
|
2562
|
+
def __init__(self, *args, **kwargs):
|
|
2563
|
+
if kwargs:
|
|
2564
|
+
super().__init__(**kwargs)
|
|
2565
|
+
elif len(args) == 0:
|
|
2566
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PathFigureCollection.CreateInstance(*args))
|
|
2567
|
+
else:
|
|
2568
|
+
raise ValueError('no matched constructor')
|
|
2569
|
+
@winrt_activatemethod
|
|
2570
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PathFigureCollection: ...
|
|
2571
|
+
@winrt_mixinmethod
|
|
2572
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.PathFigure: ...
|
|
2573
|
+
@winrt_mixinmethod
|
|
2574
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure]) -> UInt32: ...
|
|
2575
|
+
@winrt_mixinmethod
|
|
2576
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.PathFigure]: ...
|
|
2577
|
+
@winrt_mixinmethod
|
|
2578
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], value: win32more.Microsoft.UI.Xaml.Media.PathFigure, index: POINTER(UInt32)) -> Boolean: ...
|
|
2579
|
+
@winrt_mixinmethod
|
|
2580
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.PathFigure) -> Void: ...
|
|
2581
|
+
@winrt_mixinmethod
|
|
2582
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.PathFigure) -> Void: ...
|
|
2583
|
+
@winrt_mixinmethod
|
|
2584
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], index: UInt32) -> Void: ...
|
|
2585
|
+
@winrt_mixinmethod
|
|
2586
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], value: win32more.Microsoft.UI.Xaml.Media.PathFigure) -> Void: ...
|
|
2587
|
+
@winrt_mixinmethod
|
|
2588
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure]) -> Void: ...
|
|
2589
|
+
@winrt_mixinmethod
|
|
2590
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure]) -> Void: ...
|
|
2591
|
+
@winrt_mixinmethod
|
|
2592
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.PathFigure]) -> UInt32: ...
|
|
2593
|
+
@winrt_mixinmethod
|
|
2594
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathFigure], items: PassArray[win32more.Microsoft.UI.Xaml.Media.PathFigure]) -> Void: ...
|
|
2595
|
+
@winrt_mixinmethod
|
|
2596
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.PathFigure]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.PathFigure]: ...
|
|
2597
|
+
Size = property(get_Size, None)
|
|
2598
|
+
class _PathGeometry_Meta_(ComPtr.__class__):
|
|
2599
|
+
pass
|
|
2600
|
+
class PathGeometry(ComPtr, metaclass=_PathGeometry_Meta_):
|
|
2601
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Geometry
|
|
2602
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IPathGeometry
|
|
2603
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PathGeometry'
|
|
2604
|
+
def __init__(self, *args, **kwargs):
|
|
2605
|
+
if kwargs:
|
|
2606
|
+
super().__init__(**kwargs)
|
|
2607
|
+
elif len(args) == 0:
|
|
2608
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PathGeometry.CreateInstance(*args))
|
|
2609
|
+
else:
|
|
2610
|
+
raise ValueError('no matched constructor')
|
|
2611
|
+
@winrt_activatemethod
|
|
2612
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PathGeometry: ...
|
|
2613
|
+
@winrt_mixinmethod
|
|
2614
|
+
def get_FillRule(self: win32more.Microsoft.UI.Xaml.Media.IPathGeometry) -> win32more.Microsoft.UI.Xaml.Media.FillRule: ...
|
|
2615
|
+
@winrt_mixinmethod
|
|
2616
|
+
def put_FillRule(self: win32more.Microsoft.UI.Xaml.Media.IPathGeometry, value: win32more.Microsoft.UI.Xaml.Media.FillRule) -> Void: ...
|
|
2617
|
+
@winrt_mixinmethod
|
|
2618
|
+
def get_Figures(self: win32more.Microsoft.UI.Xaml.Media.IPathGeometry) -> win32more.Microsoft.UI.Xaml.Media.PathFigureCollection: ...
|
|
2619
|
+
@winrt_mixinmethod
|
|
2620
|
+
def put_Figures(self: win32more.Microsoft.UI.Xaml.Media.IPathGeometry, value: win32more.Microsoft.UI.Xaml.Media.PathFigureCollection) -> Void: ...
|
|
2621
|
+
@winrt_classmethod
|
|
2622
|
+
def get_FillRuleProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPathGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2623
|
+
@winrt_classmethod
|
|
2624
|
+
def get_FiguresProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPathGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2625
|
+
Figures = property(get_Figures, put_Figures)
|
|
2626
|
+
FillRule = property(get_FillRule, put_FillRule)
|
|
2627
|
+
_PathGeometry_Meta_.FiguresProperty = property(get_FiguresProperty, None)
|
|
2628
|
+
_PathGeometry_Meta_.FillRuleProperty = property(get_FillRuleProperty, None)
|
|
2629
|
+
class PathSegment(ComPtr):
|
|
2630
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
2631
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IPathSegment
|
|
2632
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PathSegment'
|
|
2633
|
+
class PathSegmentCollection(ComPtr):
|
|
2634
|
+
extends: IInspectable
|
|
2635
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.PathSegment]]
|
|
2636
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment]
|
|
2637
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PathSegmentCollection'
|
|
2638
|
+
def __init__(self, *args, **kwargs):
|
|
2639
|
+
if kwargs:
|
|
2640
|
+
super().__init__(**kwargs)
|
|
2641
|
+
elif len(args) == 0:
|
|
2642
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PathSegmentCollection.CreateInstance(*args))
|
|
2643
|
+
else:
|
|
2644
|
+
raise ValueError('no matched constructor')
|
|
2645
|
+
@winrt_activatemethod
|
|
2646
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PathSegmentCollection: ...
|
|
2647
|
+
@winrt_mixinmethod
|
|
2648
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.PathSegment: ...
|
|
2649
|
+
@winrt_mixinmethod
|
|
2650
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment]) -> UInt32: ...
|
|
2651
|
+
@winrt_mixinmethod
|
|
2652
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.PathSegment]: ...
|
|
2653
|
+
@winrt_mixinmethod
|
|
2654
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], value: win32more.Microsoft.UI.Xaml.Media.PathSegment, index: POINTER(UInt32)) -> Boolean: ...
|
|
2655
|
+
@winrt_mixinmethod
|
|
2656
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.PathSegment) -> Void: ...
|
|
2657
|
+
@winrt_mixinmethod
|
|
2658
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.PathSegment) -> Void: ...
|
|
2659
|
+
@winrt_mixinmethod
|
|
2660
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], index: UInt32) -> Void: ...
|
|
2661
|
+
@winrt_mixinmethod
|
|
2662
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], value: win32more.Microsoft.UI.Xaml.Media.PathSegment) -> Void: ...
|
|
2663
|
+
@winrt_mixinmethod
|
|
2664
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment]) -> Void: ...
|
|
2665
|
+
@winrt_mixinmethod
|
|
2666
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment]) -> Void: ...
|
|
2667
|
+
@winrt_mixinmethod
|
|
2668
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.PathSegment]) -> UInt32: ...
|
|
2669
|
+
@winrt_mixinmethod
|
|
2670
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.PathSegment], items: PassArray[win32more.Microsoft.UI.Xaml.Media.PathSegment]) -> Void: ...
|
|
2671
|
+
@winrt_mixinmethod
|
|
2672
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.PathSegment]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.PathSegment]: ...
|
|
2673
|
+
Size = property(get_Size, None)
|
|
2674
|
+
class PenLineCap(Enum, Int32):
|
|
2675
|
+
Flat = 0
|
|
2676
|
+
Square = 1
|
|
2677
|
+
Round = 2
|
|
2678
|
+
Triangle = 3
|
|
2679
|
+
class PenLineJoin(Enum, Int32):
|
|
2680
|
+
Miter = 0
|
|
2681
|
+
Bevel = 1
|
|
2682
|
+
Round = 2
|
|
2683
|
+
class _PlaneProjection_Meta_(ComPtr.__class__):
|
|
2684
|
+
pass
|
|
2685
|
+
class PlaneProjection(ComPtr, metaclass=_PlaneProjection_Meta_):
|
|
2686
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Projection
|
|
2687
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection
|
|
2688
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PlaneProjection'
|
|
2689
|
+
def __init__(self, *args, **kwargs):
|
|
2690
|
+
if kwargs:
|
|
2691
|
+
super().__init__(**kwargs)
|
|
2692
|
+
elif len(args) == 0:
|
|
2693
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PlaneProjection.CreateInstance(*args))
|
|
2694
|
+
else:
|
|
2695
|
+
raise ValueError('no matched constructor')
|
|
2696
|
+
@winrt_activatemethod
|
|
2697
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PlaneProjection: ...
|
|
2698
|
+
@winrt_mixinmethod
|
|
2699
|
+
def get_LocalOffsetX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2700
|
+
@winrt_mixinmethod
|
|
2701
|
+
def put_LocalOffsetX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2702
|
+
@winrt_mixinmethod
|
|
2703
|
+
def get_LocalOffsetY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2704
|
+
@winrt_mixinmethod
|
|
2705
|
+
def put_LocalOffsetY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2706
|
+
@winrt_mixinmethod
|
|
2707
|
+
def get_LocalOffsetZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2708
|
+
@winrt_mixinmethod
|
|
2709
|
+
def put_LocalOffsetZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2710
|
+
@winrt_mixinmethod
|
|
2711
|
+
def get_RotationX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2712
|
+
@winrt_mixinmethod
|
|
2713
|
+
def put_RotationX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2714
|
+
@winrt_mixinmethod
|
|
2715
|
+
def get_RotationY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2716
|
+
@winrt_mixinmethod
|
|
2717
|
+
def put_RotationY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2718
|
+
@winrt_mixinmethod
|
|
2719
|
+
def get_RotationZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2720
|
+
@winrt_mixinmethod
|
|
2721
|
+
def put_RotationZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2722
|
+
@winrt_mixinmethod
|
|
2723
|
+
def get_CenterOfRotationX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2724
|
+
@winrt_mixinmethod
|
|
2725
|
+
def put_CenterOfRotationX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2726
|
+
@winrt_mixinmethod
|
|
2727
|
+
def get_CenterOfRotationY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2728
|
+
@winrt_mixinmethod
|
|
2729
|
+
def put_CenterOfRotationY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2730
|
+
@winrt_mixinmethod
|
|
2731
|
+
def get_CenterOfRotationZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2732
|
+
@winrt_mixinmethod
|
|
2733
|
+
def put_CenterOfRotationZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2734
|
+
@winrt_mixinmethod
|
|
2735
|
+
def get_GlobalOffsetX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2736
|
+
@winrt_mixinmethod
|
|
2737
|
+
def put_GlobalOffsetX(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2738
|
+
@winrt_mixinmethod
|
|
2739
|
+
def get_GlobalOffsetY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2740
|
+
@winrt_mixinmethod
|
|
2741
|
+
def put_GlobalOffsetY(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2742
|
+
@winrt_mixinmethod
|
|
2743
|
+
def get_GlobalOffsetZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> Double: ...
|
|
2744
|
+
@winrt_mixinmethod
|
|
2745
|
+
def put_GlobalOffsetZ(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection, value: Double) -> Void: ...
|
|
2746
|
+
@winrt_mixinmethod
|
|
2747
|
+
def get_ProjectionMatrix(self: win32more.Microsoft.UI.Xaml.Media.IPlaneProjection) -> win32more.Microsoft.UI.Xaml.Media.Media3D.Matrix3D: ...
|
|
2748
|
+
@winrt_classmethod
|
|
2749
|
+
def get_LocalOffsetXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2750
|
+
@winrt_classmethod
|
|
2751
|
+
def get_LocalOffsetYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2752
|
+
@winrt_classmethod
|
|
2753
|
+
def get_LocalOffsetZProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2754
|
+
@winrt_classmethod
|
|
2755
|
+
def get_RotationXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2756
|
+
@winrt_classmethod
|
|
2757
|
+
def get_RotationYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2758
|
+
@winrt_classmethod
|
|
2759
|
+
def get_RotationZProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2760
|
+
@winrt_classmethod
|
|
2761
|
+
def get_CenterOfRotationXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2762
|
+
@winrt_classmethod
|
|
2763
|
+
def get_CenterOfRotationYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2764
|
+
@winrt_classmethod
|
|
2765
|
+
def get_CenterOfRotationZProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2766
|
+
@winrt_classmethod
|
|
2767
|
+
def get_GlobalOffsetXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2768
|
+
@winrt_classmethod
|
|
2769
|
+
def get_GlobalOffsetYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2770
|
+
@winrt_classmethod
|
|
2771
|
+
def get_GlobalOffsetZProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2772
|
+
@winrt_classmethod
|
|
2773
|
+
def get_ProjectionMatrixProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPlaneProjectionStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2774
|
+
CenterOfRotationX = property(get_CenterOfRotationX, put_CenterOfRotationX)
|
|
2775
|
+
CenterOfRotationY = property(get_CenterOfRotationY, put_CenterOfRotationY)
|
|
2776
|
+
CenterOfRotationZ = property(get_CenterOfRotationZ, put_CenterOfRotationZ)
|
|
2777
|
+
GlobalOffsetX = property(get_GlobalOffsetX, put_GlobalOffsetX)
|
|
2778
|
+
GlobalOffsetY = property(get_GlobalOffsetY, put_GlobalOffsetY)
|
|
2779
|
+
GlobalOffsetZ = property(get_GlobalOffsetZ, put_GlobalOffsetZ)
|
|
2780
|
+
LocalOffsetX = property(get_LocalOffsetX, put_LocalOffsetX)
|
|
2781
|
+
LocalOffsetY = property(get_LocalOffsetY, put_LocalOffsetY)
|
|
2782
|
+
LocalOffsetZ = property(get_LocalOffsetZ, put_LocalOffsetZ)
|
|
2783
|
+
ProjectionMatrix = property(get_ProjectionMatrix, None)
|
|
2784
|
+
RotationX = property(get_RotationX, put_RotationX)
|
|
2785
|
+
RotationY = property(get_RotationY, put_RotationY)
|
|
2786
|
+
RotationZ = property(get_RotationZ, put_RotationZ)
|
|
2787
|
+
_PlaneProjection_Meta_.CenterOfRotationXProperty = property(get_CenterOfRotationXProperty, None)
|
|
2788
|
+
_PlaneProjection_Meta_.CenterOfRotationYProperty = property(get_CenterOfRotationYProperty, None)
|
|
2789
|
+
_PlaneProjection_Meta_.CenterOfRotationZProperty = property(get_CenterOfRotationZProperty, None)
|
|
2790
|
+
_PlaneProjection_Meta_.GlobalOffsetXProperty = property(get_GlobalOffsetXProperty, None)
|
|
2791
|
+
_PlaneProjection_Meta_.GlobalOffsetYProperty = property(get_GlobalOffsetYProperty, None)
|
|
2792
|
+
_PlaneProjection_Meta_.GlobalOffsetZProperty = property(get_GlobalOffsetZProperty, None)
|
|
2793
|
+
_PlaneProjection_Meta_.LocalOffsetXProperty = property(get_LocalOffsetXProperty, None)
|
|
2794
|
+
_PlaneProjection_Meta_.LocalOffsetYProperty = property(get_LocalOffsetYProperty, None)
|
|
2795
|
+
_PlaneProjection_Meta_.LocalOffsetZProperty = property(get_LocalOffsetZProperty, None)
|
|
2796
|
+
_PlaneProjection_Meta_.ProjectionMatrixProperty = property(get_ProjectionMatrixProperty, None)
|
|
2797
|
+
_PlaneProjection_Meta_.RotationXProperty = property(get_RotationXProperty, None)
|
|
2798
|
+
_PlaneProjection_Meta_.RotationYProperty = property(get_RotationYProperty, None)
|
|
2799
|
+
_PlaneProjection_Meta_.RotationZProperty = property(get_RotationZProperty, None)
|
|
2800
|
+
class PointCollection(ComPtr):
|
|
2801
|
+
extends: IInspectable
|
|
2802
|
+
implements: Tuple[SequenceProtocol[win32more.Windows.Foundation.Point]]
|
|
2803
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point]
|
|
2804
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PointCollection'
|
|
2805
|
+
def __init__(self, *args, **kwargs):
|
|
2806
|
+
if kwargs:
|
|
2807
|
+
super().__init__(**kwargs)
|
|
2808
|
+
elif len(args) == 0:
|
|
2809
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PointCollection.CreateInstance(*args))
|
|
2810
|
+
else:
|
|
2811
|
+
raise ValueError('no matched constructor')
|
|
2812
|
+
@winrt_activatemethod
|
|
2813
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
|
|
2814
|
+
@winrt_mixinmethod
|
|
2815
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], index: UInt32) -> win32more.Windows.Foundation.Point: ...
|
|
2816
|
+
@winrt_mixinmethod
|
|
2817
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point]) -> UInt32: ...
|
|
2818
|
+
@winrt_mixinmethod
|
|
2819
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Windows.Foundation.Point]: ...
|
|
2820
|
+
@winrt_mixinmethod
|
|
2821
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], value: win32more.Windows.Foundation.Point, index: POINTER(UInt32)) -> Boolean: ...
|
|
2822
|
+
@winrt_mixinmethod
|
|
2823
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], index: UInt32, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2824
|
+
@winrt_mixinmethod
|
|
2825
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], index: UInt32, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2826
|
+
@winrt_mixinmethod
|
|
2827
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], index: UInt32) -> Void: ...
|
|
2828
|
+
@winrt_mixinmethod
|
|
2829
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2830
|
+
@winrt_mixinmethod
|
|
2831
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
2832
|
+
@winrt_mixinmethod
|
|
2833
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
2834
|
+
@winrt_mixinmethod
|
|
2835
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], startIndex: UInt32, items: FillArray[win32more.Windows.Foundation.Point]) -> UInt32: ...
|
|
2836
|
+
@winrt_mixinmethod
|
|
2837
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Windows.Foundation.Point], items: PassArray[win32more.Windows.Foundation.Point]) -> Void: ...
|
|
2838
|
+
@winrt_mixinmethod
|
|
2839
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Windows.Foundation.Point]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Windows.Foundation.Point]: ...
|
|
2840
|
+
Size = property(get_Size, None)
|
|
2841
|
+
class _PolyBezierSegment_Meta_(ComPtr.__class__):
|
|
2842
|
+
pass
|
|
2843
|
+
class PolyBezierSegment(ComPtr, metaclass=_PolyBezierSegment_Meta_):
|
|
2844
|
+
extends: win32more.Microsoft.UI.Xaml.Media.PathSegment
|
|
2845
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IPolyBezierSegment
|
|
2846
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PolyBezierSegment'
|
|
2847
|
+
def __init__(self, *args, **kwargs):
|
|
2848
|
+
if kwargs:
|
|
2849
|
+
super().__init__(**kwargs)
|
|
2850
|
+
elif len(args) == 0:
|
|
2851
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PolyBezierSegment.CreateInstance(*args))
|
|
2852
|
+
else:
|
|
2853
|
+
raise ValueError('no matched constructor')
|
|
2854
|
+
@winrt_activatemethod
|
|
2855
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PolyBezierSegment: ...
|
|
2856
|
+
@winrt_mixinmethod
|
|
2857
|
+
def get_Points(self: win32more.Microsoft.UI.Xaml.Media.IPolyBezierSegment) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
|
|
2858
|
+
@winrt_mixinmethod
|
|
2859
|
+
def put_Points(self: win32more.Microsoft.UI.Xaml.Media.IPolyBezierSegment, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
|
|
2860
|
+
@winrt_classmethod
|
|
2861
|
+
def get_PointsProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPolyBezierSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2862
|
+
Points = property(get_Points, put_Points)
|
|
2863
|
+
_PolyBezierSegment_Meta_.PointsProperty = property(get_PointsProperty, None)
|
|
2864
|
+
class _PolyLineSegment_Meta_(ComPtr.__class__):
|
|
2865
|
+
pass
|
|
2866
|
+
class PolyLineSegment(ComPtr, metaclass=_PolyLineSegment_Meta_):
|
|
2867
|
+
extends: win32more.Microsoft.UI.Xaml.Media.PathSegment
|
|
2868
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IPolyLineSegment
|
|
2869
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PolyLineSegment'
|
|
2870
|
+
def __init__(self, *args, **kwargs):
|
|
2871
|
+
if kwargs:
|
|
2872
|
+
super().__init__(**kwargs)
|
|
2873
|
+
elif len(args) == 0:
|
|
2874
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PolyLineSegment.CreateInstance(*args))
|
|
2875
|
+
else:
|
|
2876
|
+
raise ValueError('no matched constructor')
|
|
2877
|
+
@winrt_activatemethod
|
|
2878
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PolyLineSegment: ...
|
|
2879
|
+
@winrt_mixinmethod
|
|
2880
|
+
def get_Points(self: win32more.Microsoft.UI.Xaml.Media.IPolyLineSegment) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
|
|
2881
|
+
@winrt_mixinmethod
|
|
2882
|
+
def put_Points(self: win32more.Microsoft.UI.Xaml.Media.IPolyLineSegment, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
|
|
2883
|
+
@winrt_classmethod
|
|
2884
|
+
def get_PointsProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPolyLineSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2885
|
+
Points = property(get_Points, put_Points)
|
|
2886
|
+
_PolyLineSegment_Meta_.PointsProperty = property(get_PointsProperty, None)
|
|
2887
|
+
class _PolyQuadraticBezierSegment_Meta_(ComPtr.__class__):
|
|
2888
|
+
pass
|
|
2889
|
+
class PolyQuadraticBezierSegment(ComPtr, metaclass=_PolyQuadraticBezierSegment_Meta_):
|
|
2890
|
+
extends: win32more.Microsoft.UI.Xaml.Media.PathSegment
|
|
2891
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IPolyQuadraticBezierSegment
|
|
2892
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.PolyQuadraticBezierSegment'
|
|
2893
|
+
def __init__(self, *args, **kwargs):
|
|
2894
|
+
if kwargs:
|
|
2895
|
+
super().__init__(**kwargs)
|
|
2896
|
+
elif len(args) == 0:
|
|
2897
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.PolyQuadraticBezierSegment.CreateInstance(*args))
|
|
2898
|
+
else:
|
|
2899
|
+
raise ValueError('no matched constructor')
|
|
2900
|
+
@winrt_activatemethod
|
|
2901
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.PolyQuadraticBezierSegment: ...
|
|
2902
|
+
@winrt_mixinmethod
|
|
2903
|
+
def get_Points(self: win32more.Microsoft.UI.Xaml.Media.IPolyQuadraticBezierSegment) -> win32more.Microsoft.UI.Xaml.Media.PointCollection: ...
|
|
2904
|
+
@winrt_mixinmethod
|
|
2905
|
+
def put_Points(self: win32more.Microsoft.UI.Xaml.Media.IPolyQuadraticBezierSegment, value: win32more.Microsoft.UI.Xaml.Media.PointCollection) -> Void: ...
|
|
2906
|
+
@winrt_classmethod
|
|
2907
|
+
def get_PointsProperty(cls: win32more.Microsoft.UI.Xaml.Media.IPolyQuadraticBezierSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2908
|
+
Points = property(get_Points, put_Points)
|
|
2909
|
+
_PolyQuadraticBezierSegment_Meta_.PointsProperty = property(get_PointsProperty, None)
|
|
2910
|
+
class Projection(ComPtr):
|
|
2911
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
2912
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IProjection
|
|
2913
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Projection'
|
|
2914
|
+
def __init__(self, *args, **kwargs):
|
|
2915
|
+
if kwargs:
|
|
2916
|
+
super().__init__(**kwargs)
|
|
2917
|
+
elif len(args) == 0:
|
|
2918
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.Projection.CreateInstance(*args, None, None))
|
|
2919
|
+
else:
|
|
2920
|
+
raise ValueError('no matched constructor')
|
|
2921
|
+
@winrt_factorymethod
|
|
2922
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IProjectionFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.Projection: ...
|
|
2923
|
+
class _QuadraticBezierSegment_Meta_(ComPtr.__class__):
|
|
2924
|
+
pass
|
|
2925
|
+
class QuadraticBezierSegment(ComPtr, metaclass=_QuadraticBezierSegment_Meta_):
|
|
2926
|
+
extends: win32more.Microsoft.UI.Xaml.Media.PathSegment
|
|
2927
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IQuadraticBezierSegment
|
|
2928
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.QuadraticBezierSegment'
|
|
2929
|
+
def __init__(self, *args, **kwargs):
|
|
2930
|
+
if kwargs:
|
|
2931
|
+
super().__init__(**kwargs)
|
|
2932
|
+
elif len(args) == 0:
|
|
2933
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.QuadraticBezierSegment.CreateInstance(*args))
|
|
2934
|
+
else:
|
|
2935
|
+
raise ValueError('no matched constructor')
|
|
2936
|
+
@winrt_activatemethod
|
|
2937
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.QuadraticBezierSegment: ...
|
|
2938
|
+
@winrt_mixinmethod
|
|
2939
|
+
def get_Point1(self: win32more.Microsoft.UI.Xaml.Media.IQuadraticBezierSegment) -> win32more.Windows.Foundation.Point: ...
|
|
2940
|
+
@winrt_mixinmethod
|
|
2941
|
+
def put_Point1(self: win32more.Microsoft.UI.Xaml.Media.IQuadraticBezierSegment, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2942
|
+
@winrt_mixinmethod
|
|
2943
|
+
def get_Point2(self: win32more.Microsoft.UI.Xaml.Media.IQuadraticBezierSegment) -> win32more.Windows.Foundation.Point: ...
|
|
2944
|
+
@winrt_mixinmethod
|
|
2945
|
+
def put_Point2(self: win32more.Microsoft.UI.Xaml.Media.IQuadraticBezierSegment, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2946
|
+
@winrt_classmethod
|
|
2947
|
+
def get_Point1Property(cls: win32more.Microsoft.UI.Xaml.Media.IQuadraticBezierSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2948
|
+
@winrt_classmethod
|
|
2949
|
+
def get_Point2Property(cls: win32more.Microsoft.UI.Xaml.Media.IQuadraticBezierSegmentStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
2950
|
+
Point1 = property(get_Point1, put_Point1)
|
|
2951
|
+
Point2 = property(get_Point2, put_Point2)
|
|
2952
|
+
_QuadraticBezierSegment_Meta_.Point1Property = property(get_Point1Property, None)
|
|
2953
|
+
_QuadraticBezierSegment_Meta_.Point2Property = property(get_Point2Property, None)
|
|
2954
|
+
class _RadialGradientBrush_Meta_(ComPtr.__class__):
|
|
2955
|
+
pass
|
|
2956
|
+
class RadialGradientBrush(ComPtr, metaclass=_RadialGradientBrush_Meta_):
|
|
2957
|
+
extends: win32more.Microsoft.UI.Xaml.Media.XamlCompositionBrushBase
|
|
2958
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush
|
|
2959
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.RadialGradientBrush'
|
|
2960
|
+
def __init__(self, *args, **kwargs):
|
|
2961
|
+
if kwargs:
|
|
2962
|
+
super().__init__(**kwargs)
|
|
2963
|
+
elif len(args) == 0:
|
|
2964
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.RadialGradientBrush.CreateInstance(*args, None, None))
|
|
2965
|
+
else:
|
|
2966
|
+
raise ValueError('no matched constructor')
|
|
2967
|
+
@winrt_factorymethod
|
|
2968
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.RadialGradientBrush: ...
|
|
2969
|
+
@winrt_mixinmethod
|
|
2970
|
+
def get_Center(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> win32more.Windows.Foundation.Point: ...
|
|
2971
|
+
@winrt_mixinmethod
|
|
2972
|
+
def put_Center(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2973
|
+
@winrt_mixinmethod
|
|
2974
|
+
def get_RadiusX(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> Double: ...
|
|
2975
|
+
@winrt_mixinmethod
|
|
2976
|
+
def put_RadiusX(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush, value: Double) -> Void: ...
|
|
2977
|
+
@winrt_mixinmethod
|
|
2978
|
+
def get_RadiusY(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> Double: ...
|
|
2979
|
+
@winrt_mixinmethod
|
|
2980
|
+
def put_RadiusY(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush, value: Double) -> Void: ...
|
|
2981
|
+
@winrt_mixinmethod
|
|
2982
|
+
def get_GradientOrigin(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> win32more.Windows.Foundation.Point: ...
|
|
2983
|
+
@winrt_mixinmethod
|
|
2984
|
+
def put_GradientOrigin(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
2985
|
+
@winrt_mixinmethod
|
|
2986
|
+
def get_MappingMode(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> win32more.Microsoft.UI.Xaml.Media.BrushMappingMode: ...
|
|
2987
|
+
@winrt_mixinmethod
|
|
2988
|
+
def put_MappingMode(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush, value: win32more.Microsoft.UI.Xaml.Media.BrushMappingMode) -> Void: ...
|
|
2989
|
+
@winrt_mixinmethod
|
|
2990
|
+
def get_InterpolationSpace(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> win32more.Microsoft.UI.Composition.CompositionColorSpace: ...
|
|
2991
|
+
@winrt_mixinmethod
|
|
2992
|
+
def put_InterpolationSpace(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush, value: win32more.Microsoft.UI.Composition.CompositionColorSpace) -> Void: ...
|
|
2993
|
+
@winrt_mixinmethod
|
|
2994
|
+
def get_SpreadMethod(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod: ...
|
|
2995
|
+
@winrt_mixinmethod
|
|
2996
|
+
def put_SpreadMethod(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush, value: win32more.Microsoft.UI.Xaml.Media.GradientSpreadMethod) -> Void: ...
|
|
2997
|
+
@winrt_mixinmethod
|
|
2998
|
+
def get_GradientStops(self: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrush) -> win32more.Windows.Foundation.Collections.IObservableVector[win32more.Microsoft.UI.Xaml.Media.GradientStop]: ...
|
|
2999
|
+
@winrt_classmethod
|
|
3000
|
+
def get_CenterProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3001
|
+
@winrt_classmethod
|
|
3002
|
+
def get_RadiusXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3003
|
+
@winrt_classmethod
|
|
3004
|
+
def get_RadiusYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3005
|
+
@winrt_classmethod
|
|
3006
|
+
def get_GradientOriginProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3007
|
+
@winrt_classmethod
|
|
3008
|
+
def get_InterpolationSpaceProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3009
|
+
@winrt_classmethod
|
|
3010
|
+
def get_MappingModeProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3011
|
+
@winrt_classmethod
|
|
3012
|
+
def get_SpreadMethodProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRadialGradientBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3013
|
+
Center = property(get_Center, put_Center)
|
|
3014
|
+
GradientOrigin = property(get_GradientOrigin, put_GradientOrigin)
|
|
3015
|
+
GradientStops = property(get_GradientStops, None)
|
|
3016
|
+
InterpolationSpace = property(get_InterpolationSpace, put_InterpolationSpace)
|
|
3017
|
+
MappingMode = property(get_MappingMode, put_MappingMode)
|
|
3018
|
+
RadiusX = property(get_RadiusX, put_RadiusX)
|
|
3019
|
+
RadiusY = property(get_RadiusY, put_RadiusY)
|
|
3020
|
+
SpreadMethod = property(get_SpreadMethod, put_SpreadMethod)
|
|
3021
|
+
_RadialGradientBrush_Meta_.CenterProperty = property(get_CenterProperty, None)
|
|
3022
|
+
_RadialGradientBrush_Meta_.GradientOriginProperty = property(get_GradientOriginProperty, None)
|
|
3023
|
+
_RadialGradientBrush_Meta_.InterpolationSpaceProperty = property(get_InterpolationSpaceProperty, None)
|
|
3024
|
+
_RadialGradientBrush_Meta_.MappingModeProperty = property(get_MappingModeProperty, None)
|
|
3025
|
+
_RadialGradientBrush_Meta_.RadiusXProperty = property(get_RadiusXProperty, None)
|
|
3026
|
+
_RadialGradientBrush_Meta_.RadiusYProperty = property(get_RadiusYProperty, None)
|
|
3027
|
+
_RadialGradientBrush_Meta_.SpreadMethodProperty = property(get_SpreadMethodProperty, None)
|
|
3028
|
+
class _RectangleGeometry_Meta_(ComPtr.__class__):
|
|
3029
|
+
pass
|
|
3030
|
+
class RectangleGeometry(ComPtr, metaclass=_RectangleGeometry_Meta_):
|
|
3031
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Geometry
|
|
3032
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IRectangleGeometry
|
|
3033
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.RectangleGeometry'
|
|
3034
|
+
def __init__(self, *args, **kwargs):
|
|
3035
|
+
if kwargs:
|
|
3036
|
+
super().__init__(**kwargs)
|
|
3037
|
+
elif len(args) == 0:
|
|
3038
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.RectangleGeometry.CreateInstance(*args))
|
|
3039
|
+
else:
|
|
3040
|
+
raise ValueError('no matched constructor')
|
|
3041
|
+
@winrt_activatemethod
|
|
3042
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.RectangleGeometry: ...
|
|
3043
|
+
@winrt_mixinmethod
|
|
3044
|
+
def get_Rect(self: win32more.Microsoft.UI.Xaml.Media.IRectangleGeometry) -> win32more.Windows.Foundation.Rect: ...
|
|
3045
|
+
@winrt_mixinmethod
|
|
3046
|
+
def put_Rect(self: win32more.Microsoft.UI.Xaml.Media.IRectangleGeometry, value: win32more.Windows.Foundation.Rect) -> Void: ...
|
|
3047
|
+
@winrt_classmethod
|
|
3048
|
+
def get_RectProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRectangleGeometryStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3049
|
+
Rect = property(get_Rect, put_Rect)
|
|
3050
|
+
_RectangleGeometry_Meta_.RectProperty = property(get_RectProperty, None)
|
|
3051
|
+
class RenderedEventArgs(ComPtr):
|
|
3052
|
+
extends: IInspectable
|
|
3053
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IRenderedEventArgs
|
|
3054
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.RenderedEventArgs'
|
|
3055
|
+
@winrt_mixinmethod
|
|
3056
|
+
def get_FrameDuration(self: win32more.Microsoft.UI.Xaml.Media.IRenderedEventArgs) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
3057
|
+
FrameDuration = property(get_FrameDuration, None)
|
|
3058
|
+
class RenderingEventArgs(ComPtr):
|
|
3059
|
+
extends: IInspectable
|
|
3060
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IRenderingEventArgs
|
|
3061
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.RenderingEventArgs'
|
|
3062
|
+
@winrt_mixinmethod
|
|
3063
|
+
def get_RenderingTime(self: win32more.Microsoft.UI.Xaml.Media.IRenderingEventArgs) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
3064
|
+
RenderingTime = property(get_RenderingTime, None)
|
|
3065
|
+
class _RotateTransform_Meta_(ComPtr.__class__):
|
|
3066
|
+
pass
|
|
3067
|
+
class RotateTransform(ComPtr, metaclass=_RotateTransform_Meta_):
|
|
3068
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Transform
|
|
3069
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IRotateTransform
|
|
3070
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.RotateTransform'
|
|
3071
|
+
def __init__(self, *args, **kwargs):
|
|
3072
|
+
if kwargs:
|
|
3073
|
+
super().__init__(**kwargs)
|
|
3074
|
+
elif len(args) == 0:
|
|
3075
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.RotateTransform.CreateInstance(*args))
|
|
3076
|
+
else:
|
|
3077
|
+
raise ValueError('no matched constructor')
|
|
3078
|
+
@winrt_activatemethod
|
|
3079
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.RotateTransform: ...
|
|
3080
|
+
@winrt_mixinmethod
|
|
3081
|
+
def get_CenterX(self: win32more.Microsoft.UI.Xaml.Media.IRotateTransform) -> Double: ...
|
|
3082
|
+
@winrt_mixinmethod
|
|
3083
|
+
def put_CenterX(self: win32more.Microsoft.UI.Xaml.Media.IRotateTransform, value: Double) -> Void: ...
|
|
3084
|
+
@winrt_mixinmethod
|
|
3085
|
+
def get_CenterY(self: win32more.Microsoft.UI.Xaml.Media.IRotateTransform) -> Double: ...
|
|
3086
|
+
@winrt_mixinmethod
|
|
3087
|
+
def put_CenterY(self: win32more.Microsoft.UI.Xaml.Media.IRotateTransform, value: Double) -> Void: ...
|
|
3088
|
+
@winrt_mixinmethod
|
|
3089
|
+
def get_Angle(self: win32more.Microsoft.UI.Xaml.Media.IRotateTransform) -> Double: ...
|
|
3090
|
+
@winrt_mixinmethod
|
|
3091
|
+
def put_Angle(self: win32more.Microsoft.UI.Xaml.Media.IRotateTransform, value: Double) -> Void: ...
|
|
3092
|
+
@winrt_classmethod
|
|
3093
|
+
def get_CenterXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRotateTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3094
|
+
@winrt_classmethod
|
|
3095
|
+
def get_CenterYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRotateTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3096
|
+
@winrt_classmethod
|
|
3097
|
+
def get_AngleProperty(cls: win32more.Microsoft.UI.Xaml.Media.IRotateTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3098
|
+
Angle = property(get_Angle, put_Angle)
|
|
3099
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
3100
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
3101
|
+
_RotateTransform_Meta_.AngleProperty = property(get_AngleProperty, None)
|
|
3102
|
+
_RotateTransform_Meta_.CenterXProperty = property(get_CenterXProperty, None)
|
|
3103
|
+
_RotateTransform_Meta_.CenterYProperty = property(get_CenterYProperty, None)
|
|
3104
|
+
class _ScaleTransform_Meta_(ComPtr.__class__):
|
|
3105
|
+
pass
|
|
3106
|
+
class ScaleTransform(ComPtr, metaclass=_ScaleTransform_Meta_):
|
|
3107
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Transform
|
|
3108
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IScaleTransform
|
|
3109
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ScaleTransform'
|
|
3110
|
+
def __init__(self, *args, **kwargs):
|
|
3111
|
+
if kwargs:
|
|
3112
|
+
super().__init__(**kwargs)
|
|
3113
|
+
elif len(args) == 0:
|
|
3114
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.ScaleTransform.CreateInstance(*args))
|
|
3115
|
+
else:
|
|
3116
|
+
raise ValueError('no matched constructor')
|
|
3117
|
+
@winrt_activatemethod
|
|
3118
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.ScaleTransform: ...
|
|
3119
|
+
@winrt_mixinmethod
|
|
3120
|
+
def get_CenterX(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform) -> Double: ...
|
|
3121
|
+
@winrt_mixinmethod
|
|
3122
|
+
def put_CenterX(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform, value: Double) -> Void: ...
|
|
3123
|
+
@winrt_mixinmethod
|
|
3124
|
+
def get_CenterY(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform) -> Double: ...
|
|
3125
|
+
@winrt_mixinmethod
|
|
3126
|
+
def put_CenterY(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform, value: Double) -> Void: ...
|
|
3127
|
+
@winrt_mixinmethod
|
|
3128
|
+
def get_ScaleX(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform) -> Double: ...
|
|
3129
|
+
@winrt_mixinmethod
|
|
3130
|
+
def put_ScaleX(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform, value: Double) -> Void: ...
|
|
3131
|
+
@winrt_mixinmethod
|
|
3132
|
+
def get_ScaleY(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform) -> Double: ...
|
|
3133
|
+
@winrt_mixinmethod
|
|
3134
|
+
def put_ScaleY(self: win32more.Microsoft.UI.Xaml.Media.IScaleTransform, value: Double) -> Void: ...
|
|
3135
|
+
@winrt_classmethod
|
|
3136
|
+
def get_CenterXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IScaleTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3137
|
+
@winrt_classmethod
|
|
3138
|
+
def get_CenterYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IScaleTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3139
|
+
@winrt_classmethod
|
|
3140
|
+
def get_ScaleXProperty(cls: win32more.Microsoft.UI.Xaml.Media.IScaleTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3141
|
+
@winrt_classmethod
|
|
3142
|
+
def get_ScaleYProperty(cls: win32more.Microsoft.UI.Xaml.Media.IScaleTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3143
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
3144
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
3145
|
+
ScaleX = property(get_ScaleX, put_ScaleX)
|
|
3146
|
+
ScaleY = property(get_ScaleY, put_ScaleY)
|
|
3147
|
+
_ScaleTransform_Meta_.CenterXProperty = property(get_CenterXProperty, None)
|
|
3148
|
+
_ScaleTransform_Meta_.CenterYProperty = property(get_CenterYProperty, None)
|
|
3149
|
+
_ScaleTransform_Meta_.ScaleXProperty = property(get_ScaleXProperty, None)
|
|
3150
|
+
_ScaleTransform_Meta_.ScaleYProperty = property(get_ScaleYProperty, None)
|
|
3151
|
+
class Shadow(ComPtr):
|
|
3152
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
3153
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IShadow
|
|
3154
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Shadow'
|
|
3155
|
+
class _SkewTransform_Meta_(ComPtr.__class__):
|
|
3156
|
+
pass
|
|
3157
|
+
class SkewTransform(ComPtr, metaclass=_SkewTransform_Meta_):
|
|
3158
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Transform
|
|
3159
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ISkewTransform
|
|
3160
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.SkewTransform'
|
|
3161
|
+
def __init__(self, *args, **kwargs):
|
|
3162
|
+
if kwargs:
|
|
3163
|
+
super().__init__(**kwargs)
|
|
3164
|
+
elif len(args) == 0:
|
|
3165
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.SkewTransform.CreateInstance(*args))
|
|
3166
|
+
else:
|
|
3167
|
+
raise ValueError('no matched constructor')
|
|
3168
|
+
@winrt_activatemethod
|
|
3169
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.SkewTransform: ...
|
|
3170
|
+
@winrt_mixinmethod
|
|
3171
|
+
def get_CenterX(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform) -> Double: ...
|
|
3172
|
+
@winrt_mixinmethod
|
|
3173
|
+
def put_CenterX(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform, value: Double) -> Void: ...
|
|
3174
|
+
@winrt_mixinmethod
|
|
3175
|
+
def get_CenterY(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform) -> Double: ...
|
|
3176
|
+
@winrt_mixinmethod
|
|
3177
|
+
def put_CenterY(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform, value: Double) -> Void: ...
|
|
3178
|
+
@winrt_mixinmethod
|
|
3179
|
+
def get_AngleX(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform) -> Double: ...
|
|
3180
|
+
@winrt_mixinmethod
|
|
3181
|
+
def put_AngleX(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform, value: Double) -> Void: ...
|
|
3182
|
+
@winrt_mixinmethod
|
|
3183
|
+
def get_AngleY(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform) -> Double: ...
|
|
3184
|
+
@winrt_mixinmethod
|
|
3185
|
+
def put_AngleY(self: win32more.Microsoft.UI.Xaml.Media.ISkewTransform, value: Double) -> Void: ...
|
|
3186
|
+
@winrt_classmethod
|
|
3187
|
+
def get_CenterXProperty(cls: win32more.Microsoft.UI.Xaml.Media.ISkewTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3188
|
+
@winrt_classmethod
|
|
3189
|
+
def get_CenterYProperty(cls: win32more.Microsoft.UI.Xaml.Media.ISkewTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3190
|
+
@winrt_classmethod
|
|
3191
|
+
def get_AngleXProperty(cls: win32more.Microsoft.UI.Xaml.Media.ISkewTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3192
|
+
@winrt_classmethod
|
|
3193
|
+
def get_AngleYProperty(cls: win32more.Microsoft.UI.Xaml.Media.ISkewTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3194
|
+
AngleX = property(get_AngleX, put_AngleX)
|
|
3195
|
+
AngleY = property(get_AngleY, put_AngleY)
|
|
3196
|
+
CenterX = property(get_CenterX, put_CenterX)
|
|
3197
|
+
CenterY = property(get_CenterY, put_CenterY)
|
|
3198
|
+
_SkewTransform_Meta_.AngleXProperty = property(get_AngleXProperty, None)
|
|
3199
|
+
_SkewTransform_Meta_.AngleYProperty = property(get_AngleYProperty, None)
|
|
3200
|
+
_SkewTransform_Meta_.CenterXProperty = property(get_CenterXProperty, None)
|
|
3201
|
+
_SkewTransform_Meta_.CenterYProperty = property(get_CenterYProperty, None)
|
|
3202
|
+
class _SolidColorBrush_Meta_(ComPtr.__class__):
|
|
3203
|
+
pass
|
|
3204
|
+
class SolidColorBrush(ComPtr, metaclass=_SolidColorBrush_Meta_):
|
|
3205
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Brush
|
|
3206
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ISolidColorBrush
|
|
3207
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.SolidColorBrush'
|
|
3208
|
+
def __init__(self, *args, **kwargs):
|
|
3209
|
+
if kwargs:
|
|
3210
|
+
super().__init__(**kwargs)
|
|
3211
|
+
elif len(args) == 0:
|
|
3212
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.SolidColorBrush.CreateInstance(*args))
|
|
3213
|
+
elif len(args) == 1:
|
|
3214
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.SolidColorBrush.CreateInstanceWithColor(*args))
|
|
3215
|
+
else:
|
|
3216
|
+
raise ValueError('no matched constructor')
|
|
3217
|
+
@winrt_activatemethod
|
|
3218
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.SolidColorBrush: ...
|
|
3219
|
+
@winrt_factorymethod
|
|
3220
|
+
def CreateInstanceWithColor(cls: win32more.Microsoft.UI.Xaml.Media.ISolidColorBrushFactory, color: win32more.Windows.UI.Color) -> win32more.Microsoft.UI.Xaml.Media.SolidColorBrush: ...
|
|
3221
|
+
@winrt_mixinmethod
|
|
3222
|
+
def get_Color(self: win32more.Microsoft.UI.Xaml.Media.ISolidColorBrush) -> win32more.Windows.UI.Color: ...
|
|
3223
|
+
@winrt_mixinmethod
|
|
3224
|
+
def put_Color(self: win32more.Microsoft.UI.Xaml.Media.ISolidColorBrush, value: win32more.Windows.UI.Color) -> Void: ...
|
|
3225
|
+
@winrt_classmethod
|
|
3226
|
+
def get_ColorProperty(cls: win32more.Microsoft.UI.Xaml.Media.ISolidColorBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3227
|
+
Color = property(get_Color, put_Color)
|
|
3228
|
+
_SolidColorBrush_Meta_.ColorProperty = property(get_ColorProperty, None)
|
|
3229
|
+
class Stretch(Enum, Int32):
|
|
3230
|
+
None_ = 0
|
|
3231
|
+
Fill = 1
|
|
3232
|
+
Uniform = 2
|
|
3233
|
+
UniformToFill = 3
|
|
3234
|
+
class StyleSimulations(Enum, Int32):
|
|
3235
|
+
None_ = 0
|
|
3236
|
+
BoldSimulation = 1
|
|
3237
|
+
ItalicSimulation = 2
|
|
3238
|
+
BoldItalicSimulation = 3
|
|
3239
|
+
class SweepDirection(Enum, Int32):
|
|
3240
|
+
Counterclockwise = 0
|
|
3241
|
+
Clockwise = 1
|
|
3242
|
+
class SystemBackdrop(ComPtr):
|
|
3243
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
3244
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ISystemBackdrop
|
|
3245
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.SystemBackdrop'
|
|
3246
|
+
def __init__(self, *args, **kwargs):
|
|
3247
|
+
if kwargs:
|
|
3248
|
+
super().__init__(**kwargs)
|
|
3249
|
+
elif len(args) == 0:
|
|
3250
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.SystemBackdrop.CreateInstance(*args, None, None))
|
|
3251
|
+
else:
|
|
3252
|
+
raise ValueError('no matched constructor')
|
|
3253
|
+
@winrt_factorymethod
|
|
3254
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.ISystemBackdropFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.SystemBackdrop: ...
|
|
3255
|
+
@winrt_mixinmethod
|
|
3256
|
+
def GetDefaultSystemBackdropConfiguration(self: win32more.Microsoft.UI.Xaml.Media.ISystemBackdrop, target: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> win32more.Microsoft.UI.Composition.SystemBackdrops.SystemBackdropConfiguration: ...
|
|
3257
|
+
@winrt_mixinmethod
|
|
3258
|
+
def OnTargetConnected(self: win32more.Microsoft.UI.Xaml.Media.ISystemBackdropOverrides, connectedTarget: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> Void: ...
|
|
3259
|
+
@winrt_mixinmethod
|
|
3260
|
+
def OnTargetDisconnected(self: win32more.Microsoft.UI.Xaml.Media.ISystemBackdropOverrides, disconnectedTarget: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop) -> Void: ...
|
|
3261
|
+
@winrt_mixinmethod
|
|
3262
|
+
def OnDefaultSystemBackdropConfigurationChanged(self: win32more.Microsoft.UI.Xaml.Media.ISystemBackdropOverrides, target: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> Void: ...
|
|
3263
|
+
class ThemeShadow(ComPtr):
|
|
3264
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Shadow
|
|
3265
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IThemeShadow
|
|
3266
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.ThemeShadow'
|
|
3267
|
+
def __init__(self, *args, **kwargs):
|
|
3268
|
+
if kwargs:
|
|
3269
|
+
super().__init__(**kwargs)
|
|
3270
|
+
elif len(args) == 0:
|
|
3271
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.ThemeShadow.CreateInstance(*args, None, None))
|
|
3272
|
+
else:
|
|
3273
|
+
raise ValueError('no matched constructor')
|
|
3274
|
+
@winrt_factorymethod
|
|
3275
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IThemeShadowFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.ThemeShadow: ...
|
|
3276
|
+
@winrt_mixinmethod
|
|
3277
|
+
def get_Receivers(self: win32more.Microsoft.UI.Xaml.Media.IThemeShadow) -> win32more.Microsoft.UI.Xaml.UIElementWeakCollection: ...
|
|
3278
|
+
Receivers = property(get_Receivers, None)
|
|
3279
|
+
class _TileBrush_Meta_(ComPtr.__class__):
|
|
3280
|
+
pass
|
|
3281
|
+
class TileBrush(ComPtr, metaclass=_TileBrush_Meta_):
|
|
3282
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Brush
|
|
3283
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ITileBrush
|
|
3284
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.TileBrush'
|
|
3285
|
+
def __init__(self, *args, **kwargs):
|
|
3286
|
+
if kwargs:
|
|
3287
|
+
super().__init__(**kwargs)
|
|
3288
|
+
elif len(args) == 0:
|
|
3289
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.TileBrush.CreateInstance(*args, None, None))
|
|
3290
|
+
else:
|
|
3291
|
+
raise ValueError('no matched constructor')
|
|
3292
|
+
@winrt_factorymethod
|
|
3293
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.ITileBrushFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.TileBrush: ...
|
|
3294
|
+
@winrt_mixinmethod
|
|
3295
|
+
def get_AlignmentX(self: win32more.Microsoft.UI.Xaml.Media.ITileBrush) -> win32more.Microsoft.UI.Xaml.Media.AlignmentX: ...
|
|
3296
|
+
@winrt_mixinmethod
|
|
3297
|
+
def put_AlignmentX(self: win32more.Microsoft.UI.Xaml.Media.ITileBrush, value: win32more.Microsoft.UI.Xaml.Media.AlignmentX) -> Void: ...
|
|
3298
|
+
@winrt_mixinmethod
|
|
3299
|
+
def get_AlignmentY(self: win32more.Microsoft.UI.Xaml.Media.ITileBrush) -> win32more.Microsoft.UI.Xaml.Media.AlignmentY: ...
|
|
3300
|
+
@winrt_mixinmethod
|
|
3301
|
+
def put_AlignmentY(self: win32more.Microsoft.UI.Xaml.Media.ITileBrush, value: win32more.Microsoft.UI.Xaml.Media.AlignmentY) -> Void: ...
|
|
3302
|
+
@winrt_mixinmethod
|
|
3303
|
+
def get_Stretch(self: win32more.Microsoft.UI.Xaml.Media.ITileBrush) -> win32more.Microsoft.UI.Xaml.Media.Stretch: ...
|
|
3304
|
+
@winrt_mixinmethod
|
|
3305
|
+
def put_Stretch(self: win32more.Microsoft.UI.Xaml.Media.ITileBrush, value: win32more.Microsoft.UI.Xaml.Media.Stretch) -> Void: ...
|
|
3306
|
+
@winrt_classmethod
|
|
3307
|
+
def get_AlignmentXProperty(cls: win32more.Microsoft.UI.Xaml.Media.ITileBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3308
|
+
@winrt_classmethod
|
|
3309
|
+
def get_AlignmentYProperty(cls: win32more.Microsoft.UI.Xaml.Media.ITileBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3310
|
+
@winrt_classmethod
|
|
3311
|
+
def get_StretchProperty(cls: win32more.Microsoft.UI.Xaml.Media.ITileBrushStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3312
|
+
AlignmentX = property(get_AlignmentX, put_AlignmentX)
|
|
3313
|
+
AlignmentY = property(get_AlignmentY, put_AlignmentY)
|
|
3314
|
+
Stretch = property(get_Stretch, put_Stretch)
|
|
3315
|
+
_TileBrush_Meta_.AlignmentXProperty = property(get_AlignmentXProperty, None)
|
|
3316
|
+
_TileBrush_Meta_.AlignmentYProperty = property(get_AlignmentYProperty, None)
|
|
3317
|
+
_TileBrush_Meta_.StretchProperty = property(get_StretchProperty, None)
|
|
3318
|
+
class Transform(ComPtr):
|
|
3319
|
+
extends: win32more.Microsoft.UI.Xaml.Media.GeneralTransform
|
|
3320
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ITransform
|
|
3321
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.Transform'
|
|
3322
|
+
class TransformCollection(ComPtr):
|
|
3323
|
+
extends: IInspectable
|
|
3324
|
+
implements: Tuple[SequenceProtocol[win32more.Microsoft.UI.Xaml.Media.Transform]]
|
|
3325
|
+
default_interface: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform]
|
|
3326
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.TransformCollection'
|
|
3327
|
+
def __init__(self, *args, **kwargs):
|
|
3328
|
+
if kwargs:
|
|
3329
|
+
super().__init__(**kwargs)
|
|
3330
|
+
elif len(args) == 0:
|
|
3331
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.TransformCollection.CreateInstance(*args))
|
|
3332
|
+
else:
|
|
3333
|
+
raise ValueError('no matched constructor')
|
|
3334
|
+
@winrt_activatemethod
|
|
3335
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.TransformCollection: ...
|
|
3336
|
+
@winrt_mixinmethod
|
|
3337
|
+
def GetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], index: UInt32) -> win32more.Microsoft.UI.Xaml.Media.Transform: ...
|
|
3338
|
+
@winrt_mixinmethod
|
|
3339
|
+
def get_Size(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform]) -> UInt32: ...
|
|
3340
|
+
@winrt_mixinmethod
|
|
3341
|
+
def GetView(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform]) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Media.Transform]: ...
|
|
3342
|
+
@winrt_mixinmethod
|
|
3343
|
+
def IndexOf(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], value: win32more.Microsoft.UI.Xaml.Media.Transform, index: POINTER(UInt32)) -> Boolean: ...
|
|
3344
|
+
@winrt_mixinmethod
|
|
3345
|
+
def SetAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
3346
|
+
@winrt_mixinmethod
|
|
3347
|
+
def InsertAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], index: UInt32, value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
3348
|
+
@winrt_mixinmethod
|
|
3349
|
+
def RemoveAt(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], index: UInt32) -> Void: ...
|
|
3350
|
+
@winrt_mixinmethod
|
|
3351
|
+
def Append(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], value: win32more.Microsoft.UI.Xaml.Media.Transform) -> Void: ...
|
|
3352
|
+
@winrt_mixinmethod
|
|
3353
|
+
def RemoveAtEnd(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform]) -> Void: ...
|
|
3354
|
+
@winrt_mixinmethod
|
|
3355
|
+
def Clear(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform]) -> Void: ...
|
|
3356
|
+
@winrt_mixinmethod
|
|
3357
|
+
def GetMany(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], startIndex: UInt32, items: FillArray[win32more.Microsoft.UI.Xaml.Media.Transform]) -> UInt32: ...
|
|
3358
|
+
@winrt_mixinmethod
|
|
3359
|
+
def ReplaceAll(self: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Xaml.Media.Transform], items: PassArray[win32more.Microsoft.UI.Xaml.Media.Transform]) -> Void: ...
|
|
3360
|
+
@winrt_mixinmethod
|
|
3361
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.Media.Transform]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Xaml.Media.Transform]: ...
|
|
3362
|
+
Size = property(get_Size, None)
|
|
3363
|
+
class _TransformGroup_Meta_(ComPtr.__class__):
|
|
3364
|
+
pass
|
|
3365
|
+
class TransformGroup(ComPtr, metaclass=_TransformGroup_Meta_):
|
|
3366
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Transform
|
|
3367
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ITransformGroup
|
|
3368
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.TransformGroup'
|
|
3369
|
+
def __init__(self, *args, **kwargs):
|
|
3370
|
+
if kwargs:
|
|
3371
|
+
super().__init__(**kwargs)
|
|
3372
|
+
elif len(args) == 0:
|
|
3373
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.TransformGroup.CreateInstance(*args))
|
|
3374
|
+
else:
|
|
3375
|
+
raise ValueError('no matched constructor')
|
|
3376
|
+
@winrt_activatemethod
|
|
3377
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.TransformGroup: ...
|
|
3378
|
+
@winrt_mixinmethod
|
|
3379
|
+
def get_Children(self: win32more.Microsoft.UI.Xaml.Media.ITransformGroup) -> win32more.Microsoft.UI.Xaml.Media.TransformCollection: ...
|
|
3380
|
+
@winrt_mixinmethod
|
|
3381
|
+
def put_Children(self: win32more.Microsoft.UI.Xaml.Media.ITransformGroup, value: win32more.Microsoft.UI.Xaml.Media.TransformCollection) -> Void: ...
|
|
3382
|
+
@winrt_mixinmethod
|
|
3383
|
+
def get_Value(self: win32more.Microsoft.UI.Xaml.Media.ITransformGroup) -> win32more.Microsoft.UI.Xaml.Media.Matrix: ...
|
|
3384
|
+
@winrt_classmethod
|
|
3385
|
+
def get_ChildrenProperty(cls: win32more.Microsoft.UI.Xaml.Media.ITransformGroupStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3386
|
+
Children = property(get_Children, put_Children)
|
|
3387
|
+
Value = property(get_Value, None)
|
|
3388
|
+
_TransformGroup_Meta_.ChildrenProperty = property(get_ChildrenProperty, None)
|
|
3389
|
+
class _TranslateTransform_Meta_(ComPtr.__class__):
|
|
3390
|
+
pass
|
|
3391
|
+
class TranslateTransform(ComPtr, metaclass=_TranslateTransform_Meta_):
|
|
3392
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Transform
|
|
3393
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.ITranslateTransform
|
|
3394
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.TranslateTransform'
|
|
3395
|
+
def __init__(self, *args, **kwargs):
|
|
3396
|
+
if kwargs:
|
|
3397
|
+
super().__init__(**kwargs)
|
|
3398
|
+
elif len(args) == 0:
|
|
3399
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.TranslateTransform.CreateInstance(*args))
|
|
3400
|
+
else:
|
|
3401
|
+
raise ValueError('no matched constructor')
|
|
3402
|
+
@winrt_activatemethod
|
|
3403
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Xaml.Media.TranslateTransform: ...
|
|
3404
|
+
@winrt_mixinmethod
|
|
3405
|
+
def get_X(self: win32more.Microsoft.UI.Xaml.Media.ITranslateTransform) -> Double: ...
|
|
3406
|
+
@winrt_mixinmethod
|
|
3407
|
+
def put_X(self: win32more.Microsoft.UI.Xaml.Media.ITranslateTransform, value: Double) -> Void: ...
|
|
3408
|
+
@winrt_mixinmethod
|
|
3409
|
+
def get_Y(self: win32more.Microsoft.UI.Xaml.Media.ITranslateTransform) -> Double: ...
|
|
3410
|
+
@winrt_mixinmethod
|
|
3411
|
+
def put_Y(self: win32more.Microsoft.UI.Xaml.Media.ITranslateTransform, value: Double) -> Void: ...
|
|
3412
|
+
@winrt_classmethod
|
|
3413
|
+
def get_XProperty(cls: win32more.Microsoft.UI.Xaml.Media.ITranslateTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3414
|
+
@winrt_classmethod
|
|
3415
|
+
def get_YProperty(cls: win32more.Microsoft.UI.Xaml.Media.ITranslateTransformStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3416
|
+
X = property(get_X, put_X)
|
|
3417
|
+
Y = property(get_Y, put_Y)
|
|
3418
|
+
_TranslateTransform_Meta_.XProperty = property(get_XProperty, None)
|
|
3419
|
+
_TranslateTransform_Meta_.YProperty = property(get_YProperty, None)
|
|
3420
|
+
class VisualTreeHelper(ComPtr):
|
|
3421
|
+
extends: IInspectable
|
|
3422
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelper
|
|
3423
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.VisualTreeHelper'
|
|
3424
|
+
@winrt_classmethod
|
|
3425
|
+
def FindElementsInHostCoordinatesPoint(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, intersectingPoint: win32more.Windows.Foundation.Point, subtree: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
3426
|
+
@winrt_classmethod
|
|
3427
|
+
def FindElementsInHostCoordinatesRect(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, intersectingRect: win32more.Windows.Foundation.Rect, subtree: win32more.Microsoft.UI.Xaml.UIElement) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
3428
|
+
@winrt_classmethod
|
|
3429
|
+
def FindAllElementsInHostCoordinatesPoint(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, intersectingPoint: win32more.Windows.Foundation.Point, subtree: win32more.Microsoft.UI.Xaml.UIElement, includeAllElements: Boolean) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
3430
|
+
@winrt_classmethod
|
|
3431
|
+
def FindAllElementsInHostCoordinatesRect(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, intersectingRect: win32more.Windows.Foundation.Rect, subtree: win32more.Microsoft.UI.Xaml.UIElement, includeAllElements: Boolean) -> win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Xaml.UIElement]: ...
|
|
3432
|
+
@winrt_classmethod
|
|
3433
|
+
def GetChild(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, reference: win32more.Microsoft.UI.Xaml.DependencyObject, childIndex: Int32) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3434
|
+
@winrt_classmethod
|
|
3435
|
+
def GetChildrenCount(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, reference: win32more.Microsoft.UI.Xaml.DependencyObject) -> Int32: ...
|
|
3436
|
+
@winrt_classmethod
|
|
3437
|
+
def GetParent(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, reference: win32more.Microsoft.UI.Xaml.DependencyObject) -> win32more.Microsoft.UI.Xaml.DependencyObject: ...
|
|
3438
|
+
@winrt_classmethod
|
|
3439
|
+
def DisconnectChildrenRecursive(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, element: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
3440
|
+
@winrt_classmethod
|
|
3441
|
+
def GetOpenPopups(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, window: win32more.Microsoft.UI.Xaml.Window) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Controls.Primitives.Popup]: ...
|
|
3442
|
+
@winrt_classmethod
|
|
3443
|
+
def GetOpenPopupsForXamlRoot(cls: win32more.Microsoft.UI.Xaml.Media.IVisualTreeHelperStatics, xamlRoot: win32more.Microsoft.UI.Xaml.XamlRoot) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Xaml.Controls.Primitives.Popup]: ...
|
|
3444
|
+
class _XamlCompositionBrushBase_Meta_(ComPtr.__class__):
|
|
3445
|
+
pass
|
|
3446
|
+
class XamlCompositionBrushBase(ComPtr, metaclass=_XamlCompositionBrushBase_Meta_):
|
|
3447
|
+
extends: win32more.Microsoft.UI.Xaml.Media.Brush
|
|
3448
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBase
|
|
3449
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.XamlCompositionBrushBase'
|
|
3450
|
+
def __init__(self, *args, **kwargs):
|
|
3451
|
+
if kwargs:
|
|
3452
|
+
super().__init__(**kwargs)
|
|
3453
|
+
elif len(args) == 0:
|
|
3454
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.XamlCompositionBrushBase.CreateInstance(*args, None, None))
|
|
3455
|
+
else:
|
|
3456
|
+
raise ValueError('no matched constructor')
|
|
3457
|
+
@winrt_factorymethod
|
|
3458
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.XamlCompositionBrushBase: ...
|
|
3459
|
+
@winrt_mixinmethod
|
|
3460
|
+
def get_FallbackColor(self: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBase) -> win32more.Windows.UI.Color: ...
|
|
3461
|
+
@winrt_mixinmethod
|
|
3462
|
+
def put_FallbackColor(self: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBase, value: win32more.Windows.UI.Color) -> Void: ...
|
|
3463
|
+
@winrt_mixinmethod
|
|
3464
|
+
def get_CompositionBrush(self: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseProtected) -> win32more.Microsoft.UI.Composition.CompositionBrush: ...
|
|
3465
|
+
@winrt_mixinmethod
|
|
3466
|
+
def put_CompositionBrush(self: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseProtected, value: win32more.Microsoft.UI.Composition.CompositionBrush) -> Void: ...
|
|
3467
|
+
@winrt_mixinmethod
|
|
3468
|
+
def OnConnected(self: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseOverrides) -> Void: ...
|
|
3469
|
+
@winrt_mixinmethod
|
|
3470
|
+
def OnDisconnected(self: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseOverrides) -> Void: ...
|
|
3471
|
+
@winrt_classmethod
|
|
3472
|
+
def get_FallbackColorProperty(cls: win32more.Microsoft.UI.Xaml.Media.IXamlCompositionBrushBaseStatics) -> win32more.Microsoft.UI.Xaml.DependencyProperty: ...
|
|
3473
|
+
CompositionBrush = property(get_CompositionBrush, put_CompositionBrush)
|
|
3474
|
+
FallbackColor = property(get_FallbackColor, put_FallbackColor)
|
|
3475
|
+
_XamlCompositionBrushBase_Meta_.FallbackColorProperty = property(get_FallbackColorProperty, None)
|
|
3476
|
+
class XamlLight(ComPtr):
|
|
3477
|
+
extends: win32more.Microsoft.UI.Xaml.DependencyObject
|
|
3478
|
+
default_interface: win32more.Microsoft.UI.Xaml.Media.IXamlLight
|
|
3479
|
+
_classid_ = 'Microsoft.UI.Xaml.Media.XamlLight'
|
|
3480
|
+
def __init__(self, *args, **kwargs):
|
|
3481
|
+
if kwargs:
|
|
3482
|
+
super().__init__(**kwargs)
|
|
3483
|
+
elif len(args) == 0:
|
|
3484
|
+
super().__init__(move=win32more.Microsoft.UI.Xaml.Media.XamlLight.CreateInstance(*args, None, None))
|
|
3485
|
+
else:
|
|
3486
|
+
raise ValueError('no matched constructor')
|
|
3487
|
+
@winrt_factorymethod
|
|
3488
|
+
def CreateInstance(cls: win32more.Microsoft.UI.Xaml.Media.IXamlLightFactory, baseInterface: IInspectable, innerInterface: POINTER(IInspectable)) -> win32more.Microsoft.UI.Xaml.Media.XamlLight: ...
|
|
3489
|
+
@winrt_mixinmethod
|
|
3490
|
+
def get_CompositionLight(self: win32more.Microsoft.UI.Xaml.Media.IXamlLightProtected) -> win32more.Microsoft.UI.Composition.CompositionLight: ...
|
|
3491
|
+
@winrt_mixinmethod
|
|
3492
|
+
def put_CompositionLight(self: win32more.Microsoft.UI.Xaml.Media.IXamlLightProtected, value: win32more.Microsoft.UI.Composition.CompositionLight) -> Void: ...
|
|
3493
|
+
@winrt_mixinmethod
|
|
3494
|
+
def GetId(self: win32more.Microsoft.UI.Xaml.Media.IXamlLightOverrides) -> WinRT_String: ...
|
|
3495
|
+
@winrt_mixinmethod
|
|
3496
|
+
def OnConnected(self: win32more.Microsoft.UI.Xaml.Media.IXamlLightOverrides, newElement: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
3497
|
+
@winrt_mixinmethod
|
|
3498
|
+
def OnDisconnected(self: win32more.Microsoft.UI.Xaml.Media.IXamlLightOverrides, oldElement: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
3499
|
+
@winrt_classmethod
|
|
3500
|
+
def AddTargetElement(cls: win32more.Microsoft.UI.Xaml.Media.IXamlLightStatics, lightId: WinRT_String, element: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
3501
|
+
@winrt_classmethod
|
|
3502
|
+
def RemoveTargetElement(cls: win32more.Microsoft.UI.Xaml.Media.IXamlLightStatics, lightId: WinRT_String, element: win32more.Microsoft.UI.Xaml.UIElement) -> Void: ...
|
|
3503
|
+
@winrt_classmethod
|
|
3504
|
+
def AddTargetBrush(cls: win32more.Microsoft.UI.Xaml.Media.IXamlLightStatics, lightId: WinRT_String, brush: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
3505
|
+
@winrt_classmethod
|
|
3506
|
+
def RemoveTargetBrush(cls: win32more.Microsoft.UI.Xaml.Media.IXamlLightStatics, lightId: WinRT_String, brush: win32more.Microsoft.UI.Xaml.Media.Brush) -> Void: ...
|
|
3507
|
+
CompositionLight = property(get_CompositionLight, put_CompositionLight)
|
|
3508
|
+
|
|
3509
|
+
|
|
3510
|
+
make_ready(__name__)
|