Skip to content

Commit

Permalink
Merge pull request #2811 from BDisp/v1_alt-key-on-toplevel-with-menub…
Browse files Browse the repository at this point in the history
…ar-fix_2810

Fixes #2810. Pressing Alt key on a Toplevel with only a MenuBar throws System.InvalidOperationException.
  • Loading branch information
tig authored Aug 30, 2023
2 parents 17b4e3d + 1c6295e commit 0d27fcc
Show file tree
Hide file tree
Showing 6 changed files with 113 additions and 9 deletions.
3 changes: 2 additions & 1 deletion Terminal.Gui/Core/Application.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,8 @@ public static void End (RunState runState)
MdiTop.OnAllChildClosed ();
} else {
SetCurrentAsTop ();
Current.OnEnter (Current);
runState.Toplevel.OnLeave (Current);
Current.OnEnter (runState.Toplevel);
}
Refresh ();
}
Expand Down
2 changes: 1 addition & 1 deletion Terminal.Gui/Core/Border.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ public override void Redraw (Rect bounds)
/// <inheritdoc/>
public override void OnCanFocusChanged ()
{
if (Border.Child != null) {
if (Border?.Child != null) {
Border.Child.CanFocus = CanFocus;
}
base.OnCanFocusChanged ();
Expand Down
1 change: 1 addition & 0 deletions Terminal.Gui/Core/Toplevel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -552,6 +552,7 @@ void FocusNearestView (IEnumerable<View> views, Direction direction)
///<inheritdoc/>
public override void Add (View view)
{
CanFocus = true;
AddMenuStatusBar (view);
base.Add (view);
}
Expand Down
3 changes: 0 additions & 3 deletions Terminal.Gui/Core/View.cs
Original file line number Diff line number Diff line change
Expand Up @@ -995,9 +995,6 @@ public virtual void Remove (View view)
view.tabIndex = -1;
SetNeedsLayout ();
SetNeedsDisplay ();
if (subviews.Count < 1) {
CanFocus = false;
}
foreach (var v in subviews) {
if (v.Frame.IntersectsWith (touched))
view.SetNeedsDisplay ();
Expand Down
3 changes: 0 additions & 3 deletions Terminal.Gui/Core/Window.cs
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,6 @@ public override void Remove (View view)
SetNeedsDisplay ();
contentView.Remove (view);

if (contentView.InternalSubviews.Count < 1) {
CanFocus = false;
}
RemoveMenuStatusBar (view);
if (view != contentView && Focused == null) {
FocusFirst ();
Expand Down
110 changes: 109 additions & 1 deletion UnitTests/TopLevels/ToplevelTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,98 @@ public void OnEnter_OnLeave_Triggered_On_Application_Begin_End ()
Application.End (rs);

Assert.True (isEnter);
Assert.True (isLeave); // Leave event is now also invoked on Application.End allowing preform same output action
Assert.False (isLeave); // Leave event cannot be trigger because it v.Enter was performed and v is focused
Assert.True (v.HasFocus);
}

[Fact, AutoInitShutdown]
public void OnEnter_OnLeave_Triggered_On_Application_Begin_End_With_More_Toplevels ()
{
var iterations = 0;
var steps = new int [5];
var isEnterTop = false;
var isLeaveTop = false;
var vt = new View ();
var top = Application.Top;
var diag = new Dialog ();

vt.Enter += (e) => {
iterations++;
isEnterTop = true;
if (iterations == 1) {
steps [0] = iterations;
Assert.Null (e.View);
} else {
steps [4] = iterations;
Assert.Equal (diag, e.View);
}
};
vt.Leave += (e) => {
iterations++;
steps [1] = iterations;
isLeaveTop = true;
Assert.Equal (diag, e.View);
};
top.Add (vt);

Assert.False (vt.CanFocus);
var exception = Record.Exception (() => top.OnEnter (top));
Assert.Null (exception);
exception = Record.Exception (() => top.OnLeave (top));
Assert.Null (exception);

vt.CanFocus = true;
Application.Begin (top);

Assert.True (isEnterTop);
Assert.False (isLeaveTop);

isEnterTop = false;
var isEnterDiag = false;
var isLeaveDiag = false;
var vd = new View ();
vd.Enter += (e) => {
iterations++;
steps [2] = iterations;
isEnterDiag = true;
Assert.Null (e.View);
};
vd.Leave += (e) => {
iterations++;
steps [3] = iterations;
isLeaveDiag = true;
Assert.Equal (top, e.View);
};
diag.Add (vd);

Assert.False (vd.CanFocus);
exception = Record.Exception (() => diag.OnEnter (diag));
Assert.Null (exception);
exception = Record.Exception (() => diag.OnLeave (diag));
Assert.Null (exception);

vd.CanFocus = true;
var rs = Application.Begin (diag);

Assert.True (isEnterDiag);
Assert.False (isLeaveDiag);
Assert.False (isEnterTop);
Assert.True (isLeaveTop);

isEnterDiag = false;
isLeaveTop = false;
Application.End (rs);

Assert.False (isEnterDiag);
Assert.True (isLeaveDiag);
Assert.True (isEnterTop);
Assert.False (isLeaveTop); // Leave event cannot be trigger because it v.Enter was performed and v is focused
Assert.True (vt.HasFocus);
Assert.Equal (1, steps [0]);
Assert.Equal (2, steps [1]);
Assert.Equal (3, steps [2]);
Assert.Equal (4, steps [3]);
Assert.Equal (5, steps [^1]);
}

[Fact, AutoInitShutdown]
Expand All @@ -1031,5 +1122,22 @@ public void PositionCursor_SetCursorVisibility_To_Invisible_If_Focused_Is_Null (
Application.Driver.GetCursorVisibility (out cursor);
Assert.Equal (CursorVisibility.Invisible, cursor);
}

[Fact, AutoInitShutdown]
public void Activating_MenuBar_By_Alt_Key_Does_Not_Throw ()
{
var menu = new MenuBar (new MenuBarItem [] {
new MenuBarItem ("Child", new MenuItem [] {
new MenuItem ("_Create Child", "", null)
})
});
var topChild = new Toplevel ();
topChild.Add (menu);
Application.Top.Add (topChild);
Application.Begin (Application.Top);

var exception = Record.Exception (() => topChild.ProcessHotKey (new KeyEvent (Key.AltMask, new KeyModifiers { Alt = true })));
Assert.Null (exception);
}
}
}

0 comments on commit 0d27fcc

Please sign in to comment.