win32more-Microsoft.WindowsAppSDK 0.7.1.7.251014001__py2.py3-none-any.whl → 0.7.1.8.250916003__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.

Files changed (25) hide show
  1. win32more/Microsoft/Foundation/__init__.py +1 -1
  2. win32more/Microsoft/UI/Content/__init__.py +10 -10
  3. win32more/Microsoft/UI/Input/__init__.py +41 -41
  4. win32more/Microsoft/UI/Xaml/__init__.py +2 -2
  5. win32more/Microsoft/Windows/AI/Foundation/__init__.py +46 -0
  6. win32more/Microsoft/Windows/AI/Imaging/__init__.py +36 -0
  7. win32more/Microsoft/Windows/AI/MachineLearning/__init__.py +122 -0
  8. win32more/Microsoft/Windows/AI/Text/__init__.py +238 -1
  9. win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py +2 -4
  10. win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py +0 -22
  11. win32more/Microsoft/Windows/Foundation/__init__.py +221 -0
  12. win32more/Microsoft/Windows/Storage/Pickers/__init__.py +258 -0
  13. win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py +8 -0
  14. win32more/Microsoft/Windows/Widgets/__init__.py +1 -1
  15. win32more/appsdk/versioninfo.py +2 -2
  16. win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  17. win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  18. win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  19. win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  20. win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll +0 -0
  21. win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  22. {win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/METADATA +2 -2
  23. {win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/RECORD +25 -21
  24. {win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +4 -2
  25. {win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/WHEEL +0 -0
@@ -0,0 +1,258 @@
1
+ from __future__ import annotations
2
+ from win32more._prelude import *
3
+ import win32more.Microsoft.UI
4
+ import win32more.Microsoft.Windows.Storage.Pickers
5
+ import win32more.Windows.Foundation
6
+ import win32more.Windows.Foundation.Collections
7
+ class FileOpenPicker(ComPtr):
8
+ extends: IInspectable
9
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker
10
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FileOpenPicker'
11
+ def __init__(self, *args, **kwargs):
12
+ if kwargs:
13
+ super().__init__(**kwargs)
14
+ elif len(args) == 1:
15
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker.CreateInstance(*args))
16
+ else:
17
+ raise ValueError('no matched constructor')
18
+ @winrt_factorymethod
19
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker: ...
20
+ @winrt_mixinmethod
21
+ def get_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
22
+ @winrt_mixinmethod
23
+ def put_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
24
+ @winrt_mixinmethod
25
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
26
+ @winrt_mixinmethod
27
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
28
+ @winrt_mixinmethod
29
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> hstr: ...
30
+ @winrt_mixinmethod
31
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker, value: hstr) -> Void: ...
32
+ @winrt_mixinmethod
33
+ def get_FileTypeFilter(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.Collections.IVector[hstr]: ...
34
+ @winrt_mixinmethod
35
+ def PickSingleFileAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
36
+ @winrt_mixinmethod
37
+ def PickMultipleFilesAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileOpenPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]]: ...
38
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
39
+ FileTypeFilter = property(get_FileTypeFilter, None)
40
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
41
+ ViewMode = property(get_ViewMode, put_ViewMode)
42
+ class FileSavePicker(ComPtr):
43
+ extends: IInspectable
44
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker
45
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FileSavePicker'
46
+ def __init__(self, *args, **kwargs):
47
+ if kwargs:
48
+ super().__init__(**kwargs)
49
+ elif len(args) == 1:
50
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker.CreateInstance(*args))
51
+ else:
52
+ raise ValueError('no matched constructor')
53
+ @winrt_factorymethod
54
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker: ...
55
+ @winrt_mixinmethod
56
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
57
+ @winrt_mixinmethod
58
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
59
+ @winrt_mixinmethod
60
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> hstr: ...
61
+ @winrt_mixinmethod
62
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: hstr) -> Void: ...
63
+ @winrt_mixinmethod
64
+ def get_FileTypeChoices(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Windows.Foundation.Collections.IMap[hstr, win32more.Windows.Foundation.Collections.IVector[hstr]]: ...
65
+ @winrt_mixinmethod
66
+ def get_DefaultFileExtension(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> hstr: ...
67
+ @winrt_mixinmethod
68
+ def put_DefaultFileExtension(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: hstr) -> Void: ...
69
+ @winrt_mixinmethod
70
+ def get_SuggestedFileName(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> hstr: ...
71
+ @winrt_mixinmethod
72
+ def put_SuggestedFileName(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: hstr) -> Void: ...
73
+ @winrt_mixinmethod
74
+ def get_SuggestedFolder(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> hstr: ...
75
+ @winrt_mixinmethod
76
+ def put_SuggestedFolder(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker, value: hstr) -> Void: ...
77
+ @winrt_mixinmethod
78
+ def PickSaveFileAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFileSavePicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
79
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
80
+ DefaultFileExtension = property(get_DefaultFileExtension, put_DefaultFileExtension)
81
+ FileTypeChoices = property(get_FileTypeChoices, None)
82
+ SuggestedFileName = property(get_SuggestedFileName, put_SuggestedFileName)
83
+ SuggestedFolder = property(get_SuggestedFolder, put_SuggestedFolder)
84
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
85
+ class FolderPicker(ComPtr):
86
+ extends: IInspectable
87
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker
88
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.FolderPicker'
89
+ def __init__(self, *args, **kwargs):
90
+ if kwargs:
91
+ super().__init__(**kwargs)
92
+ elif len(args) == 1:
93
+ super().__init__(move=win32more.Microsoft.Windows.Storage.Pickers.FolderPicker.CreateInstance(*args))
94
+ else:
95
+ raise ValueError('no matched constructor')
96
+ @winrt_factorymethod
97
+ def CreateInstance(cls: win32more.Microsoft.Windows.Storage.Pickers.IFolderPickerFactory, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FolderPicker: ...
98
+ @winrt_mixinmethod
99
+ def get_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
100
+ @winrt_mixinmethod
101
+ def put_ViewMode(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
102
+ @winrt_mixinmethod
103
+ def get_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
104
+ @winrt_mixinmethod
105
+ def put_SuggestedStartLocation(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
106
+ @winrt_mixinmethod
107
+ def get_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> hstr: ...
108
+ @winrt_mixinmethod
109
+ def put_CommitButtonText(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker, value: hstr) -> Void: ...
110
+ @winrt_mixinmethod
111
+ def PickSingleFolderAsync(self: win32more.Microsoft.Windows.Storage.Pickers.IFolderPicker) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFolderResult]: ...
112
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
113
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
114
+ ViewMode = property(get_ViewMode, put_ViewMode)
115
+ class IFileOpenPicker(ComPtr):
116
+ extends: IInspectable
117
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileOpenPicker'
118
+ _iid_ = Guid('{9d00f175-c783-51bd-8c93-fb63695d3abc}')
119
+ @winrt_commethod(6)
120
+ def get_ViewMode(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
121
+ @winrt_commethod(7)
122
+ def put_ViewMode(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
123
+ @winrt_commethod(8)
124
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
125
+ @winrt_commethod(9)
126
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
127
+ @winrt_commethod(10)
128
+ def get_CommitButtonText(self) -> hstr: ...
129
+ @winrt_commethod(11)
130
+ def put_CommitButtonText(self, value: hstr) -> Void: ...
131
+ @winrt_commethod(12)
132
+ def get_FileTypeFilter(self) -> win32more.Windows.Foundation.Collections.IVector[hstr]: ...
133
+ @winrt_commethod(13)
134
+ def PickSingleFileAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
135
+ @winrt_commethod(14)
136
+ def PickMultipleFilesAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]]: ...
137
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
138
+ FileTypeFilter = property(get_FileTypeFilter, None)
139
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
140
+ ViewMode = property(get_ViewMode, put_ViewMode)
141
+ class IFileOpenPickerFactory(ComPtr):
142
+ extends: IInspectable
143
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileOpenPickerFactory'
144
+ _iid_ = Guid('{315e86d7-d7a2-5d81-b379-7af78207b1af}')
145
+ @winrt_commethod(6)
146
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileOpenPicker: ...
147
+ class IFileSavePicker(ComPtr):
148
+ extends: IInspectable
149
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileSavePicker'
150
+ _iid_ = Guid('{79f1f4df-741b-59b2-aa06-fe9ac817b7dd}')
151
+ @winrt_commethod(6)
152
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
153
+ @winrt_commethod(7)
154
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
155
+ @winrt_commethod(8)
156
+ def get_CommitButtonText(self) -> hstr: ...
157
+ @winrt_commethod(9)
158
+ def put_CommitButtonText(self, value: hstr) -> Void: ...
159
+ @winrt_commethod(10)
160
+ def get_FileTypeChoices(self) -> win32more.Windows.Foundation.Collections.IMap[hstr, win32more.Windows.Foundation.Collections.IVector[hstr]]: ...
161
+ @winrt_commethod(11)
162
+ def get_DefaultFileExtension(self) -> hstr: ...
163
+ @winrt_commethod(12)
164
+ def put_DefaultFileExtension(self, value: hstr) -> Void: ...
165
+ @winrt_commethod(13)
166
+ def get_SuggestedFileName(self) -> hstr: ...
167
+ @winrt_commethod(14)
168
+ def put_SuggestedFileName(self, value: hstr) -> Void: ...
169
+ @winrt_commethod(15)
170
+ def get_SuggestedFolder(self) -> hstr: ...
171
+ @winrt_commethod(16)
172
+ def put_SuggestedFolder(self, value: hstr) -> Void: ...
173
+ @winrt_commethod(17)
174
+ def PickSaveFileAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFileResult]: ...
175
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
176
+ DefaultFileExtension = property(get_DefaultFileExtension, put_DefaultFileExtension)
177
+ FileTypeChoices = property(get_FileTypeChoices, None)
178
+ SuggestedFileName = property(get_SuggestedFileName, put_SuggestedFileName)
179
+ SuggestedFolder = property(get_SuggestedFolder, put_SuggestedFolder)
180
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
181
+ class IFileSavePickerFactory(ComPtr):
182
+ extends: IInspectable
183
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFileSavePickerFactory'
184
+ _iid_ = Guid('{2e256696-30b6-5a05-a8f5-c752db6dd268}')
185
+ @winrt_commethod(6)
186
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FileSavePicker: ...
187
+ class IFolderPicker(ComPtr):
188
+ extends: IInspectable
189
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFolderPicker'
190
+ _iid_ = Guid('{3ef0d1ca-97c6-5873-8ea2-02c450174290}')
191
+ @winrt_commethod(6)
192
+ def get_ViewMode(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode: ...
193
+ @winrt_commethod(7)
194
+ def put_ViewMode(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerViewMode) -> Void: ...
195
+ @winrt_commethod(8)
196
+ def get_SuggestedStartLocation(self) -> win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId: ...
197
+ @winrt_commethod(9)
198
+ def put_SuggestedStartLocation(self, value: win32more.Microsoft.Windows.Storage.Pickers.PickerLocationId) -> Void: ...
199
+ @winrt_commethod(10)
200
+ def get_CommitButtonText(self) -> hstr: ...
201
+ @winrt_commethod(11)
202
+ def put_CommitButtonText(self, value: hstr) -> Void: ...
203
+ @winrt_commethod(12)
204
+ def PickSingleFolderAsync(self) -> win32more.Windows.Foundation.IAsyncOperation[win32more.Microsoft.Windows.Storage.Pickers.PickFolderResult]: ...
205
+ CommitButtonText = property(get_CommitButtonText, put_CommitButtonText)
206
+ SuggestedStartLocation = property(get_SuggestedStartLocation, put_SuggestedStartLocation)
207
+ ViewMode = property(get_ViewMode, put_ViewMode)
208
+ class IFolderPickerFactory(ComPtr):
209
+ extends: IInspectable
210
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IFolderPickerFactory'
211
+ _iid_ = Guid('{e1550d89-b389-5886-8395-022b1588d6a8}')
212
+ @winrt_commethod(6)
213
+ def CreateInstance(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.Windows.Storage.Pickers.FolderPicker: ...
214
+ class IPickFileResult(ComPtr):
215
+ extends: IInspectable
216
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IPickFileResult'
217
+ _iid_ = Guid('{e6f2e3d6-7bb0-5d81-9e7d-6fd35a1f25ab}')
218
+ @winrt_commethod(6)
219
+ def get_Path(self) -> hstr: ...
220
+ Path = property(get_Path, None)
221
+ class IPickFolderResult(ComPtr):
222
+ extends: IInspectable
223
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.IPickFolderResult'
224
+ _iid_ = Guid('{6f7fd316-fe29-59d1-9343-c49cf5cde680}')
225
+ @winrt_commethod(6)
226
+ def get_Path(self) -> hstr: ...
227
+ Path = property(get_Path, None)
228
+ class PickFileResult(ComPtr):
229
+ extends: IInspectable
230
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IPickFileResult
231
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.PickFileResult'
232
+ @winrt_mixinmethod
233
+ def get_Path(self: win32more.Microsoft.Windows.Storage.Pickers.IPickFileResult) -> hstr: ...
234
+ Path = property(get_Path, None)
235
+ class PickFolderResult(ComPtr):
236
+ extends: IInspectable
237
+ default_interface: win32more.Microsoft.Windows.Storage.Pickers.IPickFolderResult
238
+ _classid_ = 'Microsoft.Windows.Storage.Pickers.PickFolderResult'
239
+ @winrt_mixinmethod
240
+ def get_Path(self: win32more.Microsoft.Windows.Storage.Pickers.IPickFolderResult) -> hstr: ...
241
+ Path = property(get_Path, None)
242
+ class PickerLocationId(Enum, Int32):
243
+ DocumentsLibrary = 0
244
+ ComputerFolder = 1
245
+ Desktop = 2
246
+ Downloads = 3
247
+ MusicLibrary = 5
248
+ PicturesLibrary = 6
249
+ VideosLibrary = 7
250
+ Objects3D = 8
251
+ Unspecified = 9
252
+ class PickerViewMode(Enum, Int32):
253
+ List = 0
254
+ Thumbnail = 1
255
+ StoragePickersContract: UInt32 = 65544
256
+
257
+
258
+ make_ready(__name__)
@@ -89,6 +89,8 @@ class FeedManager(ComPtr):
89
89
  def SendMessageToContent(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager2, feedProviderDefinitionId: hstr, feedDefinitionId: hstr, message: hstr) -> Void: ...
90
90
  @winrt_mixinmethod
91
91
  def TryShowAnnouncement(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager2, feedProviderDefinitionId: hstr, feedDefinitionId: hstr, announcement: win32more.Microsoft.Windows.Widgets.Notifications.FeedAnnouncement) -> Void: ...
92
+ @winrt_mixinmethod
93
+ def TryRemoveAnnouncementById(self: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager3, feedProviderDefinitionId: hstr, feedDefinitionId: hstr, announcementId: hstr) -> Void: ...
92
94
  @winrt_classmethod
93
95
  def GetDefault(cls: win32more.Microsoft.Windows.Widgets.Feeds.Providers.IFeedManagerStatics) -> win32more.Microsoft.Windows.Widgets.Feeds.Providers.FeedManager: ...
94
96
  class FeedMessageReceivedArgs(ComPtr):
@@ -288,6 +290,12 @@ class IFeedManager2(ComPtr):
288
290
  def SendMessageToContent(self, feedProviderDefinitionId: hstr, feedDefinitionId: hstr, message: hstr) -> Void: ...
289
291
  @winrt_commethod(7)
290
292
  def TryShowAnnouncement(self, feedProviderDefinitionId: hstr, feedDefinitionId: hstr, announcement: win32more.Microsoft.Windows.Widgets.Notifications.FeedAnnouncement) -> Void: ...
293
+ class IFeedManager3(ComPtr):
294
+ extends: IInspectable
295
+ _classid_ = 'Microsoft.Windows.Widgets.Feeds.Providers.IFeedManager3'
296
+ _iid_ = Guid('{a6af915b-0cdc-46f1-a4d6-10d8c644984a}')
297
+ @winrt_commethod(6)
298
+ def TryRemoveAnnouncementById(self, feedProviderDefinitionId: hstr, feedDefinitionId: hstr, announcementId: hstr) -> Void: ...
291
299
  class IFeedManagerStatics(ComPtr):
292
300
  extends: IInspectable
293
301
  _classid_ = 'Microsoft.Windows.Widgets.Feeds.Providers.IFeedManagerStatics'
@@ -1,7 +1,7 @@
1
1
  from __future__ import annotations
2
2
  from win32more._prelude import *
3
3
  import win32more.Microsoft.Windows.Widgets
4
- WidgetContract: UInt32 = 720896
4
+ WidgetContract: UInt32 = 786432
5
5
  class WidgetSize(Enum, Int32):
6
6
  Small = 0
7
7
  Medium = 1
@@ -1,3 +1,3 @@
1
- WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010007
1
+ WINDOWSAPPSDK_RELEASE_MAJORMINOR = 0x00010008
2
2
  WINDOWSAPPSDK_RELEASE_VERSION_SHORTTAG_W = ''
3
- WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1B58028C070E0000
3
+ WINDOWSAPPSDK_RUNTIME_VERSION_UINT64 = 0x1F400271014A0000
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: win32more-Microsoft.WindowsAppSDK
3
- Version: 0.7.1.7.251014001
3
+ Version: 0.7.1.8.250916003
4
4
  License-File: LICENSE (Microsoft.WindowsAppSDK).txt
5
5
  Requires-Dist: win32more-core==0.7.*
6
- Requires-Dist: win32more-microsoft-web-webview2<0.8,>=0.7.1.0.2903.40
6
+ Requires-Dist: win32more-microsoft-web-webview2<0.8,>=0.7.1.0.3179.45
@@ -1,4 +1,4 @@
1
- win32more/Microsoft/Foundation/__init__.py,sha256=uBiPB8eC50dANB9oAwfEKdAngit7Tyvfe466OLJ0dI4,174
1
+ win32more/Microsoft/Foundation/__init__.py,sha256=qa7Pe1YpQoJEX8TWjjVT8ZGDbWbUsIkJbqfty-MuHuw,174
2
2
  win32more/Microsoft/Graphics/DirectX/__init__.py,sha256=0AP9od5oEOgy1AwzARPknJZhIneIwhuxp3rpPkNuxrM,4373
3
3
  win32more/Microsoft/Graphics/Display/__init__.py,sha256=1uStDy44oB5s7_nLDdd0edV7LdTRVs4mh-B6iDjptgE,12690
4
4
  win32more/Microsoft/Graphics/Imaging/__init__.py,sha256=rbjpO7zbXSgwuH35MXGEwbyQuYK1qj0Mbek2b4tn7kc,4307
@@ -11,15 +11,15 @@ win32more/Microsoft/UI/Composition/Effects/__init__.py,sha256=pnBtGPLzpTF74V9fma
11
11
  win32more/Microsoft/UI/Composition/Interactions/__init__.py,sha256=jGyxbQwi9zbRmtm9ZqyILPKrlFjc5SloUltfHTbT-gA,74398
12
12
  win32more/Microsoft/UI/Composition/Scenes/__init__.py,sha256=h4mfMyX80Lp8TBL_MkkXZmeWUHyxdlhmoEZrzoxllw8,47510
13
13
  win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py,sha256=Vo-41XMx1BCuJZQmRw0tTgfPL8KO487j_N7QfP-ZS6U,24427
14
- win32more/Microsoft/UI/Content/__init__.py,sha256=ga2jGno75-1Q2lXXODtn7Kc3BHFPptTQIVUNgmWRK8M,106693
14
+ win32more/Microsoft/UI/Content/__init__.py,sha256=qvNMHfR5Mxmz2Rwa9FODi7vR0ePk-JmB1icF7yDhfJw,106693
15
15
  win32more/Microsoft/UI/Dispatching/__init__.py,sha256=3WR9q8ZCiu5eLkPbqGL52C3gw6NEhrcdCIZZNYU05CQ,16213
16
- win32more/Microsoft/UI/Input/__init__.py,sha256=pNNvAg-HIQm-hDHVKJA3ox5r8nwv3nuxqI1fuM9pg94,146155
16
+ win32more/Microsoft/UI/Input/__init__.py,sha256=AFcWAV73NnIznCi3XV335VuKFqvAORBjS_-r6ic0WAI,146155
17
17
  win32more/Microsoft/UI/Input/DragDrop/__init__.py,sha256=uEXGlUFIp_vKyEDvPY2UNlaSbwtcIlIc6qCqa8NiLvg,15512
18
18
  win32more/Microsoft/UI/Input/Interop/__init__.py,sha256=RNTJ5qNcc64e4ZiB6sOKRBstROPopk0OOtgHnqR3Tsw,929
19
19
  win32more/Microsoft/UI/System/__init__.py,sha256=S5Lyq6zA4GDGH-s41yi52aq8gfPkp3WtEe-wFvYiahk,2622
20
20
  win32more/Microsoft/UI/Text/__init__.py,sha256=Ea7crRJADyAeOy4TAMuC8pp-vWUEO1yyvIvEQXbs9xU,53863
21
21
  win32more/Microsoft/UI/Windowing/__init__.py,sha256=N6Pz95f7WwFV2uk6eYBCNkehLzNuoJp7ACEh-nNbAXA,63751
22
- win32more/Microsoft/UI/Xaml/__init__.py,sha256=ofzRZru3EixY1xnW9GSvPYglAEvFUSi6pHqFtv17XwA,405893
22
+ win32more/Microsoft/UI/Xaml/__init__.py,sha256=ROrGscoAERasjN1tK2iqvJn1DjF3rH5JRxrP1Uwew0c,405893
23
23
  win32more/Microsoft/UI/Xaml/Automation/__init__.py,sha256=rU4aegfCTh18aHWbnTkFHkVONq4zbmvAUjk3xiOLiTE,115590
24
24
  win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py,sha256=gCUVATLay_fvueFr0l5G64zyoeyN9FclMdJR8eT26iY,245220
25
25
  win32more/Microsoft/UI/Xaml/Automation/Provider/__init__.py,sha256=OJbpQkINEEAWtqJhD6ZKG_tC3hkfHqmQyzc50W174Wk,25207
@@ -44,38 +44,42 @@ win32more/Microsoft/UI/Xaml/Shapes/__init__.py,sha256=-9rOsbOKuVUbWfD9-JgRnVGGGL
44
44
  win32more/Microsoft/UI/Xaml/XamlTypeInfo/__init__.py,sha256=WgiFUn2yjRD0P3pLBIzLCuS5Egi_W6ebOdf_6kSjPPs,2198
45
45
  win32more/Microsoft/Windows/AI/__init__.py,sha256=OVC8NxksWlh_MvSMiVfXy_7zsNYySPVrLG_wnJGaqlw,2217
46
46
  win32more/Microsoft/Windows/AI/ContentSafety/__init__.py,sha256=8zyju03OMh4KJG7yB_RyC4zeG8jX13CvMfdOlLxlLs0,14326
47
- win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=T8JHLetBnvvIuXL1C_Rv2yE56PZmcTTMd6ZaaTAmUMI,22761
48
- win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=7G7SosQVrjYnOTPlE0FuJLiS0hT7ixYscT971c8mbNM,15509
47
+ win32more/Microsoft/Windows/AI/Foundation/__init__.py,sha256=kDVU43OdM43aYAOIBUlN9jizLIGPjop5z5G6ItVp070,2314
48
+ win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=R9zgpmWMTcssSQiXk9pAyAJ25ziFbiZx0-xzowXbZ5k,25811
49
+ win32more/Microsoft/Windows/AI/MachineLearning/__init__.py,sha256=GIoyoQ0ybkqKpwL9kr_oEW1MEq8lFnsxUCG68LgTfg8,7797
50
+ win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=Bf8ULS8fuzyL-XCFgulBzwCNxvREpO3ok8bczccrdgs,34184
49
51
  win32more/Microsoft/Windows/AppLifecycle/__init__.py,sha256=JcccnjDp6lm9OMiS6onwETpC81rrT0nqdJ4Js2XIhXk,9936
50
52
  win32more/Microsoft/Windows/AppNotifications/__init__.py,sha256=elg2Hm_WROPnNOAMKVRfBSZr28RowKlum2tmliyc-eo,21171
51
53
  win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py,sha256=fbYQ_OKeRgq7hIczBthcPZzDQo610cspTTWnb4aOVg8,43256
52
54
  win32more/Microsoft/Windows/ApplicationModel/Background/__init__.py,sha256=iHD7gmtgWLZjeRXjpPRCVYKTqZW3Mj0WZyXhlNd-c-w,4266
53
- win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py,sha256=tOOyNIiGq-iYEy49nudjsCa4Jj7xzol60On3otXZQPQ,1552
55
+ win32more/Microsoft/Windows/ApplicationModel/Background/UniversalBGTask/__init__.py,sha256=2aM_kOwG4K46b5OBb18zwXMMTraajgykpfBPsEAn_do,1394
54
56
  win32more/Microsoft/Windows/ApplicationModel/DynamicDependency/__init__.py,sha256=2CIzZluAnMNE8KyzUl0LG9c2tmELppDjqQhvznsrrqQ,17620
55
57
  win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py,sha256=wHHg-cUXKVWFqRn7sHwjr4OgkQs1ryUGwgUogy9j8mQ,22061
56
- win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py,sha256=SVJoTIpasF4vUp3HoqmhQt_K_aCotVZXGRBmYJgtYcs,15968
58
+ win32more/Microsoft/Windows/ApplicationModel/WindowsAppRuntime/__init__.py,sha256=aVSeR8q6dFlMkCVuzTHZqzw3C9-kGT8G-jdhiabzqKY,14835
57
59
  win32more/Microsoft/Windows/BadgeNotifications/__init__.py,sha256=I3HVubpQqDN3XOlWHZ4sPjea6OpA1iqulp078ekAPaI,2557
60
+ win32more/Microsoft/Windows/Foundation/__init__.py,sha256=qa2GFUfhpwfWM3GaSSuUySAtw2FURbk33lq58sNLmiU,18443
58
61
  win32more/Microsoft/Windows/Globalization/__init__.py,sha256=U9_5FOQf3cgqNlU0lh_TDzInUxoYi9oyeaG1PcKpNxk,2276
59
62
  win32more/Microsoft/Windows/Management/Deployment/__init__.py,sha256=Leue3n92F6OrbIzFd3z7UxyRwG2X2sBl6GlsGNSmlhM,96786
60
63
  win32more/Microsoft/Windows/Media/Capture/__init__.py,sha256=PMTQf1KNSyVJI-zFrRSDckQjvuHnvjWopnVVFODjIQA,12390
61
64
  win32more/Microsoft/Windows/PushNotifications/__init__.py,sha256=m5vzzqClEYMHp8ni8O4pQVYsDxF9v-wAGnoWybLuAd4,9887
62
65
  win32more/Microsoft/Windows/Security/AccessControl/__init__.py,sha256=qi__JVEKPqD99dyIoe4kcfB4m67SSDjXcJTnBCrL5es,1960
63
66
  win32more/Microsoft/Windows/Storage/__init__.py,sha256=hyCZxynJAMGh0YuQ7z1YUvdpytoK8VPKx3S0e6WLDjQ,10601
67
+ win32more/Microsoft/Windows/Storage/Pickers/__init__.py,sha256=kTkM0rbInfcco6ILZkBZ70xTKG6xpXk1zSiZaUFdQhg,16276
64
68
  win32more/Microsoft/Windows/System/__init__.py,sha256=2GQnrlhdzzkVj7IRF4LOTn9nruLVG7T7rhqdNTSPGvA,4393
65
69
  win32more/Microsoft/Windows/System/Power/__init__.py,sha256=mzBzuX4Ez5fZBO6ZCtAFuW1Z7ZfRbRQmihxsD_1J_4M,18069
66
- win32more/Microsoft/Windows/Widgets/__init__.py,sha256=dW9329PqzNCpTqoIxeHU5Ai-L9QUdFX0KleM3w9Aa_g,251
67
- win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=w7eFaw42idP71iIj2DeKhJk2PhDho7_xeWWeDN-G4pU,28265
70
+ win32more/Microsoft/Windows/Widgets/__init__.py,sha256=XeZ4jlRlD3vvFNZl0LuXTQtV-HHGSzZVGhoCDS1CHKk,251
71
+ win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=z_f-M9N9AWUDZdSIa4Ay37pvNzPAwN-jtSW7I0Y-uQI,28837
68
72
  win32more/Microsoft/Windows/Widgets/Notifications/__init__.py,sha256=VlHjcJjaIjTM-CTSpmyhMvi9xDuiP7iHT7X5kaI3YPk,12343
69
73
  win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=TSAVqcXc4LGuHslrDe6IMGBLCbuV1U2fugKMFIawgDE,31820
70
74
  win32more/Microsoft/Windows/Workloads/__init__.py,sha256=SBOPevXwOL1k1ujX0sbQUP5Gg8VDWI3nXdrBKZMi4y0,275
71
- win32more/appsdk/versioninfo.py,sha256=XHQM0ReDAmHi1X2lkqzYNV1dc4aEH5m0TGC0-BFCvzE,149
72
- win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=yCz6c2Zx9D7L8Po-6ddMUEudDaRUONeX8wejE4vjg4I,72224
73
- win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=lXEkTSm3VMsSFEFPfFiT7ismuhDQYKkOYxvTW4bMlLM,388640
74
- win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=ADxRPeal3WLWOz59aeR877jtLPEBPVfKDP2sesNMWL4,79920
75
- win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=GgB8307mIKZ4DOk1nE95R896Rhc3HeypLrb3LMzVPCY,396320
76
- win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=xKqCHj3yMRTziglyjFE4h4Cv_4HabWQa4Yj3odbGGUk,59936
77
- win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=2WmsnEuUCE23F2CR3GXyRsFzaFmGaj2slI8_x3jVmMw,348192
78
- win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info/METADATA,sha256=LYpiEndTYhNAkvUCTp5hZY6snVGYgRWlxXdbQKnn5Qo,248
79
- win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
80
- win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=-e0AFHYEvcSMfmLRJ9cyRXgc5TkDzvnDhj-KfvgSDMI,12402
81
- win32more_microsoft_windowsappsdk-0.7.1.7.251014001.dist-info/RECORD,,
75
+ win32more/appsdk/versioninfo.py,sha256=9Iz9oOy9t4CpdbnWBsdDjIAd5qG1UmnW7tqkpw4Ppz8,149
76
+ win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=7yJrrfq_O6St__WbgvAXLS9cvoRXdQ61zp0yJYMqFHE,81952
77
+ win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=flQneEX8KbD7wlND_w-DxhJVGoGhIgMnhze4In1WPIY,392736
78
+ win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=pzKgoH87ZG8qYfehDCFSnn5H7yqgSqNiDc0xC0jdomE,87608
79
+ win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=DxeBwGgirYV4J-H38GBJqWhscZCMmfD_Lnh7apky5mU,399928
80
+ win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=nV79iCGYjBe3NuPZNUeGsHxfOE73-VUA3t4tkVIHpHY,65576
81
+ win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=onG0CPBUkJXSlPGngLZB1Y7SBdxxgPjNP6mT_th7X_k,351272
82
+ win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/METADATA,sha256=_pFDHV8UzfiTyLy6cMc-VI8QpGugKkzRffKIw8rGV1w,248
83
+ win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
84
+ win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=WxHmNHdW5A_gJ0vAjJf4kgG5Tw1QGBoJoA8fR0CEBQE,12637
85
+ win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/RECORD,,
@@ -24,9 +24,11 @@ These license terms are an agreement between you and Microsoft Corporation (or o
24
24
 
25
25
  a) Distribution Rights. The code and test files described below are distributable if included with the software.
26
26
 
27
- i. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation; and
27
+ i. Any files that are binplaced with your application by the WindowsAppSDK NuGet package are, by definition, permitted to be redistributed. This applies to both framework package dependent and self-contained deployments.
28
28
 
29
- ii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
29
+ ii. Image Library. You may copy and distribute images, graphics, and animations in the Image Library as described in the software documentation; and
30
+
31
+ iii. Third Party Distribution. You may permit distributors of your applications to copy and distribute any of this distributable code you elect to distribute with your applications.
30
32
 
31
33
  b) Distribution Requirements. For any code you distribute, you must:
32
34