win32more-Microsoft.WindowsAppSDK 0.7.1.6.250602001__py2.py3-none-any.whl → 0.7.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.
Potentially problematic release.
This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.
- 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 +42 -42
- win32more/Microsoft/UI/Composition/__init__.py +125 -125
- win32more/Microsoft/UI/Content/__init__.py +676 -35
- win32more/Microsoft/UI/Dispatching/__init__.py +4 -4
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +9 -9
- win32more/Microsoft/UI/Input/__init__.py +53 -45
- win32more/Microsoft/UI/Text/__init__.py +21 -0
- win32more/Microsoft/UI/Windowing/__init__.py +104 -21
- 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 +118 -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.7.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.7.1.7.250310001.dist-info}/METADATA +2 -2
- {win32more_microsoft_windowsappsdk-0.7.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.7.1.7.250310001.dist-info}/RECORD +35 -27
- {win32more_microsoft_windowsappsdk-0.7.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.7.1.7.250310001.dist-info}/WHEEL +0 -0
- {win32more_microsoft_windowsappsdk-0.7.1.6.250602001.dist-info → win32more_microsoft_windowsappsdk-0.7.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
|
|
@@ -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: hstr) -> 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) -> hstr: ...
|
|
108
108
|
@winrt_mixinmethod
|
|
109
109
|
def put_IsGlyphVisible(self: win32more.Microsoft.UI.Input.DragDrop.IDragUIOverride, value: Boolean) -> Void: ...
|
|
110
110
|
@winrt_mixinmethod
|
|
@@ -44,10 +44,10 @@ class CrossSlidingEventArgs(ComPtr):
|
|
|
44
44
|
default_interface: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs
|
|
45
45
|
_classid_ = 'Microsoft.UI.Input.CrossSlidingEventArgs'
|
|
46
46
|
@winrt_mixinmethod
|
|
47
|
-
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
48
|
-
@winrt_mixinmethod
|
|
49
47
|
def get_CrossSlidingState(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
|
|
50
48
|
@winrt_mixinmethod
|
|
49
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
50
|
+
@winrt_mixinmethod
|
|
51
51
|
def get_Position(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
52
52
|
CrossSlidingState = property(get_CrossSlidingState, None)
|
|
53
53
|
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
@@ -92,13 +92,13 @@ class EnteringMoveSizeEventArgs(ComPtr):
|
|
|
92
92
|
default_interface: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs
|
|
93
93
|
_classid_ = 'Microsoft.UI.Input.EnteringMoveSizeEventArgs'
|
|
94
94
|
@winrt_mixinmethod
|
|
95
|
-
def
|
|
95
|
+
def get_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.WindowId: ...
|
|
96
96
|
@winrt_mixinmethod
|
|
97
97
|
def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
|
|
98
98
|
@winrt_mixinmethod
|
|
99
|
-
def get_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.WindowId: ...
|
|
100
|
-
@winrt_mixinmethod
|
|
101
99
|
def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
|
|
100
|
+
@winrt_mixinmethod
|
|
101
|
+
def put_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs, value: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
102
102
|
MoveSizeOperation = property(get_MoveSizeOperation, None)
|
|
103
103
|
MoveSizeWindowId = property(get_MoveSizeWindowId, put_MoveSizeWindowId)
|
|
104
104
|
PointerScreenPoint = property(get_PointerScreenPoint, None)
|
|
@@ -117,9 +117,9 @@ class FocusChangedEventArgs(ComPtr):
|
|
|
117
117
|
default_interface: win32more.Microsoft.UI.Input.IFocusChangedEventArgs
|
|
118
118
|
_classid_ = 'Microsoft.UI.Input.FocusChangedEventArgs'
|
|
119
119
|
@winrt_mixinmethod
|
|
120
|
-
def put_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs, value: Boolean) -> Void: ...
|
|
121
|
-
@winrt_mixinmethod
|
|
122
120
|
def get_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs) -> Boolean: ...
|
|
121
|
+
@winrt_mixinmethod
|
|
122
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.IFocusChangedEventArgs, value: Boolean) -> Void: ...
|
|
123
123
|
Handled = property(get_Handled, put_Handled)
|
|
124
124
|
class FocusNavigationReason(Enum, Int32):
|
|
125
125
|
Programmatic = 0
|
|
@@ -179,7 +179,7 @@ class GestureRecognizer(ComPtr):
|
|
|
179
179
|
@winrt_activatemethod
|
|
180
180
|
def CreateInstance(cls) -> win32more.Microsoft.UI.Input.GestureRecognizer: ...
|
|
181
181
|
@winrt_mixinmethod
|
|
182
|
-
def
|
|
182
|
+
def get_CrossSlideHorizontally(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
183
183
|
@winrt_mixinmethod
|
|
184
184
|
def put_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
185
185
|
@winrt_mixinmethod
|
|
@@ -187,7 +187,7 @@ class GestureRecognizer(ComPtr):
|
|
|
187
187
|
@winrt_mixinmethod
|
|
188
188
|
def put_CrossSlideExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
189
189
|
@winrt_mixinmethod
|
|
190
|
-
def
|
|
190
|
+
def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
191
191
|
@winrt_mixinmethod
|
|
192
192
|
def put_CrossSlideHorizontally(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
193
193
|
@winrt_mixinmethod
|
|
@@ -243,9 +243,9 @@ class GestureRecognizer(ComPtr):
|
|
|
243
243
|
@winrt_mixinmethod
|
|
244
244
|
def get_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
245
245
|
@winrt_mixinmethod
|
|
246
|
-
def
|
|
246
|
+
def put_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
247
247
|
@winrt_mixinmethod
|
|
248
|
-
def
|
|
248
|
+
def CanBeDoubleTap(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
|
|
249
249
|
@winrt_mixinmethod
|
|
250
250
|
def CompleteGesture(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
|
|
251
251
|
@winrt_mixinmethod
|
|
@@ -289,7 +289,7 @@ class GestureRecognizer(ComPtr):
|
|
|
289
289
|
@winrt_mixinmethod
|
|
290
290
|
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: ...
|
|
291
291
|
@winrt_mixinmethod
|
|
292
|
-
def
|
|
292
|
+
def remove_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
293
293
|
@winrt_mixinmethod
|
|
294
294
|
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: ...
|
|
295
295
|
@winrt_mixinmethod
|
|
@@ -788,6 +788,12 @@ class IInputFocusNavigationHostStatics(ComPtr):
|
|
|
788
788
|
_iid_ = Guid('{c9c62cd1-73db-5aa9-b89d-143509db8f37}')
|
|
789
789
|
@winrt_commethod(6)
|
|
790
790
|
def GetForSiteBridge(self, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
791
|
+
class IInputFocusNavigationHostStatics2(ComPtr):
|
|
792
|
+
extends: IInspectable
|
|
793
|
+
_classid_ = 'Microsoft.UI.Input.IInputFocusNavigationHostStatics2'
|
|
794
|
+
_iid_ = Guid('{82505f60-ef7b-55d8-8362-8cc2840266a1}')
|
|
795
|
+
@winrt_commethod(6)
|
|
796
|
+
def GetForSiteLink(self, contentSiteLink: win32more.Microsoft.UI.Content.IContentSiteLink) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
791
797
|
class IInputKeyboardSource(ComPtr):
|
|
792
798
|
extends: IInspectable
|
|
793
799
|
_classid_ = 'Microsoft.UI.Input.IInputKeyboardSource'
|
|
@@ -1403,11 +1409,11 @@ class InputActivationListener(ComPtr):
|
|
|
1403
1409
|
default_interface: win32more.Microsoft.UI.Input.IInputActivationListener
|
|
1404
1410
|
_classid_ = 'Microsoft.UI.Input.InputActivationListener'
|
|
1405
1411
|
@winrt_mixinmethod
|
|
1406
|
-
def
|
|
1412
|
+
def remove_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1407
1413
|
@winrt_mixinmethod
|
|
1408
1414
|
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: ...
|
|
1409
1415
|
@winrt_mixinmethod
|
|
1410
|
-
def
|
|
1416
|
+
def get_State(self: win32more.Microsoft.UI.Input.IInputActivationListener) -> win32more.Microsoft.UI.Input.InputActivationState: ...
|
|
1411
1417
|
@winrt_classmethod
|
|
1412
1418
|
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputActivationListenerStatics2, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
|
|
1413
1419
|
@winrt_classmethod
|
|
@@ -1454,9 +1460,9 @@ class InputDesktopResourceCursor(ComPtr):
|
|
|
1454
1460
|
default_interface: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor
|
|
1455
1461
|
_classid_ = 'Microsoft.UI.Input.InputDesktopResourceCursor'
|
|
1456
1462
|
@winrt_mixinmethod
|
|
1457
|
-
def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> hstr: ...
|
|
1458
|
-
@winrt_mixinmethod
|
|
1459
1463
|
def get_ResourceId(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> UInt32: ...
|
|
1464
|
+
@winrt_mixinmethod
|
|
1465
|
+
def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> hstr: ...
|
|
1460
1466
|
@winrt_classmethod
|
|
1461
1467
|
def Create(cls: win32more.Microsoft.UI.Input.IInputDesktopResourceCursorStatics, resourceId: UInt32) -> win32more.Microsoft.UI.Input.InputDesktopResourceCursor: ...
|
|
1462
1468
|
@winrt_classmethod
|
|
@@ -1468,7 +1474,7 @@ class InputFocusController(ComPtr):
|
|
|
1468
1474
|
default_interface: win32more.Microsoft.UI.Input.IInputFocusController
|
|
1469
1475
|
_classid_ = 'Microsoft.UI.Input.InputFocusController'
|
|
1470
1476
|
@winrt_mixinmethod
|
|
1471
|
-
def
|
|
1477
|
+
def TrySetFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
|
|
1472
1478
|
@winrt_mixinmethod
|
|
1473
1479
|
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: ...
|
|
1474
1480
|
@winrt_mixinmethod
|
|
@@ -1484,7 +1490,7 @@ class InputFocusController(ComPtr):
|
|
|
1484
1490
|
@winrt_mixinmethod
|
|
1485
1491
|
def remove_NavigateFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusController2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1486
1492
|
@winrt_mixinmethod
|
|
1487
|
-
def
|
|
1493
|
+
def get_HasFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
|
|
1488
1494
|
@winrt_classmethod
|
|
1489
1495
|
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputFocusControllerStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputFocusController: ...
|
|
1490
1496
|
HasFocus = property(get_HasFocus, None)
|
|
@@ -1496,13 +1502,15 @@ class InputFocusNavigationHost(ComPtr):
|
|
|
1496
1502
|
default_interface: win32more.Microsoft.UI.Input.IInputFocusNavigationHost
|
|
1497
1503
|
_classid_ = 'Microsoft.UI.Input.InputFocusNavigationHost'
|
|
1498
1504
|
@winrt_mixinmethod
|
|
1499
|
-
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: ...
|
|
1500
|
-
@winrt_mixinmethod
|
|
1501
1505
|
def get_ContainsFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost) -> Boolean: ...
|
|
1502
1506
|
@winrt_mixinmethod
|
|
1507
|
+
def NavigateFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
|
|
1508
|
+
@winrt_mixinmethod
|
|
1503
1509
|
def remove_DepartFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1504
1510
|
@winrt_mixinmethod
|
|
1505
|
-
def
|
|
1511
|
+
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: ...
|
|
1512
|
+
@winrt_classmethod
|
|
1513
|
+
def GetForSiteLink(cls: win32more.Microsoft.UI.Input.IInputFocusNavigationHostStatics2, contentSiteLink: win32more.Microsoft.UI.Content.IContentSiteLink) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
1506
1514
|
@winrt_classmethod
|
|
1507
1515
|
def GetForSiteBridge(cls: win32more.Microsoft.UI.Input.IInputFocusNavigationHostStatics, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
|
|
1508
1516
|
ContainsFocus = property(get_ContainsFocus, None)
|
|
@@ -1569,7 +1577,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1569
1577
|
default_interface: win32more.Microsoft.UI.Input.IInputNonClientPointerSource
|
|
1570
1578
|
_classid_ = 'Microsoft.UI.Input.InputNonClientPointerSource'
|
|
1571
1579
|
@winrt_mixinmethod
|
|
1572
|
-
def
|
|
1580
|
+
def remove_PointerPressed(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1573
1581
|
@winrt_mixinmethod
|
|
1574
1582
|
def ClearRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> Void: ...
|
|
1575
1583
|
@winrt_mixinmethod
|
|
@@ -1595,7 +1603,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1595
1603
|
@winrt_mixinmethod
|
|
1596
1604
|
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: ...
|
|
1597
1605
|
@winrt_mixinmethod
|
|
1598
|
-
def
|
|
1606
|
+
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: ...
|
|
1599
1607
|
@winrt_mixinmethod
|
|
1600
1608
|
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: ...
|
|
1601
1609
|
@winrt_mixinmethod
|
|
@@ -1623,7 +1631,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1623
1631
|
@winrt_mixinmethod
|
|
1624
1632
|
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: ...
|
|
1625
1633
|
@winrt_mixinmethod
|
|
1626
|
-
def
|
|
1634
|
+
def remove_ExitedMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1627
1635
|
@winrt_mixinmethod
|
|
1628
1636
|
def ClearAllRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> Void: ...
|
|
1629
1637
|
@winrt_classmethod
|
|
@@ -1653,7 +1661,7 @@ class InputPointerSource(ComPtr):
|
|
|
1653
1661
|
default_interface: win32more.Microsoft.UI.Input.IInputPointerSource
|
|
1654
1662
|
_classid_ = 'Microsoft.UI.Input.InputPointerSource'
|
|
1655
1663
|
@winrt_mixinmethod
|
|
1656
|
-
def
|
|
1664
|
+
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: ...
|
|
1657
1665
|
@winrt_mixinmethod
|
|
1658
1666
|
def get_DeviceKinds(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputPointerSourceDeviceKinds: ...
|
|
1659
1667
|
@winrt_mixinmethod
|
|
@@ -1661,7 +1669,7 @@ class InputPointerSource(ComPtr):
|
|
|
1661
1669
|
@winrt_mixinmethod
|
|
1662
1670
|
def remove_PointerCaptureLost(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1663
1671
|
@winrt_mixinmethod
|
|
1664
|
-
def
|
|
1672
|
+
def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
|
|
1665
1673
|
@winrt_mixinmethod
|
|
1666
1674
|
def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1667
1675
|
@winrt_mixinmethod
|
|
@@ -1669,7 +1677,7 @@ class InputPointerSource(ComPtr):
|
|
|
1669
1677
|
@winrt_mixinmethod
|
|
1670
1678
|
def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1671
1679
|
@winrt_mixinmethod
|
|
1672
|
-
def
|
|
1680
|
+
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: ...
|
|
1673
1681
|
@winrt_mixinmethod
|
|
1674
1682
|
def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1675
1683
|
@winrt_mixinmethod
|
|
@@ -1772,10 +1780,10 @@ class ManipulationCompletedEventArgs(ComPtr):
|
|
|
1772
1780
|
default_interface: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs
|
|
1773
1781
|
_classid_ = 'Microsoft.UI.Input.ManipulationCompletedEventArgs'
|
|
1774
1782
|
@winrt_mixinmethod
|
|
1775
|
-
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1776
|
-
@winrt_mixinmethod
|
|
1777
1783
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1778
1784
|
@winrt_mixinmethod
|
|
1785
|
+
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1786
|
+
@winrt_mixinmethod
|
|
1779
1787
|
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1780
1788
|
@winrt_mixinmethod
|
|
1781
1789
|
def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
@@ -1794,10 +1802,10 @@ class ManipulationInertiaStartingEventArgs(ComPtr):
|
|
|
1794
1802
|
default_interface: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs
|
|
1795
1803
|
_classid_ = 'Microsoft.UI.Input.ManipulationInertiaStartingEventArgs'
|
|
1796
1804
|
@winrt_mixinmethod
|
|
1797
|
-
def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1798
|
-
@winrt_mixinmethod
|
|
1799
1805
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1800
1806
|
@winrt_mixinmethod
|
|
1807
|
+
def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1808
|
+
@winrt_mixinmethod
|
|
1801
1809
|
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1802
1810
|
@winrt_mixinmethod
|
|
1803
1811
|
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
@@ -1813,11 +1821,11 @@ class ManipulationStartedEventArgs(ComPtr):
|
|
|
1813
1821
|
default_interface: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs
|
|
1814
1822
|
_classid_ = 'Microsoft.UI.Input.ManipulationStartedEventArgs'
|
|
1815
1823
|
@winrt_mixinmethod
|
|
1824
|
+
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1825
|
+
@winrt_mixinmethod
|
|
1816
1826
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1817
1827
|
@winrt_mixinmethod
|
|
1818
1828
|
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1819
|
-
@winrt_mixinmethod
|
|
1820
|
-
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1821
1829
|
Cumulative = property(get_Cumulative, None)
|
|
1822
1830
|
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1823
1831
|
Position = property(get_Position, None)
|
|
@@ -1850,15 +1858,15 @@ class MouseWheelParameters(ComPtr):
|
|
|
1850
1858
|
default_interface: win32more.Microsoft.UI.Input.IMouseWheelParameters
|
|
1851
1859
|
_classid_ = 'Microsoft.UI.Input.MouseWheelParameters'
|
|
1852
1860
|
@winrt_mixinmethod
|
|
1853
|
-
def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1854
|
-
@winrt_mixinmethod
|
|
1855
1861
|
def put_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1856
1862
|
@winrt_mixinmethod
|
|
1863
|
+
def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1864
|
+
@winrt_mixinmethod
|
|
1857
1865
|
def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
|
|
1858
1866
|
@winrt_mixinmethod
|
|
1859
1867
|
def put_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
|
|
1860
1868
|
@winrt_mixinmethod
|
|
1861
|
-
def
|
|
1869
|
+
def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1862
1870
|
@winrt_mixinmethod
|
|
1863
1871
|
def put_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
|
|
1864
1872
|
@winrt_mixinmethod
|
|
@@ -1894,10 +1902,10 @@ class NonClientPointerEventArgs(ComPtr):
|
|
|
1894
1902
|
default_interface: win32more.Microsoft.UI.Input.INonClientPointerEventArgs
|
|
1895
1903
|
_classid_ = 'Microsoft.UI.Input.NonClientPointerEventArgs'
|
|
1896
1904
|
@winrt_mixinmethod
|
|
1897
|
-
def get_Point(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1898
|
-
@winrt_mixinmethod
|
|
1899
1905
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1900
1906
|
@winrt_mixinmethod
|
|
1907
|
+
def get_Point(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1908
|
+
@winrt_mixinmethod
|
|
1901
1909
|
def get_RegionKind(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.NonClientRegionKind: ...
|
|
1902
1910
|
@winrt_mixinmethod
|
|
1903
1911
|
def get_IsPointInRegion(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> Boolean: ...
|
|
@@ -1941,7 +1949,7 @@ class PointerEventArgs(ComPtr):
|
|
|
1941
1949
|
default_interface: win32more.Microsoft.UI.Input.IPointerEventArgs
|
|
1942
1950
|
_classid_ = 'Microsoft.UI.Input.PointerEventArgs'
|
|
1943
1951
|
@winrt_mixinmethod
|
|
1944
|
-
def
|
|
1952
|
+
def GetIntermediatePoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1945
1953
|
@winrt_mixinmethod
|
|
1946
1954
|
def get_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> Boolean: ...
|
|
1947
1955
|
@winrt_mixinmethod
|
|
@@ -1949,7 +1957,7 @@ class PointerEventArgs(ComPtr):
|
|
|
1949
1957
|
@winrt_mixinmethod
|
|
1950
1958
|
def get_KeyModifiers(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.System.VirtualKeyModifiers: ...
|
|
1951
1959
|
@winrt_mixinmethod
|
|
1952
|
-
def
|
|
1960
|
+
def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1953
1961
|
@winrt_mixinmethod
|
|
1954
1962
|
def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
|
|
1955
1963
|
CurrentPoint = property(get_CurrentPoint, None)
|
|
@@ -1960,10 +1968,10 @@ class PointerPoint(ComPtr):
|
|
|
1960
1968
|
default_interface: win32more.Microsoft.UI.Input.IPointerPoint
|
|
1961
1969
|
_classid_ = 'Microsoft.UI.Input.PointerPoint'
|
|
1962
1970
|
@winrt_mixinmethod
|
|
1963
|
-
def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
1964
|
-
@winrt_mixinmethod
|
|
1965
1971
|
def get_IsInContact(self: win32more.Microsoft.UI.Input.IPointerPoint) -> Boolean: ...
|
|
1966
1972
|
@winrt_mixinmethod
|
|
1973
|
+
def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
1974
|
+
@winrt_mixinmethod
|
|
1967
1975
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IPointerPoint) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1968
1976
|
@winrt_mixinmethod
|
|
1969
1977
|
def get_PointerId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
|
|
@@ -1987,7 +1995,7 @@ class PointerPointProperties(ComPtr):
|
|
|
1987
1995
|
default_interface: win32more.Microsoft.UI.Input.IPointerPointProperties
|
|
1988
1996
|
_classid_ = 'Microsoft.UI.Input.PointerPointProperties'
|
|
1989
1997
|
@winrt_mixinmethod
|
|
1990
|
-
def
|
|
1998
|
+
def get_IsInRange(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1991
1999
|
@winrt_mixinmethod
|
|
1992
2000
|
def get_IsBarrelButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1993
2001
|
@winrt_mixinmethod
|
|
@@ -1997,7 +2005,7 @@ class PointerPointProperties(ComPtr):
|
|
|
1997
2005
|
@winrt_mixinmethod
|
|
1998
2006
|
def get_IsHorizontalMouseWheel(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
1999
2007
|
@winrt_mixinmethod
|
|
2000
|
-
def
|
|
2008
|
+
def get_ContactRect(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Windows.Foundation.Rect: ...
|
|
2001
2009
|
@winrt_mixinmethod
|
|
2002
2010
|
def get_IsInverted(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
2003
2011
|
@winrt_mixinmethod
|
|
@@ -2005,7 +2013,7 @@ class PointerPointProperties(ComPtr):
|
|
|
2005
2013
|
@winrt_mixinmethod
|
|
2006
2014
|
def get_IsMiddleButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
2007
2015
|
@winrt_mixinmethod
|
|
2008
|
-
def
|
|
2016
|
+
def get_IsPrimary(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
2009
2017
|
@winrt_mixinmethod
|
|
2010
2018
|
def get_IsRightButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
|
|
2011
2019
|
@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(hstr)) -> Void: ...
|
|
344
|
+
@winrt_commethod(9)
|
|
345
|
+
def SetMathML(self, value: hstr) -> 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(hstr)) -> Void: ...
|
|
785
|
+
@winrt_mixinmethod
|
|
786
|
+
def SetMathML(self: win32more.Microsoft.UI.Text.ITextDocument2, value: hstr) -> 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_):
|