win32more-Microsoft.WindowsAppSDK 0.6.1.5.240227000__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.
- win32more/Microsoft/Foundation/__init__.py +7 -0
- win32more/Microsoft/Graphics/DirectX/__init__.py +167 -0
- win32more/Microsoft/Graphics/Display/__init__.py +174 -0
- win32more/Microsoft/UI/Composition/Core/__init__.py +52 -0
- win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +63 -0
- win32more/Microsoft/UI/Composition/Effects/__init__.py +96 -0
- win32more/Microsoft/UI/Composition/Interactions/__init__.py +951 -0
- win32more/Microsoft/UI/Composition/Scenes/__init__.py +671 -0
- win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +356 -0
- win32more/Microsoft/UI/Composition/__init__.py +4793 -0
- win32more/Microsoft/UI/Content/__init__.py +918 -0
- win32more/Microsoft/UI/Dispatching/__init__.py +241 -0
- win32more/Microsoft/UI/Input/DragDrop/__init__.py +235 -0
- win32more/Microsoft/UI/Input/Interop/__init__.py +19 -0
- win32more/Microsoft/UI/Input/__init__.py +1927 -0
- win32more/Microsoft/UI/System/__init__.py +46 -0
- win32more/Microsoft/UI/Text/__init__.py +1090 -0
- win32more/Microsoft/UI/Windowing/__init__.py +877 -0
- win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +3414 -0
- win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py +489 -0
- win32more/Microsoft/UI/Xaml/Automation/Text/__init__.py +17 -0
- win32more/Microsoft/UI/Xaml/Automation/__init__.py +1607 -0
- win32more/Microsoft/UI/Xaml/Controls/AnimatedVisuals/__init__.py +170 -0
- win32more/Microsoft/UI/Xaml/Controls/Primitives/__init__.py +6458 -0
- win32more/Microsoft/UI/Xaml/Controls/__init__.py +31159 -0
- win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +7 -0
- win32more/Microsoft/UI/Xaml/Data/__init__.py +670 -0
- win32more/Microsoft/UI/Xaml/Documents/__init__.py +2030 -0
- win32more/Microsoft/UI/Xaml/Hosting/__init__.py +329 -0
- win32more/Microsoft/UI/Xaml/Input/__init__.py +1985 -0
- win32more/Microsoft/UI/Xaml/Interop/__init__.py +148 -0
- win32more/Microsoft/UI/Xaml/Markup/__init__.py +391 -0
- win32more/Microsoft/UI/Xaml/Media/Animation/__init__.py +4167 -0
- win32more/Microsoft/UI/Xaml/Media/Imaging/__init__.py +632 -0
- win32more/Microsoft/UI/Xaml/Media/Media3D/__init__.py +373 -0
- win32more/Microsoft/UI/Xaml/Media/__init__.py +3510 -0
- win32more/Microsoft/UI/Xaml/Navigation/__init__.py +255 -0
- win32more/Microsoft/UI/Xaml/Printing/__init__.py +193 -0
- win32more/Microsoft/UI/Xaml/Resources/__init__.py +53 -0
- win32more/Microsoft/UI/Xaml/Shapes/__init__.py +538 -0
- win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py +39 -0
- win32more/Microsoft/UI/Xaml/__init__.py +6010 -0
- win32more/Microsoft/UI/__init__.py +912 -0
- win32more/Microsoft/Web/WebView2/Core/__init__.py +4685 -0
- win32more/Microsoft/Windows/AppLifecycle/__init__.py +180 -0
- win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py +572 -0
- win32more/Microsoft/Windows/AppNotifications/__init__.py +333 -0
- win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py +244 -0
- win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +322 -0
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +114 -0
- win32more/Microsoft/Windows/Management/Deployment/__init__.py +1114 -0
- win32more/Microsoft/Windows/PushNotifications/__init__.py +146 -0
- win32more/Microsoft/Windows/Security/AccessControl/__init__.py +25 -0
- win32more/Microsoft/Windows/System/Power/__init__.py +223 -0
- win32more/Microsoft/Windows/System/__init__.py +78 -0
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +181 -0
- win32more/Microsoft/Windows/Widgets/Providers/__init__.py +325 -0
- win32more/Microsoft/Windows/Widgets/__init__.py +11 -0
- win32more/appsdk/versioninfo.py +3 -0
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/METADATA +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/RECORD +66 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/WHEEL +5 -0
- win32more_microsoft_windowsappsdk-0.6.1.5.240227000.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +90 -0
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.Windows.AppNotifications
|
|
4
|
+
import win32more.Windows.Foundation
|
|
5
|
+
import win32more.Windows.Foundation.Collections
|
|
6
|
+
class AppNotification(ComPtr):
|
|
7
|
+
extends: IInspectable
|
|
8
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.IAppNotification
|
|
9
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.AppNotification'
|
|
10
|
+
def __init__(self, *args, **kwargs):
|
|
11
|
+
if kwargs:
|
|
12
|
+
super().__init__(**kwargs)
|
|
13
|
+
elif len(args) == 1:
|
|
14
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.AppNotification.CreateInstance(*args))
|
|
15
|
+
else:
|
|
16
|
+
raise ValueError('no matched constructor')
|
|
17
|
+
@winrt_factorymethod
|
|
18
|
+
def CreateInstance(cls: win32more.Microsoft.Windows.AppNotifications.IAppNotificationFactory, payload: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.AppNotification: ...
|
|
19
|
+
@winrt_mixinmethod
|
|
20
|
+
def get_Tag(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> WinRT_String: ...
|
|
21
|
+
@winrt_mixinmethod
|
|
22
|
+
def put_Tag(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification, value: WinRT_String) -> Void: ...
|
|
23
|
+
@winrt_mixinmethod
|
|
24
|
+
def get_Group(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> WinRT_String: ...
|
|
25
|
+
@winrt_mixinmethod
|
|
26
|
+
def put_Group(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification, value: WinRT_String) -> Void: ...
|
|
27
|
+
@winrt_mixinmethod
|
|
28
|
+
def get_Id(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> UInt32: ...
|
|
29
|
+
@winrt_mixinmethod
|
|
30
|
+
def get_Payload(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> WinRT_String: ...
|
|
31
|
+
@winrt_mixinmethod
|
|
32
|
+
def get_Progress(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData: ...
|
|
33
|
+
@winrt_mixinmethod
|
|
34
|
+
def put_Progress(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification, value: win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData) -> Void: ...
|
|
35
|
+
@winrt_mixinmethod
|
|
36
|
+
def get_Expiration(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> win32more.Windows.Foundation.DateTime: ...
|
|
37
|
+
@winrt_mixinmethod
|
|
38
|
+
def put_Expiration(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification, value: win32more.Windows.Foundation.DateTime) -> Void: ...
|
|
39
|
+
@winrt_mixinmethod
|
|
40
|
+
def get_ExpiresOnReboot(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> Boolean: ...
|
|
41
|
+
@winrt_mixinmethod
|
|
42
|
+
def put_ExpiresOnReboot(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification, value: Boolean) -> Void: ...
|
|
43
|
+
@winrt_mixinmethod
|
|
44
|
+
def get_Priority(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationPriority: ...
|
|
45
|
+
@winrt_mixinmethod
|
|
46
|
+
def put_Priority(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification, value: win32more.Microsoft.Windows.AppNotifications.AppNotificationPriority) -> Void: ...
|
|
47
|
+
@winrt_mixinmethod
|
|
48
|
+
def get_SuppressDisplay(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification) -> Boolean: ...
|
|
49
|
+
@winrt_mixinmethod
|
|
50
|
+
def put_SuppressDisplay(self: win32more.Microsoft.Windows.AppNotifications.IAppNotification, value: Boolean) -> Void: ...
|
|
51
|
+
Expiration = property(get_Expiration, put_Expiration)
|
|
52
|
+
ExpiresOnReboot = property(get_ExpiresOnReboot, put_ExpiresOnReboot)
|
|
53
|
+
Group = property(get_Group, put_Group)
|
|
54
|
+
Id = property(get_Id, None)
|
|
55
|
+
Payload = property(get_Payload, None)
|
|
56
|
+
Priority = property(get_Priority, put_Priority)
|
|
57
|
+
Progress = property(get_Progress, put_Progress)
|
|
58
|
+
SuppressDisplay = property(get_SuppressDisplay, put_SuppressDisplay)
|
|
59
|
+
Tag = property(get_Tag, put_Tag)
|
|
60
|
+
class AppNotificationActivatedEventArgs(ComPtr):
|
|
61
|
+
extends: IInspectable
|
|
62
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.IAppNotificationActivatedEventArgs
|
|
63
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.AppNotificationActivatedEventArgs'
|
|
64
|
+
@winrt_mixinmethod
|
|
65
|
+
def get_Argument(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationActivatedEventArgs) -> WinRT_String: ...
|
|
66
|
+
@winrt_mixinmethod
|
|
67
|
+
def get_UserInput(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationActivatedEventArgs) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
68
|
+
@winrt_mixinmethod
|
|
69
|
+
def get_Arguments(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationActivatedEventArgs2) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
70
|
+
Argument = property(get_Argument, None)
|
|
71
|
+
Arguments = property(get_Arguments, None)
|
|
72
|
+
UserInput = property(get_UserInput, None)
|
|
73
|
+
class _AppNotificationManager_Meta_(ComPtr.__class__):
|
|
74
|
+
pass
|
|
75
|
+
class AppNotificationManager(ComPtr, metaclass=_AppNotificationManager_Meta_):
|
|
76
|
+
extends: IInspectable
|
|
77
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager
|
|
78
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.AppNotificationManager'
|
|
79
|
+
@winrt_overload
|
|
80
|
+
@winrt_mixinmethod
|
|
81
|
+
def Register(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager) -> Void: ...
|
|
82
|
+
@winrt_mixinmethod
|
|
83
|
+
def Unregister(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager) -> Void: ...
|
|
84
|
+
@winrt_mixinmethod
|
|
85
|
+
def UnregisterAll(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager) -> Void: ...
|
|
86
|
+
@winrt_mixinmethod
|
|
87
|
+
def add_NotificationInvoked(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Windows.AppNotifications.AppNotificationManager, win32more.Microsoft.Windows.AppNotifications.AppNotificationActivatedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
88
|
+
@winrt_mixinmethod
|
|
89
|
+
def remove_NotificationInvoked(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
90
|
+
@winrt_mixinmethod
|
|
91
|
+
def Show(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, notification: win32more.Microsoft.Windows.AppNotifications.AppNotification) -> Void: ...
|
|
92
|
+
@winrt_mixinmethod
|
|
93
|
+
def UpdateAsync(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, data: win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData, tag: WinRT_String, group: WinRT_String) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressResult]: ...
|
|
94
|
+
@winrt_mixinmethod
|
|
95
|
+
def UpdateAsync2(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, data: win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData, tag: WinRT_String) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressResult]: ...
|
|
96
|
+
@winrt_mixinmethod
|
|
97
|
+
def get_Setting(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationSetting: ...
|
|
98
|
+
@winrt_mixinmethod
|
|
99
|
+
def RemoveByIdAsync(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, notificationId: UInt32) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
100
|
+
@winrt_mixinmethod
|
|
101
|
+
def RemoveByTagAsync(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, tag: WinRT_String) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
102
|
+
@winrt_mixinmethod
|
|
103
|
+
def RemoveByTagAndGroupAsync(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, tag: WinRT_String, group: WinRT_String) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
104
|
+
@winrt_mixinmethod
|
|
105
|
+
def RemoveByGroupAsync(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager, group: WinRT_String) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
106
|
+
@winrt_mixinmethod
|
|
107
|
+
def RemoveAllAsync(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
108
|
+
@winrt_mixinmethod
|
|
109
|
+
def GetAllAsync(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AppNotifications.AppNotification]]: ...
|
|
110
|
+
@Register.register
|
|
111
|
+
@winrt_mixinmethod
|
|
112
|
+
def Register(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManager2, displayName: WinRT_String, iconUri: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
113
|
+
@winrt_classmethod
|
|
114
|
+
def IsSupported(cls: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManagerStatics2) -> Boolean: ...
|
|
115
|
+
@winrt_classmethod
|
|
116
|
+
def get_Default(cls: win32more.Microsoft.Windows.AppNotifications.IAppNotificationManagerStatics) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationManager: ...
|
|
117
|
+
Setting = property(get_Setting, None)
|
|
118
|
+
_AppNotificationManager_Meta_.Default = property(get_Default, None)
|
|
119
|
+
NotificationInvoked = event()
|
|
120
|
+
class AppNotificationPriority(Enum, Int32):
|
|
121
|
+
Default = 0
|
|
122
|
+
High = 1
|
|
123
|
+
class AppNotificationProgressData(ComPtr):
|
|
124
|
+
extends: IInspectable
|
|
125
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData
|
|
126
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.AppNotificationProgressData'
|
|
127
|
+
def __init__(self, *args, **kwargs):
|
|
128
|
+
if kwargs:
|
|
129
|
+
super().__init__(**kwargs)
|
|
130
|
+
elif len(args) == 1:
|
|
131
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData.CreateInstance(*args))
|
|
132
|
+
else:
|
|
133
|
+
raise ValueError('no matched constructor')
|
|
134
|
+
@winrt_factorymethod
|
|
135
|
+
def CreateInstance(cls: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressDataFactory, sequenceNumber: UInt32) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData: ...
|
|
136
|
+
@winrt_mixinmethod
|
|
137
|
+
def get_SequenceNumber(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData) -> UInt32: ...
|
|
138
|
+
@winrt_mixinmethod
|
|
139
|
+
def put_SequenceNumber(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData, value: UInt32) -> Void: ...
|
|
140
|
+
@winrt_mixinmethod
|
|
141
|
+
def get_Title(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData) -> WinRT_String: ...
|
|
142
|
+
@winrt_mixinmethod
|
|
143
|
+
def put_Title(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData, value: WinRT_String) -> Void: ...
|
|
144
|
+
@winrt_mixinmethod
|
|
145
|
+
def get_Value(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData) -> Double: ...
|
|
146
|
+
@winrt_mixinmethod
|
|
147
|
+
def put_Value(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData, value: Double) -> Void: ...
|
|
148
|
+
@winrt_mixinmethod
|
|
149
|
+
def get_ValueStringOverride(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData) -> WinRT_String: ...
|
|
150
|
+
@winrt_mixinmethod
|
|
151
|
+
def put_ValueStringOverride(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData, value: WinRT_String) -> Void: ...
|
|
152
|
+
@winrt_mixinmethod
|
|
153
|
+
def get_Status(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData) -> WinRT_String: ...
|
|
154
|
+
@winrt_mixinmethod
|
|
155
|
+
def put_Status(self: win32more.Microsoft.Windows.AppNotifications.IAppNotificationProgressData, value: WinRT_String) -> Void: ...
|
|
156
|
+
SequenceNumber = property(get_SequenceNumber, put_SequenceNumber)
|
|
157
|
+
Status = property(get_Status, put_Status)
|
|
158
|
+
Title = property(get_Title, put_Title)
|
|
159
|
+
Value = property(get_Value, put_Value)
|
|
160
|
+
ValueStringOverride = property(get_ValueStringOverride, put_ValueStringOverride)
|
|
161
|
+
class AppNotificationProgressResult(Enum, Int32):
|
|
162
|
+
Succeeded = 0
|
|
163
|
+
AppNotificationNotFound = 1
|
|
164
|
+
Unsupported = 2
|
|
165
|
+
class AppNotificationSetting(Enum, Int32):
|
|
166
|
+
Enabled = 0
|
|
167
|
+
DisabledForApplication = 1
|
|
168
|
+
DisabledForUser = 2
|
|
169
|
+
DisabledByGroupPolicy = 3
|
|
170
|
+
DisabledByManifest = 4
|
|
171
|
+
Unsupported = 5
|
|
172
|
+
AppNotificationsContract: UInt32 = 196608
|
|
173
|
+
class IAppNotification(ComPtr):
|
|
174
|
+
extends: IInspectable
|
|
175
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotification'
|
|
176
|
+
_iid_ = Guid('{373a6917-4116-5657-936a-15f99afdd667}')
|
|
177
|
+
@winrt_commethod(6)
|
|
178
|
+
def get_Tag(self) -> WinRT_String: ...
|
|
179
|
+
@winrt_commethod(7)
|
|
180
|
+
def put_Tag(self, value: WinRT_String) -> Void: ...
|
|
181
|
+
@winrt_commethod(8)
|
|
182
|
+
def get_Group(self) -> WinRT_String: ...
|
|
183
|
+
@winrt_commethod(9)
|
|
184
|
+
def put_Group(self, value: WinRT_String) -> Void: ...
|
|
185
|
+
@winrt_commethod(10)
|
|
186
|
+
def get_Id(self) -> UInt32: ...
|
|
187
|
+
@winrt_commethod(11)
|
|
188
|
+
def get_Payload(self) -> WinRT_String: ...
|
|
189
|
+
@winrt_commethod(12)
|
|
190
|
+
def get_Progress(self) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData: ...
|
|
191
|
+
@winrt_commethod(13)
|
|
192
|
+
def put_Progress(self, value: win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData) -> Void: ...
|
|
193
|
+
@winrt_commethod(14)
|
|
194
|
+
def get_Expiration(self) -> win32more.Windows.Foundation.DateTime: ...
|
|
195
|
+
@winrt_commethod(15)
|
|
196
|
+
def put_Expiration(self, value: win32more.Windows.Foundation.DateTime) -> Void: ...
|
|
197
|
+
@winrt_commethod(16)
|
|
198
|
+
def get_ExpiresOnReboot(self) -> Boolean: ...
|
|
199
|
+
@winrt_commethod(17)
|
|
200
|
+
def put_ExpiresOnReboot(self, value: Boolean) -> Void: ...
|
|
201
|
+
@winrt_commethod(18)
|
|
202
|
+
def get_Priority(self) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationPriority: ...
|
|
203
|
+
@winrt_commethod(19)
|
|
204
|
+
def put_Priority(self, value: win32more.Microsoft.Windows.AppNotifications.AppNotificationPriority) -> Void: ...
|
|
205
|
+
@winrt_commethod(20)
|
|
206
|
+
def get_SuppressDisplay(self) -> Boolean: ...
|
|
207
|
+
@winrt_commethod(21)
|
|
208
|
+
def put_SuppressDisplay(self, value: Boolean) -> Void: ...
|
|
209
|
+
Expiration = property(get_Expiration, put_Expiration)
|
|
210
|
+
ExpiresOnReboot = property(get_ExpiresOnReboot, put_ExpiresOnReboot)
|
|
211
|
+
Group = property(get_Group, put_Group)
|
|
212
|
+
Id = property(get_Id, None)
|
|
213
|
+
Payload = property(get_Payload, None)
|
|
214
|
+
Priority = property(get_Priority, put_Priority)
|
|
215
|
+
Progress = property(get_Progress, put_Progress)
|
|
216
|
+
SuppressDisplay = property(get_SuppressDisplay, put_SuppressDisplay)
|
|
217
|
+
Tag = property(get_Tag, put_Tag)
|
|
218
|
+
class IAppNotificationActivatedEventArgs(ComPtr):
|
|
219
|
+
extends: IInspectable
|
|
220
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationActivatedEventArgs'
|
|
221
|
+
_iid_ = Guid('{7a8afaf9-31cb-51d5-82be-db6bd5878b77}')
|
|
222
|
+
@winrt_commethod(6)
|
|
223
|
+
def get_Argument(self) -> WinRT_String: ...
|
|
224
|
+
@winrt_commethod(7)
|
|
225
|
+
def get_UserInput(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
226
|
+
Argument = property(get_Argument, None)
|
|
227
|
+
UserInput = property(get_UserInput, None)
|
|
228
|
+
class IAppNotificationActivatedEventArgs2(ComPtr):
|
|
229
|
+
extends: IInspectable
|
|
230
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationActivatedEventArgs2'
|
|
231
|
+
_iid_ = Guid('{52c06b9b-2c50-5037-9416-a3be47b9d5bd}')
|
|
232
|
+
@winrt_commethod(6)
|
|
233
|
+
def get_Arguments(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
234
|
+
Arguments = property(get_Arguments, None)
|
|
235
|
+
class IAppNotificationFactory(ComPtr):
|
|
236
|
+
extends: IInspectable
|
|
237
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationFactory'
|
|
238
|
+
_iid_ = Guid('{9ffee485-184a-5c65-87a9-c1d94469dbe7}')
|
|
239
|
+
@winrt_commethod(6)
|
|
240
|
+
def CreateInstance(self, payload: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.AppNotification: ...
|
|
241
|
+
class IAppNotificationManager(ComPtr):
|
|
242
|
+
extends: IInspectable
|
|
243
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationManager'
|
|
244
|
+
_iid_ = Guid('{55129688-b4bd-550b-ae6b-c24061954d91}')
|
|
245
|
+
@winrt_commethod(6)
|
|
246
|
+
def Register(self) -> Void: ...
|
|
247
|
+
@winrt_commethod(7)
|
|
248
|
+
def Unregister(self) -> Void: ...
|
|
249
|
+
@winrt_commethod(8)
|
|
250
|
+
def UnregisterAll(self) -> Void: ...
|
|
251
|
+
@winrt_commethod(9)
|
|
252
|
+
def add_NotificationInvoked(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.Windows.AppNotifications.AppNotificationManager, win32more.Microsoft.Windows.AppNotifications.AppNotificationActivatedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
253
|
+
@winrt_commethod(10)
|
|
254
|
+
def remove_NotificationInvoked(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
255
|
+
@winrt_commethod(11)
|
|
256
|
+
def Show(self, notification: win32more.Microsoft.Windows.AppNotifications.AppNotification) -> Void: ...
|
|
257
|
+
@winrt_commethod(12)
|
|
258
|
+
def UpdateAsync(self, data: win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData, tag: WinRT_String, group: WinRT_String) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressResult]: ...
|
|
259
|
+
@winrt_commethod(13)
|
|
260
|
+
def UpdateAsync2(self, data: win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData, tag: WinRT_String) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressResult]: ...
|
|
261
|
+
@winrt_commethod(14)
|
|
262
|
+
def get_Setting(self) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationSetting: ...
|
|
263
|
+
@winrt_commethod(15)
|
|
264
|
+
def RemoveByIdAsync(self, notificationId: UInt32) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
265
|
+
@winrt_commethod(16)
|
|
266
|
+
def RemoveByTagAsync(self, tag: WinRT_String) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
267
|
+
@winrt_commethod(17)
|
|
268
|
+
def RemoveByTagAndGroupAsync(self, tag: WinRT_String, group: WinRT_String) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
269
|
+
@winrt_commethod(18)
|
|
270
|
+
def RemoveByGroupAsync(self, group: WinRT_String) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
271
|
+
@winrt_commethod(19)
|
|
272
|
+
def RemoveAllAsync(self) -> win32more.Windows.Foundation.IAsyncAction: ...
|
|
273
|
+
@winrt_commethod(20)
|
|
274
|
+
def GetAllAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AppNotifications.AppNotification]]: ...
|
|
275
|
+
Setting = property(get_Setting, None)
|
|
276
|
+
NotificationInvoked = event()
|
|
277
|
+
class IAppNotificationManager2(ComPtr):
|
|
278
|
+
extends: IInspectable
|
|
279
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationManager2'
|
|
280
|
+
_iid_ = Guid('{38ba268d-e0c7-522e-a79d-8a29dcdd7135}')
|
|
281
|
+
@winrt_commethod(6)
|
|
282
|
+
def Register(self, displayName: WinRT_String, iconUri: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
283
|
+
class IAppNotificationManagerStatics(ComPtr):
|
|
284
|
+
extends: IInspectable
|
|
285
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationManagerStatics'
|
|
286
|
+
_iid_ = Guid('{6cfc0d8d-84a3-5592-b4c6-e3e7e7c680e4}')
|
|
287
|
+
@winrt_commethod(6)
|
|
288
|
+
def get_Default(self) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationManager: ...
|
|
289
|
+
Default = property(get_Default, None)
|
|
290
|
+
class IAppNotificationManagerStatics2(ComPtr):
|
|
291
|
+
extends: IInspectable
|
|
292
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationManagerStatics2'
|
|
293
|
+
_iid_ = Guid('{6eb42a35-e82f-5732-98f1-129705602f2e}')
|
|
294
|
+
@winrt_commethod(6)
|
|
295
|
+
def IsSupported(self) -> Boolean: ...
|
|
296
|
+
class IAppNotificationProgressData(ComPtr):
|
|
297
|
+
extends: IInspectable
|
|
298
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationProgressData'
|
|
299
|
+
_iid_ = Guid('{4debfac0-809d-55cb-b879-924821876b97}')
|
|
300
|
+
@winrt_commethod(6)
|
|
301
|
+
def get_SequenceNumber(self) -> UInt32: ...
|
|
302
|
+
@winrt_commethod(7)
|
|
303
|
+
def put_SequenceNumber(self, value: UInt32) -> Void: ...
|
|
304
|
+
@winrt_commethod(8)
|
|
305
|
+
def get_Title(self) -> WinRT_String: ...
|
|
306
|
+
@winrt_commethod(9)
|
|
307
|
+
def put_Title(self, value: WinRT_String) -> Void: ...
|
|
308
|
+
@winrt_commethod(10)
|
|
309
|
+
def get_Value(self) -> Double: ...
|
|
310
|
+
@winrt_commethod(11)
|
|
311
|
+
def put_Value(self, value: Double) -> Void: ...
|
|
312
|
+
@winrt_commethod(12)
|
|
313
|
+
def get_ValueStringOverride(self) -> WinRT_String: ...
|
|
314
|
+
@winrt_commethod(13)
|
|
315
|
+
def put_ValueStringOverride(self, value: WinRT_String) -> Void: ...
|
|
316
|
+
@winrt_commethod(14)
|
|
317
|
+
def get_Status(self) -> WinRT_String: ...
|
|
318
|
+
@winrt_commethod(15)
|
|
319
|
+
def put_Status(self, value: WinRT_String) -> Void: ...
|
|
320
|
+
SequenceNumber = property(get_SequenceNumber, put_SequenceNumber)
|
|
321
|
+
Status = property(get_Status, put_Status)
|
|
322
|
+
Title = property(get_Title, put_Title)
|
|
323
|
+
Value = property(get_Value, put_Value)
|
|
324
|
+
ValueStringOverride = property(get_ValueStringOverride, put_ValueStringOverride)
|
|
325
|
+
class IAppNotificationProgressDataFactory(ComPtr):
|
|
326
|
+
extends: IInspectable
|
|
327
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.IAppNotificationProgressDataFactory'
|
|
328
|
+
_iid_ = Guid('{c08e4a0f-3a75-55d6-8c3e-14f03ae46046}')
|
|
329
|
+
@winrt_commethod(6)
|
|
330
|
+
def CreateInstance(self, sequenceNumber: UInt32) -> win32more.Microsoft.Windows.AppNotifications.AppNotificationProgressData: ...
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
make_ready(__name__)
|
|
@@ -0,0 +1,244 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.Windows.ApplicationModel.DynamicDependency
|
|
4
|
+
import win32more.Windows.ApplicationModel
|
|
5
|
+
class AddPackageDependencyOptions(ComPtr):
|
|
6
|
+
extends: IInspectable
|
|
7
|
+
default_interface: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IAddPackageDependencyOptions
|
|
8
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.AddPackageDependencyOptions'
|
|
9
|
+
def __init__(self, *args, **kwargs):
|
|
10
|
+
if kwargs:
|
|
11
|
+
super().__init__(**kwargs)
|
|
12
|
+
elif len(args) == 0:
|
|
13
|
+
super().__init__(move=win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.AddPackageDependencyOptions.CreateInstance(*args))
|
|
14
|
+
else:
|
|
15
|
+
raise ValueError('no matched constructor')
|
|
16
|
+
@winrt_activatemethod
|
|
17
|
+
def CreateInstance(cls) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.AddPackageDependencyOptions: ...
|
|
18
|
+
@winrt_mixinmethod
|
|
19
|
+
def get_Rank(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IAddPackageDependencyOptions) -> Int32: ...
|
|
20
|
+
@winrt_mixinmethod
|
|
21
|
+
def put_Rank(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IAddPackageDependencyOptions, value: Int32) -> Void: ...
|
|
22
|
+
@winrt_mixinmethod
|
|
23
|
+
def get_PrependIfRankCollision(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IAddPackageDependencyOptions) -> Boolean: ...
|
|
24
|
+
@winrt_mixinmethod
|
|
25
|
+
def put_PrependIfRankCollision(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IAddPackageDependencyOptions, value: Boolean) -> Void: ...
|
|
26
|
+
PrependIfRankCollision = property(get_PrependIfRankCollision, put_PrependIfRankCollision)
|
|
27
|
+
Rank = property(get_Rank, put_Rank)
|
|
28
|
+
class CreatePackageDependencyOptions(ComPtr):
|
|
29
|
+
extends: IInspectable
|
|
30
|
+
default_interface: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions
|
|
31
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.CreatePackageDependencyOptions'
|
|
32
|
+
def __init__(self, *args, **kwargs):
|
|
33
|
+
if kwargs:
|
|
34
|
+
super().__init__(**kwargs)
|
|
35
|
+
elif len(args) == 0:
|
|
36
|
+
super().__init__(move=win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.CreatePackageDependencyOptions.CreateInstance(*args))
|
|
37
|
+
else:
|
|
38
|
+
raise ValueError('no matched constructor')
|
|
39
|
+
@winrt_activatemethod
|
|
40
|
+
def CreateInstance(cls) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.CreatePackageDependencyOptions: ...
|
|
41
|
+
@winrt_mixinmethod
|
|
42
|
+
def get_Architectures(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyProcessorArchitectures: ...
|
|
43
|
+
@winrt_mixinmethod
|
|
44
|
+
def put_Architectures(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions, value: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyProcessorArchitectures) -> Void: ...
|
|
45
|
+
@winrt_mixinmethod
|
|
46
|
+
def get_VerifyDependencyResolution(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions) -> Boolean: ...
|
|
47
|
+
@winrt_mixinmethod
|
|
48
|
+
def put_VerifyDependencyResolution(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions, value: Boolean) -> Void: ...
|
|
49
|
+
@winrt_mixinmethod
|
|
50
|
+
def get_LifetimeArtifactKind(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyLifetimeArtifactKind: ...
|
|
51
|
+
@winrt_mixinmethod
|
|
52
|
+
def put_LifetimeArtifactKind(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions, value: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyLifetimeArtifactKind) -> Void: ...
|
|
53
|
+
@winrt_mixinmethod
|
|
54
|
+
def get_LifetimeArtifact(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions) -> WinRT_String: ...
|
|
55
|
+
@winrt_mixinmethod
|
|
56
|
+
def put_LifetimeArtifact(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions, value: WinRT_String) -> Void: ...
|
|
57
|
+
Architectures = property(get_Architectures, put_Architectures)
|
|
58
|
+
LifetimeArtifact = property(get_LifetimeArtifact, put_LifetimeArtifact)
|
|
59
|
+
LifetimeArtifactKind = property(get_LifetimeArtifactKind, put_LifetimeArtifactKind)
|
|
60
|
+
VerifyDependencyResolution = property(get_VerifyDependencyResolution, put_VerifyDependencyResolution)
|
|
61
|
+
DynamicDependencyContract: UInt32 = 131072
|
|
62
|
+
class IAddPackageDependencyOptions(ComPtr):
|
|
63
|
+
extends: IInspectable
|
|
64
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.IAddPackageDependencyOptions'
|
|
65
|
+
_iid_ = Guid('{01b801fd-24e3-5e6b-9f1c-805ab410b604}')
|
|
66
|
+
@winrt_commethod(6)
|
|
67
|
+
def get_Rank(self) -> Int32: ...
|
|
68
|
+
@winrt_commethod(7)
|
|
69
|
+
def put_Rank(self, value: Int32) -> Void: ...
|
|
70
|
+
@winrt_commethod(8)
|
|
71
|
+
def get_PrependIfRankCollision(self) -> Boolean: ...
|
|
72
|
+
@winrt_commethod(9)
|
|
73
|
+
def put_PrependIfRankCollision(self, value: Boolean) -> Void: ...
|
|
74
|
+
PrependIfRankCollision = property(get_PrependIfRankCollision, put_PrependIfRankCollision)
|
|
75
|
+
Rank = property(get_Rank, put_Rank)
|
|
76
|
+
class ICreatePackageDependencyOptions(ComPtr):
|
|
77
|
+
extends: IInspectable
|
|
78
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.ICreatePackageDependencyOptions'
|
|
79
|
+
_iid_ = Guid('{cdbb820f-3c69-55dc-a017-b4132574c5d6}')
|
|
80
|
+
@winrt_commethod(6)
|
|
81
|
+
def get_Architectures(self) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyProcessorArchitectures: ...
|
|
82
|
+
@winrt_commethod(7)
|
|
83
|
+
def put_Architectures(self, value: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyProcessorArchitectures) -> Void: ...
|
|
84
|
+
@winrt_commethod(8)
|
|
85
|
+
def get_VerifyDependencyResolution(self) -> Boolean: ...
|
|
86
|
+
@winrt_commethod(9)
|
|
87
|
+
def put_VerifyDependencyResolution(self, value: Boolean) -> Void: ...
|
|
88
|
+
@winrt_commethod(10)
|
|
89
|
+
def get_LifetimeArtifactKind(self) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyLifetimeArtifactKind: ...
|
|
90
|
+
@winrt_commethod(11)
|
|
91
|
+
def put_LifetimeArtifactKind(self, value: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyLifetimeArtifactKind) -> Void: ...
|
|
92
|
+
@winrt_commethod(12)
|
|
93
|
+
def get_LifetimeArtifact(self) -> WinRT_String: ...
|
|
94
|
+
@winrt_commethod(13)
|
|
95
|
+
def put_LifetimeArtifact(self, value: WinRT_String) -> Void: ...
|
|
96
|
+
Architectures = property(get_Architectures, put_Architectures)
|
|
97
|
+
LifetimeArtifact = property(get_LifetimeArtifact, put_LifetimeArtifact)
|
|
98
|
+
LifetimeArtifactKind = property(get_LifetimeArtifactKind, put_LifetimeArtifactKind)
|
|
99
|
+
VerifyDependencyResolution = property(get_VerifyDependencyResolution, put_VerifyDependencyResolution)
|
|
100
|
+
class IPackageDependency(ComPtr):
|
|
101
|
+
extends: IInspectable
|
|
102
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependency'
|
|
103
|
+
_iid_ = Guid('{32ae7b95-e358-5a48-9669-c97d85ad6556}')
|
|
104
|
+
@winrt_commethod(6)
|
|
105
|
+
def get_Id(self) -> WinRT_String: ...
|
|
106
|
+
@winrt_commethod(7)
|
|
107
|
+
def Delete(self) -> Void: ...
|
|
108
|
+
@winrt_commethod(8)
|
|
109
|
+
def Add(self) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext: ...
|
|
110
|
+
@winrt_commethod(9)
|
|
111
|
+
def Add2(self, options: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.AddPackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext: ...
|
|
112
|
+
Id = property(get_Id, None)
|
|
113
|
+
class IPackageDependencyContext(ComPtr):
|
|
114
|
+
extends: IInspectable
|
|
115
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContext'
|
|
116
|
+
_iid_ = Guid('{9902c35a-a3f5-5645-af0f-cdf9fca00d5e}')
|
|
117
|
+
@winrt_commethod(6)
|
|
118
|
+
def get_ContextId(self) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContextId: ...
|
|
119
|
+
@winrt_commethod(7)
|
|
120
|
+
def get_PackageDependencyId(self) -> WinRT_String: ...
|
|
121
|
+
@winrt_commethod(8)
|
|
122
|
+
def get_PackageFullName(self) -> WinRT_String: ...
|
|
123
|
+
@winrt_commethod(9)
|
|
124
|
+
def Remove(self) -> Void: ...
|
|
125
|
+
ContextId = property(get_ContextId, None)
|
|
126
|
+
PackageDependencyId = property(get_PackageDependencyId, None)
|
|
127
|
+
PackageFullName = property(get_PackageFullName, None)
|
|
128
|
+
class IPackageDependencyContextFactory(ComPtr):
|
|
129
|
+
extends: IInspectable
|
|
130
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContextFactory'
|
|
131
|
+
_iid_ = Guid('{9914f24f-bebf-516b-adab-5c3e8bf323f8}')
|
|
132
|
+
@winrt_commethod(6)
|
|
133
|
+
def CreateInstance(self, contextId: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContextId) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext: ...
|
|
134
|
+
class IPackageDependencyRankStatics(ComPtr):
|
|
135
|
+
extends: IInspectable
|
|
136
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyRankStatics'
|
|
137
|
+
_iid_ = Guid('{260583bd-a4ab-53fd-a190-c446bfdb5384}')
|
|
138
|
+
@winrt_commethod(6)
|
|
139
|
+
def get_Default(self) -> Int32: ...
|
|
140
|
+
Default = property(get_Default, None)
|
|
141
|
+
class IPackageDependencyStatics(ComPtr):
|
|
142
|
+
extends: IInspectable
|
|
143
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics'
|
|
144
|
+
_iid_ = Guid('{17b656e1-1a58-5f3c-84a8-4430f6e749c2}')
|
|
145
|
+
@winrt_commethod(6)
|
|
146
|
+
def GetFromId(self, id: WinRT_String) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
147
|
+
@winrt_commethod(7)
|
|
148
|
+
def GetFromIdForSystem(self, id: WinRT_String) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
149
|
+
@winrt_commethod(8)
|
|
150
|
+
def Create(self, packageFamilyName: WinRT_String, minVersion: win32more.Windows.ApplicationModel.PackageVersion) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
151
|
+
@winrt_commethod(9)
|
|
152
|
+
def Create2(self, packageFamilyName: WinRT_String, minVersion: win32more.Windows.ApplicationModel.PackageVersion, options: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.CreatePackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
153
|
+
@winrt_commethod(10)
|
|
154
|
+
def CreateForSystem(self, packageFamilyName: WinRT_String, minVersion: win32more.Windows.ApplicationModel.PackageVersion, options: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.CreatePackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
155
|
+
@winrt_commethod(11)
|
|
156
|
+
def get_GenerationId(self) -> UInt32: ...
|
|
157
|
+
GenerationId = property(get_GenerationId, None)
|
|
158
|
+
class IPackageDependencyStatics2(ComPtr):
|
|
159
|
+
extends: IInspectable
|
|
160
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics2'
|
|
161
|
+
_iid_ = Guid('{c7c6e4f3-c0ca-5fdb-bef2-57e6020ffe4e}')
|
|
162
|
+
@winrt_commethod(6)
|
|
163
|
+
def get_PackageGraphRevisionId(self) -> UInt32: ...
|
|
164
|
+
PackageGraphRevisionId = property(get_PackageGraphRevisionId, None)
|
|
165
|
+
class _PackageDependency_Meta_(ComPtr.__class__):
|
|
166
|
+
pass
|
|
167
|
+
class PackageDependency(ComPtr, metaclass=_PackageDependency_Meta_):
|
|
168
|
+
extends: IInspectable
|
|
169
|
+
default_interface: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependency
|
|
170
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency'
|
|
171
|
+
@winrt_mixinmethod
|
|
172
|
+
def get_Id(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependency) -> WinRT_String: ...
|
|
173
|
+
@winrt_mixinmethod
|
|
174
|
+
def Delete(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependency) -> Void: ...
|
|
175
|
+
@winrt_mixinmethod
|
|
176
|
+
def Add(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependency) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext: ...
|
|
177
|
+
@winrt_mixinmethod
|
|
178
|
+
def Add2(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependency, options: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.AddPackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext: ...
|
|
179
|
+
@winrt_classmethod
|
|
180
|
+
def get_PackageGraphRevisionId(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics2) -> UInt32: ...
|
|
181
|
+
@winrt_classmethod
|
|
182
|
+
def GetFromId(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics, id: WinRT_String) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
183
|
+
@winrt_classmethod
|
|
184
|
+
def GetFromIdForSystem(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics, id: WinRT_String) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
185
|
+
@winrt_classmethod
|
|
186
|
+
def Create(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics, packageFamilyName: WinRT_String, minVersion: win32more.Windows.ApplicationModel.PackageVersion) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
187
|
+
@winrt_classmethod
|
|
188
|
+
def Create2(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics, packageFamilyName: WinRT_String, minVersion: win32more.Windows.ApplicationModel.PackageVersion, options: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.CreatePackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
189
|
+
@winrt_classmethod
|
|
190
|
+
def CreateForSystem(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics, packageFamilyName: WinRT_String, minVersion: win32more.Windows.ApplicationModel.PackageVersion, options: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.CreatePackageDependencyOptions) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependency: ...
|
|
191
|
+
@winrt_classmethod
|
|
192
|
+
def get_GenerationId(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyStatics) -> UInt32: ...
|
|
193
|
+
Id = property(get_Id, None)
|
|
194
|
+
_PackageDependency_Meta_.GenerationId = property(get_GenerationId, None)
|
|
195
|
+
_PackageDependency_Meta_.PackageGraphRevisionId = property(get_PackageGraphRevisionId, None)
|
|
196
|
+
class PackageDependencyContext(ComPtr):
|
|
197
|
+
extends: IInspectable
|
|
198
|
+
default_interface: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContext
|
|
199
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext'
|
|
200
|
+
def __init__(self, *args, **kwargs):
|
|
201
|
+
if kwargs:
|
|
202
|
+
super().__init__(**kwargs)
|
|
203
|
+
elif len(args) == 1:
|
|
204
|
+
super().__init__(move=win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext.CreateInstance(*args))
|
|
205
|
+
else:
|
|
206
|
+
raise ValueError('no matched constructor')
|
|
207
|
+
@winrt_factorymethod
|
|
208
|
+
def CreateInstance(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContextFactory, contextId: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContextId) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContext: ...
|
|
209
|
+
@winrt_mixinmethod
|
|
210
|
+
def get_ContextId(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContext) -> win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyContextId: ...
|
|
211
|
+
@winrt_mixinmethod
|
|
212
|
+
def get_PackageDependencyId(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContext) -> WinRT_String: ...
|
|
213
|
+
@winrt_mixinmethod
|
|
214
|
+
def get_PackageFullName(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContext) -> WinRT_String: ...
|
|
215
|
+
@winrt_mixinmethod
|
|
216
|
+
def Remove(self: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyContext) -> Void: ...
|
|
217
|
+
ContextId = property(get_ContextId, None)
|
|
218
|
+
PackageDependencyId = property(get_PackageDependencyId, None)
|
|
219
|
+
PackageFullName = property(get_PackageFullName, None)
|
|
220
|
+
class PackageDependencyContextId(Structure):
|
|
221
|
+
Id: UInt64
|
|
222
|
+
class PackageDependencyLifetimeArtifactKind(Enum, Int32):
|
|
223
|
+
Process = 0
|
|
224
|
+
FilePath = 1
|
|
225
|
+
RegistryKey = 2
|
|
226
|
+
class PackageDependencyProcessorArchitectures(Enum, UInt32):
|
|
227
|
+
None_ = 0
|
|
228
|
+
Neutral = 1
|
|
229
|
+
X86 = 2
|
|
230
|
+
X64 = 4
|
|
231
|
+
Arm = 8
|
|
232
|
+
Arm64 = 16
|
|
233
|
+
X86OnArm64 = 32
|
|
234
|
+
class _PackageDependencyRank_Meta_(ComPtr.__class__):
|
|
235
|
+
pass
|
|
236
|
+
class PackageDependencyRank(ComPtr, metaclass=_PackageDependencyRank_Meta_):
|
|
237
|
+
extends: IInspectable
|
|
238
|
+
_classid_ = 'Microsoft.Windows.ApplicationModel.DynamicDependency.PackageDependencyRank'
|
|
239
|
+
@winrt_classmethod
|
|
240
|
+
def get_Default(cls: win32more.Microsoft.Windows.ApplicationModel.DynamicDependency.IPackageDependencyRankStatics) -> Int32: ...
|
|
241
|
+
_PackageDependencyRank_Meta_.Default = property(get_Default, None)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
make_ready(__name__)
|