1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384 |
- using System;
- using Terminal.Gui;
- using Xunit;
- using Xunit.Abstractions;
- namespace Terminal.Gui.TopLevelTests {
- public class ToplevelTests {
- readonly ITestOutputHelper output;
- public ToplevelTests (ITestOutputHelper output)
- {
- this.output = output;
- }
- [Fact]
- [AutoInitShutdown]
- public void Constructor_Default ()
- {
- var top = new Toplevel ();
- Assert.Equal (Colors.TopLevel, top.ColorScheme);
- Assert.Equal ("Fill(0)", top.Width.ToString ());
- Assert.Equal ("Fill(0)", top.Height.ToString ());
- Assert.False (top.Running);
- Assert.False (top.Modal);
- Assert.Null (top.MenuBar);
- Assert.Null (top.StatusBar);
- Assert.False (top.IsMdiContainer);
- Assert.False (top.IsMdiChild);
- }
- [Fact]
- [AutoInitShutdown]
- public void Create_Toplevel ()
- {
- var top = Toplevel.Create ();
- top.BeginInit ();
- top.EndInit ();
- Assert.Equal (new Rect (0, 0, Application.Driver.Cols, Application.Driver.Rows), top.Bounds);
- }
- [Fact]
- [AutoInitShutdown]
- public void Application_Top_EnsureVisibleBounds_To_Driver_Rows_And_Cols ()
- {
- var iterations = 0;
- Application.Iteration += () => {
- if (iterations == 0) {
- Assert.False (Application.Top.AutoSize);
- Assert.Equal ("Top1", Application.Top.Text);
- Assert.Equal (0, Application.Top.Frame.X);
- Assert.Equal (0, Application.Top.Frame.Y);
- Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
- Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
- Application.Top.ProcessHotKey (new KeyEvent (Key.CtrlMask | Key.R, new KeyModifiers ()));
- } else if (iterations == 1) {
- Assert.Equal ("Top2", Application.Top.Text);
- Assert.Equal (0, Application.Top.Frame.X);
- Assert.Equal (0, Application.Top.Frame.Y);
- Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
- Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
- Application.Top.ProcessHotKey (new KeyEvent (Key.CtrlMask | Key.C, new KeyModifiers ()));
- } else if (iterations == 3) {
- Assert.Equal ("Top1", Application.Top.Text);
- Assert.Equal (0, Application.Top.Frame.X);
- Assert.Equal (0, Application.Top.Frame.Y);
- Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
- Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
- Application.Top.ProcessHotKey (new KeyEvent (Key.CtrlMask | Key.R, new KeyModifiers ()));
- } else if (iterations == 4) {
- Assert.Equal ("Top2", Application.Top.Text);
- Assert.Equal (0, Application.Top.Frame.X);
- Assert.Equal (0, Application.Top.Frame.Y);
- Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
- Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
- Application.Top.ProcessHotKey (new KeyEvent (Key.CtrlMask | Key.C, new KeyModifiers ()));
- } else if (iterations == 6) {
- Assert.Equal ("Top1", Application.Top.Text);
- Assert.Equal (0, Application.Top.Frame.X);
- Assert.Equal (0, Application.Top.Frame.Y);
- Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
- Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
- Application.Top.ProcessHotKey (new KeyEvent (Key.CtrlMask | Key.Q, new KeyModifiers ()));
- }
- iterations++;
- };
- Application.Run (Top1 ());
- Toplevel Top1 ()
- {
- var top = Application.Top;
- top.Text = "Top1";
- var menu = new MenuBar (new MenuBarItem [] {
- new MenuBarItem ("_Options", new MenuItem [] {
- new MenuItem ("_Run Top2", "", () => Application.Run (Top2 ()), null, null, Key.CtrlMask | Key.R),
- new MenuItem ("_Quit", "", () => Application.RequestStop(), null, null, Key.CtrlMask | Key.Q)
- })
- });
- top.Add (menu);
- var statusBar = new StatusBar (new [] {
- new StatusItem(Key.CtrlMask | Key.R, "~^R~ Run Top2", () => Application.Run (Top2 ())),
- new StatusItem(Application.QuitKey, $"{Application.QuitKey} to Quit", () => Application.RequestStop())
- });
- top.Add (statusBar);
- var t1 = new Toplevel ();
- top.Add (t1);
- return top;
- }
- Toplevel Top2 ()
- {
- var top = new Toplevel (Application.Top.Frame);
- top.Text = "Top2";
- var win = new Window () { Width = Dim.Fill (), Height = Dim.Fill () };
- var menu = new MenuBar (new MenuBarItem [] {
- new MenuBarItem ("_Stage", new MenuItem [] {
- new MenuItem ("_Close", "", () => Application.RequestStop(), null, null, Key.CtrlMask | Key.C)
- })
- });
- top.Add (menu);
- var statusBar = new StatusBar (new [] {
- new StatusItem(Key.CtrlMask | Key.C, "~^C~ Close", () => Application.RequestStop()),
- });
- top.Add (statusBar);
- win.Add (new ListView () {
- X = 0,
- Y = 0,
- Width = Dim.Fill (),
- Height = Dim.Fill ()
- });
- top.Add (win);
- return top;
- }
- }
- [Fact]
- [AutoInitShutdown]
- public void Internal_Tests ()
- {
- var top = new Toplevel ();
- var eventInvoked = "";
- top.ChildUnloaded += (s, e) => eventInvoked = "ChildUnloaded";
- top.OnChildUnloaded (top);
- Assert.Equal ("ChildUnloaded", eventInvoked);
- top.ChildLoaded += (s, e) => eventInvoked = "ChildLoaded";
- top.OnChildLoaded (top);
- Assert.Equal ("ChildLoaded", eventInvoked);
- top.Closed += (s, e) => eventInvoked = "Closed";
- top.OnClosed (top);
- Assert.Equal ("Closed", eventInvoked);
- top.Closing += (s, e) => eventInvoked = "Closing";
- top.OnClosing (new ToplevelClosingEventArgs (top));
- Assert.Equal ("Closing", eventInvoked);
- top.AllChildClosed += (s, e) => eventInvoked = "AllChildClosed";
- top.OnAllChildClosed ();
- Assert.Equal ("AllChildClosed", eventInvoked);
- top.ChildClosed += (s, e) => eventInvoked = "ChildClosed";
- top.OnChildClosed (top);
- Assert.Equal ("ChildClosed", eventInvoked);
- top.Deactivate += (s, e) => eventInvoked = "Deactivate";
- top.OnDeactivate (top);
- Assert.Equal ("Deactivate", eventInvoked);
- top.Activate += (s, e) => eventInvoked = "Activate";
- top.OnActivate (top);
- Assert.Equal ("Activate", eventInvoked);
- top.Loaded += (s, e) => eventInvoked = "Loaded";
- top.OnLoaded ();
- Assert.Equal ("Loaded", eventInvoked);
- top.Ready += (s, e) => eventInvoked = "Ready";
- top.OnReady ();
- Assert.Equal ("Ready", eventInvoked);
- top.Unloaded += (s, e) => eventInvoked = "Unloaded";
- top.OnUnloaded ();
- Assert.Equal ("Unloaded", eventInvoked);
- top.AddMenuStatusBar (new MenuBar ());
- Assert.NotNull (top.MenuBar);
- top.AddMenuStatusBar (new StatusBar ());
- Assert.NotNull (top.StatusBar);
- top.RemoveMenuStatusBar (top.MenuBar);
- Assert.Null (top.MenuBar);
- top.RemoveMenuStatusBar (top.StatusBar);
- Assert.Null (top.StatusBar);
- Application.Begin (top);
- Assert.Equal (top, Application.Top);
- // Application.Top without menu and status bar.
- var supView = top.EnsureVisibleBounds (top, 2, 2, out int nx, out int ny, out MenuBar mb, out StatusBar sb);
- Assert.Equal (Application.Top, supView);
- Assert.Equal (0, nx);
- Assert.Equal (0, ny);
- Assert.Null (mb);
- Assert.Null (sb);
- top.AddMenuStatusBar (new MenuBar ());
- Assert.NotNull (top.MenuBar);
- // Application.Top with a menu and without status bar.
- top.EnsureVisibleBounds (top, 2, 2, out nx, out ny, out mb, out sb);
- Assert.Equal (0, nx);
- Assert.Equal (1, ny);
- Assert.NotNull (mb);
- Assert.Null (sb);
- top.AddMenuStatusBar (new StatusBar ());
- Assert.NotNull (top.StatusBar);
- // Application.Top with a menu and status bar.
- top.EnsureVisibleBounds (top, 2, 2, out nx, out ny, out mb, out sb);
- Assert.Equal (0, nx);
- // The available height is lower than the Application.Top height minus
- // the menu bar and status bar, then the top can go beyond the bottom
- Assert.Equal (2, ny);
- Assert.NotNull (mb);
- Assert.NotNull (sb);
- top.RemoveMenuStatusBar (top.MenuBar);
- Assert.Null (top.MenuBar);
- // Application.Top without a menu and with a status bar.
- top.EnsureVisibleBounds (top, 2, 2, out nx, out ny, out mb, out sb);
- Assert.Equal (0, nx);
- // The available height is lower than the Application.Top height minus
- // the status bar, then the top can go beyond the bottom
- Assert.Equal (2, ny);
- Assert.Null (mb);
- Assert.NotNull (sb);
- top.RemoveMenuStatusBar (top.StatusBar);
- Assert.Null (top.StatusBar);
- Assert.Null (top.MenuBar);
- var win = new Window () { Width = Dim.Fill (), Height = Dim.Fill () };
- top.Add (win);
- top.LayoutSubviews ();
- // The SuperView is always the same regardless of the caller.
- supView = top.EnsureVisibleBounds (win, 0, 0, out nx, out ny, out mb, out sb);
- Assert.Equal (Application.Top, supView);
- supView = win.EnsureVisibleBounds (win, 0, 0, out nx, out ny, out mb, out sb);
- Assert.Equal (Application.Top, supView);
- // Application.Top without menu and status bar.
- top.EnsureVisibleBounds (win, 0, 0, out nx, out ny, out mb, out sb);
- Assert.Equal (0, nx);
- Assert.Equal (0, ny);
- Assert.Null (mb);
- Assert.Null (sb);
- top.AddMenuStatusBar (new MenuBar ());
- Assert.NotNull (top.MenuBar);
- // Application.Top with a menu and without status bar.
- top.EnsureVisibleBounds (win, 2, 2, out nx, out ny, out mb, out sb);
- Assert.Equal (0, nx);
- Assert.Equal (1, ny);
- Assert.NotNull (mb);
- Assert.Null (sb);
- top.AddMenuStatusBar (new StatusBar ());
- Assert.NotNull (top.StatusBar);
- // Application.Top with a menu and status bar.
- top.EnsureVisibleBounds (win, 30, 20, out nx, out ny, out mb, out sb);
- Assert.Equal (0, nx);
- // The available height is lower than the Application.Top height minus
- // the menu bar and status bar, then the top can go beyond the bottom
- Assert.Equal (20, ny);
- Assert.NotNull (mb);
- Assert.NotNull (sb);
- top.RemoveMenuStatusBar (top.MenuBar);
- top.RemoveMenuStatusBar (top.StatusBar);
- Assert.Null (top.StatusBar);
- Assert.Null (top.MenuBar);
- top.Remove (win);
- win = new Window () { Width = 60, Height = 15 };
- top.Add (win);
- // Application.Top without menu and status bar.
- top.EnsureVisibleBounds (win, 0, 0, out nx, out ny, out mb, out sb);
- Assert.Equal (0, nx);
- Assert.Equal (0, ny);
- Assert.Null (mb);
- Assert.Null (sb);
- top.AddMenuStatusBar (new MenuBar ());
- Assert.NotNull (top.MenuBar);
- // Application.Top with a menu and without status bar.
- top.EnsureVisibleBounds (win, 2, 2, out nx, out ny, out mb, out sb);
- Assert.Equal (2, nx);
- Assert.Equal (2, ny);
- Assert.NotNull (mb);
- Assert.Null (sb);
- top.AddMenuStatusBar (new StatusBar ());
- Assert.NotNull (top.StatusBar);
- // Application.Top with a menu and status bar.
- top.EnsureVisibleBounds (win, 30, 20, out nx, out ny, out mb, out sb);
- Assert.Equal (20, nx); // 20+60=80
- Assert.Equal (9, ny); // 9+15+1(mb)=25
- Assert.NotNull (mb);
- Assert.NotNull (sb);
- top.PositionToplevels ();
- Assert.Equal (new Rect (0, 1, 60, 15), win.Frame);
- Assert.Null (Toplevel.dragPosition);
- win.MouseEvent (new MouseEvent () { X = 6, Y = 0, Flags = MouseFlags.Button1Pressed });
- Assert.Equal (new Point (6, 0), Toplevel.dragPosition);
- win.MouseEvent (new MouseEvent () { X = 6, Y = 0, Flags = MouseFlags.Button1Released });
- Assert.Null (Toplevel.dragPosition);
- win.CanFocus = false;
- win.MouseEvent (new MouseEvent () { X = 6, Y = 0, Flags = MouseFlags.Button1Pressed });
- Assert.Null (Toplevel.dragPosition);
- }
- [Fact]
- [AutoInitShutdown]
- public void KeyBindings_Command ()
- {
- var isRunning = false;
- var win1 = new Window ("Win1") { Id = "win1", Width = Dim.Percent (50f), Height = Dim.Fill () };
- var lblTf1W1 = new Label ("Enter text in TextField on Win1:") { Id = "lblTf1W1" };
- var tf1W1 = new TextField ("Text1 on Win1") { Id = "tf1W1", X = Pos.Right (lblTf1W1) + 1, Width = Dim.Fill () };
- var lblTvW1 = new Label ("Enter text in TextView on Win1:") { Id = "lblTvW1", Y = Pos.Bottom (lblTf1W1) + 1 };
- var tvW1 = new TextView () { Id = "tvW1", X = Pos.Left (tf1W1), Width = Dim.Fill (), Height = 2, Text = "First line Win1\nSecond line Win1" };
- var lblTf2W1 = new Label ("Enter text in TextField on Win1:") { Id = "lblTf2W1", Y = Pos.Bottom (lblTvW1) + 1 };
- var tf2W1 = new TextField ("Text2 on Win1") { Id = "tf2W1", X = Pos.Left (tf1W1), Width = Dim.Fill () };
- win1.Add (lblTf1W1, tf1W1, lblTvW1, tvW1, lblTf2W1, tf2W1);
- var win2 = new Window ("Win2") { Id = "win2", X = Pos.Right (win1) + 1, Width = Dim.Percent (50f), Height = Dim.Fill () };
- var lblTf1W2 = new Label ("Enter text in TextField on Win2:") { Id = "lblTf1W2" };
- var tf1W2 = new TextField ("Text1 on Win2") { Id = "tf1W2", X = Pos.Right (lblTf1W2) + 1, Width = Dim.Fill () };
- var lblTvW2 = new Label ("Enter text in TextView on Win2:") { Id = "lblTvW2", Y = Pos.Bottom (lblTf1W2) + 1 };
- var tvW2 = new TextView () { Id = "tvW2", X = Pos.Left (tf1W2), Width = Dim.Fill (), Height = 2, Text = "First line Win1\nSecond line Win2" };
- var lblTf2W2 = new Label ("Enter text in TextField on Win2:") { Id = "lblTf2W2", Y = Pos.Bottom (lblTvW2) + 1 };
- var tf2W2 = new TextField ("Text2 on Win2") { Id = "tf2W2", X = Pos.Left (tf1W2), Width = Dim.Fill () };
- win2.Add (lblTf1W2, tf1W2, lblTvW2, tvW2, lblTf2W2, tf2W2);
- var top = Application.Top;
- top.Add (win1, win2);
- top.Loaded += (s, e) => isRunning = true;
- top.Closing += (s, e) => isRunning = false;
- Application.Begin (top);
- top.Running = true;
- Assert.Equal (new Rect (0, 0, 40, 25), win1.Frame);
- Assert.Equal (new Rect (41, 0, 40, 25), win2.Frame);
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf1W1, top.MostFocused);
- Assert.True (isRunning);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Application.QuitKey, new KeyModifiers ())));
- Assert.False (isRunning);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.Z | Key.CtrlMask, new KeyModifiers ())));
- Assert.False (top.Focused.ProcessKey (new KeyEvent (Key.F5, new KeyModifiers ())));
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tvW1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ())));
- Assert.Equal ($"\tFirst line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.BackTab | Key.ShiftMask, new KeyModifiers ())));
- Assert.Equal ($"First line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.Tab | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf2W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf1W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.CursorRight, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf1W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tvW1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.I | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf2W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.BackTab | Key.ShiftMask, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tvW1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.CursorLeft, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf1W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.CursorUp, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf2W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.Tab | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win2, top.Focused);
- Assert.Equal (tf1W2, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.Tab | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf2W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Application.AlternateForwardKey, new KeyModifiers ())));
- Assert.Equal (win2, top.Focused);
- Assert.Equal (tf1W2, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Application.AlternateBackwardKey, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf2W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.CursorUp, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tvW1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.B | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf1W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tvW1, top.MostFocused);
- Assert.Equal (new Point (0, 0), tvW1.CursorPosition);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.End | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tvW1, top.MostFocused);
- Assert.Equal (new Point (16, 1), tvW1.CursorPosition);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.F | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, top.Focused);
- Assert.Equal (tf2W1, top.MostFocused);
- Assert.True (top.Focused.ProcessKey (new KeyEvent (Key.L | Key.CtrlMask, new KeyModifiers ())));
- }
- [Fact]
- [AutoInitShutdown]
- public void KeyBindings_Command_With_MdiTop ()
- {
- var top = Application.Top;
- Assert.Null (Application.MdiTop);
- top.IsMdiContainer = true;
- Application.Begin (top);
- Assert.Equal (Application.Top, Application.MdiTop);
- var isRunning = true;
- var win1 = new Window ("Win1") { Width = Dim.Percent (50f), Height = Dim.Fill () };
- var lblTf1W1 = new Label ("Enter text in TextField on Win1:");
- var tf1W1 = new TextField ("Text1 on Win1") { X = Pos.Right (lblTf1W1) + 1, Width = Dim.Fill () };
- var lblTvW1 = new Label ("Enter text in TextView on Win1:") { Y = Pos.Bottom (lblTf1W1) + 1 };
- var tvW1 = new TextView () { X = Pos.Left (tf1W1), Width = Dim.Fill (), Height = 2, Text = "First line Win1\nSecond line Win1" };
- var lblTf2W1 = new Label ("Enter text in TextField on Win1:") { Y = Pos.Bottom (lblTvW1) + 1 };
- var tf2W1 = new TextField ("Text2 on Win1") { X = Pos.Left (tf1W1), Width = Dim.Fill () };
- win1.Add (lblTf1W1, tf1W1, lblTvW1, tvW1, lblTf2W1, tf2W1);
- var win2 = new Window ("Win2") { Width = Dim.Percent (50f), Height = Dim.Fill () };
- var lblTf1W2 = new Label ("Enter text in TextField on Win2:");
- var tf1W2 = new TextField ("Text1 on Win2") { X = Pos.Right (lblTf1W2) + 1, Width = Dim.Fill () };
- var lblTvW2 = new Label ("Enter text in TextView on Win2:") { Y = Pos.Bottom (lblTf1W2) + 1 };
- var tvW2 = new TextView () { X = Pos.Left (tf1W2), Width = Dim.Fill (), Height = 2, Text = "First line Win1\nSecond line Win2" };
- var lblTf2W2 = new Label ("Enter text in TextField on Win2:") { Y = Pos.Bottom (lblTvW2) + 1 };
- var tf2W2 = new TextField ("Text2 on Win2") { X = Pos.Left (tf1W2), Width = Dim.Fill () };
- win2.Add (lblTf1W2, tf1W2, lblTvW2, tvW2, lblTf2W2, tf2W2);
- win1.Closing += (s, e) => isRunning = false;
- Assert.Null (top.Focused);
- Assert.Equal (top, Application.Current);
- Assert.True (top.IsCurrentTop);
- Assert.Equal (top, Application.MdiTop);
- Application.Begin (win1);
- Assert.Equal (new Rect (0, 0, 40, 25), win1.Frame);
- Assert.NotEqual (top, Application.Current);
- Assert.False (top.IsCurrentTop);
- Assert.Equal (win1, Application.Current);
- Assert.True (win1.IsCurrentTop);
- Assert.True (win1.IsMdiChild);
- Assert.Null (top.Focused);
- Assert.Null (top.MostFocused);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (win1.IsMdiChild);
- Assert.Single (Application.MdiChildes);
- Application.Begin (win2);
- Assert.Equal (new Rect (0, 0, 40, 25), win2.Frame);
- Assert.NotEqual (top, Application.Current);
- Assert.False (top.IsCurrentTop);
- Assert.Equal (win2, Application.Current);
- Assert.True (win2.IsCurrentTop);
- Assert.True (win2.IsMdiChild);
- Assert.Null (top.Focused);
- Assert.Null (top.MostFocused);
- Assert.Equal (tf1W2, win2.MostFocused);
- Assert.Equal (2, Application.MdiChildes.Count);
- Application.ShowChild (win1);
- Assert.Equal (win1, Application.Current);
- Assert.Equal (win1, Application.MdiChildes [0]);
- win1.Running = true;
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Application.QuitKey, new KeyModifiers ())));
- Assert.False (isRunning);
- Assert.False (win1.Running);
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Z | Key.CtrlMask, new KeyModifiers ())));
- Assert.False (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.F5, new KeyModifiers ())));
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ())));
- Assert.True (win1.IsCurrentTop);
- Assert.Equal (tvW1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ())));
- Assert.Equal ($"\tFirst line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.BackTab | Key.ShiftMask, new KeyModifiers ())));
- Assert.Equal ($"First line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Tab | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf2W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.CursorRight, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tvW1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.I | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf2W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.BackTab | Key.ShiftMask, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tvW1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.CursorLeft, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.CursorUp, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf2W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Tab, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Tab | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win2, Application.MdiChildes [0]);
- Assert.Equal (tf1W2, win2.MostFocused);
- tf2W2.SetFocus ();
- Assert.True (tf2W2.HasFocus);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.Tab | Key.CtrlMask | Key.ShiftMask, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Application.AlternateForwardKey, new KeyModifiers ())));
- Assert.Equal (win2, Application.MdiChildes [0]);
- Assert.Equal (tf2W2, win2.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Application.AlternateBackwardKey, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tvW1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.B | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf1W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.CursorDown, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tvW1, win1.MostFocused);
- Assert.Equal (new Point (0, 0), tvW1.CursorPosition);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.End | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tvW1, win1.MostFocused);
- Assert.Equal (new Point (16, 1), tvW1.CursorPosition);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.F | Key.CtrlMask, new KeyModifiers ())));
- Assert.Equal (win1, Application.MdiChildes [0]);
- Assert.Equal (tf2W1, win1.MostFocused);
- Assert.True (Application.MdiChildes [0].ProcessKey (new KeyEvent (Key.L | Key.CtrlMask, new KeyModifiers ())));
- }
- [Fact]
- public void Added_Event_Should_Not_Be_Used_To_Initialize_Toplevel_Events ()
- {
- Key alternateForwardKey = default;
- Key alternateBackwardKey = default;
- Key quitKey = default;
- var wasAdded = false;
- var view = new View ();
- view.Added += View_Added;
- void View_Added (object sender, SuperViewChangedEventArgs e)
- {
- Assert.Throws<NullReferenceException> (() => Application.Top.AlternateForwardKeyChanged += (s, e) => alternateForwardKey = e.OldKey);
- Assert.Throws<NullReferenceException> (() => Application.Top.AlternateBackwardKeyChanged += (s, e) => alternateBackwardKey = e.OldKey);
- Assert.Throws<NullReferenceException> (() => Application.Top.QuitKeyChanged += (s, e) => quitKey = e.OldKey);
- Assert.False (wasAdded);
- wasAdded = true;
- view.Added -= View_Added;
- }
- var win = new Window ();
- win.Add (view);
- Application.Init (new FakeDriver ());
- var top = Application.Top;
- top.Add (win);
- Assert.True (wasAdded);
- Application.Shutdown ();
- }
- [Fact]
- [AutoInitShutdown]
- public void AlternateForwardKeyChanged_AlternateBackwardKeyChanged_QuitKeyChanged_Events ()
- {
- Key alternateForwardKey = default;
- Key alternateBackwardKey = default;
- Key quitKey = default;
- var view = new View ();
- view.Initialized += View_Initialized;
- void View_Initialized (object sender, EventArgs e)
- {
- Application.Top.AlternateForwardKeyChanged += (s, e) => alternateForwardKey = e.OldKey;
- Application.Top.AlternateBackwardKeyChanged += (s, e) => alternateBackwardKey = e.OldKey;
- Application.Top.QuitKeyChanged += (s, e) => quitKey = e.OldKey;
- }
- var win = new Window ();
- win.Add (view);
- var top = Application.Top;
- top.Add (win);
- Application.Begin (top);
- Assert.Equal (Key.Null, alternateForwardKey);
- Assert.Equal (Key.Null, alternateBackwardKey);
- Assert.Equal (Key.Null, quitKey);
- Assert.Equal (Key.PageDown | Key.CtrlMask, Application.AlternateForwardKey);
- Assert.Equal (Key.PageUp | Key.CtrlMask, Application.AlternateBackwardKey);
- Assert.Equal (Key.Q | Key.CtrlMask, Application.QuitKey);
- Application.AlternateForwardKey = Key.A;
- Application.AlternateBackwardKey = Key.B;
- Application.QuitKey = Key.C;
- Assert.Equal (Key.PageDown | Key.CtrlMask, alternateForwardKey);
- Assert.Equal (Key.PageUp | Key.CtrlMask, alternateBackwardKey);
- Assert.Equal (Key.Q | Key.CtrlMask, quitKey);
- Assert.Equal (Key.A, Application.AlternateForwardKey);
- Assert.Equal (Key.B, Application.AlternateBackwardKey);
- Assert.Equal (Key.C, Application.QuitKey);
- // Replacing the defaults keys to avoid errors on others unit tests that are using it.
- Application.AlternateForwardKey = Key.PageDown | Key.CtrlMask;
- Application.AlternateBackwardKey = Key.PageUp | Key.CtrlMask;
- Application.QuitKey = Key.Q | Key.CtrlMask;
- Assert.Equal (Key.PageDown | Key.CtrlMask, Application.AlternateForwardKey);
- Assert.Equal (Key.PageUp | Key.CtrlMask, Application.AlternateBackwardKey);
- Assert.Equal (Key.Q | Key.CtrlMask, Application.QuitKey);
- }
- [Fact]
- [AutoInitShutdown]
- public void FileDialog_FileSystemWatcher ()
- {
- for (int i = 0; i < 8; i++) {
- var fd = new FileDialog ();
- fd.Ready += (s, e) => Application.RequestStop ();
- Application.Run (fd);
- }
- }
- [Fact, AutoInitShutdown]
- public void Mouse_Drag_On_Top_With_Superview_Null ()
- {
- var win = new Window ();
- var top = Application.Top;
- top.Add (win);
- var iterations = -1;
- Application.Iteration = () => {
- iterations++;
- if (iterations == 0) {
- ((FakeDriver)Application.Driver).SetBufferSize (40, 15);
- MessageBox.Query ("", "Hello Word", "Ok");
- } else if (iterations == 1) {
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌──────────────────────────────────────┐
- │ │
- │ │
- │ │
- │ │
- │ ┌──────────────────────┐ │
- │ │ Hello Word │ │
- │ │ │ │
- │ │ [◦ Ok ◦] │ │
- │ └──────────────────────┘ │
- │ │
- │ │
- │ │
- │ │
- └──────────────────────────────────────┘
- ", output);
- } else if (iterations == 2) {
- Assert.Null (Application.MouseGrabView);
- // Grab the mouse
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 8,
- Y = 5,
- Flags = MouseFlags.Button1Pressed
- });
- Assert.Equal (Application.Current, Application.MouseGrabView);
- Assert.Equal (new Rect (8, 5, 24, 5), Application.MouseGrabView.Frame);
- } else if (iterations == 3) {
- Assert.Equal (Application.Current, Application.MouseGrabView);
- // Drag to left
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 7,
- Y = 5,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Assert.Equal (Application.Current, Application.MouseGrabView);
- Assert.Equal (new Rect (7, 5, 24, 5), Application.MouseGrabView.Frame);
- } else if (iterations == 4) {
- Assert.Equal (Application.Current, Application.MouseGrabView);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌──────────────────────────────────────┐
- │ │
- │ │
- │ │
- │ │
- │ ┌──────────────────────┐ │
- │ │ Hello Word │ │
- │ │ │ │
- │ │ [◦ Ok ◦] │ │
- │ └──────────────────────┘ │
- │ │
- │ │
- │ │
- │ │
- └──────────────────────────────────────┘", output);
- Assert.Equal (Application.Current, Application.MouseGrabView);
- } else if (iterations == 5) {
- Assert.Equal (Application.Current, Application.MouseGrabView);
- // Drag up
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 7,
- Y = 4,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Assert.Equal (Application.Current, Application.MouseGrabView);
- Assert.Equal (new Rect (7, 4, 24, 5), Application.MouseGrabView.Frame);
- } else if (iterations == 6) {
- Assert.Equal (Application.Current, Application.MouseGrabView);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌──────────────────────────────────────┐
- │ │
- │ │
- │ │
- │ ┌──────────────────────┐ │
- │ │ Hello Word │ │
- │ │ │ │
- │ │ [◦ Ok ◦] │ │
- │ └──────────────────────┘ │
- │ │
- │ │
- │ │
- │ │
- │ │
- └──────────────────────────────────────┘", output);
- Assert.Equal (Application.Current, Application.MouseGrabView);
- Assert.Equal (new Rect (7, 4, 24, 5), Application.MouseGrabView.Frame);
- } else if (iterations == 7) {
- Assert.Equal (Application.Current, Application.MouseGrabView);
- // Ungrab the mouse
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 7,
- Y = 4,
- Flags = MouseFlags.Button1Released
- });
- Assert.Null (Application.MouseGrabView);
- } else if (iterations == 8) Application.RequestStop ();
- else if (iterations == 9) Application.RequestStop ();
- };
- Application.Run ();
- }
- [Fact, AutoInitShutdown]
- public void Mouse_Drag_On_Top_With_Superview_Not_Null ()
- {
- var win = new Window () {
- X = 3,
- Y = 2,
- Width = Dim.Fill (10),
- Height = Dim.Fill (5)
- };
- var top = Application.Top;
- top.Add (win);
- var iterations = -1;
- int movex = 0;
- int movey = 0;
- var location = new Rect (win.Frame.X, win.Frame.Y, 7, 3);
- Application.Iteration = () => {
- iterations++;
- if (iterations == 0) {
- ((FakeDriver)Application.Driver).SetBufferSize (20, 10);
- Assert.Null (Application.MouseGrabView);
- // Grab the mouse
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = win.Frame.X,
- Y = win.Frame.Y,
- Flags = MouseFlags.Button1Pressed
- });
- Assert.Equal (win, Application.MouseGrabView);
- Assert.Equal (location, Application.MouseGrabView.Frame);
- } else if (iterations == 1) {
- Assert.Equal (win, Application.MouseGrabView);
- // Drag to left
- movex = 1;
- movey = 0;
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = win.Frame.X + movex,
- Y = win.Frame.Y + movey,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Assert.Equal (win, Application.MouseGrabView);
- } else if (iterations == 2) {
- // we should have moved +1, +0
- Assert.Equal (win, Application.MouseGrabView);
- Assert.Equal (win, Application.MouseGrabView);
- location.Offset (movex, movey);
- Assert.Equal (location, Application.MouseGrabView.Frame);
- } else if (iterations == 3) {
- Assert.Equal (win, Application.MouseGrabView);
- // Drag up
- movex = 0;
- movey = -1;
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = win.Frame.X + movex,
- Y = win.Frame.Y + movey,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Assert.Equal (win, Application.MouseGrabView);
- } else if (iterations == 4) {
- // we should have moved +0, -1
- Assert.Equal (win, Application.MouseGrabView);
- location.Offset (movex, movey);
- Assert.Equal (location, Application.MouseGrabView.Frame);
- } else if (iterations == 5) {
- Assert.Equal (win, Application.MouseGrabView);
- // Ungrab the mouse
- movex = 0;
- movey = 0;
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = win.Frame.X + movex,
- Y = win.Frame.Y + movey,
- Flags = MouseFlags.Button1Released
- });
- Assert.Null (Application.MouseGrabView);
- } else if (iterations == 8) {
- Application.RequestStop ();
- }
- };
- Application.Run ();
- }
- [Fact, AutoInitShutdown]
- public void EnsureVisibleBounds_With_Border_Null_Not_Throws ()
- {
- var top = new Toplevel ();
- Application.Begin (top);
- var exception = Record.Exception (() => ((FakeDriver)Application.Driver).SetBufferSize (0, 10));
- Assert.Null (exception);
- exception = Record.Exception (() => ((FakeDriver)Application.Driver).SetBufferSize (10, 0));
- Assert.Null (exception);
- }
- [Fact, AutoInitShutdown]
- public void OnEnter_OnLeave_Triggered_On_Application_Begin_End ()
- {
- var isEnter = false;
- var isLeave = false;
- var v = new View ();
- v.Enter += (s, _) => isEnter = true;
- v.Leave += (s, _) => isLeave = true;
- var top = Application.Top;
- top.Add (v);
- Assert.False (v.CanFocus);
- var exception = Record.Exception (() => top.OnEnter (top));
- Assert.Null (exception);
- exception = Record.Exception (() => top.OnLeave (top));
- Assert.Null (exception);
- v.CanFocus = true;
- Application.Begin (top);
- Assert.True (isEnter);
- Assert.False (isLeave);
- isEnter = false;
- var d = new Dialog ();
- var rs = Application.Begin (d);
- Assert.False (isEnter);
- Assert.True (isLeave);
- isLeave = false;
- Application.End (rs);
- Assert.True (isEnter);
- Assert.False (isLeave);
- }
- [Fact, AutoInitShutdown]
- public void PositionCursor_SetCursorVisibility_To_Invisible_If_Focused_Is_Null ()
- {
- var tf = new TextField ("test") { Width = 5 };
- var view = new View () { Width = 10, Height = 10 };
- view.Add (tf);
- Application.Top.Add (view);
- Application.Begin (Application.Top);
- Assert.True (tf.HasFocus);
- Application.Driver.GetCursorVisibility (out CursorVisibility cursor);
- Assert.Equal (CursorVisibility.Default, cursor);
- view.Enabled = false;
- Assert.False (tf.HasFocus);
- Application.Refresh ();
- Application.Driver.GetCursorVisibility (out cursor);
- Assert.Equal (CursorVisibility.Invisible, cursor);
- }
- [Fact, AutoInitShutdown]
- public void IsLoaded_Application_Begin ()
- {
- var top = Application.Top;
- Assert.False (top.IsLoaded);
- Application.Begin (top);
- Assert.True (top.IsLoaded);
- }
- [Fact, AutoInitShutdown]
- public void IsLoaded_With_Sub_Toplevel_Application_Begin_NeedDisplay ()
- {
- var top = Application.Top;
- var subTop = new Toplevel ();
- var view = new View (new Rect (0, 0, 20, 10));
- subTop.Add (view);
- top.Add (subTop);
- Assert.False (top.IsLoaded);
- Assert.False (subTop.IsLoaded);
- Assert.Equal (new Rect (0, 0, 20, 10), view.Frame);
- // BUGBUG: v2 - SetNeedsDisplay is all goofed up. Disabling test for now
- //Assert.Equal (new Rect (0, 0, 20, 10), view._needsDisplay);
- view.LayoutStarted += view_LayoutStarted;
- void view_LayoutStarted (object sender, LayoutEventArgs e)
- {
- Assert.Equal (new Rect (0, 0, 20, 10), view._needsDisplay);
- view.LayoutStarted -= view_LayoutStarted;
- }
- Application.Begin (top);
- Assert.True (top.IsLoaded);
- Assert.True (subTop.IsLoaded);
- Assert.Equal (new Rect (0, 0, 20, 10), view.Frame);
- view.Frame = new Rect (1, 3, 10, 5);
- Assert.Equal (new Rect (1, 3, 10, 5), view.Frame);
- Assert.Equal (new Rect (0, 0, 10, 5), view._needsDisplay);
- view.Redraw (view.Bounds);
- view.Frame = new Rect (1, 3, 10, 5);
- Assert.Equal (new Rect (1, 3, 10, 5), view.Frame);
- Assert.Equal (new Rect (0, 0, 10, 5), view._needsDisplay);
- }
- [Fact, AutoInitShutdown]
- public void Toplevel_Inside_ScrollView_MouseGrabView ()
- {
- var scrollView = new ScrollView () {
- X = 3,
- Y = 3,
- Width = 40,
- Height = 16,
- ContentSize = new Size (200, 100)
- };
- var win = new Window ("Window") { X = 3, Y = 3, Width = Dim.Fill (3), Height = Dim.Fill (3) };
- scrollView.Add (win);
- var top = Application.Top;
- top.Add (scrollView);
- Application.Begin (top);
- Assert.Equal (new Rect (0, 0, 80, 25), top.Frame);
- Assert.Equal (new Rect (3, 3, 40, 16), scrollView.Frame);
- Assert.Equal (new Rect (0, 0, 200, 100), scrollView.Subviews [0].Frame);
- Assert.Equal (new Rect (3, 3, 194, 94), win.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ▲
- ┬
- │
- ┌┤Window├───────────────────────────┴
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ▼
- ◄├──────┤░░░░░░░░░░░░░░░░░░░░░░░░░░░░░► ", output);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 6,
- Y = 6,
- Flags = MouseFlags.Button1Pressed
- });
- Assert.Equal (win, Application.MouseGrabView);
- Assert.Equal (new Rect (3, 3, 194, 94), win.Frame);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 9,
- Y = 9,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Assert.Equal (win, Application.MouseGrabView);
- top.SetNeedsLayout ();
- top.LayoutSubviews ();
- Assert.Equal (new Rect (6, 6, 191, 91), win.Frame);
- Application.Refresh ();
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ▲
- ┬
- │
- ┴
- ░
- ░
- ┌┤Window├────────────────────────░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ▼
- ◄├──────┤░░░░░░░░░░░░░░░░░░░░░░░░░░░░░► ", output);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 5,
- Y = 5,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Assert.Equal (win, Application.MouseGrabView);
- top.SetNeedsLayout ();
- top.LayoutSubviews ();
- Assert.Equal (new Rect (2, 2, 195, 95), win.Frame);
- Application.Refresh ();
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ▲
- ┬
- ┌┤Window├────────────────────────────│
- │ ┴
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ░
- │ ▼
- ◄├──────┤░░░░░░░░░░░░░░░░░░░░░░░░░░░░░► ", output);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 5,
- Y = 5,
- Flags = MouseFlags.Button1Released
- });
- Assert.Null (Application.MouseGrabView);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 4,
- Y = 4,
- Flags = MouseFlags.ReportMousePosition
- });
- Assert.Equal (scrollView, Application.MouseGrabView);
- }
- [Fact, AutoInitShutdown]
- public void Dialog_Bounds_Bigger_Than_Driver_Cols_And_Rows_Allow_Drag_Beyond_Left_Right_And_Bottom ()
- {
- var top = Application.Top;
- var dialog = new Dialog ("", 20, 3, new Button ("Ok"));
- Application.Begin (top);
- ((FakeDriver)Application.Driver).SetBufferSize (40, 10);
- Application.Begin (dialog);
- Application.Refresh ();
- Assert.Equal (new Rect (0, 0, 40, 10), top.Frame);
- Assert.Equal (new Rect (10, 3, 20, 3), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌──────────────────┐
- │ [ Ok ] │
- └──────────────────┘
- ", output);
- Assert.Null (Application.MouseGrabView);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 10,
- Y = 3,
- Flags = MouseFlags.Button1Pressed
- });
- Assert.Equal (dialog, Application.MouseGrabView);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = -11,
- Y = -4,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Application.Refresh ();
- Assert.Equal (new Rect (0, 0, 40, 10), top.Frame);
- Assert.Equal (new Rect (0, 0, 20, 3), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌──────────────────┐
- │ [ Ok ] │
- └──────────────────┘
- ", output);
- // Changes Top size to same size as Dialog more menu and scroll bar
- ((FakeDriver)Application.Driver).SetBufferSize (20, 3);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = -1,
- Y = -1,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Application.Refresh ();
- Assert.Equal (new Rect (0, 0, 20, 3), top.Frame);
- Assert.Equal (new Rect (0, 0, 20, 3), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌──────────────────┐
- │ [ Ok ] │
- └──────────────────┘
- ", output);
- // Changes Top size smaller than Dialog size
- ((FakeDriver)Application.Driver).SetBufferSize (19, 2);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = -1,
- Y = -1,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Application.Refresh ();
- Assert.Equal (new Rect (0, 0, 19, 2), top.Frame);
- Assert.Equal (new Rect (-1, 0, 20, 3), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ──────────────────┐
- [ Ok ] │
- ", output);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 18,
- Y = 1,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Application.Refresh ();
- Assert.Equal (new Rect (0, 0, 19, 2), top.Frame);
- Assert.Equal (new Rect (18, 1, 20, 3), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌", output);
- // On a real app we can't go beyond the SuperView bounds
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 19,
- Y = 2,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- Application.Refresh ();
- Assert.Equal (new Rect (0, 0, 19, 2), top.Frame);
- Assert.Equal (new Rect (19, 2, 20, 3), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"", output);
- }
- [Fact, AutoInitShutdown]
- public void Single_Smaller_Top_Will_Have_Cleaning_Trails_Chunk_On_Move ()
- {
- var dialog = new Dialog ("Single smaller Dialog") { Width = 30, Height = 10 };
- dialog.Add (new Label (
- "How should I've to react. Cleaning all chunk trails or setting the 'Cols' and 'Rows' to this dialog length?\n" +
- "Cleaning is more easy to fix this.") {
- X = Pos.Center (),
- Y = Pos.Center (),
- Width = Dim.Fill (),
- Height = Dim.Fill (),
- TextAlignment = TextAlignment.Centered,
- VerticalTextAlignment = VerticalTextAlignment.Middle,
- AutoSize = false
- });
- var rs = Application.Begin (dialog);
- Assert.Null (Application.MouseGrabView);
- Assert.Equal (new Rect (25, 7, 30, 10), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌┤Single smaller Dialog├─────┐
- │ How should I've to react. │
- │Cleaning all chunk trails or│
- │ setting the 'Cols' and │
- │ 'Rows' to this dialog │
- │ length? │
- │Cleaning is more easy to fix│
- │ this. │
- │ │
- └────────────────────────────┘", output);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 25,
- Y = 7,
- Flags = MouseFlags.Button1Pressed
- });
- var firstIteration = false;
- Application.RunMainLoopIteration (ref rs, true, ref firstIteration);
- Assert.Equal (dialog, Application.MouseGrabView);
- Assert.Equal (new Rect (25, 7, 30, 10), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌┤Single smaller Dialog├─────┐
- │ How should I've to react. │
- │Cleaning all chunk trails or│
- │ setting the 'Cols' and │
- │ 'Rows' to this dialog │
- │ length? │
- │Cleaning is more easy to fix│
- │ this. │
- │ │
- └────────────────────────────┘", output);
- ReflectionTools.InvokePrivate (
- typeof (Application),
- "ProcessMouseEvent",
- new MouseEvent () {
- X = 20,
- Y = 10,
- Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition
- });
- firstIteration = false;
- Application.RunMainLoopIteration (ref rs, true, ref firstIteration);
- Assert.Equal (dialog, Application.MouseGrabView);
- Assert.Equal (new Rect (20, 10, 30, 10), dialog.Frame);
- TestHelpers.AssertDriverContentsWithFrameAre (@"
- ┌┤Single smaller Dialog├─────┐
- │ How should I've to react. │
- │Cleaning all chunk trails or│
- │ setting the 'Cols' and │
- │ 'Rows' to this dialog │
- │ length? │
- │Cleaning is more easy to fix│
- │ this. │
- │ │
- └────────────────────────────┘", output);
- Application.End (rs);
- }
- }
- }
|