win32more-Microsoft.WindowsAppSDK 0.7.1.5.241107002__py2.py3-none-any.whl → 0.7.1.6.240829007__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.

Files changed (31) hide show
  1. win32more/Microsoft/Foundation/__init__.py +1 -1
  2. win32more/Microsoft/UI/Composition/Core/__init__.py +2 -2
  3. win32more/Microsoft/UI/Composition/Diagnostics/__init__.py +4 -4
  4. win32more/Microsoft/UI/Composition/Interactions/__init__.py +5 -5
  5. win32more/Microsoft/UI/Composition/Scenes/__init__.py +61 -61
  6. win32more/Microsoft/UI/Composition/SystemBackdrops/__init__.py +32 -32
  7. win32more/Microsoft/UI/Composition/__init__.py +103 -103
  8. win32more/Microsoft/UI/Content/__init__.py +39 -39
  9. win32more/Microsoft/UI/Dispatching/__init__.py +6 -6
  10. win32more/Microsoft/UI/Input/DragDrop/__init__.py +10 -10
  11. win32more/Microsoft/UI/Input/__init__.py +288 -66
  12. win32more/Microsoft/UI/Windowing/__init__.py +5 -5
  13. win32more/Microsoft/UI/Xaml/Automation/Peers/__init__.py +23 -0
  14. win32more/Microsoft/UI/Xaml/Controls/__init__.py +219 -3
  15. win32more/Microsoft/UI/Xaml/__init__.py +12 -2
  16. win32more/Microsoft/UI/__init__.py +8 -0
  17. win32more/Microsoft/Windows/ApplicationModel/Resources/__init__.py +1 -1
  18. win32more/Microsoft/Windows/Globalization/__init__.py +38 -0
  19. win32more/Microsoft/Windows/Management/Deployment/__init__.py +62 -1
  20. win32more/Microsoft/Windows/Storage/__init__.py +178 -0
  21. win32more/Microsoft/Windows/Widgets/__init__.py +1 -1
  22. win32more/appsdk/versioninfo.py +2 -2
  23. win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  24. win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  25. win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll +0 -0
  26. {win32more_microsoft_windowsappsdk-0.7.1.5.241107002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/METADATA +2 -1
  27. {win32more_microsoft_windowsappsdk-0.7.1.5.241107002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/RECORD +29 -29
  28. win32more/Microsoft/UI/Xaml/Core/Direct/__init__.py +0 -7
  29. win32more/Microsoft/Web/WebView2/Core/__init__.py +0 -4686
  30. {win32more_microsoft_windowsappsdk-0.7.1.5.241107002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/WHEEL +0 -0
  31. {win32more_microsoft_windowsappsdk-0.7.1.5.241107002.dist-info → win32more_microsoft_windowsappsdk-0.7.1.6.240829007.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +0 -0
@@ -14,13 +14,13 @@ class CharacterReceivedEventArgs(ComPtr):
14
14
  default_interface: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs
15
15
  _classid_ = 'Microsoft.UI.Input.CharacterReceivedEventArgs'
16
16
  @winrt_mixinmethod
17
- def get_KeyStatus(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
18
- @winrt_mixinmethod
19
17
  def put_Handled(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs, value: Boolean) -> Void: ...
20
18
  @winrt_mixinmethod
19
+ def get_Handled(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> Boolean: ...
20
+ @winrt_mixinmethod
21
21
  def get_KeyCode(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> UInt32: ...
22
22
  @winrt_mixinmethod
23
- def get_Handled(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> Boolean: ...
23
+ def get_KeyStatus(self: win32more.Microsoft.UI.Input.ICharacterReceivedEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
24
24
  Handled = property(get_Handled, put_Handled)
25
25
  KeyCode = property(get_KeyCode, None)
26
26
  KeyStatus = property(get_KeyStatus, None)
@@ -29,9 +29,9 @@ class ContextMenuKeyEventArgs(ComPtr):
29
29
  default_interface: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs
30
30
  _classid_ = 'Microsoft.UI.Input.ContextMenuKeyEventArgs'
31
31
  @winrt_mixinmethod
32
- def put_Handled(self: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs, value: Boolean) -> Void: ...
33
- @winrt_mixinmethod
34
32
  def get_Handled(self: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs) -> Boolean: ...
33
+ @winrt_mixinmethod
34
+ def put_Handled(self: win32more.Microsoft.UI.Input.IContextMenuKeyEventArgs, value: Boolean) -> Void: ...
35
35
  Handled = property(get_Handled, put_Handled)
36
36
  class CrossSlideThresholds(Structure):
37
37
  _name_ = 'Microsoft.UI.Input.CrossSlideThresholds'
@@ -44,10 +44,10 @@ class CrossSlidingEventArgs(ComPtr):
44
44
  default_interface: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs
45
45
  _classid_ = 'Microsoft.UI.Input.CrossSlidingEventArgs'
46
46
  @winrt_mixinmethod
47
- def get_CrossSlidingState(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
48
- @winrt_mixinmethod
49
47
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
50
48
  @winrt_mixinmethod
49
+ def get_CrossSlidingState(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
50
+ @winrt_mixinmethod
51
51
  def get_Position(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Windows.Foundation.Point: ...
52
52
  CrossSlidingState = property(get_CrossSlidingState, None)
53
53
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -65,10 +65,10 @@ class DraggingEventArgs(ComPtr):
65
65
  default_interface: win32more.Microsoft.UI.Input.IDraggingEventArgs
66
66
  _classid_ = 'Microsoft.UI.Input.DraggingEventArgs'
67
67
  @winrt_mixinmethod
68
- def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
69
- @winrt_mixinmethod
70
68
  def get_DraggingState(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.DraggingState: ...
71
69
  @winrt_mixinmethod
70
+ def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
71
+ @winrt_mixinmethod
72
72
  def get_Position(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Windows.Foundation.Point: ...
73
73
  DraggingState = property(get_DraggingState, None)
74
74
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -77,6 +77,41 @@ class DraggingState(Enum, Int32):
77
77
  Started = 0
78
78
  Continuing = 1
79
79
  Completed = 2
80
+ class EnteredMoveSizeEventArgs(ComPtr):
81
+ extends: IInspectable
82
+ default_interface: win32more.Microsoft.UI.Input.IEnteredMoveSizeEventArgs
83
+ _classid_ = 'Microsoft.UI.Input.EnteredMoveSizeEventArgs'
84
+ @winrt_mixinmethod
85
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IEnteredMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
86
+ @winrt_mixinmethod
87
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IEnteredMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
88
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
89
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
90
+ class EnteringMoveSizeEventArgs(ComPtr):
91
+ extends: IInspectable
92
+ default_interface: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs
93
+ _classid_ = 'Microsoft.UI.Input.EnteringMoveSizeEventArgs'
94
+ @winrt_mixinmethod
95
+ def put_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs, value: win32more.Microsoft.UI.WindowId) -> Void: ...
96
+ @winrt_mixinmethod
97
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
98
+ @winrt_mixinmethod
99
+ def get_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.WindowId: ...
100
+ @winrt_mixinmethod
101
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
102
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
103
+ MoveSizeWindowId = property(get_MoveSizeWindowId, put_MoveSizeWindowId)
104
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
105
+ class ExitedMoveSizeEventArgs(ComPtr):
106
+ extends: IInspectable
107
+ default_interface: win32more.Microsoft.UI.Input.IExitedMoveSizeEventArgs
108
+ _classid_ = 'Microsoft.UI.Input.ExitedMoveSizeEventArgs'
109
+ @winrt_mixinmethod
110
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IExitedMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
111
+ @winrt_mixinmethod
112
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IExitedMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
113
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
114
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
80
115
  class FocusChangedEventArgs(ComPtr):
81
116
  extends: IInspectable
82
117
  default_interface: win32more.Microsoft.UI.Input.IFocusChangedEventArgs
@@ -144,7 +179,7 @@ class GestureRecognizer(ComPtr):
144
179
  @winrt_activatemethod
145
180
  def CreateInstance(cls) -> win32more.Microsoft.UI.Input.GestureRecognizer: ...
146
181
  @winrt_mixinmethod
147
- def put_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
182
+ def put_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
148
183
  @winrt_mixinmethod
149
184
  def put_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
150
185
  @winrt_mixinmethod
@@ -174,9 +209,9 @@ class GestureRecognizer(ComPtr):
174
209
  @winrt_mixinmethod
175
210
  def get_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
176
211
  @winrt_mixinmethod
177
- def ProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
212
+ def put_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
178
213
  @winrt_mixinmethod
179
- def add_ManipulationStarted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationStartedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
214
+ def get_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
180
215
  @winrt_mixinmethod
181
216
  def put_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
182
217
  @winrt_mixinmethod
@@ -192,7 +227,7 @@ class GestureRecognizer(ComPtr):
192
227
  @winrt_mixinmethod
193
228
  def put_InertiaRotationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
194
229
  @winrt_mixinmethod
195
- def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
230
+ def get_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
196
231
  @winrt_mixinmethod
197
232
  def put_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
198
233
  @winrt_mixinmethod
@@ -208,9 +243,9 @@ class GestureRecognizer(ComPtr):
208
243
  @winrt_mixinmethod
209
244
  def get_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
210
245
  @winrt_mixinmethod
211
- def put_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
246
+ def remove_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
212
247
  @winrt_mixinmethod
213
- def CanBeDoubleTap(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
248
+ def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
214
249
  @winrt_mixinmethod
215
250
  def CompleteGesture(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
216
251
  @winrt_mixinmethod
@@ -220,7 +255,7 @@ class GestureRecognizer(ComPtr):
220
255
  @winrt_mixinmethod
221
256
  def ProcessMouseWheelEvent(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint, isShiftKeyDown: Boolean, isControlKeyDown: Boolean) -> Void: ...
222
257
  @winrt_mixinmethod
223
- def get_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
258
+ def ProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
224
259
  @winrt_mixinmethod
225
260
  def ProcessUpEvent(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
226
261
  @winrt_mixinmethod
@@ -240,7 +275,7 @@ class GestureRecognizer(ComPtr):
240
275
  @winrt_mixinmethod
241
276
  def remove_Dragging(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
242
277
  @winrt_mixinmethod
243
- def get_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
278
+ def add_ManipulationStarted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationStartedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
244
279
  @winrt_mixinmethod
245
280
  def remove_ManipulationStarted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
246
281
  @winrt_mixinmethod
@@ -254,7 +289,7 @@ class GestureRecognizer(ComPtr):
254
289
  @winrt_mixinmethod
255
290
  def add_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.ManipulationCompletedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
256
291
  @winrt_mixinmethod
257
- def remove_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
292
+ def CanBeDoubleTap(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
258
293
  @winrt_mixinmethod
259
294
  def add_CrossSliding(self: win32more.Microsoft.UI.Input.IGestureRecognizer, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.GestureRecognizer, win32more.Microsoft.UI.Input.CrossSlidingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
260
295
  @winrt_mixinmethod
@@ -310,10 +345,10 @@ class HoldingEventArgs(ComPtr):
310
345
  default_interface: win32more.Microsoft.UI.Input.IHoldingEventArgs
311
346
  _classid_ = 'Microsoft.UI.Input.HoldingEventArgs'
312
347
  @winrt_mixinmethod
313
- def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
314
- @winrt_mixinmethod
315
348
  def get_HoldingState(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.HoldingState: ...
316
349
  @winrt_mixinmethod
350
+ def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
351
+ @winrt_mixinmethod
317
352
  def get_Position(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Windows.Foundation.Point: ...
318
353
  HoldingState = property(get_HoldingState, None)
319
354
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -372,6 +407,41 @@ class IDraggingEventArgs(ComPtr):
372
407
  DraggingState = property(get_DraggingState, None)
373
408
  PointerDeviceType = property(get_PointerDeviceType, None)
374
409
  Position = property(get_Position, None)
410
+ class IEnteredMoveSizeEventArgs(ComPtr):
411
+ extends: IInspectable
412
+ _classid_ = 'Microsoft.UI.Input.IEnteredMoveSizeEventArgs'
413
+ _iid_ = Guid('{698d28fe-d325-59e0-9834-b10fc2f7ba67}')
414
+ @winrt_commethod(6)
415
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
416
+ @winrt_commethod(7)
417
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
418
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
419
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
420
+ class IEnteringMoveSizeEventArgs(ComPtr):
421
+ extends: IInspectable
422
+ _classid_ = 'Microsoft.UI.Input.IEnteringMoveSizeEventArgs'
423
+ _iid_ = Guid('{47c083b2-402b-51ec-8836-d48679fea695}')
424
+ @winrt_commethod(6)
425
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
426
+ @winrt_commethod(7)
427
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
428
+ @winrt_commethod(8)
429
+ def get_MoveSizeWindowId(self) -> win32more.Microsoft.UI.WindowId: ...
430
+ @winrt_commethod(9)
431
+ def put_MoveSizeWindowId(self, value: win32more.Microsoft.UI.WindowId) -> Void: ...
432
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
433
+ MoveSizeWindowId = property(get_MoveSizeWindowId, put_MoveSizeWindowId)
434
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
435
+ class IExitedMoveSizeEventArgs(ComPtr):
436
+ extends: IInspectable
437
+ _classid_ = 'Microsoft.UI.Input.IExitedMoveSizeEventArgs'
438
+ _iid_ = Guid('{df12a46e-daee-5dac-a678-d7d5e4d0893a}')
439
+ @winrt_commethod(6)
440
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
441
+ @winrt_commethod(7)
442
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
443
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
444
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
375
445
  class IFocusChangedEventArgs(ComPtr):
376
446
  extends: IInspectable
377
447
  _classid_ = 'Microsoft.UI.Input.IFocusChangedEventArgs'
@@ -841,6 +911,35 @@ class IInputNonClientPointerSource(ComPtr):
841
911
  PointerPressed = event(add_PointerPressed, remove_PointerPressed)
842
912
  PointerReleased = event(add_PointerReleased, remove_PointerReleased)
843
913
  RegionsChanged = event(add_RegionsChanged, remove_RegionsChanged)
914
+ class IInputNonClientPointerSource2(ComPtr):
915
+ extends: IInspectable
916
+ _classid_ = 'Microsoft.UI.Input.IInputNonClientPointerSource2'
917
+ _iid_ = Guid('{dd2b10c4-7de6-5c1d-b438-06ddc994058f}')
918
+ @winrt_commethod(6)
919
+ def add_EnteringMoveSize(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.EnteringMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
920
+ @winrt_commethod(7)
921
+ def remove_EnteringMoveSize(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
922
+ @winrt_commethod(8)
923
+ def add_EnteredMoveSize(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.EnteredMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
924
+ @winrt_commethod(9)
925
+ def remove_EnteredMoveSize(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
926
+ @winrt_commethod(10)
927
+ def add_WindowRectChanging(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.WindowRectChangingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
928
+ @winrt_commethod(11)
929
+ def remove_WindowRectChanging(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
930
+ @winrt_commethod(12)
931
+ def add_WindowRectChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.WindowRectChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
932
+ @winrt_commethod(13)
933
+ def remove_WindowRectChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
934
+ @winrt_commethod(14)
935
+ def add_ExitedMoveSize(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.ExitedMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
936
+ @winrt_commethod(15)
937
+ def remove_ExitedMoveSize(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
938
+ EnteredMoveSize = event(add_EnteredMoveSize, remove_EnteredMoveSize)
939
+ EnteringMoveSize = event(add_EnteringMoveSize, remove_EnteringMoveSize)
940
+ ExitedMoveSize = event(add_ExitedMoveSize, remove_ExitedMoveSize)
941
+ WindowRectChanged = event(add_WindowRectChanged, remove_WindowRectChanged)
942
+ WindowRectChanging = event(add_WindowRectChanging, remove_WindowRectChanging)
844
943
  class IInputNonClientPointerSourceStatics(ComPtr):
845
944
  extends: IInspectable
846
945
  _classid_ = 'Microsoft.UI.Input.IInputNonClientPointerSourceStatics'
@@ -1255,15 +1354,59 @@ class ITappedEventArgs(ComPtr):
1255
1354
  PointerDeviceType = property(get_PointerDeviceType, None)
1256
1355
  Position = property(get_Position, None)
1257
1356
  TapCount = property(get_TapCount, None)
1357
+ class IWindowRectChangedEventArgs(ComPtr):
1358
+ extends: IInspectable
1359
+ _classid_ = 'Microsoft.UI.Input.IWindowRectChangedEventArgs'
1360
+ _iid_ = Guid('{8a885d28-d2d9-5dda-9848-cdf247771037}')
1361
+ @winrt_commethod(6)
1362
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
1363
+ @winrt_commethod(7)
1364
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
1365
+ @winrt_commethod(8)
1366
+ def get_OldWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1367
+ @winrt_commethod(9)
1368
+ def get_NewWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1369
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
1370
+ NewWindowRect = property(get_NewWindowRect, None)
1371
+ OldWindowRect = property(get_OldWindowRect, None)
1372
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
1373
+ class IWindowRectChangingEventArgs(ComPtr):
1374
+ extends: IInspectable
1375
+ _classid_ = 'Microsoft.UI.Input.IWindowRectChangingEventArgs'
1376
+ _iid_ = Guid('{db13ed3c-debc-5855-8d70-5936fd813457}')
1377
+ @winrt_commethod(6)
1378
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
1379
+ @winrt_commethod(7)
1380
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
1381
+ @winrt_commethod(8)
1382
+ def get_OldWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1383
+ @winrt_commethod(9)
1384
+ def get_NewWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1385
+ @winrt_commethod(10)
1386
+ def put_NewWindowRect(self, value: win32more.Windows.Graphics.RectInt32) -> Void: ...
1387
+ @winrt_commethod(11)
1388
+ def get_AllowRectChange(self) -> Boolean: ...
1389
+ @winrt_commethod(12)
1390
+ def put_AllowRectChange(self, value: Boolean) -> Void: ...
1391
+ @winrt_commethod(13)
1392
+ def get_ShowWindow(self) -> Boolean: ...
1393
+ @winrt_commethod(14)
1394
+ def put_ShowWindow(self, value: Boolean) -> Void: ...
1395
+ AllowRectChange = property(get_AllowRectChange, put_AllowRectChange)
1396
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
1397
+ NewWindowRect = property(get_NewWindowRect, put_NewWindowRect)
1398
+ OldWindowRect = property(get_OldWindowRect, None)
1399
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
1400
+ ShowWindow = property(get_ShowWindow, put_ShowWindow)
1258
1401
  class InputActivationListener(ComPtr):
1259
1402
  extends: win32more.Microsoft.UI.Input.InputObject
1260
1403
  default_interface: win32more.Microsoft.UI.Input.IInputActivationListener
1261
1404
  _classid_ = 'Microsoft.UI.Input.InputActivationListener'
1262
1405
  @winrt_mixinmethod
1263
- def add_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputActivationListener, win32more.Microsoft.UI.Input.InputActivationListenerActivationChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1264
- @winrt_mixinmethod
1265
1406
  def get_State(self: win32more.Microsoft.UI.Input.IInputActivationListener) -> win32more.Microsoft.UI.Input.InputActivationState: ...
1266
1407
  @winrt_mixinmethod
1408
+ def add_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputActivationListener, win32more.Microsoft.UI.Input.InputActivationListenerActivationChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1409
+ @winrt_mixinmethod
1267
1410
  def remove_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1268
1411
  @winrt_classmethod
1269
1412
  def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputActivationListenerStatics2, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
@@ -1297,9 +1440,9 @@ class InputDesktopNamedResourceCursor(ComPtr):
1297
1440
  default_interface: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor
1298
1441
  _classid_ = 'Microsoft.UI.Input.InputDesktopNamedResourceCursor'
1299
1442
  @winrt_mixinmethod
1300
- def get_ResourceName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> hstr: ...
1301
- @winrt_mixinmethod
1302
1443
  def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> hstr: ...
1444
+ @winrt_mixinmethod
1445
+ def get_ResourceName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> hstr: ...
1303
1446
  @winrt_classmethod
1304
1447
  def Create(cls: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursorStatics, resourceName: hstr) -> win32more.Microsoft.UI.Input.InputDesktopNamedResourceCursor: ...
1305
1448
  @winrt_classmethod
@@ -1325,10 +1468,10 @@ class InputFocusController(ComPtr):
1325
1468
  default_interface: win32more.Microsoft.UI.Input.IInputFocusController
1326
1469
  _classid_ = 'Microsoft.UI.Input.InputFocusController'
1327
1470
  @winrt_mixinmethod
1328
- def TrySetFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
1329
- @winrt_mixinmethod
1330
1471
  def get_HasFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
1331
1472
  @winrt_mixinmethod
1473
+ def add_GotFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1474
+ @winrt_mixinmethod
1332
1475
  def remove_GotFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1333
1476
  @winrt_mixinmethod
1334
1477
  def add_LostFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
@@ -1341,7 +1484,7 @@ class InputFocusController(ComPtr):
1341
1484
  @winrt_mixinmethod
1342
1485
  def remove_NavigateFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusController2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1343
1486
  @winrt_mixinmethod
1344
- def add_GotFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusController, win32more.Microsoft.UI.Input.FocusChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1487
+ def TrySetFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
1345
1488
  @winrt_classmethod
1346
1489
  def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputFocusControllerStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputFocusController: ...
1347
1490
  HasFocus = property(get_HasFocus, None)
@@ -1355,11 +1498,11 @@ class InputFocusNavigationHost(ComPtr):
1355
1498
  @winrt_mixinmethod
1356
1499
  def add_DepartFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputFocusNavigationHost, win32more.Microsoft.UI.Input.FocusNavigationRequestEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1357
1500
  @winrt_mixinmethod
1358
- def NavigateFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
1501
+ def get_ContainsFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost) -> Boolean: ...
1359
1502
  @winrt_mixinmethod
1360
1503
  def remove_DepartFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1361
1504
  @winrt_mixinmethod
1362
- def get_ContainsFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost) -> Boolean: ...
1505
+ def NavigateFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
1363
1506
  @winrt_classmethod
1364
1507
  def GetForSiteBridge(cls: win32more.Microsoft.UI.Input.IInputFocusNavigationHostStatics, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
1365
1508
  ContainsFocus = property(get_ContainsFocus, None)
@@ -1373,15 +1516,15 @@ class InputKeyboardSource(ComPtr):
1373
1516
  @winrt_mixinmethod
1374
1517
  def add_CharacterReceived(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.CharacterReceivedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1375
1518
  @winrt_mixinmethod
1376
- def GetCurrentKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
1519
+ def remove_CharacterReceived(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1377
1520
  @winrt_mixinmethod
1378
1521
  def add_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.ContextMenuKeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1379
1522
  @winrt_mixinmethod
1380
- def remove_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1523
+ def GetCurrentKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
1381
1524
  @winrt_mixinmethod
1382
1525
  def add_KeyDown(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1383
1526
  @winrt_mixinmethod
1384
- def remove_CharacterReceived(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1527
+ def remove_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1385
1528
  @winrt_mixinmethod
1386
1529
  def add_KeyUp(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputKeyboardSource, win32more.Microsoft.UI.Input.KeyEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1387
1530
  @winrt_mixinmethod
@@ -1426,7 +1569,7 @@ class InputNonClientPointerSource(ComPtr):
1426
1569
  default_interface: win32more.Microsoft.UI.Input.IInputNonClientPointerSource
1427
1570
  _classid_ = 'Microsoft.UI.Input.InputNonClientPointerSource'
1428
1571
  @winrt_mixinmethod
1429
- def add_PointerMoved(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1572
+ def remove_ExitedMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1430
1573
  @winrt_mixinmethod
1431
1574
  def ClearRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> Void: ...
1432
1575
  @winrt_mixinmethod
@@ -1442,11 +1585,11 @@ class InputNonClientPointerSource(ComPtr):
1442
1585
  @winrt_mixinmethod
1443
1586
  def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1444
1587
  @winrt_mixinmethod
1445
- def add_PointerExited(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1588
+ def get_DispatcherQueue(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
1446
1589
  @winrt_mixinmethod
1447
1590
  def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1448
1591
  @winrt_mixinmethod
1449
- def remove_RegionsChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1592
+ def add_PointerMoved(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1450
1593
  @winrt_mixinmethod
1451
1594
  def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1452
1595
  @winrt_mixinmethod
@@ -1460,19 +1603,44 @@ class InputNonClientPointerSource(ComPtr):
1460
1603
  @winrt_mixinmethod
1461
1604
  def add_RegionsChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientRegionsChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1462
1605
  @winrt_mixinmethod
1463
- def get_DispatcherQueue(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
1606
+ def remove_RegionsChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1607
+ @winrt_mixinmethod
1608
+ def add_EnteringMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.EnteringMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1609
+ @winrt_mixinmethod
1610
+ def remove_EnteringMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1611
+ @winrt_mixinmethod
1612
+ def add_EnteredMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.EnteredMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1613
+ @winrt_mixinmethod
1614
+ def remove_EnteredMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1615
+ @winrt_mixinmethod
1616
+ def add_WindowRectChanging(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.WindowRectChangingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1617
+ @winrt_mixinmethod
1618
+ def remove_WindowRectChanging(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1619
+ @winrt_mixinmethod
1620
+ def add_WindowRectChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.WindowRectChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1621
+ @winrt_mixinmethod
1622
+ def remove_WindowRectChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1623
+ @winrt_mixinmethod
1624
+ def add_ExitedMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.ExitedMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1625
+ @winrt_mixinmethod
1626
+ def add_PointerExited(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.NonClientPointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1464
1627
  @winrt_mixinmethod
1465
1628
  def ClearAllRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> Void: ...
1466
1629
  @winrt_classmethod
1467
1630
  def GetForWindowId(cls: win32more.Microsoft.UI.Input.IInputNonClientPointerSourceStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputNonClientPointerSource: ...
1468
1631
  DispatcherQueue = property(get_DispatcherQueue, None)
1469
1632
  CaptionTapped = event(add_CaptionTapped, remove_CaptionTapped)
1633
+ EnteredMoveSize = event(add_EnteredMoveSize, remove_EnteredMoveSize)
1634
+ EnteringMoveSize = event(add_EnteringMoveSize, remove_EnteringMoveSize)
1635
+ ExitedMoveSize = event(add_ExitedMoveSize, remove_ExitedMoveSize)
1470
1636
  PointerEntered = event(add_PointerEntered, remove_PointerEntered)
1471
1637
  PointerExited = event(add_PointerExited, remove_PointerExited)
1472
1638
  PointerMoved = event(add_PointerMoved, remove_PointerMoved)
1473
1639
  PointerPressed = event(add_PointerPressed, remove_PointerPressed)
1474
1640
  PointerReleased = event(add_PointerReleased, remove_PointerReleased)
1475
1641
  RegionsChanged = event(add_RegionsChanged, remove_RegionsChanged)
1642
+ WindowRectChanged = event(add_WindowRectChanged, remove_WindowRectChanged)
1643
+ WindowRectChanging = event(add_WindowRectChanging, remove_WindowRectChanging)
1476
1644
  class InputObject(ComPtr):
1477
1645
  extends: IInspectable
1478
1646
  default_interface: win32more.Microsoft.UI.Input.IInputObject
@@ -1487,8 +1655,6 @@ class InputPointerSource(ComPtr):
1487
1655
  @winrt_mixinmethod
1488
1656
  def add_PointerMoved(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1489
1657
  @winrt_mixinmethod
1490
- def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
1491
- @winrt_mixinmethod
1492
1658
  def get_DeviceKinds(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputPointerSourceDeviceKinds: ...
1493
1659
  @winrt_mixinmethod
1494
1660
  def add_PointerCaptureLost(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
@@ -1503,7 +1669,7 @@ class InputPointerSource(ComPtr):
1503
1669
  @winrt_mixinmethod
1504
1670
  def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1505
1671
  @winrt_mixinmethod
1506
- def remove_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1672
+ def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
1507
1673
  @winrt_mixinmethod
1508
1674
  def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1509
1675
  @winrt_mixinmethod
@@ -1529,6 +1695,8 @@ class InputPointerSource(ComPtr):
1529
1695
  @winrt_mixinmethod
1530
1696
  def add_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputPointerSource, win32more.Microsoft.UI.Input.PointerEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
1531
1697
  @winrt_mixinmethod
1698
+ def remove_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1699
+ @winrt_mixinmethod
1532
1700
  def get_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputCursor: ...
1533
1701
  @winrt_classmethod
1534
1702
  def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputPointerSourceStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPointerSource: ...
@@ -1586,13 +1754,13 @@ class KeyEventArgs(ComPtr):
1586
1754
  default_interface: win32more.Microsoft.UI.Input.IKeyEventArgs
1587
1755
  _classid_ = 'Microsoft.UI.Input.KeyEventArgs'
1588
1756
  @winrt_mixinmethod
1589
- def put_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs, value: Boolean) -> Void: ...
1757
+ def get_Timestamp(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> UInt64: ...
1590
1758
  @winrt_mixinmethod
1591
- def get_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> Boolean: ...
1759
+ def put_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs, value: Boolean) -> Void: ...
1592
1760
  @winrt_mixinmethod
1593
1761
  def get_KeyStatus(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
1594
1762
  @winrt_mixinmethod
1595
- def get_Timestamp(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> UInt64: ...
1763
+ def get_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> Boolean: ...
1596
1764
  @winrt_mixinmethod
1597
1765
  def get_VirtualKey(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Windows.System.VirtualKey: ...
1598
1766
  Handled = property(get_Handled, put_Handled)
@@ -1604,12 +1772,12 @@ class ManipulationCompletedEventArgs(ComPtr):
1604
1772
  default_interface: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs
1605
1773
  _classid_ = 'Microsoft.UI.Input.ManipulationCompletedEventArgs'
1606
1774
  @winrt_mixinmethod
1775
+ def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1776
+ @winrt_mixinmethod
1607
1777
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1608
1778
  @winrt_mixinmethod
1609
1779
  def get_Position(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Windows.Foundation.Point: ...
1610
1780
  @winrt_mixinmethod
1611
- def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1612
- @winrt_mixinmethod
1613
1781
  def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
1614
1782
  Cumulative = property(get_Cumulative, None)
1615
1783
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -1626,12 +1794,12 @@ class ManipulationInertiaStartingEventArgs(ComPtr):
1626
1794
  default_interface: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs
1627
1795
  _classid_ = 'Microsoft.UI.Input.ManipulationInertiaStartingEventArgs'
1628
1796
  @winrt_mixinmethod
1629
- def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1630
- @winrt_mixinmethod
1631
1797
  def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1632
1798
  @winrt_mixinmethod
1633
1799
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1634
1800
  @winrt_mixinmethod
1801
+ def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1802
+ @winrt_mixinmethod
1635
1803
  def get_Position(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Windows.Foundation.Point: ...
1636
1804
  @winrt_mixinmethod
1637
1805
  def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
@@ -1645,11 +1813,11 @@ class ManipulationStartedEventArgs(ComPtr):
1645
1813
  default_interface: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs
1646
1814
  _classid_ = 'Microsoft.UI.Input.ManipulationStartedEventArgs'
1647
1815
  @winrt_mixinmethod
1648
- def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
1649
- @winrt_mixinmethod
1650
1816
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1651
1817
  @winrt_mixinmethod
1652
1818
  def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1819
+ @winrt_mixinmethod
1820
+ def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
1653
1821
  Cumulative = property(get_Cumulative, None)
1654
1822
  PointerDeviceType = property(get_PointerDeviceType, None)
1655
1823
  Position = property(get_Position, None)
@@ -1682,25 +1850,35 @@ class MouseWheelParameters(ComPtr):
1682
1850
  default_interface: win32more.Microsoft.UI.Input.IMouseWheelParameters
1683
1851
  _classid_ = 'Microsoft.UI.Input.MouseWheelParameters'
1684
1852
  @winrt_mixinmethod
1685
- def get_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1853
+ def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1686
1854
  @winrt_mixinmethod
1687
1855
  def put_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
1688
1856
  @winrt_mixinmethod
1689
- def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1857
+ def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1690
1858
  @winrt_mixinmethod
1691
1859
  def put_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
1692
1860
  @winrt_mixinmethod
1693
- def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1861
+ def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1694
1862
  @winrt_mixinmethod
1695
1863
  def put_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
1696
1864
  @winrt_mixinmethod
1697
- def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1865
+ def get_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1698
1866
  @winrt_mixinmethod
1699
1867
  def put_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
1700
1868
  CharTranslation = property(get_CharTranslation, put_CharTranslation)
1701
1869
  DeltaRotationAngle = property(get_DeltaRotationAngle, put_DeltaRotationAngle)
1702
1870
  DeltaScale = property(get_DeltaScale, put_DeltaScale)
1703
1871
  PageTranslation = property(get_PageTranslation, put_PageTranslation)
1872
+ class MoveSizeOperation(Enum, Int32):
1873
+ Move = 0
1874
+ SizeBottom = 1
1875
+ SizeBottomLeft = 2
1876
+ SizeBottomRight = 3
1877
+ SizeLeft = 4
1878
+ SizeRight = 5
1879
+ SizeTop = 6
1880
+ SizeTopLeft = 7
1881
+ SizeTopRight = 8
1704
1882
  class NonClientCaptionTappedEventArgs(ComPtr):
1705
1883
  extends: IInspectable
1706
1884
  default_interface: win32more.Microsoft.UI.Input.INonClientCaptionTappedEventArgs
@@ -1716,10 +1894,10 @@ class NonClientPointerEventArgs(ComPtr):
1716
1894
  default_interface: win32more.Microsoft.UI.Input.INonClientPointerEventArgs
1717
1895
  _classid_ = 'Microsoft.UI.Input.NonClientPointerEventArgs'
1718
1896
  @winrt_mixinmethod
1719
- def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1720
- @winrt_mixinmethod
1721
1897
  def get_Point(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Windows.Foundation.Point: ...
1722
1898
  @winrt_mixinmethod
1899
+ def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1900
+ @winrt_mixinmethod
1723
1901
  def get_RegionKind(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.NonClientRegionKind: ...
1724
1902
  @winrt_mixinmethod
1725
1903
  def get_IsPointInRegion(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> Boolean: ...
@@ -1763,9 +1941,9 @@ class PointerEventArgs(ComPtr):
1763
1941
  default_interface: win32more.Microsoft.UI.Input.IPointerEventArgs
1764
1942
  _classid_ = 'Microsoft.UI.Input.PointerEventArgs'
1765
1943
  @winrt_mixinmethod
1766
- def get_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> Boolean: ...
1944
+ def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
1767
1945
  @winrt_mixinmethod
1768
- def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
1946
+ def get_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> Boolean: ...
1769
1947
  @winrt_mixinmethod
1770
1948
  def put_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs, value: Boolean) -> Void: ...
1771
1949
  @winrt_mixinmethod
@@ -1773,7 +1951,7 @@ class PointerEventArgs(ComPtr):
1773
1951
  @winrt_mixinmethod
1774
1952
  def GetIntermediatePoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
1775
1953
  @winrt_mixinmethod
1776
- def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
1954
+ def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
1777
1955
  CurrentPoint = property(get_CurrentPoint, None)
1778
1956
  Handled = property(get_Handled, put_Handled)
1779
1957
  KeyModifiers = property(get_KeyModifiers, None)
@@ -1782,7 +1960,7 @@ class PointerPoint(ComPtr):
1782
1960
  default_interface: win32more.Microsoft.UI.Input.IPointerPoint
1783
1961
  _classid_ = 'Microsoft.UI.Input.PointerPoint'
1784
1962
  @winrt_mixinmethod
1785
- def get_Timestamp(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt64: ...
1963
+ def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
1786
1964
  @winrt_mixinmethod
1787
1965
  def get_IsInContact(self: win32more.Microsoft.UI.Input.IPointerPoint) -> Boolean: ...
1788
1966
  @winrt_mixinmethod
@@ -1794,7 +1972,7 @@ class PointerPoint(ComPtr):
1794
1972
  @winrt_mixinmethod
1795
1973
  def get_Properties(self: win32more.Microsoft.UI.Input.IPointerPoint) -> win32more.Microsoft.UI.Input.PointerPointProperties: ...
1796
1974
  @winrt_mixinmethod
1797
- def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
1975
+ def get_Timestamp(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt64: ...
1798
1976
  @winrt_mixinmethod
1799
1977
  def GetTransformedPoint(self: win32more.Microsoft.UI.Input.IPointerPoint, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Microsoft.UI.Input.PointerPoint: ...
1800
1978
  FrameId = property(get_FrameId, None)
@@ -1809,7 +1987,7 @@ class PointerPointProperties(ComPtr):
1809
1987
  default_interface: win32more.Microsoft.UI.Input.IPointerPointProperties
1810
1988
  _classid_ = 'Microsoft.UI.Input.PointerPointProperties'
1811
1989
  @winrt_mixinmethod
1812
- def get_MouseWheelDelta(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Int32: ...
1990
+ def get_IsPrimary(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1813
1991
  @winrt_mixinmethod
1814
1992
  def get_IsBarrelButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1815
1993
  @winrt_mixinmethod
@@ -1827,7 +2005,7 @@ class PointerPointProperties(ComPtr):
1827
2005
  @winrt_mixinmethod
1828
2006
  def get_IsMiddleButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1829
2007
  @winrt_mixinmethod
1830
- def get_IsPrimary(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
2008
+ def get_ContactRect(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Windows.Foundation.Rect: ...
1831
2009
  @winrt_mixinmethod
1832
2010
  def get_IsRightButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1833
2011
  @winrt_mixinmethod
@@ -1835,7 +2013,7 @@ class PointerPointProperties(ComPtr):
1835
2013
  @winrt_mixinmethod
1836
2014
  def get_IsXButton2Pressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1837
2015
  @winrt_mixinmethod
1838
- def get_ContactRect(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Windows.Foundation.Rect: ...
2016
+ def get_MouseWheelDelta(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Int32: ...
1839
2017
  @winrt_mixinmethod
1840
2018
  def get_Orientation(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Single: ...
1841
2019
  @winrt_mixinmethod
@@ -1877,11 +2055,11 @@ class PointerPredictor(ComPtr):
1877
2055
  default_interface: win32more.Microsoft.UI.Input.IPointerPredictor
1878
2056
  _classid_ = 'Microsoft.UI.Input.PointerPredictor'
1879
2057
  @winrt_mixinmethod
1880
- def get_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor) -> win32more.Windows.Foundation.TimeSpan: ...
2058
+ def GetPredictedPoints(self: win32more.Microsoft.UI.Input.IPointerPredictor, point: win32more.Microsoft.UI.Input.PointerPoint) -> ReceiveArray[win32more.Microsoft.UI.Input.PointerPoint]: ...
1881
2059
  @winrt_mixinmethod
1882
2060
  def put_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
1883
2061
  @winrt_mixinmethod
1884
- def GetPredictedPoints(self: win32more.Microsoft.UI.Input.IPointerPredictor, point: win32more.Microsoft.UI.Input.PointerPoint) -> ReceiveArray[win32more.Microsoft.UI.Input.PointerPoint]: ...
2062
+ def get_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor) -> win32more.Windows.Foundation.TimeSpan: ...
1885
2063
  @winrt_mixinmethod
1886
2064
  def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
1887
2065
  @winrt_classmethod
@@ -1914,10 +2092,10 @@ class TappedEventArgs(ComPtr):
1914
2092
  default_interface: win32more.Microsoft.UI.Input.ITappedEventArgs
1915
2093
  _classid_ = 'Microsoft.UI.Input.TappedEventArgs'
1916
2094
  @winrt_mixinmethod
1917
- def get_Position(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Windows.Foundation.Point: ...
1918
- @winrt_mixinmethod
1919
2095
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1920
2096
  @winrt_mixinmethod
2097
+ def get_Position(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Windows.Foundation.Point: ...
2098
+ @winrt_mixinmethod
1921
2099
  def get_TapCount(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> UInt32: ...
1922
2100
  PointerDeviceType = property(get_PointerDeviceType, None)
1923
2101
  Position = property(get_Position, None)
@@ -1926,6 +2104,50 @@ class VirtualKeyStates(Enum, UInt32):
1926
2104
  None_ = 0
1927
2105
  Down = 1
1928
2106
  Locked = 2
2107
+ class WindowRectChangedEventArgs(ComPtr):
2108
+ extends: IInspectable
2109
+ default_interface: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs
2110
+ _classid_ = 'Microsoft.UI.Input.WindowRectChangedEventArgs'
2111
+ @winrt_mixinmethod
2112
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
2113
+ @winrt_mixinmethod
2114
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
2115
+ @winrt_mixinmethod
2116
+ def get_OldWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2117
+ @winrt_mixinmethod
2118
+ def get_NewWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2119
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
2120
+ NewWindowRect = property(get_NewWindowRect, None)
2121
+ OldWindowRect = property(get_OldWindowRect, None)
2122
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
2123
+ class WindowRectChangingEventArgs(ComPtr):
2124
+ extends: IInspectable
2125
+ default_interface: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs
2126
+ _classid_ = 'Microsoft.UI.Input.WindowRectChangingEventArgs'
2127
+ @winrt_mixinmethod
2128
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
2129
+ @winrt_mixinmethod
2130
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
2131
+ @winrt_mixinmethod
2132
+ def get_OldWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2133
+ @winrt_mixinmethod
2134
+ def get_NewWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2135
+ @winrt_mixinmethod
2136
+ def put_NewWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs, value: win32more.Windows.Graphics.RectInt32) -> Void: ...
2137
+ @winrt_mixinmethod
2138
+ def get_AllowRectChange(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> Boolean: ...
2139
+ @winrt_mixinmethod
2140
+ def put_AllowRectChange(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs, value: Boolean) -> Void: ...
2141
+ @winrt_mixinmethod
2142
+ def get_ShowWindow(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> Boolean: ...
2143
+ @winrt_mixinmethod
2144
+ def put_ShowWindow(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs, value: Boolean) -> Void: ...
2145
+ AllowRectChange = property(get_AllowRectChange, put_AllowRectChange)
2146
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
2147
+ NewWindowRect = property(get_NewWindowRect, put_NewWindowRect)
2148
+ OldWindowRect = property(get_OldWindowRect, None)
2149
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
2150
+ ShowWindow = property(get_ShowWindow, put_ShowWindow)
1929
2151
 
1930
2152
 
1931
2153
  make_ready(__name__)