win32more-Microsoft.WindowsAppSDK 0.6.1.6.250602001__py2.py3-none-any.whl → 0.6.1.7.250310001__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.
- win32more/Microsoft/Foundation/__init__.py +1 -1
- win32more/Microsoft/Security/Authentication/OAuth/__init__.py +591 -0
- win32more/Microsoft/UI/Composition/Core/__init__.py +4 -4
- win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +4 -4
- win32more/Microsoft/UI/Composition/Effects/__init__.py +10 -10
- win32more/Microsoft/UI/Composition/Interactions/__init__.py +93 -93
- win32more/Microsoft/UI/Composition/Scenes/__init__.py +78 -78
- win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +43 -43
- win32more/Microsoft/UI/Composition/__init__.py +125 -125
- win32more/Microsoft/UI/Content/__init__.py +677 -36
- win32more/Microsoft/UI/Dispatching/__init__.py +5 -5
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +9 -9
- win32more/Microsoft/UI/Input/__init__.py +56 -48
- win32more/Microsoft/UI/Text/__init__.py +21 -0
- win32more/Microsoft/UI/Windowing/__init__.py +105 -22
- win32more/Microsoft/UI/Xaml/Controls/__init__.py +274 -0
- win32more/Microsoft/UI/Xaml/__init__.py +64 -2
- win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +1 -1
- win32more/Microsoft/Windows/AppNotifications/__init__.py +1 -1
- win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py +29 -0
- win32more/Microsoft/Windows/ApplicationModel/Background/__init__.py +65 -0
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +117 -0
- win32more/Microsoft/Windows/BadgeNotifications/__init__.py +53 -0
- win32more/Microsoft/Windows/Media/Capture/__init__.py +196 -0
- win32more/appsdk/versioninfo.py +2 -2
- win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- {win32more_microsoft_windowsappsdk-0.6.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.7.250310001.dist-info}/METADATA +2 -2
- {win32more_microsoft_windowsappsdk-0.6.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.7.250310001.dist-info}/RECORD +35 -27
- {win32more_microsoft_windowsappsdk-0.6.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.7.250310001.dist-info}/WHEEL +0 -0
- {win32more_microsoft_windowsappsdk-0.6.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.7.250310001.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +0 -0
|
@@ -22,7 +22,7 @@ class DispatcherQueue(ComPtr):
|
|
|
22
22
|
default_interface: win32more.Microsoft.UI.Dispatching.IDispatcherQueue
|
|
23
23
|
_classid_ = 'Microsoft.UI.Dispatching.DispatcherQueue'
|
|
24
24
|
@winrt_mixinmethod
|
|
25
|
-
def
|
|
25
|
+
def add_ShutdownStarting(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Dispatching.DispatcherQueue, win32more.Microsoft.UI.Dispatching.DispatcherQueueShutdownStartingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
26
26
|
@winrt_mixinmethod
|
|
27
27
|
def TryEnqueue(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, callback: win32more.Microsoft.UI.Dispatching.DispatcherQueueHandler) -> Boolean: ...
|
|
28
28
|
@winrt_mixinmethod
|
|
@@ -34,7 +34,7 @@ class DispatcherQueue(ComPtr):
|
|
|
34
34
|
@winrt_mixinmethod
|
|
35
35
|
def add_ShutdownCompleted(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Dispatching.DispatcherQueue, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
36
36
|
@winrt_mixinmethod
|
|
37
|
-
def
|
|
37
|
+
def remove_ShutdownCompleted(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
38
38
|
@winrt_mixinmethod
|
|
39
39
|
def get_HasThreadAccess(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueue2) -> Boolean: ...
|
|
40
40
|
@winrt_mixinmethod
|
|
@@ -56,8 +56,8 @@ class DispatcherQueue(ComPtr):
|
|
|
56
56
|
@winrt_classmethod
|
|
57
57
|
def GetForCurrentThread(cls: win32more.Microsoft.UI.Dispatching.IDispatcherQueueStatics) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
58
58
|
HasThreadAccess = property(get_HasThreadAccess, None)
|
|
59
|
-
ShutdownCompleted = event()
|
|
60
59
|
ShutdownStarting = event()
|
|
60
|
+
ShutdownCompleted = event()
|
|
61
61
|
FrameworkShutdownStarting = event()
|
|
62
62
|
FrameworkShutdownCompleted = event()
|
|
63
63
|
class DispatcherQueueController(ComPtr):
|
|
@@ -95,11 +95,11 @@ class DispatcherQueueTimer(ComPtr):
|
|
|
95
95
|
default_interface: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer
|
|
96
96
|
_classid_ = 'Microsoft.UI.Dispatching.DispatcherQueueTimer'
|
|
97
97
|
@winrt_mixinmethod
|
|
98
|
-
def
|
|
98
|
+
def put_IsRepeating(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer, value: Boolean) -> Void: ...
|
|
99
99
|
@winrt_mixinmethod
|
|
100
100
|
def put_Interval(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
|
|
101
101
|
@winrt_mixinmethod
|
|
102
|
-
def
|
|
102
|
+
def get_IsRunning(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer) -> Boolean: ...
|
|
103
103
|
@winrt_mixinmethod
|
|
104
104
|
def get_IsRepeating(self: win32more.Microsoft.UI.Dispatching.IDispatcherQueueTimer) -> Boolean: ...
|
|
105
105
|
@winrt_mixinmethod
|
|
@@ -12,10 +12,10 @@ class DragDropManager(ComPtr):
|
|
|
12
12
|
default_interface: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager
|
|
13
13
|
_classid_ = 'Microsoft.UI.Input.DragDrop.DragDropManager'
|
|
14
14
|
@winrt_mixinmethod
|
|
15
|
-
def put_AreConcurrentOperationsEnabled(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, value: Boolean) -> Void: ...
|
|
16
|
-
@winrt_mixinmethod
|
|
17
15
|
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
18
16
|
@winrt_mixinmethod
|
|
17
|
+
def put_AreConcurrentOperationsEnabled(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, value: Boolean) -> Void: ...
|
|
18
|
+
@winrt_mixinmethod
|
|
19
19
|
def add_TargetRequested(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.DragDrop.DragDropManager, win32more.Microsoft.UI.Input.DragDrop.DropOperationTargetRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
20
20
|
@winrt_mixinmethod
|
|
21
21
|
def remove_TargetRequested(self: win32more.Microsoft.UI.Input.DragDrop.IDragDropManager, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
@@ -38,10 +38,10 @@ class DragInfo(ComPtr):
|
|
|
38
38
|
default_interface: win32more.Microsoft.UI.Input.DragDrop.IDragInfo
|
|
39
39
|
_classid_ = 'Microsoft.UI.Input.DragDrop.DragInfo'
|
|
40
40
|
@winrt_mixinmethod
|
|
41
|
-
def get_Data(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackageView: ...
|
|
42
|
-
@winrt_mixinmethod
|
|
43
41
|
def get_Position(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.Foundation.Point: ...
|
|
44
42
|
@winrt_mixinmethod
|
|
43
|
+
def get_Data(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackageView: ...
|
|
44
|
+
@winrt_mixinmethod
|
|
45
45
|
def get_Modifiers(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Microsoft.UI.Input.DragDrop.DragDropModifiers: ...
|
|
46
46
|
@winrt_mixinmethod
|
|
47
47
|
def get_AllowedOperations(self: win32more.Microsoft.UI.Input.DragDrop.IDragInfo) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackageOperation: ...
|
|
@@ -64,11 +64,11 @@ class DragOperation(ComPtr):
|
|
|
64
64
|
@winrt_activatemethod
|
|
65
65
|
def CreateInstance(cls) -> win32more.Microsoft.UI.Input.DragDrop.DragOperation: ...
|
|
66
66
|
@winrt_mixinmethod
|
|
67
|
-
def
|
|
67
|
+
def get_Data(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackage: ...
|
|
68
68
|
@winrt_mixinmethod
|
|
69
69
|
def put_AllowedOperations(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation, value: win32more.Windows.ApplicationModel.DataTransfer.DataPackageOperation) -> Void: ...
|
|
70
70
|
@winrt_mixinmethod
|
|
71
|
-
def
|
|
71
|
+
def get_AllowedOperations(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation) -> win32more.Windows.ApplicationModel.DataTransfer.DataPackageOperation: ...
|
|
72
72
|
@winrt_mixinmethod
|
|
73
73
|
def get_DragUIContentMode(self: win32more.Microsoft.UI.Input.DragDrop.IDragOperation) -> win32more.Microsoft.UI.Input.DragDrop.DragUIContentMode: ...
|
|
74
74
|
@winrt_mixinmethod
|
|
@@ -92,11 +92,11 @@ class DragUIOverride(ComPtr):
|
|
|
92
92
|
default_interface: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride
|
|
93
93
|
_classid_ = 'Microsoft.UI.Input.DragDrop.DragUIOverride'
|
|
94
94
|
@winrt_mixinmethod
|
|
95
|
-
def
|
|
95
|
+
def get_IsGlyphVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride) -> Boolean: ...
|
|
96
96
|
@winrt_mixinmethod
|
|
97
97
|
def put_Caption(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: WinRT_String) -> Void: ...
|
|
98
98
|
@winrt_mixinmethod
|
|
99
|
-
def
|
|
99
|
+
def get_IsCaptionVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride) -> Boolean: ...
|
|
100
100
|
@winrt_mixinmethod
|
|
101
101
|
def put_IsCaptionVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: Boolean) -> Void: ...
|
|
102
102
|
@winrt_mixinmethod
|
|
@@ -104,7 +104,7 @@ class DragUIOverride(ComPtr):
|
|
|
104
104
|
@winrt_mixinmethod
|
|
105
105
|
def put_IsContentVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: Boolean) -> Void: ...
|
|
106
106
|
@winrt_mixinmethod
|
|
107
|
-
def
|
|
107
|
+
def get_Caption(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride) -> WinRT_String: ...
|
|
108
108
|
@winrt_mixinmethod
|
|
109
109
|
def put_IsGlyphVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: Boolean) -> Void: ...
|
|
110
110
|
@winrt_mixinmethod
|
|
@@ -43,10 +43,10 @@ class CrossSlidingEventArgs(ComPtr):
|
|
|
43
43
|
default_interface: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs
|
|
44
44
|
_classid_ = 'Microsoft.UI.Input.CrossSlidingEventArgs'
|
|
45
45
|
@winrt_mixinmethod
|
|
46
|
-
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
47
|
-
@winrt_mixinmethod
|
|
48
46
|
def get_CrossSlidingState(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
|
|
49
47
|
@winrt_mixinmethod
|
|
48
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
49
|
+
@winrt_mixinmethod
|
|
50
50
|
def get_Position(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
51
51
|
CrossSlidingState = property(get_CrossSlidingState, None)
|
|
52
52
|
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
@@ -91,13 +91,13 @@ class EnteringMoveSizeEventArgs(ComPtr):
|
|
|
91
91
|
default_interface: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs
|
|
92
92
|
_classid_ = 'Microsoft.UI.Input.EnteringMoveSizeEventArgs'
|
|
93
93
|
@winrt_mixinmethod
|
|
94
|
-
def
|
|
94
|
+
def get_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.WindowId: ...
|
|
95
95
|
@winrt_mixinmethod
|
|
96
96
|
def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
|
|
97
97
|
@winrt_mixinmethod
|
|
98
|
-
def get_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.WindowId: ...
|
|
99
|
-
@winrt_mixinmethod
|
|
100
98
|
def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
|
|
99
|
+
@winrt_mixinmethod
|
|
100
|
+
def put_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs, value: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
101
101
|
MoveSizeOperation = property(get_MoveSizeOperation, None)
|
|
102
102
|
MoveSizeWindowId = property(get_MoveSizeWindowId, put_MoveSizeWindowId)
|
|
103
103
|
PointerScreenPoint = property(get_PointerScreenPoint, None)
|
|
@@ -116,9 +116,9 @@ class FocusChangedEventArgs(ComPtr):
|
|
|
116
116
|
default_interface: win32more.Microsoft.UI.Input.IFocusChangedEventArgs
|
|
117
117
|
_classid_ = 'Microsoft.UI.Input.FocusChangedEventArgs'
|
|
118
118
|
@winrt_mixinmethod
|
|
119
|
-
def put_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs, value: Boolean) -> Void: ...
|
|
120
|
-
@winrt_mixinmethod
|
|
121
119
|
def get_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs) -> Boolean: ...
|
|
120
|
+
@winrt_mixinmethod
|
|
121
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs, value: Boolean) -> Void: ...
|
|
122
122
|
Handled = property(get_Handled, put_Handled)
|
|
123
123
|
class FocusNavigationReason(Enum, Int32):
|
|
124
124
|
Programmatic = 0
|
|
@@ -178,7 +178,7 @@ class GestureRecognizer(ComPtr):
|
|
|
178
178
|
@winrt_activatemethod
|
|
179
179
|
def CreateInstance(cls) -> win32more.Microsoft.UI.Input.GestureRecognizer: ...
|
|
180
180
|
@winrt_mixinmethod
|
|
181
|
-
def
|
|
181
|
+
def get_CrossSlideHorizontally(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
182
182
|
@winrt_mixinmethod
|
|
183
183
|
def put_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
184
184
|
@winrt_mixinmethod
|
|
@@ -186,7 +186,7 @@ class GestureRecognizer(ComPtr):
|
|
|
186
186
|
@winrt_mixinmethod
|
|
187
187
|
def put_CrossSlideExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
188
188
|
@winrt_mixinmethod
|
|
189
|
-
def
|
|
189
|
+
def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
190
190
|
@winrt_mixinmethod
|
|
191
191
|
def put_CrossSlideHorizontally(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
192
192
|
@winrt_mixinmethod
|
|
@@ -242,9 +242,9 @@ class GestureRecognizer(ComPtr):
|
|
|
242
242
|
@winrt_mixinmethod
|
|
243
243
|
def get_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
244
244
|
@winrt_mixinmethod
|
|
245
|
-
def
|
|
245
|
+
def put_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
246
246
|
@winrt_mixinmethod
|
|
247
|
-
def
|
|
247
|
+
def CanBeDoubleTap(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
|
|
248
248
|
@winrt_mixinmethod
|
|
249
249
|
def CompleteGesture(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
|
|
250
250
|
@winrt_mixinmethod
|
|
@@ -288,7 +288,7 @@ class GestureRecognizer(ComPtr):
|
|
|
288
288
|
@winrt_mixinmethod
|
|
289
289
|
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: ...
|
|
290
290
|
@winrt_mixinmethod
|
|
291
|
-
def
|
|
291
|
+
def remove_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
292
292
|
@winrt_mixinmethod
|
|
293
293
|
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: ...
|
|
294
294
|
@winrt_mixinmethod
|
|
@@ -787,6 +787,12 @@ class IInputFocusNavigationHostStatics(ComPtr):
|
|
|
787
787
|
_iid_ = Guid('{c9c62cd1-73db-5aa9-b89d-143509db8f37}')
|
|
788
788
|
@winrt_commethod(6)
|
|
789
789
|
def GetForSiteBridge(self, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
790
|
+
class IInputFocusNavigationHostStatics2(ComPtr):
|
|
791
|
+
extends: IInspectable
|
|
792
|
+
_classid_ = 'Microsoft.UI.Input.IInputFocusNavigationHostStatics2'
|
|
793
|
+
_iid_ = Guid('{82505f60-ef7b-55d8-8362-8cc2840266a1}')
|
|
794
|
+
@winrt_commethod(6)
|
|
795
|
+
def GetForSiteLink(self, contentSiteLink: win32more.Microsoft.UI.Content.IContentSiteLink) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
790
796
|
class IInputKeyboardSource(ComPtr):
|
|
791
797
|
extends: IInspectable
|
|
792
798
|
_classid_ = 'Microsoft.UI.Input.IInputKeyboardSource'
|
|
@@ -1402,11 +1408,11 @@ class InputActivationListener(ComPtr):
|
|
|
1402
1408
|
default_interface: win32more.Microsoft.UI.Input.IInputActivationListener
|
|
1403
1409
|
_classid_ = 'Microsoft.UI.Input.InputActivationListener'
|
|
1404
1410
|
@winrt_mixinmethod
|
|
1405
|
-
def
|
|
1411
|
+
def remove_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1406
1412
|
@winrt_mixinmethod
|
|
1407
1413
|
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: ...
|
|
1408
1414
|
@winrt_mixinmethod
|
|
1409
|
-
def
|
|
1415
|
+
def get_State(self: win32more.Microsoft.UI.Input.IInputActivationListener) -> win32more.Microsoft.UI.Input.InputActivationState: ...
|
|
1410
1416
|
@winrt_classmethod
|
|
1411
1417
|
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputActivationListenerStatics2, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
|
|
1412
1418
|
@winrt_classmethod
|
|
@@ -1453,9 +1459,9 @@ class InputDesktopResourceCursor(ComPtr):
|
|
|
1453
1459
|
default_interface: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor
|
|
1454
1460
|
_classid_ = 'Microsoft.UI.Input.InputDesktopResourceCursor'
|
|
1455
1461
|
@winrt_mixinmethod
|
|
1456
|
-
def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> WinRT_String: ...
|
|
1457
|
-
@winrt_mixinmethod
|
|
1458
1462
|
def get_ResourceId(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> UInt32: ...
|
|
1463
|
+
@winrt_mixinmethod
|
|
1464
|
+
def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> WinRT_String: ...
|
|
1459
1465
|
@winrt_classmethod
|
|
1460
1466
|
def Create(cls: win32more.Microsoft.UI.Input.IInputDesktopResourceCursorStatics, resourceId: UInt32) -> win32more.Microsoft.UI.Input.InputDesktopResourceCursor: ...
|
|
1461
1467
|
@winrt_classmethod
|
|
@@ -1467,7 +1473,7 @@ class InputFocusController(ComPtr):
|
|
|
1467
1473
|
default_interface: win32more.Microsoft.UI.Input.IInputFocusController
|
|
1468
1474
|
_classid_ = 'Microsoft.UI.Input.InputFocusController'
|
|
1469
1475
|
@winrt_mixinmethod
|
|
1470
|
-
def
|
|
1476
|
+
def TrySetFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
|
|
1471
1477
|
@winrt_mixinmethod
|
|
1472
1478
|
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: ...
|
|
1473
1479
|
@winrt_mixinmethod
|
|
@@ -1483,7 +1489,7 @@ class InputFocusController(ComPtr):
|
|
|
1483
1489
|
@winrt_mixinmethod
|
|
1484
1490
|
def remove_NavigateFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusController2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1485
1491
|
@winrt_mixinmethod
|
|
1486
|
-
def
|
|
1492
|
+
def get_HasFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
|
|
1487
1493
|
@winrt_classmethod
|
|
1488
1494
|
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputFocusControllerStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputFocusController: ...
|
|
1489
1495
|
HasFocus = property(get_HasFocus, None)
|
|
@@ -1495,13 +1501,15 @@ class InputFocusNavigationHost(ComPtr):
|
|
|
1495
1501
|
default_interface: win32more.Microsoft.UI.Input.IInputFocusNavigationHost
|
|
1496
1502
|
_classid_ = 'Microsoft.UI.Input.InputFocusNavigationHost'
|
|
1497
1503
|
@winrt_mixinmethod
|
|
1498
|
-
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: ...
|
|
1499
|
-
@winrt_mixinmethod
|
|
1500
1504
|
def get_ContainsFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost) -> Boolean: ...
|
|
1501
1505
|
@winrt_mixinmethod
|
|
1506
|
+
def NavigateFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
1507
|
+
@winrt_mixinmethod
|
|
1502
1508
|
def remove_DepartFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1503
1509
|
@winrt_mixinmethod
|
|
1504
|
-
def
|
|
1510
|
+
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: ...
|
|
1511
|
+
@winrt_classmethod
|
|
1512
|
+
def GetForSiteLink(cls: win32more.Microsoft.UI.Input.IInputFocusNavigationHostStatics2, contentSiteLink: win32more.Microsoft.UI.Content.IContentSiteLink) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
1505
1513
|
@winrt_classmethod
|
|
1506
1514
|
def GetForSiteBridge(cls: win32more.Microsoft.UI.Input.IInputFocusNavigationHostStatics, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
1507
1515
|
ContainsFocus = property(get_ContainsFocus, None)
|
|
@@ -1568,7 +1576,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1568
1576
|
default_interface: win32more.Microsoft.UI.Input.IInputNonClientPointerSource
|
|
1569
1577
|
_classid_ = 'Microsoft.UI.Input.InputNonClientPointerSource'
|
|
1570
1578
|
@winrt_mixinmethod
|
|
1571
|
-
def
|
|
1579
|
+
def remove_PointerPressed(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1572
1580
|
@winrt_mixinmethod
|
|
1573
1581
|
def ClearRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> Void: ...
|
|
1574
1582
|
@winrt_mixinmethod
|
|
@@ -1594,7 +1602,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1594
1602
|
@winrt_mixinmethod
|
|
1595
1603
|
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: ...
|
|
1596
1604
|
@winrt_mixinmethod
|
|
1597
|
-
def
|
|
1605
|
+
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: ...
|
|
1598
1606
|
@winrt_mixinmethod
|
|
1599
1607
|
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: ...
|
|
1600
1608
|
@winrt_mixinmethod
|
|
@@ -1622,7 +1630,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1622
1630
|
@winrt_mixinmethod
|
|
1623
1631
|
def add_ExitedMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.ExitedMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
1624
1632
|
@winrt_mixinmethod
|
|
1625
|
-
def
|
|
1633
|
+
def remove_ExitedMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1626
1634
|
@winrt_mixinmethod
|
|
1627
1635
|
def ClearAllRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> Void: ...
|
|
1628
1636
|
@winrt_classmethod
|
|
@@ -1632,6 +1640,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1632
1640
|
PointerEntered = event()
|
|
1633
1641
|
PointerMoved = event()
|
|
1634
1642
|
PointerPressed = event()
|
|
1643
|
+
PointerExited = event()
|
|
1635
1644
|
PointerReleased = event()
|
|
1636
1645
|
RegionsChanged = event()
|
|
1637
1646
|
EnteringMoveSize = event()
|
|
@@ -1639,7 +1648,6 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1639
1648
|
WindowRectChanging = event()
|
|
1640
1649
|
WindowRectChanged = event()
|
|
1641
1650
|
ExitedMoveSize = event()
|
|
1642
|
-
PointerExited = event()
|
|
1643
1651
|
class InputObject(ComPtr):
|
|
1644
1652
|
extends: IInspectable
|
|
1645
1653
|
default_interface: win32more.Microsoft.UI.Input.IInputObject
|
|
@@ -1652,7 +1660,7 @@ class InputPointerSource(ComPtr):
|
|
|
1652
1660
|
default_interface: win32more.Microsoft.UI.Input.IInputPointerSource
|
|
1653
1661
|
_classid_ = 'Microsoft.UI.Input.InputPointerSource'
|
|
1654
1662
|
@winrt_mixinmethod
|
|
1655
|
-
def
|
|
1663
|
+
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: ...
|
|
1656
1664
|
@winrt_mixinmethod
|
|
1657
1665
|
def get_DeviceKinds(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputPointerSourceDeviceKinds: ...
|
|
1658
1666
|
@winrt_mixinmethod
|
|
@@ -1660,7 +1668,7 @@ class InputPointerSource(ComPtr):
|
|
|
1660
1668
|
@winrt_mixinmethod
|
|
1661
1669
|
def remove_PointerCaptureLost(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1662
1670
|
@winrt_mixinmethod
|
|
1663
|
-
def
|
|
1671
|
+
def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
|
|
1664
1672
|
@winrt_mixinmethod
|
|
1665
1673
|
def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1666
1674
|
@winrt_mixinmethod
|
|
@@ -1668,7 +1676,7 @@ class InputPointerSource(ComPtr):
|
|
|
1668
1676
|
@winrt_mixinmethod
|
|
1669
1677
|
def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1670
1678
|
@winrt_mixinmethod
|
|
1671
|
-
def
|
|
1679
|
+
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: ...
|
|
1672
1680
|
@winrt_mixinmethod
|
|
1673
1681
|
def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1674
1682
|
@winrt_mixinmethod
|
|
@@ -1701,10 +1709,10 @@ class InputPointerSource(ComPtr):
|
|
|
1701
1709
|
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputPointerSourceStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPointerSource: ...
|
|
1702
1710
|
Cursor = property(get_Cursor, put_Cursor)
|
|
1703
1711
|
DeviceKinds = property(get_DeviceKinds, None)
|
|
1704
|
-
PointerMoved = event()
|
|
1705
|
-
PointerCaptureLost = event()
|
|
1706
1712
|
PointerEntered = event()
|
|
1713
|
+
PointerCaptureLost = event()
|
|
1707
1714
|
PointerExited = event()
|
|
1715
|
+
PointerMoved = event()
|
|
1708
1716
|
PointerPressed = event()
|
|
1709
1717
|
PointerReleased = event()
|
|
1710
1718
|
PointerRoutedAway = event()
|
|
@@ -1771,10 +1779,10 @@ class ManipulationCompletedEventArgs(ComPtr):
|
|
|
1771
1779
|
default_interface: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs
|
|
1772
1780
|
_classid_ = 'Microsoft.UI.Input.ManipulationCompletedEventArgs'
|
|
1773
1781
|
@winrt_mixinmethod
|
|
1774
|
-
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1775
|
-
@winrt_mixinmethod
|
|
1776
1782
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1777
1783
|
@winrt_mixinmethod
|
|
1784
|
+
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1785
|
+
@winrt_mixinmethod
|
|
1778
1786
|
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1779
1787
|
@winrt_mixinmethod
|
|
1780
1788
|
def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
@@ -1792,10 +1800,10 @@ class ManipulationInertiaStartingEventArgs(ComPtr):
|
|
|
1792
1800
|
default_interface: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs
|
|
1793
1801
|
_classid_ = 'Microsoft.UI.Input.ManipulationInertiaStartingEventArgs'
|
|
1794
1802
|
@winrt_mixinmethod
|
|
1795
|
-
def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1796
|
-
@winrt_mixinmethod
|
|
1797
1803
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1798
1804
|
@winrt_mixinmethod
|
|
1805
|
+
def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1806
|
+
@winrt_mixinmethod
|
|
1799
1807
|
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1800
1808
|
@winrt_mixinmethod
|
|
1801
1809
|
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
@@ -1811,11 +1819,11 @@ class ManipulationStartedEventArgs(ComPtr):
|
|
|
1811
1819
|
default_interface: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs
|
|
1812
1820
|
_classid_ = 'Microsoft.UI.Input.ManipulationStartedEventArgs'
|
|
1813
1821
|
@winrt_mixinmethod
|
|
1822
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1823
|
+
@winrt_mixinmethod
|
|
1814
1824
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1815
1825
|
@winrt_mixinmethod
|
|
1816
1826
|
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1817
|
-
@winrt_mixinmethod
|
|
1818
|
-
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1819
1827
|
Cumulative = property(get_Cumulative, None)
|
|
1820
1828
|
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1821
1829
|
Position = property(get_Position, None)
|
|
@@ -1847,15 +1855,15 @@ class MouseWheelParameters(ComPtr):
|
|
|
1847
1855
|
default_interface: win32more.Microsoft.UI.Input.IMouseWheelParameters
|
|
1848
1856
|
_classid_ = 'Microsoft.UI.Input.MouseWheelParameters'
|
|
1849
1857
|
@winrt_mixinmethod
|
|
1850
|
-
def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1851
|
-
@winrt_mixinmethod
|
|
1852
1858
|
def put_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1853
1859
|
@winrt_mixinmethod
|
|
1860
|
+
def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1861
|
+
@winrt_mixinmethod
|
|
1854
1862
|
def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
|
|
1855
1863
|
@winrt_mixinmethod
|
|
1856
1864
|
def put_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
|
|
1857
1865
|
@winrt_mixinmethod
|
|
1858
|
-
def
|
|
1866
|
+
def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1859
1867
|
@winrt_mixinmethod
|
|
1860
1868
|
def put_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
|
|
1861
1869
|
@winrt_mixinmethod
|
|
@@ -1891,10 +1899,10 @@ class NonClientPointerEventArgs(ComPtr):
|
|
|
1891
1899
|
default_interface: win32more.Microsoft.UI.Input.INonClientPointerEventArgs
|
|
1892
1900
|
_classid_ = 'Microsoft.UI.Input.NonClientPointerEventArgs'
|
|
1893
1901
|
@winrt_mixinmethod
|
|
1894
|
-
def get_Point(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1895
|
-
@winrt_mixinmethod
|
|
1896
1902
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1897
1903
|
@winrt_mixinmethod
|
|
1904
|
+
def get_Point(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1905
|
+
@winrt_mixinmethod
|
|
1898
1906
|
def get_RegionKind(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.NonClientRegionKind: ...
|
|
1899
1907
|
@winrt_mixinmethod
|
|
1900
1908
|
def get_IsPointInRegion(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> Boolean: ...
|
|
@@ -1937,7 +1945,7 @@ class PointerEventArgs(ComPtr):
|
|
|
1937
1945
|
default_interface: win32more.Microsoft.UI.Input.IPointerEventArgs
|
|
1938
1946
|
_classid_ = 'Microsoft.UI.Input.PointerEventArgs'
|
|
1939
1947
|
@winrt_mixinmethod
|
|
1940
|
-
def
|
|
1948
|
+
def GetIntermediatePoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1941
1949
|
@winrt_mixinmethod
|
|
1942
1950
|
def get_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> Boolean: ...
|
|
1943
1951
|
@winrt_mixinmethod
|
|
@@ -1945,7 +1953,7 @@ class PointerEventArgs(ComPtr):
|
|
|
1945
1953
|
@winrt_mixinmethod
|
|
1946
1954
|
def get_KeyModifiers(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.System.VirtualKeyModifiers: ...
|
|
1947
1955
|
@winrt_mixinmethod
|
|
1948
|
-
def
|
|
1956
|
+
def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1949
1957
|
@winrt_mixinmethod
|
|
1950
1958
|
def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
|
|
1951
1959
|
CurrentPoint = property(get_CurrentPoint, None)
|
|
@@ -1956,10 +1964,10 @@ class PointerPoint(ComPtr):
|
|
|
1956
1964
|
default_interface: win32more.Microsoft.UI.Input.IPointerPoint
|
|
1957
1965
|
_classid_ = 'Microsoft.UI.Input.PointerPoint'
|
|
1958
1966
|
@winrt_mixinmethod
|
|
1959
|
-
def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
1960
|
-
@winrt_mixinmethod
|
|
1961
1967
|
def get_IsInContact(self: win32more.Microsoft.UI.Input.IPointerPoint) -> Boolean: ...
|
|
1962
1968
|
@winrt_mixinmethod
|
|
1969
|
+
def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
1970
|
+
@winrt_mixinmethod
|
|
1963
1971
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IPointerPoint) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1964
1972
|
@winrt_mixinmethod
|
|
1965
1973
|
def get_PointerId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
@@ -1983,7 +1991,7 @@ class PointerPointProperties(ComPtr):
|
|
|
1983
1991
|
default_interface: win32more.Microsoft.UI.Input.IPointerPointProperties
|
|
1984
1992
|
_classid_ = 'Microsoft.UI.Input.PointerPointProperties'
|
|
1985
1993
|
@winrt_mixinmethod
|
|
1986
|
-
def
|
|
1994
|
+
def get_IsInRange(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1987
1995
|
@winrt_mixinmethod
|
|
1988
1996
|
def get_IsBarrelButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1989
1997
|
@winrt_mixinmethod
|
|
@@ -1993,7 +2001,7 @@ class PointerPointProperties(ComPtr):
|
|
|
1993
2001
|
@winrt_mixinmethod
|
|
1994
2002
|
def get_IsHorizontalMouseWheel(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1995
2003
|
@winrt_mixinmethod
|
|
1996
|
-
def
|
|
2004
|
+
def get_ContactRect(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Windows.Foundation.Rect: ...
|
|
1997
2005
|
@winrt_mixinmethod
|
|
1998
2006
|
def get_IsInverted(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1999
2007
|
@winrt_mixinmethod
|
|
@@ -2001,7 +2009,7 @@ class PointerPointProperties(ComPtr):
|
|
|
2001
2009
|
@winrt_mixinmethod
|
|
2002
2010
|
def get_IsMiddleButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
2003
2011
|
@winrt_mixinmethod
|
|
2004
|
-
def
|
|
2012
|
+
def get_IsPrimary(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
2005
2013
|
@winrt_mixinmethod
|
|
2006
2014
|
def get_IsRightButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
2007
2015
|
@winrt_mixinmethod
|
|
@@ -331,6 +331,18 @@ class ITextDocument(ComPtr):
|
|
|
331
331
|
IgnoreTrailingCharacterSpacing = property(get_IgnoreTrailingCharacterSpacing, put_IgnoreTrailingCharacterSpacing)
|
|
332
332
|
Selection = property(get_Selection, None)
|
|
333
333
|
UndoLimit = property(get_UndoLimit, put_UndoLimit)
|
|
334
|
+
class ITextDocument2(ComPtr):
|
|
335
|
+
extends: IInspectable
|
|
336
|
+
_classid_ = 'Microsoft.UI.Text.ITextDocument2'
|
|
337
|
+
_iid_ = Guid('{21febcf1-2110-5879-b1da-b343097e71e1}')
|
|
338
|
+
@winrt_commethod(6)
|
|
339
|
+
def GetMathMode(self) -> win32more.Microsoft.UI.Text.RichEditMathMode: ...
|
|
340
|
+
@winrt_commethod(7)
|
|
341
|
+
def SetMathMode(self, mode: win32more.Microsoft.UI.Text.RichEditMathMode) -> Void: ...
|
|
342
|
+
@winrt_commethod(8)
|
|
343
|
+
def GetMathML(self, value: POINTER(WinRT_String)) -> Void: ...
|
|
344
|
+
@winrt_commethod(9)
|
|
345
|
+
def SetMathML(self, value: WinRT_String) -> Void: ...
|
|
334
346
|
class ITextParagraphFormat(ComPtr):
|
|
335
347
|
extends: IInspectable
|
|
336
348
|
_classid_ = 'Microsoft.UI.Text.ITextParagraphFormat'
|
|
@@ -764,6 +776,14 @@ class RichEditTextDocument(ComPtr):
|
|
|
764
776
|
def put_IgnoreTrailingCharacterSpacing(self: win32more.Microsoft.UI.Text.ITextDocument, value: Boolean) -> Void: ...
|
|
765
777
|
@winrt_mixinmethod
|
|
766
778
|
def ClearUndoRedoHistory(self: win32more.Microsoft.UI.Text.ITextDocument) -> Void: ...
|
|
779
|
+
@winrt_mixinmethod
|
|
780
|
+
def GetMathMode(self: win32more.Microsoft.UI.Text.ITextDocument2) -> win32more.Microsoft.UI.Text.RichEditMathMode: ...
|
|
781
|
+
@winrt_mixinmethod
|
|
782
|
+
def SetMathMode(self: win32more.Microsoft.UI.Text.ITextDocument2, mode: win32more.Microsoft.UI.Text.RichEditMathMode) -> Void: ...
|
|
783
|
+
@winrt_mixinmethod
|
|
784
|
+
def GetMathML(self: win32more.Microsoft.UI.Text.ITextDocument2, value: POINTER(WinRT_String)) -> Void: ...
|
|
785
|
+
@winrt_mixinmethod
|
|
786
|
+
def SetMathML(self: win32more.Microsoft.UI.Text.ITextDocument2, value: WinRT_String) -> Void: ...
|
|
767
787
|
AlignmentIncludesTrailingWhitespace = property(get_AlignmentIncludesTrailingWhitespace, put_AlignmentIncludesTrailingWhitespace)
|
|
768
788
|
CaretType = property(get_CaretType, put_CaretType)
|
|
769
789
|
DefaultTabStop = property(get_DefaultTabStop, put_DefaultTabStop)
|
|
@@ -914,6 +934,7 @@ class TabLeader(Enum, Int32):
|
|
|
914
934
|
Lines = 3
|
|
915
935
|
ThickLines = 4
|
|
916
936
|
Equals = 5
|
|
937
|
+
TextApiContract: UInt32 = 131072
|
|
917
938
|
class _TextConstants_Meta_(ComPtr.__class__):
|
|
918
939
|
pass
|
|
919
940
|
class TextConstants(ComPtr, metaclass=_TextConstants_Meta_):
|