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,951 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI.Composition
|
|
4
|
+
import win32more.Microsoft.UI.Composition.Interactions
|
|
5
|
+
import win32more.Microsoft.UI.Input
|
|
6
|
+
import win32more.Windows.Foundation
|
|
7
|
+
import win32more.Windows.Foundation.Collections
|
|
8
|
+
import win32more.Windows.Foundation.Numerics
|
|
9
|
+
class CompositionConditionalValue(ComPtr):
|
|
10
|
+
extends: win32more.Microsoft.UI.Composition.CompositionObject
|
|
11
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.ICompositionConditionalValue
|
|
12
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.CompositionConditionalValue'
|
|
13
|
+
@winrt_mixinmethod
|
|
14
|
+
def put_Condition(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionConditionalValue, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
15
|
+
@winrt_mixinmethod
|
|
16
|
+
def put_Value(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionConditionalValue, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
17
|
+
@winrt_mixinmethod
|
|
18
|
+
def get_Condition(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionConditionalValue) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
19
|
+
@winrt_mixinmethod
|
|
20
|
+
def get_Value(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionConditionalValue) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
21
|
+
@winrt_classmethod
|
|
22
|
+
def Create(cls: win32more.Microsoft.UI.Composition.Interactions.ICompositionConditionalValueStatics, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue: ...
|
|
23
|
+
Condition = property(get_Condition, put_Condition)
|
|
24
|
+
Value = property(get_Value, put_Value)
|
|
25
|
+
class CompositionInteractionSourceCollection(ComPtr):
|
|
26
|
+
extends: win32more.Microsoft.UI.Composition.CompositionObject
|
|
27
|
+
implements: Tuple[IterableProtocol[win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSource]]
|
|
28
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSourceCollection
|
|
29
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.CompositionInteractionSourceCollection'
|
|
30
|
+
@winrt_mixinmethod
|
|
31
|
+
def get_Count(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSourceCollection) -> Int32: ...
|
|
32
|
+
@winrt_mixinmethod
|
|
33
|
+
def First(self: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSource]) -> win32more.Windows.Foundation.Collections.IIterator[win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSource]: ...
|
|
34
|
+
@winrt_mixinmethod
|
|
35
|
+
def Add(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSourceCollection, value: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSource) -> Void: ...
|
|
36
|
+
@winrt_mixinmethod
|
|
37
|
+
def Remove(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSourceCollection, value: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSource) -> Void: ...
|
|
38
|
+
@winrt_mixinmethod
|
|
39
|
+
def RemoveAll(self: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSourceCollection) -> Void: ...
|
|
40
|
+
Count = property(get_Count, None)
|
|
41
|
+
class ICompositionConditionalValue(ComPtr):
|
|
42
|
+
extends: IInspectable
|
|
43
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.ICompositionConditionalValue'
|
|
44
|
+
_iid_ = Guid('{3743dda0-fbe2-5ecf-9e80-4638a011f707}')
|
|
45
|
+
@winrt_commethod(6)
|
|
46
|
+
def get_Condition(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
47
|
+
@winrt_commethod(7)
|
|
48
|
+
def put_Condition(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
49
|
+
@winrt_commethod(8)
|
|
50
|
+
def get_Value(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
51
|
+
@winrt_commethod(9)
|
|
52
|
+
def put_Value(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
53
|
+
Condition = property(get_Condition, put_Condition)
|
|
54
|
+
Value = property(get_Value, put_Value)
|
|
55
|
+
class ICompositionConditionalValueStatics(ComPtr):
|
|
56
|
+
extends: IInspectable
|
|
57
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.ICompositionConditionalValueStatics'
|
|
58
|
+
_iid_ = Guid('{df133c1f-a185-536c-b54b-8f369212a581}')
|
|
59
|
+
@winrt_commethod(6)
|
|
60
|
+
def Create(self, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue: ...
|
|
61
|
+
class ICompositionInteractionSource(ComPtr):
|
|
62
|
+
extends: IInspectable
|
|
63
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.ICompositionInteractionSource'
|
|
64
|
+
_iid_ = Guid('{711c72c0-c406-4a12-859b-b44f651af046}')
|
|
65
|
+
class ICompositionInteractionSourceCollection(ComPtr):
|
|
66
|
+
extends: IInspectable
|
|
67
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.ICompositionInteractionSourceCollection'
|
|
68
|
+
_iid_ = Guid('{9aa1b86b-b002-5e2e-bb2b-0e2c547445e1}')
|
|
69
|
+
@winrt_commethod(6)
|
|
70
|
+
def get_Count(self) -> Int32: ...
|
|
71
|
+
@winrt_commethod(7)
|
|
72
|
+
def Add(self, value: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSource) -> Void: ...
|
|
73
|
+
@winrt_commethod(8)
|
|
74
|
+
def Remove(self, value: win32more.Microsoft.UI.Composition.Interactions.ICompositionInteractionSource) -> Void: ...
|
|
75
|
+
@winrt_commethod(9)
|
|
76
|
+
def RemoveAll(self) -> Void: ...
|
|
77
|
+
Count = property(get_Count, None)
|
|
78
|
+
class IInteractionSourceConfiguration(ComPtr):
|
|
79
|
+
extends: IInspectable
|
|
80
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration'
|
|
81
|
+
_iid_ = Guid('{099e0124-dadf-5bc6-a895-90387657550f}')
|
|
82
|
+
@winrt_commethod(6)
|
|
83
|
+
def get_PositionXSourceMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode: ...
|
|
84
|
+
@winrt_commethod(7)
|
|
85
|
+
def put_PositionXSourceMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode) -> Void: ...
|
|
86
|
+
@winrt_commethod(8)
|
|
87
|
+
def get_PositionYSourceMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode: ...
|
|
88
|
+
@winrt_commethod(9)
|
|
89
|
+
def put_PositionYSourceMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode) -> Void: ...
|
|
90
|
+
@winrt_commethod(10)
|
|
91
|
+
def get_ScaleSourceMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode: ...
|
|
92
|
+
@winrt_commethod(11)
|
|
93
|
+
def put_ScaleSourceMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode) -> Void: ...
|
|
94
|
+
PositionXSourceMode = property(get_PositionXSourceMode, put_PositionXSourceMode)
|
|
95
|
+
PositionYSourceMode = property(get_PositionYSourceMode, put_PositionYSourceMode)
|
|
96
|
+
ScaleSourceMode = property(get_ScaleSourceMode, put_ScaleSourceMode)
|
|
97
|
+
class IInteractionTracker(ComPtr):
|
|
98
|
+
extends: IInspectable
|
|
99
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTracker'
|
|
100
|
+
_iid_ = Guid('{02d8ec1f-8f04-505e-bd1e-47b2a204de51}')
|
|
101
|
+
@winrt_commethod(6)
|
|
102
|
+
def get_InteractionSources(self) -> win32more.Microsoft.UI.Composition.Interactions.CompositionInteractionSourceCollection: ...
|
|
103
|
+
@winrt_commethod(7)
|
|
104
|
+
def get_IsPositionRoundingSuggested(self) -> Boolean: ...
|
|
105
|
+
@winrt_commethod(8)
|
|
106
|
+
def get_MaxPosition(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
107
|
+
@winrt_commethod(9)
|
|
108
|
+
def put_MaxPosition(self, value: win32more.Windows.Foundation.Numerics.Vector3) -> Void: ...
|
|
109
|
+
@winrt_commethod(10)
|
|
110
|
+
def get_MaxScale(self) -> Single: ...
|
|
111
|
+
@winrt_commethod(11)
|
|
112
|
+
def put_MaxScale(self, value: Single) -> Void: ...
|
|
113
|
+
@winrt_commethod(12)
|
|
114
|
+
def get_MinPosition(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
115
|
+
@winrt_commethod(13)
|
|
116
|
+
def put_MinPosition(self, value: win32more.Windows.Foundation.Numerics.Vector3) -> Void: ...
|
|
117
|
+
@winrt_commethod(14)
|
|
118
|
+
def get_MinScale(self) -> Single: ...
|
|
119
|
+
@winrt_commethod(15)
|
|
120
|
+
def put_MinScale(self, value: Single) -> Void: ...
|
|
121
|
+
@winrt_commethod(16)
|
|
122
|
+
def get_NaturalRestingPosition(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
123
|
+
@winrt_commethod(17)
|
|
124
|
+
def get_NaturalRestingScale(self) -> Single: ...
|
|
125
|
+
@winrt_commethod(18)
|
|
126
|
+
def get_Owner(self) -> win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerOwner: ...
|
|
127
|
+
@winrt_commethod(19)
|
|
128
|
+
def get_Position(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
129
|
+
@winrt_commethod(20)
|
|
130
|
+
def get_PositionInertiaDecayRate(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Numerics.Vector3]: ...
|
|
131
|
+
@winrt_commethod(21)
|
|
132
|
+
def put_PositionInertiaDecayRate(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Numerics.Vector3]) -> Void: ...
|
|
133
|
+
@winrt_commethod(22)
|
|
134
|
+
def get_PositionVelocityInPixelsPerSecond(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
135
|
+
@winrt_commethod(23)
|
|
136
|
+
def get_Scale(self) -> Single: ...
|
|
137
|
+
@winrt_commethod(24)
|
|
138
|
+
def get_ScaleInertiaDecayRate(self) -> win32more.Windows.Foundation.IReference[Single]: ...
|
|
139
|
+
@winrt_commethod(25)
|
|
140
|
+
def put_ScaleInertiaDecayRate(self, value: win32more.Windows.Foundation.IReference[Single]) -> Void: ...
|
|
141
|
+
@winrt_commethod(26)
|
|
142
|
+
def get_ScaleVelocityInPercentPerSecond(self) -> Single: ...
|
|
143
|
+
@winrt_commethod(27)
|
|
144
|
+
def AdjustPositionXIfGreaterThanThreshold(self, adjustment: Single, positionThreshold: Single) -> Void: ...
|
|
145
|
+
@winrt_commethod(28)
|
|
146
|
+
def AdjustPositionYIfGreaterThanThreshold(self, adjustment: Single, positionThreshold: Single) -> Void: ...
|
|
147
|
+
@winrt_commethod(29)
|
|
148
|
+
def ConfigurePositionXInertiaModifiers(self, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier]) -> Void: ...
|
|
149
|
+
@winrt_commethod(30)
|
|
150
|
+
def ConfigurePositionYInertiaModifiers(self, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier]) -> Void: ...
|
|
151
|
+
@winrt_commethod(31)
|
|
152
|
+
def ConfigureScaleInertiaModifiers(self, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier]) -> Void: ...
|
|
153
|
+
@winrt_commethod(32)
|
|
154
|
+
def TryUpdatePosition(self, value: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
155
|
+
@winrt_commethod(33)
|
|
156
|
+
def TryUpdatePositionBy(self, amount: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
157
|
+
@winrt_commethod(34)
|
|
158
|
+
def TryUpdatePositionWithAnimation(self, animation: win32more.Microsoft.UI.Composition.CompositionAnimation) -> Int32: ...
|
|
159
|
+
@winrt_commethod(35)
|
|
160
|
+
def TryUpdatePositionWithAdditionalVelocity(self, velocityInPixelsPerSecond: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
161
|
+
@winrt_commethod(36)
|
|
162
|
+
def TryUpdateScale(self, value: Single, centerPoint: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
163
|
+
@winrt_commethod(37)
|
|
164
|
+
def TryUpdateScaleWithAnimation(self, animation: win32more.Microsoft.UI.Composition.CompositionAnimation, centerPoint: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
165
|
+
@winrt_commethod(38)
|
|
166
|
+
def TryUpdateScaleWithAdditionalVelocity(self, velocityInPercentPerSecond: Single, centerPoint: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
167
|
+
InteractionSources = property(get_InteractionSources, None)
|
|
168
|
+
IsPositionRoundingSuggested = property(get_IsPositionRoundingSuggested, None)
|
|
169
|
+
MaxPosition = property(get_MaxPosition, put_MaxPosition)
|
|
170
|
+
MaxScale = property(get_MaxScale, put_MaxScale)
|
|
171
|
+
MinPosition = property(get_MinPosition, put_MinPosition)
|
|
172
|
+
MinScale = property(get_MinScale, put_MinScale)
|
|
173
|
+
NaturalRestingPosition = property(get_NaturalRestingPosition, None)
|
|
174
|
+
NaturalRestingScale = property(get_NaturalRestingScale, None)
|
|
175
|
+
Owner = property(get_Owner, None)
|
|
176
|
+
Position = property(get_Position, None)
|
|
177
|
+
PositionInertiaDecayRate = property(get_PositionInertiaDecayRate, put_PositionInertiaDecayRate)
|
|
178
|
+
PositionVelocityInPixelsPerSecond = property(get_PositionVelocityInPixelsPerSecond, None)
|
|
179
|
+
Scale = property(get_Scale, None)
|
|
180
|
+
ScaleInertiaDecayRate = property(get_ScaleInertiaDecayRate, put_ScaleInertiaDecayRate)
|
|
181
|
+
ScaleVelocityInPercentPerSecond = property(get_ScaleVelocityInPercentPerSecond, None)
|
|
182
|
+
class IInteractionTracker2(ComPtr):
|
|
183
|
+
extends: IInspectable
|
|
184
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTracker2'
|
|
185
|
+
_iid_ = Guid('{396d7fb1-2fad-5508-8591-4ff0dc5a7484}')
|
|
186
|
+
@winrt_commethod(6)
|
|
187
|
+
def ConfigureCenterPointXInertiaModifiers(self, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
188
|
+
@winrt_commethod(7)
|
|
189
|
+
def ConfigureCenterPointYInertiaModifiers(self, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
190
|
+
class IInteractionTracker3(ComPtr):
|
|
191
|
+
extends: IInspectable
|
|
192
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTracker3'
|
|
193
|
+
_iid_ = Guid('{239752cf-266c-5acb-acc3-b3e3ecaf4d3f}')
|
|
194
|
+
@winrt_commethod(6)
|
|
195
|
+
def ConfigureVector2PositionInertiaModifiers(self, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerVector2InertiaModifier]) -> Void: ...
|
|
196
|
+
class IInteractionTracker4(ComPtr):
|
|
197
|
+
extends: IInspectable
|
|
198
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTracker4'
|
|
199
|
+
_iid_ = Guid('{a9a9ce02-53c9-5690-a575-f340b7c2fdf2}')
|
|
200
|
+
@winrt_commethod(6)
|
|
201
|
+
def TryUpdatePositionWithOption(self, value: win32more.Windows.Foundation.Numerics.Vector3, option: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerClampingOption) -> Int32: ...
|
|
202
|
+
@winrt_commethod(7)
|
|
203
|
+
def TryUpdatePositionByWithOption(self, amount: win32more.Windows.Foundation.Numerics.Vector3, option: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerClampingOption) -> Int32: ...
|
|
204
|
+
@winrt_commethod(8)
|
|
205
|
+
def get_IsInertiaFromImpulse(self) -> Boolean: ...
|
|
206
|
+
IsInertiaFromImpulse = property(get_IsInertiaFromImpulse, None)
|
|
207
|
+
class IInteractionTracker5(ComPtr):
|
|
208
|
+
extends: IInspectable
|
|
209
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTracker5'
|
|
210
|
+
_iid_ = Guid('{dbfcd333-c3bf-5057-a45e-25edf06ebd8f}')
|
|
211
|
+
@winrt_commethod(6)
|
|
212
|
+
def TryUpdatePositionWithOption(self, value: win32more.Windows.Foundation.Numerics.Vector3, option: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerClampingOption, posUpdateOption: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerPositionUpdateOption) -> Int32: ...
|
|
213
|
+
class IInteractionTrackerCustomAnimationStateEnteredArgs(ComPtr):
|
|
214
|
+
extends: IInspectable
|
|
215
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerCustomAnimationStateEnteredArgs'
|
|
216
|
+
_iid_ = Guid('{7464035c-cfce-56da-9472-420f276bd0a5}')
|
|
217
|
+
@winrt_commethod(6)
|
|
218
|
+
def get_RequestId(self) -> Int32: ...
|
|
219
|
+
RequestId = property(get_RequestId, None)
|
|
220
|
+
class IInteractionTrackerCustomAnimationStateEnteredArgs2(ComPtr):
|
|
221
|
+
extends: IInspectable
|
|
222
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerCustomAnimationStateEnteredArgs2'
|
|
223
|
+
_iid_ = Guid('{06b99fbc-d6a8-5ae3-88b8-e91621becbd6}')
|
|
224
|
+
@winrt_commethod(6)
|
|
225
|
+
def get_IsFromBinding(self) -> Boolean: ...
|
|
226
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
227
|
+
class IInteractionTrackerIdleStateEnteredArgs(ComPtr):
|
|
228
|
+
extends: IInspectable
|
|
229
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerIdleStateEnteredArgs'
|
|
230
|
+
_iid_ = Guid('{199094ab-15fd-539c-97b8-964a8196f777}')
|
|
231
|
+
@winrt_commethod(6)
|
|
232
|
+
def get_RequestId(self) -> Int32: ...
|
|
233
|
+
RequestId = property(get_RequestId, None)
|
|
234
|
+
class IInteractionTrackerIdleStateEnteredArgs2(ComPtr):
|
|
235
|
+
extends: IInspectable
|
|
236
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerIdleStateEnteredArgs2'
|
|
237
|
+
_iid_ = Guid('{4eb213c0-931c-5164-8965-11c0186d3390}')
|
|
238
|
+
@winrt_commethod(6)
|
|
239
|
+
def get_IsFromBinding(self) -> Boolean: ...
|
|
240
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
241
|
+
class IInteractionTrackerInertiaModifier(ComPtr):
|
|
242
|
+
extends: IInspectable
|
|
243
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaModifier'
|
|
244
|
+
_iid_ = Guid('{4d3a0c6b-c508-5029-a47a-cbf64636f010}')
|
|
245
|
+
class IInteractionTrackerInertiaModifierFactory(ComPtr):
|
|
246
|
+
extends: IInspectable
|
|
247
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaModifierFactory'
|
|
248
|
+
_iid_ = Guid('{6dee5b33-0b5a-57b1-8537-93d4fd038f9f}')
|
|
249
|
+
class IInteractionTrackerInertiaMotion(ComPtr):
|
|
250
|
+
extends: IInspectable
|
|
251
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotion'
|
|
252
|
+
_iid_ = Guid('{91f662c0-3141-5b5e-862f-cfc60bee8cd6}')
|
|
253
|
+
@winrt_commethod(6)
|
|
254
|
+
def get_Condition(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
255
|
+
@winrt_commethod(7)
|
|
256
|
+
def put_Condition(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
257
|
+
@winrt_commethod(8)
|
|
258
|
+
def get_Motion(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
259
|
+
@winrt_commethod(9)
|
|
260
|
+
def put_Motion(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
261
|
+
Condition = property(get_Condition, put_Condition)
|
|
262
|
+
Motion = property(get_Motion, put_Motion)
|
|
263
|
+
class IInteractionTrackerInertiaMotionStatics(ComPtr):
|
|
264
|
+
extends: IInspectable
|
|
265
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotionStatics'
|
|
266
|
+
_iid_ = Guid('{b0185a4f-0059-52c6-a660-9aed0c44ff7d}')
|
|
267
|
+
@winrt_commethod(6)
|
|
268
|
+
def Create(self, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaMotion: ...
|
|
269
|
+
class IInteractionTrackerInertiaNaturalMotion(ComPtr):
|
|
270
|
+
extends: IInspectable
|
|
271
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotion'
|
|
272
|
+
_iid_ = Guid('{8c7482e0-185d-56b1-b67f-fca4fcd13cd2}')
|
|
273
|
+
@winrt_commethod(6)
|
|
274
|
+
def get_Condition(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
275
|
+
@winrt_commethod(7)
|
|
276
|
+
def put_Condition(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
277
|
+
@winrt_commethod(8)
|
|
278
|
+
def get_NaturalMotion(self) -> win32more.Microsoft.UI.Composition.ScalarNaturalMotionAnimation: ...
|
|
279
|
+
@winrt_commethod(9)
|
|
280
|
+
def put_NaturalMotion(self, value: win32more.Microsoft.UI.Composition.ScalarNaturalMotionAnimation) -> Void: ...
|
|
281
|
+
Condition = property(get_Condition, put_Condition)
|
|
282
|
+
NaturalMotion = property(get_NaturalMotion, put_NaturalMotion)
|
|
283
|
+
class IInteractionTrackerInertiaNaturalMotionStatics(ComPtr):
|
|
284
|
+
extends: IInspectable
|
|
285
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotionStatics'
|
|
286
|
+
_iid_ = Guid('{860ec143-f165-5298-abf2-47369dd07f10}')
|
|
287
|
+
@winrt_commethod(6)
|
|
288
|
+
def Create(self, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaNaturalMotion: ...
|
|
289
|
+
class IInteractionTrackerInertiaRestingValue(ComPtr):
|
|
290
|
+
extends: IInspectable
|
|
291
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValue'
|
|
292
|
+
_iid_ = Guid('{1a2b20cd-3371-53ff-a560-f4847b467d73}')
|
|
293
|
+
@winrt_commethod(6)
|
|
294
|
+
def get_Condition(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
295
|
+
@winrt_commethod(7)
|
|
296
|
+
def put_Condition(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
297
|
+
@winrt_commethod(8)
|
|
298
|
+
def get_RestingValue(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
299
|
+
@winrt_commethod(9)
|
|
300
|
+
def put_RestingValue(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
301
|
+
Condition = property(get_Condition, put_Condition)
|
|
302
|
+
RestingValue = property(get_RestingValue, put_RestingValue)
|
|
303
|
+
class IInteractionTrackerInertiaRestingValueStatics(ComPtr):
|
|
304
|
+
extends: IInspectable
|
|
305
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValueStatics'
|
|
306
|
+
_iid_ = Guid('{cf0f0414-7fdf-5284-aeef-28b71b62aa4f}')
|
|
307
|
+
@winrt_commethod(6)
|
|
308
|
+
def Create(self, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaRestingValue: ...
|
|
309
|
+
class IInteractionTrackerInertiaStateEnteredArgs(ComPtr):
|
|
310
|
+
extends: IInspectable
|
|
311
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs'
|
|
312
|
+
_iid_ = Guid('{5b76c949-a4d0-5c9d-9292-7013ae9656c7}')
|
|
313
|
+
@winrt_commethod(6)
|
|
314
|
+
def get_ModifiedRestingPosition(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Numerics.Vector3]: ...
|
|
315
|
+
@winrt_commethod(7)
|
|
316
|
+
def get_ModifiedRestingScale(self) -> win32more.Windows.Foundation.IReference[Single]: ...
|
|
317
|
+
@winrt_commethod(8)
|
|
318
|
+
def get_NaturalRestingPosition(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
319
|
+
@winrt_commethod(9)
|
|
320
|
+
def get_NaturalRestingScale(self) -> Single: ...
|
|
321
|
+
@winrt_commethod(10)
|
|
322
|
+
def get_PositionVelocityInPixelsPerSecond(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
323
|
+
@winrt_commethod(11)
|
|
324
|
+
def get_RequestId(self) -> Int32: ...
|
|
325
|
+
@winrt_commethod(12)
|
|
326
|
+
def get_ScaleVelocityInPercentPerSecond(self) -> Single: ...
|
|
327
|
+
ModifiedRestingPosition = property(get_ModifiedRestingPosition, None)
|
|
328
|
+
ModifiedRestingScale = property(get_ModifiedRestingScale, None)
|
|
329
|
+
NaturalRestingPosition = property(get_NaturalRestingPosition, None)
|
|
330
|
+
NaturalRestingScale = property(get_NaturalRestingScale, None)
|
|
331
|
+
PositionVelocityInPixelsPerSecond = property(get_PositionVelocityInPixelsPerSecond, None)
|
|
332
|
+
RequestId = property(get_RequestId, None)
|
|
333
|
+
ScaleVelocityInPercentPerSecond = property(get_ScaleVelocityInPercentPerSecond, None)
|
|
334
|
+
class IInteractionTrackerInertiaStateEnteredArgs2(ComPtr):
|
|
335
|
+
extends: IInspectable
|
|
336
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs2'
|
|
337
|
+
_iid_ = Guid('{c42d7e8f-7199-57a9-8aec-8727552b13e6}')
|
|
338
|
+
@winrt_commethod(6)
|
|
339
|
+
def get_IsInertiaFromImpulse(self) -> Boolean: ...
|
|
340
|
+
IsInertiaFromImpulse = property(get_IsInertiaFromImpulse, None)
|
|
341
|
+
class IInteractionTrackerInertiaStateEnteredArgs3(ComPtr):
|
|
342
|
+
extends: IInspectable
|
|
343
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs3'
|
|
344
|
+
_iid_ = Guid('{ce726ca0-1c04-531b-9951-4aec996952e4}')
|
|
345
|
+
@winrt_commethod(6)
|
|
346
|
+
def get_IsFromBinding(self) -> Boolean: ...
|
|
347
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
348
|
+
class IInteractionTrackerInteractingStateEnteredArgs(ComPtr):
|
|
349
|
+
extends: IInspectable
|
|
350
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInteractingStateEnteredArgs'
|
|
351
|
+
_iid_ = Guid('{70d29b84-0931-5f17-a8a1-82f8f8782532}')
|
|
352
|
+
@winrt_commethod(6)
|
|
353
|
+
def get_RequestId(self) -> Int32: ...
|
|
354
|
+
RequestId = property(get_RequestId, None)
|
|
355
|
+
class IInteractionTrackerInteractingStateEnteredArgs2(ComPtr):
|
|
356
|
+
extends: IInspectable
|
|
357
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerInteractingStateEnteredArgs2'
|
|
358
|
+
_iid_ = Guid('{2f1ff38d-2f51-5ceb-8d09-bda1519f9342}')
|
|
359
|
+
@winrt_commethod(6)
|
|
360
|
+
def get_IsFromBinding(self) -> Boolean: ...
|
|
361
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
362
|
+
class IInteractionTrackerOwner(ComPtr):
|
|
363
|
+
extends: IInspectable
|
|
364
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerOwner'
|
|
365
|
+
_iid_ = Guid('{8869779d-1d2a-5816-836a-68a910507d87}')
|
|
366
|
+
@winrt_commethod(6)
|
|
367
|
+
def CustomAnimationStateEntered(self, sender: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, args: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerCustomAnimationStateEnteredArgs) -> Void: ...
|
|
368
|
+
@winrt_commethod(7)
|
|
369
|
+
def IdleStateEntered(self, sender: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, args: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerIdleStateEnteredArgs) -> Void: ...
|
|
370
|
+
@winrt_commethod(8)
|
|
371
|
+
def InertiaStateEntered(self, sender: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, args: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaStateEnteredArgs) -> Void: ...
|
|
372
|
+
@winrt_commethod(9)
|
|
373
|
+
def InteractingStateEntered(self, sender: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, args: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInteractingStateEnteredArgs) -> Void: ...
|
|
374
|
+
@winrt_commethod(10)
|
|
375
|
+
def RequestIgnored(self, sender: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, args: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerRequestIgnoredArgs) -> Void: ...
|
|
376
|
+
@winrt_commethod(11)
|
|
377
|
+
def ValuesChanged(self, sender: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, args: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerValuesChangedArgs) -> Void: ...
|
|
378
|
+
class IInteractionTrackerRequestIgnoredArgs(ComPtr):
|
|
379
|
+
extends: IInspectable
|
|
380
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerRequestIgnoredArgs'
|
|
381
|
+
_iid_ = Guid('{c276205e-f7a5-5ba2-ad45-d12c3c339149}')
|
|
382
|
+
@winrt_commethod(6)
|
|
383
|
+
def get_RequestId(self) -> Int32: ...
|
|
384
|
+
RequestId = property(get_RequestId, None)
|
|
385
|
+
class IInteractionTrackerStatics(ComPtr):
|
|
386
|
+
extends: IInspectable
|
|
387
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerStatics'
|
|
388
|
+
_iid_ = Guid('{7ac9867a-e16e-56ef-9809-f6e404240f50}')
|
|
389
|
+
@winrt_commethod(6)
|
|
390
|
+
def Create(self, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTracker: ...
|
|
391
|
+
@winrt_commethod(7)
|
|
392
|
+
def CreateWithOwner(self, compositor: win32more.Microsoft.UI.Composition.Compositor, owner: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerOwner) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTracker: ...
|
|
393
|
+
class IInteractionTrackerStatics2(ComPtr):
|
|
394
|
+
extends: IInspectable
|
|
395
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerStatics2'
|
|
396
|
+
_iid_ = Guid('{25658e4c-b99f-5108-aab7-1cc44f11508b}')
|
|
397
|
+
@winrt_commethod(6)
|
|
398
|
+
def SetBindingMode(self, boundTracker1: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, boundTracker2: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, axisMode: win32more.Microsoft.UI.Composition.Interactions.InteractionBindingAxisModes) -> Void: ...
|
|
399
|
+
@winrt_commethod(7)
|
|
400
|
+
def GetBindingMode(self, boundTracker1: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, boundTracker2: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker) -> win32more.Microsoft.UI.Composition.Interactions.InteractionBindingAxisModes: ...
|
|
401
|
+
class IInteractionTrackerValuesChangedArgs(ComPtr):
|
|
402
|
+
extends: IInspectable
|
|
403
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerValuesChangedArgs'
|
|
404
|
+
_iid_ = Guid('{9b495bed-1cf7-55c1-82b9-8022cbf3c766}')
|
|
405
|
+
@winrt_commethod(6)
|
|
406
|
+
def get_Position(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
407
|
+
@winrt_commethod(7)
|
|
408
|
+
def get_RequestId(self) -> Int32: ...
|
|
409
|
+
@winrt_commethod(8)
|
|
410
|
+
def get_Scale(self) -> Single: ...
|
|
411
|
+
Position = property(get_Position, None)
|
|
412
|
+
RequestId = property(get_RequestId, None)
|
|
413
|
+
Scale = property(get_Scale, None)
|
|
414
|
+
class IInteractionTrackerVector2InertiaModifier(ComPtr):
|
|
415
|
+
extends: IInspectable
|
|
416
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaModifier'
|
|
417
|
+
_iid_ = Guid('{4b8ed310-cb61-5f0a-b99a-940cdd2c42b1}')
|
|
418
|
+
class IInteractionTrackerVector2InertiaModifierFactory(ComPtr):
|
|
419
|
+
extends: IInspectable
|
|
420
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaModifierFactory'
|
|
421
|
+
_iid_ = Guid('{1b3fd240-ba66-5296-b801-62a2a3606613}')
|
|
422
|
+
class IInteractionTrackerVector2InertiaNaturalMotion(ComPtr):
|
|
423
|
+
extends: IInspectable
|
|
424
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotion'
|
|
425
|
+
_iid_ = Guid('{097ba1a6-e077-52d1-86d3-38e3f6619ddf}')
|
|
426
|
+
@winrt_commethod(6)
|
|
427
|
+
def get_Condition(self) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
428
|
+
@winrt_commethod(7)
|
|
429
|
+
def put_Condition(self, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
430
|
+
@winrt_commethod(8)
|
|
431
|
+
def get_NaturalMotion(self) -> win32more.Microsoft.UI.Composition.Vector2NaturalMotionAnimation: ...
|
|
432
|
+
@winrt_commethod(9)
|
|
433
|
+
def put_NaturalMotion(self, value: win32more.Microsoft.UI.Composition.Vector2NaturalMotionAnimation) -> Void: ...
|
|
434
|
+
Condition = property(get_Condition, put_Condition)
|
|
435
|
+
NaturalMotion = property(get_NaturalMotion, put_NaturalMotion)
|
|
436
|
+
class IInteractionTrackerVector2InertiaNaturalMotionStatics(ComPtr):
|
|
437
|
+
extends: IInspectable
|
|
438
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotionStatics'
|
|
439
|
+
_iid_ = Guid('{cc24ab87-9131-5286-b3ce-1ef97e0974e6}')
|
|
440
|
+
@winrt_commethod(6)
|
|
441
|
+
def Create(self, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerVector2InertiaNaturalMotion: ...
|
|
442
|
+
class IVisualInteractionSource(ComPtr):
|
|
443
|
+
extends: IInspectable
|
|
444
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IVisualInteractionSource'
|
|
445
|
+
_iid_ = Guid('{ea595c95-b9cb-5cd4-bb9c-4934ff329063}')
|
|
446
|
+
@winrt_commethod(6)
|
|
447
|
+
def get_IsPositionXRailsEnabled(self) -> Boolean: ...
|
|
448
|
+
@winrt_commethod(7)
|
|
449
|
+
def put_IsPositionXRailsEnabled(self, value: Boolean) -> Void: ...
|
|
450
|
+
@winrt_commethod(8)
|
|
451
|
+
def get_IsPositionYRailsEnabled(self) -> Boolean: ...
|
|
452
|
+
@winrt_commethod(9)
|
|
453
|
+
def put_IsPositionYRailsEnabled(self, value: Boolean) -> Void: ...
|
|
454
|
+
@winrt_commethod(10)
|
|
455
|
+
def get_ManipulationRedirectionMode(self) -> win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSourceRedirectionMode: ...
|
|
456
|
+
@winrt_commethod(11)
|
|
457
|
+
def put_ManipulationRedirectionMode(self, value: win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSourceRedirectionMode) -> Void: ...
|
|
458
|
+
@winrt_commethod(12)
|
|
459
|
+
def get_PositionXChainingMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode: ...
|
|
460
|
+
@winrt_commethod(13)
|
|
461
|
+
def put_PositionXChainingMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode) -> Void: ...
|
|
462
|
+
@winrt_commethod(14)
|
|
463
|
+
def get_PositionXSourceMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode: ...
|
|
464
|
+
@winrt_commethod(15)
|
|
465
|
+
def put_PositionXSourceMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode) -> Void: ...
|
|
466
|
+
@winrt_commethod(16)
|
|
467
|
+
def get_PositionYChainingMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode: ...
|
|
468
|
+
@winrt_commethod(17)
|
|
469
|
+
def put_PositionYChainingMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode) -> Void: ...
|
|
470
|
+
@winrt_commethod(18)
|
|
471
|
+
def get_PositionYSourceMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode: ...
|
|
472
|
+
@winrt_commethod(19)
|
|
473
|
+
def put_PositionYSourceMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode) -> Void: ...
|
|
474
|
+
@winrt_commethod(20)
|
|
475
|
+
def get_ScaleChainingMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode: ...
|
|
476
|
+
@winrt_commethod(21)
|
|
477
|
+
def put_ScaleChainingMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode) -> Void: ...
|
|
478
|
+
@winrt_commethod(22)
|
|
479
|
+
def get_ScaleSourceMode(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode: ...
|
|
480
|
+
@winrt_commethod(23)
|
|
481
|
+
def put_ScaleSourceMode(self, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode) -> Void: ...
|
|
482
|
+
@winrt_commethod(24)
|
|
483
|
+
def get_Source(self) -> win32more.Microsoft.UI.Composition.Visual: ...
|
|
484
|
+
@winrt_commethod(25)
|
|
485
|
+
def TryRedirectForManipulation(self, pointerPoint: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
|
|
486
|
+
IsPositionXRailsEnabled = property(get_IsPositionXRailsEnabled, put_IsPositionXRailsEnabled)
|
|
487
|
+
IsPositionYRailsEnabled = property(get_IsPositionYRailsEnabled, put_IsPositionYRailsEnabled)
|
|
488
|
+
ManipulationRedirectionMode = property(get_ManipulationRedirectionMode, put_ManipulationRedirectionMode)
|
|
489
|
+
PositionXChainingMode = property(get_PositionXChainingMode, put_PositionXChainingMode)
|
|
490
|
+
PositionXSourceMode = property(get_PositionXSourceMode, put_PositionXSourceMode)
|
|
491
|
+
PositionYChainingMode = property(get_PositionYChainingMode, put_PositionYChainingMode)
|
|
492
|
+
PositionYSourceMode = property(get_PositionYSourceMode, put_PositionYSourceMode)
|
|
493
|
+
ScaleChainingMode = property(get_ScaleChainingMode, put_ScaleChainingMode)
|
|
494
|
+
ScaleSourceMode = property(get_ScaleSourceMode, put_ScaleSourceMode)
|
|
495
|
+
Source = property(get_Source, None)
|
|
496
|
+
class IVisualInteractionSource2(ComPtr):
|
|
497
|
+
extends: IInspectable
|
|
498
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IVisualInteractionSource2'
|
|
499
|
+
_iid_ = Guid('{ff1132ba-dc0d-519e-be49-be301e52306a}')
|
|
500
|
+
@winrt_commethod(6)
|
|
501
|
+
def get_DeltaPosition(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
502
|
+
@winrt_commethod(7)
|
|
503
|
+
def get_DeltaScale(self) -> Single: ...
|
|
504
|
+
@winrt_commethod(8)
|
|
505
|
+
def get_Position(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
506
|
+
@winrt_commethod(9)
|
|
507
|
+
def get_PositionVelocity(self) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
508
|
+
@winrt_commethod(10)
|
|
509
|
+
def get_Scale(self) -> Single: ...
|
|
510
|
+
@winrt_commethod(11)
|
|
511
|
+
def get_ScaleVelocity(self) -> Single: ...
|
|
512
|
+
@winrt_commethod(12)
|
|
513
|
+
def ConfigureCenterPointXModifiers(self, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
514
|
+
@winrt_commethod(13)
|
|
515
|
+
def ConfigureCenterPointYModifiers(self, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
516
|
+
@winrt_commethod(14)
|
|
517
|
+
def ConfigureDeltaPositionXModifiers(self, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
518
|
+
@winrt_commethod(15)
|
|
519
|
+
def ConfigureDeltaPositionYModifiers(self, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
520
|
+
@winrt_commethod(16)
|
|
521
|
+
def ConfigureDeltaScaleModifiers(self, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
522
|
+
DeltaPosition = property(get_DeltaPosition, None)
|
|
523
|
+
DeltaScale = property(get_DeltaScale, None)
|
|
524
|
+
Position = property(get_Position, None)
|
|
525
|
+
PositionVelocity = property(get_PositionVelocity, None)
|
|
526
|
+
Scale = property(get_Scale, None)
|
|
527
|
+
ScaleVelocity = property(get_ScaleVelocity, None)
|
|
528
|
+
class IVisualInteractionSource3(ComPtr):
|
|
529
|
+
extends: IInspectable
|
|
530
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IVisualInteractionSource3'
|
|
531
|
+
_iid_ = Guid('{d523bd66-a05d-5417-8e07-84ae3caf9752}')
|
|
532
|
+
@winrt_commethod(6)
|
|
533
|
+
def get_PointerWheelConfig(self) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceConfiguration: ...
|
|
534
|
+
PointerWheelConfig = property(get_PointerWheelConfig, None)
|
|
535
|
+
class IVisualInteractionSourceObjectFactory(ComPtr):
|
|
536
|
+
extends: IInspectable
|
|
537
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IVisualInteractionSourceObjectFactory'
|
|
538
|
+
_iid_ = Guid('{feb73102-238c-52aa-8e03-b68d5ecc44b3}')
|
|
539
|
+
class IVisualInteractionSourceStatics(ComPtr):
|
|
540
|
+
extends: IInspectable
|
|
541
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IVisualInteractionSourceStatics'
|
|
542
|
+
_iid_ = Guid('{5fc9c763-e2e5-530e-87cd-b93118ade8a3}')
|
|
543
|
+
@winrt_commethod(6)
|
|
544
|
+
def Create(self, source: win32more.Microsoft.UI.Composition.Visual) -> win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSource: ...
|
|
545
|
+
class IVisualInteractionSourceStatics2(ComPtr):
|
|
546
|
+
extends: IInspectable
|
|
547
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.IVisualInteractionSourceStatics2'
|
|
548
|
+
_iid_ = Guid('{a6b494fe-12a1-5a73-b87e-4c4ef58eac6c}')
|
|
549
|
+
@winrt_commethod(6)
|
|
550
|
+
def CreateFromIVisualElement(self, source: win32more.Microsoft.UI.Composition.IVisualElement) -> win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSource: ...
|
|
551
|
+
class InteractionBindingAxisModes(Enum, UInt32):
|
|
552
|
+
None_ = 0
|
|
553
|
+
PositionX = 1
|
|
554
|
+
PositionY = 2
|
|
555
|
+
Scale = 4
|
|
556
|
+
class InteractionChainingMode(Enum, Int32):
|
|
557
|
+
Auto = 0
|
|
558
|
+
Always = 1
|
|
559
|
+
Never = 2
|
|
560
|
+
class InteractionSourceConfiguration(ComPtr):
|
|
561
|
+
extends: win32more.Microsoft.UI.Composition.CompositionObject
|
|
562
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration
|
|
563
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionSourceConfiguration'
|
|
564
|
+
@winrt_mixinmethod
|
|
565
|
+
def put_ScaleSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode) -> Void: ...
|
|
566
|
+
@winrt_mixinmethod
|
|
567
|
+
def get_PositionYSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode: ...
|
|
568
|
+
@winrt_mixinmethod
|
|
569
|
+
def get_PositionXSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode: ...
|
|
570
|
+
@winrt_mixinmethod
|
|
571
|
+
def put_PositionXSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode) -> Void: ...
|
|
572
|
+
@winrt_mixinmethod
|
|
573
|
+
def put_PositionYSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode) -> Void: ...
|
|
574
|
+
@winrt_mixinmethod
|
|
575
|
+
def get_ScaleSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionSourceConfiguration) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceRedirectionMode: ...
|
|
576
|
+
PositionXSourceMode = property(get_PositionXSourceMode, put_PositionXSourceMode)
|
|
577
|
+
PositionYSourceMode = property(get_PositionYSourceMode, put_PositionYSourceMode)
|
|
578
|
+
ScaleSourceMode = property(get_ScaleSourceMode, put_ScaleSourceMode)
|
|
579
|
+
class InteractionSourceMode(Enum, Int32):
|
|
580
|
+
Disabled = 0
|
|
581
|
+
EnabledWithInertia = 1
|
|
582
|
+
EnabledWithoutInertia = 2
|
|
583
|
+
class InteractionSourceRedirectionMode(Enum, Int32):
|
|
584
|
+
Disabled = 0
|
|
585
|
+
Enabled = 1
|
|
586
|
+
class InteractionTracker(ComPtr):
|
|
587
|
+
extends: win32more.Microsoft.UI.Composition.CompositionObject
|
|
588
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker
|
|
589
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTracker'
|
|
590
|
+
@winrt_mixinmethod
|
|
591
|
+
def get_Position(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
592
|
+
@winrt_mixinmethod
|
|
593
|
+
def get_NaturalRestingPosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
594
|
+
@winrt_mixinmethod
|
|
595
|
+
def get_Owner(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerOwner: ...
|
|
596
|
+
@winrt_mixinmethod
|
|
597
|
+
def get_InteractionSources(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Microsoft.UI.Composition.Interactions.CompositionInteractionSourceCollection: ...
|
|
598
|
+
@winrt_mixinmethod
|
|
599
|
+
def get_PositionInertiaDecayRate(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Numerics.Vector3]: ...
|
|
600
|
+
@winrt_mixinmethod
|
|
601
|
+
def put_PositionInertiaDecayRate(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Numerics.Vector3]) -> Void: ...
|
|
602
|
+
@winrt_mixinmethod
|
|
603
|
+
def get_PositionVelocityInPixelsPerSecond(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
604
|
+
@winrt_mixinmethod
|
|
605
|
+
def get_Scale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> Single: ...
|
|
606
|
+
@winrt_mixinmethod
|
|
607
|
+
def get_ScaleInertiaDecayRate(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Windows.Foundation.IReference[Single]: ...
|
|
608
|
+
@winrt_mixinmethod
|
|
609
|
+
def put_ScaleInertiaDecayRate(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: win32more.Windows.Foundation.IReference[Single]) -> Void: ...
|
|
610
|
+
@winrt_mixinmethod
|
|
611
|
+
def get_ScaleVelocityInPercentPerSecond(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> Single: ...
|
|
612
|
+
@winrt_mixinmethod
|
|
613
|
+
def AdjustPositionXIfGreaterThanThreshold(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, adjustment: Single, positionThreshold: Single) -> Void: ...
|
|
614
|
+
@winrt_mixinmethod
|
|
615
|
+
def AdjustPositionYIfGreaterThanThreshold(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, adjustment: Single, positionThreshold: Single) -> Void: ...
|
|
616
|
+
@winrt_mixinmethod
|
|
617
|
+
def ConfigurePositionXInertiaModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier]) -> Void: ...
|
|
618
|
+
@winrt_mixinmethod
|
|
619
|
+
def ConfigurePositionYInertiaModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier]) -> Void: ...
|
|
620
|
+
@winrt_mixinmethod
|
|
621
|
+
def ConfigureScaleInertiaModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier]) -> Void: ...
|
|
622
|
+
@winrt_mixinmethod
|
|
623
|
+
def TryUpdatePosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
624
|
+
@winrt_mixinmethod
|
|
625
|
+
def put_MinScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: Single) -> Void: ...
|
|
626
|
+
@winrt_mixinmethod
|
|
627
|
+
def TryUpdatePositionWithAnimation(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, animation: win32more.Microsoft.UI.Composition.CompositionAnimation) -> Int32: ...
|
|
628
|
+
@winrt_mixinmethod
|
|
629
|
+
def TryUpdatePositionWithAdditionalVelocity(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, velocityInPixelsPerSecond: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
630
|
+
@winrt_mixinmethod
|
|
631
|
+
def TryUpdateScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: Single, centerPoint: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
632
|
+
@winrt_mixinmethod
|
|
633
|
+
def TryUpdateScaleWithAnimation(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, animation: win32more.Microsoft.UI.Composition.CompositionAnimation, centerPoint: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
634
|
+
@winrt_mixinmethod
|
|
635
|
+
def TryUpdateScaleWithAdditionalVelocity(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, velocityInPercentPerSecond: Single, centerPoint: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
636
|
+
@winrt_mixinmethod
|
|
637
|
+
def ConfigureCenterPointXInertiaModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker2, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
638
|
+
@winrt_mixinmethod
|
|
639
|
+
def ConfigureCenterPointYInertiaModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker2, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
640
|
+
@winrt_mixinmethod
|
|
641
|
+
def ConfigureVector2PositionInertiaModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker3, modifiers: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerVector2InertiaModifier]) -> Void: ...
|
|
642
|
+
@winrt_overload
|
|
643
|
+
@winrt_mixinmethod
|
|
644
|
+
def TryUpdatePositionWithOption(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker4, value: win32more.Windows.Foundation.Numerics.Vector3, option: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerClampingOption) -> Int32: ...
|
|
645
|
+
@winrt_mixinmethod
|
|
646
|
+
def TryUpdatePositionByWithOption(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker4, amount: win32more.Windows.Foundation.Numerics.Vector3, option: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerClampingOption) -> Int32: ...
|
|
647
|
+
@winrt_mixinmethod
|
|
648
|
+
def get_IsInertiaFromImpulse(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker4) -> Boolean: ...
|
|
649
|
+
@TryUpdatePositionWithOption.register
|
|
650
|
+
@winrt_mixinmethod
|
|
651
|
+
def TryUpdatePositionWithOption(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker5, value: win32more.Windows.Foundation.Numerics.Vector3, option: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerClampingOption, posUpdateOption: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerPositionUpdateOption) -> Int32: ...
|
|
652
|
+
@winrt_mixinmethod
|
|
653
|
+
def TryUpdatePositionBy(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, amount: win32more.Windows.Foundation.Numerics.Vector3) -> Int32: ...
|
|
654
|
+
@winrt_mixinmethod
|
|
655
|
+
def get_NaturalRestingScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> Single: ...
|
|
656
|
+
@winrt_mixinmethod
|
|
657
|
+
def get_IsPositionRoundingSuggested(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> Boolean: ...
|
|
658
|
+
@winrt_mixinmethod
|
|
659
|
+
def get_MaxPosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
660
|
+
@winrt_mixinmethod
|
|
661
|
+
def put_MaxPosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: win32more.Windows.Foundation.Numerics.Vector3) -> Void: ...
|
|
662
|
+
@winrt_mixinmethod
|
|
663
|
+
def get_MaxScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> Single: ...
|
|
664
|
+
@winrt_mixinmethod
|
|
665
|
+
def put_MaxScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: Single) -> Void: ...
|
|
666
|
+
@winrt_mixinmethod
|
|
667
|
+
def get_MinPosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
668
|
+
@winrt_mixinmethod
|
|
669
|
+
def put_MinPosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker, value: win32more.Windows.Foundation.Numerics.Vector3) -> Void: ...
|
|
670
|
+
@winrt_mixinmethod
|
|
671
|
+
def get_MinScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTracker) -> Single: ...
|
|
672
|
+
@winrt_classmethod
|
|
673
|
+
def SetBindingMode(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerStatics2, boundTracker1: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, boundTracker2: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, axisMode: win32more.Microsoft.UI.Composition.Interactions.InteractionBindingAxisModes) -> Void: ...
|
|
674
|
+
@winrt_classmethod
|
|
675
|
+
def GetBindingMode(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerStatics2, boundTracker1: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker, boundTracker2: win32more.Microsoft.UI.Composition.Interactions.InteractionTracker) -> win32more.Microsoft.UI.Composition.Interactions.InteractionBindingAxisModes: ...
|
|
676
|
+
@winrt_classmethod
|
|
677
|
+
def Create(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerStatics, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTracker: ...
|
|
678
|
+
@winrt_classmethod
|
|
679
|
+
def CreateWithOwner(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerStatics, compositor: win32more.Microsoft.UI.Composition.Compositor, owner: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerOwner) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTracker: ...
|
|
680
|
+
InteractionSources = property(get_InteractionSources, None)
|
|
681
|
+
IsInertiaFromImpulse = property(get_IsInertiaFromImpulse, None)
|
|
682
|
+
IsPositionRoundingSuggested = property(get_IsPositionRoundingSuggested, None)
|
|
683
|
+
MaxPosition = property(get_MaxPosition, put_MaxPosition)
|
|
684
|
+
MaxScale = property(get_MaxScale, put_MaxScale)
|
|
685
|
+
MinPosition = property(get_MinPosition, put_MinPosition)
|
|
686
|
+
MinScale = property(get_MinScale, put_MinScale)
|
|
687
|
+
NaturalRestingPosition = property(get_NaturalRestingPosition, None)
|
|
688
|
+
NaturalRestingScale = property(get_NaturalRestingScale, None)
|
|
689
|
+
Owner = property(get_Owner, None)
|
|
690
|
+
Position = property(get_Position, None)
|
|
691
|
+
PositionInertiaDecayRate = property(get_PositionInertiaDecayRate, put_PositionInertiaDecayRate)
|
|
692
|
+
PositionVelocityInPixelsPerSecond = property(get_PositionVelocityInPixelsPerSecond, None)
|
|
693
|
+
Scale = property(get_Scale, None)
|
|
694
|
+
ScaleInertiaDecayRate = property(get_ScaleInertiaDecayRate, put_ScaleInertiaDecayRate)
|
|
695
|
+
ScaleVelocityInPercentPerSecond = property(get_ScaleVelocityInPercentPerSecond, None)
|
|
696
|
+
class InteractionTrackerClampingOption(Enum, Int32):
|
|
697
|
+
Auto = 0
|
|
698
|
+
Disabled = 1
|
|
699
|
+
class InteractionTrackerCustomAnimationStateEnteredArgs(ComPtr):
|
|
700
|
+
extends: IInspectable
|
|
701
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerCustomAnimationStateEnteredArgs
|
|
702
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerCustomAnimationStateEnteredArgs'
|
|
703
|
+
@winrt_mixinmethod
|
|
704
|
+
def get_RequestId(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerCustomAnimationStateEnteredArgs) -> Int32: ...
|
|
705
|
+
@winrt_mixinmethod
|
|
706
|
+
def get_IsFromBinding(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerCustomAnimationStateEnteredArgs2) -> Boolean: ...
|
|
707
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
708
|
+
RequestId = property(get_RequestId, None)
|
|
709
|
+
class InteractionTrackerIdleStateEnteredArgs(ComPtr):
|
|
710
|
+
extends: IInspectable
|
|
711
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerIdleStateEnteredArgs
|
|
712
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerIdleStateEnteredArgs'
|
|
713
|
+
@winrt_mixinmethod
|
|
714
|
+
def get_RequestId(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerIdleStateEnteredArgs) -> Int32: ...
|
|
715
|
+
@winrt_mixinmethod
|
|
716
|
+
def get_IsFromBinding(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerIdleStateEnteredArgs2) -> Boolean: ...
|
|
717
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
718
|
+
RequestId = property(get_RequestId, None)
|
|
719
|
+
class InteractionTrackerInertiaModifier(ComPtr):
|
|
720
|
+
extends: win32more.Microsoft.UI.Composition.CompositionObject
|
|
721
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaModifier
|
|
722
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier'
|
|
723
|
+
class InteractionTrackerInertiaMotion(ComPtr):
|
|
724
|
+
extends: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier
|
|
725
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotion
|
|
726
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaMotion'
|
|
727
|
+
@winrt_mixinmethod
|
|
728
|
+
def get_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotion) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
729
|
+
@winrt_mixinmethod
|
|
730
|
+
def get_Motion(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotion) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
731
|
+
@winrt_mixinmethod
|
|
732
|
+
def put_Motion(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotion, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
733
|
+
@winrt_mixinmethod
|
|
734
|
+
def put_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotion, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
735
|
+
@winrt_classmethod
|
|
736
|
+
def Create(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaMotionStatics, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaMotion: ...
|
|
737
|
+
Condition = property(get_Condition, put_Condition)
|
|
738
|
+
Motion = property(get_Motion, put_Motion)
|
|
739
|
+
class InteractionTrackerInertiaNaturalMotion(ComPtr):
|
|
740
|
+
extends: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier
|
|
741
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotion
|
|
742
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaNaturalMotion'
|
|
743
|
+
@winrt_mixinmethod
|
|
744
|
+
def get_NaturalMotion(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotion) -> win32more.Microsoft.UI.Composition.ScalarNaturalMotionAnimation: ...
|
|
745
|
+
@winrt_mixinmethod
|
|
746
|
+
def put_NaturalMotion(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotion, value: win32more.Microsoft.UI.Composition.ScalarNaturalMotionAnimation) -> Void: ...
|
|
747
|
+
@winrt_mixinmethod
|
|
748
|
+
def put_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotion, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
749
|
+
@winrt_mixinmethod
|
|
750
|
+
def get_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotion) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
751
|
+
@winrt_classmethod
|
|
752
|
+
def Create(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaNaturalMotionStatics, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaNaturalMotion: ...
|
|
753
|
+
Condition = property(get_Condition, put_Condition)
|
|
754
|
+
NaturalMotion = property(get_NaturalMotion, put_NaturalMotion)
|
|
755
|
+
class InteractionTrackerInertiaRestingValue(ComPtr):
|
|
756
|
+
extends: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaModifier
|
|
757
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValue
|
|
758
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaRestingValue'
|
|
759
|
+
@winrt_mixinmethod
|
|
760
|
+
def put_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValue, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
761
|
+
@winrt_mixinmethod
|
|
762
|
+
def get_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValue) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
763
|
+
@winrt_mixinmethod
|
|
764
|
+
def put_RestingValue(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValue, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
765
|
+
@winrt_mixinmethod
|
|
766
|
+
def get_RestingValue(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValue) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
767
|
+
@winrt_classmethod
|
|
768
|
+
def Create(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaRestingValueStatics, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaRestingValue: ...
|
|
769
|
+
Condition = property(get_Condition, put_Condition)
|
|
770
|
+
RestingValue = property(get_RestingValue, put_RestingValue)
|
|
771
|
+
class InteractionTrackerInertiaStateEnteredArgs(ComPtr):
|
|
772
|
+
extends: IInspectable
|
|
773
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs
|
|
774
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerInertiaStateEnteredArgs'
|
|
775
|
+
@winrt_mixinmethod
|
|
776
|
+
def get_IsFromBinding(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs3) -> Boolean: ...
|
|
777
|
+
@winrt_mixinmethod
|
|
778
|
+
def get_NaturalRestingScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs) -> Single: ...
|
|
779
|
+
@winrt_mixinmethod
|
|
780
|
+
def get_PositionVelocityInPixelsPerSecond(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
781
|
+
@winrt_mixinmethod
|
|
782
|
+
def get_ModifiedRestingPosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Numerics.Vector3]: ...
|
|
783
|
+
@winrt_mixinmethod
|
|
784
|
+
def get_ScaleVelocityInPercentPerSecond(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs) -> Single: ...
|
|
785
|
+
@winrt_mixinmethod
|
|
786
|
+
def get_IsInertiaFromImpulse(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs2) -> Boolean: ...
|
|
787
|
+
@winrt_mixinmethod
|
|
788
|
+
def get_RequestId(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs) -> Int32: ...
|
|
789
|
+
@winrt_mixinmethod
|
|
790
|
+
def get_ModifiedRestingScale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs) -> win32more.Windows.Foundation.IReference[Single]: ...
|
|
791
|
+
@winrt_mixinmethod
|
|
792
|
+
def get_NaturalRestingPosition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInertiaStateEnteredArgs) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
793
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
794
|
+
IsInertiaFromImpulse = property(get_IsInertiaFromImpulse, None)
|
|
795
|
+
ModifiedRestingPosition = property(get_ModifiedRestingPosition, None)
|
|
796
|
+
ModifiedRestingScale = property(get_ModifiedRestingScale, None)
|
|
797
|
+
NaturalRestingPosition = property(get_NaturalRestingPosition, None)
|
|
798
|
+
NaturalRestingScale = property(get_NaturalRestingScale, None)
|
|
799
|
+
PositionVelocityInPixelsPerSecond = property(get_PositionVelocityInPixelsPerSecond, None)
|
|
800
|
+
RequestId = property(get_RequestId, None)
|
|
801
|
+
ScaleVelocityInPercentPerSecond = property(get_ScaleVelocityInPercentPerSecond, None)
|
|
802
|
+
class InteractionTrackerInteractingStateEnteredArgs(ComPtr):
|
|
803
|
+
extends: IInspectable
|
|
804
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInteractingStateEnteredArgs
|
|
805
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerInteractingStateEnteredArgs'
|
|
806
|
+
@winrt_mixinmethod
|
|
807
|
+
def get_IsFromBinding(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInteractingStateEnteredArgs2) -> Boolean: ...
|
|
808
|
+
@winrt_mixinmethod
|
|
809
|
+
def get_RequestId(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerInteractingStateEnteredArgs) -> Int32: ...
|
|
810
|
+
IsFromBinding = property(get_IsFromBinding, None)
|
|
811
|
+
RequestId = property(get_RequestId, None)
|
|
812
|
+
class InteractionTrackerPositionUpdateOption(Enum, Int32):
|
|
813
|
+
Default = 0
|
|
814
|
+
AllowActiveCustomScaleAnimation = 1
|
|
815
|
+
class InteractionTrackerRequestIgnoredArgs(ComPtr):
|
|
816
|
+
extends: IInspectable
|
|
817
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerRequestIgnoredArgs
|
|
818
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerRequestIgnoredArgs'
|
|
819
|
+
@winrt_mixinmethod
|
|
820
|
+
def get_RequestId(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerRequestIgnoredArgs) -> Int32: ...
|
|
821
|
+
RequestId = property(get_RequestId, None)
|
|
822
|
+
class InteractionTrackerValuesChangedArgs(ComPtr):
|
|
823
|
+
extends: IInspectable
|
|
824
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerValuesChangedArgs
|
|
825
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerValuesChangedArgs'
|
|
826
|
+
@winrt_mixinmethod
|
|
827
|
+
def get_RequestId(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerValuesChangedArgs) -> Int32: ...
|
|
828
|
+
@winrt_mixinmethod
|
|
829
|
+
def get_Position(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerValuesChangedArgs) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
830
|
+
@winrt_mixinmethod
|
|
831
|
+
def get_Scale(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerValuesChangedArgs) -> Single: ...
|
|
832
|
+
Position = property(get_Position, None)
|
|
833
|
+
RequestId = property(get_RequestId, None)
|
|
834
|
+
Scale = property(get_Scale, None)
|
|
835
|
+
class InteractionTrackerVector2InertiaModifier(ComPtr):
|
|
836
|
+
extends: win32more.Microsoft.UI.Composition.CompositionObject
|
|
837
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaModifier
|
|
838
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerVector2InertiaModifier'
|
|
839
|
+
class InteractionTrackerVector2InertiaNaturalMotion(ComPtr):
|
|
840
|
+
extends: win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerVector2InertiaModifier
|
|
841
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotion
|
|
842
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.InteractionTrackerVector2InertiaNaturalMotion'
|
|
843
|
+
@winrt_mixinmethod
|
|
844
|
+
def get_NaturalMotion(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotion) -> win32more.Microsoft.UI.Composition.Vector2NaturalMotionAnimation: ...
|
|
845
|
+
@winrt_mixinmethod
|
|
846
|
+
def put_NaturalMotion(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotion, value: win32more.Microsoft.UI.Composition.Vector2NaturalMotionAnimation) -> Void: ...
|
|
847
|
+
@winrt_mixinmethod
|
|
848
|
+
def get_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotion) -> win32more.Microsoft.UI.Composition.ExpressionAnimation: ...
|
|
849
|
+
@winrt_mixinmethod
|
|
850
|
+
def put_Condition(self: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotion, value: win32more.Microsoft.UI.Composition.ExpressionAnimation) -> Void: ...
|
|
851
|
+
@winrt_classmethod
|
|
852
|
+
def Create(cls: win32more.Microsoft.UI.Composition.Interactions.IInteractionTrackerVector2InertiaNaturalMotionStatics, compositor: win32more.Microsoft.UI.Composition.Compositor) -> win32more.Microsoft.UI.Composition.Interactions.InteractionTrackerVector2InertiaNaturalMotion: ...
|
|
853
|
+
Condition = property(get_Condition, put_Condition)
|
|
854
|
+
NaturalMotion = property(get_NaturalMotion, put_NaturalMotion)
|
|
855
|
+
class VisualInteractionSource(ComPtr):
|
|
856
|
+
extends: win32more.Microsoft.UI.Composition.CompositionObject
|
|
857
|
+
default_interface: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource
|
|
858
|
+
_classid_ = 'Microsoft.UI.Composition.Interactions.VisualInteractionSource'
|
|
859
|
+
@winrt_mixinmethod
|
|
860
|
+
def put_PositionYChainingMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode) -> Void: ...
|
|
861
|
+
@winrt_mixinmethod
|
|
862
|
+
def ConfigureDeltaScaleModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
863
|
+
@winrt_mixinmethod
|
|
864
|
+
def get_PositionVelocity(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
865
|
+
@winrt_mixinmethod
|
|
866
|
+
def get_Scale(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2) -> Single: ...
|
|
867
|
+
@winrt_mixinmethod
|
|
868
|
+
def get_ScaleVelocity(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2) -> Single: ...
|
|
869
|
+
@winrt_mixinmethod
|
|
870
|
+
def ConfigureCenterPointXModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
871
|
+
@winrt_mixinmethod
|
|
872
|
+
def ConfigureCenterPointYModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
873
|
+
@winrt_mixinmethod
|
|
874
|
+
def ConfigureDeltaPositionXModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
875
|
+
@winrt_mixinmethod
|
|
876
|
+
def ConfigureDeltaPositionYModifiers(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2, conditionalValues: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.UI.Composition.Interactions.CompositionConditionalValue]) -> Void: ...
|
|
877
|
+
@winrt_mixinmethod
|
|
878
|
+
def get_PointerWheelConfig(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource3) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceConfiguration: ...
|
|
879
|
+
@winrt_mixinmethod
|
|
880
|
+
def put_IsPositionXRailsEnabled(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: Boolean) -> Void: ...
|
|
881
|
+
@winrt_mixinmethod
|
|
882
|
+
def get_IsPositionYRailsEnabled(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> Boolean: ...
|
|
883
|
+
@winrt_mixinmethod
|
|
884
|
+
def put_IsPositionYRailsEnabled(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: Boolean) -> Void: ...
|
|
885
|
+
@winrt_mixinmethod
|
|
886
|
+
def get_ManipulationRedirectionMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSourceRedirectionMode: ...
|
|
887
|
+
@winrt_mixinmethod
|
|
888
|
+
def put_ManipulationRedirectionMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSourceRedirectionMode) -> Void: ...
|
|
889
|
+
@winrt_mixinmethod
|
|
890
|
+
def get_PositionXChainingMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode: ...
|
|
891
|
+
@winrt_mixinmethod
|
|
892
|
+
def put_PositionXChainingMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode) -> Void: ...
|
|
893
|
+
@winrt_mixinmethod
|
|
894
|
+
def get_PositionXSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode: ...
|
|
895
|
+
@winrt_mixinmethod
|
|
896
|
+
def put_PositionXSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode) -> Void: ...
|
|
897
|
+
@winrt_mixinmethod
|
|
898
|
+
def get_PositionYChainingMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode: ...
|
|
899
|
+
@winrt_mixinmethod
|
|
900
|
+
def get_IsPositionXRailsEnabled(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> Boolean: ...
|
|
901
|
+
@winrt_mixinmethod
|
|
902
|
+
def get_PositionYSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode: ...
|
|
903
|
+
@winrt_mixinmethod
|
|
904
|
+
def put_PositionYSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode) -> Void: ...
|
|
905
|
+
@winrt_mixinmethod
|
|
906
|
+
def get_ScaleChainingMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode: ...
|
|
907
|
+
@winrt_mixinmethod
|
|
908
|
+
def put_ScaleChainingMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: win32more.Microsoft.UI.Composition.Interactions.InteractionChainingMode) -> Void: ...
|
|
909
|
+
@winrt_mixinmethod
|
|
910
|
+
def get_ScaleSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode: ...
|
|
911
|
+
@winrt_mixinmethod
|
|
912
|
+
def put_ScaleSourceMode(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, value: win32more.Microsoft.UI.Composition.Interactions.InteractionSourceMode) -> Void: ...
|
|
913
|
+
@winrt_mixinmethod
|
|
914
|
+
def get_Source(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource) -> win32more.Microsoft.UI.Composition.Visual: ...
|
|
915
|
+
@winrt_mixinmethod
|
|
916
|
+
def TryRedirectForManipulation(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource, pointerPoint: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
|
|
917
|
+
@winrt_mixinmethod
|
|
918
|
+
def get_DeltaPosition(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
919
|
+
@winrt_mixinmethod
|
|
920
|
+
def get_DeltaScale(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2) -> Single: ...
|
|
921
|
+
@winrt_mixinmethod
|
|
922
|
+
def get_Position(self: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSource2) -> win32more.Windows.Foundation.Numerics.Vector3: ...
|
|
923
|
+
@winrt_classmethod
|
|
924
|
+
def CreateFromIVisualElement(cls: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSourceStatics2, source: win32more.Microsoft.UI.Composition.IVisualElement) -> win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSource: ...
|
|
925
|
+
@winrt_classmethod
|
|
926
|
+
def Create(cls: win32more.Microsoft.UI.Composition.Interactions.IVisualInteractionSourceStatics, source: win32more.Microsoft.UI.Composition.Visual) -> win32more.Microsoft.UI.Composition.Interactions.VisualInteractionSource: ...
|
|
927
|
+
DeltaPosition = property(get_DeltaPosition, None)
|
|
928
|
+
DeltaScale = property(get_DeltaScale, None)
|
|
929
|
+
IsPositionXRailsEnabled = property(get_IsPositionXRailsEnabled, put_IsPositionXRailsEnabled)
|
|
930
|
+
IsPositionYRailsEnabled = property(get_IsPositionYRailsEnabled, put_IsPositionYRailsEnabled)
|
|
931
|
+
ManipulationRedirectionMode = property(get_ManipulationRedirectionMode, put_ManipulationRedirectionMode)
|
|
932
|
+
PointerWheelConfig = property(get_PointerWheelConfig, None)
|
|
933
|
+
Position = property(get_Position, None)
|
|
934
|
+
PositionVelocity = property(get_PositionVelocity, None)
|
|
935
|
+
PositionXChainingMode = property(get_PositionXChainingMode, put_PositionXChainingMode)
|
|
936
|
+
PositionXSourceMode = property(get_PositionXSourceMode, put_PositionXSourceMode)
|
|
937
|
+
PositionYChainingMode = property(get_PositionYChainingMode, put_PositionYChainingMode)
|
|
938
|
+
PositionYSourceMode = property(get_PositionYSourceMode, put_PositionYSourceMode)
|
|
939
|
+
Scale = property(get_Scale, None)
|
|
940
|
+
ScaleChainingMode = property(get_ScaleChainingMode, put_ScaleChainingMode)
|
|
941
|
+
ScaleSourceMode = property(get_ScaleSourceMode, put_ScaleSourceMode)
|
|
942
|
+
ScaleVelocity = property(get_ScaleVelocity, None)
|
|
943
|
+
Source = property(get_Source, None)
|
|
944
|
+
class VisualInteractionSourceRedirectionMode(Enum, Int32):
|
|
945
|
+
Off = 0
|
|
946
|
+
CapableTouchpadOnly = 1
|
|
947
|
+
PointerWheelOnly = 2
|
|
948
|
+
CapableTouchpadAndPointerWheel = 3
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
make_ready(__name__)
|