win32more-Microsoft.WindowsAppSDK 0.6.1.7.250606001__py2.py3-none-any.whl → 0.6.1.8.250907003__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/UI/Content/__init__.py +10 -10
- win32more/Microsoft/UI/Input/__init__.py +43 -43
- win32more/Microsoft/UI/Xaml/__init__.py +2 -2
- win32more/Microsoft/Windows/AI/Foundation/__init__.py +46 -0
- win32more/Microsoft/Windows/AI/Imaging/__init__.py +36 -0
- win32more/Microsoft/Windows/AI/Text/__init__.py +178 -1
- win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py +2 -4
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +0 -14
- win32more/Microsoft/Windows/Foundation/__init__.py +220 -0
- win32more/Microsoft/Windows/Storage/Pickers/__init__.py +258 -0
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +8 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +1 -1
- 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.7.250606001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/METADATA +2 -2
- {win32more_microsoft_windowsappsdk-0.6.1.7.250606001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/RECORD +24 -21
- {win32more_microsoft_windowsappsdk-0.6.1.7.250606001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +4 -2
- {win32more_microsoft_windowsappsdk-0.6.1.7.250606001.dist-info → win32more_microsoft_windowsappsdk-0.6.1.8.250907003.dist-info}/WHEEL +0 -0
|
@@ -480,20 +480,20 @@ class ContentSiteEnvironment(ComPtr):
|
|
|
480
480
|
default_interface: win32more.Microsoft.UI.Content.IContentSiteEnvironment
|
|
481
481
|
_classid_ = 'Microsoft.UI.Content.ContentSiteEnvironment'
|
|
482
482
|
@winrt_mixinmethod
|
|
483
|
-
def
|
|
483
|
+
def get_View(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.Content.ContentSiteEnvironmentView: ...
|
|
484
|
+
@winrt_mixinmethod
|
|
485
|
+
def put_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, value: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
484
486
|
@winrt_mixinmethod
|
|
485
487
|
def get_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.DisplayId: ...
|
|
486
488
|
@winrt_mixinmethod
|
|
487
489
|
def put_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, value: win32more.Microsoft.UI.DisplayId) -> Void: ...
|
|
488
490
|
@winrt_mixinmethod
|
|
489
|
-
def
|
|
491
|
+
def put_DisplayScale(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment2, value: Single) -> Void: ...
|
|
490
492
|
@winrt_mixinmethod
|
|
491
|
-
def
|
|
493
|
+
def NotifySettingChanged(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, setting: WinRT_String) -> Void: ...
|
|
492
494
|
@winrt_mixinmethod
|
|
493
495
|
def get_DisplayScale(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment2) -> Single: ...
|
|
494
496
|
@winrt_mixinmethod
|
|
495
|
-
def put_DisplayScale(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment2, value: Single) -> Void: ...
|
|
496
|
-
@winrt_mixinmethod
|
|
497
497
|
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.WindowId: ...
|
|
498
498
|
AppWindowId = property(get_AppWindowId, put_AppWindowId)
|
|
499
499
|
DisplayId = property(get_DisplayId, put_DisplayId)
|
|
@@ -504,11 +504,11 @@ class ContentSiteEnvironmentView(ComPtr):
|
|
|
504
504
|
default_interface: win32more.Microsoft.UI.Content.IContentSiteEnvironmentView
|
|
505
505
|
_classid_ = 'Microsoft.UI.Content.ContentSiteEnvironmentView'
|
|
506
506
|
@winrt_mixinmethod
|
|
507
|
-
def
|
|
507
|
+
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironmentView) -> win32more.Microsoft.UI.WindowId: ...
|
|
508
508
|
@winrt_mixinmethod
|
|
509
509
|
def get_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironmentView) -> win32more.Microsoft.UI.DisplayId: ...
|
|
510
510
|
@winrt_mixinmethod
|
|
511
|
-
def
|
|
511
|
+
def get_DisplayScale(self: win32more.Microsoft.UI.Content.IContentSiteEnvironmentView2) -> Single: ...
|
|
512
512
|
AppWindowId = property(get_AppWindowId, None)
|
|
513
513
|
DisplayId = property(get_DisplayId, None)
|
|
514
514
|
DisplayScale = property(get_DisplayScale, None)
|
|
@@ -671,7 +671,7 @@ class DesktopPopupSiteBridge(ComPtr):
|
|
|
671
671
|
@winrt_mixinmethod
|
|
672
672
|
def add_PreviousSiblingAutomationProviderRequested(self: win32more.Microsoft.UI.Content.IContentSiteAutomation, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.IContentSiteAutomation, win32more.Microsoft.UI.Content.ContentSiteAutomationProviderRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
673
673
|
@winrt_mixinmethod
|
|
674
|
-
def
|
|
674
|
+
def get_AutomationOption(self: win32more.Microsoft.UI.Content.IContentSiteAutomation) -> win32more.Microsoft.UI.Content.ContentAutomationOptions: ...
|
|
675
675
|
@winrt_mixinmethod
|
|
676
676
|
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
677
677
|
@winrt_mixinmethod
|
|
@@ -721,11 +721,11 @@ class DesktopPopupSiteBridge(ComPtr):
|
|
|
721
721
|
@winrt_mixinmethod
|
|
722
722
|
def remove_FrameworkClosed(self: win32more.Microsoft.UI.IClosableNotifier, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
723
723
|
@winrt_mixinmethod
|
|
724
|
-
def
|
|
724
|
+
def get_IsEnabled(self: win32more.Microsoft.UI.Content.IDesktopPopupSiteBridge) -> Boolean: ...
|
|
725
725
|
@winrt_mixinmethod
|
|
726
726
|
def put_AutomationOption(self: win32more.Microsoft.UI.Content.IContentSiteAutomation, value: win32more.Microsoft.UI.Content.ContentAutomationOptions) -> Void: ...
|
|
727
727
|
@winrt_mixinmethod
|
|
728
|
-
def
|
|
728
|
+
def get_AutomationProvider(self: win32more.Microsoft.UI.Content.IContentSiteAutomation) -> IInspectable: ...
|
|
729
729
|
@winrt_mixinmethod
|
|
730
730
|
def add_FragmentRootAutomationProviderRequested(self: win32more.Microsoft.UI.Content.IContentSiteAutomation, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.IContentSiteAutomation, win32more.Microsoft.UI.Content.ContentSiteAutomationProviderRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
731
731
|
@winrt_mixinmethod
|
|
@@ -14,13 +14,13 @@ class CharacterReceivedEventArgs(ComPtr):
|
|
|
14
14
|
default_interface: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs
|
|
15
15
|
_classid_ = 'Microsoft.UI.Input.CharacterReceivedEventArgs'
|
|
16
16
|
@winrt_mixinmethod
|
|
17
|
-
def
|
|
17
|
+
def get_KeyStatus(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
|
|
18
18
|
@winrt_mixinmethod
|
|
19
|
-
def
|
|
19
|
+
def put_Handled(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs, value: Boolean) -> Void: ...
|
|
20
20
|
@winrt_mixinmethod
|
|
21
21
|
def get_KeyCode(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> UInt32: ...
|
|
22
22
|
@winrt_mixinmethod
|
|
23
|
-
def
|
|
23
|
+
def get_Handled(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> Boolean: ...
|
|
24
24
|
Handled = property(get_Handled, put_Handled)
|
|
25
25
|
KeyCode = property(get_KeyCode, None)
|
|
26
26
|
KeyStatus = property(get_KeyStatus, None)
|
|
@@ -29,9 +29,9 @@ class ContextMenuKeyEventArgs(ComPtr):
|
|
|
29
29
|
default_interface: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs
|
|
30
30
|
_classid_ = 'Microsoft.UI.Input.ContextMenuKeyEventArgs'
|
|
31
31
|
@winrt_mixinmethod
|
|
32
|
-
def get_Handled(self: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs) -> Boolean: ...
|
|
33
|
-
@winrt_mixinmethod
|
|
34
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
35
|
Handled = property(get_Handled, put_Handled)
|
|
36
36
|
class CrossSlideThresholds(Structure):
|
|
37
37
|
SelectionStart: Single
|
|
@@ -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 put_ManipulationExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
190
190
|
@winrt_mixinmethod
|
|
191
191
|
def put_CrossSlideHorizontally(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
|
|
192
192
|
@winrt_mixinmethod
|
|
@@ -226,7 +226,7 @@ class GestureRecognizer(ComPtr):
|
|
|
226
226
|
@winrt_mixinmethod
|
|
227
227
|
def put_InertiaRotationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
228
228
|
@winrt_mixinmethod
|
|
229
|
-
def
|
|
229
|
+
def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
|
|
230
230
|
@winrt_mixinmethod
|
|
231
231
|
def put_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
|
|
232
232
|
@winrt_mixinmethod
|
|
@@ -236,7 +236,7 @@ class GestureRecognizer(ComPtr):
|
|
|
236
236
|
@winrt_mixinmethod
|
|
237
237
|
def get_ManipulationExact(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
238
238
|
@winrt_mixinmethod
|
|
239
|
-
def
|
|
239
|
+
def get_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
|
|
240
240
|
@winrt_mixinmethod
|
|
241
241
|
def get_MouseWheelParameters(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> win32more.Microsoft.UI.Input.MouseWheelParameters: ...
|
|
242
242
|
@winrt_mixinmethod
|
|
@@ -1410,9 +1410,9 @@ class InputActivationListener(ComPtr):
|
|
|
1410
1410
|
@winrt_mixinmethod
|
|
1411
1411
|
def remove_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1412
1412
|
@winrt_mixinmethod
|
|
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: ...
|
|
1414
|
-
@winrt_mixinmethod
|
|
1415
1413
|
def get_State(self: win32more.Microsoft.UI.Input.IInputActivationListener) -> win32more.Microsoft.UI.Input.InputActivationState: ...
|
|
1414
|
+
@winrt_mixinmethod
|
|
1415
|
+
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: ...
|
|
1416
1416
|
@winrt_classmethod
|
|
1417
1417
|
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputActivationListenerStatics2, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
|
|
1418
1418
|
@winrt_classmethod
|
|
@@ -1459,9 +1459,9 @@ class InputDesktopResourceCursor(ComPtr):
|
|
|
1459
1459
|
default_interface: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor
|
|
1460
1460
|
_classid_ = 'Microsoft.UI.Input.InputDesktopResourceCursor'
|
|
1461
1461
|
@winrt_mixinmethod
|
|
1462
|
-
def get_ResourceId(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> UInt32: ...
|
|
1463
|
-
@winrt_mixinmethod
|
|
1464
1462
|
def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> WinRT_String: ...
|
|
1463
|
+
@winrt_mixinmethod
|
|
1464
|
+
def get_ResourceId(self: win32more.Microsoft.UI.Input.IInputDesktopResourceCursor) -> UInt32: ...
|
|
1465
1465
|
@winrt_classmethod
|
|
1466
1466
|
def Create(cls: win32more.Microsoft.UI.Input.IInputDesktopResourceCursorStatics, resourceId: UInt32) -> win32more.Microsoft.UI.Input.InputDesktopResourceCursor: ...
|
|
1467
1467
|
@winrt_classmethod
|
|
@@ -1527,11 +1527,11 @@ class InputKeyboardSource(ComPtr):
|
|
|
1527
1527
|
@winrt_mixinmethod
|
|
1528
1528
|
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: ...
|
|
1529
1529
|
@winrt_mixinmethod
|
|
1530
|
-
def
|
|
1530
|
+
def remove_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1531
1531
|
@winrt_mixinmethod
|
|
1532
1532
|
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: ...
|
|
1533
1533
|
@winrt_mixinmethod
|
|
1534
|
-
def
|
|
1534
|
+
def GetKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
|
|
1535
1535
|
@winrt_mixinmethod
|
|
1536
1536
|
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: ...
|
|
1537
1537
|
@winrt_mixinmethod
|
|
@@ -1541,7 +1541,7 @@ class InputKeyboardSource(ComPtr):
|
|
|
1541
1541
|
@winrt_mixinmethod
|
|
1542
1542
|
def remove_SystemKeyDown(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1543
1543
|
@winrt_mixinmethod
|
|
1544
|
-
def
|
|
1544
|
+
def GetCurrentKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
|
|
1545
1545
|
@winrt_mixinmethod
|
|
1546
1546
|
def remove_SystemKeyUp(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1547
1547
|
@winrt_mixinmethod
|
|
@@ -1561,9 +1561,9 @@ class InputLightDismissAction(ComPtr):
|
|
|
1561
1561
|
default_interface: win32more.Microsoft.UI.Input.IInputLightDismissAction
|
|
1562
1562
|
_classid_ = 'Microsoft.UI.Input.InputLightDismissAction'
|
|
1563
1563
|
@winrt_mixinmethod
|
|
1564
|
-
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: ...
|
|
1565
|
-
@winrt_mixinmethod
|
|
1566
1564
|
def remove_Dismissed(self: win32more.Microsoft.UI.Input.IInputLightDismissAction, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1565
|
+
@winrt_mixinmethod
|
|
1566
|
+
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: ...
|
|
1567
1567
|
@winrt_classmethod
|
|
1568
1568
|
def GetForWindowId(cls: win32more.Microsoft.UI.Input.IInputLightDismissActionStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputLightDismissAction: ...
|
|
1569
1569
|
Dismissed = event()
|
|
@@ -1592,7 +1592,7 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1592
1592
|
@winrt_mixinmethod
|
|
1593
1593
|
def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1594
1594
|
@winrt_mixinmethod
|
|
1595
|
-
def
|
|
1595
|
+
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: ...
|
|
1596
1596
|
@winrt_mixinmethod
|
|
1597
1597
|
def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1598
1598
|
@winrt_mixinmethod
|
|
@@ -1602,11 +1602,11 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1602
1602
|
@winrt_mixinmethod
|
|
1603
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: ...
|
|
1604
1604
|
@winrt_mixinmethod
|
|
1605
|
-
def
|
|
1605
|
+
def remove_PointerReleased(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1606
1606
|
@winrt_mixinmethod
|
|
1607
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: ...
|
|
1608
1608
|
@winrt_mixinmethod
|
|
1609
|
-
def
|
|
1609
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
1610
1610
|
@winrt_mixinmethod
|
|
1611
1611
|
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: ...
|
|
1612
1612
|
@winrt_mixinmethod
|
|
@@ -1638,9 +1638,9 @@ class InputNonClientPointerSource(ComPtr):
|
|
|
1638
1638
|
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
1639
1639
|
CaptionTapped = event()
|
|
1640
1640
|
PointerEntered = event()
|
|
1641
|
+
PointerExited = event()
|
|
1641
1642
|
PointerMoved = event()
|
|
1642
1643
|
PointerPressed = event()
|
|
1643
|
-
PointerExited = event()
|
|
1644
1644
|
PointerReleased = event()
|
|
1645
1645
|
RegionsChanged = event()
|
|
1646
1646
|
EnteringMoveSize = event()
|
|
@@ -1660,15 +1660,17 @@ class InputPointerSource(ComPtr):
|
|
|
1660
1660
|
default_interface: win32more.Microsoft.UI.Input.IInputPointerSource
|
|
1661
1661
|
_classid_ = 'Microsoft.UI.Input.InputPointerSource'
|
|
1662
1662
|
@winrt_mixinmethod
|
|
1663
|
-
def
|
|
1663
|
+
def remove_PointerCaptureLost(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1664
|
+
@winrt_mixinmethod
|
|
1665
|
+
def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
|
|
1664
1666
|
@winrt_mixinmethod
|
|
1665
1667
|
def get_DeviceKinds(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputPointerSourceDeviceKinds: ...
|
|
1666
1668
|
@winrt_mixinmethod
|
|
1667
1669
|
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: ...
|
|
1668
1670
|
@winrt_mixinmethod
|
|
1669
|
-
def
|
|
1671
|
+
def get_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputCursor: ...
|
|
1670
1672
|
@winrt_mixinmethod
|
|
1671
|
-
def
|
|
1673
|
+
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: ...
|
|
1672
1674
|
@winrt_mixinmethod
|
|
1673
1675
|
def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1674
1676
|
@winrt_mixinmethod
|
|
@@ -1703,14 +1705,12 @@ class InputPointerSource(ComPtr):
|
|
|
1703
1705
|
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: ...
|
|
1704
1706
|
@winrt_mixinmethod
|
|
1705
1707
|
def remove_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
1706
|
-
@winrt_mixinmethod
|
|
1707
|
-
def get_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputCursor: ...
|
|
1708
1708
|
@winrt_classmethod
|
|
1709
1709
|
def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputPointerSourceStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPointerSource: ...
|
|
1710
1710
|
Cursor = property(get_Cursor, put_Cursor)
|
|
1711
1711
|
DeviceKinds = property(get_DeviceKinds, None)
|
|
1712
|
-
PointerEntered = event()
|
|
1713
1712
|
PointerCaptureLost = event()
|
|
1713
|
+
PointerEntered = event()
|
|
1714
1714
|
PointerExited = event()
|
|
1715
1715
|
PointerMoved = event()
|
|
1716
1716
|
PointerPressed = event()
|
|
@@ -1761,13 +1761,13 @@ class KeyEventArgs(ComPtr):
|
|
|
1761
1761
|
default_interface: win32more.Microsoft.UI.Input.IKeyEventArgs
|
|
1762
1762
|
_classid_ = 'Microsoft.UI.Input.KeyEventArgs'
|
|
1763
1763
|
@winrt_mixinmethod
|
|
1764
|
-
def get_Timestamp(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> UInt64: ...
|
|
1765
|
-
@winrt_mixinmethod
|
|
1766
1764
|
def put_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs, value: Boolean) -> Void: ...
|
|
1767
1765
|
@winrt_mixinmethod
|
|
1766
|
+
def get_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> Boolean: ...
|
|
1767
|
+
@winrt_mixinmethod
|
|
1768
1768
|
def get_KeyStatus(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
|
|
1769
1769
|
@winrt_mixinmethod
|
|
1770
|
-
def
|
|
1770
|
+
def get_Timestamp(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> UInt64: ...
|
|
1771
1771
|
@winrt_mixinmethod
|
|
1772
1772
|
def get_VirtualKey(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Windows.System.VirtualKey: ...
|
|
1773
1773
|
Handled = property(get_Handled, put_Handled)
|
|
@@ -1779,10 +1779,10 @@ class ManipulationCompletedEventArgs(ComPtr):
|
|
|
1779
1779
|
default_interface: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs
|
|
1780
1780
|
_classid_ = 'Microsoft.UI.Input.ManipulationCompletedEventArgs'
|
|
1781
1781
|
@winrt_mixinmethod
|
|
1782
|
-
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1783
|
-
@winrt_mixinmethod
|
|
1784
1782
|
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1785
1783
|
@winrt_mixinmethod
|
|
1784
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1785
|
+
@winrt_mixinmethod
|
|
1786
1786
|
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1787
1787
|
@winrt_mixinmethod
|
|
1788
1788
|
def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
@@ -1821,9 +1821,9 @@ class ManipulationStartedEventArgs(ComPtr):
|
|
|
1821
1821
|
@winrt_mixinmethod
|
|
1822
1822
|
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1823
1823
|
@winrt_mixinmethod
|
|
1824
|
-
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1825
|
-
@winrt_mixinmethod
|
|
1826
1824
|
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1825
|
+
@winrt_mixinmethod
|
|
1826
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1827
1827
|
Cumulative = property(get_Cumulative, None)
|
|
1828
1828
|
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
1829
1829
|
Position = property(get_Position, None)
|
|
@@ -1832,15 +1832,15 @@ class ManipulationUpdatedEventArgs(ComPtr):
|
|
|
1832
1832
|
default_interface: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs
|
|
1833
1833
|
_classid_ = 'Microsoft.UI.Input.ManipulationUpdatedEventArgs'
|
|
1834
1834
|
@winrt_mixinmethod
|
|
1835
|
-
def
|
|
1835
|
+
def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1836
1836
|
@winrt_mixinmethod
|
|
1837
|
-
def
|
|
1837
|
+
def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
|
|
1838
1838
|
@winrt_mixinmethod
|
|
1839
1839
|
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
1840
1840
|
@winrt_mixinmethod
|
|
1841
1841
|
def get_Position(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
1842
1842
|
@winrt_mixinmethod
|
|
1843
|
-
def
|
|
1843
|
+
def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationUpdatedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
|
|
1844
1844
|
Cumulative = property(get_Cumulative, None)
|
|
1845
1845
|
Delta = property(get_Delta, None)
|
|
1846
1846
|
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
@@ -1855,12 +1855,12 @@ class MouseWheelParameters(ComPtr):
|
|
|
1855
1855
|
default_interface: win32more.Microsoft.UI.Input.IMouseWheelParameters
|
|
1856
1856
|
_classid_ = 'Microsoft.UI.Input.MouseWheelParameters'
|
|
1857
1857
|
@winrt_mixinmethod
|
|
1858
|
+
def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
|
|
1859
|
+
@winrt_mixinmethod
|
|
1858
1860
|
def put_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
|
|
1859
1861
|
@winrt_mixinmethod
|
|
1860
1862
|
def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
1861
1863
|
@winrt_mixinmethod
|
|
1862
|
-
def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
|
|
1863
|
-
@winrt_mixinmethod
|
|
1864
1864
|
def put_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
|
|
1865
1865
|
@winrt_mixinmethod
|
|
1866
1866
|
def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
|
|
@@ -1953,9 +1953,9 @@ class PointerEventArgs(ComPtr):
|
|
|
1953
1953
|
@winrt_mixinmethod
|
|
1954
1954
|
def get_KeyModifiers(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.System.VirtualKeyModifiers: ...
|
|
1955
1955
|
@winrt_mixinmethod
|
|
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]: ...
|
|
1957
|
-
@winrt_mixinmethod
|
|
1958
1956
|
def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
|
|
1957
|
+
@winrt_mixinmethod
|
|
1958
|
+
def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
|
|
1959
1959
|
CurrentPoint = property(get_CurrentPoint, None)
|
|
1960
1960
|
Handled = property(get_Handled, put_Handled)
|
|
1961
1961
|
KeyModifiers = property(get_KeyModifiers, None)
|
|
@@ -2096,11 +2096,11 @@ class TappedEventArgs(ComPtr):
|
|
|
2096
2096
|
default_interface: win32more.Microsoft.UI.Input.ITappedEventArgs
|
|
2097
2097
|
_classid_ = 'Microsoft.UI.Input.TappedEventArgs'
|
|
2098
2098
|
@winrt_mixinmethod
|
|
2099
|
-
def
|
|
2099
|
+
def get_TapCount(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> UInt32: ...
|
|
2100
2100
|
@winrt_mixinmethod
|
|
2101
2101
|
def get_Position(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Windows.Foundation.Point: ...
|
|
2102
2102
|
@winrt_mixinmethod
|
|
2103
|
-
def
|
|
2103
|
+
def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
|
|
2104
2104
|
PointerDeviceType = property(get_PointerDeviceType, None)
|
|
2105
2105
|
Position = property(get_Position, None)
|
|
2106
2106
|
TapCount = property(get_TapCount, None)
|
|
@@ -5871,7 +5871,7 @@ class VisualTransition(ComPtr):
|
|
|
5871
5871
|
GeneratedEasingFunction = property(get_GeneratedEasingFunction, put_GeneratedEasingFunction)
|
|
5872
5872
|
Storyboard = property(get_Storyboard, put_Storyboard)
|
|
5873
5873
|
To = property(get_To, put_To)
|
|
5874
|
-
WinUIContract: UInt32 =
|
|
5874
|
+
WinUIContract: UInt32 = 589824
|
|
5875
5875
|
class _Window_Meta_(ComPtr.__class__):
|
|
5876
5876
|
pass
|
|
5877
5877
|
class Window(ComPtr, metaclass=_Window_Meta_):
|
|
@@ -6006,7 +6006,7 @@ class WindowVisibilityChangedEventArgs(ComPtr):
|
|
|
6006
6006
|
def get_Visible(self: win32more.Microsoft.UI.Xaml.IWindowVisibilityChangedEventArgs) -> Boolean: ...
|
|
6007
6007
|
Handled = property(get_Handled, put_Handled)
|
|
6008
6008
|
Visible = property(get_Visible, None)
|
|
6009
|
-
XamlContract: UInt32 =
|
|
6009
|
+
XamlContract: UInt32 = 589824
|
|
6010
6010
|
class XamlIsland(ComPtr):
|
|
6011
6011
|
extends: IInspectable
|
|
6012
6012
|
implements: Tuple[ContextManagerProtocol]
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.Windows.AI.Foundation
|
|
4
|
+
AIFoundationContract: UInt32 = 65536
|
|
5
|
+
class EmbeddingVector(ComPtr):
|
|
6
|
+
extends: IInspectable
|
|
7
|
+
default_interface: win32more.Microsoft.Windows.AI.Foundation.IEmbeddingVector
|
|
8
|
+
_classid_ = 'Microsoft.Windows.AI.Foundation.EmbeddingVector'
|
|
9
|
+
def __init__(self, *args, **kwargs):
|
|
10
|
+
if kwargs:
|
|
11
|
+
super().__init__(**kwargs)
|
|
12
|
+
elif len(args) == 2:
|
|
13
|
+
super().__init__(move=win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector.CreateInstance(*args))
|
|
14
|
+
else:
|
|
15
|
+
raise ValueError('no matched constructor')
|
|
16
|
+
@winrt_factorymethod
|
|
17
|
+
def CreateInstance(cls: win32more.Microsoft.Windows.AI.Foundation.IEmbeddingVectorFactory, data: PassArray[Single], vectorSpaceID: Guid) -> win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector: ...
|
|
18
|
+
@winrt_mixinmethod
|
|
19
|
+
def GetValues(self: win32more.Microsoft.Windows.AI.Foundation.IEmbeddingVector, values: FillArray[Single]) -> Void: ...
|
|
20
|
+
@winrt_mixinmethod
|
|
21
|
+
def get_Size(self: win32more.Microsoft.Windows.AI.Foundation.IEmbeddingVector) -> UInt32: ...
|
|
22
|
+
@winrt_mixinmethod
|
|
23
|
+
def get_VectorSpaceId(self: win32more.Microsoft.Windows.AI.Foundation.IEmbeddingVector) -> Guid: ...
|
|
24
|
+
Size = property(get_Size, None)
|
|
25
|
+
VectorSpaceId = property(get_VectorSpaceId, None)
|
|
26
|
+
class IEmbeddingVector(ComPtr):
|
|
27
|
+
extends: IInspectable
|
|
28
|
+
_classid_ = 'Microsoft.Windows.AI.Foundation.IEmbeddingVector'
|
|
29
|
+
_iid_ = Guid('{07bdaa90-b3d2-5701-97d1-c390ec62799c}')
|
|
30
|
+
@winrt_commethod(6)
|
|
31
|
+
def GetValues(self, values: FillArray[Single]) -> Void: ...
|
|
32
|
+
@winrt_commethod(7)
|
|
33
|
+
def get_Size(self) -> UInt32: ...
|
|
34
|
+
@winrt_commethod(8)
|
|
35
|
+
def get_VectorSpaceId(self) -> Guid: ...
|
|
36
|
+
Size = property(get_Size, None)
|
|
37
|
+
VectorSpaceId = property(get_VectorSpaceId, None)
|
|
38
|
+
class IEmbeddingVectorFactory(ComPtr):
|
|
39
|
+
extends: IInspectable
|
|
40
|
+
_classid_ = 'Microsoft.Windows.AI.Foundation.IEmbeddingVectorFactory'
|
|
41
|
+
_iid_ = Guid('{16b72758-2b69-5e97-b865-6a6a71683dd0}')
|
|
42
|
+
@winrt_commethod(6)
|
|
43
|
+
def CreateInstance(self, data: PassArray[Single], vectorSpaceID: Guid) -> win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector: ...
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
make_ready(__name__)
|
|
@@ -73,6 +73,24 @@ class IImageObjectExtractorStatics(ComPtr):
|
|
|
73
73
|
def GetReadyState(self) -> win32more.Microsoft.Windows.AI.AIFeatureReadyState: ...
|
|
74
74
|
@winrt_commethod(9)
|
|
75
75
|
def EnsureReadyAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.AIFeatureReadyResult, Double]: ...
|
|
76
|
+
class IImageObjectRemover(ComPtr):
|
|
77
|
+
extends: IInspectable
|
|
78
|
+
_classid_ = 'Microsoft.Windows.AI.Imaging.IImageObjectRemover'
|
|
79
|
+
_iid_ = Guid('{cfa20faf-5ae1-5b8c-b0d8-e7c64db59d26}')
|
|
80
|
+
@winrt_commethod(6)
|
|
81
|
+
def RemoveFromSoftwareBitmap(self, softwareBitmap: win32more.Windows.Graphics.Imaging.SoftwareBitmap, softwareBitmapMask: win32more.Windows.Graphics.Imaging.SoftwareBitmap) -> win32more.Windows.Graphics.Imaging.SoftwareBitmap: ...
|
|
82
|
+
@winrt_commethod(7)
|
|
83
|
+
def RemoveFromImageBuffer(self, imageBuffer: win32more.Microsoft.Graphics.Imaging.ImageBuffer, imageBufferMask: win32more.Microsoft.Graphics.Imaging.ImageBuffer) -> win32more.Microsoft.Graphics.Imaging.ImageBuffer: ...
|
|
84
|
+
class IImageObjectRemoverStatics(ComPtr):
|
|
85
|
+
extends: IInspectable
|
|
86
|
+
_classid_ = 'Microsoft.Windows.AI.Imaging.IImageObjectRemoverStatics'
|
|
87
|
+
_iid_ = Guid('{cbcbd7e1-5b81-503f-8fcb-66ae1d6e5b9c}')
|
|
88
|
+
@winrt_commethod(6)
|
|
89
|
+
def GetReadyState(self) -> win32more.Microsoft.Windows.AI.AIFeatureReadyState: ...
|
|
90
|
+
@winrt_commethod(7)
|
|
91
|
+
def EnsureReadyAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.AIFeatureReadyResult, Double]: ...
|
|
92
|
+
@winrt_commethod(8)
|
|
93
|
+
def CreateAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.AI.Imaging.ImageObjectRemover]: ...
|
|
76
94
|
class IImageScaler(ComPtr):
|
|
77
95
|
extends: IInspectable
|
|
78
96
|
_classid_ = 'Microsoft.Windows.AI.Imaging.IImageScaler'
|
|
@@ -236,6 +254,24 @@ class ImageObjectExtractorHint(ComPtr):
|
|
|
236
254
|
ExcludePoints = property(get_ExcludePoints, None)
|
|
237
255
|
IncludePoints = property(get_IncludePoints, None)
|
|
238
256
|
IncludeRects = property(get_IncludeRects, None)
|
|
257
|
+
class ImageObjectRemover(ComPtr):
|
|
258
|
+
extends: IInspectable
|
|
259
|
+
implements: Tuple[ContextManagerProtocol]
|
|
260
|
+
default_interface: win32more.Microsoft.Windows.AI.Imaging.IImageObjectRemover
|
|
261
|
+
_classid_ = 'Microsoft.Windows.AI.Imaging.ImageObjectRemover'
|
|
262
|
+
@winrt_mixinmethod
|
|
263
|
+
def RemoveFromSoftwareBitmap(self: win32more.Microsoft.Windows.AI.Imaging.IImageObjectRemover, softwareBitmap: win32more.Windows.Graphics.Imaging.SoftwareBitmap, softwareBitmapMask: win32more.Windows.Graphics.Imaging.SoftwareBitmap) -> win32more.Windows.Graphics.Imaging.SoftwareBitmap: ...
|
|
264
|
+
@winrt_mixinmethod
|
|
265
|
+
def RemoveFromImageBuffer(self: win32more.Microsoft.Windows.AI.Imaging.IImageObjectRemover, imageBuffer: win32more.Microsoft.Graphics.Imaging.ImageBuffer, imageBufferMask: win32more.Microsoft.Graphics.Imaging.ImageBuffer) -> win32more.Microsoft.Graphics.Imaging.ImageBuffer: ...
|
|
266
|
+
@winrt_mixinmethod
|
|
267
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
268
|
+
@winrt_classmethod
|
|
269
|
+
def GetReadyState(cls: win32more.Microsoft.Windows.AI.Imaging.IImageObjectRemoverStatics) -> win32more.Microsoft.Windows.AI.AIFeatureReadyState: ...
|
|
270
|
+
@winrt_classmethod
|
|
271
|
+
def EnsureReadyAsync(cls: win32more.Microsoft.Windows.AI.Imaging.IImageObjectRemoverStatics) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.AIFeatureReadyResult, Double]: ...
|
|
272
|
+
@winrt_classmethod
|
|
273
|
+
def CreateAsync(cls: win32more.Microsoft.Windows.AI.Imaging.IImageObjectRemoverStatics) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.AI.Imaging.ImageObjectRemover]: ...
|
|
274
|
+
ImageObjectRemoverContract: UInt32 = 65536
|
|
239
275
|
class ImageScaler(ComPtr):
|
|
240
276
|
extends: IInspectable
|
|
241
277
|
implements: Tuple[ContextManagerProtocol]
|