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,1927 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI
|
|
4
|
+
import win32more.Microsoft.UI.Content
|
|
5
|
+
import win32more.Microsoft.UI.Dispatching
|
|
6
|
+
import win32more.Microsoft.UI.Input
|
|
7
|
+
import win32more.Windows.Foundation
|
|
8
|
+
import win32more.Windows.Foundation.Collections
|
|
9
|
+
import win32more.Windows.Graphics
|
|
10
|
+
import win32more.Windows.System
|
|
11
|
+
import win32more.Windows.UI.Core
|
|
12
|
+
class CharacterReceivedEventArgs(ComPtr):
|
|
13
|
+
extends: IInspectable
|
|
14
|
+
default_interface: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs
|
|
15
|
+
_classid_ = 'Microsoft.UI.Input.CharacterReceivedEventArgs'
|
|
16
|
+
@winrt_mixinmethod
|
|
17
|
+
def get_KeyStatus(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
|
|
18
|
+
@winrt_mixinmethod
|
|
19
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs, value: Boolean) -> Void: ...
|
|
20
|
+
@winrt_mixinmethod
|
|
21
|
+
def get_KeyCode(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> UInt32: ...
|
|
22
|
+
@winrt_mixinmethod
|
|
23
|
+
def get_Handled(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> Boolean: ...
|
|
24
|
+
Handled = property(get_Handled, put_Handled)
|
|
25
|
+
KeyCode = property(get_KeyCode, None)
|
|
26
|
+
KeyStatus = property(get_KeyStatus, None)
|
|
27
|
+
class ContextMenuKeyEventArgs(ComPtr):
|
|
28
|
+
extends: IInspectable
|
|
29
|
+
default_interface: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs
|
|
30
|
+
_classid_ = 'Microsoft.UI.Input.ContextMenuKeyEventArgs'
|
|
31
|
+
@winrt_mixinmethod
|
|
32
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs, value: Boolean) -> Void: ...
|
|
33
|
+
@winrt_mixinmethod
|
|
34
|
+
def get_Handled(self: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs) -> Boolean: ...
|
|
35
|
+
Handled = property(get_Handled, put_Handled)
|
|
36
|
+
class CrossSlideThresholds(Structure):
|
|
37
|
+
SelectionStart: Single
|
|
38
|
+
SpeedBumpStart: Single
|
|
39
|
+
SpeedBumpEnd: Single
|
|
40
|
+
RearrangeStart: Single
|
|
41
|
+
class CrossSlidingEventArgs(ComPtr):
|
|
42
|
+
extends: IInspectable
|
|
43
|
+
default_interface: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs
|
|
44
|
+
_classid_ = 'Microsoft.UI.Input.CrossSlidingEventArgs'
|
|
45
|
+
@winrt_mixinmethod
|
|
46
|
+
def get_CrossSlidingState(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
|
|
47
|
+
@winrt_mixinmethod
|
|
48
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
49
|
+
@winrt_mixinmethod
|
|
50
|
+
def get_Position(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
51
|
+
CrossSlidingState = property(get_CrossSlidingState, None)
|
|
52
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
53
|
+
Position = property(get_Position, None)
|
|
54
|
+
class CrossSlidingState(Enum, Int32):
|
|
55
|
+
Started = 0
|
|
56
|
+
Dragging = 1
|
|
57
|
+
Selecting = 2
|
|
58
|
+
SelectSpeedBumping = 3
|
|
59
|
+
SpeedBumping = 4
|
|
60
|
+
Rearranging = 5
|
|
61
|
+
Completed = 6
|
|
62
|
+
class DraggingEventArgs(ComPtr):
|
|
63
|
+
extends: IInspectable
|
|
64
|
+
default_interface: win32more.Microsoft.UI.Input.IDraggingEventArgs
|
|
65
|
+
_classid_ = 'Microsoft.UI.Input.DraggingEventArgs'
|
|
66
|
+
@winrt_mixinmethod
|
|
67
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
68
|
+
@winrt_mixinmethod
|
|
69
|
+
def get_DraggingState(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.DraggingState: ...
|
|
70
|
+
@winrt_mixinmethod
|
|
71
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
72
|
+
DraggingState = property(get_DraggingState, None)
|
|
73
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
74
|
+
Position = property(get_Position, None)
|
|
75
|
+
class DraggingState(Enum, Int32):
|
|
76
|
+
Started = 0
|
|
77
|
+
Continuing = 1
|
|
78
|
+
Completed = 2
|
|
79
|
+
class FocusChangedEventArgs(ComPtr):
|
|
80
|
+
extends: IInspectable
|
|
81
|
+
default_interface: win32more.Microsoft.UI.Input.IFocusChangedEventArgs
|
|
82
|
+
_classid_ = 'Microsoft.UI.Input.FocusChangedEventArgs'
|
|
83
|
+
@winrt_mixinmethod
|
|
84
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs, value: Boolean) -> Void: ...
|
|
85
|
+
@winrt_mixinmethod
|
|
86
|
+
def get_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs) -> Boolean: ...
|
|
87
|
+
Handled = property(get_Handled, put_Handled)
|
|
88
|
+
class FocusNavigationReason(Enum, Int32):
|
|
89
|
+
Programmatic = 0
|
|
90
|
+
Restore = 1
|
|
91
|
+
First = 2
|
|
92
|
+
Last = 3
|
|
93
|
+
Left = 4
|
|
94
|
+
Up = 5
|
|
95
|
+
Right = 6
|
|
96
|
+
Down = 7
|
|
97
|
+
class FocusNavigationRequest(ComPtr):
|
|
98
|
+
extends: IInspectable
|
|
99
|
+
default_interface: win32more.Microsoft.UI.Input.IFocusNavigationRequest
|
|
100
|
+
_classid_ = 'Microsoft.UI.Input.FocusNavigationRequest'
|
|
101
|
+
@winrt_mixinmethod
|
|
102
|
+
def get_Reason(self: win32more.Microsoft.UI.Input.IFocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationReason: ...
|
|
103
|
+
@winrt_mixinmethod
|
|
104
|
+
def get_HintRect(self: win32more.Microsoft.UI.Input.IFocusNavigationRequest) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Rect]: ...
|
|
105
|
+
@winrt_mixinmethod
|
|
106
|
+
def get_CorrelationId(self: win32more.Microsoft.UI.Input.IFocusNavigationRequest) -> Guid: ...
|
|
107
|
+
@winrt_classmethod
|
|
108
|
+
def Create(cls: win32more.Microsoft.UI.Input.IFocusNavigationRequestStatics, reason: win32more.Microsoft.UI.Input.FocusNavigationReason) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
109
|
+
@winrt_classmethod
|
|
110
|
+
def CreateWithHintRect(cls: win32more.Microsoft.UI.Input.IFocusNavigationRequestStatics, reason: win32more.Microsoft.UI.Input.FocusNavigationReason, hintRect: win32more.Windows.Foundation.Rect) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
111
|
+
@winrt_classmethod
|
|
112
|
+
def CreateWithHintRectAndId(cls: win32more.Microsoft.UI.Input.IFocusNavigationRequestStatics, reason: win32more.Microsoft.UI.Input.FocusNavigationReason, hintRect: win32more.Windows.Foundation.Rect, correlationId: Guid) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
113
|
+
CorrelationId = property(get_CorrelationId, None)
|
|
114
|
+
HintRect = property(get_HintRect, None)
|
|
115
|
+
Reason = property(get_Reason, None)
|
|
116
|
+
class FocusNavigationRequestEventArgs(ComPtr):
|
|
117
|
+
extends: IInspectable
|
|
118
|
+
default_interface: win32more.Microsoft.UI.Input.IFocusNavigationRequestEventArgs
|
|
119
|
+
_classid_ = 'Microsoft.UI.Input.FocusNavigationRequestEventArgs'
|
|
120
|
+
@winrt_mixinmethod
|
|
121
|
+
def get_Request(self: win32more.Microsoft.UI.Input.IFocusNavigationRequestEventArgs) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
122
|
+
@winrt_mixinmethod
|
|
123
|
+
def get_Result(self: win32more.Microsoft.UI.Input.IFocusNavigationRequestEventArgs) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
124
|
+
@winrt_mixinmethod
|
|
125
|
+
def put_Result(self: win32more.Microsoft.UI.Input.IFocusNavigationRequestEventArgs, value: win32more.Microsoft.UI.Input.FocusNavigationResult) -> Void: ...
|
|
126
|
+
Request = property(get_Request, None)
|
|
127
|
+
Result = property(get_Result, put_Result)
|
|
128
|
+
class FocusNavigationResult(Enum, Int32):
|
|
129
|
+
NotMoved = 0
|
|
130
|
+
Moved = 1
|
|
131
|
+
NoFocusableElements = 2
|
|
132
|
+
class GestureRecognizer(ComPtr):
|
|
133
|
+
extends: IInspectable
|
|
134
|
+
default_interface: win32more.Microsoft.UI.Input.IGestureRecognizer
|
|
135
|
+
_classid_ = 'Microsoft.UI.Input.GestureRecognizer'
|
|
136
|
+
def __init__(self, *args, **kwargs):
|
|
137
|
+
if kwargs:
|
|
138
|
+
super().__init__(**kwargs)
|
|
139
|
+
elif len(args) == 0:
|
|
140
|
+
super().__init__(move=win32more.Microsoft.UI.Input.GestureRecognizer.CreateInstance(*args))
|
|
141
|
+
else:
|
|
142
|
+
raise ValueError('no matched constructor')
|
|
143
|
+
@winrt_activatemethod
|
|
144
|
+
def CreateInstance(cls) -> win32more.Microsoft.UI.Input.GestureRecognizer: ...
|
|
145
|
+
@winrt_mixinmethod
|
|
146
|
+
def put_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
147
|
+
@winrt_mixinmethod
|
|
148
|
+
def put_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
149
|
+
@winrt_mixinmethod
|
|
150
|
+
def get_CrossSlideExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
151
|
+
@winrt_mixinmethod
|
|
152
|
+
def put_CrossSlideExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
153
|
+
@winrt_mixinmethod
|
|
154
|
+
def get_CrossSlideHorizontally(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
155
|
+
@winrt_mixinmethod
|
|
156
|
+
def put_CrossSlideHorizontally(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
157
|
+
@winrt_mixinmethod
|
|
158
|
+
def get_CrossSlideThresholds(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> win32more.Microsoft.UI.Input.CrossSlideThresholds: ...
|
|
159
|
+
@winrt_mixinmethod
|
|
160
|
+
def put_CrossSlideThresholds(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.CrossSlideThresholds) -> Void: ...
|
|
161
|
+
@winrt_mixinmethod
|
|
162
|
+
def get_GestureSettings(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> win32more.Microsoft.UI.Input.GestureSettings: ...
|
|
163
|
+
@winrt_mixinmethod
|
|
164
|
+
def put_GestureSettings(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.GestureSettings) -> Void: ...
|
|
165
|
+
@winrt_mixinmethod
|
|
166
|
+
def get_IsActive(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
167
|
+
@winrt_mixinmethod
|
|
168
|
+
def get_IsInertial(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
169
|
+
@winrt_mixinmethod
|
|
170
|
+
def get_PivotCenter(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> win32more.Windows.Foundation.Point: ...
|
|
171
|
+
@winrt_mixinmethod
|
|
172
|
+
def put_PivotCenter(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
173
|
+
@winrt_mixinmethod
|
|
174
|
+
def get_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
175
|
+
@winrt_mixinmethod
|
|
176
|
+
def ProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
|
|
177
|
+
@winrt_mixinmethod
|
|
178
|
+
def add_ManipulationStarted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationStartedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
179
|
+
@winrt_mixinmethod
|
|
180
|
+
def put_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
181
|
+
@winrt_mixinmethod
|
|
182
|
+
def get_InertiaExpansion(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
183
|
+
@winrt_mixinmethod
|
|
184
|
+
def put_InertiaExpansion(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
185
|
+
@winrt_mixinmethod
|
|
186
|
+
def get_InertiaRotationAngle(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
187
|
+
@winrt_mixinmethod
|
|
188
|
+
def put_InertiaRotationAngle(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
189
|
+
@winrt_mixinmethod
|
|
190
|
+
def get_InertiaRotationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
191
|
+
@winrt_mixinmethod
|
|
192
|
+
def put_InertiaRotationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
193
|
+
@winrt_mixinmethod
|
|
194
|
+
def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
195
|
+
@winrt_mixinmethod
|
|
196
|
+
def put_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
197
|
+
@winrt_mixinmethod
|
|
198
|
+
def get_InertiaTranslationDisplacement(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
199
|
+
@winrt_mixinmethod
|
|
200
|
+
def put_InertiaTranslationDisplacement(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
201
|
+
@winrt_mixinmethod
|
|
202
|
+
def get_ManipulationExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
203
|
+
@winrt_mixinmethod
|
|
204
|
+
def put_ManipulationExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
205
|
+
@winrt_mixinmethod
|
|
206
|
+
def get_MouseWheelParameters(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> win32more.Microsoft.UI.Input.MouseWheelParameters: ...
|
|
207
|
+
@winrt_mixinmethod
|
|
208
|
+
def get_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
209
|
+
@winrt_mixinmethod
|
|
210
|
+
def put_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
211
|
+
@winrt_mixinmethod
|
|
212
|
+
def CanBeDoubleTap(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
|
|
213
|
+
@winrt_mixinmethod
|
|
214
|
+
def CompleteGesture(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
|
|
215
|
+
@winrt_mixinmethod
|
|
216
|
+
def ProcessDownEvent(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
|
|
217
|
+
@winrt_mixinmethod
|
|
218
|
+
def ProcessMoveEvents(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]) -> Void: ...
|
|
219
|
+
@winrt_mixinmethod
|
|
220
|
+
def ProcessMouseWheelEvent(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint, isShiftKeyDown: Boolean, isControlKeyDown: Boolean) -> Void: ...
|
|
221
|
+
@winrt_mixinmethod
|
|
222
|
+
def get_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
223
|
+
@winrt_mixinmethod
|
|
224
|
+
def ProcessUpEvent(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
|
|
225
|
+
@winrt_mixinmethod
|
|
226
|
+
def add_Tapped(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.TappedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
227
|
+
@winrt_mixinmethod
|
|
228
|
+
def remove_Tapped(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
229
|
+
@winrt_mixinmethod
|
|
230
|
+
def add_RightTapped(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.RightTappedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
231
|
+
@winrt_mixinmethod
|
|
232
|
+
def remove_RightTapped(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
233
|
+
@winrt_mixinmethod
|
|
234
|
+
def add_Holding(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.HoldingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
235
|
+
@winrt_mixinmethod
|
|
236
|
+
def remove_Holding(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
237
|
+
@winrt_mixinmethod
|
|
238
|
+
def add_Dragging(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.DraggingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
239
|
+
@winrt_mixinmethod
|
|
240
|
+
def remove_Dragging(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
241
|
+
@winrt_mixinmethod
|
|
242
|
+
def get_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
243
|
+
@winrt_mixinmethod
|
|
244
|
+
def remove_ManipulationStarted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
245
|
+
@winrt_mixinmethod
|
|
246
|
+
def add_ManipulationUpdated(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationUpdatedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
247
|
+
@winrt_mixinmethod
|
|
248
|
+
def remove_ManipulationUpdated(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
249
|
+
@winrt_mixinmethod
|
|
250
|
+
def add_ManipulationInertiaStarting(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationInertiaStartingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
251
|
+
@winrt_mixinmethod
|
|
252
|
+
def remove_ManipulationInertiaStarting(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
253
|
+
@winrt_mixinmethod
|
|
254
|
+
def add_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationCompletedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
255
|
+
@winrt_mixinmethod
|
|
256
|
+
def remove_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
257
|
+
@winrt_mixinmethod
|
|
258
|
+
def add_CrossSliding(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.CrossSlidingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
259
|
+
@winrt_mixinmethod
|
|
260
|
+
def remove_CrossSliding(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
261
|
+
AutoProcessInertia = property(get_AutoProcessInertia, put_AutoProcessInertia)
|
|
262
|
+
CrossSlideExact = property(get_CrossSlideExact, put_CrossSlideExact)
|
|
263
|
+
CrossSlideHorizontally = property(get_CrossSlideHorizontally, put_CrossSlideHorizontally)
|
|
264
|
+
CrossSlideThresholds = property(get_CrossSlideThresholds, put_CrossSlideThresholds)
|
|
265
|
+
GestureSettings = property(get_GestureSettings, put_GestureSettings)
|
|
266
|
+
InertiaExpansion = property(get_InertiaExpansion, put_InertiaExpansion)
|
|
267
|
+
InertiaExpansionDeceleration = property(get_InertiaExpansionDeceleration, put_InertiaExpansionDeceleration)
|
|
268
|
+
InertiaRotationAngle = property(get_InertiaRotationAngle, put_InertiaRotationAngle)
|
|
269
|
+
InertiaRotationDeceleration = property(get_InertiaRotationDeceleration, put_InertiaRotationDeceleration)
|
|
270
|
+
InertiaTranslationDeceleration = property(get_InertiaTranslationDeceleration, put_InertiaTranslationDeceleration)
|
|
271
|
+
InertiaTranslationDisplacement = property(get_InertiaTranslationDisplacement, put_InertiaTranslationDisplacement)
|
|
272
|
+
IsActive = property(get_IsActive, None)
|
|
273
|
+
IsInertial = property(get_IsInertial, None)
|
|
274
|
+
ManipulationExact = property(get_ManipulationExact, put_ManipulationExact)
|
|
275
|
+
MouseWheelParameters = property(get_MouseWheelParameters, None)
|
|
276
|
+
PivotCenter = property(get_PivotCenter, put_PivotCenter)
|
|
277
|
+
PivotRadius = property(get_PivotRadius, put_PivotRadius)
|
|
278
|
+
ShowGestureFeedback = property(get_ShowGestureFeedback, put_ShowGestureFeedback)
|
|
279
|
+
ManipulationStarted = event()
|
|
280
|
+
Tapped = event()
|
|
281
|
+
RightTapped = event()
|
|
282
|
+
Holding = event()
|
|
283
|
+
Dragging = event()
|
|
284
|
+
ManipulationUpdated = event()
|
|
285
|
+
ManipulationInertiaStarting = event()
|
|
286
|
+
ManipulationCompleted = event()
|
|
287
|
+
CrossSliding = event()
|
|
288
|
+
class GestureSettings(Enum, UInt32):
|
|
289
|
+
None_ = 0
|
|
290
|
+
Tap = 1
|
|
291
|
+
DoubleTap = 2
|
|
292
|
+
Hold = 4
|
|
293
|
+
HoldWithMouse = 8
|
|
294
|
+
RightTap = 16
|
|
295
|
+
Drag = 32
|
|
296
|
+
ManipulationTranslateX = 64
|
|
297
|
+
ManipulationTranslateY = 128
|
|
298
|
+
ManipulationTranslateRailsX = 256
|
|
299
|
+
ManipulationTranslateRailsY = 512
|
|
300
|
+
ManipulationRotate = 1024
|
|
301
|
+
ManipulationScale = 2048
|
|
302
|
+
ManipulationTranslateInertia = 4096
|
|
303
|
+
ManipulationRotateInertia = 8192
|
|
304
|
+
ManipulationScaleInertia = 16384
|
|
305
|
+
CrossSlide = 32768
|
|
306
|
+
ManipulationMultipleFingerPanning = 65536
|
|
307
|
+
class HoldingEventArgs(ComPtr):
|
|
308
|
+
extends: IInspectable
|
|
309
|
+
default_interface: win32more.Microsoft.UI.Input.IHoldingEventArgs
|
|
310
|
+
_classid_ = 'Microsoft.UI.Input.HoldingEventArgs'
|
|
311
|
+
@winrt_mixinmethod
|
|
312
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
313
|
+
@winrt_mixinmethod
|
|
314
|
+
def get_HoldingState(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.HoldingState: ...
|
|
315
|
+
@winrt_mixinmethod
|
|
316
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
317
|
+
HoldingState = property(get_HoldingState, None)
|
|
318
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
319
|
+
Position = property(get_Position, None)
|
|
320
|
+
class HoldingState(Enum, Int32):
|
|
321
|
+
Started = 0
|
|
322
|
+
Completed = 1
|
|
323
|
+
Canceled = 2
|
|
324
|
+
class ICharacterReceivedEventArgs(ComPtr):
|
|
325
|
+
extends: IInspectable
|
|
326
|
+
_classid_ = 'Microsoft.UI.Input.ICharacterReceivedEventArgs'
|
|
327
|
+
_iid_ = Guid('{36122718-9263-592b-8d87-8f86543ffc95}')
|
|
328
|
+
@winrt_commethod(6)
|
|
329
|
+
def get_Handled(self) -> Boolean: ...
|
|
330
|
+
@winrt_commethod(7)
|
|
331
|
+
def put_Handled(self, value: Boolean) -> Void: ...
|
|
332
|
+
@winrt_commethod(8)
|
|
333
|
+
def get_KeyCode(self) -> UInt32: ...
|
|
334
|
+
@winrt_commethod(9)
|
|
335
|
+
def get_KeyStatus(self) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
|
|
336
|
+
Handled = property(get_Handled, put_Handled)
|
|
337
|
+
KeyCode = property(get_KeyCode, None)
|
|
338
|
+
KeyStatus = property(get_KeyStatus, None)
|
|
339
|
+
class IContextMenuKeyEventArgs(ComPtr):
|
|
340
|
+
extends: IInspectable
|
|
341
|
+
_classid_ = 'Microsoft.UI.Input.IContextMenuKeyEventArgs'
|
|
342
|
+
_iid_ = Guid('{f6025762-9426-541a-b647-037abdbecefc}')
|
|
343
|
+
@winrt_commethod(6)
|
|
344
|
+
def get_Handled(self) -> Boolean: ...
|
|
345
|
+
@winrt_commethod(7)
|
|
346
|
+
def put_Handled(self, value: Boolean) -> Void: ...
|
|
347
|
+
Handled = property(get_Handled, put_Handled)
|
|
348
|
+
class ICrossSlidingEventArgs(ComPtr):
|
|
349
|
+
extends: IInspectable
|
|
350
|
+
_classid_ = 'Microsoft.UI.Input.ICrossSlidingEventArgs'
|
|
351
|
+
_iid_ = Guid('{7679641f-ba9f-543c-a7c8-6229a98f89ef}')
|
|
352
|
+
@winrt_commethod(6)
|
|
353
|
+
def get_CrossSlidingState(self) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
|
|
354
|
+
@winrt_commethod(7)
|
|
355
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
356
|
+
@winrt_commethod(8)
|
|
357
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
358
|
+
CrossSlidingState = property(get_CrossSlidingState, None)
|
|
359
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
360
|
+
Position = property(get_Position, None)
|
|
361
|
+
class IDraggingEventArgs(ComPtr):
|
|
362
|
+
extends: IInspectable
|
|
363
|
+
_classid_ = 'Microsoft.UI.Input.IDraggingEventArgs'
|
|
364
|
+
_iid_ = Guid('{3efb1b75-3d3b-550e-963d-0828ca76128a}')
|
|
365
|
+
@winrt_commethod(6)
|
|
366
|
+
def get_DraggingState(self) -> win32more.Microsoft.UI.Input.DraggingState: ...
|
|
367
|
+
@winrt_commethod(7)
|
|
368
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
369
|
+
@winrt_commethod(8)
|
|
370
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
371
|
+
DraggingState = property(get_DraggingState, None)
|
|
372
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
373
|
+
Position = property(get_Position, None)
|
|
374
|
+
class IFocusChangedEventArgs(ComPtr):
|
|
375
|
+
extends: IInspectable
|
|
376
|
+
_classid_ = 'Microsoft.UI.Input.IFocusChangedEventArgs'
|
|
377
|
+
_iid_ = Guid('{a039b115-dbdf-594c-9b86-da6aa05c9fa2}')
|
|
378
|
+
@winrt_commethod(6)
|
|
379
|
+
def get_Handled(self) -> Boolean: ...
|
|
380
|
+
@winrt_commethod(7)
|
|
381
|
+
def put_Handled(self, value: Boolean) -> Void: ...
|
|
382
|
+
Handled = property(get_Handled, put_Handled)
|
|
383
|
+
class IFocusNavigationRequest(ComPtr):
|
|
384
|
+
extends: IInspectable
|
|
385
|
+
_classid_ = 'Microsoft.UI.Input.IFocusNavigationRequest'
|
|
386
|
+
_iid_ = Guid('{6d84bb83-9c84-5112-85e9-8919acf97262}')
|
|
387
|
+
@winrt_commethod(6)
|
|
388
|
+
def get_CorrelationId(self) -> Guid: ...
|
|
389
|
+
@winrt_commethod(7)
|
|
390
|
+
def get_HintRect(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.Foundation.Rect]: ...
|
|
391
|
+
@winrt_commethod(8)
|
|
392
|
+
def get_Reason(self) -> win32more.Microsoft.UI.Input.FocusNavigationReason: ...
|
|
393
|
+
CorrelationId = property(get_CorrelationId, None)
|
|
394
|
+
HintRect = property(get_HintRect, None)
|
|
395
|
+
Reason = property(get_Reason, None)
|
|
396
|
+
class IFocusNavigationRequestEventArgs(ComPtr):
|
|
397
|
+
extends: IInspectable
|
|
398
|
+
_classid_ = 'Microsoft.UI.Input.IFocusNavigationRequestEventArgs'
|
|
399
|
+
_iid_ = Guid('{35a63426-e271-59f9-a231-0d190314b415}')
|
|
400
|
+
@winrt_commethod(6)
|
|
401
|
+
def get_Request(self) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
402
|
+
@winrt_commethod(7)
|
|
403
|
+
def get_Result(self) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
404
|
+
@winrt_commethod(8)
|
|
405
|
+
def put_Result(self, value: win32more.Microsoft.UI.Input.FocusNavigationResult) -> Void: ...
|
|
406
|
+
Request = property(get_Request, None)
|
|
407
|
+
Result = property(get_Result, put_Result)
|
|
408
|
+
class IFocusNavigationRequestStatics(ComPtr):
|
|
409
|
+
extends: IInspectable
|
|
410
|
+
_classid_ = 'Microsoft.UI.Input.IFocusNavigationRequestStatics'
|
|
411
|
+
_iid_ = Guid('{8c4d2ed8-3a63-519e-a827-f57e263bd1ff}')
|
|
412
|
+
@winrt_commethod(6)
|
|
413
|
+
def Create(self, reason: win32more.Microsoft.UI.Input.FocusNavigationReason) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
414
|
+
@winrt_commethod(7)
|
|
415
|
+
def CreateWithHintRect(self, reason: win32more.Microsoft.UI.Input.FocusNavigationReason, hintRect: win32more.Windows.Foundation.Rect) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
416
|
+
@winrt_commethod(8)
|
|
417
|
+
def CreateWithHintRectAndId(self, reason: win32more.Microsoft.UI.Input.FocusNavigationReason, hintRect: win32more.Windows.Foundation.Rect, correlationId: Guid) -> win32more.Microsoft.UI.Input.FocusNavigationRequest: ...
|
|
418
|
+
class IGestureRecognizer(ComPtr):
|
|
419
|
+
extends: IInspectable
|
|
420
|
+
_classid_ = 'Microsoft.UI.Input.IGestureRecognizer'
|
|
421
|
+
_iid_ = Guid('{cda89afc-6bd0-595c-ba37-545fce5bf016}')
|
|
422
|
+
@winrt_commethod(6)
|
|
423
|
+
def get_AutoProcessInertia(self) -> Boolean: ...
|
|
424
|
+
@winrt_commethod(7)
|
|
425
|
+
def put_AutoProcessInertia(self, value: Boolean) -> Void: ...
|
|
426
|
+
@winrt_commethod(8)
|
|
427
|
+
def get_CrossSlideExact(self) -> Boolean: ...
|
|
428
|
+
@winrt_commethod(9)
|
|
429
|
+
def put_CrossSlideExact(self, value: Boolean) -> Void: ...
|
|
430
|
+
@winrt_commethod(10)
|
|
431
|
+
def get_CrossSlideHorizontally(self) -> Boolean: ...
|
|
432
|
+
@winrt_commethod(11)
|
|
433
|
+
def put_CrossSlideHorizontally(self, value: Boolean) -> Void: ...
|
|
434
|
+
@winrt_commethod(12)
|
|
435
|
+
def get_CrossSlideThresholds(self) -> win32more.Microsoft.UI.Input.CrossSlideThresholds: ...
|
|
436
|
+
@winrt_commethod(13)
|
|
437
|
+
def put_CrossSlideThresholds(self, value: win32more.Microsoft.UI.Input.CrossSlideThresholds) -> Void: ...
|
|
438
|
+
@winrt_commethod(14)
|
|
439
|
+
def get_GestureSettings(self) -> win32more.Microsoft.UI.Input.GestureSettings: ...
|
|
440
|
+
@winrt_commethod(15)
|
|
441
|
+
def put_GestureSettings(self, value: win32more.Microsoft.UI.Input.GestureSettings) -> Void: ...
|
|
442
|
+
@winrt_commethod(16)
|
|
443
|
+
def get_IsActive(self) -> Boolean: ...
|
|
444
|
+
@winrt_commethod(17)
|
|
445
|
+
def get_IsInertial(self) -> Boolean: ...
|
|
446
|
+
@winrt_commethod(18)
|
|
447
|
+
def get_PivotCenter(self) -> win32more.Windows.Foundation.Point: ...
|
|
448
|
+
@winrt_commethod(19)
|
|
449
|
+
def put_PivotCenter(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
450
|
+
@winrt_commethod(20)
|
|
451
|
+
def get_PivotRadius(self) -> Single: ...
|
|
452
|
+
@winrt_commethod(21)
|
|
453
|
+
def put_PivotRadius(self, value: Single) -> Void: ...
|
|
454
|
+
@winrt_commethod(22)
|
|
455
|
+
def get_InertiaExpansionDeceleration(self) -> Single: ...
|
|
456
|
+
@winrt_commethod(23)
|
|
457
|
+
def put_InertiaExpansionDeceleration(self, value: Single) -> Void: ...
|
|
458
|
+
@winrt_commethod(24)
|
|
459
|
+
def get_InertiaExpansion(self) -> Single: ...
|
|
460
|
+
@winrt_commethod(25)
|
|
461
|
+
def put_InertiaExpansion(self, value: Single) -> Void: ...
|
|
462
|
+
@winrt_commethod(26)
|
|
463
|
+
def get_InertiaRotationAngle(self) -> Single: ...
|
|
464
|
+
@winrt_commethod(27)
|
|
465
|
+
def put_InertiaRotationAngle(self, value: Single) -> Void: ...
|
|
466
|
+
@winrt_commethod(28)
|
|
467
|
+
def get_InertiaRotationDeceleration(self) -> Single: ...
|
|
468
|
+
@winrt_commethod(29)
|
|
469
|
+
def put_InertiaRotationDeceleration(self, value: Single) -> Void: ...
|
|
470
|
+
@winrt_commethod(30)
|
|
471
|
+
def get_InertiaTranslationDeceleration(self) -> Single: ...
|
|
472
|
+
@winrt_commethod(31)
|
|
473
|
+
def put_InertiaTranslationDeceleration(self, value: Single) -> Void: ...
|
|
474
|
+
@winrt_commethod(32)
|
|
475
|
+
def get_InertiaTranslationDisplacement(self) -> Single: ...
|
|
476
|
+
@winrt_commethod(33)
|
|
477
|
+
def put_InertiaTranslationDisplacement(self, value: Single) -> Void: ...
|
|
478
|
+
@winrt_commethod(34)
|
|
479
|
+
def get_ManipulationExact(self) -> Boolean: ...
|
|
480
|
+
@winrt_commethod(35)
|
|
481
|
+
def put_ManipulationExact(self, value: Boolean) -> Void: ...
|
|
482
|
+
@winrt_commethod(36)
|
|
483
|
+
def get_MouseWheelParameters(self) -> win32more.Microsoft.UI.Input.MouseWheelParameters: ...
|
|
484
|
+
@winrt_commethod(37)
|
|
485
|
+
def get_ShowGestureFeedback(self) -> Boolean: ...
|
|
486
|
+
@winrt_commethod(38)
|
|
487
|
+
def put_ShowGestureFeedback(self, value: Boolean) -> Void: ...
|
|
488
|
+
@winrt_commethod(39)
|
|
489
|
+
def CanBeDoubleTap(self, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
|
|
490
|
+
@winrt_commethod(40)
|
|
491
|
+
def CompleteGesture(self) -> Void: ...
|
|
492
|
+
@winrt_commethod(41)
|
|
493
|
+
def ProcessDownEvent(self, value: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
|
|
494
|
+
@winrt_commethod(42)
|
|
495
|
+
def ProcessMoveEvents(self, value: win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]) -> Void: ...
|
|
496
|
+
@winrt_commethod(43)
|
|
497
|
+
def ProcessMouseWheelEvent(self, value: win32more.Microsoft.UI.Input.PointerPoint, isShiftKeyDown: Boolean, isControlKeyDown: Boolean) -> Void: ...
|
|
498
|
+
@winrt_commethod(44)
|
|
499
|
+
def ProcessInertia(self) -> Void: ...
|
|
500
|
+
@winrt_commethod(45)
|
|
501
|
+
def ProcessUpEvent(self, value: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
|
|
502
|
+
@winrt_commethod(46)
|
|
503
|
+
def add_Tapped(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.TappedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
504
|
+
@winrt_commethod(47)
|
|
505
|
+
def remove_Tapped(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
506
|
+
@winrt_commethod(48)
|
|
507
|
+
def add_RightTapped(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.RightTappedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
508
|
+
@winrt_commethod(49)
|
|
509
|
+
def remove_RightTapped(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
510
|
+
@winrt_commethod(50)
|
|
511
|
+
def add_Holding(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.HoldingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
512
|
+
@winrt_commethod(51)
|
|
513
|
+
def remove_Holding(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
514
|
+
@winrt_commethod(52)
|
|
515
|
+
def add_Dragging(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.DraggingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
516
|
+
@winrt_commethod(53)
|
|
517
|
+
def remove_Dragging(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
518
|
+
@winrt_commethod(54)
|
|
519
|
+
def add_ManipulationStarted(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationStartedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
520
|
+
@winrt_commethod(55)
|
|
521
|
+
def remove_ManipulationStarted(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
522
|
+
@winrt_commethod(56)
|
|
523
|
+
def add_ManipulationUpdated(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationUpdatedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
524
|
+
@winrt_commethod(57)
|
|
525
|
+
def remove_ManipulationUpdated(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
526
|
+
@winrt_commethod(58)
|
|
527
|
+
def add_ManipulationInertiaStarting(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationInertiaStartingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
528
|
+
@winrt_commethod(59)
|
|
529
|
+
def remove_ManipulationInertiaStarting(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
530
|
+
@winrt_commethod(60)
|
|
531
|
+
def add_ManipulationCompleted(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationCompletedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
532
|
+
@winrt_commethod(61)
|
|
533
|
+
def remove_ManipulationCompleted(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
534
|
+
@winrt_commethod(62)
|
|
535
|
+
def add_CrossSliding(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.CrossSlidingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
536
|
+
@winrt_commethod(63)
|
|
537
|
+
def remove_CrossSliding(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
538
|
+
AutoProcessInertia = property(get_AutoProcessInertia, put_AutoProcessInertia)
|
|
539
|
+
CrossSlideExact = property(get_CrossSlideExact, put_CrossSlideExact)
|
|
540
|
+
CrossSlideHorizontally = property(get_CrossSlideHorizontally, put_CrossSlideHorizontally)
|
|
541
|
+
CrossSlideThresholds = property(get_CrossSlideThresholds, put_CrossSlideThresholds)
|
|
542
|
+
GestureSettings = property(get_GestureSettings, put_GestureSettings)
|
|
543
|
+
InertiaExpansion = property(get_InertiaExpansion, put_InertiaExpansion)
|
|
544
|
+
InertiaExpansionDeceleration = property(get_InertiaExpansionDeceleration, put_InertiaExpansionDeceleration)
|
|
545
|
+
InertiaRotationAngle = property(get_InertiaRotationAngle, put_InertiaRotationAngle)
|
|
546
|
+
InertiaRotationDeceleration = property(get_InertiaRotationDeceleration, put_InertiaRotationDeceleration)
|
|
547
|
+
InertiaTranslationDeceleration = property(get_InertiaTranslationDeceleration, put_InertiaTranslationDeceleration)
|
|
548
|
+
InertiaTranslationDisplacement = property(get_InertiaTranslationDisplacement, put_InertiaTranslationDisplacement)
|
|
549
|
+
IsActive = property(get_IsActive, None)
|
|
550
|
+
IsInertial = property(get_IsInertial, None)
|
|
551
|
+
ManipulationExact = property(get_ManipulationExact, put_ManipulationExact)
|
|
552
|
+
MouseWheelParameters = property(get_MouseWheelParameters, None)
|
|
553
|
+
PivotCenter = property(get_PivotCenter, put_PivotCenter)
|
|
554
|
+
PivotRadius = property(get_PivotRadius, put_PivotRadius)
|
|
555
|
+
ShowGestureFeedback = property(get_ShowGestureFeedback, put_ShowGestureFeedback)
|
|
556
|
+
Tapped = event()
|
|
557
|
+
RightTapped = event()
|
|
558
|
+
Holding = event()
|
|
559
|
+
Dragging = event()
|
|
560
|
+
ManipulationStarted = event()
|
|
561
|
+
ManipulationUpdated = event()
|
|
562
|
+
ManipulationInertiaStarting = event()
|
|
563
|
+
ManipulationCompleted = event()
|
|
564
|
+
CrossSliding = event()
|
|
565
|
+
class IHoldingEventArgs(ComPtr):
|
|
566
|
+
extends: IInspectable
|
|
567
|
+
_classid_ = 'Microsoft.UI.Input.IHoldingEventArgs'
|
|
568
|
+
_iid_ = Guid('{8e449e85-d223-533c-b0b2-bf7c6d10c2db}')
|
|
569
|
+
@winrt_commethod(6)
|
|
570
|
+
def get_HoldingState(self) -> win32more.Microsoft.UI.Input.HoldingState: ...
|
|
571
|
+
@winrt_commethod(7)
|
|
572
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
573
|
+
@winrt_commethod(8)
|
|
574
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
575
|
+
HoldingState = property(get_HoldingState, None)
|
|
576
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
577
|
+
Position = property(get_Position, None)
|
|
578
|
+
class IInputActivationListener(ComPtr):
|
|
579
|
+
extends: IInspectable
|
|
580
|
+
_classid_ = 'Microsoft.UI.Input.IInputActivationListener'
|
|
581
|
+
_iid_ = Guid('{3b818627-6ce7-5e0d-a0f5-6684fd1aec78}')
|
|
582
|
+
@winrt_commethod(6)
|
|
583
|
+
def get_State(self) -> win32more.Microsoft.UI.Input.InputActivationState: ...
|
|
584
|
+
@winrt_commethod(7)
|
|
585
|
+
def add_InputActivationChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputActivationListener, win32more.Microsoft.UI.Input.InputActivationListenerActivationChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
586
|
+
@winrt_commethod(8)
|
|
587
|
+
def remove_InputActivationChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
588
|
+
State = property(get_State, None)
|
|
589
|
+
InputActivationChanged = event()
|
|
590
|
+
class IInputActivationListenerActivationChangedEventArgs(ComPtr):
|
|
591
|
+
extends: IInspectable
|
|
592
|
+
_classid_ = 'Microsoft.UI.Input.IInputActivationListenerActivationChangedEventArgs'
|
|
593
|
+
_iid_ = Guid('{7978526b-00b6-5303-8f7d-55bef36da786}')
|
|
594
|
+
class IInputActivationListenerStatics(ComPtr):
|
|
595
|
+
extends: IInspectable
|
|
596
|
+
_classid_ = 'Microsoft.UI.Input.IInputActivationListenerStatics'
|
|
597
|
+
_iid_ = Guid('{c4249843-f053-5c99-9d51-720ade94224d}')
|
|
598
|
+
@winrt_commethod(6)
|
|
599
|
+
def GetForWindowId(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
|
|
600
|
+
class IInputActivationListenerStatics2(ComPtr):
|
|
601
|
+
extends: IInspectable
|
|
602
|
+
_classid_ = 'Microsoft.UI.Input.IInputActivationListenerStatics2'
|
|
603
|
+
_iid_ = Guid('{7ea26120-9636-5292-a7b1-56544ac51a22}')
|
|
604
|
+
@winrt_commethod(6)
|
|
605
|
+
def GetForIsland(self, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
|
|
606
|
+
class IInputCursor(ComPtr):
|
|
607
|
+
extends: IInspectable
|
|
608
|
+
_classid_ = 'Microsoft.UI.Input.IInputCursor'
|
|
609
|
+
_iid_ = Guid('{359b15f9-19c2-5714-8432-75176826406b}')
|
|
610
|
+
class IInputCursorFactory(ComPtr):
|
|
611
|
+
extends: IInspectable
|
|
612
|
+
_classid_ = 'Microsoft.UI.Input.IInputCursorFactory'
|
|
613
|
+
_iid_ = Guid('{2f47647b-4be0-53e9-be7e-c38d5459db6b}')
|
|
614
|
+
class IInputCursorStatics(ComPtr):
|
|
615
|
+
extends: IInspectable
|
|
616
|
+
_classid_ = 'Microsoft.UI.Input.IInputCursorStatics'
|
|
617
|
+
_iid_ = Guid('{92f6a552-099f-55fb-8c31-e450284c9643}')
|
|
618
|
+
@winrt_commethod(6)
|
|
619
|
+
def CreateFromCoreCursor(self, cursor: win32more.Windows.UI.Core.CoreCursor) -> win32more.Microsoft.UI.Input.InputCursor: ...
|
|
620
|
+
class IInputCustomCursor(ComPtr):
|
|
621
|
+
extends: IInspectable
|
|
622
|
+
_classid_ = 'Microsoft.UI.Input.IInputCustomCursor'
|
|
623
|
+
_iid_ = Guid('{5486f042-7e1a-5dc8-8041-e47b609a5ba1}')
|
|
624
|
+
class IInputCustomCursorFactory(ComPtr):
|
|
625
|
+
extends: IInspectable
|
|
626
|
+
_classid_ = 'Microsoft.UI.Input.IInputCustomCursorFactory'
|
|
627
|
+
_iid_ = Guid('{6f402882-66e0-57d3-89d0-aa5e2ff917bc}')
|
|
628
|
+
class IInputDesktopNamedResourceCursor(ComPtr):
|
|
629
|
+
extends: IInspectable
|
|
630
|
+
_classid_ = 'Microsoft.UI.Input.IInputDesktopNamedResourceCursor'
|
|
631
|
+
_iid_ = Guid('{f40ea93b-0ed7-5b3a-bfe2-14e2b5ad88a3}')
|
|
632
|
+
@winrt_commethod(6)
|
|
633
|
+
def get_ModuleName(self) -> WinRT_String: ...
|
|
634
|
+
@winrt_commethod(7)
|
|
635
|
+
def get_ResourceName(self) -> WinRT_String: ...
|
|
636
|
+
ModuleName = property(get_ModuleName, None)
|
|
637
|
+
ResourceName = property(get_ResourceName, None)
|
|
638
|
+
class IInputDesktopNamedResourceCursorStatics(ComPtr):
|
|
639
|
+
extends: IInspectable
|
|
640
|
+
_classid_ = 'Microsoft.UI.Input.IInputDesktopNamedResourceCursorStatics'
|
|
641
|
+
_iid_ = Guid('{e8b6d5aa-898b-5e69-b01f-383a0943e3e4}')
|
|
642
|
+
@winrt_commethod(6)
|
|
643
|
+
def Create(self, resourceName: WinRT_String) -> win32more.Microsoft.UI.Input.InputDesktopNamedResourceCursor: ...
|
|
644
|
+
@winrt_commethod(7)
|
|
645
|
+
def CreateFromModule(self, moduleName: WinRT_String, resourceName: WinRT_String) -> win32more.Microsoft.UI.Input.InputDesktopNamedResourceCursor: ...
|
|
646
|
+
class IInputDesktopResourceCursor(ComPtr):
|
|
647
|
+
extends: IInspectable
|
|
648
|
+
_classid_ = 'Microsoft.UI.Input.IInputDesktopResourceCursor'
|
|
649
|
+
_iid_ = Guid('{1df2777f-7c90-58fc-a7a3-d5736c6510fd}')
|
|
650
|
+
@winrt_commethod(6)
|
|
651
|
+
def get_ModuleName(self) -> WinRT_String: ...
|
|
652
|
+
@winrt_commethod(7)
|
|
653
|
+
def get_ResourceId(self) -> UInt32: ...
|
|
654
|
+
ModuleName = property(get_ModuleName, None)
|
|
655
|
+
ResourceId = property(get_ResourceId, None)
|
|
656
|
+
class IInputDesktopResourceCursorStatics(ComPtr):
|
|
657
|
+
extends: IInspectable
|
|
658
|
+
_classid_ = 'Microsoft.UI.Input.IInputDesktopResourceCursorStatics'
|
|
659
|
+
_iid_ = Guid('{f440dc37-a0b6-56eb-bcec-b024f2233d47}')
|
|
660
|
+
@winrt_commethod(6)
|
|
661
|
+
def Create(self, resourceId: UInt32) -> win32more.Microsoft.UI.Input.InputDesktopResourceCursor: ...
|
|
662
|
+
@winrt_commethod(7)
|
|
663
|
+
def CreateFromModule(self, moduleName: WinRT_String, resourceId: UInt32) -> win32more.Microsoft.UI.Input.InputDesktopResourceCursor: ...
|
|
664
|
+
class IInputFocusController(ComPtr):
|
|
665
|
+
extends: IInspectable
|
|
666
|
+
_classid_ = 'Microsoft.UI.Input.IInputFocusController'
|
|
667
|
+
_iid_ = Guid('{8dfdc26c-8b8d-515d-8ddd-4685b3a540e9}')
|
|
668
|
+
@winrt_commethod(6)
|
|
669
|
+
def get_HasFocus(self) -> Boolean: ...
|
|
670
|
+
@winrt_commethod(7)
|
|
671
|
+
def TrySetFocus(self) -> Boolean: ...
|
|
672
|
+
@winrt_commethod(8)
|
|
673
|
+
def add_GotFocus(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
674
|
+
@winrt_commethod(9)
|
|
675
|
+
def remove_GotFocus(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
676
|
+
@winrt_commethod(10)
|
|
677
|
+
def add_LostFocus(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
678
|
+
@winrt_commethod(11)
|
|
679
|
+
def remove_LostFocus(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
680
|
+
HasFocus = property(get_HasFocus, None)
|
|
681
|
+
GotFocus = event()
|
|
682
|
+
LostFocus = event()
|
|
683
|
+
class IInputFocusController2(ComPtr):
|
|
684
|
+
extends: IInspectable
|
|
685
|
+
_classid_ = 'Microsoft.UI.Input.IInputFocusController2'
|
|
686
|
+
_iid_ = Guid('{5165077c-cd4b-501d-b386-b50682360185}')
|
|
687
|
+
@winrt_commethod(6)
|
|
688
|
+
def DepartFocus(self, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
689
|
+
@winrt_commethod(7)
|
|
690
|
+
def add_NavigateFocusRequested(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusNavigationRequestEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
691
|
+
@winrt_commethod(8)
|
|
692
|
+
def remove_NavigateFocusRequested(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
693
|
+
NavigateFocusRequested = event()
|
|
694
|
+
class IInputFocusControllerStatics(ComPtr):
|
|
695
|
+
extends: IInspectable
|
|
696
|
+
_classid_ = 'Microsoft.UI.Input.IInputFocusControllerStatics'
|
|
697
|
+
_iid_ = Guid('{aeb311da-da9b-5a1b-92f4-83ddde933e00}')
|
|
698
|
+
@winrt_commethod(6)
|
|
699
|
+
def GetForIsland(self, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputFocusController: ...
|
|
700
|
+
class IInputFocusNavigationHost(ComPtr):
|
|
701
|
+
extends: IInspectable
|
|
702
|
+
_classid_ = 'Microsoft.UI.Input.IInputFocusNavigationHost'
|
|
703
|
+
_iid_ = Guid('{53c2a147-932c-5486-a9c6-f6c5a9c65956}')
|
|
704
|
+
@winrt_commethod(6)
|
|
705
|
+
def get_ContainsFocus(self) -> Boolean: ...
|
|
706
|
+
@winrt_commethod(7)
|
|
707
|
+
def NavigateFocus(self, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
708
|
+
@winrt_commethod(8)
|
|
709
|
+
def add_DepartFocusRequested(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusNavigationHost, win32more.Microsoft.UI.Input.FocusNavigationRequestEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
710
|
+
@winrt_commethod(9)
|
|
711
|
+
def remove_DepartFocusRequested(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
712
|
+
ContainsFocus = property(get_ContainsFocus, None)
|
|
713
|
+
DepartFocusRequested = event()
|
|
714
|
+
class IInputFocusNavigationHostStatics(ComPtr):
|
|
715
|
+
extends: IInspectable
|
|
716
|
+
_classid_ = 'Microsoft.UI.Input.IInputFocusNavigationHostStatics'
|
|
717
|
+
_iid_ = Guid('{c9c62cd1-73db-5aa9-b89d-143509db8f37}')
|
|
718
|
+
@winrt_commethod(6)
|
|
719
|
+
def GetForSiteBridge(self, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
720
|
+
class IInputKeyboardSource(ComPtr):
|
|
721
|
+
extends: IInspectable
|
|
722
|
+
_classid_ = 'Microsoft.UI.Input.IInputKeyboardSource'
|
|
723
|
+
_iid_ = Guid('{ed61b906-16ad-5df7-a550-5e6f7d2229f7}')
|
|
724
|
+
class IInputKeyboardSource2(ComPtr):
|
|
725
|
+
extends: IInspectable
|
|
726
|
+
_classid_ = 'Microsoft.UI.Input.IInputKeyboardSource2'
|
|
727
|
+
_iid_ = Guid('{79d1c9b6-b3c9-5ec2-8a5b-707088787f78}')
|
|
728
|
+
@winrt_commethod(6)
|
|
729
|
+
def GetCurrentKeyState(self, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
|
|
730
|
+
@winrt_commethod(7)
|
|
731
|
+
def GetKeyState(self, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
|
|
732
|
+
@winrt_commethod(8)
|
|
733
|
+
def add_CharacterReceived(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.CharacterReceivedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
734
|
+
@winrt_commethod(9)
|
|
735
|
+
def remove_CharacterReceived(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
736
|
+
@winrt_commethod(10)
|
|
737
|
+
def add_ContextMenuKey(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.ContextMenuKeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
738
|
+
@winrt_commethod(11)
|
|
739
|
+
def remove_ContextMenuKey(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
740
|
+
@winrt_commethod(12)
|
|
741
|
+
def add_KeyDown(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
742
|
+
@winrt_commethod(13)
|
|
743
|
+
def remove_KeyDown(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
744
|
+
@winrt_commethod(14)
|
|
745
|
+
def add_KeyUp(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
746
|
+
@winrt_commethod(15)
|
|
747
|
+
def remove_KeyUp(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
748
|
+
@winrt_commethod(16)
|
|
749
|
+
def add_SystemKeyDown(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
750
|
+
@winrt_commethod(17)
|
|
751
|
+
def remove_SystemKeyDown(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
752
|
+
@winrt_commethod(18)
|
|
753
|
+
def add_SystemKeyUp(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
754
|
+
@winrt_commethod(19)
|
|
755
|
+
def remove_SystemKeyUp(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
756
|
+
CharacterReceived = event()
|
|
757
|
+
ContextMenuKey = event()
|
|
758
|
+
KeyDown = event()
|
|
759
|
+
KeyUp = event()
|
|
760
|
+
SystemKeyDown = event()
|
|
761
|
+
SystemKeyUp = event()
|
|
762
|
+
class IInputKeyboardSourceStatics(ComPtr):
|
|
763
|
+
extends: IInspectable
|
|
764
|
+
_classid_ = 'Microsoft.UI.Input.IInputKeyboardSourceStatics'
|
|
765
|
+
_iid_ = Guid('{f4e1563d-8c2e-5bcd-b784-47adeaa3cd7e}')
|
|
766
|
+
@winrt_commethod(6)
|
|
767
|
+
def GetKeyStateForCurrentThread(self, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Windows.UI.Core.CoreVirtualKeyStates: ...
|
|
768
|
+
class IInputKeyboardSourceStatics2(ComPtr):
|
|
769
|
+
extends: IInspectable
|
|
770
|
+
_classid_ = 'Microsoft.UI.Input.IInputKeyboardSourceStatics2'
|
|
771
|
+
_iid_ = Guid('{8857518c-2899-5f11-9b64-0ad83234824b}')
|
|
772
|
+
@winrt_commethod(6)
|
|
773
|
+
def GetForIsland(self, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputKeyboardSource: ...
|
|
774
|
+
class IInputLightDismissAction(ComPtr):
|
|
775
|
+
extends: IInspectable
|
|
776
|
+
_classid_ = 'Microsoft.UI.Input.IInputLightDismissAction'
|
|
777
|
+
_iid_ = Guid('{e8a39502-a860-502f-8c10-3646d43aecf1}')
|
|
778
|
+
@winrt_commethod(6)
|
|
779
|
+
def add_Dismissed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputLightDismissAction, win32more.Microsoft.UI.Input.InputLightDismissEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
780
|
+
@winrt_commethod(7)
|
|
781
|
+
def remove_Dismissed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
782
|
+
Dismissed = event()
|
|
783
|
+
class IInputLightDismissActionStatics(ComPtr):
|
|
784
|
+
extends: IInspectable
|
|
785
|
+
_classid_ = 'Microsoft.UI.Input.IInputLightDismissActionStatics'
|
|
786
|
+
_iid_ = Guid('{ed9b8def-6496-5169-984d-d44b4e690623}')
|
|
787
|
+
@winrt_commethod(6)
|
|
788
|
+
def GetForWindowId(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputLightDismissAction: ...
|
|
789
|
+
class IInputLightDismissEventArgs(ComPtr):
|
|
790
|
+
extends: IInspectable
|
|
791
|
+
_classid_ = 'Microsoft.UI.Input.IInputLightDismissEventArgs'
|
|
792
|
+
_iid_ = Guid('{078660ee-07ca-5808-b982-e6e899cf098c}')
|
|
793
|
+
class IInputNonClientPointerSource(ComPtr):
|
|
794
|
+
extends: IInspectable
|
|
795
|
+
_classid_ = 'Microsoft.UI.Input.IInputNonClientPointerSource'
|
|
796
|
+
_iid_ = Guid('{471732b4-3d07-5104-b192-ebacf71e86df}')
|
|
797
|
+
@winrt_commethod(6)
|
|
798
|
+
def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
799
|
+
@winrt_commethod(7)
|
|
800
|
+
def ClearAllRegionRects(self) -> Void: ...
|
|
801
|
+
@winrt_commethod(8)
|
|
802
|
+
def ClearRegionRects(self, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> Void: ...
|
|
803
|
+
@winrt_commethod(9)
|
|
804
|
+
def GetRegionRects(self, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> ReceiveArray[win32more.Windows.Graphics.RectInt32]: ...
|
|
805
|
+
@winrt_commethod(10)
|
|
806
|
+
def SetRegionRects(self, region: win32more.Microsoft.UI.Input.NonClientRegionKind, rects: PassArray[win32more.Windows.Graphics.RectInt32]) -> Void: ...
|
|
807
|
+
@winrt_commethod(11)
|
|
808
|
+
def add_CaptionTapped(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientCaptionTappedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
809
|
+
@winrt_commethod(12)
|
|
810
|
+
def remove_CaptionTapped(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
811
|
+
@winrt_commethod(13)
|
|
812
|
+
def add_PointerEntered(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
813
|
+
@winrt_commethod(14)
|
|
814
|
+
def remove_PointerEntered(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
815
|
+
@winrt_commethod(15)
|
|
816
|
+
def add_PointerExited(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
817
|
+
@winrt_commethod(16)
|
|
818
|
+
def remove_PointerExited(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
819
|
+
@winrt_commethod(17)
|
|
820
|
+
def add_PointerMoved(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
821
|
+
@winrt_commethod(18)
|
|
822
|
+
def remove_PointerMoved(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
823
|
+
@winrt_commethod(19)
|
|
824
|
+
def add_PointerPressed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
825
|
+
@winrt_commethod(20)
|
|
826
|
+
def remove_PointerPressed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
827
|
+
@winrt_commethod(21)
|
|
828
|
+
def add_PointerReleased(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
829
|
+
@winrt_commethod(22)
|
|
830
|
+
def remove_PointerReleased(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
831
|
+
@winrt_commethod(23)
|
|
832
|
+
def add_RegionsChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientRegionsChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
833
|
+
@winrt_commethod(24)
|
|
834
|
+
def remove_RegionsChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
835
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
836
|
+
CaptionTapped = event()
|
|
837
|
+
PointerEntered = event()
|
|
838
|
+
PointerExited = event()
|
|
839
|
+
PointerMoved = event()
|
|
840
|
+
PointerPressed = event()
|
|
841
|
+
PointerReleased = event()
|
|
842
|
+
RegionsChanged = event()
|
|
843
|
+
class IInputNonClientPointerSourceStatics(ComPtr):
|
|
844
|
+
extends: IInspectable
|
|
845
|
+
_classid_ = 'Microsoft.UI.Input.IInputNonClientPointerSourceStatics'
|
|
846
|
+
_iid_ = Guid('{7d0b775c-1903-5dc7-bd2f-7a4b31f0cff2}')
|
|
847
|
+
@winrt_commethod(6)
|
|
848
|
+
def GetForWindowId(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputNonClientPointerSource: ...
|
|
849
|
+
class IInputObject(ComPtr):
|
|
850
|
+
extends: IInspectable
|
|
851
|
+
_classid_ = 'Microsoft.UI.Input.IInputObject'
|
|
852
|
+
_iid_ = Guid('{42edbc88-d386-544d-b1b8-68617fe68282}')
|
|
853
|
+
@winrt_commethod(6)
|
|
854
|
+
def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
855
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
856
|
+
class IInputObjectFactory(ComPtr):
|
|
857
|
+
extends: IInspectable
|
|
858
|
+
_classid_ = 'Microsoft.UI.Input.IInputObjectFactory'
|
|
859
|
+
_iid_ = Guid('{f7786bc2-b0b8-5961-9a57-ae199d452106}')
|
|
860
|
+
class IInputPointerSource(ComPtr):
|
|
861
|
+
extends: IInspectable
|
|
862
|
+
_classid_ = 'Microsoft.UI.Input.IInputPointerSource'
|
|
863
|
+
_iid_ = Guid('{6a6c2764-c3f4-5be5-8447-c9a98766c240}')
|
|
864
|
+
@winrt_commethod(6)
|
|
865
|
+
def get_Cursor(self) -> win32more.Microsoft.UI.Input.InputCursor: ...
|
|
866
|
+
@winrt_commethod(7)
|
|
867
|
+
def put_Cursor(self, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
|
|
868
|
+
@winrt_commethod(8)
|
|
869
|
+
def get_DeviceKinds(self) -> win32more.Microsoft.UI.Input.InputPointerSourceDeviceKinds: ...
|
|
870
|
+
@winrt_commethod(9)
|
|
871
|
+
def add_PointerCaptureLost(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
872
|
+
@winrt_commethod(10)
|
|
873
|
+
def remove_PointerCaptureLost(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
874
|
+
@winrt_commethod(11)
|
|
875
|
+
def add_PointerEntered(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
876
|
+
@winrt_commethod(12)
|
|
877
|
+
def remove_PointerEntered(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
878
|
+
@winrt_commethod(13)
|
|
879
|
+
def add_PointerExited(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
880
|
+
@winrt_commethod(14)
|
|
881
|
+
def remove_PointerExited(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
882
|
+
@winrt_commethod(15)
|
|
883
|
+
def add_PointerMoved(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
884
|
+
@winrt_commethod(16)
|
|
885
|
+
def remove_PointerMoved(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
886
|
+
@winrt_commethod(17)
|
|
887
|
+
def add_PointerPressed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
888
|
+
@winrt_commethod(18)
|
|
889
|
+
def remove_PointerPressed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
890
|
+
@winrt_commethod(19)
|
|
891
|
+
def add_PointerReleased(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
892
|
+
@winrt_commethod(20)
|
|
893
|
+
def remove_PointerReleased(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
894
|
+
@winrt_commethod(21)
|
|
895
|
+
def add_PointerRoutedAway(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
896
|
+
@winrt_commethod(22)
|
|
897
|
+
def remove_PointerRoutedAway(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
898
|
+
@winrt_commethod(23)
|
|
899
|
+
def add_PointerRoutedReleased(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
900
|
+
@winrt_commethod(24)
|
|
901
|
+
def remove_PointerRoutedReleased(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
902
|
+
@winrt_commethod(25)
|
|
903
|
+
def add_PointerRoutedTo(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
904
|
+
@winrt_commethod(26)
|
|
905
|
+
def remove_PointerRoutedTo(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
906
|
+
@winrt_commethod(27)
|
|
907
|
+
def add_PointerWheelChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
908
|
+
@winrt_commethod(28)
|
|
909
|
+
def remove_PointerWheelChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
910
|
+
Cursor = property(get_Cursor, put_Cursor)
|
|
911
|
+
DeviceKinds = property(get_DeviceKinds, None)
|
|
912
|
+
PointerCaptureLost = event()
|
|
913
|
+
PointerEntered = event()
|
|
914
|
+
PointerExited = event()
|
|
915
|
+
PointerMoved = event()
|
|
916
|
+
PointerPressed = event()
|
|
917
|
+
PointerReleased = event()
|
|
918
|
+
PointerRoutedAway = event()
|
|
919
|
+
PointerRoutedReleased = event()
|
|
920
|
+
PointerRoutedTo = event()
|
|
921
|
+
PointerWheelChanged = event()
|
|
922
|
+
class IInputPointerSourceStatics(ComPtr):
|
|
923
|
+
extends: IInspectable
|
|
924
|
+
_classid_ = 'Microsoft.UI.Input.IInputPointerSourceStatics'
|
|
925
|
+
_iid_ = Guid('{e8a19fd1-a914-533f-9b0f-6bf0065e6781}')
|
|
926
|
+
@winrt_commethod(6)
|
|
927
|
+
def GetForIsland(self, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPointerSource: ...
|
|
928
|
+
class IInputPreTranslateKeyboardSource(ComPtr):
|
|
929
|
+
extends: IInspectable
|
|
930
|
+
_classid_ = 'Microsoft.UI.Input.IInputPreTranslateKeyboardSource'
|
|
931
|
+
_iid_ = Guid('{2f327feb-b7e7-5e37-a0cc-37dcabe76588}')
|
|
932
|
+
class IInputPreTranslateKeyboardSourceStatics(ComPtr):
|
|
933
|
+
extends: IInspectable
|
|
934
|
+
_classid_ = 'Microsoft.UI.Input.IInputPreTranslateKeyboardSourceStatics'
|
|
935
|
+
_iid_ = Guid('{23d584d2-af8c-5a8a-806f-2ba9c5b1a5ec}')
|
|
936
|
+
@winrt_commethod(6)
|
|
937
|
+
def GetForIsland(self, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPreTranslateKeyboardSource: ...
|
|
938
|
+
class IInputSystemCursor(ComPtr):
|
|
939
|
+
extends: IInspectable
|
|
940
|
+
_classid_ = 'Microsoft.UI.Input.IInputSystemCursor'
|
|
941
|
+
_iid_ = Guid('{59f538e7-c500-59ab-8b54-0bc6100fd49e}')
|
|
942
|
+
@winrt_commethod(6)
|
|
943
|
+
def get_CursorShape(self) -> win32more.Microsoft.UI.Input.InputSystemCursorShape: ...
|
|
944
|
+
CursorShape = property(get_CursorShape, None)
|
|
945
|
+
class IInputSystemCursorStatics(ComPtr):
|
|
946
|
+
extends: IInspectable
|
|
947
|
+
_classid_ = 'Microsoft.UI.Input.IInputSystemCursorStatics'
|
|
948
|
+
_iid_ = Guid('{d3860bb6-698a-5814-aedd-c2fa8bba5a02}')
|
|
949
|
+
@winrt_commethod(6)
|
|
950
|
+
def Create(self, type: win32more.Microsoft.UI.Input.InputSystemCursorShape) -> win32more.Microsoft.UI.Input.InputSystemCursor: ...
|
|
951
|
+
class IKeyEventArgs(ComPtr):
|
|
952
|
+
extends: IInspectable
|
|
953
|
+
_classid_ = 'Microsoft.UI.Input.IKeyEventArgs'
|
|
954
|
+
_iid_ = Guid('{40d5bb74-977e-5194-8039-9f6c44427bbb}')
|
|
955
|
+
@winrt_commethod(6)
|
|
956
|
+
def get_Handled(self) -> Boolean: ...
|
|
957
|
+
@winrt_commethod(7)
|
|
958
|
+
def put_Handled(self, value: Boolean) -> Void: ...
|
|
959
|
+
@winrt_commethod(8)
|
|
960
|
+
def get_KeyStatus(self) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
|
|
961
|
+
@winrt_commethod(9)
|
|
962
|
+
def get_Timestamp(self) -> UInt64: ...
|
|
963
|
+
@winrt_commethod(10)
|
|
964
|
+
def get_VirtualKey(self) -> win32more.Windows.System.VirtualKey: ...
|
|
965
|
+
Handled = property(get_Handled, put_Handled)
|
|
966
|
+
KeyStatus = property(get_KeyStatus, None)
|
|
967
|
+
Timestamp = property(get_Timestamp, None)
|
|
968
|
+
VirtualKey = property(get_VirtualKey, None)
|
|
969
|
+
class IManipulationCompletedEventArgs(ComPtr):
|
|
970
|
+
extends: IInspectable
|
|
971
|
+
_classid_ = 'Microsoft.UI.Input.IManipulationCompletedEventArgs'
|
|
972
|
+
_iid_ = Guid('{0e0249d4-46e4-5559-aee3-fa45ce2a7f56}')
|
|
973
|
+
@winrt_commethod(6)
|
|
974
|
+
def get_Cumulative(self) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
975
|
+
@winrt_commethod(7)
|
|
976
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
977
|
+
@winrt_commethod(8)
|
|
978
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
979
|
+
@winrt_commethod(9)
|
|
980
|
+
def get_Velocities(self) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
981
|
+
Cumulative = property(get_Cumulative, None)
|
|
982
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
983
|
+
Position = property(get_Position, None)
|
|
984
|
+
Velocities = property(get_Velocities, None)
|
|
985
|
+
class IManipulationInertiaStartingEventArgs(ComPtr):
|
|
986
|
+
extends: IInspectable
|
|
987
|
+
_classid_ = 'Microsoft.UI.Input.IManipulationInertiaStartingEventArgs'
|
|
988
|
+
_iid_ = Guid('{acf9ef71-6e15-56ab-9260-f0d3ce5f66e8}')
|
|
989
|
+
@winrt_commethod(6)
|
|
990
|
+
def get_Cumulative(self) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
991
|
+
@winrt_commethod(7)
|
|
992
|
+
def get_Delta(self) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
993
|
+
@winrt_commethod(8)
|
|
994
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
995
|
+
@winrt_commethod(9)
|
|
996
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
997
|
+
@winrt_commethod(10)
|
|
998
|
+
def get_Velocities(self) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
999
|
+
Cumulative = property(get_Cumulative, None)
|
|
1000
|
+
Delta = property(get_Delta, None)
|
|
1001
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1002
|
+
Position = property(get_Position, None)
|
|
1003
|
+
Velocities = property(get_Velocities, None)
|
|
1004
|
+
class IManipulationStartedEventArgs(ComPtr):
|
|
1005
|
+
extends: IInspectable
|
|
1006
|
+
_classid_ = 'Microsoft.UI.Input.IManipulationStartedEventArgs'
|
|
1007
|
+
_iid_ = Guid('{4a616613-eef1-5f1b-a768-0775478d49d4}')
|
|
1008
|
+
@winrt_commethod(6)
|
|
1009
|
+
def get_Cumulative(self) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1010
|
+
@winrt_commethod(7)
|
|
1011
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1012
|
+
@winrt_commethod(8)
|
|
1013
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
1014
|
+
Cumulative = property(get_Cumulative, None)
|
|
1015
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1016
|
+
Position = property(get_Position, None)
|
|
1017
|
+
class IManipulationUpdatedEventArgs(ComPtr):
|
|
1018
|
+
extends: IInspectable
|
|
1019
|
+
_classid_ = 'Microsoft.UI.Input.IManipulationUpdatedEventArgs'
|
|
1020
|
+
_iid_ = Guid('{406e1961-0c98-5fc0-b3d8-116492ef0053}')
|
|
1021
|
+
@winrt_commethod(6)
|
|
1022
|
+
def get_Cumulative(self) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1023
|
+
@winrt_commethod(7)
|
|
1024
|
+
def get_Delta(self) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1025
|
+
@winrt_commethod(8)
|
|
1026
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1027
|
+
@winrt_commethod(9)
|
|
1028
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
1029
|
+
@winrt_commethod(10)
|
|
1030
|
+
def get_Velocities(self) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
1031
|
+
Cumulative = property(get_Cumulative, None)
|
|
1032
|
+
Delta = property(get_Delta, None)
|
|
1033
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1034
|
+
Position = property(get_Position, None)
|
|
1035
|
+
Velocities = property(get_Velocities, None)
|
|
1036
|
+
class IMouseWheelParameters(ComPtr):
|
|
1037
|
+
extends: IInspectable
|
|
1038
|
+
_classid_ = 'Microsoft.UI.Input.IMouseWheelParameters'
|
|
1039
|
+
_iid_ = Guid('{6d98be40-1d56-51d1-aa0d-f325439cd009}')
|
|
1040
|
+
@winrt_commethod(6)
|
|
1041
|
+
def get_CharTranslation(self) -> win32more.Windows.Foundation.Point: ...
|
|
1042
|
+
@winrt_commethod(7)
|
|
1043
|
+
def put_CharTranslation(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1044
|
+
@winrt_commethod(8)
|
|
1045
|
+
def get_DeltaScale(self) -> Single: ...
|
|
1046
|
+
@winrt_commethod(9)
|
|
1047
|
+
def put_DeltaScale(self, value: Single) -> Void: ...
|
|
1048
|
+
@winrt_commethod(10)
|
|
1049
|
+
def get_DeltaRotationAngle(self) -> Single: ...
|
|
1050
|
+
@winrt_commethod(11)
|
|
1051
|
+
def put_DeltaRotationAngle(self, value: Single) -> Void: ...
|
|
1052
|
+
@winrt_commethod(12)
|
|
1053
|
+
def get_PageTranslation(self) -> win32more.Windows.Foundation.Point: ...
|
|
1054
|
+
@winrt_commethod(13)
|
|
1055
|
+
def put_PageTranslation(self, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1056
|
+
CharTranslation = property(get_CharTranslation, put_CharTranslation)
|
|
1057
|
+
DeltaRotationAngle = property(get_DeltaRotationAngle, put_DeltaRotationAngle)
|
|
1058
|
+
DeltaScale = property(get_DeltaScale, put_DeltaScale)
|
|
1059
|
+
PageTranslation = property(get_PageTranslation, put_PageTranslation)
|
|
1060
|
+
class INonClientCaptionTappedEventArgs(ComPtr):
|
|
1061
|
+
extends: IInspectable
|
|
1062
|
+
_classid_ = 'Microsoft.UI.Input.INonClientCaptionTappedEventArgs'
|
|
1063
|
+
_iid_ = Guid('{3d173531-991f-5753-b7e0-14a121c3cd2d}')
|
|
1064
|
+
@winrt_commethod(6)
|
|
1065
|
+
def get_Point(self) -> win32more.Windows.Foundation.Point: ...
|
|
1066
|
+
@winrt_commethod(7)
|
|
1067
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1068
|
+
Point = property(get_Point, None)
|
|
1069
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1070
|
+
class INonClientPointerEventArgs(ComPtr):
|
|
1071
|
+
extends: IInspectable
|
|
1072
|
+
_classid_ = 'Microsoft.UI.Input.INonClientPointerEventArgs'
|
|
1073
|
+
_iid_ = Guid('{a5b44aec-b797-505a-a129-ae4e5271c73c}')
|
|
1074
|
+
@winrt_commethod(6)
|
|
1075
|
+
def get_Point(self) -> win32more.Windows.Foundation.Point: ...
|
|
1076
|
+
@winrt_commethod(7)
|
|
1077
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1078
|
+
@winrt_commethod(8)
|
|
1079
|
+
def get_RegionKind(self) -> win32more.Microsoft.UI.Input.NonClientRegionKind: ...
|
|
1080
|
+
@winrt_commethod(9)
|
|
1081
|
+
def get_IsPointInRegion(self) -> Boolean: ...
|
|
1082
|
+
IsPointInRegion = property(get_IsPointInRegion, None)
|
|
1083
|
+
Point = property(get_Point, None)
|
|
1084
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1085
|
+
RegionKind = property(get_RegionKind, None)
|
|
1086
|
+
class INonClientRegionsChangedEventArgs(ComPtr):
|
|
1087
|
+
extends: IInspectable
|
|
1088
|
+
_classid_ = 'Microsoft.UI.Input.INonClientRegionsChangedEventArgs'
|
|
1089
|
+
_iid_ = Guid('{fe97ee95-1824-51b2-b8eb-10ff0665ce23}')
|
|
1090
|
+
@winrt_commethod(6)
|
|
1091
|
+
def get_ChangedRegions(self) -> ReceiveArray[win32more.Microsoft.UI.Input.NonClientRegionKind]: ...
|
|
1092
|
+
ChangedRegions = property(get_ChangedRegions, None)
|
|
1093
|
+
class IPointerEventArgs(ComPtr):
|
|
1094
|
+
extends: IInspectable
|
|
1095
|
+
_classid_ = 'Microsoft.UI.Input.IPointerEventArgs'
|
|
1096
|
+
_iid_ = Guid('{865b188c-2ed5-5df8-829f-ac0701d5c51a}')
|
|
1097
|
+
@winrt_commethod(6)
|
|
1098
|
+
def get_CurrentPoint(self) -> win32more.Microsoft.UI.Input.PointerPoint: ...
|
|
1099
|
+
@winrt_commethod(7)
|
|
1100
|
+
def get_Handled(self) -> Boolean: ...
|
|
1101
|
+
@winrt_commethod(8)
|
|
1102
|
+
def put_Handled(self, value: Boolean) -> Void: ...
|
|
1103
|
+
@winrt_commethod(9)
|
|
1104
|
+
def get_KeyModifiers(self) -> win32more.Windows.System.VirtualKeyModifiers: ...
|
|
1105
|
+
@winrt_commethod(10)
|
|
1106
|
+
def GetIntermediatePoints(self) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1107
|
+
@winrt_commethod(11)
|
|
1108
|
+
def GetIntermediateTransformedPoints(self, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1109
|
+
CurrentPoint = property(get_CurrentPoint, None)
|
|
1110
|
+
Handled = property(get_Handled, put_Handled)
|
|
1111
|
+
KeyModifiers = property(get_KeyModifiers, None)
|
|
1112
|
+
class IPointerPoint(ComPtr):
|
|
1113
|
+
extends: IInspectable
|
|
1114
|
+
_classid_ = 'Microsoft.UI.Input.IPointerPoint'
|
|
1115
|
+
_iid_ = Guid('{0d430ee6-252c-59a4-b2a2-d44264dc6a40}')
|
|
1116
|
+
@winrt_commethod(6)
|
|
1117
|
+
def get_FrameId(self) -> UInt32: ...
|
|
1118
|
+
@winrt_commethod(7)
|
|
1119
|
+
def get_IsInContact(self) -> Boolean: ...
|
|
1120
|
+
@winrt_commethod(8)
|
|
1121
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1122
|
+
@winrt_commethod(9)
|
|
1123
|
+
def get_PointerId(self) -> UInt32: ...
|
|
1124
|
+
@winrt_commethod(10)
|
|
1125
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
1126
|
+
@winrt_commethod(11)
|
|
1127
|
+
def get_Properties(self) -> win32more.Microsoft.UI.Input.PointerPointProperties: ...
|
|
1128
|
+
@winrt_commethod(12)
|
|
1129
|
+
def get_Timestamp(self) -> UInt64: ...
|
|
1130
|
+
@winrt_commethod(13)
|
|
1131
|
+
def GetTransformedPoint(self, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Microsoft.UI.Input.PointerPoint: ...
|
|
1132
|
+
FrameId = property(get_FrameId, None)
|
|
1133
|
+
IsInContact = property(get_IsInContact, None)
|
|
1134
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1135
|
+
PointerId = property(get_PointerId, None)
|
|
1136
|
+
Position = property(get_Position, None)
|
|
1137
|
+
Properties = property(get_Properties, None)
|
|
1138
|
+
Timestamp = property(get_Timestamp, None)
|
|
1139
|
+
class IPointerPointProperties(ComPtr):
|
|
1140
|
+
extends: IInspectable
|
|
1141
|
+
_classid_ = 'Microsoft.UI.Input.IPointerPointProperties'
|
|
1142
|
+
_iid_ = Guid('{d760ed77-4b10-57a5-b3cc-d9bf3413e996}')
|
|
1143
|
+
@winrt_commethod(6)
|
|
1144
|
+
def get_ContactRect(self) -> win32more.Windows.Foundation.Rect: ...
|
|
1145
|
+
@winrt_commethod(7)
|
|
1146
|
+
def get_IsBarrelButtonPressed(self) -> Boolean: ...
|
|
1147
|
+
@winrt_commethod(8)
|
|
1148
|
+
def get_IsCanceled(self) -> Boolean: ...
|
|
1149
|
+
@winrt_commethod(9)
|
|
1150
|
+
def get_IsEraser(self) -> Boolean: ...
|
|
1151
|
+
@winrt_commethod(10)
|
|
1152
|
+
def get_IsHorizontalMouseWheel(self) -> Boolean: ...
|
|
1153
|
+
@winrt_commethod(11)
|
|
1154
|
+
def get_IsInRange(self) -> Boolean: ...
|
|
1155
|
+
@winrt_commethod(12)
|
|
1156
|
+
def get_IsInverted(self) -> Boolean: ...
|
|
1157
|
+
@winrt_commethod(13)
|
|
1158
|
+
def get_IsLeftButtonPressed(self) -> Boolean: ...
|
|
1159
|
+
@winrt_commethod(14)
|
|
1160
|
+
def get_IsMiddleButtonPressed(self) -> Boolean: ...
|
|
1161
|
+
@winrt_commethod(15)
|
|
1162
|
+
def get_IsPrimary(self) -> Boolean: ...
|
|
1163
|
+
@winrt_commethod(16)
|
|
1164
|
+
def get_IsRightButtonPressed(self) -> Boolean: ...
|
|
1165
|
+
@winrt_commethod(17)
|
|
1166
|
+
def get_IsXButton1Pressed(self) -> Boolean: ...
|
|
1167
|
+
@winrt_commethod(18)
|
|
1168
|
+
def get_IsXButton2Pressed(self) -> Boolean: ...
|
|
1169
|
+
@winrt_commethod(19)
|
|
1170
|
+
def get_MouseWheelDelta(self) -> Int32: ...
|
|
1171
|
+
@winrt_commethod(20)
|
|
1172
|
+
def get_Orientation(self) -> Single: ...
|
|
1173
|
+
@winrt_commethod(21)
|
|
1174
|
+
def get_PointerUpdateKind(self) -> win32more.Microsoft.UI.Input.PointerUpdateKind: ...
|
|
1175
|
+
@winrt_commethod(22)
|
|
1176
|
+
def get_Pressure(self) -> Single: ...
|
|
1177
|
+
@winrt_commethod(23)
|
|
1178
|
+
def get_TouchConfidence(self) -> Boolean: ...
|
|
1179
|
+
@winrt_commethod(24)
|
|
1180
|
+
def get_Twist(self) -> Single: ...
|
|
1181
|
+
@winrt_commethod(25)
|
|
1182
|
+
def get_XTilt(self) -> Single: ...
|
|
1183
|
+
@winrt_commethod(26)
|
|
1184
|
+
def get_YTilt(self) -> Single: ...
|
|
1185
|
+
ContactRect = property(get_ContactRect, None)
|
|
1186
|
+
IsBarrelButtonPressed = property(get_IsBarrelButtonPressed, None)
|
|
1187
|
+
IsCanceled = property(get_IsCanceled, None)
|
|
1188
|
+
IsEraser = property(get_IsEraser, None)
|
|
1189
|
+
IsHorizontalMouseWheel = property(get_IsHorizontalMouseWheel, None)
|
|
1190
|
+
IsInRange = property(get_IsInRange, None)
|
|
1191
|
+
IsInverted = property(get_IsInverted, None)
|
|
1192
|
+
IsLeftButtonPressed = property(get_IsLeftButtonPressed, None)
|
|
1193
|
+
IsMiddleButtonPressed = property(get_IsMiddleButtonPressed, None)
|
|
1194
|
+
IsPrimary = property(get_IsPrimary, None)
|
|
1195
|
+
IsRightButtonPressed = property(get_IsRightButtonPressed, None)
|
|
1196
|
+
IsXButton1Pressed = property(get_IsXButton1Pressed, None)
|
|
1197
|
+
IsXButton2Pressed = property(get_IsXButton2Pressed, None)
|
|
1198
|
+
MouseWheelDelta = property(get_MouseWheelDelta, None)
|
|
1199
|
+
Orientation = property(get_Orientation, None)
|
|
1200
|
+
PointerUpdateKind = property(get_PointerUpdateKind, None)
|
|
1201
|
+
Pressure = property(get_Pressure, None)
|
|
1202
|
+
TouchConfidence = property(get_TouchConfidence, None)
|
|
1203
|
+
Twist = property(get_Twist, None)
|
|
1204
|
+
XTilt = property(get_XTilt, None)
|
|
1205
|
+
YTilt = property(get_YTilt, None)
|
|
1206
|
+
class IPointerPointTransform(ComPtr):
|
|
1207
|
+
extends: IInspectable
|
|
1208
|
+
_classid_ = 'Microsoft.UI.Input.IPointerPointTransform'
|
|
1209
|
+
_iid_ = Guid('{db4791bc-994d-54c7-92ef-66ea1de9b43c}')
|
|
1210
|
+
@winrt_commethod(6)
|
|
1211
|
+
def get_Inverse(self) -> win32more.Microsoft.UI.Input.IPointerPointTransform: ...
|
|
1212
|
+
@winrt_commethod(7)
|
|
1213
|
+
def TryTransform(self, inPoint: win32more.Windows.Foundation.Point, outPoint: POINTER(win32more.Windows.Foundation.Point)) -> Boolean: ...
|
|
1214
|
+
@winrt_commethod(8)
|
|
1215
|
+
def TryTransformBounds(self, inRect: win32more.Windows.Foundation.Rect, outRect: POINTER(win32more.Windows.Foundation.Rect)) -> Boolean: ...
|
|
1216
|
+
Inverse = property(get_Inverse, None)
|
|
1217
|
+
class IPointerPredictor(ComPtr):
|
|
1218
|
+
extends: IInspectable
|
|
1219
|
+
_classid_ = 'Microsoft.UI.Input.IPointerPredictor'
|
|
1220
|
+
_iid_ = Guid('{12c100ec-2100-565f-a60c-f1187f438828}')
|
|
1221
|
+
@winrt_commethod(6)
|
|
1222
|
+
def get_PredictionTime(self) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
1223
|
+
@winrt_commethod(7)
|
|
1224
|
+
def put_PredictionTime(self, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
1225
|
+
@winrt_commethod(8)
|
|
1226
|
+
def GetPredictedPoints(self, point: win32more.Microsoft.UI.Input.PointerPoint) -> ReceiveArray[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1227
|
+
PredictionTime = property(get_PredictionTime, put_PredictionTime)
|
|
1228
|
+
class IPointerPredictorStatics(ComPtr):
|
|
1229
|
+
extends: IInspectable
|
|
1230
|
+
_classid_ = 'Microsoft.UI.Input.IPointerPredictorStatics'
|
|
1231
|
+
_iid_ = Guid('{78a8ef30-3e5c-55cd-8f85-65ac09b1a987}')
|
|
1232
|
+
@winrt_commethod(6)
|
|
1233
|
+
def CreateForInputPointerSource(self, inputPointerSource: win32more.Microsoft.UI.Input.InputPointerSource) -> win32more.Microsoft.UI.Input.PointerPredictor: ...
|
|
1234
|
+
class IRightTappedEventArgs(ComPtr):
|
|
1235
|
+
extends: IInspectable
|
|
1236
|
+
_classid_ = 'Microsoft.UI.Input.IRightTappedEventArgs'
|
|
1237
|
+
_iid_ = Guid('{8ff73b39-887e-50a4-8500-77953039dcb4}')
|
|
1238
|
+
@winrt_commethod(6)
|
|
1239
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1240
|
+
@winrt_commethod(7)
|
|
1241
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
1242
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1243
|
+
Position = property(get_Position, None)
|
|
1244
|
+
class ITappedEventArgs(ComPtr):
|
|
1245
|
+
extends: IInspectable
|
|
1246
|
+
_classid_ = 'Microsoft.UI.Input.ITappedEventArgs'
|
|
1247
|
+
_iid_ = Guid('{c3a01bb5-6076-5e0f-871a-9d94a6a8f82b}')
|
|
1248
|
+
@winrt_commethod(6)
|
|
1249
|
+
def get_PointerDeviceType(self) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1250
|
+
@winrt_commethod(7)
|
|
1251
|
+
def get_Position(self) -> win32more.Windows.Foundation.Point: ...
|
|
1252
|
+
@winrt_commethod(8)
|
|
1253
|
+
def get_TapCount(self) -> UInt32: ...
|
|
1254
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1255
|
+
Position = property(get_Position, None)
|
|
1256
|
+
TapCount = property(get_TapCount, None)
|
|
1257
|
+
class InputActivationListener(ComPtr):
|
|
1258
|
+
extends: win32more.Microsoft.UI.Input.InputObject
|
|
1259
|
+
default_interface: win32more.Microsoft.UI.Input.IInputActivationListener
|
|
1260
|
+
_classid_ = 'Microsoft.UI.Input.InputActivationListener'
|
|
1261
|
+
@winrt_mixinmethod
|
|
1262
|
+
def add_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputActivationListener, win32more.Microsoft.UI.Input.InputActivationListenerActivationChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1263
|
+
@winrt_mixinmethod
|
|
1264
|
+
def get_State(self: win32more.Microsoft.UI.Input.IInputActivationListener) -> win32more.Microsoft.UI.Input.InputActivationState: ...
|
|
1265
|
+
@winrt_mixinmethod
|
|
1266
|
+
def remove_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1267
|
+
@winrt_classmethod
|
|
1268
|
+
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputActivationListenerStatics2, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
|
|
1269
|
+
@winrt_classmethod
|
|
1270
|
+
def GetForWindowId(cls: win32more.Microsoft.UI.Input.IInputActivationListenerStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
|
|
1271
|
+
State = property(get_State, None)
|
|
1272
|
+
InputActivationChanged = event()
|
|
1273
|
+
class InputActivationListenerActivationChangedEventArgs(ComPtr):
|
|
1274
|
+
extends: IInspectable
|
|
1275
|
+
default_interface: win32more.Microsoft.UI.Input.IInputActivationListenerActivationChangedEventArgs
|
|
1276
|
+
_classid_ = 'Microsoft.UI.Input.InputActivationListenerActivationChangedEventArgs'
|
|
1277
|
+
class InputActivationState(Enum, Int32):
|
|
1278
|
+
None_ = 0
|
|
1279
|
+
Deactivated = 1
|
|
1280
|
+
Activated = 2
|
|
1281
|
+
class InputCursor(ComPtr):
|
|
1282
|
+
extends: IInspectable
|
|
1283
|
+
implements: Tuple[ContextManagerProtocol]
|
|
1284
|
+
default_interface: win32more.Microsoft.UI.Input.IInputCursor
|
|
1285
|
+
_classid_ = 'Microsoft.UI.Input.InputCursor'
|
|
1286
|
+
@winrt_mixinmethod
|
|
1287
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
1288
|
+
@winrt_classmethod
|
|
1289
|
+
def CreateFromCoreCursor(cls: win32more.Microsoft.UI.Input.IInputCursorStatics, cursor: win32more.Windows.UI.Core.CoreCursor) -> win32more.Microsoft.UI.Input.InputCursor: ...
|
|
1290
|
+
class InputCustomCursor(ComPtr):
|
|
1291
|
+
extends: win32more.Microsoft.UI.Input.InputCursor
|
|
1292
|
+
default_interface: win32more.Microsoft.UI.Input.IInputCustomCursor
|
|
1293
|
+
_classid_ = 'Microsoft.UI.Input.InputCustomCursor'
|
|
1294
|
+
class InputDesktopNamedResourceCursor(ComPtr):
|
|
1295
|
+
extends: win32more.Microsoft.UI.Input.InputCursor
|
|
1296
|
+
default_interface: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor
|
|
1297
|
+
_classid_ = 'Microsoft.UI.Input.InputDesktopNamedResourceCursor'
|
|
1298
|
+
@winrt_mixinmethod
|
|
1299
|
+
def get_ResourceName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> WinRT_String: ...
|
|
1300
|
+
@winrt_mixinmethod
|
|
1301
|
+
def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> WinRT_String: ...
|
|
1302
|
+
@winrt_classmethod
|
|
1303
|
+
def Create(cls: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursorStatics, resourceName: WinRT_String) -> win32more.Microsoft.UI.Input.InputDesktopNamedResourceCursor: ...
|
|
1304
|
+
@winrt_classmethod
|
|
1305
|
+
def CreateFromModule(cls: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursorStatics, moduleName: WinRT_String, resourceName: WinRT_String) -> win32more.Microsoft.UI.Input.InputDesktopNamedResourceCursor: ...
|
|
1306
|
+
ModuleName = property(get_ModuleName, None)
|
|
1307
|
+
ResourceName = property(get_ResourceName, None)
|
|
1308
|
+
class InputDesktopResourceCursor(ComPtr):
|
|
1309
|
+
extends: win32more.Microsoft.UI.Input.InputCursor
|
|
1310
|
+
default_interface: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor
|
|
1311
|
+
_classid_ = 'Microsoft.UI.Input.InputDesktopResourceCursor'
|
|
1312
|
+
@winrt_mixinmethod
|
|
1313
|
+
def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> WinRT_String: ...
|
|
1314
|
+
@winrt_mixinmethod
|
|
1315
|
+
def get_ResourceId(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> UInt32: ...
|
|
1316
|
+
@winrt_classmethod
|
|
1317
|
+
def Create(cls: win32more.Microsoft.UI.Input.IInputDesktopResourceCursorStatics, resourceId: UInt32) -> win32more.Microsoft.UI.Input.InputDesktopResourceCursor: ...
|
|
1318
|
+
@winrt_classmethod
|
|
1319
|
+
def CreateFromModule(cls: win32more.Microsoft.UI.Input.IInputDesktopResourceCursorStatics, moduleName: WinRT_String, resourceId: UInt32) -> win32more.Microsoft.UI.Input.InputDesktopResourceCursor: ...
|
|
1320
|
+
ModuleName = property(get_ModuleName, None)
|
|
1321
|
+
ResourceId = property(get_ResourceId, None)
|
|
1322
|
+
class InputFocusController(ComPtr):
|
|
1323
|
+
extends: win32more.Microsoft.UI.Input.InputObject
|
|
1324
|
+
default_interface: win32more.Microsoft.UI.Input.IInputFocusController
|
|
1325
|
+
_classid_ = 'Microsoft.UI.Input.InputFocusController'
|
|
1326
|
+
@winrt_mixinmethod
|
|
1327
|
+
def TrySetFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
|
|
1328
|
+
@winrt_mixinmethod
|
|
1329
|
+
def get_HasFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
|
|
1330
|
+
@winrt_mixinmethod
|
|
1331
|
+
def remove_GotFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1332
|
+
@winrt_mixinmethod
|
|
1333
|
+
def add_LostFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1334
|
+
@winrt_mixinmethod
|
|
1335
|
+
def remove_LostFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1336
|
+
@winrt_mixinmethod
|
|
1337
|
+
def DepartFocus(self: win32more.Microsoft.UI.Input.IInputFocusController2, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
1338
|
+
@winrt_mixinmethod
|
|
1339
|
+
def add_NavigateFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusController2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusNavigationRequestEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1340
|
+
@winrt_mixinmethod
|
|
1341
|
+
def remove_NavigateFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusController2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1342
|
+
@winrt_mixinmethod
|
|
1343
|
+
def add_GotFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1344
|
+
@winrt_classmethod
|
|
1345
|
+
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputFocusControllerStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputFocusController: ...
|
|
1346
|
+
HasFocus = property(get_HasFocus, None)
|
|
1347
|
+
LostFocus = event()
|
|
1348
|
+
NavigateFocusRequested = event()
|
|
1349
|
+
GotFocus = event()
|
|
1350
|
+
class InputFocusNavigationHost(ComPtr):
|
|
1351
|
+
extends: win32more.Microsoft.UI.Input.InputObject
|
|
1352
|
+
default_interface: win32more.Microsoft.UI.Input.IInputFocusNavigationHost
|
|
1353
|
+
_classid_ = 'Microsoft.UI.Input.InputFocusNavigationHost'
|
|
1354
|
+
@winrt_mixinmethod
|
|
1355
|
+
def add_DepartFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusNavigationHost, win32more.Microsoft.UI.Input.FocusNavigationRequestEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1356
|
+
@winrt_mixinmethod
|
|
1357
|
+
def NavigateFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
1358
|
+
@winrt_mixinmethod
|
|
1359
|
+
def remove_DepartFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1360
|
+
@winrt_mixinmethod
|
|
1361
|
+
def get_ContainsFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost) -> Boolean: ...
|
|
1362
|
+
@winrt_classmethod
|
|
1363
|
+
def GetForSiteBridge(cls: win32more.Microsoft.UI.Input.IInputFocusNavigationHostStatics, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
1364
|
+
ContainsFocus = property(get_ContainsFocus, None)
|
|
1365
|
+
DepartFocusRequested = event()
|
|
1366
|
+
class InputKeyboardSource(ComPtr):
|
|
1367
|
+
extends: win32more.Microsoft.UI.Input.InputObject
|
|
1368
|
+
default_interface: win32more.Microsoft.UI.Input.IInputKeyboardSource
|
|
1369
|
+
_classid_ = 'Microsoft.UI.Input.InputKeyboardSource'
|
|
1370
|
+
@winrt_mixinmethod
|
|
1371
|
+
def remove_KeyDown(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1372
|
+
@winrt_mixinmethod
|
|
1373
|
+
def add_CharacterReceived(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.CharacterReceivedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1374
|
+
@winrt_mixinmethod
|
|
1375
|
+
def GetCurrentKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
|
|
1376
|
+
@winrt_mixinmethod
|
|
1377
|
+
def add_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.ContextMenuKeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1378
|
+
@winrt_mixinmethod
|
|
1379
|
+
def remove_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1380
|
+
@winrt_mixinmethod
|
|
1381
|
+
def add_KeyDown(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1382
|
+
@winrt_mixinmethod
|
|
1383
|
+
def remove_CharacterReceived(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1384
|
+
@winrt_mixinmethod
|
|
1385
|
+
def add_KeyUp(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1386
|
+
@winrt_mixinmethod
|
|
1387
|
+
def remove_KeyUp(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1388
|
+
@winrt_mixinmethod
|
|
1389
|
+
def add_SystemKeyDown(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1390
|
+
@winrt_mixinmethod
|
|
1391
|
+
def remove_SystemKeyDown(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1392
|
+
@winrt_mixinmethod
|
|
1393
|
+
def GetKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
|
|
1394
|
+
@winrt_mixinmethod
|
|
1395
|
+
def remove_SystemKeyUp(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1396
|
+
@winrt_mixinmethod
|
|
1397
|
+
def add_SystemKeyUp(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1398
|
+
@winrt_classmethod
|
|
1399
|
+
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputKeyboardSourceStatics2, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputKeyboardSource: ...
|
|
1400
|
+
@winrt_classmethod
|
|
1401
|
+
def GetKeyStateForCurrentThread(cls: win32more.Microsoft.UI.Input.IInputKeyboardSourceStatics, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Windows.UI.Core.CoreVirtualKeyStates: ...
|
|
1402
|
+
CharacterReceived = event()
|
|
1403
|
+
ContextMenuKey = event()
|
|
1404
|
+
KeyDown = event()
|
|
1405
|
+
KeyUp = event()
|
|
1406
|
+
SystemKeyDown = event()
|
|
1407
|
+
SystemKeyUp = event()
|
|
1408
|
+
class InputLightDismissAction(ComPtr):
|
|
1409
|
+
extends: win32more.Microsoft.UI.Input.InputObject
|
|
1410
|
+
default_interface: win32more.Microsoft.UI.Input.IInputLightDismissAction
|
|
1411
|
+
_classid_ = 'Microsoft.UI.Input.InputLightDismissAction'
|
|
1412
|
+
@winrt_mixinmethod
|
|
1413
|
+
def add_Dismissed(self: win32more.Microsoft.UI.Input.IInputLightDismissAction, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputLightDismissAction, win32more.Microsoft.UI.Input.InputLightDismissEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1414
|
+
@winrt_mixinmethod
|
|
1415
|
+
def remove_Dismissed(self: win32more.Microsoft.UI.Input.IInputLightDismissAction, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1416
|
+
@winrt_classmethod
|
|
1417
|
+
def GetForWindowId(cls: win32more.Microsoft.UI.Input.IInputLightDismissActionStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputLightDismissAction: ...
|
|
1418
|
+
Dismissed = event()
|
|
1419
|
+
class InputLightDismissEventArgs(ComPtr):
|
|
1420
|
+
extends: IInspectable
|
|
1421
|
+
default_interface: win32more.Microsoft.UI.Input.IInputLightDismissEventArgs
|
|
1422
|
+
_classid_ = 'Microsoft.UI.Input.InputLightDismissEventArgs'
|
|
1423
|
+
class InputNonClientPointerSource(ComPtr):
|
|
1424
|
+
extends: IInspectable
|
|
1425
|
+
default_interface: win32more.Microsoft.UI.Input.IInputNonClientPointerSource
|
|
1426
|
+
_classid_ = 'Microsoft.UI.Input.InputNonClientPointerSource'
|
|
1427
|
+
@winrt_mixinmethod
|
|
1428
|
+
def add_PointerMoved(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1429
|
+
@winrt_mixinmethod
|
|
1430
|
+
def ClearRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> Void: ...
|
|
1431
|
+
@winrt_mixinmethod
|
|
1432
|
+
def GetRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> ReceiveArray[win32more.Windows.Graphics.RectInt32]: ...
|
|
1433
|
+
@winrt_mixinmethod
|
|
1434
|
+
def SetRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, region: win32more.Microsoft.UI.Input.NonClientRegionKind, rects: PassArray[win32more.Windows.Graphics.RectInt32]) -> Void: ...
|
|
1435
|
+
@winrt_mixinmethod
|
|
1436
|
+
def add_CaptionTapped(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientCaptionTappedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1437
|
+
@winrt_mixinmethod
|
|
1438
|
+
def remove_CaptionTapped(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1439
|
+
@winrt_mixinmethod
|
|
1440
|
+
def add_PointerEntered(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1441
|
+
@winrt_mixinmethod
|
|
1442
|
+
def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1443
|
+
@winrt_mixinmethod
|
|
1444
|
+
def add_PointerExited(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1445
|
+
@winrt_mixinmethod
|
|
1446
|
+
def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1447
|
+
@winrt_mixinmethod
|
|
1448
|
+
def remove_RegionsChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1449
|
+
@winrt_mixinmethod
|
|
1450
|
+
def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1451
|
+
@winrt_mixinmethod
|
|
1452
|
+
def add_PointerPressed(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1453
|
+
@winrt_mixinmethod
|
|
1454
|
+
def remove_PointerPressed(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1455
|
+
@winrt_mixinmethod
|
|
1456
|
+
def add_PointerReleased(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1457
|
+
@winrt_mixinmethod
|
|
1458
|
+
def remove_PointerReleased(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1459
|
+
@winrt_mixinmethod
|
|
1460
|
+
def add_RegionsChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientRegionsChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1461
|
+
@winrt_mixinmethod
|
|
1462
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
1463
|
+
@winrt_mixinmethod
|
|
1464
|
+
def ClearAllRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> Void: ...
|
|
1465
|
+
@winrt_classmethod
|
|
1466
|
+
def GetForWindowId(cls: win32more.Microsoft.UI.Input.IInputNonClientPointerSourceStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputNonClientPointerSource: ...
|
|
1467
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
1468
|
+
PointerMoved = event()
|
|
1469
|
+
CaptionTapped = event()
|
|
1470
|
+
PointerEntered = event()
|
|
1471
|
+
PointerExited = event()
|
|
1472
|
+
PointerPressed = event()
|
|
1473
|
+
PointerReleased = event()
|
|
1474
|
+
RegionsChanged = event()
|
|
1475
|
+
class InputObject(ComPtr):
|
|
1476
|
+
extends: IInspectable
|
|
1477
|
+
default_interface: win32more.Microsoft.UI.Input.IInputObject
|
|
1478
|
+
_classid_ = 'Microsoft.UI.Input.InputObject'
|
|
1479
|
+
@winrt_mixinmethod
|
|
1480
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Input.IInputObject) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
1481
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
1482
|
+
class InputPointerSource(ComPtr):
|
|
1483
|
+
extends: win32more.Microsoft.UI.Input.InputObject
|
|
1484
|
+
default_interface: win32more.Microsoft.UI.Input.IInputPointerSource
|
|
1485
|
+
_classid_ = 'Microsoft.UI.Input.InputPointerSource'
|
|
1486
|
+
@winrt_mixinmethod
|
|
1487
|
+
def add_PointerMoved(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1488
|
+
@winrt_mixinmethod
|
|
1489
|
+
def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
|
|
1490
|
+
@winrt_mixinmethod
|
|
1491
|
+
def get_DeviceKinds(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputPointerSourceDeviceKinds: ...
|
|
1492
|
+
@winrt_mixinmethod
|
|
1493
|
+
def add_PointerCaptureLost(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1494
|
+
@winrt_mixinmethod
|
|
1495
|
+
def remove_PointerCaptureLost(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1496
|
+
@winrt_mixinmethod
|
|
1497
|
+
def add_PointerEntered(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1498
|
+
@winrt_mixinmethod
|
|
1499
|
+
def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1500
|
+
@winrt_mixinmethod
|
|
1501
|
+
def add_PointerExited(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1502
|
+
@winrt_mixinmethod
|
|
1503
|
+
def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1504
|
+
@winrt_mixinmethod
|
|
1505
|
+
def remove_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1506
|
+
@winrt_mixinmethod
|
|
1507
|
+
def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1508
|
+
@winrt_mixinmethod
|
|
1509
|
+
def add_PointerPressed(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1510
|
+
@winrt_mixinmethod
|
|
1511
|
+
def remove_PointerPressed(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1512
|
+
@winrt_mixinmethod
|
|
1513
|
+
def add_PointerReleased(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1514
|
+
@winrt_mixinmethod
|
|
1515
|
+
def remove_PointerReleased(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1516
|
+
@winrt_mixinmethod
|
|
1517
|
+
def add_PointerRoutedAway(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1518
|
+
@winrt_mixinmethod
|
|
1519
|
+
def remove_PointerRoutedAway(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1520
|
+
@winrt_mixinmethod
|
|
1521
|
+
def add_PointerRoutedReleased(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1522
|
+
@winrt_mixinmethod
|
|
1523
|
+
def remove_PointerRoutedReleased(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1524
|
+
@winrt_mixinmethod
|
|
1525
|
+
def add_PointerRoutedTo(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1526
|
+
@winrt_mixinmethod
|
|
1527
|
+
def remove_PointerRoutedTo(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1528
|
+
@winrt_mixinmethod
|
|
1529
|
+
def add_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1530
|
+
@winrt_mixinmethod
|
|
1531
|
+
def get_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputCursor: ...
|
|
1532
|
+
@winrt_classmethod
|
|
1533
|
+
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputPointerSourceStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPointerSource: ...
|
|
1534
|
+
Cursor = property(get_Cursor, put_Cursor)
|
|
1535
|
+
DeviceKinds = property(get_DeviceKinds, None)
|
|
1536
|
+
PointerMoved = event()
|
|
1537
|
+
PointerCaptureLost = event()
|
|
1538
|
+
PointerEntered = event()
|
|
1539
|
+
PointerExited = event()
|
|
1540
|
+
PointerPressed = event()
|
|
1541
|
+
PointerReleased = event()
|
|
1542
|
+
PointerRoutedAway = event()
|
|
1543
|
+
PointerRoutedReleased = event()
|
|
1544
|
+
PointerRoutedTo = event()
|
|
1545
|
+
PointerWheelChanged = event()
|
|
1546
|
+
class InputPointerSourceDeviceKinds(Enum, UInt32):
|
|
1547
|
+
None_ = 0
|
|
1548
|
+
Touch = 1
|
|
1549
|
+
Pen = 2
|
|
1550
|
+
Mouse = 4
|
|
1551
|
+
class InputPreTranslateKeyboardSource(ComPtr):
|
|
1552
|
+
extends: win32more.Microsoft.UI.Input.InputObject
|
|
1553
|
+
default_interface: win32more.Microsoft.UI.Input.IInputPreTranslateKeyboardSource
|
|
1554
|
+
_classid_ = 'Microsoft.UI.Input.InputPreTranslateKeyboardSource'
|
|
1555
|
+
@winrt_classmethod
|
|
1556
|
+
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputPreTranslateKeyboardSourceStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPreTranslateKeyboardSource: ...
|
|
1557
|
+
class InputSystemCursor(ComPtr):
|
|
1558
|
+
extends: win32more.Microsoft.UI.Input.InputCursor
|
|
1559
|
+
default_interface: win32more.Microsoft.UI.Input.IInputSystemCursor
|
|
1560
|
+
_classid_ = 'Microsoft.UI.Input.InputSystemCursor'
|
|
1561
|
+
@winrt_mixinmethod
|
|
1562
|
+
def get_CursorShape(self: win32more.Microsoft.UI.Input.IInputSystemCursor) -> win32more.Microsoft.UI.Input.InputSystemCursorShape: ...
|
|
1563
|
+
@winrt_classmethod
|
|
1564
|
+
def Create(cls: win32more.Microsoft.UI.Input.IInputSystemCursorStatics, type: win32more.Microsoft.UI.Input.InputSystemCursorShape) -> win32more.Microsoft.UI.Input.InputSystemCursor: ...
|
|
1565
|
+
CursorShape = property(get_CursorShape, None)
|
|
1566
|
+
class InputSystemCursorShape(Enum, Int32):
|
|
1567
|
+
Arrow = 0
|
|
1568
|
+
Cross = 1
|
|
1569
|
+
Hand = 3
|
|
1570
|
+
Help = 4
|
|
1571
|
+
IBeam = 5
|
|
1572
|
+
SizeAll = 6
|
|
1573
|
+
SizeNortheastSouthwest = 7
|
|
1574
|
+
SizeNorthSouth = 8
|
|
1575
|
+
SizeNorthwestSoutheast = 9
|
|
1576
|
+
SizeWestEast = 10
|
|
1577
|
+
UniversalNo = 11
|
|
1578
|
+
UpArrow = 12
|
|
1579
|
+
Wait = 13
|
|
1580
|
+
Pin = 14
|
|
1581
|
+
Person = 15
|
|
1582
|
+
AppStarting = 16
|
|
1583
|
+
class KeyEventArgs(ComPtr):
|
|
1584
|
+
extends: IInspectable
|
|
1585
|
+
default_interface: win32more.Microsoft.UI.Input.IKeyEventArgs
|
|
1586
|
+
_classid_ = 'Microsoft.UI.Input.KeyEventArgs'
|
|
1587
|
+
@winrt_mixinmethod
|
|
1588
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs, value: Boolean) -> Void: ...
|
|
1589
|
+
@winrt_mixinmethod
|
|
1590
|
+
def get_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> Boolean: ...
|
|
1591
|
+
@winrt_mixinmethod
|
|
1592
|
+
def get_KeyStatus(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
|
|
1593
|
+
@winrt_mixinmethod
|
|
1594
|
+
def get_Timestamp(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> UInt64: ...
|
|
1595
|
+
@winrt_mixinmethod
|
|
1596
|
+
def get_VirtualKey(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Windows.System.VirtualKey: ...
|
|
1597
|
+
Handled = property(get_Handled, put_Handled)
|
|
1598
|
+
KeyStatus = property(get_KeyStatus, None)
|
|
1599
|
+
Timestamp = property(get_Timestamp, None)
|
|
1600
|
+
VirtualKey = property(get_VirtualKey, None)
|
|
1601
|
+
class ManipulationCompletedEventArgs(ComPtr):
|
|
1602
|
+
extends: IInspectable
|
|
1603
|
+
default_interface: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs
|
|
1604
|
+
_classid_ = 'Microsoft.UI.Input.ManipulationCompletedEventArgs'
|
|
1605
|
+
@winrt_mixinmethod
|
|
1606
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1607
|
+
@winrt_mixinmethod
|
|
1608
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1609
|
+
@winrt_mixinmethod
|
|
1610
|
+
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1611
|
+
@winrt_mixinmethod
|
|
1612
|
+
def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
1613
|
+
Cumulative = property(get_Cumulative, None)
|
|
1614
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1615
|
+
Position = property(get_Position, None)
|
|
1616
|
+
Velocities = property(get_Velocities, None)
|
|
1617
|
+
class ManipulationDelta(Structure):
|
|
1618
|
+
Translation: win32more.Windows.Foundation.Point
|
|
1619
|
+
Scale: Single
|
|
1620
|
+
Rotation: Single
|
|
1621
|
+
Expansion: Single
|
|
1622
|
+
class ManipulationInertiaStartingEventArgs(ComPtr):
|
|
1623
|
+
extends: IInspectable
|
|
1624
|
+
default_interface: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs
|
|
1625
|
+
_classid_ = 'Microsoft.UI.Input.ManipulationInertiaStartingEventArgs'
|
|
1626
|
+
@winrt_mixinmethod
|
|
1627
|
+
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1628
|
+
@winrt_mixinmethod
|
|
1629
|
+
def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1630
|
+
@winrt_mixinmethod
|
|
1631
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1632
|
+
@winrt_mixinmethod
|
|
1633
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1634
|
+
@winrt_mixinmethod
|
|
1635
|
+
def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
1636
|
+
Cumulative = property(get_Cumulative, None)
|
|
1637
|
+
Delta = property(get_Delta, None)
|
|
1638
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1639
|
+
Position = property(get_Position, None)
|
|
1640
|
+
Velocities = property(get_Velocities, None)
|
|
1641
|
+
class ManipulationStartedEventArgs(ComPtr):
|
|
1642
|
+
extends: IInspectable
|
|
1643
|
+
default_interface: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs
|
|
1644
|
+
_classid_ = 'Microsoft.UI.Input.ManipulationStartedEventArgs'
|
|
1645
|
+
@winrt_mixinmethod
|
|
1646
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1647
|
+
@winrt_mixinmethod
|
|
1648
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1649
|
+
@winrt_mixinmethod
|
|
1650
|
+
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1651
|
+
Cumulative = property(get_Cumulative, None)
|
|
1652
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1653
|
+
Position = property(get_Position, None)
|
|
1654
|
+
class ManipulationUpdatedEventArgs(ComPtr):
|
|
1655
|
+
extends: IInspectable
|
|
1656
|
+
default_interface: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs
|
|
1657
|
+
_classid_ = 'Microsoft.UI.Input.ManipulationUpdatedEventArgs'
|
|
1658
|
+
@winrt_mixinmethod
|
|
1659
|
+
def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1660
|
+
@winrt_mixinmethod
|
|
1661
|
+
def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
1662
|
+
@winrt_mixinmethod
|
|
1663
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1664
|
+
@winrt_mixinmethod
|
|
1665
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1666
|
+
@winrt_mixinmethod
|
|
1667
|
+
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1668
|
+
Cumulative = property(get_Cumulative, None)
|
|
1669
|
+
Delta = property(get_Delta, None)
|
|
1670
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1671
|
+
Position = property(get_Position, None)
|
|
1672
|
+
Velocities = property(get_Velocities, None)
|
|
1673
|
+
class ManipulationVelocities(Structure):
|
|
1674
|
+
Linear: win32more.Windows.Foundation.Point
|
|
1675
|
+
Angular: Single
|
|
1676
|
+
Expansion: Single
|
|
1677
|
+
class MouseWheelParameters(ComPtr):
|
|
1678
|
+
extends: IInspectable
|
|
1679
|
+
default_interface: win32more.Microsoft.UI.Input.IMouseWheelParameters
|
|
1680
|
+
_classid_ = 'Microsoft.UI.Input.MouseWheelParameters'
|
|
1681
|
+
@winrt_mixinmethod
|
|
1682
|
+
def get_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
|
|
1683
|
+
@winrt_mixinmethod
|
|
1684
|
+
def put_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1685
|
+
@winrt_mixinmethod
|
|
1686
|
+
def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1687
|
+
@winrt_mixinmethod
|
|
1688
|
+
def put_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
|
|
1689
|
+
@winrt_mixinmethod
|
|
1690
|
+
def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1691
|
+
@winrt_mixinmethod
|
|
1692
|
+
def put_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
|
|
1693
|
+
@winrt_mixinmethod
|
|
1694
|
+
def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
|
|
1695
|
+
@winrt_mixinmethod
|
|
1696
|
+
def put_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1697
|
+
CharTranslation = property(get_CharTranslation, put_CharTranslation)
|
|
1698
|
+
DeltaRotationAngle = property(get_DeltaRotationAngle, put_DeltaRotationAngle)
|
|
1699
|
+
DeltaScale = property(get_DeltaScale, put_DeltaScale)
|
|
1700
|
+
PageTranslation = property(get_PageTranslation, put_PageTranslation)
|
|
1701
|
+
class NonClientCaptionTappedEventArgs(ComPtr):
|
|
1702
|
+
extends: IInspectable
|
|
1703
|
+
default_interface: win32more.Microsoft.UI.Input.INonClientCaptionTappedEventArgs
|
|
1704
|
+
_classid_ = 'Microsoft.UI.Input.NonClientCaptionTappedEventArgs'
|
|
1705
|
+
@winrt_mixinmethod
|
|
1706
|
+
def get_Point(self: win32more.Microsoft.UI.Input.INonClientCaptionTappedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1707
|
+
@winrt_mixinmethod
|
|
1708
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientCaptionTappedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1709
|
+
Point = property(get_Point, None)
|
|
1710
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1711
|
+
class NonClientPointerEventArgs(ComPtr):
|
|
1712
|
+
extends: IInspectable
|
|
1713
|
+
default_interface: win32more.Microsoft.UI.Input.INonClientPointerEventArgs
|
|
1714
|
+
_classid_ = 'Microsoft.UI.Input.NonClientPointerEventArgs'
|
|
1715
|
+
@winrt_mixinmethod
|
|
1716
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1717
|
+
@winrt_mixinmethod
|
|
1718
|
+
def get_Point(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1719
|
+
@winrt_mixinmethod
|
|
1720
|
+
def get_RegionKind(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.NonClientRegionKind: ...
|
|
1721
|
+
@winrt_mixinmethod
|
|
1722
|
+
def get_IsPointInRegion(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> Boolean: ...
|
|
1723
|
+
IsPointInRegion = property(get_IsPointInRegion, None)
|
|
1724
|
+
Point = property(get_Point, None)
|
|
1725
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1726
|
+
RegionKind = property(get_RegionKind, None)
|
|
1727
|
+
class NonClientRegionKind(Enum, Int32):
|
|
1728
|
+
Close = 0
|
|
1729
|
+
Maximize = 1
|
|
1730
|
+
Minimize = 2
|
|
1731
|
+
Icon = 3
|
|
1732
|
+
Caption = 4
|
|
1733
|
+
TopBorder = 5
|
|
1734
|
+
LeftBorder = 6
|
|
1735
|
+
BottomBorder = 7
|
|
1736
|
+
RightBorder = 8
|
|
1737
|
+
Passthrough = 9
|
|
1738
|
+
class NonClientRegionsChangedEventArgs(ComPtr):
|
|
1739
|
+
extends: IInspectable
|
|
1740
|
+
default_interface: win32more.Microsoft.UI.Input.INonClientRegionsChangedEventArgs
|
|
1741
|
+
_classid_ = 'Microsoft.UI.Input.NonClientRegionsChangedEventArgs'
|
|
1742
|
+
@winrt_mixinmethod
|
|
1743
|
+
def get_ChangedRegions(self: win32more.Microsoft.UI.Input.INonClientRegionsChangedEventArgs) -> ReceiveArray[win32more.Microsoft.UI.Input.NonClientRegionKind]: ...
|
|
1744
|
+
ChangedRegions = property(get_ChangedRegions, None)
|
|
1745
|
+
class PhysicalKeyStatus(Structure):
|
|
1746
|
+
RepeatCount: UInt32
|
|
1747
|
+
ScanCode: UInt32
|
|
1748
|
+
IsExtendedKey: Boolean
|
|
1749
|
+
IsMenuKeyDown: Boolean
|
|
1750
|
+
WasKeyDown: Boolean
|
|
1751
|
+
IsKeyReleased: Boolean
|
|
1752
|
+
class PointerDeviceType(Enum, Int32):
|
|
1753
|
+
Touch = 0
|
|
1754
|
+
Pen = 1
|
|
1755
|
+
Mouse = 2
|
|
1756
|
+
Touchpad = 3
|
|
1757
|
+
class PointerEventArgs(ComPtr):
|
|
1758
|
+
extends: IInspectable
|
|
1759
|
+
default_interface: win32more.Microsoft.UI.Input.IPointerEventArgs
|
|
1760
|
+
_classid_ = 'Microsoft.UI.Input.PointerEventArgs'
|
|
1761
|
+
@winrt_mixinmethod
|
|
1762
|
+
def get_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> Boolean: ...
|
|
1763
|
+
@winrt_mixinmethod
|
|
1764
|
+
def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
|
|
1765
|
+
@winrt_mixinmethod
|
|
1766
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs, value: Boolean) -> Void: ...
|
|
1767
|
+
@winrt_mixinmethod
|
|
1768
|
+
def get_KeyModifiers(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.System.VirtualKeyModifiers: ...
|
|
1769
|
+
@winrt_mixinmethod
|
|
1770
|
+
def GetIntermediatePoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1771
|
+
@winrt_mixinmethod
|
|
1772
|
+
def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1773
|
+
CurrentPoint = property(get_CurrentPoint, None)
|
|
1774
|
+
Handled = property(get_Handled, put_Handled)
|
|
1775
|
+
KeyModifiers = property(get_KeyModifiers, None)
|
|
1776
|
+
class PointerPoint(ComPtr):
|
|
1777
|
+
extends: IInspectable
|
|
1778
|
+
default_interface: win32more.Microsoft.UI.Input.IPointerPoint
|
|
1779
|
+
_classid_ = 'Microsoft.UI.Input.PointerPoint'
|
|
1780
|
+
@winrt_mixinmethod
|
|
1781
|
+
def get_Timestamp(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt64: ...
|
|
1782
|
+
@winrt_mixinmethod
|
|
1783
|
+
def get_IsInContact(self: win32more.Microsoft.UI.Input.IPointerPoint) -> Boolean: ...
|
|
1784
|
+
@winrt_mixinmethod
|
|
1785
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IPointerPoint) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1786
|
+
@winrt_mixinmethod
|
|
1787
|
+
def get_PointerId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
1788
|
+
@winrt_mixinmethod
|
|
1789
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IPointerPoint) -> win32more.Windows.Foundation.Point: ...
|
|
1790
|
+
@winrt_mixinmethod
|
|
1791
|
+
def get_Properties(self: win32more.Microsoft.UI.Input.IPointerPoint) -> win32more.Microsoft.UI.Input.PointerPointProperties: ...
|
|
1792
|
+
@winrt_mixinmethod
|
|
1793
|
+
def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
1794
|
+
@winrt_mixinmethod
|
|
1795
|
+
def GetTransformedPoint(self: win32more.Microsoft.UI.Input.IPointerPoint, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Microsoft.UI.Input.PointerPoint: ...
|
|
1796
|
+
FrameId = property(get_FrameId, None)
|
|
1797
|
+
IsInContact = property(get_IsInContact, None)
|
|
1798
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1799
|
+
PointerId = property(get_PointerId, None)
|
|
1800
|
+
Position = property(get_Position, None)
|
|
1801
|
+
Properties = property(get_Properties, None)
|
|
1802
|
+
Timestamp = property(get_Timestamp, None)
|
|
1803
|
+
class PointerPointProperties(ComPtr):
|
|
1804
|
+
extends: IInspectable
|
|
1805
|
+
default_interface: win32more.Microsoft.UI.Input.IPointerPointProperties
|
|
1806
|
+
_classid_ = 'Microsoft.UI.Input.PointerPointProperties'
|
|
1807
|
+
@winrt_mixinmethod
|
|
1808
|
+
def get_MouseWheelDelta(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Int32: ...
|
|
1809
|
+
@winrt_mixinmethod
|
|
1810
|
+
def get_IsBarrelButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1811
|
+
@winrt_mixinmethod
|
|
1812
|
+
def get_IsCanceled(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1813
|
+
@winrt_mixinmethod
|
|
1814
|
+
def get_IsEraser(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1815
|
+
@winrt_mixinmethod
|
|
1816
|
+
def get_IsHorizontalMouseWheel(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1817
|
+
@winrt_mixinmethod
|
|
1818
|
+
def get_IsInRange(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1819
|
+
@winrt_mixinmethod
|
|
1820
|
+
def get_IsInverted(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1821
|
+
@winrt_mixinmethod
|
|
1822
|
+
def get_IsLeftButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1823
|
+
@winrt_mixinmethod
|
|
1824
|
+
def get_IsMiddleButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1825
|
+
@winrt_mixinmethod
|
|
1826
|
+
def get_IsPrimary(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1827
|
+
@winrt_mixinmethod
|
|
1828
|
+
def get_IsRightButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1829
|
+
@winrt_mixinmethod
|
|
1830
|
+
def get_IsXButton1Pressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1831
|
+
@winrt_mixinmethod
|
|
1832
|
+
def get_IsXButton2Pressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1833
|
+
@winrt_mixinmethod
|
|
1834
|
+
def get_ContactRect(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Windows.Foundation.Rect: ...
|
|
1835
|
+
@winrt_mixinmethod
|
|
1836
|
+
def get_Orientation(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Single: ...
|
|
1837
|
+
@winrt_mixinmethod
|
|
1838
|
+
def get_PointerUpdateKind(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Microsoft.UI.Input.PointerUpdateKind: ...
|
|
1839
|
+
@winrt_mixinmethod
|
|
1840
|
+
def get_Pressure(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Single: ...
|
|
1841
|
+
@winrt_mixinmethod
|
|
1842
|
+
def get_TouchConfidence(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1843
|
+
@winrt_mixinmethod
|
|
1844
|
+
def get_Twist(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Single: ...
|
|
1845
|
+
@winrt_mixinmethod
|
|
1846
|
+
def get_XTilt(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Single: ...
|
|
1847
|
+
@winrt_mixinmethod
|
|
1848
|
+
def get_YTilt(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Single: ...
|
|
1849
|
+
ContactRect = property(get_ContactRect, None)
|
|
1850
|
+
IsBarrelButtonPressed = property(get_IsBarrelButtonPressed, None)
|
|
1851
|
+
IsCanceled = property(get_IsCanceled, None)
|
|
1852
|
+
IsEraser = property(get_IsEraser, None)
|
|
1853
|
+
IsHorizontalMouseWheel = property(get_IsHorizontalMouseWheel, None)
|
|
1854
|
+
IsInRange = property(get_IsInRange, None)
|
|
1855
|
+
IsInverted = property(get_IsInverted, None)
|
|
1856
|
+
IsLeftButtonPressed = property(get_IsLeftButtonPressed, None)
|
|
1857
|
+
IsMiddleButtonPressed = property(get_IsMiddleButtonPressed, None)
|
|
1858
|
+
IsPrimary = property(get_IsPrimary, None)
|
|
1859
|
+
IsRightButtonPressed = property(get_IsRightButtonPressed, None)
|
|
1860
|
+
IsXButton1Pressed = property(get_IsXButton1Pressed, None)
|
|
1861
|
+
IsXButton2Pressed = property(get_IsXButton2Pressed, None)
|
|
1862
|
+
MouseWheelDelta = property(get_MouseWheelDelta, None)
|
|
1863
|
+
Orientation = property(get_Orientation, None)
|
|
1864
|
+
PointerUpdateKind = property(get_PointerUpdateKind, None)
|
|
1865
|
+
Pressure = property(get_Pressure, None)
|
|
1866
|
+
TouchConfidence = property(get_TouchConfidence, None)
|
|
1867
|
+
Twist = property(get_Twist, None)
|
|
1868
|
+
XTilt = property(get_XTilt, None)
|
|
1869
|
+
YTilt = property(get_YTilt, None)
|
|
1870
|
+
class PointerPredictor(ComPtr):
|
|
1871
|
+
extends: IInspectable
|
|
1872
|
+
implements: Tuple[ContextManagerProtocol]
|
|
1873
|
+
default_interface: win32more.Microsoft.UI.Input.IPointerPredictor
|
|
1874
|
+
_classid_ = 'Microsoft.UI.Input.PointerPredictor'
|
|
1875
|
+
@winrt_mixinmethod
|
|
1876
|
+
def get_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor) -> win32more.Windows.Foundation.TimeSpan: ...
|
|
1877
|
+
@winrt_mixinmethod
|
|
1878
|
+
def put_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
1879
|
+
@winrt_mixinmethod
|
|
1880
|
+
def GetPredictedPoints(self: win32more.Microsoft.UI.Input.IPointerPredictor, point: win32more.Microsoft.UI.Input.PointerPoint) -> ReceiveArray[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1881
|
+
@winrt_mixinmethod
|
|
1882
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
1883
|
+
@winrt_classmethod
|
|
1884
|
+
def CreateForInputPointerSource(cls: win32more.Microsoft.UI.Input.IPointerPredictorStatics, inputPointerSource: win32more.Microsoft.UI.Input.InputPointerSource) -> win32more.Microsoft.UI.Input.PointerPredictor: ...
|
|
1885
|
+
PredictionTime = property(get_PredictionTime, put_PredictionTime)
|
|
1886
|
+
class PointerUpdateKind(Enum, Int32):
|
|
1887
|
+
Other = 0
|
|
1888
|
+
LeftButtonPressed = 1
|
|
1889
|
+
LeftButtonReleased = 2
|
|
1890
|
+
RightButtonPressed = 3
|
|
1891
|
+
RightButtonReleased = 4
|
|
1892
|
+
MiddleButtonPressed = 5
|
|
1893
|
+
MiddleButtonReleased = 6
|
|
1894
|
+
XButton1Pressed = 7
|
|
1895
|
+
XButton1Released = 8
|
|
1896
|
+
XButton2Pressed = 9
|
|
1897
|
+
XButton2Released = 10
|
|
1898
|
+
class RightTappedEventArgs(ComPtr):
|
|
1899
|
+
extends: IInspectable
|
|
1900
|
+
default_interface: win32more.Microsoft.UI.Input.IRightTappedEventArgs
|
|
1901
|
+
_classid_ = 'Microsoft.UI.Input.RightTappedEventArgs'
|
|
1902
|
+
@winrt_mixinmethod
|
|
1903
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IRightTappedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1904
|
+
@winrt_mixinmethod
|
|
1905
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IRightTappedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1906
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1907
|
+
Position = property(get_Position, None)
|
|
1908
|
+
class TappedEventArgs(ComPtr):
|
|
1909
|
+
extends: IInspectable
|
|
1910
|
+
default_interface: win32more.Microsoft.UI.Input.ITappedEventArgs
|
|
1911
|
+
_classid_ = 'Microsoft.UI.Input.TappedEventArgs'
|
|
1912
|
+
@winrt_mixinmethod
|
|
1913
|
+
def get_Position(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1914
|
+
@winrt_mixinmethod
|
|
1915
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1916
|
+
@winrt_mixinmethod
|
|
1917
|
+
def get_TapCount(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> UInt32: ...
|
|
1918
|
+
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1919
|
+
Position = property(get_Position, None)
|
|
1920
|
+
TapCount = property(get_TapCount, None)
|
|
1921
|
+
class VirtualKeyStates(Enum, UInt32):
|
|
1922
|
+
None_ = 0
|
|
1923
|
+
Down = 1
|
|
1924
|
+
Locked = 2
|
|
1925
|
+
|
|
1926
|
+
|
|
1927
|
+
make_ready(__name__)
|