-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathFocusManager.cs
More file actions
1145 lines (982 loc) · 44.2 KB
/
FocusManager.cs
File metadata and controls
1145 lines (982 loc) · 44.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
using System;
using System.Diagnostics;
using System.Linq;
using Avalonia.Input.Navigation;
using Avalonia.Interactivity;
using Avalonia.Metadata;
using Avalonia.Reactive;
using Avalonia.VisualTree;
namespace Avalonia.Input
{
/// <summary>
/// Manages focus for the application.
/// </summary>
[PrivateApi]
public class FocusManager : IFocusManager
{
/// <summary>
/// Private attached property for storing the currently focused element in a focus scope.
/// </summary>
/// <remarks>
/// This property is set on the control which defines a focus scope and tracks the currently
/// focused element within that scope.
/// </remarks>
private static readonly AttachedProperty<IInputElement> FocusedElementProperty =
AvaloniaProperty.RegisterAttached<FocusManager, StyledElement, IInputElement>("FocusedElement");
private StyledElement? _focusRoot;
/// <summary>
/// Initializes a new instance of the <see cref="FocusManager"/> class.
/// </summary>
static FocusManager()
{
InputElement.PointerPressedEvent.AddClassHandler(
typeof(IInputElement),
new EventHandler<RoutedEventArgs>(OnPreviewPointerEventHandler),
RoutingStrategies.Tunnel);
InputElement.PointerReleasedEvent.AddClassHandler(
typeof(IInputElement),
new EventHandler<RoutedEventArgs>(OnPreviewPointerEventHandler),
RoutingStrategies.Tunnel);
}
public FocusManager()
{
_contentRoot = null;
}
public FocusManager(IInputElement contentRoot)
{
_contentRoot = contentRoot;
}
internal void SetContentRoot(IInputElement? contentRoot)
{
_contentRoot = contentRoot;
}
private IInputElement? Current => KeyboardDevice.Instance?.FocusedElement;
private XYFocus _xyFocus = new();
private XYFocusOptions _xYFocusOptions = new XYFocusOptions();
private IInputElement? _contentRoot;
/// <summary>
/// Gets the currently focused <see cref="IInputElement"/>.
/// </summary>
public IInputElement? GetFocusedElement() => Current;
/// <summary>
/// Focuses a control.
/// </summary>
/// <param name="control">The control to focus.</param>
/// <param name="method">The method by which focus was changed.</param>
/// <param name="keyModifiers">Any key modifiers active at the time of focus.</param>
public bool Focus(
IInputElement? control,
NavigationMethod method = NavigationMethod.Unspecified,
KeyModifiers keyModifiers = KeyModifiers.None)
{
if (KeyboardDevice.Instance is not { } keyboardDevice)
return false;
if (control is not null)
{
if (!CanFocus(control))
return false;
if (GetFocusScope(control) is StyledElement scope)
{
scope.SetValue(FocusedElementProperty, control);
_focusRoot = GetFocusRoot(scope);
}
keyboardDevice.SetFocusedElement(control, method, keyModifiers);
return true;
}
else if (_focusRoot?.GetValue(FocusedElementProperty) is { } restore &&
restore != Current &&
Focus(restore))
{
return true;
}
else
{
_focusRoot = null;
keyboardDevice.SetFocusedElement(null, NavigationMethod.Unspecified, KeyModifiers.None, false);
return false;
}
}
public void ClearFocus()
{
Focus(null);
}
public void ClearFocusOnElementRemoved(IInputElement removedElement, Visual oldParent)
{
if (oldParent is IInputElement parentElement &&
GetFocusScope(parentElement) is StyledElement scope &&
scope.GetValue(FocusedElementProperty) is IInputElement focused &&
focused == removedElement)
{
scope.ClearValue(FocusedElementProperty);
}
if (Current == removedElement)
Focus(null);
}
public IInputElement? GetFocusedElement(IFocusScope scope)
{
return (scope as StyledElement)?.GetValue(FocusedElementProperty);
}
/// <summary>
/// Notifies the focus manager of a change in focus scope.
/// </summary>
/// <param name="scope">The new focus scope.</param>
public void SetFocusScope(IFocusScope scope)
{
if (GetFocusedElement(scope) is { } focused)
{
Focus(focused);
}
else if (scope is IInputElement scopeElement && CanFocus(scopeElement))
{
// TODO: Make this do something useful, i.e. select the first focusable
// control, select a control that the user has specified to have default
// focus etc.
Focus(scopeElement);
}
}
public void RemoveFocusRoot(IFocusScope scope)
{
if (scope == _focusRoot)
ClearFocus();
}
public static bool GetIsFocusScope(IInputElement e) => e is IFocusScope;
/// <summary>
/// Public API customers should use TopLevel.GetTopLevel(control).FocusManager.
/// But since we have split projects, we can't access TopLevel from Avalonia.Base.
/// That's why we need this helper method instead.
/// </summary>
internal static FocusManager? GetFocusManager(IInputElement? element)
{
// Element might not be a visual, and not attached to the root.
// But IFocusManager is always expected to be a FocusManager.
return (FocusManager?)(element as Visual)?.GetInputRoot()?.FocusManager
// In our unit tests some elements might not have a root. Remove when we migrate to headless tests.
?? (FocusManager?)AvaloniaLocator.Current.GetService<IFocusManager>();
}
/// <summary>
/// Attempts to change focus from the element with focus to the next focusable element in the specified direction.
/// </summary>
/// <param name="direction">The direction to traverse (in tab order).</param>
/// <returns>true if focus moved; otherwise, false.</returns>
public bool TryMoveFocus(NavigationDirection direction)
{
return FindAndSetNextFocus(direction, _xYFocusOptions);
}
/// <summary>
/// Attempts to change focus from the element with focus to the next focusable element in the specified direction, using the specified navigation options.
/// </summary>
/// <param name="direction">The direction to traverse (in tab order).</param>
/// <param name="options">The options to help identify the next element to receive focus with keyboard/controller/remote navigation.</param>
/// <returns>true if focus moved; otherwise, false.</returns>
public bool TryMoveFocus(NavigationDirection direction, FindNextElementOptions options)
{
return FindAndSetNextFocus(direction, ValidateAndCreateFocusOptions(direction, options));
}
/// <summary>
/// Checks if the specified element can be focused.
/// </summary>
/// <param name="e">The element.</param>
/// <returns>True if the element can be focused.</returns>
internal static bool CanFocus(IInputElement e) => e.Focusable && e.IsEffectivelyEnabled && IsVisible(e);
private static bool CanPointerFocus(IInputElement e, PointerEventArgs ev)
{
if (CanFocus(e))
{
if (ev.Pointer.Type == PointerType.Mouse || ev is PointerReleasedEventArgs)
return true;
}
return false;
}
/// <summary>
/// Gets the focus scope of the specified control, traversing popups.
/// </summary>
/// <param name="control">The control.</param>
/// <returns>The focus scope.</returns>
private static StyledElement? GetFocusScope(IInputElement control)
{
IInputElement? c = control;
while (c != null)
{
if (c is IFocusScope &&
c is Visual v &&
v.VisualRoot is Visual root &&
root.IsVisible)
{
return v;
}
c = (c as Visual)?.GetVisualParent<IInputElement>() ??
((c as IHostedVisualTreeRoot)?.Host as IInputElement);
}
return null;
}
private static StyledElement? GetFocusRoot(StyledElement scope)
{
if (scope is not Visual v)
return null;
var root = v.VisualRoot as Visual;
while (root is IHostedVisualTreeRoot hosted &&
hosted.Host?.VisualRoot is Visual parentRoot)
{
root = parentRoot;
}
return root;
}
/// <summary>
/// Global handler for pointer pressed events.
/// </summary>
/// <param name="sender">The event sender.</param>
/// <param name="e">The event args.</param>
private static void OnPreviewPointerEventHandler(object? sender, RoutedEventArgs e)
{
if (sender is null)
return;
var ev = (PointerEventArgs)e;
var visual = (Visual)sender;
if (sender == e.Source && (ev.GetCurrentPoint(visual).Properties.IsLeftButtonPressed || (e as PointerReleasedEventArgs)?.InitialPressMouseButton == MouseButton.Left))
{
Visual? element = ev.Pointer?.Captured as Visual ?? e.Source as Visual;
while (element != null)
{
if (element is IInputElement inputElement && CanPointerFocus(inputElement, ev))
{
inputElement.Focus(NavigationMethod.Pointer, ev.KeyModifiers);
break;
}
element = element.VisualParent;
}
}
}
private static bool IsVisible(IInputElement e)
{
if (e is Visual v)
return v.IsAttachedToVisualTree && e.IsEffectivelyVisible;
return true;
}
/// <summary>
/// Retrieves the first element that can receive focus.
/// </summary>
/// <returns>The first focusable element.</returns>
public IInputElement? FindFirstFocusableElement()
{
var root = (_contentRoot as Visual)?.GetSelfAndVisualDescendants().FirstOrDefault(x => x is IInputElement) as IInputElement;
if (root == null)
return null;
return GetFirstFocusableElementFromRoot(false);
}
/// <summary>
/// Retrieves the first element that can receive focus based on the specified scope.
/// </summary>
/// <param name="searchScope">The root element from which to search.</param>
/// <returns>The first focusable element.</returns>
public static IInputElement? FindFirstFocusableElement(IInputElement searchScope)
{
return GetFirstFocusableElement(searchScope);
}
/// <summary>
/// Retrieves the last element that can receive focus.
/// </summary>
/// <returns>The last focusable element.</returns>
public IInputElement? FindLastFocusableElement()
{
var root = (_contentRoot as Visual)?.GetSelfAndVisualDescendants().FirstOrDefault(x => x is IInputElement) as IInputElement;
if (root == null)
return null;
return GetFirstFocusableElementFromRoot(true);
}
/// <summary>
/// Retrieves the last element that can receive focus based on the specified scope.
/// </summary>
/// <param name="searchScope">The root element from which to search.</param>
/// <returns>The last focusable object.</returns>
public static IInputElement? FindLastFocusableElement(IInputElement searchScope)
{
return GetFocusManager(searchScope)?.GetLastFocusableElement(searchScope);
}
/// <summary>
/// Retrieves the element that should receive focus based on the specified navigation direction.
/// </summary>
/// <param name="direction"></param>
/// <returns></returns>
public IInputElement? FindNextElement(NavigationDirection direction)
{
var xyOption = new XYFocusOptions()
{
UpdateManifold = false
};
return FindNextFocus(direction, xyOption);
}
/// <summary>
/// Retrieves the element that should receive focus based on the specified navigation direction (cannot be used with tab navigation).
/// </summary>
/// <param name="direction">The direction that focus moves from element to element within the app UI.</param>
/// <param name="options">The options to help identify the next element to receive focus with the provided navigation.</param>
/// <returns>The next element to receive focus.</returns>
public IInputElement? FindNextElement(NavigationDirection direction, FindNextElementOptions options)
{
return FindNextFocus(direction, ValidateAndCreateFocusOptions(direction, options));
}
private static XYFocusOptions ValidateAndCreateFocusOptions(NavigationDirection direction, FindNextElementOptions options)
{
if (direction is not NavigationDirection.Up
and not NavigationDirection.Down
and not NavigationDirection.Left
and not NavigationDirection.Right)
{
throw new ArgumentOutOfRangeException(nameof(direction),
$"{direction} is not supported with FindNextElementOptions. Only Up, Down, Left and right are supported");
}
return new XYFocusOptions
{
UpdateManifold = false,
SearchRoot = options.SearchRoot,
ExclusionRect = options.ExclusionRect,
FocusHintRectangle = options.FocusHintRectangle,
NavigationStrategyOverride = options.NavigationStrategyOverride,
IgnoreOcclusivity = options.IgnoreOcclusivity
};
}
internal IInputElement? FindNextFocus(NavigationDirection direction, XYFocusOptions focusOptions, bool updateManifolds = true)
{
IInputElement? nextFocusedElement = null;
var currentlyFocusedElement = Current;
if (direction is NavigationDirection.Previous or NavigationDirection.Next || currentlyFocusedElement == null)
{
var isReverse = direction == NavigationDirection.Previous;
nextFocusedElement = ProcessTabStopInternal(isReverse, true);
}
else
{
if (currentlyFocusedElement is InputElement inputElement &&
XYFocus.GetBoundsForRanking(inputElement, focusOptions.IgnoreClipping) is { } bounds)
{
focusOptions.FocusedElementBounds = bounds;
}
nextFocusedElement = _xyFocus.GetNextFocusableElement(direction,
currentlyFocusedElement as InputElement,
null,
updateManifolds,
focusOptions);
}
return nextFocusedElement;
}
internal static IInputElement? GetFirstFocusableElementInternal(IInputElement searchStart, IInputElement? focusCandidate = null)
{
IInputElement? firstFocusableFromCallback = null;
var useFirstFocusableFromCallback = false;
if (searchStart is InputElement inputElement)
{
firstFocusableFromCallback = inputElement.GetFirstFocusableElementOverride();
if (firstFocusableFromCallback != null)
{
useFirstFocusableFromCallback = FocusHelpers.IsFocusable(firstFocusableFromCallback) || FocusHelpers.CanHaveFocusableChildren(firstFocusableFromCallback as AvaloniaObject);
}
}
if (useFirstFocusableFromCallback)
{
if (focusCandidate == null || (GetTabIndex(firstFocusableFromCallback) < GetTabIndex(focusCandidate)))
{
focusCandidate = firstFocusableFromCallback;
}
}
else
{
var children = FocusHelpers.GetInputElementChildren(searchStart as AvaloniaObject);
foreach (var child in children)
{
if (FocusHelpers.IsVisible(child))
{
var hasFocusableChildren = FocusHelpers.CanHaveFocusableChildren(child as AvaloniaObject);
if (FocusHelpers.IsPotentialTabStop(child))
{
if (focusCandidate == null && (FocusHelpers.IsFocusable(child) || hasFocusableChildren))
{
focusCandidate = child;
}
if (FocusHelpers.IsFocusable(child) || hasFocusableChildren)
{
if (focusCandidate == null || GetTabIndex(child) < GetTabIndex(focusCandidate))
{
focusCandidate = child;
}
}
}
else if (hasFocusableChildren)
{
focusCandidate = GetFirstFocusableElementInternal(child, focusCandidate);
}
}
}
}
return focusCandidate;
}
internal static IInputElement? GetLastFocusableElementInternal(IInputElement searchStart, IInputElement? lastFocus = null)
{
IInputElement? lastFocusableFromCallback = null;
var useLastFocusableFromCallback = false;
if (searchStart is InputElement inputElement)
{
lastFocusableFromCallback = inputElement.GetLastFocusableElementOverride();
if (lastFocusableFromCallback != null)
{
useLastFocusableFromCallback = FocusHelpers.IsFocusable(lastFocusableFromCallback) || FocusHelpers.CanHaveFocusableChildren(lastFocusableFromCallback as AvaloniaObject);
}
}
if (useLastFocusableFromCallback)
{
if (lastFocus == null || (GetTabIndex(lastFocusableFromCallback) > GetTabIndex(lastFocus)))
{
lastFocus = lastFocusableFromCallback;
}
}
else
{
var children = FocusHelpers.GetInputElementChildren(searchStart as AvaloniaObject);
foreach (var child in children)
{
if (FocusHelpers.IsVisible(child))
{
var hasFocusableChildren = FocusHelpers.CanHaveFocusableChildren(child as AvaloniaObject);
if (FocusHelpers.IsPotentialTabStop(child))
{
if (lastFocus == null && (FocusHelpers.IsFocusable(child) || hasFocusableChildren))
{
lastFocus = child;
}
if (FocusHelpers.IsFocusable(child) || hasFocusableChildren)
{
if (lastFocus == null || GetTabIndex(child) >= GetTabIndex(lastFocus))
{
lastFocus = child;
}
}
}
else if (hasFocusableChildren)
{
lastFocus = GetLastFocusableElementInternal(child, lastFocus);
}
}
}
}
return lastFocus;
}
private IInputElement? ProcessTabStopInternal(bool isReverse, bool queryOnly)
{
IInputElement? newTabStop = null;
var defaultCandidateTabStop = GetTabStopCandidateElement(isReverse, queryOnly, out var didCycleFocusAtRootVisualScope);
var isTabStopOverriden = InputElement.ProcessTabStop(_contentRoot,
Current,
defaultCandidateTabStop,
isReverse,
didCycleFocusAtRootVisualScope,
out var newTabStopFromCallback);
if (isTabStopOverriden)
{
newTabStop = newTabStopFromCallback;
}
if (!isTabStopOverriden && newTabStop == null && defaultCandidateTabStop != null)
{
newTabStop = defaultCandidateTabStop;
}
return newTabStop;
}
private IInputElement? GetTabStopCandidateElement(bool isReverse, bool queryOnly, out bool didCycleFocusAtRootVisualScope)
{
didCycleFocusAtRootVisualScope = false;
var currentFocus = Current;
IInputElement? newTabStop = null;
var root = this._contentRoot as IInputElement;
if (root == null)
return null;
bool internalCycleWorkaround = false;
if (Current != null)
{
internalCycleWorkaround = CanProcessTabStop(isReverse);
}
if (currentFocus == null)
{
if (!isReverse)
{
newTabStop = GetFirstFocusableElement(root, null);
}
else
{
newTabStop = GetLastFocusableElement(root, null);
}
didCycleFocusAtRootVisualScope = true;
}
else if (!isReverse)
{
newTabStop = GetNextTabStop();
if (newTabStop == null && (internalCycleWorkaround || queryOnly))
{
newTabStop = GetFirstFocusableElement(root, null);
didCycleFocusAtRootVisualScope = true;
}
}
else
{
newTabStop = GetPreviousTabStop();
if (newTabStop == null && (internalCycleWorkaround || queryOnly))
{
newTabStop = GetLastFocusableElement(root, null);
didCycleFocusAtRootVisualScope = true;
}
}
return newTabStop;
}
private IInputElement? GetNextTabStop(IInputElement? currentTabStop = null, bool ignoreCurrentTabStop = false)
{
var focused = currentTabStop ?? Current;
if (focused == null || _contentRoot == null)
{
return null;
}
IInputElement? currentCompare = focused;
IInputElement? newTabStop = (focused as InputElement)?.GetNextTabStopOverride();
if (newTabStop == null && !ignoreCurrentTabStop
&& (FocusHelpers.IsVisible(focused) && (FocusHelpers.CanHaveFocusableChildren(focused as AvaloniaObject) || FocusHelpers.CanHaveChildren(focused))))
{
newTabStop = GetFirstFocusableElement(focused, newTabStop);
}
if (newTabStop == null)
{
var currentPassed = false;
var current = focused;
var parent = FocusHelpers.GetFocusParent(focused);
var parentIsRootVisual = parent == (_contentRoot as Visual)?.VisualRoot;
while (parent != null && !parentIsRootVisual && newTabStop == null)
{
if (IsValidTabStopSearchCandidate(current) && current is InputElement c && KeyboardNavigation.GetTabNavigation(c) == KeyboardNavigationMode.Cycle)
{
if (current == GetParentTabStopElement(focused))
{
newTabStop = GetFirstFocusableElement(focused, null);
}
else
{
newTabStop = GetFirstFocusableElement(current, current);
}
break;
}
if (IsValidTabStopSearchCandidate(parent) && parent is InputElement p && KeyboardNavigation.GetTabNavigation(p) == KeyboardNavigationMode.Once)
{
current = parent;
parent = FocusHelpers.GetFocusParent(focused);
if (parent == null)
break;
}
else if (!IsValidTabStopSearchCandidate(parent))
{
var parentElement = GetParentTabStopElement(parent);
if (parentElement == null)
{
parent = GetRootOfPopupSubTree(current) as IInputElement;
if (parent != null)
{
newTabStop = GetNextOrPreviousTabStopInternal(parent, current, newTabStop, true, ref currentPassed, ref currentCompare);
if (newTabStop != null && !FocusHelpers.IsFocusable(newTabStop))
{
newTabStop = GetFirstFocusableElement(newTabStop, null);
}
if (newTabStop == null)
{
newTabStop = GetFirstFocusableElement(parent, null);
}
break;
}
parent = (_contentRoot as Visual)?.VisualRoot as IInputElement;
}
else if (parentElement is InputElement pIE && KeyboardNavigation.GetTabNavigation(pIE) == KeyboardNavigationMode.None)
{
current = pIE;
parent = FocusHelpers.GetFocusParent(current);
if (parent == null)
break;
}
else
{
parent = parentElement as IInputElement;
}
}
newTabStop = GetNextOrPreviousTabStopInternal(parent, current, newTabStop, true, ref currentPassed, ref currentCompare);
if (newTabStop != null && !FocusHelpers.IsFocusable(newTabStop) && FocusHelpers.CanHaveFocusableChildren(newTabStop as AvaloniaObject))
{
newTabStop = GetFirstFocusableElement(newTabStop, null);
}
if (newTabStop != null)
break;
if (IsValidTabStopSearchCandidate(parent))
{
current = parent;
}
parent = FocusHelpers.GetFocusParent(parent);
currentPassed = false;
parentIsRootVisual = parent == (_contentRoot as Visual)?.VisualRoot;
}
}
return newTabStop;
}
private IInputElement? GetPreviousTabStop(IInputElement? currentTabStop = null, bool ignoreCurrentTabStop = false)
{
var focused = currentTabStop ?? Current;
if (focused == null || _contentRoot == null)
{
return null;
}
IInputElement? newTabStop = (focused as InputElement)?.GetPreviousTabStopOverride();
IInputElement? currentCompare = focused;
if (newTabStop == null)
{
var currentPassed = false;
var current = focused;
var parent = FocusHelpers.GetFocusParent(focused);
var parentIsRootVisual = parent == (_contentRoot as Visual)?.VisualRoot;
while (parent != null && !parentIsRootVisual && newTabStop == null)
{
if (IsValidTabStopSearchCandidate(current) && current is InputElement c && KeyboardNavigation.GetTabNavigation(c) == KeyboardNavigationMode.Cycle)
{
newTabStop = GetFirstFocusableElement(current, current);
break;
}
if (IsValidTabStopSearchCandidate(parent) && parent is InputElement p && KeyboardNavigation.GetTabNavigation(p) == KeyboardNavigationMode.Once)
{
if (FocusHelpers.IsFocusable(parent))
{
newTabStop = parent;
}
else
{
current = parent;
parent = FocusHelpers.GetFocusParent(focused);
if (parent == null)
break;
}
}
else if (!IsValidTabStopSearchCandidate(parent))
{
var parentElement = GetParentTabStopElement(parent);
if (parentElement == null)
{
parent = GetRootOfPopupSubTree(current) as IInputElement;
if (parent != null)
{
newTabStop = GetNextOrPreviousTabStopInternal(parent, current, newTabStop, false, ref currentPassed, ref currentCompare);
if (newTabStop != null && !FocusHelpers.IsFocusable(newTabStop))
{
newTabStop = GetLastFocusableElement(newTabStop, null);
}
if (newTabStop == null)
{
newTabStop = GetLastFocusableElement(parent, null);
}
break;
}
parent = (_contentRoot as Visual)?.VisualRoot as IInputElement;
}
else if (parentElement is InputElement pIE && KeyboardNavigation.GetTabNavigation(pIE) == KeyboardNavigationMode.None)
{
if (FocusHelpers.IsFocusable(parent))
{
newTabStop = parent;
}
else
{
current = parent;
parent = FocusHelpers.GetFocusParent(focused);
if (parent == null)
break;
}
}
else
{
parent = parentElement as IInputElement;
}
}
newTabStop = GetNextOrPreviousTabStopInternal(parent, current, newTabStop, false, ref currentPassed, ref currentCompare);
if (newTabStop == null && FocusHelpers.IsPotentialTabStop(parent) && FocusHelpers.IsFocusable(parent))
{
if (parent is InputElement iE && KeyboardNavigation.GetTabNavigation(iE) == KeyboardNavigationMode.Cycle)
{
newTabStop = GetLastFocusableElement(parent, null);
}
else
{
newTabStop = parent;
}
}
else
{
if (newTabStop != null && FocusHelpers.CanHaveFocusableChildren(newTabStop as AvaloniaObject))
{
newTabStop = GetLastFocusableElement(newTabStop, null);
}
}
if (newTabStop != null)
break;
if (IsValidTabStopSearchCandidate(parent))
{
current = parent;
}
parent = FocusHelpers.GetFocusParent(parent);
currentPassed = false;
}
}
return newTabStop;
}
private IInputElement? GetNextOrPreviousTabStopInternal(IInputElement? parent, IInputElement? current, IInputElement? candidate, bool findNext, ref bool currentPassed, ref IInputElement? currentCompare)
{
var newTabStop = candidate;
IInputElement? childStop = null;
int compareIndexResult = 0;
bool compareCurrentForPreviousElement = false;
if (IsValidTabStopSearchCandidate(current))
{
currentCompare = current;
}
if (parent != null)
{
bool foundCurrent = false;
foreach (var child in FocusHelpers.GetInputElementChildren(parent as AvaloniaObject))
{
childStop = null;
compareCurrentForPreviousElement = false;
if (child == current)
{
foundCurrent = true;
currentPassed = true;
continue;
}
if (FocusHelpers.IsVisible(child))
{
if (child == current)
{
foundCurrent = true;
currentPassed = true;
continue;
}
if (IsValidTabStopSearchCandidate(child))
{
if (!FocusHelpers.IsPotentialTabStop(child))
{
childStop = GetNextOrPreviousTabStopInternal(childStop, current, newTabStop, findNext, ref currentPassed, ref currentCompare);
compareCurrentForPreviousElement = true;
}
else
{
childStop = child;
}
}
else if (FocusHelpers.CanHaveFocusableChildren(child as AvaloniaObject))
{
childStop = GetNextOrPreviousTabStopInternal(child, current, newTabStop, findNext, ref currentPassed, ref currentCompare);
compareCurrentForPreviousElement = true;
}
}
if (childStop != null && (FocusHelpers.IsFocusable(childStop) || FocusHelpers.CanHaveFocusableChildren(childStop as AvaloniaObject)))
{
compareIndexResult = CompareTabIndex(childStop, currentCompare);
if (findNext)
{
if (compareIndexResult > 0 || ((foundCurrent || currentPassed) && compareIndexResult == 0))
{
if (newTabStop != null)
{
if (CompareTabIndex(childStop, newTabStop) < 0)
{
newTabStop = childStop;
}
}
else
{
newTabStop = childStop;
}
}
}
else
{
if (compareIndexResult < 0 || (((foundCurrent || currentPassed) || compareCurrentForPreviousElement) && compareIndexResult == 0))
{
if (newTabStop != null)
{
if (CompareTabIndex(childStop, newTabStop) >= 0)
{
newTabStop = childStop;
}
}
else
{
newTabStop = childStop;
}
}
}
}
}
}
return newTabStop;
}
private static int CompareTabIndex(IInputElement? control1, IInputElement? control2)
{
return GetTabIndex(control1).CompareTo(GetTabIndex(control2));
}
private static int GetTabIndex(IInputElement? element)
{
if (element is InputElement inputElement)
return inputElement.TabIndex;
return int.MaxValue;
}
private bool CanProcessTabStop(bool isReverse)
{
bool isFocusOnFirst = false;
bool isFocusOnLast = false;
bool canProcessTab = true;
if (IsFocusedElementInPopup())
{
return true;
}
if (isReverse)
{
isFocusOnFirst = IsFocusOnFirstTabStop();
}
else
{
isFocusOnLast = IsFocusOnLastTabStop();
}
if (isFocusOnFirst || isFocusOnLast)
{
canProcessTab = false;
}
if (canProcessTab)
{
var edge = GetFirstFocusableElementFromRoot(!isReverse);
if (edge != null)
{
var edgeParent = GetParentTabStopElement(edge);
if (edgeParent is InputElement inputElement && KeyboardNavigation.GetTabNavigation(inputElement) == KeyboardNavigationMode.Once && edgeParent == GetParentTabStopElement(Current))
{
canProcessTab = false;
}
}
else
{
canProcessTab = false;
}
}
else
{
if (isFocusOnLast || isFocusOnFirst)
{
if (Current is InputElement inputElement && KeyboardNavigation.GetTabNavigation(inputElement) == KeyboardNavigationMode.Cycle)
{
canProcessTab = true;
}