123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- #nullable enable
- using static Terminal.Gui.View;
- using System.Reflection;
- namespace Terminal.Gui;
- internal static class ViewNavigation
- {
- /// <summary>
- /// Gets the deepest focused subview of the specified <paramref name="view"/>.
- /// </summary>
- /// <param name="view"></param>
- /// <returns></returns>
- internal static View? GetDeepestFocusedSubview (View? view)
- {
- if (view is null)
- {
- return null;
- }
- foreach (View v in view.Subviews)
- {
- if (v.HasFocus)
- {
- return GetDeepestFocusedSubview (v);
- }
- }
- return view;
- }
- /// <summary>
- /// Sets the focus to the next view in the <see cref="View.TabIndexes"/> list. If the last view is focused, the first view is focused.
- /// </summary>
- /// <param name="viewsInTabIndexes"></param>
- /// <param name="direction"></param>
- internal static void FocusNearestView (IEnumerable<View>? viewsInTabIndexes, NavigationDirection direction)
- {
- if (viewsInTabIndexes is null)
- {
- return;
- }
- var found = false;
- var focusProcessed = false;
- var idx = 0;
- foreach (View v in viewsInTabIndexes)
- {
- if (v == Application.Current)
- {
- found = true;
- }
- if (found && v != Application.Current)
- {
- if (direction == NavigationDirection.Forward)
- {
- Application.Current!.SuperView?.FocusNext ();
- }
- else
- {
- Application.Current!.SuperView?.FocusPrev ();
- }
- focusProcessed = true;
- if (Application.Current.SuperView?.Focused is { } && Application.Current.SuperView.Focused != Application.Current)
- {
- return;
- }
- }
- else if (found && !focusProcessed && idx == viewsInTabIndexes.Count () - 1)
- {
- viewsInTabIndexes.ToList () [0].SetFocus ();
- }
- idx++;
- }
- }
- /// <summary>
- /// Moves the focus to
- /// </summary>
- internal static void MoveNextView ()
- {
- View? old = GetDeepestFocusedSubview (Application.Current!.Focused);
- if (!Application.Current.FocusNext ())
- {
- Application.Current.FocusNext ();
- }
- if (old != Application.Current.Focused && old != Application.Current.Focused?.Focused)
- {
- old?.SetNeedsDisplay ();
- Application.Current.Focused?.SetNeedsDisplay ();
- }
- else
- {
- FocusNearestView (Application.Current.SuperView?.TabIndexes, NavigationDirection.Forward);
- }
- }
- internal static void MoveNextViewOrTop ()
- {
- if (Application.OverlappedTop is null)
- {
- Toplevel? top = Application.Current!.Modal ? Application.Current : Application.Top;
- top!.FocusNext ();
- if (top.Focused is null)
- {
- top.FocusNext ();
- }
- top.SetNeedsDisplay ();
- Application.BringOverlappedTopToFront ();
- }
- else
- {
- Application.OverlappedMoveNext ();
- }
- }
- internal static void MovePreviousView ()
- {
- View? old = GetDeepestFocusedSubview (Application.Current!.Focused);
- if (!Application.Current.FocusPrev ())
- {
- Application.Current.FocusPrev ();
- }
- if (old != Application.Current.Focused && old != Application.Current.Focused?.Focused)
- {
- old?.SetNeedsDisplay ();
- Application.Current.Focused?.SetNeedsDisplay ();
- }
- else
- {
- FocusNearestView (Application.Current.SuperView?.TabIndexes?.Reverse (), NavigationDirection.Backward);
- }
- }
- internal static void MovePreviousViewOrTop ()
- {
- if (Application.OverlappedTop is null)
- {
- Toplevel? top = Application.Current!.Modal ? Application.Current : Application.Top;
- top!.FocusPrev ();
- if (top.Focused is null)
- {
- top.FocusPrev ();
- }
- top.SetNeedsDisplay ();
- Application.BringOverlappedTopToFront ();
- }
- else
- {
- Application.OverlappedMovePrevious ();
- }
- }
- }
- public static partial class Application // App-level View Navigation
- {
-
- }
|