win32more-Microsoft.WindowsAppSDK 0.6.1.5.250108004__py2.py3-none-any.whl → 0.6.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 +292 -70
  12. win32more/Microsoft/UI/Windowing/__init__.py +6 -6
  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.6.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.6.1.6.240829007.dist-info}/METADATA +2 -1
  27. {win32more_microsoft_windowsappsdk-0.6.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.6.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 -4685
  30. {win32more_microsoft_windowsappsdk-0.6.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.6.1.6.240829007.dist-info}/WHEEL +0 -0
  31. {win32more_microsoft_windowsappsdk-0.6.1.5.250108004.dist-info → win32more_microsoft_windowsappsdk-0.6.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
  SelectionStart: Single
@@ -43,10 +43,10 @@ class CrossSlidingEventArgs(ComPtr):
43
43
  default_interface: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs
44
44
  _classid_ = 'Microsoft.UI.Input.CrossSlidingEventArgs'
45
45
  @winrt_mixinmethod
46
- def get_CrossSlidingState(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
47
- @winrt_mixinmethod
48
46
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
49
47
  @winrt_mixinmethod
48
+ def get_CrossSlidingState(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Microsoft.UI.Input.CrossSlidingState: ...
49
+ @winrt_mixinmethod
50
50
  def get_Position(self: win32more.Microsoft.UI.Input.ICrossSlidingEventArgs) -> win32more.Windows.Foundation.Point: ...
51
51
  CrossSlidingState = property(get_CrossSlidingState, None)
52
52
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -64,10 +64,10 @@ class DraggingEventArgs(ComPtr):
64
64
  default_interface: win32more.Microsoft.UI.Input.IDraggingEventArgs
65
65
  _classid_ = 'Microsoft.UI.Input.DraggingEventArgs'
66
66
  @winrt_mixinmethod
67
- def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
68
- @winrt_mixinmethod
69
67
  def get_DraggingState(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.DraggingState: ...
70
68
  @winrt_mixinmethod
69
+ def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
70
+ @winrt_mixinmethod
71
71
  def get_Position(self: win32more.Microsoft.UI.Input.IDraggingEventArgs) -> win32more.Windows.Foundation.Point: ...
72
72
  DraggingState = property(get_DraggingState, None)
73
73
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -76,6 +76,41 @@ class DraggingState(Enum, Int32):
76
76
  Started = 0
77
77
  Continuing = 1
78
78
  Completed = 2
79
+ class EnteredMoveSizeEventArgs(ComPtr):
80
+ extends: IInspectable
81
+ default_interface: win32more.Microsoft.UI.Input.IEnteredMoveSizeEventArgs
82
+ _classid_ = 'Microsoft.UI.Input.EnteredMoveSizeEventArgs'
83
+ @winrt_mixinmethod
84
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IEnteredMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
85
+ @winrt_mixinmethod
86
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IEnteredMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
87
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
88
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
89
+ class EnteringMoveSizeEventArgs(ComPtr):
90
+ extends: IInspectable
91
+ default_interface: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs
92
+ _classid_ = 'Microsoft.UI.Input.EnteringMoveSizeEventArgs'
93
+ @winrt_mixinmethod
94
+ def put_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs, value: win32more.Microsoft.UI.WindowId) -> Void: ...
95
+ @winrt_mixinmethod
96
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
97
+ @winrt_mixinmethod
98
+ def get_MoveSizeWindowId(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Microsoft.UI.WindowId: ...
99
+ @winrt_mixinmethod
100
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IEnteringMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
101
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
102
+ MoveSizeWindowId = property(get_MoveSizeWindowId, put_MoveSizeWindowId)
103
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
104
+ class ExitedMoveSizeEventArgs(ComPtr):
105
+ extends: IInspectable
106
+ default_interface: win32more.Microsoft.UI.Input.IExitedMoveSizeEventArgs
107
+ _classid_ = 'Microsoft.UI.Input.ExitedMoveSizeEventArgs'
108
+ @winrt_mixinmethod
109
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IExitedMoveSizeEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
110
+ @winrt_mixinmethod
111
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IExitedMoveSizeEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
112
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
113
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
79
114
  class FocusChangedEventArgs(ComPtr):
80
115
  extends: IInspectable
81
116
  default_interface: win32more.Microsoft.UI.Input.IFocusChangedEventArgs
@@ -143,7 +178,7 @@ class GestureRecognizer(ComPtr):
143
178
  @winrt_activatemethod
144
179
  def CreateInstance(cls) -> win32more.Microsoft.UI.Input.GestureRecognizer: ...
145
180
  @winrt_mixinmethod
146
- def put_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
181
+ def put_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
147
182
  @winrt_mixinmethod
148
183
  def put_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
149
184
  @winrt_mixinmethod
@@ -173,9 +208,9 @@ class GestureRecognizer(ComPtr):
173
208
  @winrt_mixinmethod
174
209
  def get_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
175
210
  @winrt_mixinmethod
176
- def ProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
211
+ def put_PivotRadius(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
177
212
  @winrt_mixinmethod
178
- 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: ...
213
+ def get_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
179
214
  @winrt_mixinmethod
180
215
  def put_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
181
216
  @winrt_mixinmethod
@@ -191,7 +226,7 @@ class GestureRecognizer(ComPtr):
191
226
  @winrt_mixinmethod
192
227
  def put_InertiaRotationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
193
228
  @winrt_mixinmethod
194
- def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
229
+ def get_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
195
230
  @winrt_mixinmethod
196
231
  def put_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Single) -> Void: ...
197
232
  @winrt_mixinmethod
@@ -207,9 +242,9 @@ class GestureRecognizer(ComPtr):
207
242
  @winrt_mixinmethod
208
243
  def get_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
209
244
  @winrt_mixinmethod
210
- def put_ShowGestureFeedback(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: Boolean) -> Void: ...
245
+ def remove_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
211
246
  @winrt_mixinmethod
212
- def CanBeDoubleTap(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
247
+ def get_InertiaTranslationDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
213
248
  @winrt_mixinmethod
214
249
  def CompleteGesture(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
215
250
  @winrt_mixinmethod
@@ -219,7 +254,7 @@ class GestureRecognizer(ComPtr):
219
254
  @winrt_mixinmethod
220
255
  def ProcessMouseWheelEvent(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint, isShiftKeyDown: Boolean, isControlKeyDown: Boolean) -> Void: ...
221
256
  @winrt_mixinmethod
222
- def get_InertiaExpansionDeceleration(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Single: ...
257
+ def ProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Void: ...
223
258
  @winrt_mixinmethod
224
259
  def ProcessUpEvent(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Void: ...
225
260
  @winrt_mixinmethod
@@ -239,7 +274,7 @@ class GestureRecognizer(ComPtr):
239
274
  @winrt_mixinmethod
240
275
  def remove_Dragging(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
241
276
  @winrt_mixinmethod
242
- def get_AutoProcessInertia(self: win32more.Microsoft.UI.Input.IGestureRecognizer) -> Boolean: ...
277
+ 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: ...
243
278
  @winrt_mixinmethod
244
279
  def remove_ManipulationStarted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
245
280
  @winrt_mixinmethod
@@ -253,7 +288,7 @@ class GestureRecognizer(ComPtr):
253
288
  @winrt_mixinmethod
254
289
  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: ...
255
290
  @winrt_mixinmethod
256
- def remove_ManipulationCompleted(self: win32more.Microsoft.UI.Input.IGestureRecognizer, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
291
+ def CanBeDoubleTap(self: win32more.Microsoft.UI.Input.IGestureRecognizer, value: win32more.Microsoft.UI.Input.PointerPoint) -> Boolean: ...
257
292
  @winrt_mixinmethod
258
293
  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: ...
259
294
  @winrt_mixinmethod
@@ -276,11 +311,11 @@ class GestureRecognizer(ComPtr):
276
311
  PivotCenter = property(get_PivotCenter, put_PivotCenter)
277
312
  PivotRadius = property(get_PivotRadius, put_PivotRadius)
278
313
  ShowGestureFeedback = property(get_ShowGestureFeedback, put_ShowGestureFeedback)
279
- ManipulationStarted = event()
280
314
  Tapped = event()
281
315
  RightTapped = event()
282
316
  Holding = event()
283
317
  Dragging = event()
318
+ ManipulationStarted = event()
284
319
  ManipulationUpdated = event()
285
320
  ManipulationInertiaStarting = event()
286
321
  ManipulationCompleted = event()
@@ -309,10 +344,10 @@ class HoldingEventArgs(ComPtr):
309
344
  default_interface: win32more.Microsoft.UI.Input.IHoldingEventArgs
310
345
  _classid_ = 'Microsoft.UI.Input.HoldingEventArgs'
311
346
  @winrt_mixinmethod
312
- def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
313
- @winrt_mixinmethod
314
347
  def get_HoldingState(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.HoldingState: ...
315
348
  @winrt_mixinmethod
349
+ def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
350
+ @winrt_mixinmethod
316
351
  def get_Position(self: win32more.Microsoft.UI.Input.IHoldingEventArgs) -> win32more.Windows.Foundation.Point: ...
317
352
  HoldingState = property(get_HoldingState, None)
318
353
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -371,6 +406,41 @@ class IDraggingEventArgs(ComPtr):
371
406
  DraggingState = property(get_DraggingState, None)
372
407
  PointerDeviceType = property(get_PointerDeviceType, None)
373
408
  Position = property(get_Position, None)
409
+ class IEnteredMoveSizeEventArgs(ComPtr):
410
+ extends: IInspectable
411
+ _classid_ = 'Microsoft.UI.Input.IEnteredMoveSizeEventArgs'
412
+ _iid_ = Guid('{698d28fe-d325-59e0-9834-b10fc2f7ba67}')
413
+ @winrt_commethod(6)
414
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
415
+ @winrt_commethod(7)
416
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
417
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
418
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
419
+ class IEnteringMoveSizeEventArgs(ComPtr):
420
+ extends: IInspectable
421
+ _classid_ = 'Microsoft.UI.Input.IEnteringMoveSizeEventArgs'
422
+ _iid_ = Guid('{47c083b2-402b-51ec-8836-d48679fea695}')
423
+ @winrt_commethod(6)
424
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
425
+ @winrt_commethod(7)
426
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
427
+ @winrt_commethod(8)
428
+ def get_MoveSizeWindowId(self) -> win32more.Microsoft.UI.WindowId: ...
429
+ @winrt_commethod(9)
430
+ def put_MoveSizeWindowId(self, value: win32more.Microsoft.UI.WindowId) -> Void: ...
431
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
432
+ MoveSizeWindowId = property(get_MoveSizeWindowId, put_MoveSizeWindowId)
433
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
434
+ class IExitedMoveSizeEventArgs(ComPtr):
435
+ extends: IInspectable
436
+ _classid_ = 'Microsoft.UI.Input.IExitedMoveSizeEventArgs'
437
+ _iid_ = Guid('{df12a46e-daee-5dac-a678-d7d5e4d0893a}')
438
+ @winrt_commethod(6)
439
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
440
+ @winrt_commethod(7)
441
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
442
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
443
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
374
444
  class IFocusChangedEventArgs(ComPtr):
375
445
  extends: IInspectable
376
446
  _classid_ = 'Microsoft.UI.Input.IFocusChangedEventArgs'
@@ -840,6 +910,35 @@ class IInputNonClientPointerSource(ComPtr):
840
910
  PointerPressed = event()
841
911
  PointerReleased = event()
842
912
  RegionsChanged = event()
913
+ class IInputNonClientPointerSource2(ComPtr):
914
+ extends: IInspectable
915
+ _classid_ = 'Microsoft.UI.Input.IInputNonClientPointerSource2'
916
+ _iid_ = Guid('{dd2b10c4-7de6-5c1d-b438-06ddc994058f}')
917
+ @winrt_commethod(6)
918
+ def add_EnteringMoveSize(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.EnteringMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
919
+ @winrt_commethod(7)
920
+ def remove_EnteringMoveSize(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
921
+ @winrt_commethod(8)
922
+ def add_EnteredMoveSize(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.EnteredMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
923
+ @winrt_commethod(9)
924
+ def remove_EnteredMoveSize(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
925
+ @winrt_commethod(10)
926
+ def add_WindowRectChanging(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.WindowRectChangingEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
927
+ @winrt_commethod(11)
928
+ def remove_WindowRectChanging(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
929
+ @winrt_commethod(12)
930
+ def add_WindowRectChanged(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.WindowRectChangedEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
931
+ @winrt_commethod(13)
932
+ def remove_WindowRectChanged(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
933
+ @winrt_commethod(14)
934
+ def add_ExitedMoveSize(self, handler: win32more.Windows.Foundation.TypedEventHandler[win32more.Microsoft.UI.Input.InputNonClientPointerSource, win32more.Microsoft.UI.Input.ExitedMoveSizeEventArgs]) -> win32more.Windows.Foundation.EventRegistrationToken: ...
935
+ @winrt_commethod(15)
936
+ def remove_ExitedMoveSize(self, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
937
+ EnteringMoveSize = event()
938
+ EnteredMoveSize = event()
939
+ WindowRectChanging = event()
940
+ WindowRectChanged = event()
941
+ ExitedMoveSize = event()
843
942
  class IInputNonClientPointerSourceStatics(ComPtr):
844
943
  extends: IInspectable
845
944
  _classid_ = 'Microsoft.UI.Input.IInputNonClientPointerSourceStatics'
@@ -1254,15 +1353,59 @@ class ITappedEventArgs(ComPtr):
1254
1353
  PointerDeviceType = property(get_PointerDeviceType, None)
1255
1354
  Position = property(get_Position, None)
1256
1355
  TapCount = property(get_TapCount, None)
1356
+ class IWindowRectChangedEventArgs(ComPtr):
1357
+ extends: IInspectable
1358
+ _classid_ = 'Microsoft.UI.Input.IWindowRectChangedEventArgs'
1359
+ _iid_ = Guid('{8a885d28-d2d9-5dda-9848-cdf247771037}')
1360
+ @winrt_commethod(6)
1361
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
1362
+ @winrt_commethod(7)
1363
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
1364
+ @winrt_commethod(8)
1365
+ def get_OldWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1366
+ @winrt_commethod(9)
1367
+ def get_NewWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1368
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
1369
+ NewWindowRect = property(get_NewWindowRect, None)
1370
+ OldWindowRect = property(get_OldWindowRect, None)
1371
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
1372
+ class IWindowRectChangingEventArgs(ComPtr):
1373
+ extends: IInspectable
1374
+ _classid_ = 'Microsoft.UI.Input.IWindowRectChangingEventArgs'
1375
+ _iid_ = Guid('{db13ed3c-debc-5855-8d70-5936fd813457}')
1376
+ @winrt_commethod(6)
1377
+ def get_PointerScreenPoint(self) -> win32more.Windows.Graphics.PointInt32: ...
1378
+ @winrt_commethod(7)
1379
+ def get_MoveSizeOperation(self) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
1380
+ @winrt_commethod(8)
1381
+ def get_OldWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1382
+ @winrt_commethod(9)
1383
+ def get_NewWindowRect(self) -> win32more.Windows.Graphics.RectInt32: ...
1384
+ @winrt_commethod(10)
1385
+ def put_NewWindowRect(self, value: win32more.Windows.Graphics.RectInt32) -> Void: ...
1386
+ @winrt_commethod(11)
1387
+ def get_AllowRectChange(self) -> Boolean: ...
1388
+ @winrt_commethod(12)
1389
+ def put_AllowRectChange(self, value: Boolean) -> Void: ...
1390
+ @winrt_commethod(13)
1391
+ def get_ShowWindow(self) -> Boolean: ...
1392
+ @winrt_commethod(14)
1393
+ def put_ShowWindow(self, value: Boolean) -> Void: ...
1394
+ AllowRectChange = property(get_AllowRectChange, put_AllowRectChange)
1395
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
1396
+ NewWindowRect = property(get_NewWindowRect, put_NewWindowRect)
1397
+ OldWindowRect = property(get_OldWindowRect, None)
1398
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
1399
+ ShowWindow = property(get_ShowWindow, put_ShowWindow)
1257
1400
  class InputActivationListener(ComPtr):
1258
1401
  extends: win32more.Microsoft.UI.Input.InputObject
1259
1402
  default_interface: win32more.Microsoft.UI.Input.IInputActivationListener
1260
1403
  _classid_ = 'Microsoft.UI.Input.InputActivationListener'
1261
1404
  @winrt_mixinmethod
1262
- 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: ...
1263
- @winrt_mixinmethod
1264
1405
  def get_State(self: win32more.Microsoft.UI.Input.IInputActivationListener) -> win32more.Microsoft.UI.Input.InputActivationState: ...
1265
1406
  @winrt_mixinmethod
1407
+ 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: ...
1408
+ @winrt_mixinmethod
1266
1409
  def remove_InputActivationChanged(self: win32more.Microsoft.UI.Input.IInputActivationListener, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1267
1410
  @winrt_classmethod
1268
1411
  def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputActivationListenerStatics2, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputActivationListener: ...
@@ -1296,9 +1439,9 @@ class InputDesktopNamedResourceCursor(ComPtr):
1296
1439
  default_interface: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor
1297
1440
  _classid_ = 'Microsoft.UI.Input.InputDesktopNamedResourceCursor'
1298
1441
  @winrt_mixinmethod
1299
- def get_ResourceName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> WinRT_String: ...
1300
- @winrt_mixinmethod
1301
1442
  def get_ModuleName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> WinRT_String: ...
1443
+ @winrt_mixinmethod
1444
+ def get_ResourceName(self: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursor) -> WinRT_String: ...
1302
1445
  @winrt_classmethod
1303
1446
  def Create(cls: win32more.Microsoft.UI.Input.IInputDesktopNamedResourceCursorStatics, resourceName: WinRT_String) -> win32more.Microsoft.UI.Input.InputDesktopNamedResourceCursor: ...
1304
1447
  @winrt_classmethod
@@ -1324,10 +1467,10 @@ class InputFocusController(ComPtr):
1324
1467
  default_interface: win32more.Microsoft.UI.Input.IInputFocusController
1325
1468
  _classid_ = 'Microsoft.UI.Input.InputFocusController'
1326
1469
  @winrt_mixinmethod
1327
- def TrySetFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
1328
- @winrt_mixinmethod
1329
1470
  def get_HasFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
1330
1471
  @winrt_mixinmethod
1472
+ 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: ...
1473
+ @winrt_mixinmethod
1331
1474
  def remove_GotFocus(self: win32more.Microsoft.UI.Input.IInputFocusController, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1332
1475
  @winrt_mixinmethod
1333
1476
  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: ...
@@ -1340,13 +1483,13 @@ class InputFocusController(ComPtr):
1340
1483
  @winrt_mixinmethod
1341
1484
  def remove_NavigateFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusController2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1342
1485
  @winrt_mixinmethod
1343
- 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: ...
1486
+ def TrySetFocus(self: win32more.Microsoft.UI.Input.IInputFocusController) -> Boolean: ...
1344
1487
  @winrt_classmethod
1345
1488
  def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputFocusControllerStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputFocusController: ...
1346
1489
  HasFocus = property(get_HasFocus, None)
1490
+ GotFocus = event()
1347
1491
  LostFocus = event()
1348
1492
  NavigateFocusRequested = event()
1349
- GotFocus = event()
1350
1493
  class InputFocusNavigationHost(ComPtr):
1351
1494
  extends: win32more.Microsoft.UI.Input.InputObject
1352
1495
  default_interface: win32more.Microsoft.UI.Input.IInputFocusNavigationHost
@@ -1354,11 +1497,11 @@ class InputFocusNavigationHost(ComPtr):
1354
1497
  @winrt_mixinmethod
1355
1498
  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: ...
1356
1499
  @winrt_mixinmethod
1357
- def NavigateFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
1500
+ def get_ContainsFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost) -> Boolean: ...
1358
1501
  @winrt_mixinmethod
1359
1502
  def remove_DepartFocusRequested(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1360
1503
  @winrt_mixinmethod
1361
- def get_ContainsFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost) -> Boolean: ...
1504
+ def NavigateFocus(self: win32more.Microsoft.UI.Input.IInputFocusNavigationHost, request: win32more.Microsoft.UI.Input.FocusNavigationRequest) -> win32more.Microsoft.UI.Input.FocusNavigationResult: ...
1362
1505
  @winrt_classmethod
1363
1506
  def GetForSiteBridge(cls: win32more.Microsoft.UI.Input.IInputFocusNavigationHostStatics, site: win32more.Microsoft.UI.Content.IContentSiteBridge) -> win32more.Microsoft.UI.Input.InputFocusNavigationHost: ...
1364
1507
  ContainsFocus = property(get_ContainsFocus, None)
@@ -1372,15 +1515,15 @@ class InputKeyboardSource(ComPtr):
1372
1515
  @winrt_mixinmethod
1373
1516
  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: ...
1374
1517
  @winrt_mixinmethod
1375
- def GetCurrentKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
1518
+ def remove_CharacterReceived(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1376
1519
  @winrt_mixinmethod
1377
1520
  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: ...
1378
1521
  @winrt_mixinmethod
1379
- def remove_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1522
+ def GetCurrentKeyState(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, virtualKey: win32more.Windows.System.VirtualKey) -> win32more.Microsoft.UI.Input.VirtualKeyStates: ...
1380
1523
  @winrt_mixinmethod
1381
1524
  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: ...
1382
1525
  @winrt_mixinmethod
1383
- def remove_CharacterReceived(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1526
+ def remove_ContextMenuKey(self: win32more.Microsoft.UI.Input.IInputKeyboardSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1384
1527
  @winrt_mixinmethod
1385
1528
  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: ...
1386
1529
  @winrt_mixinmethod
@@ -1425,7 +1568,7 @@ class InputNonClientPointerSource(ComPtr):
1425
1568
  default_interface: win32more.Microsoft.UI.Input.IInputNonClientPointerSource
1426
1569
  _classid_ = 'Microsoft.UI.Input.InputNonClientPointerSource'
1427
1570
  @winrt_mixinmethod
1428
- 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: ...
1571
+ def remove_ExitedMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1429
1572
  @winrt_mixinmethod
1430
1573
  def ClearRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, region: win32more.Microsoft.UI.Input.NonClientRegionKind) -> Void: ...
1431
1574
  @winrt_mixinmethod
@@ -1441,11 +1584,11 @@ class InputNonClientPointerSource(ComPtr):
1441
1584
  @winrt_mixinmethod
1442
1585
  def remove_PointerEntered(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1443
1586
  @winrt_mixinmethod
1444
- 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: ...
1587
+ def get_DispatcherQueue(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
1445
1588
  @winrt_mixinmethod
1446
1589
  def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1447
1590
  @winrt_mixinmethod
1448
- def remove_RegionsChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1591
+ 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: ...
1449
1592
  @winrt_mixinmethod
1450
1593
  def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1451
1594
  @winrt_mixinmethod
@@ -1459,19 +1602,44 @@ class InputNonClientPointerSource(ComPtr):
1459
1602
  @winrt_mixinmethod
1460
1603
  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: ...
1461
1604
  @winrt_mixinmethod
1462
- def get_DispatcherQueue(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> win32more.Microsoft.UI.Dispatching.DispatcherQueue: ...
1605
+ def remove_RegionsChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1606
+ @winrt_mixinmethod
1607
+ 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: ...
1608
+ @winrt_mixinmethod
1609
+ def remove_EnteringMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1610
+ @winrt_mixinmethod
1611
+ 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: ...
1612
+ @winrt_mixinmethod
1613
+ def remove_EnteredMoveSize(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1614
+ @winrt_mixinmethod
1615
+ 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: ...
1616
+ @winrt_mixinmethod
1617
+ def remove_WindowRectChanging(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1618
+ @winrt_mixinmethod
1619
+ 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: ...
1620
+ @winrt_mixinmethod
1621
+ def remove_WindowRectChanged(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource2, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1622
+ @winrt_mixinmethod
1623
+ 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: ...
1624
+ @winrt_mixinmethod
1625
+ 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: ...
1463
1626
  @winrt_mixinmethod
1464
1627
  def ClearAllRegionRects(self: win32more.Microsoft.UI.Input.IInputNonClientPointerSource) -> Void: ...
1465
1628
  @winrt_classmethod
1466
1629
  def GetForWindowId(cls: win32more.Microsoft.UI.Input.IInputNonClientPointerSourceStatics, windowId: win32more.Microsoft.UI.WindowId) -> win32more.Microsoft.UI.Input.InputNonClientPointerSource: ...
1467
1630
  DispatcherQueue = property(get_DispatcherQueue, None)
1468
- PointerMoved = event()
1469
1631
  CaptionTapped = event()
1470
1632
  PointerEntered = event()
1471
- PointerExited = event()
1633
+ PointerMoved = event()
1472
1634
  PointerPressed = event()
1473
1635
  PointerReleased = event()
1474
1636
  RegionsChanged = event()
1637
+ EnteringMoveSize = event()
1638
+ EnteredMoveSize = event()
1639
+ WindowRectChanging = event()
1640
+ WindowRectChanged = event()
1641
+ ExitedMoveSize = event()
1642
+ PointerExited = event()
1475
1643
  class InputObject(ComPtr):
1476
1644
  extends: IInspectable
1477
1645
  default_interface: win32more.Microsoft.UI.Input.IInputObject
@@ -1486,8 +1654,6 @@ class InputPointerSource(ComPtr):
1486
1654
  @winrt_mixinmethod
1487
1655
  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: ...
1488
1656
  @winrt_mixinmethod
1489
- def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
1490
- @winrt_mixinmethod
1491
1657
  def get_DeviceKinds(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputPointerSourceDeviceKinds: ...
1492
1658
  @winrt_mixinmethod
1493
1659
  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: ...
@@ -1502,7 +1668,7 @@ class InputPointerSource(ComPtr):
1502
1668
  @winrt_mixinmethod
1503
1669
  def remove_PointerExited(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1504
1670
  @winrt_mixinmethod
1505
- def remove_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1671
+ def put_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource, value: win32more.Microsoft.UI.Input.InputCursor) -> Void: ...
1506
1672
  @winrt_mixinmethod
1507
1673
  def remove_PointerMoved(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1508
1674
  @winrt_mixinmethod
@@ -1528,6 +1694,8 @@ class InputPointerSource(ComPtr):
1528
1694
  @winrt_mixinmethod
1529
1695
  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: ...
1530
1696
  @winrt_mixinmethod
1697
+ def remove_PointerWheelChanged(self: win32more.Microsoft.UI.Input.IInputPointerSource, token: win32more.Windows.Foundation.EventRegistrationToken) -> Void: ...
1698
+ @winrt_mixinmethod
1531
1699
  def get_Cursor(self: win32more.Microsoft.UI.Input.IInputPointerSource) -> win32more.Microsoft.UI.Input.InputCursor: ...
1532
1700
  @winrt_classmethod
1533
1701
  def GetForIsland(cls: win32more.Microsoft.UI.Input.IInputPointerSourceStatics, island: win32more.Microsoft.UI.Content.ContentIsland) -> win32more.Microsoft.UI.Input.InputPointerSource: ...
@@ -1585,13 +1753,13 @@ class KeyEventArgs(ComPtr):
1585
1753
  default_interface: win32more.Microsoft.UI.Input.IKeyEventArgs
1586
1754
  _classid_ = 'Microsoft.UI.Input.KeyEventArgs'
1587
1755
  @winrt_mixinmethod
1588
- def put_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs, value: Boolean) -> Void: ...
1756
+ def get_Timestamp(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> UInt64: ...
1589
1757
  @winrt_mixinmethod
1590
- def get_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> Boolean: ...
1758
+ def put_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs, value: Boolean) -> Void: ...
1591
1759
  @winrt_mixinmethod
1592
1760
  def get_KeyStatus(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Microsoft.UI.Input.PhysicalKeyStatus: ...
1593
1761
  @winrt_mixinmethod
1594
- def get_Timestamp(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> UInt64: ...
1762
+ def get_Handled(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> Boolean: ...
1595
1763
  @winrt_mixinmethod
1596
1764
  def get_VirtualKey(self: win32more.Microsoft.UI.Input.IKeyEventArgs) -> win32more.Windows.System.VirtualKey: ...
1597
1765
  Handled = property(get_Handled, put_Handled)
@@ -1603,12 +1771,12 @@ class ManipulationCompletedEventArgs(ComPtr):
1603
1771
  default_interface: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs
1604
1772
  _classid_ = 'Microsoft.UI.Input.ManipulationCompletedEventArgs'
1605
1773
  @winrt_mixinmethod
1774
+ def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1775
+ @winrt_mixinmethod
1606
1776
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1607
1777
  @winrt_mixinmethod
1608
1778
  def get_Position(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Windows.Foundation.Point: ...
1609
1779
  @winrt_mixinmethod
1610
- def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1611
- @winrt_mixinmethod
1612
1780
  def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationCompletedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
1613
1781
  Cumulative = property(get_Cumulative, None)
1614
1782
  PointerDeviceType = property(get_PointerDeviceType, None)
@@ -1624,12 +1792,12 @@ class ManipulationInertiaStartingEventArgs(ComPtr):
1624
1792
  default_interface: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs
1625
1793
  _classid_ = 'Microsoft.UI.Input.ManipulationInertiaStartingEventArgs'
1626
1794
  @winrt_mixinmethod
1627
- def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1628
- @winrt_mixinmethod
1629
1795
  def get_Delta(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1630
1796
  @winrt_mixinmethod
1631
1797
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1632
1798
  @winrt_mixinmethod
1799
+ def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1800
+ @winrt_mixinmethod
1633
1801
  def get_Position(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Windows.Foundation.Point: ...
1634
1802
  @winrt_mixinmethod
1635
1803
  def get_Velocities(self: win32more.Microsoft.UI.Input.IManipulationInertiaStartingEventArgs) -> win32more.Microsoft.UI.Input.ManipulationVelocities: ...
@@ -1643,11 +1811,11 @@ class ManipulationStartedEventArgs(ComPtr):
1643
1811
  default_interface: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs
1644
1812
  _classid_ = 'Microsoft.UI.Input.ManipulationStartedEventArgs'
1645
1813
  @winrt_mixinmethod
1646
- def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
1647
- @winrt_mixinmethod
1648
1814
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1649
1815
  @winrt_mixinmethod
1650
1816
  def get_Cumulative(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Microsoft.UI.Input.ManipulationDelta: ...
1817
+ @winrt_mixinmethod
1818
+ def get_Position(self: win32more.Microsoft.UI.Input.IManipulationStartedEventArgs) -> win32more.Windows.Foundation.Point: ...
1651
1819
  Cumulative = property(get_Cumulative, None)
1652
1820
  PointerDeviceType = property(get_PointerDeviceType, None)
1653
1821
  Position = property(get_Position, None)
@@ -1679,25 +1847,35 @@ class MouseWheelParameters(ComPtr):
1679
1847
  default_interface: win32more.Microsoft.UI.Input.IMouseWheelParameters
1680
1848
  _classid_ = 'Microsoft.UI.Input.MouseWheelParameters'
1681
1849
  @winrt_mixinmethod
1682
- def get_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1850
+ def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1683
1851
  @winrt_mixinmethod
1684
1852
  def put_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
1685
1853
  @winrt_mixinmethod
1686
- def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1854
+ def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1687
1855
  @winrt_mixinmethod
1688
1856
  def put_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
1689
1857
  @winrt_mixinmethod
1690
- def get_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1858
+ def get_DeltaScale(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> Single: ...
1691
1859
  @winrt_mixinmethod
1692
1860
  def put_DeltaRotationAngle(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: Single) -> Void: ...
1693
1861
  @winrt_mixinmethod
1694
- def get_CharTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1862
+ def get_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters) -> win32more.Windows.Foundation.Point: ...
1695
1863
  @winrt_mixinmethod
1696
1864
  def put_PageTranslation(self: win32more.Microsoft.UI.Input.IMouseWheelParameters, value: win32more.Windows.Foundation.Point) -> Void: ...
1697
1865
  CharTranslation = property(get_CharTranslation, put_CharTranslation)
1698
1866
  DeltaRotationAngle = property(get_DeltaRotationAngle, put_DeltaRotationAngle)
1699
1867
  DeltaScale = property(get_DeltaScale, put_DeltaScale)
1700
1868
  PageTranslation = property(get_PageTranslation, put_PageTranslation)
1869
+ class MoveSizeOperation(Enum, Int32):
1870
+ Move = 0
1871
+ SizeBottom = 1
1872
+ SizeBottomLeft = 2
1873
+ SizeBottomRight = 3
1874
+ SizeLeft = 4
1875
+ SizeRight = 5
1876
+ SizeTop = 6
1877
+ SizeTopLeft = 7
1878
+ SizeTopRight = 8
1701
1879
  class NonClientCaptionTappedEventArgs(ComPtr):
1702
1880
  extends: IInspectable
1703
1881
  default_interface: win32more.Microsoft.UI.Input.INonClientCaptionTappedEventArgs
@@ -1713,10 +1891,10 @@ class NonClientPointerEventArgs(ComPtr):
1713
1891
  default_interface: win32more.Microsoft.UI.Input.INonClientPointerEventArgs
1714
1892
  _classid_ = 'Microsoft.UI.Input.NonClientPointerEventArgs'
1715
1893
  @winrt_mixinmethod
1716
- def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1717
- @winrt_mixinmethod
1718
1894
  def get_Point(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Windows.Foundation.Point: ...
1719
1895
  @winrt_mixinmethod
1896
+ def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1897
+ @winrt_mixinmethod
1720
1898
  def get_RegionKind(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> win32more.Microsoft.UI.Input.NonClientRegionKind: ...
1721
1899
  @winrt_mixinmethod
1722
1900
  def get_IsPointInRegion(self: win32more.Microsoft.UI.Input.INonClientPointerEventArgs) -> Boolean: ...
@@ -1759,9 +1937,9 @@ class PointerEventArgs(ComPtr):
1759
1937
  default_interface: win32more.Microsoft.UI.Input.IPointerEventArgs
1760
1938
  _classid_ = 'Microsoft.UI.Input.PointerEventArgs'
1761
1939
  @winrt_mixinmethod
1762
- def get_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> Boolean: ...
1940
+ def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
1763
1941
  @winrt_mixinmethod
1764
- def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
1942
+ def get_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> Boolean: ...
1765
1943
  @winrt_mixinmethod
1766
1944
  def put_Handled(self: win32more.Microsoft.UI.Input.IPointerEventArgs, value: Boolean) -> Void: ...
1767
1945
  @winrt_mixinmethod
@@ -1769,7 +1947,7 @@ class PointerEventArgs(ComPtr):
1769
1947
  @winrt_mixinmethod
1770
1948
  def GetIntermediatePoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
1771
1949
  @winrt_mixinmethod
1772
- def GetIntermediateTransformedPoints(self: win32more.Microsoft.UI.Input.IPointerEventArgs, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.UI.Input.PointerPoint]: ...
1950
+ def get_CurrentPoint(self: win32more.Microsoft.UI.Input.IPointerEventArgs) -> win32more.Microsoft.UI.Input.PointerPoint: ...
1773
1951
  CurrentPoint = property(get_CurrentPoint, None)
1774
1952
  Handled = property(get_Handled, put_Handled)
1775
1953
  KeyModifiers = property(get_KeyModifiers, None)
@@ -1778,7 +1956,7 @@ class PointerPoint(ComPtr):
1778
1956
  default_interface: win32more.Microsoft.UI.Input.IPointerPoint
1779
1957
  _classid_ = 'Microsoft.UI.Input.PointerPoint'
1780
1958
  @winrt_mixinmethod
1781
- def get_Timestamp(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt64: ...
1959
+ def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
1782
1960
  @winrt_mixinmethod
1783
1961
  def get_IsInContact(self: win32more.Microsoft.UI.Input.IPointerPoint) -> Boolean: ...
1784
1962
  @winrt_mixinmethod
@@ -1790,7 +1968,7 @@ class PointerPoint(ComPtr):
1790
1968
  @winrt_mixinmethod
1791
1969
  def get_Properties(self: win32more.Microsoft.UI.Input.IPointerPoint) -> win32more.Microsoft.UI.Input.PointerPointProperties: ...
1792
1970
  @winrt_mixinmethod
1793
- def get_FrameId(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt32: ...
1971
+ def get_Timestamp(self: win32more.Microsoft.UI.Input.IPointerPoint) -> UInt64: ...
1794
1972
  @winrt_mixinmethod
1795
1973
  def GetTransformedPoint(self: win32more.Microsoft.UI.Input.IPointerPoint, transform: win32more.Microsoft.UI.Input.IPointerPointTransform) -> win32more.Microsoft.UI.Input.PointerPoint: ...
1796
1974
  FrameId = property(get_FrameId, None)
@@ -1805,7 +1983,7 @@ class PointerPointProperties(ComPtr):
1805
1983
  default_interface: win32more.Microsoft.UI.Input.IPointerPointProperties
1806
1984
  _classid_ = 'Microsoft.UI.Input.PointerPointProperties'
1807
1985
  @winrt_mixinmethod
1808
- def get_MouseWheelDelta(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Int32: ...
1986
+ def get_IsPrimary(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1809
1987
  @winrt_mixinmethod
1810
1988
  def get_IsBarrelButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1811
1989
  @winrt_mixinmethod
@@ -1823,7 +2001,7 @@ class PointerPointProperties(ComPtr):
1823
2001
  @winrt_mixinmethod
1824
2002
  def get_IsMiddleButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1825
2003
  @winrt_mixinmethod
1826
- def get_IsPrimary(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
2004
+ def get_ContactRect(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Windows.Foundation.Rect: ...
1827
2005
  @winrt_mixinmethod
1828
2006
  def get_IsRightButtonPressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1829
2007
  @winrt_mixinmethod
@@ -1831,7 +2009,7 @@ class PointerPointProperties(ComPtr):
1831
2009
  @winrt_mixinmethod
1832
2010
  def get_IsXButton2Pressed(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Boolean: ...
1833
2011
  @winrt_mixinmethod
1834
- def get_ContactRect(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> win32more.Windows.Foundation.Rect: ...
2012
+ def get_MouseWheelDelta(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Int32: ...
1835
2013
  @winrt_mixinmethod
1836
2014
  def get_Orientation(self: win32more.Microsoft.UI.Input.IPointerPointProperties) -> Single: ...
1837
2015
  @winrt_mixinmethod
@@ -1873,11 +2051,11 @@ class PointerPredictor(ComPtr):
1873
2051
  default_interface: win32more.Microsoft.UI.Input.IPointerPredictor
1874
2052
  _classid_ = 'Microsoft.UI.Input.PointerPredictor'
1875
2053
  @winrt_mixinmethod
1876
- def get_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor) -> win32more.Windows.Foundation.TimeSpan: ...
2054
+ def GetPredictedPoints(self: win32more.Microsoft.UI.Input.IPointerPredictor, point: win32more.Microsoft.UI.Input.PointerPoint) -> ReceiveArray[win32more.Microsoft.UI.Input.PointerPoint]: ...
1877
2055
  @winrt_mixinmethod
1878
2056
  def put_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor, value: win32more.Windows.Foundation.TimeSpan) -> Void: ...
1879
2057
  @winrt_mixinmethod
1880
- def GetPredictedPoints(self: win32more.Microsoft.UI.Input.IPointerPredictor, point: win32more.Microsoft.UI.Input.PointerPoint) -> ReceiveArray[win32more.Microsoft.UI.Input.PointerPoint]: ...
2058
+ def get_PredictionTime(self: win32more.Microsoft.UI.Input.IPointerPredictor) -> win32more.Windows.Foundation.TimeSpan: ...
1881
2059
  @winrt_mixinmethod
1882
2060
  def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
1883
2061
  @winrt_classmethod
@@ -1910,10 +2088,10 @@ class TappedEventArgs(ComPtr):
1910
2088
  default_interface: win32more.Microsoft.UI.Input.ITappedEventArgs
1911
2089
  _classid_ = 'Microsoft.UI.Input.TappedEventArgs'
1912
2090
  @winrt_mixinmethod
1913
- def get_Position(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Windows.Foundation.Point: ...
1914
- @winrt_mixinmethod
1915
2091
  def get_PointerDeviceType(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Microsoft.UI.Input.PointerDeviceType: ...
1916
2092
  @winrt_mixinmethod
2093
+ def get_Position(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> win32more.Windows.Foundation.Point: ...
2094
+ @winrt_mixinmethod
1917
2095
  def get_TapCount(self: win32more.Microsoft.UI.Input.ITappedEventArgs) -> UInt32: ...
1918
2096
  PointerDeviceType = property(get_PointerDeviceType, None)
1919
2097
  Position = property(get_Position, None)
@@ -1922,6 +2100,50 @@ class VirtualKeyStates(Enum, UInt32):
1922
2100
  None_ = 0
1923
2101
  Down = 1
1924
2102
  Locked = 2
2103
+ class WindowRectChangedEventArgs(ComPtr):
2104
+ extends: IInspectable
2105
+ default_interface: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs
2106
+ _classid_ = 'Microsoft.UI.Input.WindowRectChangedEventArgs'
2107
+ @winrt_mixinmethod
2108
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
2109
+ @winrt_mixinmethod
2110
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
2111
+ @winrt_mixinmethod
2112
+ def get_OldWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2113
+ @winrt_mixinmethod
2114
+ def get_NewWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangedEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2115
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
2116
+ NewWindowRect = property(get_NewWindowRect, None)
2117
+ OldWindowRect = property(get_OldWindowRect, None)
2118
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
2119
+ class WindowRectChangingEventArgs(ComPtr):
2120
+ extends: IInspectable
2121
+ default_interface: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs
2122
+ _classid_ = 'Microsoft.UI.Input.WindowRectChangingEventArgs'
2123
+ @winrt_mixinmethod
2124
+ def get_MoveSizeOperation(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Microsoft.UI.Input.MoveSizeOperation: ...
2125
+ @winrt_mixinmethod
2126
+ def get_PointerScreenPoint(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Windows.Graphics.PointInt32: ...
2127
+ @winrt_mixinmethod
2128
+ def get_OldWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2129
+ @winrt_mixinmethod
2130
+ def get_NewWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> win32more.Windows.Graphics.RectInt32: ...
2131
+ @winrt_mixinmethod
2132
+ def put_NewWindowRect(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs, value: win32more.Windows.Graphics.RectInt32) -> Void: ...
2133
+ @winrt_mixinmethod
2134
+ def get_AllowRectChange(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> Boolean: ...
2135
+ @winrt_mixinmethod
2136
+ def put_AllowRectChange(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs, value: Boolean) -> Void: ...
2137
+ @winrt_mixinmethod
2138
+ def get_ShowWindow(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs) -> Boolean: ...
2139
+ @winrt_mixinmethod
2140
+ def put_ShowWindow(self: win32more.Microsoft.UI.Input.IWindowRectChangingEventArgs, value: Boolean) -> Void: ...
2141
+ AllowRectChange = property(get_AllowRectChange, put_AllowRectChange)
2142
+ MoveSizeOperation = property(get_MoveSizeOperation, None)
2143
+ NewWindowRect = property(get_NewWindowRect, put_NewWindowRect)
2144
+ OldWindowRect = property(get_OldWindowRect, None)
2145
+ PointerScreenPoint = property(get_PointerScreenPoint, None)
2146
+ ShowWindow = property(get_ShowWindow, put_ShowWindow)
1925
2147
 
1926
2148
 
1927
2149
  make_ready(__name__)