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,877 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI
|
|
4
|
+
import win32more.Microsoft.UI.Dispatching
|
|
5
|
+
import win32more.Microsoft.UI.Windowing
|
|
6
|
+
import win32more.Windows.Foundation
|
|
7
|
+
import win32more.Windows.Foundation.Collections
|
|
8
|
+
import win32more.Windows.Graphics
|
|
9
|
+
import win32more.Windows.UI
|
|
10
|
+
class AppWindow(ComPtr):
|
|
11
|
+
extends: IInspectable
|
|
12
|
+
default_interface: win32more.Microsoft.UI.Windowing.IAppWindow
|
|
13
|
+
_classid_ = 'Microsoft.UI.Windowing.AppWindow'
|
|
14
|
+
@winrt_mixinmethod
|
|
15
|
+
def add_Closing(self: win32more.Microsoft.UI.Windowing.IAppWindow, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.AppWindow, win32more.Microsoft.UI.Windowing.AppWindowClosingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
16
|
+
@winrt_mixinmethod
|
|
17
|
+
def get_IsShownInSwitchers(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> Boolean: ...
|
|
18
|
+
@winrt_mixinmethod
|
|
19
|
+
def put_IsShownInSwitchers(self: win32more.Microsoft.UI.Windowing.IAppWindow, value: Boolean) -> Void: ...
|
|
20
|
+
@winrt_mixinmethod
|
|
21
|
+
def get_IsVisible(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> Boolean: ...
|
|
22
|
+
@winrt_mixinmethod
|
|
23
|
+
def get_OwnerWindowId(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> win32more.Microsoft.UI.WindowId: ...
|
|
24
|
+
@winrt_mixinmethod
|
|
25
|
+
def get_Position(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> win32more.Windows.Graphics.PointInt32: ...
|
|
26
|
+
@winrt_mixinmethod
|
|
27
|
+
def get_Presenter(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> win32more.Microsoft.UI.Windowing.AppWindowPresenter: ...
|
|
28
|
+
@winrt_mixinmethod
|
|
29
|
+
def get_Size(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
30
|
+
@winrt_mixinmethod
|
|
31
|
+
def get_Title(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> WinRT_String: ...
|
|
32
|
+
@winrt_mixinmethod
|
|
33
|
+
def put_Title(self: win32more.Microsoft.UI.Windowing.IAppWindow, value: WinRT_String) -> Void: ...
|
|
34
|
+
@winrt_mixinmethod
|
|
35
|
+
def get_Id(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> win32more.Microsoft.UI.WindowId: ...
|
|
36
|
+
@winrt_mixinmethod
|
|
37
|
+
def Destroy(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> Void: ...
|
|
38
|
+
@winrt_mixinmethod
|
|
39
|
+
def Hide(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> Void: ...
|
|
40
|
+
@winrt_mixinmethod
|
|
41
|
+
def Move(self: win32more.Microsoft.UI.Windowing.IAppWindow, position: win32more.Windows.Graphics.PointInt32) -> Void: ...
|
|
42
|
+
@winrt_mixinmethod
|
|
43
|
+
def MoveAndResize(self: win32more.Microsoft.UI.Windowing.IAppWindow, rect: win32more.Windows.Graphics.RectInt32) -> Void: ...
|
|
44
|
+
@winrt_mixinmethod
|
|
45
|
+
def MoveAndResizeRelativeToDisplayArea(self: win32more.Microsoft.UI.Windowing.IAppWindow, rect: win32more.Windows.Graphics.RectInt32, displayarea: win32more.Microsoft.UI.Windowing.DisplayArea) -> Void: ...
|
|
46
|
+
@winrt_mixinmethod
|
|
47
|
+
def Resize(self: win32more.Microsoft.UI.Windowing.IAppWindow, size: win32more.Windows.Graphics.SizeInt32) -> Void: ...
|
|
48
|
+
@winrt_mixinmethod
|
|
49
|
+
def SetIcon(self: win32more.Microsoft.UI.Windowing.IAppWindow, iconPath: WinRT_String) -> Void: ...
|
|
50
|
+
@winrt_mixinmethod
|
|
51
|
+
def SetIconWithIconId(self: win32more.Microsoft.UI.Windowing.IAppWindow, iconId: win32more.Microsoft.UI.IconId) -> Void: ...
|
|
52
|
+
@winrt_mixinmethod
|
|
53
|
+
def SetPresenter(self: win32more.Microsoft.UI.Windowing.IAppWindow, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter) -> Void: ...
|
|
54
|
+
@winrt_mixinmethod
|
|
55
|
+
def SetPresenterByKind(self: win32more.Microsoft.UI.Windowing.IAppWindow, appWindowPresenterKind: win32more.Microsoft.UI.Windowing.AppWindowPresenterKind) -> Void: ...
|
|
56
|
+
@winrt_mixinmethod
|
|
57
|
+
def Show(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> Void: ...
|
|
58
|
+
@winrt_mixinmethod
|
|
59
|
+
def ShowWithActivation(self: win32more.Microsoft.UI.Windowing.IAppWindow, activateWindow: Boolean) -> Void: ...
|
|
60
|
+
@winrt_mixinmethod
|
|
61
|
+
def add_Changed(self: win32more.Microsoft.UI.Windowing.IAppWindow, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.AppWindow, win32more.Microsoft.UI.Windowing.AppWindowChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
62
|
+
@winrt_mixinmethod
|
|
63
|
+
def remove_Changed(self: win32more.Microsoft.UI.Windowing.IAppWindow, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
64
|
+
@winrt_mixinmethod
|
|
65
|
+
def get_TitleBar(self: win32more.Microsoft.UI.Windowing.IAppWindow) -> win32more.Microsoft.UI.Windowing.AppWindowTitleBar: ...
|
|
66
|
+
@winrt_mixinmethod
|
|
67
|
+
def remove_Closing(self: win32more.Microsoft.UI.Windowing.IAppWindow, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
68
|
+
@winrt_mixinmethod
|
|
69
|
+
def add_Destroying(self: win32more.Microsoft.UI.Windowing.IAppWindow, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.AppWindow, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
70
|
+
@winrt_mixinmethod
|
|
71
|
+
def remove_Destroying(self: win32more.Microsoft.UI.Windowing.IAppWindow, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
72
|
+
@winrt_mixinmethod
|
|
73
|
+
def get_ClientSize(self: win32more.Microsoft.UI.Windowing.IAppWindow2) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
74
|
+
@winrt_mixinmethod
|
|
75
|
+
def MoveInZOrderAtBottom(self: win32more.Microsoft.UI.Windowing.IAppWindow2) -> Void: ...
|
|
76
|
+
@winrt_mixinmethod
|
|
77
|
+
def MoveInZOrderAtTop(self: win32more.Microsoft.UI.Windowing.IAppWindow2) -> Void: ...
|
|
78
|
+
@winrt_mixinmethod
|
|
79
|
+
def MoveInZOrderBelow(self: win32more.Microsoft.UI.Windowing.IAppWindow2, windowId: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
80
|
+
@winrt_mixinmethod
|
|
81
|
+
def ResizeClient(self: win32more.Microsoft.UI.Windowing.IAppWindow2, size: win32more.Windows.Graphics.SizeInt32) -> Void: ...
|
|
82
|
+
@winrt_mixinmethod
|
|
83
|
+
def ShowOnceWithRequestedStartupState(self: win32more.Microsoft.UI.Windowing.IAppWindow2) -> Void: ...
|
|
84
|
+
@winrt_mixinmethod
|
|
85
|
+
def AssociateWithDispatcherQueue(self: win32more.Microsoft.UI.Windowing.IAppWindow3, dispatcherQueue: win32more.Microsoft.UI.Dispatching.DispatcherQueue) -> Void: ...
|
|
86
|
+
@winrt_mixinmethod
|
|
87
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Windowing.IAppWindow3) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
88
|
+
@winrt_classmethod
|
|
89
|
+
def CreateWithDispatcherQueue(cls: win32more.Microsoft.UI.Windowing.IAppWindowStatics2, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter, ownerWindowId: win32more.Microsoft.UI.WindowId, DispatcherQueue: win32more.Microsoft.UI.Dispatching.DispatcherQueue) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
90
|
+
@winrt_classmethod
|
|
91
|
+
def Create(cls: win32more.Microsoft.UI.Windowing.IAppWindowStatics) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
92
|
+
@winrt_classmethod
|
|
93
|
+
def CreateWithPresenter(cls: win32more.Microsoft.UI.Windowing.IAppWindowStatics, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
94
|
+
@winrt_classmethod
|
|
95
|
+
def CreateWithPresenterAndOwner(cls: win32more.Microsoft.UI.Windowing.IAppWindowStatics, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter, ownerWindowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
96
|
+
@winrt_classmethod
|
|
97
|
+
def GetFromWindowId(cls: win32more.Microsoft.UI.Windowing.IAppWindowStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
98
|
+
ClientSize = property(get_ClientSize, None)
|
|
99
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
100
|
+
Id = property(get_Id, None)
|
|
101
|
+
IsShownInSwitchers = property(get_IsShownInSwitchers, put_IsShownInSwitchers)
|
|
102
|
+
IsVisible = property(get_IsVisible, None)
|
|
103
|
+
OwnerWindowId = property(get_OwnerWindowId, None)
|
|
104
|
+
Position = property(get_Position, None)
|
|
105
|
+
Presenter = property(get_Presenter, None)
|
|
106
|
+
Size = property(get_Size, None)
|
|
107
|
+
Title = property(get_Title, put_Title)
|
|
108
|
+
TitleBar = property(get_TitleBar, None)
|
|
109
|
+
Closing = event()
|
|
110
|
+
Changed = event()
|
|
111
|
+
Destroying = event()
|
|
112
|
+
class AppWindowChangedEventArgs(ComPtr):
|
|
113
|
+
extends: IInspectable
|
|
114
|
+
default_interface: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs
|
|
115
|
+
_classid_ = 'Microsoft.UI.Windowing.AppWindowChangedEventArgs'
|
|
116
|
+
@winrt_mixinmethod
|
|
117
|
+
def get_DidPositionChange(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs) -> Boolean: ...
|
|
118
|
+
@winrt_mixinmethod
|
|
119
|
+
def get_DidPresenterChange(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs) -> Boolean: ...
|
|
120
|
+
@winrt_mixinmethod
|
|
121
|
+
def get_DidSizeChange(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs) -> Boolean: ...
|
|
122
|
+
@winrt_mixinmethod
|
|
123
|
+
def get_DidVisibilityChange(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs) -> Boolean: ...
|
|
124
|
+
@winrt_mixinmethod
|
|
125
|
+
def get_DidZOrderChange(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs2) -> Boolean: ...
|
|
126
|
+
@winrt_mixinmethod
|
|
127
|
+
def get_IsZOrderAtBottom(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs2) -> Boolean: ...
|
|
128
|
+
@winrt_mixinmethod
|
|
129
|
+
def get_IsZOrderAtTop(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs2) -> Boolean: ...
|
|
130
|
+
@winrt_mixinmethod
|
|
131
|
+
def get_ZOrderBelowWindowId(self: win32more.Microsoft.UI.Windowing.IAppWindowChangedEventArgs2) -> win32more.Microsoft.UI.WindowId: ...
|
|
132
|
+
DidPositionChange = property(get_DidPositionChange, None)
|
|
133
|
+
DidPresenterChange = property(get_DidPresenterChange, None)
|
|
134
|
+
DidSizeChange = property(get_DidSizeChange, None)
|
|
135
|
+
DidVisibilityChange = property(get_DidVisibilityChange, None)
|
|
136
|
+
DidZOrderChange = property(get_DidZOrderChange, None)
|
|
137
|
+
IsZOrderAtBottom = property(get_IsZOrderAtBottom, None)
|
|
138
|
+
IsZOrderAtTop = property(get_IsZOrderAtTop, None)
|
|
139
|
+
ZOrderBelowWindowId = property(get_ZOrderBelowWindowId, None)
|
|
140
|
+
class AppWindowClosingEventArgs(ComPtr):
|
|
141
|
+
extends: IInspectable
|
|
142
|
+
default_interface: win32more.Microsoft.UI.Windowing.IAppWindowClosingEventArgs
|
|
143
|
+
_classid_ = 'Microsoft.UI.Windowing.AppWindowClosingEventArgs'
|
|
144
|
+
@winrt_mixinmethod
|
|
145
|
+
def get_Cancel(self: win32more.Microsoft.UI.Windowing.IAppWindowClosingEventArgs) -> Boolean: ...
|
|
146
|
+
@winrt_mixinmethod
|
|
147
|
+
def put_Cancel(self: win32more.Microsoft.UI.Windowing.IAppWindowClosingEventArgs, value: Boolean) -> Void: ...
|
|
148
|
+
Cancel = property(get_Cancel, put_Cancel)
|
|
149
|
+
class AppWindowPresenter(ComPtr):
|
|
150
|
+
extends: IInspectable
|
|
151
|
+
default_interface: win32more.Microsoft.UI.Windowing.IAppWindowPresenter
|
|
152
|
+
_classid_ = 'Microsoft.UI.Windowing.AppWindowPresenter'
|
|
153
|
+
@winrt_mixinmethod
|
|
154
|
+
def get_Kind(self: win32more.Microsoft.UI.Windowing.IAppWindowPresenter) -> win32more.Microsoft.UI.Windowing.AppWindowPresenterKind: ...
|
|
155
|
+
Kind = property(get_Kind, None)
|
|
156
|
+
class AppWindowPresenterKind(Enum, Int32):
|
|
157
|
+
Default = 0
|
|
158
|
+
CompactOverlay = 1
|
|
159
|
+
FullScreen = 2
|
|
160
|
+
Overlapped = 3
|
|
161
|
+
class AppWindowTitleBar(ComPtr):
|
|
162
|
+
extends: IInspectable
|
|
163
|
+
default_interface: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar
|
|
164
|
+
_classid_ = 'Microsoft.UI.Windowing.AppWindowTitleBar'
|
|
165
|
+
@winrt_mixinmethod
|
|
166
|
+
def get_ButtonInactiveForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
167
|
+
@winrt_mixinmethod
|
|
168
|
+
def put_BackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
169
|
+
@winrt_mixinmethod
|
|
170
|
+
def get_ButtonBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
171
|
+
@winrt_mixinmethod
|
|
172
|
+
def put_ButtonBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
173
|
+
@winrt_mixinmethod
|
|
174
|
+
def get_ButtonForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
175
|
+
@winrt_mixinmethod
|
|
176
|
+
def put_ButtonForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
177
|
+
@winrt_mixinmethod
|
|
178
|
+
def get_ButtonHoverBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
179
|
+
@winrt_mixinmethod
|
|
180
|
+
def put_ButtonHoverBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
181
|
+
@winrt_mixinmethod
|
|
182
|
+
def get_ButtonHoverForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
183
|
+
@winrt_mixinmethod
|
|
184
|
+
def put_ButtonHoverForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
185
|
+
@winrt_mixinmethod
|
|
186
|
+
def get_ButtonInactiveBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
187
|
+
@winrt_mixinmethod
|
|
188
|
+
def put_ButtonInactiveBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
189
|
+
@winrt_mixinmethod
|
|
190
|
+
def get_ButtonPressedBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
191
|
+
@winrt_mixinmethod
|
|
192
|
+
def put_ButtonInactiveForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
193
|
+
@winrt_mixinmethod
|
|
194
|
+
def get_BackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
195
|
+
@winrt_mixinmethod
|
|
196
|
+
def put_ButtonPressedBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
197
|
+
@winrt_mixinmethod
|
|
198
|
+
def get_ButtonPressedForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
199
|
+
@winrt_mixinmethod
|
|
200
|
+
def put_ButtonPressedForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
201
|
+
@winrt_mixinmethod
|
|
202
|
+
def get_ExtendsContentIntoTitleBar(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> Boolean: ...
|
|
203
|
+
@winrt_mixinmethod
|
|
204
|
+
def put_ExtendsContentIntoTitleBar(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: Boolean) -> Void: ...
|
|
205
|
+
@winrt_mixinmethod
|
|
206
|
+
def get_ForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
207
|
+
@winrt_mixinmethod
|
|
208
|
+
def put_ForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
209
|
+
@winrt_mixinmethod
|
|
210
|
+
def get_Height(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> Int32: ...
|
|
211
|
+
@winrt_mixinmethod
|
|
212
|
+
def get_IconShowOptions(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Microsoft.UI.Windowing.IconShowOptions: ...
|
|
213
|
+
@winrt_mixinmethod
|
|
214
|
+
def put_IconShowOptions(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Microsoft.UI.Windowing.IconShowOptions) -> Void: ...
|
|
215
|
+
@winrt_mixinmethod
|
|
216
|
+
def get_InactiveBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
217
|
+
@winrt_mixinmethod
|
|
218
|
+
def put_InactiveBackgroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
219
|
+
@winrt_mixinmethod
|
|
220
|
+
def get_InactiveForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
221
|
+
@winrt_mixinmethod
|
|
222
|
+
def put_InactiveForegroundColor(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
223
|
+
@winrt_mixinmethod
|
|
224
|
+
def get_LeftInset(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> Int32: ...
|
|
225
|
+
@winrt_mixinmethod
|
|
226
|
+
def get_RightInset(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> Int32: ...
|
|
227
|
+
@winrt_mixinmethod
|
|
228
|
+
def ResetToDefault(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar) -> Void: ...
|
|
229
|
+
@winrt_mixinmethod
|
|
230
|
+
def SetDragRectangles(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar, value: PassArray[win32more.Windows.Graphics.RectInt32]) -> Void: ...
|
|
231
|
+
@winrt_mixinmethod
|
|
232
|
+
def get_PreferredHeightOption(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar2) -> win32more.Microsoft.UI.Windowing.TitleBarHeightOption: ...
|
|
233
|
+
@winrt_mixinmethod
|
|
234
|
+
def put_PreferredHeightOption(self: win32more.Microsoft.UI.Windowing.IAppWindowTitleBar2, value: win32more.Microsoft.UI.Windowing.TitleBarHeightOption) -> Void: ...
|
|
235
|
+
@winrt_classmethod
|
|
236
|
+
def IsCustomizationSupported(cls: win32more.Microsoft.UI.Windowing.IAppWindowTitleBarStatics) -> Boolean: ...
|
|
237
|
+
BackgroundColor = property(get_BackgroundColor, put_BackgroundColor)
|
|
238
|
+
ButtonBackgroundColor = property(get_ButtonBackgroundColor, put_ButtonBackgroundColor)
|
|
239
|
+
ButtonForegroundColor = property(get_ButtonForegroundColor, put_ButtonForegroundColor)
|
|
240
|
+
ButtonHoverBackgroundColor = property(get_ButtonHoverBackgroundColor, put_ButtonHoverBackgroundColor)
|
|
241
|
+
ButtonHoverForegroundColor = property(get_ButtonHoverForegroundColor, put_ButtonHoverForegroundColor)
|
|
242
|
+
ButtonInactiveBackgroundColor = property(get_ButtonInactiveBackgroundColor, put_ButtonInactiveBackgroundColor)
|
|
243
|
+
ButtonInactiveForegroundColor = property(get_ButtonInactiveForegroundColor, put_ButtonInactiveForegroundColor)
|
|
244
|
+
ButtonPressedBackgroundColor = property(get_ButtonPressedBackgroundColor, put_ButtonPressedBackgroundColor)
|
|
245
|
+
ButtonPressedForegroundColor = property(get_ButtonPressedForegroundColor, put_ButtonPressedForegroundColor)
|
|
246
|
+
ExtendsContentIntoTitleBar = property(get_ExtendsContentIntoTitleBar, put_ExtendsContentIntoTitleBar)
|
|
247
|
+
ForegroundColor = property(get_ForegroundColor, put_ForegroundColor)
|
|
248
|
+
Height = property(get_Height, None)
|
|
249
|
+
IconShowOptions = property(get_IconShowOptions, put_IconShowOptions)
|
|
250
|
+
InactiveBackgroundColor = property(get_InactiveBackgroundColor, put_InactiveBackgroundColor)
|
|
251
|
+
InactiveForegroundColor = property(get_InactiveForegroundColor, put_InactiveForegroundColor)
|
|
252
|
+
LeftInset = property(get_LeftInset, None)
|
|
253
|
+
PreferredHeightOption = property(get_PreferredHeightOption, put_PreferredHeightOption)
|
|
254
|
+
RightInset = property(get_RightInset, None)
|
|
255
|
+
class CompactOverlayPresenter(ComPtr):
|
|
256
|
+
extends: win32more.Microsoft.UI.Windowing.AppWindowPresenter
|
|
257
|
+
default_interface: win32more.Microsoft.UI.Windowing.ICompactOverlayPresenter
|
|
258
|
+
_classid_ = 'Microsoft.UI.Windowing.CompactOverlayPresenter'
|
|
259
|
+
@winrt_mixinmethod
|
|
260
|
+
def put_InitialSize(self: win32more.Microsoft.UI.Windowing.ICompactOverlayPresenter, value: win32more.Microsoft.UI.Windowing.CompactOverlaySize) -> Void: ...
|
|
261
|
+
@winrt_mixinmethod
|
|
262
|
+
def get_InitialSize(self: win32more.Microsoft.UI.Windowing.ICompactOverlayPresenter) -> win32more.Microsoft.UI.Windowing.CompactOverlaySize: ...
|
|
263
|
+
@winrt_classmethod
|
|
264
|
+
def Create(cls: win32more.Microsoft.UI.Windowing.ICompactOverlayPresenterStatics) -> win32more.Microsoft.UI.Windowing.CompactOverlayPresenter: ...
|
|
265
|
+
InitialSize = property(get_InitialSize, put_InitialSize)
|
|
266
|
+
class CompactOverlaySize(Enum, Int32):
|
|
267
|
+
Small = 0
|
|
268
|
+
Medium = 1
|
|
269
|
+
Large = 2
|
|
270
|
+
class _DisplayArea_Meta_(ComPtr.__class__):
|
|
271
|
+
pass
|
|
272
|
+
class DisplayArea(ComPtr, metaclass=_DisplayArea_Meta_):
|
|
273
|
+
extends: IInspectable
|
|
274
|
+
default_interface: win32more.Microsoft.UI.Windowing.IDisplayArea
|
|
275
|
+
_classid_ = 'Microsoft.UI.Windowing.DisplayArea'
|
|
276
|
+
@winrt_mixinmethod
|
|
277
|
+
def get_IsPrimary(self: win32more.Microsoft.UI.Windowing.IDisplayArea) -> Boolean: ...
|
|
278
|
+
@winrt_mixinmethod
|
|
279
|
+
def get_DisplayId(self: win32more.Microsoft.UI.Windowing.IDisplayArea) -> win32more.Microsoft.UI.DisplayId: ...
|
|
280
|
+
@winrt_mixinmethod
|
|
281
|
+
def get_OuterBounds(self: win32more.Microsoft.UI.Windowing.IDisplayArea) -> win32more.Windows.Graphics.RectInt32: ...
|
|
282
|
+
@winrt_mixinmethod
|
|
283
|
+
def get_WorkArea(self: win32more.Microsoft.UI.Windowing.IDisplayArea) -> win32more.Windows.Graphics.RectInt32: ...
|
|
284
|
+
@winrt_classmethod
|
|
285
|
+
def GetFromDisplayId(cls: win32more.Microsoft.UI.Windowing.IDisplayAreaStatics2, displayId: win32more.Microsoft.UI.DisplayId) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
286
|
+
@winrt_classmethod
|
|
287
|
+
def get_Primary(cls: win32more.Microsoft.UI.Windowing.IDisplayAreaStatics) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
288
|
+
@winrt_classmethod
|
|
289
|
+
def CreateWatcher(cls: win32more.Microsoft.UI.Windowing.IDisplayAreaStatics) -> win32more.Microsoft.UI.Windowing.DisplayAreaWatcher: ...
|
|
290
|
+
@winrt_classmethod
|
|
291
|
+
def FindAll(cls: win32more.Microsoft.UI.Windowing.IDisplayAreaStatics) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Windowing.DisplayArea]: ...
|
|
292
|
+
@winrt_classmethod
|
|
293
|
+
def GetFromWindowId(cls: win32more.Microsoft.UI.Windowing.IDisplayAreaStatics, windowId: win32more.Microsoft.UI.WindowId, displayAreaFallback: win32more.Microsoft.UI.Windowing.DisplayAreaFallback) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
294
|
+
@winrt_classmethod
|
|
295
|
+
def GetFromPoint(cls: win32more.Microsoft.UI.Windowing.IDisplayAreaStatics, point: win32more.Windows.Graphics.PointInt32, displayAreaFallback: win32more.Microsoft.UI.Windowing.DisplayAreaFallback) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
296
|
+
@winrt_classmethod
|
|
297
|
+
def GetFromRect(cls: win32more.Microsoft.UI.Windowing.IDisplayAreaStatics, rect: win32more.Windows.Graphics.RectInt32, displayAreaFallback: win32more.Microsoft.UI.Windowing.DisplayAreaFallback) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
298
|
+
DisplayId = property(get_DisplayId, None)
|
|
299
|
+
IsPrimary = property(get_IsPrimary, None)
|
|
300
|
+
OuterBounds = property(get_OuterBounds, None)
|
|
301
|
+
WorkArea = property(get_WorkArea, None)
|
|
302
|
+
_DisplayArea_Meta_.Primary = property(get_Primary, None)
|
|
303
|
+
class DisplayAreaFallback(Enum, Int32):
|
|
304
|
+
None_ = 0
|
|
305
|
+
Primary = 1
|
|
306
|
+
Nearest = 2
|
|
307
|
+
class DisplayAreaWatcher(ComPtr):
|
|
308
|
+
extends: IInspectable
|
|
309
|
+
default_interface: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher
|
|
310
|
+
_classid_ = 'Microsoft.UI.Windowing.DisplayAreaWatcher'
|
|
311
|
+
@winrt_mixinmethod
|
|
312
|
+
def add_Added(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, win32more.Microsoft.UI.Windowing.DisplayArea]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
313
|
+
@winrt_mixinmethod
|
|
314
|
+
def Start(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher) -> Void: ...
|
|
315
|
+
@winrt_mixinmethod
|
|
316
|
+
def Stop(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher) -> Void: ...
|
|
317
|
+
@winrt_mixinmethod
|
|
318
|
+
def get_Status(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher) -> win32more.Microsoft.UI.Windowing.DisplayAreaWatcherStatus: ...
|
|
319
|
+
@winrt_mixinmethod
|
|
320
|
+
def remove_Added(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
321
|
+
@winrt_mixinmethod
|
|
322
|
+
def add_EnumerationCompleted(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
323
|
+
@winrt_mixinmethod
|
|
324
|
+
def remove_EnumerationCompleted(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
325
|
+
@winrt_mixinmethod
|
|
326
|
+
def add_Removed(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, win32more.Microsoft.UI.Windowing.DisplayArea]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
327
|
+
@winrt_mixinmethod
|
|
328
|
+
def remove_Removed(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
329
|
+
@winrt_mixinmethod
|
|
330
|
+
def add_Stopped(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
331
|
+
@winrt_mixinmethod
|
|
332
|
+
def remove_Stopped(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
333
|
+
@winrt_mixinmethod
|
|
334
|
+
def add_Updated(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, win32more.Microsoft.UI.Windowing.DisplayArea]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
335
|
+
@winrt_mixinmethod
|
|
336
|
+
def remove_Updated(self: win32more.Microsoft.UI.Windowing.IDisplayAreaWatcher, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
337
|
+
Status = property(get_Status, None)
|
|
338
|
+
Added = event()
|
|
339
|
+
EnumerationCompleted = event()
|
|
340
|
+
Removed = event()
|
|
341
|
+
Stopped = event()
|
|
342
|
+
Updated = event()
|
|
343
|
+
class DisplayAreaWatcherStatus(Enum, Int32):
|
|
344
|
+
Created = 0
|
|
345
|
+
Started = 1
|
|
346
|
+
EnumerationCompleted = 2
|
|
347
|
+
Stopping = 3
|
|
348
|
+
Stopped = 4
|
|
349
|
+
Aborted = 5
|
|
350
|
+
class FullScreenPresenter(ComPtr):
|
|
351
|
+
extends: win32more.Microsoft.UI.Windowing.AppWindowPresenter
|
|
352
|
+
default_interface: win32more.Microsoft.UI.Windowing.IFullScreenPresenter
|
|
353
|
+
_classid_ = 'Microsoft.UI.Windowing.FullScreenPresenter'
|
|
354
|
+
@winrt_classmethod
|
|
355
|
+
def Create(cls: win32more.Microsoft.UI.Windowing.IFullScreenPresenterStatics) -> win32more.Microsoft.UI.Windowing.FullScreenPresenter: ...
|
|
356
|
+
class IAppWindow(ComPtr):
|
|
357
|
+
extends: IInspectable
|
|
358
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindow'
|
|
359
|
+
_iid_ = Guid('{cfa788b3-643b-5c5e-ad4e-321d48a82acd}')
|
|
360
|
+
@winrt_commethod(6)
|
|
361
|
+
def get_Id(self) -> win32more.Microsoft.UI.WindowId: ...
|
|
362
|
+
@winrt_commethod(7)
|
|
363
|
+
def get_IsShownInSwitchers(self) -> Boolean: ...
|
|
364
|
+
@winrt_commethod(8)
|
|
365
|
+
def put_IsShownInSwitchers(self, value: Boolean) -> Void: ...
|
|
366
|
+
@winrt_commethod(9)
|
|
367
|
+
def get_IsVisible(self) -> Boolean: ...
|
|
368
|
+
@winrt_commethod(10)
|
|
369
|
+
def get_OwnerWindowId(self) -> win32more.Microsoft.UI.WindowId: ...
|
|
370
|
+
@winrt_commethod(11)
|
|
371
|
+
def get_Position(self) -> win32more.Windows.Graphics.PointInt32: ...
|
|
372
|
+
@winrt_commethod(12)
|
|
373
|
+
def get_Presenter(self) -> win32more.Microsoft.UI.Windowing.AppWindowPresenter: ...
|
|
374
|
+
@winrt_commethod(13)
|
|
375
|
+
def get_Size(self) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
376
|
+
@winrt_commethod(14)
|
|
377
|
+
def get_Title(self) -> WinRT_String: ...
|
|
378
|
+
@winrt_commethod(15)
|
|
379
|
+
def put_Title(self, value: WinRT_String) -> Void: ...
|
|
380
|
+
@winrt_commethod(16)
|
|
381
|
+
def get_TitleBar(self) -> win32more.Microsoft.UI.Windowing.AppWindowTitleBar: ...
|
|
382
|
+
@winrt_commethod(17)
|
|
383
|
+
def Destroy(self) -> Void: ...
|
|
384
|
+
@winrt_commethod(18)
|
|
385
|
+
def Hide(self) -> Void: ...
|
|
386
|
+
@winrt_commethod(19)
|
|
387
|
+
def Move(self, position: win32more.Windows.Graphics.PointInt32) -> Void: ...
|
|
388
|
+
@winrt_commethod(20)
|
|
389
|
+
def MoveAndResize(self, rect: win32more.Windows.Graphics.RectInt32) -> Void: ...
|
|
390
|
+
@winrt_commethod(21)
|
|
391
|
+
def MoveAndResizeRelativeToDisplayArea(self, rect: win32more.Windows.Graphics.RectInt32, displayarea: win32more.Microsoft.UI.Windowing.DisplayArea) -> Void: ...
|
|
392
|
+
@winrt_commethod(22)
|
|
393
|
+
def Resize(self, size: win32more.Windows.Graphics.SizeInt32) -> Void: ...
|
|
394
|
+
@winrt_commethod(23)
|
|
395
|
+
def SetIcon(self, iconPath: WinRT_String) -> Void: ...
|
|
396
|
+
@winrt_commethod(24)
|
|
397
|
+
def SetIconWithIconId(self, iconId: win32more.Microsoft.UI.IconId) -> Void: ...
|
|
398
|
+
@winrt_commethod(25)
|
|
399
|
+
def SetPresenter(self, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter) -> Void: ...
|
|
400
|
+
@winrt_commethod(26)
|
|
401
|
+
def SetPresenterByKind(self, appWindowPresenterKind: win32more.Microsoft.UI.Windowing.AppWindowPresenterKind) -> Void: ...
|
|
402
|
+
@winrt_commethod(27)
|
|
403
|
+
def Show(self) -> Void: ...
|
|
404
|
+
@winrt_commethod(28)
|
|
405
|
+
def ShowWithActivation(self, activateWindow: Boolean) -> Void: ...
|
|
406
|
+
@winrt_commethod(29)
|
|
407
|
+
def add_Changed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.AppWindow, win32more.Microsoft.UI.Windowing.AppWindowChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
408
|
+
@winrt_commethod(30)
|
|
409
|
+
def remove_Changed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
410
|
+
@winrt_commethod(31)
|
|
411
|
+
def add_Closing(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.AppWindow, win32more.Microsoft.UI.Windowing.AppWindowClosingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
412
|
+
@winrt_commethod(32)
|
|
413
|
+
def remove_Closing(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
414
|
+
@winrt_commethod(33)
|
|
415
|
+
def add_Destroying(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.AppWindow, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
416
|
+
@winrt_commethod(34)
|
|
417
|
+
def remove_Destroying(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
418
|
+
Id = property(get_Id, None)
|
|
419
|
+
IsShownInSwitchers = property(get_IsShownInSwitchers, put_IsShownInSwitchers)
|
|
420
|
+
IsVisible = property(get_IsVisible, None)
|
|
421
|
+
OwnerWindowId = property(get_OwnerWindowId, None)
|
|
422
|
+
Position = property(get_Position, None)
|
|
423
|
+
Presenter = property(get_Presenter, None)
|
|
424
|
+
Size = property(get_Size, None)
|
|
425
|
+
Title = property(get_Title, put_Title)
|
|
426
|
+
TitleBar = property(get_TitleBar, None)
|
|
427
|
+
Changed = event()
|
|
428
|
+
Closing = event()
|
|
429
|
+
Destroying = event()
|
|
430
|
+
class IAppWindow2(ComPtr):
|
|
431
|
+
extends: IInspectable
|
|
432
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindow2'
|
|
433
|
+
_iid_ = Guid('{6cd41292-794c-5cac-8961-210d012c6ebc}')
|
|
434
|
+
@winrt_commethod(6)
|
|
435
|
+
def get_ClientSize(self) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
436
|
+
@winrt_commethod(7)
|
|
437
|
+
def MoveInZOrderAtBottom(self) -> Void: ...
|
|
438
|
+
@winrt_commethod(8)
|
|
439
|
+
def MoveInZOrderAtTop(self) -> Void: ...
|
|
440
|
+
@winrt_commethod(9)
|
|
441
|
+
def MoveInZOrderBelow(self, windowId: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
442
|
+
@winrt_commethod(10)
|
|
443
|
+
def ResizeClient(self, size: win32more.Windows.Graphics.SizeInt32) -> Void: ...
|
|
444
|
+
@winrt_commethod(11)
|
|
445
|
+
def ShowOnceWithRequestedStartupState(self) -> Void: ...
|
|
446
|
+
ClientSize = property(get_ClientSize, None)
|
|
447
|
+
class IAppWindow3(ComPtr):
|
|
448
|
+
extends: IInspectable
|
|
449
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindow3'
|
|
450
|
+
_iid_ = Guid('{2f260cea-193d-5dd6-a904-d7649a608d2f}')
|
|
451
|
+
@winrt_commethod(6)
|
|
452
|
+
def AssociateWithDispatcherQueue(self, dispatcherQueue: win32more.Microsoft.UI.Dispatching.DispatcherQueue) -> Void: ...
|
|
453
|
+
@winrt_commethod(7)
|
|
454
|
+
def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
455
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
456
|
+
class IAppWindowChangedEventArgs(ComPtr):
|
|
457
|
+
extends: IInspectable
|
|
458
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowChangedEventArgs'
|
|
459
|
+
_iid_ = Guid('{2182bc5d-fdac-5c3e-bf37-7d8d684e9d1d}')
|
|
460
|
+
@winrt_commethod(6)
|
|
461
|
+
def get_DidPositionChange(self) -> Boolean: ...
|
|
462
|
+
@winrt_commethod(7)
|
|
463
|
+
def get_DidPresenterChange(self) -> Boolean: ...
|
|
464
|
+
@winrt_commethod(8)
|
|
465
|
+
def get_DidSizeChange(self) -> Boolean: ...
|
|
466
|
+
@winrt_commethod(9)
|
|
467
|
+
def get_DidVisibilityChange(self) -> Boolean: ...
|
|
468
|
+
DidPositionChange = property(get_DidPositionChange, None)
|
|
469
|
+
DidPresenterChange = property(get_DidPresenterChange, None)
|
|
470
|
+
DidSizeChange = property(get_DidSizeChange, None)
|
|
471
|
+
DidVisibilityChange = property(get_DidVisibilityChange, None)
|
|
472
|
+
class IAppWindowChangedEventArgs2(ComPtr):
|
|
473
|
+
extends: IInspectable
|
|
474
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowChangedEventArgs2'
|
|
475
|
+
_iid_ = Guid('{a773ab4c-a5ec-50e8-98ac-247fe6cd4227}')
|
|
476
|
+
@winrt_commethod(6)
|
|
477
|
+
def get_DidZOrderChange(self) -> Boolean: ...
|
|
478
|
+
@winrt_commethod(7)
|
|
479
|
+
def get_IsZOrderAtBottom(self) -> Boolean: ...
|
|
480
|
+
@winrt_commethod(8)
|
|
481
|
+
def get_IsZOrderAtTop(self) -> Boolean: ...
|
|
482
|
+
@winrt_commethod(9)
|
|
483
|
+
def get_ZOrderBelowWindowId(self) -> win32more.Microsoft.UI.WindowId: ...
|
|
484
|
+
DidZOrderChange = property(get_DidZOrderChange, None)
|
|
485
|
+
IsZOrderAtBottom = property(get_IsZOrderAtBottom, None)
|
|
486
|
+
IsZOrderAtTop = property(get_IsZOrderAtTop, None)
|
|
487
|
+
ZOrderBelowWindowId = property(get_ZOrderBelowWindowId, None)
|
|
488
|
+
class IAppWindowClosingEventArgs(ComPtr):
|
|
489
|
+
extends: IInspectable
|
|
490
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowClosingEventArgs'
|
|
491
|
+
_iid_ = Guid('{0e09d90b-2261-590b-9ad1-8504991d8754}')
|
|
492
|
+
@winrt_commethod(6)
|
|
493
|
+
def get_Cancel(self) -> Boolean: ...
|
|
494
|
+
@winrt_commethod(7)
|
|
495
|
+
def put_Cancel(self, value: Boolean) -> Void: ...
|
|
496
|
+
Cancel = property(get_Cancel, put_Cancel)
|
|
497
|
+
class IAppWindowPresenter(ComPtr):
|
|
498
|
+
extends: IInspectable
|
|
499
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowPresenter'
|
|
500
|
+
_iid_ = Guid('{bc3042c2-c6c6-5632-8989-ff0ec6d3b40d}')
|
|
501
|
+
@winrt_commethod(6)
|
|
502
|
+
def get_Kind(self) -> win32more.Microsoft.UI.Windowing.AppWindowPresenterKind: ...
|
|
503
|
+
Kind = property(get_Kind, None)
|
|
504
|
+
class IAppWindowPresenterFactory(ComPtr):
|
|
505
|
+
extends: IInspectable
|
|
506
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowPresenterFactory'
|
|
507
|
+
_iid_ = Guid('{62082e3c-1368-5238-90d1-e932dc718a82}')
|
|
508
|
+
class IAppWindowStatics(ComPtr):
|
|
509
|
+
extends: IInspectable
|
|
510
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowStatics'
|
|
511
|
+
_iid_ = Guid('{3c315c24-d540-5d72-b518-b226b83627cb}')
|
|
512
|
+
@winrt_commethod(6)
|
|
513
|
+
def Create(self) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
514
|
+
@winrt_commethod(7)
|
|
515
|
+
def CreateWithPresenter(self, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
516
|
+
@winrt_commethod(8)
|
|
517
|
+
def CreateWithPresenterAndOwner(self, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter, ownerWindowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
518
|
+
@winrt_commethod(9)
|
|
519
|
+
def GetFromWindowId(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
520
|
+
class IAppWindowStatics2(ComPtr):
|
|
521
|
+
extends: IInspectable
|
|
522
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowStatics2'
|
|
523
|
+
_iid_ = Guid('{cabc23db-4606-5d6e-89a5-06de1d8bd3e2}')
|
|
524
|
+
@winrt_commethod(6)
|
|
525
|
+
def CreateWithDispatcherQueue(self, appWindowPresenter: win32more.Microsoft.UI.Windowing.AppWindowPresenter, ownerWindowId: win32more.Microsoft.UI.WindowId, DispatcherQueue: win32more.Microsoft.UI.Dispatching.DispatcherQueue) -> win32more.Microsoft.UI.Windowing.AppWindow: ...
|
|
526
|
+
class IAppWindowTitleBar(ComPtr):
|
|
527
|
+
extends: IInspectable
|
|
528
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowTitleBar'
|
|
529
|
+
_iid_ = Guid('{5574efa2-c91c-5700-a363-539c71a7aaf4}')
|
|
530
|
+
@winrt_commethod(6)
|
|
531
|
+
def get_BackgroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
532
|
+
@winrt_commethod(7)
|
|
533
|
+
def put_BackgroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
534
|
+
@winrt_commethod(8)
|
|
535
|
+
def get_ButtonBackgroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
536
|
+
@winrt_commethod(9)
|
|
537
|
+
def put_ButtonBackgroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
538
|
+
@winrt_commethod(10)
|
|
539
|
+
def get_ButtonForegroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
540
|
+
@winrt_commethod(11)
|
|
541
|
+
def put_ButtonForegroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
542
|
+
@winrt_commethod(12)
|
|
543
|
+
def get_ButtonHoverBackgroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
544
|
+
@winrt_commethod(13)
|
|
545
|
+
def put_ButtonHoverBackgroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
546
|
+
@winrt_commethod(14)
|
|
547
|
+
def get_ButtonHoverForegroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
548
|
+
@winrt_commethod(15)
|
|
549
|
+
def put_ButtonHoverForegroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
550
|
+
@winrt_commethod(16)
|
|
551
|
+
def get_ButtonInactiveBackgroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
552
|
+
@winrt_commethod(17)
|
|
553
|
+
def put_ButtonInactiveBackgroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
554
|
+
@winrt_commethod(18)
|
|
555
|
+
def get_ButtonInactiveForegroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
556
|
+
@winrt_commethod(19)
|
|
557
|
+
def put_ButtonInactiveForegroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
558
|
+
@winrt_commethod(20)
|
|
559
|
+
def get_ButtonPressedBackgroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
560
|
+
@winrt_commethod(21)
|
|
561
|
+
def put_ButtonPressedBackgroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
562
|
+
@winrt_commethod(22)
|
|
563
|
+
def get_ButtonPressedForegroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
564
|
+
@winrt_commethod(23)
|
|
565
|
+
def put_ButtonPressedForegroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
566
|
+
@winrt_commethod(24)
|
|
567
|
+
def get_ExtendsContentIntoTitleBar(self) -> Boolean: ...
|
|
568
|
+
@winrt_commethod(25)
|
|
569
|
+
def put_ExtendsContentIntoTitleBar(self, value: Boolean) -> Void: ...
|
|
570
|
+
@winrt_commethod(26)
|
|
571
|
+
def get_ForegroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
572
|
+
@winrt_commethod(27)
|
|
573
|
+
def put_ForegroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
574
|
+
@winrt_commethod(28)
|
|
575
|
+
def get_Height(self) -> Int32: ...
|
|
576
|
+
@winrt_commethod(29)
|
|
577
|
+
def get_IconShowOptions(self) -> win32more.Microsoft.UI.Windowing.IconShowOptions: ...
|
|
578
|
+
@winrt_commethod(30)
|
|
579
|
+
def put_IconShowOptions(self, value: win32more.Microsoft.UI.Windowing.IconShowOptions) -> Void: ...
|
|
580
|
+
@winrt_commethod(31)
|
|
581
|
+
def get_InactiveBackgroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
582
|
+
@winrt_commethod(32)
|
|
583
|
+
def put_InactiveBackgroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
584
|
+
@winrt_commethod(33)
|
|
585
|
+
def get_InactiveForegroundColor(self) -> win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]: ...
|
|
586
|
+
@winrt_commethod(34)
|
|
587
|
+
def put_InactiveForegroundColor(self, value: win32more.Windows.Foundation.IReference[win32more.Windows.UI.Color]) -> Void: ...
|
|
588
|
+
@winrt_commethod(35)
|
|
589
|
+
def get_LeftInset(self) -> Int32: ...
|
|
590
|
+
@winrt_commethod(36)
|
|
591
|
+
def get_RightInset(self) -> Int32: ...
|
|
592
|
+
@winrt_commethod(37)
|
|
593
|
+
def ResetToDefault(self) -> Void: ...
|
|
594
|
+
@winrt_commethod(38)
|
|
595
|
+
def SetDragRectangles(self, value: PassArray[win32more.Windows.Graphics.RectInt32]) -> Void: ...
|
|
596
|
+
BackgroundColor = property(get_BackgroundColor, put_BackgroundColor)
|
|
597
|
+
ButtonBackgroundColor = property(get_ButtonBackgroundColor, put_ButtonBackgroundColor)
|
|
598
|
+
ButtonForegroundColor = property(get_ButtonForegroundColor, put_ButtonForegroundColor)
|
|
599
|
+
ButtonHoverBackgroundColor = property(get_ButtonHoverBackgroundColor, put_ButtonHoverBackgroundColor)
|
|
600
|
+
ButtonHoverForegroundColor = property(get_ButtonHoverForegroundColor, put_ButtonHoverForegroundColor)
|
|
601
|
+
ButtonInactiveBackgroundColor = property(get_ButtonInactiveBackgroundColor, put_ButtonInactiveBackgroundColor)
|
|
602
|
+
ButtonInactiveForegroundColor = property(get_ButtonInactiveForegroundColor, put_ButtonInactiveForegroundColor)
|
|
603
|
+
ButtonPressedBackgroundColor = property(get_ButtonPressedBackgroundColor, put_ButtonPressedBackgroundColor)
|
|
604
|
+
ButtonPressedForegroundColor = property(get_ButtonPressedForegroundColor, put_ButtonPressedForegroundColor)
|
|
605
|
+
ExtendsContentIntoTitleBar = property(get_ExtendsContentIntoTitleBar, put_ExtendsContentIntoTitleBar)
|
|
606
|
+
ForegroundColor = property(get_ForegroundColor, put_ForegroundColor)
|
|
607
|
+
Height = property(get_Height, None)
|
|
608
|
+
IconShowOptions = property(get_IconShowOptions, put_IconShowOptions)
|
|
609
|
+
InactiveBackgroundColor = property(get_InactiveBackgroundColor, put_InactiveBackgroundColor)
|
|
610
|
+
InactiveForegroundColor = property(get_InactiveForegroundColor, put_InactiveForegroundColor)
|
|
611
|
+
LeftInset = property(get_LeftInset, None)
|
|
612
|
+
RightInset = property(get_RightInset, None)
|
|
613
|
+
class IAppWindowTitleBar2(ComPtr):
|
|
614
|
+
extends: IInspectable
|
|
615
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowTitleBar2'
|
|
616
|
+
_iid_ = Guid('{86faed38-748a-5b4b-9ccf-3ba0496c9041}')
|
|
617
|
+
@winrt_commethod(6)
|
|
618
|
+
def get_PreferredHeightOption(self) -> win32more.Microsoft.UI.Windowing.TitleBarHeightOption: ...
|
|
619
|
+
@winrt_commethod(7)
|
|
620
|
+
def put_PreferredHeightOption(self, value: win32more.Microsoft.UI.Windowing.TitleBarHeightOption) -> Void: ...
|
|
621
|
+
PreferredHeightOption = property(get_PreferredHeightOption, put_PreferredHeightOption)
|
|
622
|
+
class IAppWindowTitleBarStatics(ComPtr):
|
|
623
|
+
extends: IInspectable
|
|
624
|
+
_classid_ = 'Microsoft.UI.Windowing.IAppWindowTitleBarStatics'
|
|
625
|
+
_iid_ = Guid('{9e1da52e-8b15-54d6-a886-f7b9f9d930b2}')
|
|
626
|
+
@winrt_commethod(6)
|
|
627
|
+
def IsCustomizationSupported(self) -> Boolean: ...
|
|
628
|
+
class ICompactOverlayPresenter(ComPtr):
|
|
629
|
+
extends: IInspectable
|
|
630
|
+
_classid_ = 'Microsoft.UI.Windowing.ICompactOverlayPresenter'
|
|
631
|
+
_iid_ = Guid('{efeb0812-6fc7-5b7d-bd92-cc8f9a6454c9}')
|
|
632
|
+
@winrt_commethod(6)
|
|
633
|
+
def get_InitialSize(self) -> win32more.Microsoft.UI.Windowing.CompactOverlaySize: ...
|
|
634
|
+
@winrt_commethod(7)
|
|
635
|
+
def put_InitialSize(self, value: win32more.Microsoft.UI.Windowing.CompactOverlaySize) -> Void: ...
|
|
636
|
+
InitialSize = property(get_InitialSize, put_InitialSize)
|
|
637
|
+
class ICompactOverlayPresenterStatics(ComPtr):
|
|
638
|
+
extends: IInspectable
|
|
639
|
+
_classid_ = 'Microsoft.UI.Windowing.ICompactOverlayPresenterStatics'
|
|
640
|
+
_iid_ = Guid('{eab93186-4f6a-52f9-8c03-da57a1522f6e}')
|
|
641
|
+
@winrt_commethod(6)
|
|
642
|
+
def Create(self) -> win32more.Microsoft.UI.Windowing.CompactOverlayPresenter: ...
|
|
643
|
+
class IDisplayArea(ComPtr):
|
|
644
|
+
extends: IInspectable
|
|
645
|
+
_classid_ = 'Microsoft.UI.Windowing.IDisplayArea'
|
|
646
|
+
_iid_ = Guid('{5c7e0537-b621-5579-bcae-a84aa8746167}')
|
|
647
|
+
@winrt_commethod(6)
|
|
648
|
+
def get_DisplayId(self) -> win32more.Microsoft.UI.DisplayId: ...
|
|
649
|
+
@winrt_commethod(7)
|
|
650
|
+
def get_IsPrimary(self) -> Boolean: ...
|
|
651
|
+
@winrt_commethod(8)
|
|
652
|
+
def get_OuterBounds(self) -> win32more.Windows.Graphics.RectInt32: ...
|
|
653
|
+
@winrt_commethod(9)
|
|
654
|
+
def get_WorkArea(self) -> win32more.Windows.Graphics.RectInt32: ...
|
|
655
|
+
DisplayId = property(get_DisplayId, None)
|
|
656
|
+
IsPrimary = property(get_IsPrimary, None)
|
|
657
|
+
OuterBounds = property(get_OuterBounds, None)
|
|
658
|
+
WorkArea = property(get_WorkArea, None)
|
|
659
|
+
class IDisplayAreaStatics(ComPtr):
|
|
660
|
+
extends: IInspectable
|
|
661
|
+
_classid_ = 'Microsoft.UI.Windowing.IDisplayAreaStatics'
|
|
662
|
+
_iid_ = Guid('{02ab4926-211e-5d49-8e4b-2af193daed09}')
|
|
663
|
+
@winrt_commethod(6)
|
|
664
|
+
def get_Primary(self) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
665
|
+
@winrt_commethod(7)
|
|
666
|
+
def CreateWatcher(self) -> win32more.Microsoft.UI.Windowing.DisplayAreaWatcher: ...
|
|
667
|
+
@winrt_commethod(8)
|
|
668
|
+
def FindAll(self) -> win32more.Windows.Foundation.Collections.IVectorView[win32more.Microsoft.UI.Windowing.DisplayArea]: ...
|
|
669
|
+
@winrt_commethod(9)
|
|
670
|
+
def GetFromWindowId(self, windowId: win32more.Microsoft.UI.WindowId, displayAreaFallback: win32more.Microsoft.UI.Windowing.DisplayAreaFallback) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
671
|
+
@winrt_commethod(10)
|
|
672
|
+
def GetFromPoint(self, point: win32more.Windows.Graphics.PointInt32, displayAreaFallback: win32more.Microsoft.UI.Windowing.DisplayAreaFallback) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
673
|
+
@winrt_commethod(11)
|
|
674
|
+
def GetFromRect(self, rect: win32more.Windows.Graphics.RectInt32, displayAreaFallback: win32more.Microsoft.UI.Windowing.DisplayAreaFallback) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
675
|
+
Primary = property(get_Primary, None)
|
|
676
|
+
class IDisplayAreaStatics2(ComPtr):
|
|
677
|
+
extends: IInspectable
|
|
678
|
+
_classid_ = 'Microsoft.UI.Windowing.IDisplayAreaStatics2'
|
|
679
|
+
_iid_ = Guid('{7207ad4b-890d-5dd7-bc18-78ffd9544d8f}')
|
|
680
|
+
@winrt_commethod(6)
|
|
681
|
+
def GetFromDisplayId(self, displayId: win32more.Microsoft.UI.DisplayId) -> win32more.Microsoft.UI.Windowing.DisplayArea: ...
|
|
682
|
+
class IDisplayAreaWatcher(ComPtr):
|
|
683
|
+
extends: IInspectable
|
|
684
|
+
_classid_ = 'Microsoft.UI.Windowing.IDisplayAreaWatcher'
|
|
685
|
+
_iid_ = Guid('{83f6562f-d3a0-548b-8e4f-a99be3d95c9c}')
|
|
686
|
+
@winrt_commethod(6)
|
|
687
|
+
def get_Status(self) -> win32more.Microsoft.UI.Windowing.DisplayAreaWatcherStatus: ...
|
|
688
|
+
@winrt_commethod(7)
|
|
689
|
+
def Start(self) -> Void: ...
|
|
690
|
+
@winrt_commethod(8)
|
|
691
|
+
def Stop(self) -> Void: ...
|
|
692
|
+
@winrt_commethod(9)
|
|
693
|
+
def add_Added(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, win32more.Microsoft.UI.Windowing.DisplayArea]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
694
|
+
@winrt_commethod(10)
|
|
695
|
+
def remove_Added(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
696
|
+
@winrt_commethod(11)
|
|
697
|
+
def add_EnumerationCompleted(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
698
|
+
@winrt_commethod(12)
|
|
699
|
+
def remove_EnumerationCompleted(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
700
|
+
@winrt_commethod(13)
|
|
701
|
+
def add_Removed(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, win32more.Microsoft.UI.Windowing.DisplayArea]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
702
|
+
@winrt_commethod(14)
|
|
703
|
+
def remove_Removed(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
704
|
+
@winrt_commethod(15)
|
|
705
|
+
def add_Stopped(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, IInspectable]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
706
|
+
@winrt_commethod(16)
|
|
707
|
+
def remove_Stopped(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
708
|
+
@winrt_commethod(17)
|
|
709
|
+
def add_Updated(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Windowing.DisplayAreaWatcher, win32more.Microsoft.UI.Windowing.DisplayArea]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
710
|
+
@winrt_commethod(18)
|
|
711
|
+
def remove_Updated(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
712
|
+
Status = property(get_Status, None)
|
|
713
|
+
Added = event()
|
|
714
|
+
EnumerationCompleted = event()
|
|
715
|
+
Removed = event()
|
|
716
|
+
Stopped = event()
|
|
717
|
+
Updated = event()
|
|
718
|
+
class IFullScreenPresenter(ComPtr):
|
|
719
|
+
extends: IInspectable
|
|
720
|
+
_classid_ = 'Microsoft.UI.Windowing.IFullScreenPresenter'
|
|
721
|
+
_iid_ = Guid('{fa9141fd-b8dd-5da1-8b2b-7cdadb76f593}')
|
|
722
|
+
class IFullScreenPresenterStatics(ComPtr):
|
|
723
|
+
extends: IInspectable
|
|
724
|
+
_classid_ = 'Microsoft.UI.Windowing.IFullScreenPresenterStatics'
|
|
725
|
+
_iid_ = Guid('{2ec0d2c1-e086-55bb-a3b2-44942e231c67}')
|
|
726
|
+
@winrt_commethod(6)
|
|
727
|
+
def Create(self) -> win32more.Microsoft.UI.Windowing.FullScreenPresenter: ...
|
|
728
|
+
class IOverlappedPresenter(ComPtr):
|
|
729
|
+
extends: IInspectable
|
|
730
|
+
_classid_ = 'Microsoft.UI.Windowing.IOverlappedPresenter'
|
|
731
|
+
_iid_ = Guid('{21693970-4f4c-5172-9e9d-682a2d174884}')
|
|
732
|
+
@winrt_commethod(6)
|
|
733
|
+
def get_HasBorder(self) -> Boolean: ...
|
|
734
|
+
@winrt_commethod(7)
|
|
735
|
+
def get_HasTitleBar(self) -> Boolean: ...
|
|
736
|
+
@winrt_commethod(8)
|
|
737
|
+
def get_IsAlwaysOnTop(self) -> Boolean: ...
|
|
738
|
+
@winrt_commethod(9)
|
|
739
|
+
def put_IsAlwaysOnTop(self, value: Boolean) -> Void: ...
|
|
740
|
+
@winrt_commethod(10)
|
|
741
|
+
def get_IsMaximizable(self) -> Boolean: ...
|
|
742
|
+
@winrt_commethod(11)
|
|
743
|
+
def put_IsMaximizable(self, value: Boolean) -> Void: ...
|
|
744
|
+
@winrt_commethod(12)
|
|
745
|
+
def get_IsMinimizable(self) -> Boolean: ...
|
|
746
|
+
@winrt_commethod(13)
|
|
747
|
+
def put_IsMinimizable(self, value: Boolean) -> Void: ...
|
|
748
|
+
@winrt_commethod(14)
|
|
749
|
+
def get_IsModal(self) -> Boolean: ...
|
|
750
|
+
@winrt_commethod(15)
|
|
751
|
+
def put_IsModal(self, value: Boolean) -> Void: ...
|
|
752
|
+
@winrt_commethod(16)
|
|
753
|
+
def get_IsResizable(self) -> Boolean: ...
|
|
754
|
+
@winrt_commethod(17)
|
|
755
|
+
def put_IsResizable(self, value: Boolean) -> Void: ...
|
|
756
|
+
@winrt_commethod(18)
|
|
757
|
+
def get_State(self) -> win32more.Microsoft.UI.Windowing.OverlappedPresenterState: ...
|
|
758
|
+
@winrt_commethod(19)
|
|
759
|
+
def Maximize(self) -> Void: ...
|
|
760
|
+
@winrt_commethod(20)
|
|
761
|
+
def Minimize(self) -> Void: ...
|
|
762
|
+
@winrt_commethod(21)
|
|
763
|
+
def Restore(self) -> Void: ...
|
|
764
|
+
@winrt_commethod(22)
|
|
765
|
+
def SetBorderAndTitleBar(self, hasBorder: Boolean, hasTitleBar: Boolean) -> Void: ...
|
|
766
|
+
HasBorder = property(get_HasBorder, None)
|
|
767
|
+
HasTitleBar = property(get_HasTitleBar, None)
|
|
768
|
+
IsAlwaysOnTop = property(get_IsAlwaysOnTop, put_IsAlwaysOnTop)
|
|
769
|
+
IsMaximizable = property(get_IsMaximizable, put_IsMaximizable)
|
|
770
|
+
IsMinimizable = property(get_IsMinimizable, put_IsMinimizable)
|
|
771
|
+
IsModal = property(get_IsModal, put_IsModal)
|
|
772
|
+
IsResizable = property(get_IsResizable, put_IsResizable)
|
|
773
|
+
State = property(get_State, None)
|
|
774
|
+
class IOverlappedPresenter2(ComPtr):
|
|
775
|
+
extends: IInspectable
|
|
776
|
+
_classid_ = 'Microsoft.UI.Windowing.IOverlappedPresenter2'
|
|
777
|
+
_iid_ = Guid('{5c6ccd93-4244-5cd2-b355-ed5ea34df730}')
|
|
778
|
+
@winrt_commethod(6)
|
|
779
|
+
def MinimizeWithActivation(self, activateWindow: Boolean) -> Void: ...
|
|
780
|
+
@winrt_commethod(7)
|
|
781
|
+
def RestoreWithActivation(self, activateWindow: Boolean) -> Void: ...
|
|
782
|
+
class IOverlappedPresenterStatics(ComPtr):
|
|
783
|
+
extends: IInspectable
|
|
784
|
+
_classid_ = 'Microsoft.UI.Windowing.IOverlappedPresenterStatics'
|
|
785
|
+
_iid_ = Guid('{997225e4-7b00-5aee-a4be-d4068d1999e2}')
|
|
786
|
+
@winrt_commethod(6)
|
|
787
|
+
def Create(self) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
788
|
+
@winrt_commethod(7)
|
|
789
|
+
def CreateForContextMenu(self) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
790
|
+
@winrt_commethod(8)
|
|
791
|
+
def CreateForDialog(self) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
792
|
+
@winrt_commethod(9)
|
|
793
|
+
def CreateForToolWindow(self) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
794
|
+
class IOverlappedPresenterStatics2(ComPtr):
|
|
795
|
+
extends: IInspectable
|
|
796
|
+
_classid_ = 'Microsoft.UI.Windowing.IOverlappedPresenterStatics2'
|
|
797
|
+
_iid_ = Guid('{ed5c4f92-32f4-5d15-80d0-b2a5efa04d39}')
|
|
798
|
+
@winrt_commethod(6)
|
|
799
|
+
def get_RequestedStartupState(self) -> win32more.Microsoft.UI.Windowing.OverlappedPresenterState: ...
|
|
800
|
+
RequestedStartupState = property(get_RequestedStartupState, None)
|
|
801
|
+
class IconShowOptions(Enum, Int32):
|
|
802
|
+
ShowIconAndSystemMenu = 0
|
|
803
|
+
HideIconAndSystemMenu = 1
|
|
804
|
+
class _OverlappedPresenter_Meta_(ComPtr.__class__):
|
|
805
|
+
pass
|
|
806
|
+
class OverlappedPresenter(ComPtr, metaclass=_OverlappedPresenter_Meta_):
|
|
807
|
+
extends: win32more.Microsoft.UI.Windowing.AppWindowPresenter
|
|
808
|
+
default_interface: win32more.Microsoft.UI.Windowing.IOverlappedPresenter
|
|
809
|
+
_classid_ = 'Microsoft.UI.Windowing.OverlappedPresenter'
|
|
810
|
+
@winrt_mixinmethod
|
|
811
|
+
def Restore(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Void: ...
|
|
812
|
+
@winrt_mixinmethod
|
|
813
|
+
def get_HasTitleBar(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Boolean: ...
|
|
814
|
+
@winrt_mixinmethod
|
|
815
|
+
def get_IsAlwaysOnTop(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Boolean: ...
|
|
816
|
+
@winrt_mixinmethod
|
|
817
|
+
def put_IsAlwaysOnTop(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter, value: Boolean) -> Void: ...
|
|
818
|
+
@winrt_mixinmethod
|
|
819
|
+
def get_IsMaximizable(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Boolean: ...
|
|
820
|
+
@winrt_mixinmethod
|
|
821
|
+
def put_IsMaximizable(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter, value: Boolean) -> Void: ...
|
|
822
|
+
@winrt_mixinmethod
|
|
823
|
+
def get_IsMinimizable(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Boolean: ...
|
|
824
|
+
@winrt_mixinmethod
|
|
825
|
+
def put_IsMinimizable(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter, value: Boolean) -> Void: ...
|
|
826
|
+
@winrt_mixinmethod
|
|
827
|
+
def get_IsModal(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Boolean: ...
|
|
828
|
+
@winrt_mixinmethod
|
|
829
|
+
def put_IsModal(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter, value: Boolean) -> Void: ...
|
|
830
|
+
@winrt_mixinmethod
|
|
831
|
+
def get_IsResizable(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Boolean: ...
|
|
832
|
+
@winrt_mixinmethod
|
|
833
|
+
def put_IsResizable(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter, value: Boolean) -> Void: ...
|
|
834
|
+
@winrt_mixinmethod
|
|
835
|
+
def get_State(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> win32more.Microsoft.UI.Windowing.OverlappedPresenterState: ...
|
|
836
|
+
@winrt_mixinmethod
|
|
837
|
+
def Maximize(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Void: ...
|
|
838
|
+
@winrt_mixinmethod
|
|
839
|
+
def Minimize(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Void: ...
|
|
840
|
+
@winrt_mixinmethod
|
|
841
|
+
def get_HasBorder(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter) -> Boolean: ...
|
|
842
|
+
@winrt_mixinmethod
|
|
843
|
+
def SetBorderAndTitleBar(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter, hasBorder: Boolean, hasTitleBar: Boolean) -> Void: ...
|
|
844
|
+
@winrt_mixinmethod
|
|
845
|
+
def MinimizeWithActivation(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter2, activateWindow: Boolean) -> Void: ...
|
|
846
|
+
@winrt_mixinmethod
|
|
847
|
+
def RestoreWithActivation(self: win32more.Microsoft.UI.Windowing.IOverlappedPresenter2, activateWindow: Boolean) -> Void: ...
|
|
848
|
+
@winrt_classmethod
|
|
849
|
+
def get_RequestedStartupState(cls: win32more.Microsoft.UI.Windowing.IOverlappedPresenterStatics2) -> win32more.Microsoft.UI.Windowing.OverlappedPresenterState: ...
|
|
850
|
+
@winrt_classmethod
|
|
851
|
+
def Create(cls: win32more.Microsoft.UI.Windowing.IOverlappedPresenterStatics) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
852
|
+
@winrt_classmethod
|
|
853
|
+
def CreateForContextMenu(cls: win32more.Microsoft.UI.Windowing.IOverlappedPresenterStatics) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
854
|
+
@winrt_classmethod
|
|
855
|
+
def CreateForDialog(cls: win32more.Microsoft.UI.Windowing.IOverlappedPresenterStatics) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
856
|
+
@winrt_classmethod
|
|
857
|
+
def CreateForToolWindow(cls: win32more.Microsoft.UI.Windowing.IOverlappedPresenterStatics) -> win32more.Microsoft.UI.Windowing.OverlappedPresenter: ...
|
|
858
|
+
HasBorder = property(get_HasBorder, None)
|
|
859
|
+
HasTitleBar = property(get_HasTitleBar, None)
|
|
860
|
+
IsAlwaysOnTop = property(get_IsAlwaysOnTop, put_IsAlwaysOnTop)
|
|
861
|
+
IsMaximizable = property(get_IsMaximizable, put_IsMaximizable)
|
|
862
|
+
IsMinimizable = property(get_IsMinimizable, put_IsMinimizable)
|
|
863
|
+
IsModal = property(get_IsModal, put_IsModal)
|
|
864
|
+
IsResizable = property(get_IsResizable, put_IsResizable)
|
|
865
|
+
State = property(get_State, None)
|
|
866
|
+
_OverlappedPresenter_Meta_.RequestedStartupState = property(get_RequestedStartupState, None)
|
|
867
|
+
class OverlappedPresenterState(Enum, Int32):
|
|
868
|
+
Maximized = 0
|
|
869
|
+
Minimized = 1
|
|
870
|
+
Restored = 2
|
|
871
|
+
class TitleBarHeightOption(Enum, Int32):
|
|
872
|
+
Standard = 0
|
|
873
|
+
Tall = 1
|
|
874
|
+
Collapsed = 2
|
|
875
|
+
|
|
876
|
+
|
|
877
|
+
make_ready(__name__)
|