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,918 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more.winrt.prelude import *
|
|
3
|
+
import win32more.Microsoft.UI
|
|
4
|
+
import win32more.Microsoft.UI.Composition
|
|
5
|
+
import win32more.Microsoft.UI.Content
|
|
6
|
+
import win32more.Microsoft.UI.Dispatching
|
|
7
|
+
import win32more.Windows.Foundation
|
|
8
|
+
import win32more.Windows.Foundation.Collections
|
|
9
|
+
import win32more.Windows.Foundation.Numerics
|
|
10
|
+
import win32more.Windows.Graphics
|
|
11
|
+
import win32more.Windows.UI.Composition
|
|
12
|
+
class ContentCoordinateConverter(ComPtr):
|
|
13
|
+
extends: IInspectable
|
|
14
|
+
default_interface: win32more.Microsoft.UI.Content.IContentCoordinateConverter
|
|
15
|
+
_classid_ = 'Microsoft.UI.Content.ContentCoordinateConverter'
|
|
16
|
+
@winrt_mixinmethod
|
|
17
|
+
def ConvertScreenToLocalWithPoint(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, screenPoint: win32more.Windows.Graphics.PointInt32) -> win32more.Windows.Foundation.Point: ...
|
|
18
|
+
@winrt_mixinmethod
|
|
19
|
+
def ConvertLocalToScreenWithPoints(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localPoints: PassArray[win32more.Windows.Foundation.Point]) -> ReceiveArray[win32more.Windows.Graphics.PointInt32]: ...
|
|
20
|
+
@winrt_mixinmethod
|
|
21
|
+
def ConvertLocalToScreenWithPointsAndRoundingMode(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localPoints: PassArray[win32more.Windows.Foundation.Point], roundingMode: win32more.Microsoft.UI.Content.ContentCoordinateRoundingMode) -> ReceiveArray[win32more.Windows.Graphics.PointInt32]: ...
|
|
22
|
+
@winrt_mixinmethod
|
|
23
|
+
def ConvertLocalToScreenWithRect(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localRect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Graphics.RectInt32: ...
|
|
24
|
+
@winrt_mixinmethod
|
|
25
|
+
def ConvertLocalToScreenWithPoint(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, localPoint: win32more.Windows.Foundation.Point) -> win32more.Windows.Graphics.PointInt32: ...
|
|
26
|
+
@winrt_mixinmethod
|
|
27
|
+
def ConvertScreenToLocalWithPoints(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, screenPoints: PassArray[win32more.Windows.Graphics.PointInt32]) -> ReceiveArray[win32more.Windows.Foundation.Point]: ...
|
|
28
|
+
@winrt_mixinmethod
|
|
29
|
+
def ConvertScreenToLocalWithRect(self: win32more.Microsoft.UI.Content.IContentCoordinateConverter, screenRect: win32more.Windows.Graphics.RectInt32) -> win32more.Windows.Foundation.Rect: ...
|
|
30
|
+
@winrt_classmethod
|
|
31
|
+
def CreateForWindowId(cls: win32more.Microsoft.UI.Content.IContentCoordinateConverterStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
32
|
+
class ContentCoordinateRoundingMode(Enum, Int32):
|
|
33
|
+
Auto = 0
|
|
34
|
+
Floor = 1
|
|
35
|
+
Round = 2
|
|
36
|
+
Ceiling = 3
|
|
37
|
+
class ContentDeferral(ComPtr):
|
|
38
|
+
extends: IInspectable
|
|
39
|
+
default_interface: win32more.Microsoft.UI.Content.IContentDeferral
|
|
40
|
+
_classid_ = 'Microsoft.UI.Content.ContentDeferral'
|
|
41
|
+
@winrt_mixinmethod
|
|
42
|
+
def Complete(self: win32more.Microsoft.UI.Content.IContentDeferral) -> Void: ...
|
|
43
|
+
class ContentEnvironmentSettingChangedEventArgs(ComPtr):
|
|
44
|
+
extends: IInspectable
|
|
45
|
+
default_interface: win32more.Microsoft.UI.Content.IContentEnvironmentSettingChangedEventArgs
|
|
46
|
+
_classid_ = 'Microsoft.UI.Content.ContentEnvironmentSettingChangedEventArgs'
|
|
47
|
+
@winrt_mixinmethod
|
|
48
|
+
def get_SettingName(self: win32more.Microsoft.UI.Content.IContentEnvironmentSettingChangedEventArgs) -> WinRT_String: ...
|
|
49
|
+
SettingName = property(get_SettingName, None)
|
|
50
|
+
class ContentEnvironmentStateChangedEventArgs(ComPtr):
|
|
51
|
+
extends: IInspectable
|
|
52
|
+
default_interface: win32more.Microsoft.UI.Content.IContentEnvironmentStateChangedEventArgs
|
|
53
|
+
_classid_ = 'Microsoft.UI.Content.ContentEnvironmentStateChangedEventArgs'
|
|
54
|
+
@winrt_mixinmethod
|
|
55
|
+
def get_DidAppWindowIdChange(self: win32more.Microsoft.UI.Content.IContentEnvironmentStateChangedEventArgs) -> Boolean: ...
|
|
56
|
+
@winrt_mixinmethod
|
|
57
|
+
def get_DidDisplayIdChange(self: win32more.Microsoft.UI.Content.IContentEnvironmentStateChangedEventArgs) -> Boolean: ...
|
|
58
|
+
DidAppWindowIdChange = property(get_DidAppWindowIdChange, None)
|
|
59
|
+
DidDisplayIdChange = property(get_DidDisplayIdChange, None)
|
|
60
|
+
class ContentIsland(ComPtr):
|
|
61
|
+
extends: IInspectable
|
|
62
|
+
implements: Tuple[ContextManagerProtocol]
|
|
63
|
+
default_interface: win32more.Microsoft.UI.Content.IContentIsland
|
|
64
|
+
_classid_ = 'Microsoft.UI.Content.ContentIsland'
|
|
65
|
+
@winrt_mixinmethod
|
|
66
|
+
def put_IsIslandEnabled(self: win32more.Microsoft.UI.Content.IContentIsland, value: Boolean) -> Void: ...
|
|
67
|
+
@winrt_mixinmethod
|
|
68
|
+
def put_AppData(self: win32more.Microsoft.UI.Content.IContentIsland, value: IInspectable) -> Void: ...
|
|
69
|
+
@winrt_mixinmethod
|
|
70
|
+
def get_CoordinateConverter(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
71
|
+
@winrt_mixinmethod
|
|
72
|
+
def get_CustomProperties(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Windows.Foundation.Collections.IPropertySet: ...
|
|
73
|
+
@winrt_mixinmethod
|
|
74
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
75
|
+
@winrt_mixinmethod
|
|
76
|
+
def get_Environment(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Microsoft.UI.Content.ContentIslandEnvironment: ...
|
|
77
|
+
@winrt_mixinmethod
|
|
78
|
+
def get_Id(self: win32more.Microsoft.UI.Content.IContentIsland) -> UInt64: ...
|
|
79
|
+
@winrt_mixinmethod
|
|
80
|
+
def get_IsConnected(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
81
|
+
@winrt_mixinmethod
|
|
82
|
+
def get_IsHitTestVisibleWhenTransparent(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
83
|
+
@winrt_mixinmethod
|
|
84
|
+
def put_IsHitTestVisibleWhenTransparent(self: win32more.Microsoft.UI.Content.IContentIsland, value: Boolean) -> Void: ...
|
|
85
|
+
@winrt_mixinmethod
|
|
86
|
+
def get_IsIslandEnabled(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
87
|
+
@winrt_mixinmethod
|
|
88
|
+
def get_AppData(self: win32more.Microsoft.UI.Content.IContentIsland) -> IInspectable: ...
|
|
89
|
+
@winrt_mixinmethod
|
|
90
|
+
def get_IsIslandVisible(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
91
|
+
@winrt_mixinmethod
|
|
92
|
+
def put_IsIslandVisible(self: win32more.Microsoft.UI.Content.IContentIsland, value: Boolean) -> Void: ...
|
|
93
|
+
@winrt_mixinmethod
|
|
94
|
+
def get_IsSiteEnabled(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
95
|
+
@winrt_mixinmethod
|
|
96
|
+
def get_IsSiteVisible(self: win32more.Microsoft.UI.Content.IContentIsland) -> Boolean: ...
|
|
97
|
+
@winrt_mixinmethod
|
|
98
|
+
def get_LayoutDirection(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Microsoft.UI.Content.ContentLayoutDirection: ...
|
|
99
|
+
@winrt_mixinmethod
|
|
100
|
+
def get_RasterizationScale(self: win32more.Microsoft.UI.Content.IContentIsland) -> Single: ...
|
|
101
|
+
@winrt_mixinmethod
|
|
102
|
+
def GetAutomationHostProvider(self: win32more.Microsoft.UI.Content.IContentIsland) -> IInspectable: ...
|
|
103
|
+
@winrt_mixinmethod
|
|
104
|
+
def GetStateChangeDeferral(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Microsoft.UI.Content.ContentDeferral: ...
|
|
105
|
+
@winrt_mixinmethod
|
|
106
|
+
def RequestSize(self: win32more.Microsoft.UI.Content.IContentIsland, size: win32more.Windows.Foundation.Numerics.Vector2) -> Void: ...
|
|
107
|
+
@winrt_mixinmethod
|
|
108
|
+
def add_AutomationProviderRequested(self: win32more.Microsoft.UI.Content.IContentIsland, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIsland, win32more.Microsoft.UI.Content.ContentIslandAutomationProviderRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
109
|
+
@winrt_mixinmethod
|
|
110
|
+
def remove_AutomationProviderRequested(self: win32more.Microsoft.UI.Content.IContentIsland, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
111
|
+
@winrt_mixinmethod
|
|
112
|
+
def add_StateChanged(self: win32more.Microsoft.UI.Content.IContentIsland, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIsland, win32more.Microsoft.UI.Content.ContentIslandStateChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
113
|
+
@winrt_mixinmethod
|
|
114
|
+
def remove_StateChanged(self: win32more.Microsoft.UI.Content.IContentIsland, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
115
|
+
@winrt_mixinmethod
|
|
116
|
+
def get_ActualSize(self: win32more.Microsoft.UI.Content.IContentIsland) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
117
|
+
@winrt_mixinmethod
|
|
118
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
119
|
+
@winrt_mixinmethod
|
|
120
|
+
def get_IsClosed(self: win32more.Microsoft.UI.IClosableNotifier) -> Boolean: ...
|
|
121
|
+
@winrt_mixinmethod
|
|
122
|
+
def add_Closed(self: win32more.Microsoft.UI.IClosableNotifier, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
123
|
+
@winrt_mixinmethod
|
|
124
|
+
def remove_Closed(self: win32more.Microsoft.UI.IClosableNotifier, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
125
|
+
@winrt_mixinmethod
|
|
126
|
+
def add_FrameworkClosed(self: win32more.Microsoft.UI.IClosableNotifier, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
127
|
+
@winrt_mixinmethod
|
|
128
|
+
def remove_FrameworkClosed(self: win32more.Microsoft.UI.IClosableNotifier, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
129
|
+
@winrt_mixinmethod
|
|
130
|
+
def get_SystemBackdrop(self: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop) -> win32more.Windows.UI.Composition.CompositionBrush: ...
|
|
131
|
+
@winrt_mixinmethod
|
|
132
|
+
def put_SystemBackdrop(self: win32more.Microsoft.UI.Composition.ICompositionSupportsSystemBackdrop, value: win32more.Windows.UI.Composition.CompositionBrush) -> Void: ...
|
|
133
|
+
@winrt_classmethod
|
|
134
|
+
def Create(cls: win32more.Microsoft.UI.Content.IContentIslandStatics, Root: win32more.Microsoft.UI.Composition.Visual) -> win32more.Microsoft.UI.Content.ContentIsland: ...
|
|
135
|
+
@winrt_classmethod
|
|
136
|
+
def FindAllForCompositor(cls: win32more.Microsoft.UI.Content.IContentIslandStatics, compositor: win32more.Microsoft.UI.Composition.Compositor) -> ReceiveArray[win32more.Microsoft.UI.Content.ContentIsland]: ...
|
|
137
|
+
@winrt_classmethod
|
|
138
|
+
def FindAllForCurrentThread(cls: win32more.Microsoft.UI.Content.IContentIslandStatics) -> ReceiveArray[win32more.Microsoft.UI.Content.ContentIsland]: ...
|
|
139
|
+
@winrt_classmethod
|
|
140
|
+
def GetByVisual(cls: win32more.Microsoft.UI.Content.IContentIslandStatics, child: win32more.Microsoft.UI.Composition.Visual) -> win32more.Microsoft.UI.Content.ContentIsland: ...
|
|
141
|
+
@winrt_classmethod
|
|
142
|
+
def GetFromId(cls: win32more.Microsoft.UI.Content.IContentIslandStatics, id: UInt64) -> win32more.Microsoft.UI.Content.ContentIsland: ...
|
|
143
|
+
ActualSize = property(get_ActualSize, None)
|
|
144
|
+
AppData = property(get_AppData, put_AppData)
|
|
145
|
+
CoordinateConverter = property(get_CoordinateConverter, None)
|
|
146
|
+
CustomProperties = property(get_CustomProperties, None)
|
|
147
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
148
|
+
Environment = property(get_Environment, None)
|
|
149
|
+
Id = property(get_Id, None)
|
|
150
|
+
IsClosed = property(get_IsClosed, None)
|
|
151
|
+
IsConnected = property(get_IsConnected, None)
|
|
152
|
+
IsHitTestVisibleWhenTransparent = property(get_IsHitTestVisibleWhenTransparent, put_IsHitTestVisibleWhenTransparent)
|
|
153
|
+
IsIslandEnabled = property(get_IsIslandEnabled, put_IsIslandEnabled)
|
|
154
|
+
IsIslandVisible = property(get_IsIslandVisible, put_IsIslandVisible)
|
|
155
|
+
IsSiteEnabled = property(get_IsSiteEnabled, None)
|
|
156
|
+
IsSiteVisible = property(get_IsSiteVisible, None)
|
|
157
|
+
LayoutDirection = property(get_LayoutDirection, None)
|
|
158
|
+
RasterizationScale = property(get_RasterizationScale, None)
|
|
159
|
+
SystemBackdrop = property(get_SystemBackdrop, put_SystemBackdrop)
|
|
160
|
+
AutomationProviderRequested = event()
|
|
161
|
+
StateChanged = event()
|
|
162
|
+
Closed = event()
|
|
163
|
+
FrameworkClosed = event()
|
|
164
|
+
class ContentIslandAutomationProviderRequestedEventArgs(ComPtr):
|
|
165
|
+
extends: IInspectable
|
|
166
|
+
default_interface: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs
|
|
167
|
+
_classid_ = 'Microsoft.UI.Content.ContentIslandAutomationProviderRequestedEventArgs'
|
|
168
|
+
@winrt_mixinmethod
|
|
169
|
+
def put_AutomationProvider(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs, value: IInspectable) -> Void: ...
|
|
170
|
+
@winrt_mixinmethod
|
|
171
|
+
def get_AutomationProvider(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs) -> IInspectable: ...
|
|
172
|
+
@winrt_mixinmethod
|
|
173
|
+
def get_Handled(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs) -> Boolean: ...
|
|
174
|
+
@winrt_mixinmethod
|
|
175
|
+
def put_Handled(self: win32more.Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs, value: Boolean) -> Void: ...
|
|
176
|
+
AutomationProvider = property(get_AutomationProvider, put_AutomationProvider)
|
|
177
|
+
Handled = property(get_Handled, put_Handled)
|
|
178
|
+
class ContentIslandEnvironment(ComPtr):
|
|
179
|
+
extends: IInspectable
|
|
180
|
+
default_interface: win32more.Microsoft.UI.Content.IContentIslandEnvironment
|
|
181
|
+
_classid_ = 'Microsoft.UI.Content.ContentIslandEnvironment'
|
|
182
|
+
@winrt_mixinmethod
|
|
183
|
+
def remove_SettingChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
184
|
+
@winrt_mixinmethod
|
|
185
|
+
def get_DisplayId(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment) -> win32more.Microsoft.UI.DisplayId: ...
|
|
186
|
+
@winrt_mixinmethod
|
|
187
|
+
def add_SettingChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIslandEnvironment, win32more.Microsoft.UI.Content.ContentEnvironmentSettingChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
188
|
+
@winrt_mixinmethod
|
|
189
|
+
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment) -> win32more.Microsoft.UI.WindowId: ...
|
|
190
|
+
@winrt_mixinmethod
|
|
191
|
+
def add_StateChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIslandEnvironment, win32more.Microsoft.UI.Content.ContentEnvironmentStateChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
192
|
+
@winrt_mixinmethod
|
|
193
|
+
def remove_StateChanged(self: win32more.Microsoft.UI.Content.IContentIslandEnvironment, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
194
|
+
AppWindowId = property(get_AppWindowId, None)
|
|
195
|
+
DisplayId = property(get_DisplayId, None)
|
|
196
|
+
SettingChanged = event()
|
|
197
|
+
StateChanged = event()
|
|
198
|
+
class ContentIslandStateChangedEventArgs(ComPtr):
|
|
199
|
+
extends: IInspectable
|
|
200
|
+
default_interface: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs
|
|
201
|
+
_classid_ = 'Microsoft.UI.Content.ContentIslandStateChangedEventArgs'
|
|
202
|
+
@winrt_mixinmethod
|
|
203
|
+
def get_DidActualSizeChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
204
|
+
@winrt_mixinmethod
|
|
205
|
+
def get_DidSiteEnabledChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
206
|
+
@winrt_mixinmethod
|
|
207
|
+
def get_DidSiteVisibleChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
208
|
+
@winrt_mixinmethod
|
|
209
|
+
def get_DidLayoutDirectionChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
210
|
+
@winrt_mixinmethod
|
|
211
|
+
def get_DidRasterizationScaleChange(self: win32more.Microsoft.UI.Content.IContentIslandStateChangedEventArgs) -> Boolean: ...
|
|
212
|
+
DidActualSizeChange = property(get_DidActualSizeChange, None)
|
|
213
|
+
DidLayoutDirectionChange = property(get_DidLayoutDirectionChange, None)
|
|
214
|
+
DidRasterizationScaleChange = property(get_DidRasterizationScaleChange, None)
|
|
215
|
+
DidSiteEnabledChange = property(get_DidSiteEnabledChange, None)
|
|
216
|
+
DidSiteVisibleChange = property(get_DidSiteVisibleChange, None)
|
|
217
|
+
class ContentLayoutDirection(Enum, Int32):
|
|
218
|
+
LeftToRight = 0
|
|
219
|
+
RightToLeft = 1
|
|
220
|
+
class ContentSite(ComPtr):
|
|
221
|
+
extends: IInspectable
|
|
222
|
+
implements: Tuple[ContextManagerProtocol]
|
|
223
|
+
default_interface: win32more.Microsoft.UI.Content.IContentSite
|
|
224
|
+
_classid_ = 'Microsoft.UI.Content.ContentSite'
|
|
225
|
+
@winrt_mixinmethod
|
|
226
|
+
def get_IsSiteEnabled(self: win32more.Microsoft.UI.Content.IContentSite) -> Boolean: ...
|
|
227
|
+
@winrt_mixinmethod
|
|
228
|
+
def put_ActualSize(self: win32more.Microsoft.UI.Content.IContentSite, value: win32more.Windows.Foundation.Numerics.Vector2) -> Void: ...
|
|
229
|
+
@winrt_mixinmethod
|
|
230
|
+
def get_ClientSize(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
231
|
+
@winrt_mixinmethod
|
|
232
|
+
def put_ClientSize(self: win32more.Microsoft.UI.Content.IContentSite, value: win32more.Windows.Graphics.SizeInt32) -> Void: ...
|
|
233
|
+
@winrt_mixinmethod
|
|
234
|
+
def get_CoordinateConverter(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
235
|
+
@winrt_mixinmethod
|
|
236
|
+
def get_ActualSize(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
237
|
+
@winrt_mixinmethod
|
|
238
|
+
def get_Environment(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentSiteEnvironment: ...
|
|
239
|
+
@winrt_mixinmethod
|
|
240
|
+
def get_IsConnected(self: win32more.Microsoft.UI.Content.IContentSite) -> Boolean: ...
|
|
241
|
+
@winrt_mixinmethod
|
|
242
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
243
|
+
@winrt_mixinmethod
|
|
244
|
+
def put_IsSiteEnabled(self: win32more.Microsoft.UI.Content.IContentSite, value: Boolean) -> Void: ...
|
|
245
|
+
@winrt_mixinmethod
|
|
246
|
+
def get_IsSiteVisible(self: win32more.Microsoft.UI.Content.IContentSite) -> Boolean: ...
|
|
247
|
+
@winrt_mixinmethod
|
|
248
|
+
def put_IsSiteVisible(self: win32more.Microsoft.UI.Content.IContentSite, value: Boolean) -> Void: ...
|
|
249
|
+
@winrt_mixinmethod
|
|
250
|
+
def get_LayoutDirection(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentLayoutDirection: ...
|
|
251
|
+
@winrt_mixinmethod
|
|
252
|
+
def put_LayoutDirection(self: win32more.Microsoft.UI.Content.IContentSite, value: win32more.Microsoft.UI.Content.ContentLayoutDirection) -> Void: ...
|
|
253
|
+
@winrt_mixinmethod
|
|
254
|
+
def get_OverrideScale(self: win32more.Microsoft.UI.Content.IContentSite) -> Single: ...
|
|
255
|
+
@winrt_mixinmethod
|
|
256
|
+
def put_OverrideScale(self: win32more.Microsoft.UI.Content.IContentSite, value: Single) -> Void: ...
|
|
257
|
+
@winrt_mixinmethod
|
|
258
|
+
def get_ParentScale(self: win32more.Microsoft.UI.Content.IContentSite) -> Single: ...
|
|
259
|
+
@winrt_mixinmethod
|
|
260
|
+
def put_ParentScale(self: win32more.Microsoft.UI.Content.IContentSite, value: Single) -> Void: ...
|
|
261
|
+
@winrt_mixinmethod
|
|
262
|
+
def get_RasterizationScale(self: win32more.Microsoft.UI.Content.IContentSite) -> Single: ...
|
|
263
|
+
@winrt_mixinmethod
|
|
264
|
+
def get_RequestedSize(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
265
|
+
@winrt_mixinmethod
|
|
266
|
+
def get_ShouldApplyRasterizationScale(self: win32more.Microsoft.UI.Content.IContentSite) -> Boolean: ...
|
|
267
|
+
@winrt_mixinmethod
|
|
268
|
+
def put_ShouldApplyRasterizationScale(self: win32more.Microsoft.UI.Content.IContentSite, value: Boolean) -> Void: ...
|
|
269
|
+
@winrt_mixinmethod
|
|
270
|
+
def get_View(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentSiteView: ...
|
|
271
|
+
@winrt_mixinmethod
|
|
272
|
+
def GetIslandStateChangeDeferral(self: win32more.Microsoft.UI.Content.IContentSite) -> win32more.Microsoft.UI.Content.ContentDeferral: ...
|
|
273
|
+
@winrt_mixinmethod
|
|
274
|
+
def add_RequestedStateChanged(self: win32more.Microsoft.UI.Content.IContentSite, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentSite, win32more.Microsoft.UI.Content.ContentSiteRequestedStateChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
275
|
+
@winrt_mixinmethod
|
|
276
|
+
def remove_RequestedStateChanged(self: win32more.Microsoft.UI.Content.IContentSite, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
277
|
+
@winrt_mixinmethod
|
|
278
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
279
|
+
@winrt_mixinmethod
|
|
280
|
+
def get_IsClosed(self: win32more.Microsoft.UI.IClosableNotifier) -> Boolean: ...
|
|
281
|
+
@winrt_mixinmethod
|
|
282
|
+
def add_Closed(self: win32more.Microsoft.UI.IClosableNotifier, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
283
|
+
@winrt_mixinmethod
|
|
284
|
+
def remove_Closed(self: win32more.Microsoft.UI.IClosableNotifier, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
285
|
+
@winrt_mixinmethod
|
|
286
|
+
def add_FrameworkClosed(self: win32more.Microsoft.UI.IClosableNotifier, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
287
|
+
@winrt_mixinmethod
|
|
288
|
+
def remove_FrameworkClosed(self: win32more.Microsoft.UI.IClosableNotifier, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
289
|
+
ActualSize = property(get_ActualSize, put_ActualSize)
|
|
290
|
+
ClientSize = property(get_ClientSize, put_ClientSize)
|
|
291
|
+
CoordinateConverter = property(get_CoordinateConverter, None)
|
|
292
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
293
|
+
Environment = property(get_Environment, None)
|
|
294
|
+
IsClosed = property(get_IsClosed, None)
|
|
295
|
+
IsConnected = property(get_IsConnected, None)
|
|
296
|
+
IsSiteEnabled = property(get_IsSiteEnabled, put_IsSiteEnabled)
|
|
297
|
+
IsSiteVisible = property(get_IsSiteVisible, put_IsSiteVisible)
|
|
298
|
+
LayoutDirection = property(get_LayoutDirection, put_LayoutDirection)
|
|
299
|
+
OverrideScale = property(get_OverrideScale, put_OverrideScale)
|
|
300
|
+
ParentScale = property(get_ParentScale, put_ParentScale)
|
|
301
|
+
RasterizationScale = property(get_RasterizationScale, None)
|
|
302
|
+
RequestedSize = property(get_RequestedSize, None)
|
|
303
|
+
ShouldApplyRasterizationScale = property(get_ShouldApplyRasterizationScale, put_ShouldApplyRasterizationScale)
|
|
304
|
+
View = property(get_View, None)
|
|
305
|
+
RequestedStateChanged = event()
|
|
306
|
+
Closed = event()
|
|
307
|
+
FrameworkClosed = event()
|
|
308
|
+
class ContentSiteEnvironment(ComPtr):
|
|
309
|
+
extends: IInspectable
|
|
310
|
+
default_interface: win32more.Microsoft.UI.Content.IContentSiteEnvironment
|
|
311
|
+
_classid_ = 'Microsoft.UI.Content.ContentSiteEnvironment'
|
|
312
|
+
@winrt_mixinmethod
|
|
313
|
+
def put_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, value: win32more.Microsoft.UI.DisplayId) -> Void: ...
|
|
314
|
+
@winrt_mixinmethod
|
|
315
|
+
def get_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.DisplayId: ...
|
|
316
|
+
@winrt_mixinmethod
|
|
317
|
+
def put_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, value: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
318
|
+
@winrt_mixinmethod
|
|
319
|
+
def get_View(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.Content.ContentSiteEnvironmentView: ...
|
|
320
|
+
@winrt_mixinmethod
|
|
321
|
+
def NotifySettingChanged(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment, setting: WinRT_String) -> Void: ...
|
|
322
|
+
@winrt_mixinmethod
|
|
323
|
+
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironment) -> win32more.Microsoft.UI.WindowId: ...
|
|
324
|
+
AppWindowId = property(get_AppWindowId, put_AppWindowId)
|
|
325
|
+
DisplayId = property(get_DisplayId, put_DisplayId)
|
|
326
|
+
View = property(get_View, None)
|
|
327
|
+
class ContentSiteEnvironmentView(ComPtr):
|
|
328
|
+
extends: IInspectable
|
|
329
|
+
default_interface: win32more.Microsoft.UI.Content.IContentSiteEnvironmentView
|
|
330
|
+
_classid_ = 'Microsoft.UI.Content.ContentSiteEnvironmentView'
|
|
331
|
+
@winrt_mixinmethod
|
|
332
|
+
def get_AppWindowId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironmentView) -> win32more.Microsoft.UI.WindowId: ...
|
|
333
|
+
@winrt_mixinmethod
|
|
334
|
+
def get_DisplayId(self: win32more.Microsoft.UI.Content.IContentSiteEnvironmentView) -> win32more.Microsoft.UI.DisplayId: ...
|
|
335
|
+
AppWindowId = property(get_AppWindowId, None)
|
|
336
|
+
DisplayId = property(get_DisplayId, None)
|
|
337
|
+
class ContentSiteRequestedStateChangedEventArgs(ComPtr):
|
|
338
|
+
extends: IInspectable
|
|
339
|
+
default_interface: win32more.Microsoft.UI.Content.IContentSiteRequestedStateChangedEventArgs
|
|
340
|
+
_classid_ = 'Microsoft.UI.Content.ContentSiteRequestedStateChangedEventArgs'
|
|
341
|
+
@winrt_mixinmethod
|
|
342
|
+
def get_DidRequestedSizeChange(self: win32more.Microsoft.UI.Content.IContentSiteRequestedStateChangedEventArgs) -> Boolean: ...
|
|
343
|
+
DidRequestedSizeChange = property(get_DidRequestedSizeChange, None)
|
|
344
|
+
class ContentSiteView(ComPtr):
|
|
345
|
+
extends: IInspectable
|
|
346
|
+
default_interface: win32more.Microsoft.UI.Content.IContentSiteView
|
|
347
|
+
_classid_ = 'Microsoft.UI.Content.ContentSiteView'
|
|
348
|
+
@winrt_mixinmethod
|
|
349
|
+
def get_CoordinateConverter(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
350
|
+
@winrt_mixinmethod
|
|
351
|
+
def get_ClientSize(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
352
|
+
@winrt_mixinmethod
|
|
353
|
+
def get_ActualSize(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
354
|
+
@winrt_mixinmethod
|
|
355
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
356
|
+
@winrt_mixinmethod
|
|
357
|
+
def get_EnvironmentView(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Microsoft.UI.Content.ContentSiteEnvironmentView: ...
|
|
358
|
+
@winrt_mixinmethod
|
|
359
|
+
def get_IsConnected(self: win32more.Microsoft.UI.Content.IContentSiteView) -> Boolean: ...
|
|
360
|
+
@winrt_mixinmethod
|
|
361
|
+
def get_IsSiteEnabled(self: win32more.Microsoft.UI.Content.IContentSiteView) -> Boolean: ...
|
|
362
|
+
@winrt_mixinmethod
|
|
363
|
+
def get_IsSiteVisible(self: win32more.Microsoft.UI.Content.IContentSiteView) -> Boolean: ...
|
|
364
|
+
@winrt_mixinmethod
|
|
365
|
+
def get_LayoutDirection(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Microsoft.UI.Content.ContentLayoutDirection: ...
|
|
366
|
+
@winrt_mixinmethod
|
|
367
|
+
def get_OverrideScale(self: win32more.Microsoft.UI.Content.IContentSiteView) -> Single: ...
|
|
368
|
+
@winrt_mixinmethod
|
|
369
|
+
def get_ParentScale(self: win32more.Microsoft.UI.Content.IContentSiteView) -> Single: ...
|
|
370
|
+
@winrt_mixinmethod
|
|
371
|
+
def get_RasterizationScale(self: win32more.Microsoft.UI.Content.IContentSiteView) -> Single: ...
|
|
372
|
+
@winrt_mixinmethod
|
|
373
|
+
def get_RequestedSize(self: win32more.Microsoft.UI.Content.IContentSiteView) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
374
|
+
@winrt_mixinmethod
|
|
375
|
+
def get_ShouldApplyRasterizationScale(self: win32more.Microsoft.UI.Content.IContentSiteView) -> Boolean: ...
|
|
376
|
+
ActualSize = property(get_ActualSize, None)
|
|
377
|
+
ClientSize = property(get_ClientSize, None)
|
|
378
|
+
CoordinateConverter = property(get_CoordinateConverter, None)
|
|
379
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
380
|
+
EnvironmentView = property(get_EnvironmentView, None)
|
|
381
|
+
IsConnected = property(get_IsConnected, None)
|
|
382
|
+
IsSiteEnabled = property(get_IsSiteEnabled, None)
|
|
383
|
+
IsSiteVisible = property(get_IsSiteVisible, None)
|
|
384
|
+
LayoutDirection = property(get_LayoutDirection, None)
|
|
385
|
+
OverrideScale = property(get_OverrideScale, None)
|
|
386
|
+
ParentScale = property(get_ParentScale, None)
|
|
387
|
+
RasterizationScale = property(get_RasterizationScale, None)
|
|
388
|
+
RequestedSize = property(get_RequestedSize, None)
|
|
389
|
+
ShouldApplyRasterizationScale = property(get_ShouldApplyRasterizationScale, None)
|
|
390
|
+
class ContentSizePolicy(Enum, Int32):
|
|
391
|
+
None_ = 0
|
|
392
|
+
ResizeContentToParentWindow = 1
|
|
393
|
+
ResizeParentWindowToContent = 2
|
|
394
|
+
class DesktopChildSiteBridge(ComPtr):
|
|
395
|
+
extends: win32more.Microsoft.UI.Content.DesktopSiteBridge
|
|
396
|
+
default_interface: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge
|
|
397
|
+
_classid_ = 'Microsoft.UI.Content.DesktopChildSiteBridge'
|
|
398
|
+
@winrt_mixinmethod
|
|
399
|
+
def get_ResizePolicy(self: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge) -> win32more.Microsoft.UI.Content.ContentSizePolicy: ...
|
|
400
|
+
@winrt_mixinmethod
|
|
401
|
+
def get_SiteView(self: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge) -> win32more.Microsoft.UI.Content.ContentSiteView: ...
|
|
402
|
+
@winrt_mixinmethod
|
|
403
|
+
def put_ResizePolicy(self: win32more.Microsoft.UI.Content.IDesktopChildSiteBridge, value: win32more.Microsoft.UI.Content.ContentSizePolicy) -> Void: ...
|
|
404
|
+
@winrt_classmethod
|
|
405
|
+
def Create(cls: win32more.Microsoft.UI.Content.IDesktopChildSiteBridgeStatics, compositor: win32more.Microsoft.UI.Composition.Compositor, parentWindowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Content.DesktopChildSiteBridge: ...
|
|
406
|
+
ResizePolicy = property(get_ResizePolicy, put_ResizePolicy)
|
|
407
|
+
SiteView = property(get_SiteView, None)
|
|
408
|
+
class DesktopSiteBridge(ComPtr):
|
|
409
|
+
extends: IInspectable
|
|
410
|
+
implements: Tuple[ContextManagerProtocol]
|
|
411
|
+
default_interface: win32more.Microsoft.UI.Content.IDesktopSiteBridge
|
|
412
|
+
_classid_ = 'Microsoft.UI.Content.DesktopSiteBridge'
|
|
413
|
+
@winrt_mixinmethod
|
|
414
|
+
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
415
|
+
@winrt_mixinmethod
|
|
416
|
+
def MoveInZOrderBelow(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge, windowId: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
417
|
+
@winrt_mixinmethod
|
|
418
|
+
def Show(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
419
|
+
@winrt_mixinmethod
|
|
420
|
+
def put_OverrideScale(self: win32more.Microsoft.UI.Content.IContentSiteBridge, value: Single) -> Void: ...
|
|
421
|
+
@winrt_mixinmethod
|
|
422
|
+
def get_IsEnabled(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Boolean: ...
|
|
423
|
+
@winrt_mixinmethod
|
|
424
|
+
def get_WindowId(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> win32more.Microsoft.UI.WindowId: ...
|
|
425
|
+
@winrt_mixinmethod
|
|
426
|
+
def Connect(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge, content: win32more.Microsoft.UI.Content.ContentIsland) -> Void: ...
|
|
427
|
+
@winrt_mixinmethod
|
|
428
|
+
def Disable(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
429
|
+
@winrt_mixinmethod
|
|
430
|
+
def Enable(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
431
|
+
@winrt_mixinmethod
|
|
432
|
+
def Hide(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
433
|
+
@winrt_mixinmethod
|
|
434
|
+
def MoveAndResize(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge, rect: win32more.Windows.Graphics.RectInt32) -> Void: ...
|
|
435
|
+
@winrt_mixinmethod
|
|
436
|
+
def MoveInZOrderAtBottom(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
437
|
+
@winrt_mixinmethod
|
|
438
|
+
def MoveInZOrderAtTop(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Void: ...
|
|
439
|
+
@winrt_mixinmethod
|
|
440
|
+
def get_IsVisible(self: win32more.Microsoft.UI.Content.IDesktopSiteBridge) -> Boolean: ...
|
|
441
|
+
@winrt_mixinmethod
|
|
442
|
+
def get_IsClosed(self: win32more.Microsoft.UI.IClosableNotifier) -> Boolean: ...
|
|
443
|
+
@winrt_mixinmethod
|
|
444
|
+
def add_Closed(self: win32more.Microsoft.UI.IClosableNotifier, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
445
|
+
@winrt_mixinmethod
|
|
446
|
+
def remove_Closed(self: win32more.Microsoft.UI.IClosableNotifier, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
447
|
+
@winrt_mixinmethod
|
|
448
|
+
def add_FrameworkClosed(self: win32more.Microsoft.UI.IClosableNotifier, handler: win32more.Microsoft.UI.ClosableNotifierHandler) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
449
|
+
@winrt_mixinmethod
|
|
450
|
+
def remove_FrameworkClosed(self: win32more.Microsoft.UI.IClosableNotifier, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
451
|
+
@winrt_mixinmethod
|
|
452
|
+
def get_DispatcherQueue(self: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
453
|
+
@winrt_mixinmethod
|
|
454
|
+
def get_LayoutDirectionOverride(self: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Windows.Foundation.IReference[win32more.Microsoft.UI.Content.ContentLayoutDirection]: ...
|
|
455
|
+
@winrt_mixinmethod
|
|
456
|
+
def put_LayoutDirectionOverride(self: win32more.Microsoft.UI.Content.IContentSiteBridge, value: win32more.Windows.Foundation.IReference[win32more.Microsoft.UI.Content.ContentLayoutDirection]) -> Void: ...
|
|
457
|
+
@winrt_mixinmethod
|
|
458
|
+
def get_OverrideScale(self: win32more.Microsoft.UI.Content.IContentSiteBridge) -> Single: ...
|
|
459
|
+
@winrt_classmethod
|
|
460
|
+
def IsSupported(cls: win32more.Microsoft.UI.Content.IDesktopSiteBridgeStatics) -> Boolean: ...
|
|
461
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
462
|
+
IsClosed = property(get_IsClosed, None)
|
|
463
|
+
IsEnabled = property(get_IsEnabled, None)
|
|
464
|
+
IsVisible = property(get_IsVisible, None)
|
|
465
|
+
LayoutDirectionOverride = property(get_LayoutDirectionOverride, put_LayoutDirectionOverride)
|
|
466
|
+
OverrideScale = property(get_OverrideScale, put_OverrideScale)
|
|
467
|
+
WindowId = property(get_WindowId, None)
|
|
468
|
+
Closed = event()
|
|
469
|
+
FrameworkClosed = event()
|
|
470
|
+
class IContentCoordinateConverter(ComPtr):
|
|
471
|
+
extends: IInspectable
|
|
472
|
+
_classid_ = 'Microsoft.UI.Content.IContentCoordinateConverter'
|
|
473
|
+
_iid_ = Guid('{10a11230-5eb4-5840-a346-570f4a49040f}')
|
|
474
|
+
@winrt_commethod(6)
|
|
475
|
+
def ConvertLocalToScreenWithPoint(self, localPoint: win32more.Windows.Foundation.Point) -> win32more.Windows.Graphics.PointInt32: ...
|
|
476
|
+
@winrt_commethod(7)
|
|
477
|
+
def ConvertLocalToScreenWithPoints(self, localPoints: PassArray[win32more.Windows.Foundation.Point]) -> ReceiveArray[win32more.Windows.Graphics.PointInt32]: ...
|
|
478
|
+
@winrt_commethod(8)
|
|
479
|
+
def ConvertLocalToScreenWithPointsAndRoundingMode(self, localPoints: PassArray[win32more.Windows.Foundation.Point], roundingMode: win32more.Microsoft.UI.Content.ContentCoordinateRoundingMode) -> ReceiveArray[win32more.Windows.Graphics.PointInt32]: ...
|
|
480
|
+
@winrt_commethod(9)
|
|
481
|
+
def ConvertLocalToScreenWithRect(self, localRect: win32more.Windows.Foundation.Rect) -> win32more.Windows.Graphics.RectInt32: ...
|
|
482
|
+
@winrt_commethod(10)
|
|
483
|
+
def ConvertScreenToLocalWithPoint(self, screenPoint: win32more.Windows.Graphics.PointInt32) -> win32more.Windows.Foundation.Point: ...
|
|
484
|
+
@winrt_commethod(11)
|
|
485
|
+
def ConvertScreenToLocalWithPoints(self, screenPoints: PassArray[win32more.Windows.Graphics.PointInt32]) -> ReceiveArray[win32more.Windows.Foundation.Point]: ...
|
|
486
|
+
@winrt_commethod(12)
|
|
487
|
+
def ConvertScreenToLocalWithRect(self, screenRect: win32more.Windows.Graphics.RectInt32) -> win32more.Windows.Foundation.Rect: ...
|
|
488
|
+
class IContentCoordinateConverterFactory(ComPtr):
|
|
489
|
+
extends: IInspectable
|
|
490
|
+
_classid_ = 'Microsoft.UI.Content.IContentCoordinateConverterFactory'
|
|
491
|
+
_iid_ = Guid('{a4b216ee-0e26-56bd-9209-a75cf9d80f27}')
|
|
492
|
+
class IContentCoordinateConverterStatics(ComPtr):
|
|
493
|
+
extends: IInspectable
|
|
494
|
+
_classid_ = 'Microsoft.UI.Content.IContentCoordinateConverterStatics'
|
|
495
|
+
_iid_ = Guid('{f56374ce-b6df-5b42-a58f-4e3bb039e3a9}')
|
|
496
|
+
@winrt_commethod(6)
|
|
497
|
+
def CreateForWindowId(self, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
498
|
+
class IContentDeferral(ComPtr):
|
|
499
|
+
extends: IInspectable
|
|
500
|
+
_classid_ = 'Microsoft.UI.Content.IContentDeferral'
|
|
501
|
+
_iid_ = Guid('{470529f5-cd93-599b-968e-f8a689bc3a07}')
|
|
502
|
+
@winrt_commethod(6)
|
|
503
|
+
def Complete(self) -> Void: ...
|
|
504
|
+
class IContentEnvironmentSettingChangedEventArgs(ComPtr):
|
|
505
|
+
extends: IInspectable
|
|
506
|
+
_classid_ = 'Microsoft.UI.Content.IContentEnvironmentSettingChangedEventArgs'
|
|
507
|
+
_iid_ = Guid('{76478051-fc80-5eec-a3f3-62606abe06b7}')
|
|
508
|
+
@winrt_commethod(6)
|
|
509
|
+
def get_SettingName(self) -> WinRT_String: ...
|
|
510
|
+
SettingName = property(get_SettingName, None)
|
|
511
|
+
class IContentEnvironmentStateChangedEventArgs(ComPtr):
|
|
512
|
+
extends: IInspectable
|
|
513
|
+
_classid_ = 'Microsoft.UI.Content.IContentEnvironmentStateChangedEventArgs'
|
|
514
|
+
_iid_ = Guid('{8970fa4f-10ba-5f67-970b-8c72bc009b67}')
|
|
515
|
+
@winrt_commethod(6)
|
|
516
|
+
def get_DidAppWindowIdChange(self) -> Boolean: ...
|
|
517
|
+
@winrt_commethod(7)
|
|
518
|
+
def get_DidDisplayIdChange(self) -> Boolean: ...
|
|
519
|
+
DidAppWindowIdChange = property(get_DidAppWindowIdChange, None)
|
|
520
|
+
DidDisplayIdChange = property(get_DidDisplayIdChange, None)
|
|
521
|
+
class IContentIsland(ComPtr):
|
|
522
|
+
extends: IInspectable
|
|
523
|
+
_classid_ = 'Microsoft.UI.Content.IContentIsland'
|
|
524
|
+
_iid_ = Guid('{5b2504ba-361c-50aa-bd6e-4122c6d93889}')
|
|
525
|
+
@winrt_commethod(6)
|
|
526
|
+
def get_ActualSize(self) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
527
|
+
@winrt_commethod(7)
|
|
528
|
+
def get_AppData(self) -> IInspectable: ...
|
|
529
|
+
@winrt_commethod(8)
|
|
530
|
+
def put_AppData(self, value: IInspectable) -> Void: ...
|
|
531
|
+
@winrt_commethod(9)
|
|
532
|
+
def get_CoordinateConverter(self) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
533
|
+
@winrt_commethod(10)
|
|
534
|
+
def get_CustomProperties(self) -> win32more.Windows.Foundation.Collections.IPropertySet: ...
|
|
535
|
+
@winrt_commethod(11)
|
|
536
|
+
def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
537
|
+
@winrt_commethod(12)
|
|
538
|
+
def get_Environment(self) -> win32more.Microsoft.UI.Content.ContentIslandEnvironment: ...
|
|
539
|
+
@winrt_commethod(13)
|
|
540
|
+
def get_Id(self) -> UInt64: ...
|
|
541
|
+
@winrt_commethod(14)
|
|
542
|
+
def get_IsConnected(self) -> Boolean: ...
|
|
543
|
+
@winrt_commethod(15)
|
|
544
|
+
def get_IsHitTestVisibleWhenTransparent(self) -> Boolean: ...
|
|
545
|
+
@winrt_commethod(16)
|
|
546
|
+
def put_IsHitTestVisibleWhenTransparent(self, value: Boolean) -> Void: ...
|
|
547
|
+
@winrt_commethod(17)
|
|
548
|
+
def get_IsIslandEnabled(self) -> Boolean: ...
|
|
549
|
+
@winrt_commethod(18)
|
|
550
|
+
def put_IsIslandEnabled(self, value: Boolean) -> Void: ...
|
|
551
|
+
@winrt_commethod(19)
|
|
552
|
+
def get_IsIslandVisible(self) -> Boolean: ...
|
|
553
|
+
@winrt_commethod(20)
|
|
554
|
+
def put_IsIslandVisible(self, value: Boolean) -> Void: ...
|
|
555
|
+
@winrt_commethod(21)
|
|
556
|
+
def get_IsSiteEnabled(self) -> Boolean: ...
|
|
557
|
+
@winrt_commethod(22)
|
|
558
|
+
def get_IsSiteVisible(self) -> Boolean: ...
|
|
559
|
+
@winrt_commethod(23)
|
|
560
|
+
def get_LayoutDirection(self) -> win32more.Microsoft.UI.Content.ContentLayoutDirection: ...
|
|
561
|
+
@winrt_commethod(24)
|
|
562
|
+
def get_RasterizationScale(self) -> Single: ...
|
|
563
|
+
@winrt_commethod(25)
|
|
564
|
+
def GetAutomationHostProvider(self) -> IInspectable: ...
|
|
565
|
+
@winrt_commethod(26)
|
|
566
|
+
def GetStateChangeDeferral(self) -> win32more.Microsoft.UI.Content.ContentDeferral: ...
|
|
567
|
+
@winrt_commethod(27)
|
|
568
|
+
def RequestSize(self, size: win32more.Windows.Foundation.Numerics.Vector2) -> Void: ...
|
|
569
|
+
@winrt_commethod(28)
|
|
570
|
+
def add_AutomationProviderRequested(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIsland, win32more.Microsoft.UI.Content.ContentIslandAutomationProviderRequestedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
571
|
+
@winrt_commethod(29)
|
|
572
|
+
def remove_AutomationProviderRequested(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
573
|
+
@winrt_commethod(30)
|
|
574
|
+
def add_StateChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIsland, win32more.Microsoft.UI.Content.ContentIslandStateChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
575
|
+
@winrt_commethod(31)
|
|
576
|
+
def remove_StateChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
577
|
+
ActualSize = property(get_ActualSize, None)
|
|
578
|
+
AppData = property(get_AppData, put_AppData)
|
|
579
|
+
CoordinateConverter = property(get_CoordinateConverter, None)
|
|
580
|
+
CustomProperties = property(get_CustomProperties, None)
|
|
581
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
582
|
+
Environment = property(get_Environment, None)
|
|
583
|
+
Id = property(get_Id, None)
|
|
584
|
+
IsConnected = property(get_IsConnected, None)
|
|
585
|
+
IsHitTestVisibleWhenTransparent = property(get_IsHitTestVisibleWhenTransparent, put_IsHitTestVisibleWhenTransparent)
|
|
586
|
+
IsIslandEnabled = property(get_IsIslandEnabled, put_IsIslandEnabled)
|
|
587
|
+
IsIslandVisible = property(get_IsIslandVisible, put_IsIslandVisible)
|
|
588
|
+
IsSiteEnabled = property(get_IsSiteEnabled, None)
|
|
589
|
+
IsSiteVisible = property(get_IsSiteVisible, None)
|
|
590
|
+
LayoutDirection = property(get_LayoutDirection, None)
|
|
591
|
+
RasterizationScale = property(get_RasterizationScale, None)
|
|
592
|
+
AutomationProviderRequested = event()
|
|
593
|
+
StateChanged = event()
|
|
594
|
+
class IContentIslandAutomationProviderRequestedEventArgs(ComPtr):
|
|
595
|
+
extends: IInspectable
|
|
596
|
+
_classid_ = 'Microsoft.UI.Content.IContentIslandAutomationProviderRequestedEventArgs'
|
|
597
|
+
_iid_ = Guid('{9fe24bed-2b9c-5137-887f-403c94841824}')
|
|
598
|
+
@winrt_commethod(6)
|
|
599
|
+
def get_AutomationProvider(self) -> IInspectable: ...
|
|
600
|
+
@winrt_commethod(7)
|
|
601
|
+
def put_AutomationProvider(self, value: IInspectable) -> Void: ...
|
|
602
|
+
@winrt_commethod(8)
|
|
603
|
+
def get_Handled(self) -> Boolean: ...
|
|
604
|
+
@winrt_commethod(9)
|
|
605
|
+
def put_Handled(self, value: Boolean) -> Void: ...
|
|
606
|
+
AutomationProvider = property(get_AutomationProvider, put_AutomationProvider)
|
|
607
|
+
Handled = property(get_Handled, put_Handled)
|
|
608
|
+
class IContentIslandEnvironment(ComPtr):
|
|
609
|
+
extends: IInspectable
|
|
610
|
+
_classid_ = 'Microsoft.UI.Content.IContentIslandEnvironment'
|
|
611
|
+
_iid_ = Guid('{c334236d-da88-566d-811d-74aef2eba978}')
|
|
612
|
+
@winrt_commethod(6)
|
|
613
|
+
def get_AppWindowId(self) -> win32more.Microsoft.UI.WindowId: ...
|
|
614
|
+
@winrt_commethod(7)
|
|
615
|
+
def get_DisplayId(self) -> win32more.Microsoft.UI.DisplayId: ...
|
|
616
|
+
@winrt_commethod(8)
|
|
617
|
+
def add_SettingChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIslandEnvironment, win32more.Microsoft.UI.Content.ContentEnvironmentSettingChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
618
|
+
@winrt_commethod(9)
|
|
619
|
+
def remove_SettingChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
620
|
+
@winrt_commethod(10)
|
|
621
|
+
def add_StateChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentIslandEnvironment, win32more.Microsoft.UI.Content.ContentEnvironmentStateChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
622
|
+
@winrt_commethod(11)
|
|
623
|
+
def remove_StateChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
624
|
+
AppWindowId = property(get_AppWindowId, None)
|
|
625
|
+
DisplayId = property(get_DisplayId, None)
|
|
626
|
+
SettingChanged = event()
|
|
627
|
+
StateChanged = event()
|
|
628
|
+
class IContentIslandEnvironmentFactory(ComPtr):
|
|
629
|
+
extends: IInspectable
|
|
630
|
+
_classid_ = 'Microsoft.UI.Content.IContentIslandEnvironmentFactory'
|
|
631
|
+
_iid_ = Guid('{47a782d6-b177-5c1e-bf87-90437dd809d0}')
|
|
632
|
+
class IContentIslandFactory(ComPtr):
|
|
633
|
+
extends: IInspectable
|
|
634
|
+
_classid_ = 'Microsoft.UI.Content.IContentIslandFactory'
|
|
635
|
+
_iid_ = Guid('{82383f52-e81a-5ec9-a954-bac8a931ba7d}')
|
|
636
|
+
class IContentIslandStateChangedEventArgs(ComPtr):
|
|
637
|
+
extends: IInspectable
|
|
638
|
+
_classid_ = 'Microsoft.UI.Content.IContentIslandStateChangedEventArgs'
|
|
639
|
+
_iid_ = Guid('{c828eeb2-0c62-5b40-9d48-77c06083c278}')
|
|
640
|
+
@winrt_commethod(6)
|
|
641
|
+
def get_DidActualSizeChange(self) -> Boolean: ...
|
|
642
|
+
@winrt_commethod(7)
|
|
643
|
+
def get_DidSiteEnabledChange(self) -> Boolean: ...
|
|
644
|
+
@winrt_commethod(8)
|
|
645
|
+
def get_DidSiteVisibleChange(self) -> Boolean: ...
|
|
646
|
+
@winrt_commethod(9)
|
|
647
|
+
def get_DidLayoutDirectionChange(self) -> Boolean: ...
|
|
648
|
+
@winrt_commethod(10)
|
|
649
|
+
def get_DidRasterizationScaleChange(self) -> Boolean: ...
|
|
650
|
+
DidActualSizeChange = property(get_DidActualSizeChange, None)
|
|
651
|
+
DidLayoutDirectionChange = property(get_DidLayoutDirectionChange, None)
|
|
652
|
+
DidRasterizationScaleChange = property(get_DidRasterizationScaleChange, None)
|
|
653
|
+
DidSiteEnabledChange = property(get_DidSiteEnabledChange, None)
|
|
654
|
+
DidSiteVisibleChange = property(get_DidSiteVisibleChange, None)
|
|
655
|
+
class IContentIslandStatics(ComPtr):
|
|
656
|
+
extends: IInspectable
|
|
657
|
+
_classid_ = 'Microsoft.UI.Content.IContentIslandStatics'
|
|
658
|
+
_iid_ = Guid('{7b9eb7cc-8c43-5e0a-ab23-ab48628fd223}')
|
|
659
|
+
@winrt_commethod(6)
|
|
660
|
+
def Create(self, Root: win32more.Microsoft.UI.Composition.Visual) -> win32more.Microsoft.UI.Content.ContentIsland: ...
|
|
661
|
+
@winrt_commethod(7)
|
|
662
|
+
def FindAllForCompositor(self, compositor: win32more.Microsoft.UI.Composition.Compositor) -> ReceiveArray[win32more.Microsoft.UI.Content.ContentIsland]: ...
|
|
663
|
+
@winrt_commethod(8)
|
|
664
|
+
def FindAllForCurrentThread(self) -> ReceiveArray[win32more.Microsoft.UI.Content.ContentIsland]: ...
|
|
665
|
+
@winrt_commethod(9)
|
|
666
|
+
def GetByVisual(self, child: win32more.Microsoft.UI.Composition.Visual) -> win32more.Microsoft.UI.Content.ContentIsland: ...
|
|
667
|
+
@winrt_commethod(10)
|
|
668
|
+
def GetFromId(self, id: UInt64) -> win32more.Microsoft.UI.Content.ContentIsland: ...
|
|
669
|
+
class IContentSite(ComPtr):
|
|
670
|
+
extends: IInspectable
|
|
671
|
+
_classid_ = 'Microsoft.UI.Content.IContentSite'
|
|
672
|
+
_iid_ = Guid('{996c60c4-02b2-5eef-93b0-dd6b1ec2fd7b}')
|
|
673
|
+
@winrt_commethod(6)
|
|
674
|
+
def get_ActualSize(self) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
675
|
+
@winrt_commethod(7)
|
|
676
|
+
def put_ActualSize(self, value: win32more.Windows.Foundation.Numerics.Vector2) -> Void: ...
|
|
677
|
+
@winrt_commethod(8)
|
|
678
|
+
def get_ClientSize(self) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
679
|
+
@winrt_commethod(9)
|
|
680
|
+
def put_ClientSize(self, value: win32more.Windows.Graphics.SizeInt32) -> Void: ...
|
|
681
|
+
@winrt_commethod(10)
|
|
682
|
+
def get_CoordinateConverter(self) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
683
|
+
@winrt_commethod(11)
|
|
684
|
+
def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
685
|
+
@winrt_commethod(12)
|
|
686
|
+
def get_Environment(self) -> win32more.Microsoft.UI.Content.ContentSiteEnvironment: ...
|
|
687
|
+
@winrt_commethod(13)
|
|
688
|
+
def get_IsConnected(self) -> Boolean: ...
|
|
689
|
+
@winrt_commethod(14)
|
|
690
|
+
def get_IsSiteEnabled(self) -> Boolean: ...
|
|
691
|
+
@winrt_commethod(15)
|
|
692
|
+
def put_IsSiteEnabled(self, value: Boolean) -> Void: ...
|
|
693
|
+
@winrt_commethod(16)
|
|
694
|
+
def get_IsSiteVisible(self) -> Boolean: ...
|
|
695
|
+
@winrt_commethod(17)
|
|
696
|
+
def put_IsSiteVisible(self, value: Boolean) -> Void: ...
|
|
697
|
+
@winrt_commethod(18)
|
|
698
|
+
def get_LayoutDirection(self) -> win32more.Microsoft.UI.Content.ContentLayoutDirection: ...
|
|
699
|
+
@winrt_commethod(19)
|
|
700
|
+
def put_LayoutDirection(self, value: win32more.Microsoft.UI.Content.ContentLayoutDirection) -> Void: ...
|
|
701
|
+
@winrt_commethod(20)
|
|
702
|
+
def get_OverrideScale(self) -> Single: ...
|
|
703
|
+
@winrt_commethod(21)
|
|
704
|
+
def put_OverrideScale(self, value: Single) -> Void: ...
|
|
705
|
+
@winrt_commethod(22)
|
|
706
|
+
def get_ParentScale(self) -> Single: ...
|
|
707
|
+
@winrt_commethod(23)
|
|
708
|
+
def put_ParentScale(self, value: Single) -> Void: ...
|
|
709
|
+
@winrt_commethod(24)
|
|
710
|
+
def get_RasterizationScale(self) -> Single: ...
|
|
711
|
+
@winrt_commethod(25)
|
|
712
|
+
def get_RequestedSize(self) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
713
|
+
@winrt_commethod(26)
|
|
714
|
+
def get_ShouldApplyRasterizationScale(self) -> Boolean: ...
|
|
715
|
+
@winrt_commethod(27)
|
|
716
|
+
def put_ShouldApplyRasterizationScale(self, value: Boolean) -> Void: ...
|
|
717
|
+
@winrt_commethod(28)
|
|
718
|
+
def get_View(self) -> win32more.Microsoft.UI.Content.ContentSiteView: ...
|
|
719
|
+
@winrt_commethod(29)
|
|
720
|
+
def GetIslandStateChangeDeferral(self) -> win32more.Microsoft.UI.Content.ContentDeferral: ...
|
|
721
|
+
@winrt_commethod(30)
|
|
722
|
+
def add_RequestedStateChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Content.ContentSite, win32more.Microsoft.UI.Content.ContentSiteRequestedStateChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
|
|
723
|
+
@winrt_commethod(31)
|
|
724
|
+
def remove_RequestedStateChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
|
|
725
|
+
ActualSize = property(get_ActualSize, put_ActualSize)
|
|
726
|
+
ClientSize = property(get_ClientSize, put_ClientSize)
|
|
727
|
+
CoordinateConverter = property(get_CoordinateConverter, None)
|
|
728
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
729
|
+
Environment = property(get_Environment, None)
|
|
730
|
+
IsConnected = property(get_IsConnected, None)
|
|
731
|
+
IsSiteEnabled = property(get_IsSiteEnabled, put_IsSiteEnabled)
|
|
732
|
+
IsSiteVisible = property(get_IsSiteVisible, put_IsSiteVisible)
|
|
733
|
+
LayoutDirection = property(get_LayoutDirection, put_LayoutDirection)
|
|
734
|
+
OverrideScale = property(get_OverrideScale, put_OverrideScale)
|
|
735
|
+
ParentScale = property(get_ParentScale, put_ParentScale)
|
|
736
|
+
RasterizationScale = property(get_RasterizationScale, None)
|
|
737
|
+
RequestedSize = property(get_RequestedSize, None)
|
|
738
|
+
ShouldApplyRasterizationScale = property(get_ShouldApplyRasterizationScale, put_ShouldApplyRasterizationScale)
|
|
739
|
+
View = property(get_View, None)
|
|
740
|
+
RequestedStateChanged = event()
|
|
741
|
+
class IContentSiteBridge(ComPtr):
|
|
742
|
+
extends: IInspectable
|
|
743
|
+
implements: Tuple[ContextManagerProtocol]
|
|
744
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteBridge'
|
|
745
|
+
_iid_ = Guid('{faaab99e-a42b-549c-92df-3b6d6e1e368b}')
|
|
746
|
+
@winrt_commethod(6)
|
|
747
|
+
def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
748
|
+
@winrt_commethod(7)
|
|
749
|
+
def get_LayoutDirectionOverride(self) -> win32more.Windows.Foundation.IReference[win32more.Microsoft.UI.Content.ContentLayoutDirection]: ...
|
|
750
|
+
@winrt_commethod(8)
|
|
751
|
+
def put_LayoutDirectionOverride(self, value: win32more.Windows.Foundation.IReference[win32more.Microsoft.UI.Content.ContentLayoutDirection]) -> Void: ...
|
|
752
|
+
@winrt_commethod(9)
|
|
753
|
+
def get_OverrideScale(self) -> Single: ...
|
|
754
|
+
@winrt_commethod(10)
|
|
755
|
+
def put_OverrideScale(self, value: Single) -> Void: ...
|
|
756
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
757
|
+
LayoutDirectionOverride = property(get_LayoutDirectionOverride, put_LayoutDirectionOverride)
|
|
758
|
+
OverrideScale = property(get_OverrideScale, put_OverrideScale)
|
|
759
|
+
class IContentSiteEnvironment(ComPtr):
|
|
760
|
+
extends: IInspectable
|
|
761
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteEnvironment'
|
|
762
|
+
_iid_ = Guid('{685d085d-be53-55d1-aec4-ba2273d5468b}')
|
|
763
|
+
@winrt_commethod(6)
|
|
764
|
+
def get_AppWindowId(self) -> win32more.Microsoft.UI.WindowId: ...
|
|
765
|
+
@winrt_commethod(7)
|
|
766
|
+
def put_AppWindowId(self, value: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
767
|
+
@winrt_commethod(8)
|
|
768
|
+
def get_DisplayId(self) -> win32more.Microsoft.UI.DisplayId: ...
|
|
769
|
+
@winrt_commethod(9)
|
|
770
|
+
def put_DisplayId(self, value: win32more.Microsoft.UI.DisplayId) -> Void: ...
|
|
771
|
+
@winrt_commethod(10)
|
|
772
|
+
def get_View(self) -> win32more.Microsoft.UI.Content.ContentSiteEnvironmentView: ...
|
|
773
|
+
@winrt_commethod(11)
|
|
774
|
+
def NotifySettingChanged(self, setting: WinRT_String) -> Void: ...
|
|
775
|
+
AppWindowId = property(get_AppWindowId, put_AppWindowId)
|
|
776
|
+
DisplayId = property(get_DisplayId, put_DisplayId)
|
|
777
|
+
View = property(get_View, None)
|
|
778
|
+
class IContentSiteEnvironmentFactory(ComPtr):
|
|
779
|
+
extends: IInspectable
|
|
780
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteEnvironmentFactory'
|
|
781
|
+
_iid_ = Guid('{0befa998-cb15-5f16-a4a5-c0ed1674e186}')
|
|
782
|
+
class IContentSiteEnvironmentView(ComPtr):
|
|
783
|
+
extends: IInspectable
|
|
784
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteEnvironmentView'
|
|
785
|
+
_iid_ = Guid('{5b6fe420-0bb3-54dd-8589-786cf02e38f1}')
|
|
786
|
+
@winrt_commethod(6)
|
|
787
|
+
def get_AppWindowId(self) -> win32more.Microsoft.UI.WindowId: ...
|
|
788
|
+
@winrt_commethod(7)
|
|
789
|
+
def get_DisplayId(self) -> win32more.Microsoft.UI.DisplayId: ...
|
|
790
|
+
AppWindowId = property(get_AppWindowId, None)
|
|
791
|
+
DisplayId = property(get_DisplayId, None)
|
|
792
|
+
class IContentSiteEnvironmentViewFactory(ComPtr):
|
|
793
|
+
extends: IInspectable
|
|
794
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteEnvironmentViewFactory'
|
|
795
|
+
_iid_ = Guid('{c901edf2-f184-5a64-8d58-8cf8efa8b678}')
|
|
796
|
+
class IContentSiteFactory(ComPtr):
|
|
797
|
+
extends: IInspectable
|
|
798
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteFactory'
|
|
799
|
+
_iid_ = Guid('{72fb98d5-b28a-57f1-91fa-24c014a342c1}')
|
|
800
|
+
class IContentSiteRequestedStateChangedEventArgs(ComPtr):
|
|
801
|
+
extends: IInspectable
|
|
802
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteRequestedStateChangedEventArgs'
|
|
803
|
+
_iid_ = Guid('{1b55fd1d-7292-562b-b4a1-d4de7972e684}')
|
|
804
|
+
@winrt_commethod(6)
|
|
805
|
+
def get_DidRequestedSizeChange(self) -> Boolean: ...
|
|
806
|
+
DidRequestedSizeChange = property(get_DidRequestedSizeChange, None)
|
|
807
|
+
class IContentSiteView(ComPtr):
|
|
808
|
+
extends: IInspectable
|
|
809
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteView'
|
|
810
|
+
_iid_ = Guid('{2d5d8dd5-358e-5b05-993b-b2666d1786b3}')
|
|
811
|
+
@winrt_commethod(6)
|
|
812
|
+
def get_ActualSize(self) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
813
|
+
@winrt_commethod(7)
|
|
814
|
+
def get_ClientSize(self) -> win32more.Windows.Graphics.SizeInt32: ...
|
|
815
|
+
@winrt_commethod(8)
|
|
816
|
+
def get_CoordinateConverter(self) -> win32more.Microsoft.UI.Content.ContentCoordinateConverter: ...
|
|
817
|
+
@winrt_commethod(9)
|
|
818
|
+
def get_DispatcherQueue(self) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
|
|
819
|
+
@winrt_commethod(10)
|
|
820
|
+
def get_EnvironmentView(self) -> win32more.Microsoft.UI.Content.ContentSiteEnvironmentView: ...
|
|
821
|
+
@winrt_commethod(11)
|
|
822
|
+
def get_IsConnected(self) -> Boolean: ...
|
|
823
|
+
@winrt_commethod(12)
|
|
824
|
+
def get_IsSiteEnabled(self) -> Boolean: ...
|
|
825
|
+
@winrt_commethod(13)
|
|
826
|
+
def get_IsSiteVisible(self) -> Boolean: ...
|
|
827
|
+
@winrt_commethod(14)
|
|
828
|
+
def get_LayoutDirection(self) -> win32more.Microsoft.UI.Content.ContentLayoutDirection: ...
|
|
829
|
+
@winrt_commethod(15)
|
|
830
|
+
def get_OverrideScale(self) -> Single: ...
|
|
831
|
+
@winrt_commethod(16)
|
|
832
|
+
def get_ParentScale(self) -> Single: ...
|
|
833
|
+
@winrt_commethod(17)
|
|
834
|
+
def get_RasterizationScale(self) -> Single: ...
|
|
835
|
+
@winrt_commethod(18)
|
|
836
|
+
def get_RequestedSize(self) -> win32more.Windows.Foundation.Numerics.Vector2: ...
|
|
837
|
+
@winrt_commethod(19)
|
|
838
|
+
def get_ShouldApplyRasterizationScale(self) -> Boolean: ...
|
|
839
|
+
ActualSize = property(get_ActualSize, None)
|
|
840
|
+
ClientSize = property(get_ClientSize, None)
|
|
841
|
+
CoordinateConverter = property(get_CoordinateConverter, None)
|
|
842
|
+
DispatcherQueue = property(get_DispatcherQueue, None)
|
|
843
|
+
EnvironmentView = property(get_EnvironmentView, None)
|
|
844
|
+
IsConnected = property(get_IsConnected, None)
|
|
845
|
+
IsSiteEnabled = property(get_IsSiteEnabled, None)
|
|
846
|
+
IsSiteVisible = property(get_IsSiteVisible, None)
|
|
847
|
+
LayoutDirection = property(get_LayoutDirection, None)
|
|
848
|
+
OverrideScale = property(get_OverrideScale, None)
|
|
849
|
+
ParentScale = property(get_ParentScale, None)
|
|
850
|
+
RasterizationScale = property(get_RasterizationScale, None)
|
|
851
|
+
RequestedSize = property(get_RequestedSize, None)
|
|
852
|
+
ShouldApplyRasterizationScale = property(get_ShouldApplyRasterizationScale, None)
|
|
853
|
+
class IContentSiteViewFactory(ComPtr):
|
|
854
|
+
extends: IInspectable
|
|
855
|
+
_classid_ = 'Microsoft.UI.Content.IContentSiteViewFactory'
|
|
856
|
+
_iid_ = Guid('{9efd72f0-63ef-5b6a-a50c-5685bd8100f1}')
|
|
857
|
+
class IDesktopChildSiteBridge(ComPtr):
|
|
858
|
+
extends: IInspectable
|
|
859
|
+
_classid_ = 'Microsoft.UI.Content.IDesktopChildSiteBridge'
|
|
860
|
+
_iid_ = Guid('{b2f2ff7b-1825-51b0-b80b-7599889c569f}')
|
|
861
|
+
@winrt_commethod(6)
|
|
862
|
+
def get_ResizePolicy(self) -> win32more.Microsoft.UI.Content.ContentSizePolicy: ...
|
|
863
|
+
@winrt_commethod(7)
|
|
864
|
+
def put_ResizePolicy(self, value: win32more.Microsoft.UI.Content.ContentSizePolicy) -> Void: ...
|
|
865
|
+
@winrt_commethod(8)
|
|
866
|
+
def get_SiteView(self) -> win32more.Microsoft.UI.Content.ContentSiteView: ...
|
|
867
|
+
ResizePolicy = property(get_ResizePolicy, put_ResizePolicy)
|
|
868
|
+
SiteView = property(get_SiteView, None)
|
|
869
|
+
class IDesktopChildSiteBridgeStatics(ComPtr):
|
|
870
|
+
extends: IInspectable
|
|
871
|
+
_classid_ = 'Microsoft.UI.Content.IDesktopChildSiteBridgeStatics'
|
|
872
|
+
_iid_ = Guid('{ab6b82de-6a47-5de3-a860-613c8db679ab}')
|
|
873
|
+
@winrt_commethod(6)
|
|
874
|
+
def Create(self, compositor: win32more.Microsoft.UI.Composition.Compositor, parentWindowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Content.DesktopChildSiteBridge: ...
|
|
875
|
+
class IDesktopSiteBridge(ComPtr):
|
|
876
|
+
extends: IInspectable
|
|
877
|
+
_classid_ = 'Microsoft.UI.Content.IDesktopSiteBridge'
|
|
878
|
+
_iid_ = Guid('{f0ae8750-905c-50a2-8a12-4545c6245bb4}')
|
|
879
|
+
@winrt_commethod(6)
|
|
880
|
+
def get_IsEnabled(self) -> Boolean: ...
|
|
881
|
+
@winrt_commethod(7)
|
|
882
|
+
def get_IsVisible(self) -> Boolean: ...
|
|
883
|
+
@winrt_commethod(8)
|
|
884
|
+
def get_WindowId(self) -> win32more.Microsoft.UI.WindowId: ...
|
|
885
|
+
@winrt_commethod(9)
|
|
886
|
+
def Connect(self, content: win32more.Microsoft.UI.Content.ContentIsland) -> Void: ...
|
|
887
|
+
@winrt_commethod(10)
|
|
888
|
+
def Disable(self) -> Void: ...
|
|
889
|
+
@winrt_commethod(11)
|
|
890
|
+
def Enable(self) -> Void: ...
|
|
891
|
+
@winrt_commethod(12)
|
|
892
|
+
def Hide(self) -> Void: ...
|
|
893
|
+
@winrt_commethod(13)
|
|
894
|
+
def MoveAndResize(self, rect: win32more.Windows.Graphics.RectInt32) -> Void: ...
|
|
895
|
+
@winrt_commethod(14)
|
|
896
|
+
def MoveInZOrderAtBottom(self) -> Void: ...
|
|
897
|
+
@winrt_commethod(15)
|
|
898
|
+
def MoveInZOrderAtTop(self) -> Void: ...
|
|
899
|
+
@winrt_commethod(16)
|
|
900
|
+
def MoveInZOrderBelow(self, windowId: win32more.Microsoft.UI.WindowId) -> Void: ...
|
|
901
|
+
@winrt_commethod(17)
|
|
902
|
+
def Show(self) -> Void: ...
|
|
903
|
+
IsEnabled = property(get_IsEnabled, None)
|
|
904
|
+
IsVisible = property(get_IsVisible, None)
|
|
905
|
+
WindowId = property(get_WindowId, None)
|
|
906
|
+
class IDesktopSiteBridgeFactory(ComPtr):
|
|
907
|
+
extends: IInspectable
|
|
908
|
+
_classid_ = 'Microsoft.UI.Content.IDesktopSiteBridgeFactory'
|
|
909
|
+
_iid_ = Guid('{d94ee1ff-3af1-54d0-9311-652b29c57c5b}')
|
|
910
|
+
class IDesktopSiteBridgeStatics(ComPtr):
|
|
911
|
+
extends: IInspectable
|
|
912
|
+
_classid_ = 'Microsoft.UI.Content.IDesktopSiteBridgeStatics'
|
|
913
|
+
_iid_ = Guid('{e0b38daf-9cd4-50c5-83ee-c76e3cf34eba}')
|
|
914
|
+
@winrt_commethod(6)
|
|
915
|
+
def IsSupported(self) -> Boolean: ...
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
make_ready(__name__)
|