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,572 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.Windows.AppNotifications
|
|
4
|
+
import win32more.Microsoft.Windows.AppNotifications.Builder
|
|
5
|
+
import win32more.Windows.Foundation
|
|
6
|
+
import win32more.Windows.Foundation.Collections
|
|
7
|
+
class AppNotificationAudioLooping(Enum, Int32):
|
|
8
|
+
None_ = 0
|
|
9
|
+
Loop = 1
|
|
10
|
+
class AppNotificationBuilder(ComPtr):
|
|
11
|
+
extends: IInspectable
|
|
12
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder
|
|
13
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder'
|
|
14
|
+
def __init__(self, *args, **kwargs):
|
|
15
|
+
if kwargs:
|
|
16
|
+
super().__init__(**kwargs)
|
|
17
|
+
elif len(args) == 0:
|
|
18
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder.CreateInstance(*args))
|
|
19
|
+
else:
|
|
20
|
+
raise ValueError('no matched constructor')
|
|
21
|
+
@winrt_activatemethod
|
|
22
|
+
def CreateInstance(cls) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
23
|
+
@winrt_mixinmethod
|
|
24
|
+
def AddArgument(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, key: WinRT_String, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
25
|
+
@winrt_mixinmethod
|
|
26
|
+
def SetTimeStamp(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, value: win32more.Windows.Foundation.DateTime) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
27
|
+
@winrt_mixinmethod
|
|
28
|
+
def SetDuration(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, duration: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationDuration) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
29
|
+
@winrt_mixinmethod
|
|
30
|
+
def SetScenario(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationScenario) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
31
|
+
@winrt_mixinmethod
|
|
32
|
+
def AddText(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, text: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
33
|
+
@winrt_mixinmethod
|
|
34
|
+
def AddText2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, text: WinRT_String, properties: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
35
|
+
@winrt_mixinmethod
|
|
36
|
+
def SetAttributionText(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, text: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
37
|
+
@winrt_mixinmethod
|
|
38
|
+
def SetAttributionText2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, text: WinRT_String, language: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
39
|
+
@winrt_mixinmethod
|
|
40
|
+
def SetInlineImage(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
41
|
+
@winrt_mixinmethod
|
|
42
|
+
def SetInlineImage2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri, imageCrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
43
|
+
@winrt_mixinmethod
|
|
44
|
+
def SetInlineImage3(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri, imagecrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop, alternateText: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
45
|
+
@winrt_mixinmethod
|
|
46
|
+
def SetAppLogoOverride(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
47
|
+
@winrt_mixinmethod
|
|
48
|
+
def SetAppLogoOverride2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri, imageCrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
49
|
+
@winrt_mixinmethod
|
|
50
|
+
def SetAppLogoOverride3(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri, imageCrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop, alternateText: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
51
|
+
@winrt_mixinmethod
|
|
52
|
+
def SetHeroImage(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
53
|
+
@winrt_mixinmethod
|
|
54
|
+
def SetHeroImage2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, imageUri: win32more.Windows.Foundation.Uri, alternateText: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
55
|
+
@winrt_mixinmethod
|
|
56
|
+
def SetAudioUri(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, audioUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
57
|
+
@winrt_mixinmethod
|
|
58
|
+
def SetAudioUri2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, audioUri: win32more.Windows.Foundation.Uri, loop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationAudioLooping) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
59
|
+
@winrt_mixinmethod
|
|
60
|
+
def SetAudioEvent(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, appNotificationSoundEvent: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationSoundEvent) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
61
|
+
@winrt_mixinmethod
|
|
62
|
+
def SetAudioEvent2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, appNotificationSoundEvent: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationSoundEvent, loop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationAudioLooping) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
63
|
+
@winrt_mixinmethod
|
|
64
|
+
def MuteAudio(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
65
|
+
@winrt_mixinmethod
|
|
66
|
+
def AddTextBox(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, id: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
67
|
+
@winrt_mixinmethod
|
|
68
|
+
def AddTextBox2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, id: WinRT_String, placeHolderText: WinRT_String, title: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
69
|
+
@winrt_mixinmethod
|
|
70
|
+
def AddButton(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
71
|
+
@winrt_mixinmethod
|
|
72
|
+
def AddComboBox(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
73
|
+
@winrt_mixinmethod
|
|
74
|
+
def AddProgressBar(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
75
|
+
@winrt_mixinmethod
|
|
76
|
+
def BuildNotification(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder) -> win32more.Microsoft.Windows.AppNotifications.AppNotification: ...
|
|
77
|
+
@winrt_mixinmethod
|
|
78
|
+
def SetTag(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
79
|
+
@winrt_mixinmethod
|
|
80
|
+
def SetGroup(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder, group: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
81
|
+
@winrt_classmethod
|
|
82
|
+
def IsUrgentScenarioSupported(cls: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilderStatics) -> Boolean: ...
|
|
83
|
+
AppNotificationBuilderContract: UInt32 = 65536
|
|
84
|
+
class AppNotificationButton(ComPtr):
|
|
85
|
+
extends: IInspectable
|
|
86
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton
|
|
87
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.AppNotificationButton'
|
|
88
|
+
def __init__(self, *args, **kwargs):
|
|
89
|
+
if kwargs:
|
|
90
|
+
super().__init__(**kwargs)
|
|
91
|
+
elif len(args) == 0:
|
|
92
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton.CreateInstance(*args))
|
|
93
|
+
elif len(args) == 1:
|
|
94
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton.CreateInstance(*args))
|
|
95
|
+
else:
|
|
96
|
+
raise ValueError('no matched constructor')
|
|
97
|
+
@winrt_overload
|
|
98
|
+
@winrt_activatemethod
|
|
99
|
+
def CreateInstance(cls) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
100
|
+
@CreateInstance.register
|
|
101
|
+
@winrt_factorymethod
|
|
102
|
+
def CreateInstance(cls: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButtonFactory, content: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
103
|
+
@winrt_mixinmethod
|
|
104
|
+
def get_Content(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> WinRT_String: ...
|
|
105
|
+
@winrt_mixinmethod
|
|
106
|
+
def put_Content(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: WinRT_String) -> Void: ...
|
|
107
|
+
@winrt_mixinmethod
|
|
108
|
+
def get_Arguments(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
109
|
+
@winrt_mixinmethod
|
|
110
|
+
def put_Arguments(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]) -> Void: ...
|
|
111
|
+
@winrt_mixinmethod
|
|
112
|
+
def get_Icon(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> win32more.Windows.Foundation.Uri: ...
|
|
113
|
+
@winrt_mixinmethod
|
|
114
|
+
def put_Icon(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
115
|
+
@winrt_mixinmethod
|
|
116
|
+
def get_ToolTip(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> WinRT_String: ...
|
|
117
|
+
@winrt_mixinmethod
|
|
118
|
+
def put_ToolTip(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: WinRT_String) -> Void: ...
|
|
119
|
+
@winrt_mixinmethod
|
|
120
|
+
def get_ContextMenuPlacement(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> Boolean: ...
|
|
121
|
+
@winrt_mixinmethod
|
|
122
|
+
def put_ContextMenuPlacement(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: Boolean) -> Void: ...
|
|
123
|
+
@winrt_mixinmethod
|
|
124
|
+
def get_ButtonStyle(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButtonStyle: ...
|
|
125
|
+
@winrt_mixinmethod
|
|
126
|
+
def put_ButtonStyle(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButtonStyle) -> Void: ...
|
|
127
|
+
@winrt_mixinmethod
|
|
128
|
+
def get_InputId(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> WinRT_String: ...
|
|
129
|
+
@winrt_mixinmethod
|
|
130
|
+
def put_InputId(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: WinRT_String) -> Void: ...
|
|
131
|
+
@winrt_mixinmethod
|
|
132
|
+
def get_InvokeUri(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> win32more.Windows.Foundation.Uri: ...
|
|
133
|
+
@winrt_mixinmethod
|
|
134
|
+
def put_InvokeUri(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
135
|
+
@winrt_mixinmethod
|
|
136
|
+
def get_TargetAppId(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> WinRT_String: ...
|
|
137
|
+
@winrt_mixinmethod
|
|
138
|
+
def put_TargetAppId(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: WinRT_String) -> Void: ...
|
|
139
|
+
@winrt_mixinmethod
|
|
140
|
+
def AddArgument(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, key: WinRT_String, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
141
|
+
@winrt_mixinmethod
|
|
142
|
+
def SetIcon(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
143
|
+
@winrt_mixinmethod
|
|
144
|
+
def SetToolTip(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
145
|
+
@winrt_mixinmethod
|
|
146
|
+
def SetContextMenuPlacement(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
147
|
+
@winrt_mixinmethod
|
|
148
|
+
def SetButtonStyle(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButtonStyle) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
149
|
+
@winrt_mixinmethod
|
|
150
|
+
def SetInputId(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
151
|
+
@winrt_mixinmethod
|
|
152
|
+
def SetInvokeUri(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, protocolUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
153
|
+
@winrt_mixinmethod
|
|
154
|
+
def SetInvokeUri2(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton, protocolUri: win32more.Windows.Foundation.Uri, targetAppId: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
155
|
+
@winrt_classmethod
|
|
156
|
+
def IsToolTipSupported(cls: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButtonStatics) -> Boolean: ...
|
|
157
|
+
@winrt_classmethod
|
|
158
|
+
def IsButtonStyleSupported(cls: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationButtonStatics) -> Boolean: ...
|
|
159
|
+
Arguments = property(get_Arguments, put_Arguments)
|
|
160
|
+
ButtonStyle = property(get_ButtonStyle, put_ButtonStyle)
|
|
161
|
+
Content = property(get_Content, put_Content)
|
|
162
|
+
ContextMenuPlacement = property(get_ContextMenuPlacement, put_ContextMenuPlacement)
|
|
163
|
+
Icon = property(get_Icon, put_Icon)
|
|
164
|
+
InputId = property(get_InputId, put_InputId)
|
|
165
|
+
InvokeUri = property(get_InvokeUri, put_InvokeUri)
|
|
166
|
+
TargetAppId = property(get_TargetAppId, put_TargetAppId)
|
|
167
|
+
ToolTip = property(get_ToolTip, put_ToolTip)
|
|
168
|
+
class AppNotificationButtonStyle(Enum, Int32):
|
|
169
|
+
Default = 0
|
|
170
|
+
Success = 1
|
|
171
|
+
Critical = 2
|
|
172
|
+
class AppNotificationComboBox(ComPtr):
|
|
173
|
+
extends: IInspectable
|
|
174
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox
|
|
175
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox'
|
|
176
|
+
def __init__(self, *args, **kwargs):
|
|
177
|
+
if kwargs:
|
|
178
|
+
super().__init__(**kwargs)
|
|
179
|
+
elif len(args) == 1:
|
|
180
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox.CreateInstance(*args))
|
|
181
|
+
else:
|
|
182
|
+
raise ValueError('no matched constructor')
|
|
183
|
+
@winrt_factorymethod
|
|
184
|
+
def CreateInstance(cls: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBoxFactory, id: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
185
|
+
@winrt_mixinmethod
|
|
186
|
+
def get_Items(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
187
|
+
@winrt_mixinmethod
|
|
188
|
+
def put_Items(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox, value: win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]) -> Void: ...
|
|
189
|
+
@winrt_mixinmethod
|
|
190
|
+
def get_Title(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox) -> WinRT_String: ...
|
|
191
|
+
@winrt_mixinmethod
|
|
192
|
+
def put_Title(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox, value: WinRT_String) -> Void: ...
|
|
193
|
+
@winrt_mixinmethod
|
|
194
|
+
def get_SelectedItem(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox) -> WinRT_String: ...
|
|
195
|
+
@winrt_mixinmethod
|
|
196
|
+
def put_SelectedItem(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox, value: WinRT_String) -> Void: ...
|
|
197
|
+
@winrt_mixinmethod
|
|
198
|
+
def AddItem(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox, id: WinRT_String, content: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
199
|
+
@winrt_mixinmethod
|
|
200
|
+
def SetTitle(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
201
|
+
@winrt_mixinmethod
|
|
202
|
+
def SetSelectedItem(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox, id: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
203
|
+
Items = property(get_Items, put_Items)
|
|
204
|
+
SelectedItem = property(get_SelectedItem, put_SelectedItem)
|
|
205
|
+
Title = property(get_Title, put_Title)
|
|
206
|
+
class AppNotificationDuration(Enum, Int32):
|
|
207
|
+
Default = 0
|
|
208
|
+
Long = 1
|
|
209
|
+
class AppNotificationImageCrop(Enum, Int32):
|
|
210
|
+
Default = 0
|
|
211
|
+
Circle = 1
|
|
212
|
+
class AppNotificationProgressBar(ComPtr):
|
|
213
|
+
extends: IInspectable
|
|
214
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar
|
|
215
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar'
|
|
216
|
+
def __init__(self, *args, **kwargs):
|
|
217
|
+
if kwargs:
|
|
218
|
+
super().__init__(**kwargs)
|
|
219
|
+
elif len(args) == 0:
|
|
220
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar.CreateInstance(*args))
|
|
221
|
+
else:
|
|
222
|
+
raise ValueError('no matched constructor')
|
|
223
|
+
@winrt_activatemethod
|
|
224
|
+
def CreateInstance(cls) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
225
|
+
@winrt_mixinmethod
|
|
226
|
+
def get_Title(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> WinRT_String: ...
|
|
227
|
+
@winrt_mixinmethod
|
|
228
|
+
def put_Title(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: WinRT_String) -> Void: ...
|
|
229
|
+
@winrt_mixinmethod
|
|
230
|
+
def get_Status(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> WinRT_String: ...
|
|
231
|
+
@winrt_mixinmethod
|
|
232
|
+
def put_Status(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: WinRT_String) -> Void: ...
|
|
233
|
+
@winrt_mixinmethod
|
|
234
|
+
def get_Value(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> Double: ...
|
|
235
|
+
@winrt_mixinmethod
|
|
236
|
+
def put_Value(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: Double) -> Void: ...
|
|
237
|
+
@winrt_mixinmethod
|
|
238
|
+
def get_ValueStringOverride(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> WinRT_String: ...
|
|
239
|
+
@winrt_mixinmethod
|
|
240
|
+
def put_ValueStringOverride(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: WinRT_String) -> Void: ...
|
|
241
|
+
@winrt_mixinmethod
|
|
242
|
+
def SetTitle(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
243
|
+
@winrt_mixinmethod
|
|
244
|
+
def BindTitle(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
245
|
+
@winrt_mixinmethod
|
|
246
|
+
def SetStatus(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
247
|
+
@winrt_mixinmethod
|
|
248
|
+
def BindStatus(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
249
|
+
@winrt_mixinmethod
|
|
250
|
+
def SetValue(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: Double) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
251
|
+
@winrt_mixinmethod
|
|
252
|
+
def BindValue(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
253
|
+
@winrt_mixinmethod
|
|
254
|
+
def SetValueStringOverride(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
255
|
+
@winrt_mixinmethod
|
|
256
|
+
def BindValueStringOverride(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
257
|
+
Status = property(get_Status, put_Status)
|
|
258
|
+
Title = property(get_Title, put_Title)
|
|
259
|
+
Value = property(get_Value, put_Value)
|
|
260
|
+
ValueStringOverride = property(get_ValueStringOverride, put_ValueStringOverride)
|
|
261
|
+
class AppNotificationScenario(Enum, Int32):
|
|
262
|
+
Default = 0
|
|
263
|
+
Reminder = 1
|
|
264
|
+
Alarm = 2
|
|
265
|
+
IncomingCall = 3
|
|
266
|
+
Urgent = 4
|
|
267
|
+
class AppNotificationSoundEvent(Enum, Int32):
|
|
268
|
+
Default = 0
|
|
269
|
+
IM = 1
|
|
270
|
+
Mail = 2
|
|
271
|
+
Reminder = 3
|
|
272
|
+
SMS = 4
|
|
273
|
+
Alarm = 5
|
|
274
|
+
Alarm2 = 6
|
|
275
|
+
Alarm3 = 7
|
|
276
|
+
Alarm4 = 8
|
|
277
|
+
Alarm5 = 9
|
|
278
|
+
Alarm6 = 10
|
|
279
|
+
Alarm7 = 11
|
|
280
|
+
Alarm8 = 12
|
|
281
|
+
Alarm9 = 13
|
|
282
|
+
Alarm10 = 14
|
|
283
|
+
Call = 15
|
|
284
|
+
Call2 = 16
|
|
285
|
+
Call3 = 17
|
|
286
|
+
Call4 = 18
|
|
287
|
+
Call5 = 19
|
|
288
|
+
Call6 = 20
|
|
289
|
+
Call7 = 21
|
|
290
|
+
Call8 = 22
|
|
291
|
+
Call9 = 23
|
|
292
|
+
Call10 = 24
|
|
293
|
+
class AppNotificationTextProperties(ComPtr):
|
|
294
|
+
extends: IInspectable
|
|
295
|
+
default_interface: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties
|
|
296
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties'
|
|
297
|
+
def __init__(self, *args, **kwargs):
|
|
298
|
+
if kwargs:
|
|
299
|
+
super().__init__(**kwargs)
|
|
300
|
+
elif len(args) == 0:
|
|
301
|
+
super().__init__(move=win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties.CreateInstance(*args))
|
|
302
|
+
else:
|
|
303
|
+
raise ValueError('no matched constructor')
|
|
304
|
+
@winrt_activatemethod
|
|
305
|
+
def CreateInstance(cls) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties: ...
|
|
306
|
+
@winrt_mixinmethod
|
|
307
|
+
def get_Language(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties) -> WinRT_String: ...
|
|
308
|
+
@winrt_mixinmethod
|
|
309
|
+
def put_Language(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties, value: WinRT_String) -> Void: ...
|
|
310
|
+
@winrt_mixinmethod
|
|
311
|
+
def get_IncomingCallAlignment(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties) -> Boolean: ...
|
|
312
|
+
@winrt_mixinmethod
|
|
313
|
+
def put_IncomingCallAlignment(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties, value: Boolean) -> Void: ...
|
|
314
|
+
@winrt_mixinmethod
|
|
315
|
+
def get_MaxLines(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties) -> Int32: ...
|
|
316
|
+
@winrt_mixinmethod
|
|
317
|
+
def put_MaxLines(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties, value: Int32) -> Void: ...
|
|
318
|
+
@winrt_mixinmethod
|
|
319
|
+
def SetLanguage(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties: ...
|
|
320
|
+
@winrt_mixinmethod
|
|
321
|
+
def SetIncomingCallAlignment(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties: ...
|
|
322
|
+
@winrt_mixinmethod
|
|
323
|
+
def SetMaxLines(self: win32more.Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties, value: Int32) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties: ...
|
|
324
|
+
IncomingCallAlignment = property(get_IncomingCallAlignment, put_IncomingCallAlignment)
|
|
325
|
+
Language = property(get_Language, put_Language)
|
|
326
|
+
MaxLines = property(get_MaxLines, put_MaxLines)
|
|
327
|
+
class IAppNotificationBuilder(ComPtr):
|
|
328
|
+
extends: IInspectable
|
|
329
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilder'
|
|
330
|
+
_iid_ = Guid('{e801d31f-ce03-505c-adec-8a02724ec9de}')
|
|
331
|
+
@winrt_commethod(6)
|
|
332
|
+
def AddArgument(self, key: WinRT_String, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
333
|
+
@winrt_commethod(7)
|
|
334
|
+
def SetTimeStamp(self, value: win32more.Windows.Foundation.DateTime) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
335
|
+
@winrt_commethod(8)
|
|
336
|
+
def SetDuration(self, duration: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationDuration) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
337
|
+
@winrt_commethod(9)
|
|
338
|
+
def SetScenario(self, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationScenario) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
339
|
+
@winrt_commethod(10)
|
|
340
|
+
def AddText(self, text: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
341
|
+
@winrt_commethod(11)
|
|
342
|
+
def AddText2(self, text: WinRT_String, properties: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
343
|
+
@winrt_commethod(12)
|
|
344
|
+
def SetAttributionText(self, text: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
345
|
+
@winrt_commethod(13)
|
|
346
|
+
def SetAttributionText2(self, text: WinRT_String, language: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
347
|
+
@winrt_commethod(14)
|
|
348
|
+
def SetInlineImage(self, imageUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
349
|
+
@winrt_commethod(15)
|
|
350
|
+
def SetInlineImage2(self, imageUri: win32more.Windows.Foundation.Uri, imageCrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
351
|
+
@winrt_commethod(16)
|
|
352
|
+
def SetInlineImage3(self, imageUri: win32more.Windows.Foundation.Uri, imagecrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop, alternateText: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
353
|
+
@winrt_commethod(17)
|
|
354
|
+
def SetAppLogoOverride(self, imageUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
355
|
+
@winrt_commethod(18)
|
|
356
|
+
def SetAppLogoOverride2(self, imageUri: win32more.Windows.Foundation.Uri, imageCrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
357
|
+
@winrt_commethod(19)
|
|
358
|
+
def SetAppLogoOverride3(self, imageUri: win32more.Windows.Foundation.Uri, imageCrop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationImageCrop, alternateText: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
359
|
+
@winrt_commethod(20)
|
|
360
|
+
def SetHeroImage(self, imageUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
361
|
+
@winrt_commethod(21)
|
|
362
|
+
def SetHeroImage2(self, imageUri: win32more.Windows.Foundation.Uri, alternateText: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
363
|
+
@winrt_commethod(22)
|
|
364
|
+
def SetAudioUri(self, audioUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
365
|
+
@winrt_commethod(23)
|
|
366
|
+
def SetAudioUri2(self, audioUri: win32more.Windows.Foundation.Uri, loop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationAudioLooping) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
367
|
+
@winrt_commethod(24)
|
|
368
|
+
def SetAudioEvent(self, appNotificationSoundEvent: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationSoundEvent) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
369
|
+
@winrt_commethod(25)
|
|
370
|
+
def SetAudioEvent2(self, appNotificationSoundEvent: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationSoundEvent, loop: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationAudioLooping) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
371
|
+
@winrt_commethod(26)
|
|
372
|
+
def MuteAudio(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
373
|
+
@winrt_commethod(27)
|
|
374
|
+
def AddTextBox(self, id: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
375
|
+
@winrt_commethod(28)
|
|
376
|
+
def AddTextBox2(self, id: WinRT_String, placeHolderText: WinRT_String, title: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
377
|
+
@winrt_commethod(29)
|
|
378
|
+
def AddButton(self, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
379
|
+
@winrt_commethod(30)
|
|
380
|
+
def AddComboBox(self, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
381
|
+
@winrt_commethod(31)
|
|
382
|
+
def AddProgressBar(self, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
383
|
+
@winrt_commethod(32)
|
|
384
|
+
def BuildNotification(self) -> win32more.Microsoft.Windows.AppNotifications.AppNotification: ...
|
|
385
|
+
@winrt_commethod(33)
|
|
386
|
+
def SetTag(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
387
|
+
@winrt_commethod(34)
|
|
388
|
+
def SetGroup(self, group: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilder: ...
|
|
389
|
+
class IAppNotificationBuilderStatics(ComPtr):
|
|
390
|
+
extends: IInspectable
|
|
391
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationBuilderStatics'
|
|
392
|
+
_iid_ = Guid('{c7042d2a-d319-520e-a314-50081c8888cc}')
|
|
393
|
+
@winrt_commethod(6)
|
|
394
|
+
def IsUrgentScenarioSupported(self) -> Boolean: ...
|
|
395
|
+
class IAppNotificationButton(ComPtr):
|
|
396
|
+
extends: IInspectable
|
|
397
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationButton'
|
|
398
|
+
_iid_ = Guid('{a7c03031-5634-5098-aec9-47ecb60c3499}')
|
|
399
|
+
@winrt_commethod(6)
|
|
400
|
+
def get_Content(self) -> WinRT_String: ...
|
|
401
|
+
@winrt_commethod(7)
|
|
402
|
+
def put_Content(self, value: WinRT_String) -> Void: ...
|
|
403
|
+
@winrt_commethod(8)
|
|
404
|
+
def get_Arguments(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
405
|
+
@winrt_commethod(9)
|
|
406
|
+
def put_Arguments(self, value: win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]) -> Void: ...
|
|
407
|
+
@winrt_commethod(10)
|
|
408
|
+
def get_Icon(self) -> win32more.Windows.Foundation.Uri: ...
|
|
409
|
+
@winrt_commethod(11)
|
|
410
|
+
def put_Icon(self, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
411
|
+
@winrt_commethod(12)
|
|
412
|
+
def get_ToolTip(self) -> WinRT_String: ...
|
|
413
|
+
@winrt_commethod(13)
|
|
414
|
+
def put_ToolTip(self, value: WinRT_String) -> Void: ...
|
|
415
|
+
@winrt_commethod(14)
|
|
416
|
+
def get_ContextMenuPlacement(self) -> Boolean: ...
|
|
417
|
+
@winrt_commethod(15)
|
|
418
|
+
def put_ContextMenuPlacement(self, value: Boolean) -> Void: ...
|
|
419
|
+
@winrt_commethod(16)
|
|
420
|
+
def get_ButtonStyle(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButtonStyle: ...
|
|
421
|
+
@winrt_commethod(17)
|
|
422
|
+
def put_ButtonStyle(self, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButtonStyle) -> Void: ...
|
|
423
|
+
@winrt_commethod(18)
|
|
424
|
+
def get_InputId(self) -> WinRT_String: ...
|
|
425
|
+
@winrt_commethod(19)
|
|
426
|
+
def put_InputId(self, value: WinRT_String) -> Void: ...
|
|
427
|
+
@winrt_commethod(20)
|
|
428
|
+
def get_InvokeUri(self) -> win32more.Windows.Foundation.Uri: ...
|
|
429
|
+
@winrt_commethod(21)
|
|
430
|
+
def put_InvokeUri(self, value: win32more.Windows.Foundation.Uri) -> Void: ...
|
|
431
|
+
@winrt_commethod(22)
|
|
432
|
+
def get_TargetAppId(self) -> WinRT_String: ...
|
|
433
|
+
@winrt_commethod(23)
|
|
434
|
+
def put_TargetAppId(self, value: WinRT_String) -> Void: ...
|
|
435
|
+
@winrt_commethod(24)
|
|
436
|
+
def AddArgument(self, key: WinRT_String, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
437
|
+
@winrt_commethod(25)
|
|
438
|
+
def SetIcon(self, value: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
439
|
+
@winrt_commethod(26)
|
|
440
|
+
def SetToolTip(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
441
|
+
@winrt_commethod(27)
|
|
442
|
+
def SetContextMenuPlacement(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
443
|
+
@winrt_commethod(28)
|
|
444
|
+
def SetButtonStyle(self, value: win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButtonStyle) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
445
|
+
@winrt_commethod(29)
|
|
446
|
+
def SetInputId(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
447
|
+
@winrt_commethod(30)
|
|
448
|
+
def SetInvokeUri(self, protocolUri: win32more.Windows.Foundation.Uri) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
449
|
+
@winrt_commethod(31)
|
|
450
|
+
def SetInvokeUri2(self, protocolUri: win32more.Windows.Foundation.Uri, targetAppId: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
451
|
+
Arguments = property(get_Arguments, put_Arguments)
|
|
452
|
+
ButtonStyle = property(get_ButtonStyle, put_ButtonStyle)
|
|
453
|
+
Content = property(get_Content, put_Content)
|
|
454
|
+
ContextMenuPlacement = property(get_ContextMenuPlacement, put_ContextMenuPlacement)
|
|
455
|
+
Icon = property(get_Icon, put_Icon)
|
|
456
|
+
InputId = property(get_InputId, put_InputId)
|
|
457
|
+
InvokeUri = property(get_InvokeUri, put_InvokeUri)
|
|
458
|
+
TargetAppId = property(get_TargetAppId, put_TargetAppId)
|
|
459
|
+
ToolTip = property(get_ToolTip, put_ToolTip)
|
|
460
|
+
class IAppNotificationButtonFactory(ComPtr):
|
|
461
|
+
extends: IInspectable
|
|
462
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationButtonFactory'
|
|
463
|
+
_iid_ = Guid('{4f109286-0a6d-5a5e-9e8f-9fe31669fbb8}')
|
|
464
|
+
@winrt_commethod(6)
|
|
465
|
+
def CreateInstance(self, content: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationButton: ...
|
|
466
|
+
class IAppNotificationButtonStatics(ComPtr):
|
|
467
|
+
extends: IInspectable
|
|
468
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationButtonStatics'
|
|
469
|
+
_iid_ = Guid('{fead7c18-4144-59a4-9611-86b7e8191853}')
|
|
470
|
+
@winrt_commethod(6)
|
|
471
|
+
def IsToolTipSupported(self) -> Boolean: ...
|
|
472
|
+
@winrt_commethod(7)
|
|
473
|
+
def IsButtonStyleSupported(self) -> Boolean: ...
|
|
474
|
+
class IAppNotificationComboBox(ComPtr):
|
|
475
|
+
extends: IInspectable
|
|
476
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBox'
|
|
477
|
+
_iid_ = Guid('{4547c9e2-4815-538c-be26-040ce17f8b62}')
|
|
478
|
+
@winrt_commethod(6)
|
|
479
|
+
def get_Items(self) -> win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]: ...
|
|
480
|
+
@winrt_commethod(7)
|
|
481
|
+
def put_Items(self, value: win32more.Windows.Foundation.Collections.IMap[WinRT_String, WinRT_String]) -> Void: ...
|
|
482
|
+
@winrt_commethod(8)
|
|
483
|
+
def get_Title(self) -> WinRT_String: ...
|
|
484
|
+
@winrt_commethod(9)
|
|
485
|
+
def put_Title(self, value: WinRT_String) -> Void: ...
|
|
486
|
+
@winrt_commethod(10)
|
|
487
|
+
def get_SelectedItem(self) -> WinRT_String: ...
|
|
488
|
+
@winrt_commethod(11)
|
|
489
|
+
def put_SelectedItem(self, value: WinRT_String) -> Void: ...
|
|
490
|
+
@winrt_commethod(12)
|
|
491
|
+
def AddItem(self, id: WinRT_String, content: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
492
|
+
@winrt_commethod(13)
|
|
493
|
+
def SetTitle(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
494
|
+
@winrt_commethod(14)
|
|
495
|
+
def SetSelectedItem(self, id: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
496
|
+
Items = property(get_Items, put_Items)
|
|
497
|
+
SelectedItem = property(get_SelectedItem, put_SelectedItem)
|
|
498
|
+
Title = property(get_Title, put_Title)
|
|
499
|
+
class IAppNotificationComboBoxFactory(ComPtr):
|
|
500
|
+
extends: IInspectable
|
|
501
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationComboBoxFactory'
|
|
502
|
+
_iid_ = Guid('{1b31b5b0-9d86-59ed-8629-a79498ab5d4b}')
|
|
503
|
+
@winrt_commethod(6)
|
|
504
|
+
def CreateInstance(self, id: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationComboBox: ...
|
|
505
|
+
class IAppNotificationProgressBar(ComPtr):
|
|
506
|
+
extends: IInspectable
|
|
507
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationProgressBar'
|
|
508
|
+
_iid_ = Guid('{fced62f2-2074-5641-8630-87a14315ac86}')
|
|
509
|
+
@winrt_commethod(6)
|
|
510
|
+
def get_Title(self) -> WinRT_String: ...
|
|
511
|
+
@winrt_commethod(7)
|
|
512
|
+
def put_Title(self, value: WinRT_String) -> Void: ...
|
|
513
|
+
@winrt_commethod(8)
|
|
514
|
+
def get_Status(self) -> WinRT_String: ...
|
|
515
|
+
@winrt_commethod(9)
|
|
516
|
+
def put_Status(self, value: WinRT_String) -> Void: ...
|
|
517
|
+
@winrt_commethod(10)
|
|
518
|
+
def get_Value(self) -> Double: ...
|
|
519
|
+
@winrt_commethod(11)
|
|
520
|
+
def put_Value(self, value: Double) -> Void: ...
|
|
521
|
+
@winrt_commethod(12)
|
|
522
|
+
def get_ValueStringOverride(self) -> WinRT_String: ...
|
|
523
|
+
@winrt_commethod(13)
|
|
524
|
+
def put_ValueStringOverride(self, value: WinRT_String) -> Void: ...
|
|
525
|
+
@winrt_commethod(14)
|
|
526
|
+
def SetTitle(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
527
|
+
@winrt_commethod(15)
|
|
528
|
+
def BindTitle(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
529
|
+
@winrt_commethod(16)
|
|
530
|
+
def SetStatus(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
531
|
+
@winrt_commethod(17)
|
|
532
|
+
def BindStatus(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
533
|
+
@winrt_commethod(18)
|
|
534
|
+
def SetValue(self, value: Double) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
535
|
+
@winrt_commethod(19)
|
|
536
|
+
def BindValue(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
537
|
+
@winrt_commethod(20)
|
|
538
|
+
def SetValueStringOverride(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
539
|
+
@winrt_commethod(21)
|
|
540
|
+
def BindValueStringOverride(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationProgressBar: ...
|
|
541
|
+
Status = property(get_Status, put_Status)
|
|
542
|
+
Title = property(get_Title, put_Title)
|
|
543
|
+
Value = property(get_Value, put_Value)
|
|
544
|
+
ValueStringOverride = property(get_ValueStringOverride, put_ValueStringOverride)
|
|
545
|
+
class IAppNotificationTextProperties(ComPtr):
|
|
546
|
+
extends: IInspectable
|
|
547
|
+
_classid_ = 'Microsoft.Windows.AppNotifications.Builder.IAppNotificationTextProperties'
|
|
548
|
+
_iid_ = Guid('{23a30d0b-5258-5853-932e-9521a3642afb}')
|
|
549
|
+
@winrt_commethod(6)
|
|
550
|
+
def get_Language(self) -> WinRT_String: ...
|
|
551
|
+
@winrt_commethod(7)
|
|
552
|
+
def put_Language(self, value: WinRT_String) -> Void: ...
|
|
553
|
+
@winrt_commethod(8)
|
|
554
|
+
def get_IncomingCallAlignment(self) -> Boolean: ...
|
|
555
|
+
@winrt_commethod(9)
|
|
556
|
+
def put_IncomingCallAlignment(self, value: Boolean) -> Void: ...
|
|
557
|
+
@winrt_commethod(10)
|
|
558
|
+
def get_MaxLines(self) -> Int32: ...
|
|
559
|
+
@winrt_commethod(11)
|
|
560
|
+
def put_MaxLines(self, value: Int32) -> Void: ...
|
|
561
|
+
@winrt_commethod(12)
|
|
562
|
+
def SetLanguage(self, value: WinRT_String) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties: ...
|
|
563
|
+
@winrt_commethod(13)
|
|
564
|
+
def SetIncomingCallAlignment(self) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties: ...
|
|
565
|
+
@winrt_commethod(14)
|
|
566
|
+
def SetMaxLines(self, value: Int32) -> win32more.Microsoft.Windows.AppNotifications.Builder.AppNotificationTextProperties: ...
|
|
567
|
+
IncomingCallAlignment = property(get_IncomingCallAlignment, put_IncomingCallAlignment)
|
|
568
|
+
Language = property(get_Language, put_Language)
|
|
569
|
+
MaxLines = property(get_MaxLines, put_MaxLines)
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
make_ready(__name__)
|