ToplevelTests.cs 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097
  1. using Xunit.Abstractions;
  2. using static System.Net.Mime.MediaTypeNames;
  3. namespace Terminal.Gui.ViewsTests;
  4. public class ToplevelTests
  5. {
  6. private readonly ITestOutputHelper _output;
  7. public ToplevelTests (ITestOutputHelper output) { _output = output; }
  8. [Fact]
  9. [AutoInitShutdown]
  10. public void Constructor_Default ()
  11. {
  12. var top = new Toplevel ();
  13. Assert.Equal (Colors.ColorSchemes ["TopLevel"], top.ColorScheme);
  14. Assert.Equal ("Fill(0)", top.Width.ToString ());
  15. Assert.Equal ("Fill(0)", top.Height.ToString ());
  16. Assert.False (top.Running);
  17. Assert.False (top.Modal);
  18. Assert.Null (top.MenuBar);
  19. Assert.Null (top.StatusBar);
  20. Assert.False (top.IsOverlappedContainer);
  21. Assert.False (top.IsOverlapped);
  22. }
  23. [Fact]
  24. public void Arrangement_Is_Movable ()
  25. {
  26. var top = new Toplevel ();
  27. Assert.Equal (ViewArrangement.Movable, top.Arrangement);
  28. }
  29. #if BROKE_IN_2927
  30. // BUGBUG: The name of this test does not match what it does.
  31. [Fact]
  32. [AutoInitShutdown]
  33. public void Application_Top_GetLocationThatFits_To_Driver_Rows_And_Cols ()
  34. {
  35. var iterations = 0;
  36. Application.Iteration += (s, a) =>
  37. {
  38. switch (iterations)
  39. {
  40. case 0:
  41. Assert.False (Application.Top.AutoSize);
  42. Assert.Equal ("Top1", Application.Top.Text);
  43. Assert.Equal (0, Application.Top.Frame.X);
  44. Assert.Equal (0, Application.Top.Frame.Y);
  45. Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
  46. Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
  47. Application.OnKeyPressed (new (Key.CtrlMask | Key.R));
  48. break;
  49. case 1:
  50. Assert.Equal ("Top2", Application.Top.Text);
  51. Assert.Equal (0, Application.Top.Frame.X);
  52. Assert.Equal (0, Application.Top.Frame.Y);
  53. Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
  54. Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
  55. Application.OnKeyPressed (new (Key.CtrlMask | Key.C));
  56. break;
  57. case 3:
  58. Assert.Equal ("Top1", Application.Top.Text);
  59. Assert.Equal (0, Application.Top.Frame.X);
  60. Assert.Equal (0, Application.Top.Frame.Y);
  61. Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
  62. Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
  63. Application.OnKeyPressed (new (Key.CtrlMask | Key.R));
  64. break;
  65. case 4:
  66. Assert.Equal ("Top2", Application.Top.Text);
  67. Assert.Equal (0, Application.Top.Frame.X);
  68. Assert.Equal (0, Application.Top.Frame.Y);
  69. Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
  70. Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
  71. Application.OnKeyPressed (new (Key.CtrlMask | Key.C));
  72. break;
  73. case 6:
  74. Assert.Equal ("Top1", Application.Top.Text);
  75. Assert.Equal (0, Application.Top.Frame.X);
  76. Assert.Equal (0, Application.Top.Frame.Y);
  77. Assert.Equal (Application.Driver.Cols, Application.Top.Frame.Width);
  78. Assert.Equal (Application.Driver.Rows, Application.Top.Frame.Height);
  79. Application.OnKeyPressed (new (Key.CtrlMask | Key.Q));
  80. break;
  81. }
  82. iterations++;
  83. };
  84. Application.Run (Top1 ());
  85. Toplevel Top1 ()
  86. {
  87. var top = Application.Top;
  88. top.Text = "Top1";
  89. var menu = new MenuBar (
  90. new MenuBarItem []
  91. {
  92. new MenuBarItem (
  93. "_Options",
  94. new MenuItem []
  95. {
  96. new MenuItem (
  97. "_Run Top2",
  98. "",
  99. () => Application.Run (Top2 ()),
  100. null,
  101. null,
  102. Key.CtrlMask | Key.R
  103. ),
  104. new MenuItem (
  105. "_Quit",
  106. "",
  107. () => Application
  108. .RequestStop (),
  109. null,
  110. null,
  111. Key.CtrlMask | Key.Q
  112. )
  113. }
  114. )
  115. }
  116. );
  117. top.Add (menu);
  118. var statusBar = new StatusBar (
  119. new []
  120. {
  121. new StatusItem (
  122. Key.CtrlMask | Key.R,
  123. "~^R~ Run Top2",
  124. () => Application.Run (Top2 ())
  125. ),
  126. new StatusItem (
  127. Application.QuitKey,
  128. $"{Application.QuitKey} to Quit",
  129. () => Application.RequestStop ()
  130. )
  131. }
  132. );
  133. top.Add (statusBar);
  134. var t1 = new Toplevel ();
  135. top.Add (t1);
  136. return top;
  137. }
  138. Toplevel Top2 ()
  139. {
  140. var top = new Toplevel (Application.Top.Frame);
  141. top.Text = "Top2";
  142. var win = new Window { Width = Dim.Fill (), Height = Dim.Fill () };
  143. var menu = new MenuBar (
  144. new MenuBarItem []
  145. {
  146. new MenuBarItem (
  147. "_Stage",
  148. new MenuItem []
  149. {
  150. new MenuItem (
  151. "_Close",
  152. "",
  153. () => Application
  154. .RequestStop (),
  155. null,
  156. null,
  157. Key.CtrlMask | Key.C
  158. )
  159. }
  160. )
  161. }
  162. );
  163. top.Add (menu);
  164. var statusBar = new StatusBar (
  165. new []
  166. {
  167. new StatusItem (
  168. Key.CtrlMask | Key.C,
  169. "~^C~ Close",
  170. () => Application.RequestStop ()
  171. ),
  172. }
  173. );
  174. top.Add (statusBar);
  175. win.Add (
  176. new ListView { X = 0, Y = 0, Width = Dim.Fill (), Height = Dim.Fill () }
  177. );
  178. top.Add (win);
  179. return top;
  180. }
  181. }
  182. #endif
  183. [Fact]
  184. [AutoInitShutdown]
  185. public void Internal_Tests ()
  186. {
  187. var top = new Toplevel ();
  188. var eventInvoked = "";
  189. top.ChildUnloaded += (s, e) => eventInvoked = "ChildUnloaded";
  190. top.OnChildUnloaded (top);
  191. Assert.Equal ("ChildUnloaded", eventInvoked);
  192. top.ChildLoaded += (s, e) => eventInvoked = "ChildLoaded";
  193. top.OnChildLoaded (top);
  194. Assert.Equal ("ChildLoaded", eventInvoked);
  195. top.Closed += (s, e) => eventInvoked = "Closed";
  196. top.OnClosed (top);
  197. Assert.Equal ("Closed", eventInvoked);
  198. top.Closing += (s, e) => eventInvoked = "Closing";
  199. top.OnClosing (new ToplevelClosingEventArgs (top));
  200. Assert.Equal ("Closing", eventInvoked);
  201. top.AllChildClosed += (s, e) => eventInvoked = "AllChildClosed";
  202. top.OnAllChildClosed ();
  203. Assert.Equal ("AllChildClosed", eventInvoked);
  204. top.ChildClosed += (s, e) => eventInvoked = "ChildClosed";
  205. top.OnChildClosed (top);
  206. Assert.Equal ("ChildClosed", eventInvoked);
  207. top.Deactivate += (s, e) => eventInvoked = "Deactivate";
  208. top.OnDeactivate (top);
  209. Assert.Equal ("Deactivate", eventInvoked);
  210. top.Activate += (s, e) => eventInvoked = "Activate";
  211. top.OnActivate (top);
  212. Assert.Equal ("Activate", eventInvoked);
  213. top.Loaded += (s, e) => eventInvoked = "Loaded";
  214. top.OnLoaded ();
  215. Assert.Equal ("Loaded", eventInvoked);
  216. top.Ready += (s, e) => eventInvoked = "Ready";
  217. top.OnReady ();
  218. Assert.Equal ("Ready", eventInvoked);
  219. top.Unloaded += (s, e) => eventInvoked = "Unloaded";
  220. top.OnUnloaded ();
  221. Assert.Equal ("Unloaded", eventInvoked);
  222. top.AddMenuStatusBar (new MenuBar ());
  223. Assert.NotNull (top.MenuBar);
  224. top.AddMenuStatusBar (new StatusBar ());
  225. Assert.NotNull (top.StatusBar);
  226. top.RemoveMenuStatusBar (top.MenuBar);
  227. Assert.Null (top.MenuBar);
  228. top.RemoveMenuStatusBar (top.StatusBar);
  229. Assert.Null (top.StatusBar);
  230. Application.Begin (top);
  231. Assert.Equal (top, Application.Top);
  232. // Application.Top without menu and status bar.
  233. View supView = View.GetLocationEnsuringFullVisibility (top, 2, 2, out int nx, out int ny, out StatusBar sb);
  234. Assert.Equal (Application.Top, supView);
  235. Assert.Equal (0, nx);
  236. Assert.Equal (0, ny);
  237. Assert.Null (sb);
  238. top.AddMenuStatusBar (new MenuBar ());
  239. Assert.NotNull (top.MenuBar);
  240. // Application.Top with a menu and without status bar.
  241. View.GetLocationEnsuringFullVisibility (top, 2, 2, out nx, out ny, out sb);
  242. Assert.Equal (0, nx);
  243. Assert.Equal (1, ny);
  244. Assert.Null (sb);
  245. top.AddMenuStatusBar (new StatusBar ());
  246. Assert.NotNull (top.StatusBar);
  247. // Application.Top with a menu and status bar.
  248. View.GetLocationEnsuringFullVisibility (top, 2, 2, out nx, out ny, out sb);
  249. Assert.Equal (0, nx);
  250. // The available height is lower than the Application.Top height minus
  251. // the menu bar and status bar, then the top can go beyond the bottom
  252. Assert.Equal (2, ny);
  253. Assert.NotNull (sb);
  254. top.RemoveMenuStatusBar (top.MenuBar);
  255. Assert.Null (top.MenuBar);
  256. // Application.Top without a menu and with a status bar.
  257. View.GetLocationEnsuringFullVisibility (top, 2, 2, out nx, out ny, out sb);
  258. Assert.Equal (0, nx);
  259. // The available height is lower than the Application.Top height minus
  260. // the status bar, then the top can go beyond the bottom
  261. Assert.Equal (2, ny);
  262. Assert.NotNull (sb);
  263. top.RemoveMenuStatusBar (top.StatusBar);
  264. Assert.Null (top.StatusBar);
  265. Assert.Null (top.MenuBar);
  266. var win = new Window { Width = Dim.Fill (), Height = Dim.Fill () };
  267. top.Add (win);
  268. top.LayoutSubviews ();
  269. // The SuperView is always the same regardless of the caller.
  270. supView = View.GetLocationEnsuringFullVisibility (win, 0, 0, out nx, out ny, out sb);
  271. Assert.Equal (Application.Top, supView);
  272. supView = View.GetLocationEnsuringFullVisibility (win, 0, 0, out nx, out ny, out sb);
  273. Assert.Equal (Application.Top, supView);
  274. // Application.Top without menu and status bar.
  275. View.GetLocationEnsuringFullVisibility (win, 0, 0, out nx, out ny, out sb);
  276. Assert.Equal (0, nx);
  277. Assert.Equal (0, ny);
  278. Assert.Null (sb);
  279. top.AddMenuStatusBar (new MenuBar ());
  280. Assert.NotNull (top.MenuBar);
  281. // Application.Top with a menu and without status bar.
  282. View.GetLocationEnsuringFullVisibility (win, 2, 2, out nx, out ny, out sb);
  283. Assert.Equal (0, nx);
  284. Assert.Equal (1, ny);
  285. Assert.Null (sb);
  286. top.AddMenuStatusBar (new StatusBar ());
  287. Assert.NotNull (top.StatusBar);
  288. // Application.Top with a menu and status bar.
  289. View.GetLocationEnsuringFullVisibility (win, 30, 20, out nx, out ny, out sb);
  290. Assert.Equal (0, nx);
  291. // The available height is lower than the Application.Top height minus
  292. // the menu bar and status bar, then the top can go beyond the bottom
  293. Assert.Equal (20, ny);
  294. Assert.NotNull (sb);
  295. top.RemoveMenuStatusBar (top.MenuBar);
  296. top.RemoveMenuStatusBar (top.StatusBar);
  297. Assert.Null (top.StatusBar);
  298. Assert.Null (top.MenuBar);
  299. top.Remove (win);
  300. win = new Window { Width = 60, Height = 15 };
  301. top.Add (win);
  302. // Application.Top without menu and status bar.
  303. View.GetLocationEnsuringFullVisibility (win, 0, 0, out nx, out ny, out sb);
  304. Assert.Equal (0, nx);
  305. Assert.Equal (0, ny);
  306. Assert.Null (sb);
  307. top.AddMenuStatusBar (new MenuBar ());
  308. Assert.NotNull (top.MenuBar);
  309. // Application.Top with a menu and without status bar.
  310. View.GetLocationEnsuringFullVisibility (win, 2, 2, out nx, out ny, out sb);
  311. Assert.Equal (2, nx);
  312. Assert.Equal (2, ny);
  313. Assert.Null (sb);
  314. top.AddMenuStatusBar (new StatusBar ());
  315. Assert.NotNull (top.StatusBar);
  316. // Application.Top with a menu and status bar.
  317. View.GetLocationEnsuringFullVisibility (win, 30, 20, out nx, out ny, out sb);
  318. Assert.Equal (20, nx); // 20+60=80
  319. Assert.Equal (9, ny); // 9+15+1(mb)=25
  320. Assert.NotNull (sb);
  321. top.PositionToplevels ();
  322. Assert.Equal (new Rectangle (0, 1, 60, 15), win.Frame);
  323. //Assert.Null (Toplevel._dragPosition);
  324. win.OnMouseEvent (new MouseEvent { X = 6, Y = 0, Flags = MouseFlags.Button1Pressed });
  325. // Assert.Equal (new Point (6, 0), Toplevel._dragPosition);
  326. win.OnMouseEvent (new MouseEvent { X = 6, Y = 0, Flags = MouseFlags.Button1Released });
  327. //Assert.Null (Toplevel._dragPosition);
  328. win.CanFocus = false;
  329. win.OnMouseEvent (new MouseEvent { X = 6, Y = 0, Flags = MouseFlags.Button1Pressed });
  330. //Assert.Null (Toplevel._dragPosition);
  331. }
  332. [Fact]
  333. [AutoInitShutdown]
  334. public void KeyBindings_Command ()
  335. {
  336. var isRunning = false;
  337. var win1 = new Window { Id = "win1", Width = Dim.Percent (50f), Height = Dim.Fill () };
  338. var lblTf1W1 = new Label { Id = "lblTf1W1", Text = "Enter text in TextField on Win1:" };
  339. var tf1W1 = new TextField
  340. {
  341. Id = "tf1W1", X = Pos.Right (lblTf1W1) + 1, Width = Dim.Fill (), Text = "Text1 on Win1"
  342. };
  343. var lblTvW1 = new Label
  344. {
  345. Id = "lblTvW1", Y = Pos.Bottom (lblTf1W1) + 1, Text = "Enter text in TextView on Win1:"
  346. };
  347. var tvW1 = new TextView
  348. {
  349. Id = "tvW1",
  350. X = Pos.Left (tf1W1),
  351. Width = Dim.Fill (),
  352. Height = 2,
  353. Text = "First line Win1\nSecond line Win1"
  354. };
  355. var lblTf2W1 = new Label
  356. {
  357. Id = "lblTf2W1", Y = Pos.Bottom (lblTvW1) + 1, Text = "Enter text in TextField on Win1:"
  358. };
  359. var tf2W1 = new TextField { Id = "tf2W1", X = Pos.Left (tf1W1), Width = Dim.Fill (), Text = "Text2 on Win1" };
  360. win1.Add (lblTf1W1, tf1W1, lblTvW1, tvW1, lblTf2W1, tf2W1);
  361. var win2 = new Window
  362. {
  363. Id = "win2", X = Pos.Right (win1) + 1, Width = Dim.Percent (50f), Height = Dim.Fill ()
  364. };
  365. var lblTf1W2 = new Label { Id = "lblTf1W2", Text = "Enter text in TextField on Win2:" };
  366. var tf1W2 = new TextField
  367. {
  368. Id = "tf1W2", X = Pos.Right (lblTf1W2) + 1, Width = Dim.Fill (), Text = "Text1 on Win2"
  369. };
  370. var lblTvW2 = new Label
  371. {
  372. Id = "lblTvW2", Y = Pos.Bottom (lblTf1W2) + 1, Text = "Enter text in TextView on Win2:"
  373. };
  374. var tvW2 = new TextView
  375. {
  376. Id = "tvW2",
  377. X = Pos.Left (tf1W2),
  378. Width = Dim.Fill (),
  379. Height = 2,
  380. Text = "First line Win1\nSecond line Win2"
  381. };
  382. var lblTf2W2 = new Label
  383. {
  384. Id = "lblTf2W2", Y = Pos.Bottom (lblTvW2) + 1, Text = "Enter text in TextField on Win2:"
  385. };
  386. var tf2W2 = new TextField { Id = "tf2W2", X = Pos.Left (tf1W2), Width = Dim.Fill (), Text = "Text2 on Win2" };
  387. win2.Add (lblTf1W2, tf1W2, lblTvW2, tvW2, lblTf2W2, tf2W2);
  388. Toplevel top = new ();
  389. top.Add (win1, win2);
  390. top.Loaded += (s, e) => isRunning = true;
  391. top.Closing += (s, e) => isRunning = false;
  392. Application.Begin (top);
  393. top.Running = true;
  394. Assert.Equal (new Rectangle (0, 0, 40, 25), win1.Frame);
  395. Assert.Equal (new Rectangle (41, 0, 40, 25), win2.Frame);
  396. Assert.Equal (win1, top.Focused);
  397. Assert.Equal (tf1W1, top.MostFocused);
  398. Assert.True (isRunning);
  399. Assert.True (Application.OnKeyDown (Application.QuitKey));
  400. Assert.False (isRunning);
  401. Assert.True (Application.OnKeyDown (Key.Z.WithCtrl));
  402. Assert.True (Application.OnKeyDown (Key.F5)); // refresh
  403. Assert.True (Application.OnKeyDown (Key.Tab));
  404. Assert.Equal (win1, top.Focused);
  405. Assert.Equal (tvW1, top.MostFocused);
  406. Assert.True (Application.OnKeyDown (Key.Tab));
  407. Assert.Equal ($"\tFirst line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
  408. Assert.True (Application.OnKeyDown (Key.Tab.WithShift));
  409. Assert.Equal ($"First line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
  410. Assert.True (Application.OnKeyDown (Key.Tab.WithCtrl));
  411. Assert.Equal (win1, top.Focused);
  412. Assert.Equal (tf2W1, top.MostFocused);
  413. Assert.True (Application.OnKeyDown (Key.Tab));
  414. Assert.Equal (win1, top.Focused);
  415. Assert.Equal (tf1W1, top.MostFocused);
  416. Assert.True (Application.OnKeyDown (Key.CursorRight));
  417. Assert.Equal (win1, top.Focused);
  418. Assert.Equal (tf1W1, top.MostFocused);
  419. Assert.True (Application.OnKeyDown (Key.CursorDown));
  420. Assert.Equal (win1, top.Focused);
  421. Assert.Equal (tvW1, top.MostFocused);
  422. #if UNIX_KEY_BINDINGS
  423. Assert.True (Application.OnKeyDown (new (Key.I.WithCtrl)));
  424. Assert.Equal (win1, top.Focused);
  425. Assert.Equal (tf2W1, top.MostFocused);
  426. #endif
  427. Assert.True (Application.OnKeyDown (Key.Tab.WithShift));
  428. Assert.Equal (win1, top.Focused);
  429. Assert.Equal (tvW1, top.MostFocused);
  430. Assert.True (Application.OnKeyDown (Key.CursorLeft));
  431. Assert.Equal (win1, top.Focused);
  432. Assert.Equal (tf1W1, top.MostFocused);
  433. Assert.True (Application.OnKeyDown (Key.CursorUp));
  434. Assert.Equal (win1, top.Focused);
  435. Assert.Equal (tf2W1, top.MostFocused);
  436. Assert.True (Application.OnKeyDown (Key.Tab.WithCtrl));
  437. Assert.Equal (win2, top.Focused);
  438. Assert.Equal (tf1W2, top.MostFocused);
  439. Assert.True (Application.OnKeyDown (Key.Tab.WithCtrl.WithShift));
  440. Assert.Equal (win1, top.Focused);
  441. Assert.Equal (tf2W1, top.MostFocused);
  442. Assert.True (Application.OnKeyDown (Application.AlternateForwardKey));
  443. Assert.Equal (win2, top.Focused);
  444. Assert.Equal (tf1W2, top.MostFocused);
  445. Assert.True (Application.OnKeyDown (Application.AlternateBackwardKey));
  446. Assert.Equal (win1, top.Focused);
  447. Assert.Equal (tf2W1, top.MostFocused);
  448. Assert.True (Application.OnKeyDown (Key.CursorUp));
  449. Assert.Equal (win1, top.Focused);
  450. Assert.Equal (tvW1, top.MostFocused);
  451. #if UNIX_KEY_BINDINGS
  452. Assert.True (Application.OnKeyDown (new (Key.B.WithCtrl)));
  453. #else
  454. Assert.True (Application.OnKeyDown (Key.CursorLeft));
  455. #endif
  456. Assert.Equal (win1, top.Focused);
  457. Assert.Equal (tf1W1, top.MostFocused);
  458. Assert.True (Application.OnKeyDown (Key.CursorDown));
  459. Assert.Equal (win1, top.Focused);
  460. Assert.Equal (tvW1, top.MostFocused);
  461. Assert.Equal (Point.Empty, tvW1.CursorPosition);
  462. Assert.True (Application.OnKeyDown (Key.End.WithCtrl));
  463. Assert.Equal (win1, top.Focused);
  464. Assert.Equal (tvW1, top.MostFocused);
  465. Assert.Equal (new Point (16, 1), tvW1.CursorPosition);
  466. #if UNIX_KEY_BINDINGS
  467. Assert.True (Application.OnKeyDown (new (Key.F.WithCtrl)));
  468. #else
  469. Assert.True (Application.OnKeyDown (Key.CursorRight));
  470. #endif
  471. Assert.Equal (win1, top.Focused);
  472. Assert.Equal (tf2W1, top.MostFocused);
  473. #if UNIX_KEY_BINDINGS
  474. Assert.True (Application.OnKeyDown (new (Key.L.WithCtrl)));
  475. #else
  476. Assert.True (Application.OnKeyDown (Key.F5));
  477. #endif
  478. }
  479. [Fact]
  480. [AutoInitShutdown]
  481. public void KeyBindings_Command_With_OverlappedTop ()
  482. {
  483. Toplevel top = new ();
  484. Assert.Null (Application.OverlappedTop);
  485. top.IsOverlappedContainer = true;
  486. Application.Begin (top);
  487. Assert.Equal (Application.Top, Application.OverlappedTop);
  488. var isRunning = true;
  489. var win1 = new Window { Id = "win1", Width = Dim.Percent (50f), Height = Dim.Fill () };
  490. var lblTf1W1 = new Label { Text = "Enter text in TextField on Win1:" };
  491. var tf1W1 = new TextField { X = Pos.Right (lblTf1W1) + 1, Width = Dim.Fill (), Text = "Text1 on Win1" };
  492. var lblTvW1 = new Label { Y = Pos.Bottom (lblTf1W1) + 1, Text = "Enter text in TextView on Win1:" };
  493. var tvW1 = new TextView
  494. {
  495. X = Pos.Left (tf1W1), Width = Dim.Fill (), Height = 2, Text = "First line Win1\nSecond line Win1"
  496. };
  497. var lblTf2W1 = new Label { Y = Pos.Bottom (lblTvW1) + 1, Text = "Enter text in TextField on Win1:" };
  498. var tf2W1 = new TextField { X = Pos.Left (tf1W1), Width = Dim.Fill (), Text = "Text2 on Win1" };
  499. win1.Add (lblTf1W1, tf1W1, lblTvW1, tvW1, lblTf2W1, tf2W1);
  500. var win2 = new Window { Id = "win2", Width = Dim.Percent (50f), Height = Dim.Fill () };
  501. var lblTf1W2 = new Label { Text = "Enter text in TextField on Win2:" };
  502. var tf1W2 = new TextField { X = Pos.Right (lblTf1W2) + 1, Width = Dim.Fill (), Text = "Text1 on Win2" };
  503. var lblTvW2 = new Label { Y = Pos.Bottom (lblTf1W2) + 1, Text = "Enter text in TextView on Win2:" };
  504. var tvW2 = new TextView
  505. {
  506. X = Pos.Left (tf1W2), Width = Dim.Fill (), Height = 2, Text = "First line Win1\nSecond line Win2"
  507. };
  508. var lblTf2W2 = new Label { Y = Pos.Bottom (lblTvW2) + 1, Text = "Enter text in TextField on Win2:" };
  509. var tf2W2 = new TextField { X = Pos.Left (tf1W2), Width = Dim.Fill (), Text = "Text2 on Win2" };
  510. win2.Add (lblTf1W2, tf1W2, lblTvW2, tvW2, lblTf2W2, tf2W2);
  511. win1.Closing += (s, e) => isRunning = false;
  512. Assert.Null (top.Focused);
  513. Assert.Equal (top, Application.Current);
  514. Assert.True (top.IsCurrentTop);
  515. Assert.Equal (top, Application.OverlappedTop);
  516. Application.Begin (win1);
  517. Assert.Equal (new Rectangle (0, 0, 40, 25), win1.Frame);
  518. Assert.NotEqual (top, Application.Current);
  519. Assert.False (top.IsCurrentTop);
  520. Assert.Equal (win1, Application.Current);
  521. Assert.True (win1.IsCurrentTop);
  522. Assert.True (win1.IsOverlapped);
  523. Assert.Null (top.Focused);
  524. Assert.Null (top.MostFocused);
  525. Assert.Equal (tf1W1, win1.MostFocused);
  526. Assert.True (win1.IsOverlapped);
  527. Assert.Single (Application.OverlappedChildren);
  528. Application.Begin (win2);
  529. Assert.Equal (new Rectangle (0, 0, 40, 25), win2.Frame);
  530. Assert.NotEqual (top, Application.Current);
  531. Assert.False (top.IsCurrentTop);
  532. Assert.Equal (win2, Application.Current);
  533. Assert.True (win2.IsCurrentTop);
  534. Assert.True (win2.IsOverlapped);
  535. Assert.Null (top.Focused);
  536. Assert.Null (top.MostFocused);
  537. Assert.Equal (tf1W2, win2.MostFocused);
  538. Assert.Equal (2, Application.OverlappedChildren.Count);
  539. Application.MoveToOverlappedChild (win1);
  540. Assert.Equal (win1, Application.Current);
  541. Assert.Equal (win1, Application.OverlappedChildren [0]);
  542. win1.Running = true;
  543. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Application.QuitKey));
  544. Assert.False (isRunning);
  545. Assert.False (win1.Running);
  546. Assert.Equal (win1, Application.OverlappedChildren [0]);
  547. Assert.True (
  548. Application.OverlappedChildren [0].NewKeyDownEvent (Key.Z.WithCtrl)
  549. );
  550. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.F5)); // refresh
  551. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.Tab));
  552. Assert.True (win1.IsCurrentTop);
  553. Assert.Equal (tvW1, win1.MostFocused);
  554. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.Tab));
  555. Assert.Equal ($"\tFirst line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
  556. Assert.True (
  557. Application.OverlappedChildren [0]
  558. .NewKeyDownEvent (Key.Tab.WithShift)
  559. );
  560. Assert.Equal ($"First line Win1{Environment.NewLine}Second line Win1", tvW1.Text);
  561. Assert.True (
  562. Application.OverlappedChildren [0]
  563. .NewKeyDownEvent (Key.Tab.WithCtrl)
  564. );
  565. Assert.Equal (win1, Application.OverlappedChildren [0]);
  566. Assert.Equal (tf2W1, win1.MostFocused);
  567. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.Tab));
  568. Assert.Equal (win1, Application.OverlappedChildren [0]);
  569. Assert.Equal (tf1W1, win1.MostFocused);
  570. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorRight));
  571. Assert.Equal (win1, Application.OverlappedChildren [0]);
  572. Assert.Equal (tf1W1, win1.MostFocused);
  573. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorDown));
  574. Assert.Equal (win1, Application.OverlappedChildren [0]);
  575. Assert.Equal (tvW1, win1.MostFocused);
  576. #if UNIX_KEY_BINDINGS
  577. Assert.True (Application.OverlappedChildren [0].ProcessKeyDown (new (Key.I.WithCtrl)));
  578. Assert.Equal (win1, Application.OverlappedChildren [0]);
  579. Assert.Equal (tf2W1, win1.MostFocused);
  580. #endif
  581. Assert.True (
  582. Application.OverlappedChildren [0]
  583. .NewKeyDownEvent (Key.Tab.WithShift)
  584. );
  585. Assert.Equal (win1, Application.OverlappedChildren [0]);
  586. Assert.Equal (tvW1, win1.MostFocused);
  587. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorLeft));
  588. Assert.Equal (win1, Application.OverlappedChildren [0]);
  589. Assert.Equal (tf1W1, win1.MostFocused);
  590. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorUp));
  591. Assert.Equal (win1, Application.OverlappedChildren [0]);
  592. Assert.Equal (tf2W1, win1.MostFocused);
  593. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.Tab));
  594. Assert.Equal (win1, Application.OverlappedChildren [0]);
  595. Assert.Equal (tf1W1, win1.MostFocused);
  596. Assert.True (
  597. Application.OverlappedChildren [0]
  598. .NewKeyDownEvent (Key.Tab.WithCtrl)
  599. );
  600. Assert.Equal (win2, Application.OverlappedChildren [0]);
  601. Assert.Equal (tf1W2, win2.MostFocused);
  602. tf2W2.SetFocus ();
  603. Assert.True (tf2W2.HasFocus);
  604. Assert.True (
  605. Application.OverlappedChildren [0]
  606. .NewKeyDownEvent (Key.Tab.WithCtrl.WithShift)
  607. );
  608. Assert.Equal (win1, Application.OverlappedChildren [0]);
  609. Assert.Equal (tf1W1, win1.MostFocused);
  610. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Application.AlternateForwardKey));
  611. Assert.Equal (win2, Application.OverlappedChildren [0]);
  612. Assert.Equal (tf2W2, win2.MostFocused);
  613. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Application.AlternateBackwardKey));
  614. Assert.Equal (win1, Application.OverlappedChildren [0]);
  615. Assert.Equal (tf1W1, win1.MostFocused);
  616. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorDown));
  617. Assert.Equal (win1, Application.OverlappedChildren [0]);
  618. Assert.Equal (tvW1, win1.MostFocused);
  619. #if UNIX_KEY_BINDINGS
  620. Assert.True (Application.OverlappedChildren [0].ProcessKeyDown (new (Key.B.WithCtrl)));
  621. #else
  622. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorLeft));
  623. #endif
  624. Assert.Equal (win1, Application.OverlappedChildren [0]);
  625. Assert.Equal (tf1W1, win1.MostFocused);
  626. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorDown));
  627. Assert.Equal (win1, Application.OverlappedChildren [0]);
  628. Assert.Equal (tvW1, win1.MostFocused);
  629. Assert.Equal (Point.Empty, tvW1.CursorPosition);
  630. Assert.True (
  631. Application.OverlappedChildren [0]
  632. .NewKeyDownEvent (Key.End.WithCtrl)
  633. );
  634. Assert.Equal (win1, Application.OverlappedChildren [0]);
  635. Assert.Equal (tvW1, win1.MostFocused);
  636. Assert.Equal (new Point (16, 1), tvW1.CursorPosition);
  637. #if UNIX_KEY_BINDINGS
  638. Assert.True (Application.OverlappedChildren [0].ProcessKeyDown (new (Key.F.WithCtrl)));
  639. #else
  640. Assert.True (Application.OverlappedChildren [0].NewKeyDownEvent (Key.CursorRight));
  641. #endif
  642. Assert.Equal (win1, Application.OverlappedChildren [0]);
  643. Assert.Equal (tf2W1, win1.MostFocused);
  644. #if UNIX_KEY_BINDINGS
  645. Assert.True (Application.OverlappedChildren [0].ProcessKeyDown (new (Key.L.WithCtrl)));
  646. #endif
  647. win2.Dispose ();
  648. win1.Dispose ();
  649. }
  650. [Fact]
  651. public void Added_Event_Should_Not_Be_Used_To_Initialize_Toplevel_Events ()
  652. {
  653. Key alternateForwardKey = default;
  654. Key alternateBackwardKey = default;
  655. Key quitKey = default;
  656. var wasAdded = false;
  657. var view = new View ();
  658. view.Added += View_Added;
  659. void View_Added (object sender, SuperViewChangedEventArgs e)
  660. {
  661. Assert.Throws<NullReferenceException> (
  662. () =>
  663. Application.Top.AlternateForwardKeyChanged +=
  664. (s, e) => alternateForwardKey = (KeyCode)e.OldKey
  665. );
  666. Assert.Throws<NullReferenceException> (
  667. () =>
  668. Application.Top.AlternateBackwardKeyChanged +=
  669. (s, e) => alternateBackwardKey = (KeyCode)e.OldKey
  670. );
  671. Assert.Throws<NullReferenceException> (
  672. () =>
  673. Application.Top.QuitKeyChanged += (s, e) =>
  674. quitKey = (KeyCode)e.OldKey
  675. );
  676. Assert.False (wasAdded);
  677. wasAdded = true;
  678. view.Added -= View_Added;
  679. }
  680. var win = new Window ();
  681. win.Add (view);
  682. Application.Init (new FakeDriver ());
  683. Toplevel top = new ();
  684. top.Add (win);
  685. Assert.True (wasAdded);
  686. Application.Shutdown ();
  687. }
  688. [Fact]
  689. [AutoInitShutdown]
  690. public void AlternateForwardKeyChanged_AlternateBackwardKeyChanged_QuitKeyChanged_Events ()
  691. {
  692. Key alternateForwardKey = KeyCode.Null;
  693. Key alternateBackwardKey = KeyCode.Null;
  694. Key quitKey = KeyCode.Null;
  695. Toplevel top = new ();
  696. var view = new View ();
  697. view.Initialized += View_Initialized;
  698. void View_Initialized (object sender, EventArgs e)
  699. {
  700. top.AlternateForwardKeyChanged += (s, e) => alternateForwardKey = e.OldKey;
  701. top.AlternateBackwardKeyChanged += (s, e) => alternateBackwardKey = e.OldKey;
  702. top.QuitKeyChanged += (s, e) => quitKey = e.OldKey;
  703. }
  704. var win = new Window ();
  705. win.Add (view);
  706. top.Add (win);
  707. Application.Begin (top);
  708. Assert.Equal (KeyCode.Null, alternateForwardKey);
  709. Assert.Equal (KeyCode.Null, alternateBackwardKey);
  710. Assert.Equal (KeyCode.Null, quitKey);
  711. Assert.Equal (KeyCode.PageDown | KeyCode.CtrlMask, Application.AlternateForwardKey);
  712. Assert.Equal (KeyCode.PageUp | KeyCode.CtrlMask, Application.AlternateBackwardKey);
  713. Assert.Equal (KeyCode.Q | KeyCode.CtrlMask, Application.QuitKey);
  714. Application.AlternateForwardKey = KeyCode.A;
  715. Application.AlternateBackwardKey = KeyCode.B;
  716. Application.QuitKey = KeyCode.C;
  717. Assert.Equal (KeyCode.PageDown | KeyCode.CtrlMask, alternateForwardKey);
  718. Assert.Equal (KeyCode.PageUp | KeyCode.CtrlMask, alternateBackwardKey);
  719. Assert.Equal (KeyCode.Q | KeyCode.CtrlMask, quitKey);
  720. Assert.Equal (KeyCode.A, Application.AlternateForwardKey);
  721. Assert.Equal (KeyCode.B, Application.AlternateBackwardKey);
  722. Assert.Equal (KeyCode.C, Application.QuitKey);
  723. // Replacing the defaults keys to avoid errors on others unit tests that are using it.
  724. Application.AlternateForwardKey = Key.PageDown.WithCtrl;
  725. Application.AlternateBackwardKey = Key.PageUp.WithCtrl;
  726. Application.QuitKey = Key.Q.WithCtrl;
  727. Assert.Equal (KeyCode.PageDown | KeyCode.CtrlMask, Application.AlternateForwardKey);
  728. Assert.Equal (KeyCode.PageUp | KeyCode.CtrlMask, Application.AlternateBackwardKey);
  729. Assert.Equal (KeyCode.Q | KeyCode.CtrlMask, Application.QuitKey);
  730. }
  731. [Fact]
  732. [AutoInitShutdown]
  733. public void Mouse_Drag_On_Top_With_Superview_Null ()
  734. {
  735. var win = new Window ();
  736. Toplevel top = new ();
  737. top.Add (win);
  738. int iterations = -1;
  739. Window testWindow;
  740. Application.Iteration += (s, a) =>
  741. {
  742. iterations++;
  743. if (iterations == 0)
  744. {
  745. ((FakeDriver)Application.Driver).SetBufferSize (15, 7);
  746. // Don't use MessageBox here; it's too complicated for this unit test; just use Window
  747. testWindow = new Window
  748. {
  749. Text = "Hello",
  750. X = 2,
  751. Y = 2,
  752. Width = 10,
  753. Height = 3
  754. };
  755. Application.Run (testWindow);
  756. }
  757. else if (iterations == 1)
  758. {
  759. TestHelpers.AssertDriverContentsWithFrameAre (
  760. @"
  761. ┌─────────────┐
  762. │ │
  763. │ ┌────────┐ │
  764. │ │Hello │ │
  765. │ └────────┘ │
  766. │ │
  767. └─────────────┘
  768. ",
  769. _output
  770. );
  771. }
  772. else if (iterations == 2)
  773. {
  774. Assert.Null (Application.MouseGrabView);
  775. // Grab the mouse
  776. Application.OnMouseEvent (
  777. new MouseEventEventArgs (
  778. new MouseEvent { X = 3, Y = 2, Flags = MouseFlags.Button1Pressed }
  779. )
  780. );
  781. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  782. Assert.Equal (new Rectangle (2, 2, 10, 3), Application.Current.Frame);
  783. }
  784. else if (iterations == 3)
  785. {
  786. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  787. // Drag to left
  788. Application.OnMouseEvent (
  789. new MouseEventEventArgs (
  790. new MouseEvent
  791. {
  792. X = 2,
  793. Y = 2,
  794. Flags = MouseFlags.Button1Pressed
  795. | MouseFlags.ReportMousePosition
  796. }
  797. )
  798. );
  799. Application.Refresh ();
  800. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  801. Assert.Equal (new Rectangle (1, 2, 10, 3), Application.Current.Frame);
  802. }
  803. else if (iterations == 4)
  804. {
  805. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  806. TestHelpers.AssertDriverContentsWithFrameAre (
  807. @"
  808. ┌─────────────┐
  809. │ │
  810. │┌────────┐ │
  811. ││Hello │ │
  812. │└────────┘ │
  813. │ │
  814. └─────────────┘",
  815. _output
  816. );
  817. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  818. }
  819. else if (iterations == 5)
  820. {
  821. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  822. // Drag up
  823. Application.OnMouseEvent (
  824. new MouseEventEventArgs (
  825. new MouseEvent
  826. {
  827. X = 2,
  828. Y = 1,
  829. Flags = MouseFlags.Button1Pressed
  830. | MouseFlags.ReportMousePosition
  831. }
  832. )
  833. );
  834. Application.Refresh ();
  835. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  836. Assert.Equal (new Rectangle (1, 1, 10, 3), Application.Current.Frame);
  837. }
  838. else if (iterations == 6)
  839. {
  840. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  841. TestHelpers.AssertDriverContentsWithFrameAre (
  842. @"
  843. ┌─────────────┐
  844. │┌────────┐ │
  845. ││Hello │ │
  846. │└────────┘ │
  847. │ │
  848. │ │
  849. └─────────────┘",
  850. _output
  851. );
  852. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  853. Assert.Equal (new Rectangle (1, 1, 10, 3), Application.Current.Frame);
  854. }
  855. else if (iterations == 7)
  856. {
  857. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  858. // Ungrab the mouse
  859. Application.OnMouseEvent (
  860. new MouseEventEventArgs (
  861. new MouseEvent { X = 2, Y = 1, Flags = MouseFlags.Button1Released }
  862. )
  863. );
  864. Application.Refresh ();
  865. Assert.Null (Application.MouseGrabView);
  866. }
  867. else if (iterations == 8)
  868. {
  869. Application.RequestStop ();
  870. }
  871. else if (iterations == 9)
  872. {
  873. Application.RequestStop ();
  874. }
  875. };
  876. Application.Run (top);
  877. }
  878. [Fact]
  879. [AutoInitShutdown]
  880. public void Mouse_Drag_On_Top_With_Superview_Not_Null ()
  881. {
  882. var win = new Window { X = 3, Y = 2, Width = 10, Height = 5 };
  883. Toplevel top = new ();
  884. top.Add (win);
  885. int iterations = -1;
  886. var movex = 0;
  887. var movey = 0;
  888. var location = new Rectangle (win.Frame.X, win.Frame.Y, 7, 3);
  889. Application.Iteration += (s, a) =>
  890. {
  891. iterations++;
  892. if (iterations == 0)
  893. {
  894. ((FakeDriver)Application.Driver).SetBufferSize (30, 10);
  895. }
  896. else if (iterations == 1)
  897. {
  898. location = win.Frame;
  899. Assert.Null (Application.MouseGrabView);
  900. // Grab the mouse
  901. Application.OnMouseEvent (
  902. new MouseEventEventArgs (
  903. new MouseEvent
  904. {
  905. X = win.Frame.X, Y = win.Frame.Y,
  906. Flags = MouseFlags.Button1Pressed
  907. }
  908. )
  909. );
  910. Assert.Equal (win.Border, Application.MouseGrabView);
  911. }
  912. else if (iterations == 2)
  913. {
  914. Assert.Equal (win.Border, Application.MouseGrabView);
  915. // Drag to left
  916. movex = 1;
  917. movey = 0;
  918. Application.OnMouseEvent (
  919. new MouseEventEventArgs (
  920. new MouseEvent
  921. {
  922. X = win.Frame.X + movex,
  923. Y = win.Frame.Y + movey,
  924. Flags = MouseFlags.Button1Pressed
  925. | MouseFlags.ReportMousePosition
  926. }
  927. )
  928. );
  929. Assert.Equal (win.Border, Application.MouseGrabView);
  930. }
  931. else if (iterations == 3)
  932. {
  933. // we should have moved +1, +0
  934. Assert.Equal (win.Border, Application.MouseGrabView);
  935. Assert.Equal (win.Border, Application.MouseGrabView);
  936. location.Offset (movex, movey);
  937. }
  938. else if (iterations == 4)
  939. {
  940. Assert.Equal (win.Border, Application.MouseGrabView);
  941. // Drag up
  942. movex = 0;
  943. movey = -1;
  944. Application.OnMouseEvent (
  945. new MouseEventEventArgs (
  946. new MouseEvent
  947. {
  948. X = win.Frame.X + movex,
  949. Y = win.Frame.Y + movey,
  950. Flags = MouseFlags.Button1Pressed
  951. | MouseFlags.ReportMousePosition
  952. }
  953. )
  954. );
  955. Assert.Equal (win.Border, Application.MouseGrabView);
  956. }
  957. else if (iterations == 5)
  958. {
  959. // we should have moved +0, -1
  960. Assert.Equal (win.Border, Application.MouseGrabView);
  961. location.Offset (movex, movey);
  962. Assert.Equal (location, win.Frame);
  963. }
  964. else if (iterations == 6)
  965. {
  966. Assert.Equal (win.Border, Application.MouseGrabView);
  967. // Ungrab the mouse
  968. movex = 0;
  969. movey = 0;
  970. Application.OnMouseEvent (
  971. new MouseEventEventArgs (
  972. new MouseEvent
  973. {
  974. X = win.Frame.X + movex, Y = win.Frame.Y + movey,
  975. Flags = MouseFlags.Button1Released
  976. }
  977. )
  978. );
  979. Assert.Null (Application.MouseGrabView);
  980. }
  981. else if (iterations == 7)
  982. {
  983. Application.RequestStop ();
  984. }
  985. };
  986. Application.Run (top);
  987. }
  988. [Fact]
  989. [AutoInitShutdown]
  990. public void GetLocationThatFits_With_Border_Null_Not_Throws ()
  991. {
  992. var top = new Toplevel ();
  993. Application.Begin (top);
  994. Exception exception = Record.Exception (() => ((FakeDriver)Application.Driver).SetBufferSize (0, 10));
  995. Assert.Null (exception);
  996. exception = Record.Exception (() => ((FakeDriver)Application.Driver).SetBufferSize (10, 0));
  997. Assert.Null (exception);
  998. }
  999. [Fact]
  1000. [AutoInitShutdown]
  1001. public void OnEnter_OnLeave_Triggered_On_Application_Begin_End ()
  1002. {
  1003. var isEnter = false;
  1004. var isLeave = false;
  1005. var v = new View ();
  1006. v.Enter += (s, _) => isEnter = true;
  1007. v.Leave += (s, _) => isLeave = true;
  1008. Toplevel top = new ();
  1009. top.Add (v);
  1010. Assert.False (v.CanFocus);
  1011. Exception exception = Record.Exception (() => top.OnEnter (top));
  1012. Assert.Null (exception);
  1013. exception = Record.Exception (() => top.OnLeave (top));
  1014. Assert.Null (exception);
  1015. v.CanFocus = true;
  1016. RunState rsTop = Application.Begin (top);
  1017. // From the v view
  1018. Assert.True (isEnter);
  1019. // The Leave event is only raised on the End method
  1020. // and the top is still running
  1021. Assert.False (isLeave);
  1022. isEnter = false;
  1023. var d = new Dialog ();
  1024. var dv = new View { CanFocus = true };
  1025. dv.Enter += (s, _) => isEnter = true;
  1026. dv.Leave += (s, _) => isLeave = true;
  1027. d.Add (dv);
  1028. RunState rsDialog = Application.Begin (d);
  1029. // From the dv view
  1030. Assert.True (isEnter);
  1031. Assert.False (isLeave);
  1032. Assert.True (dv.HasFocus);
  1033. isEnter = false;
  1034. Application.End (rsDialog);
  1035. // From the v view
  1036. Assert.True (isEnter);
  1037. // From the dv view
  1038. Assert.True (isLeave);
  1039. Assert.True (v.HasFocus);
  1040. Application.End (rsTop);
  1041. }
  1042. [Fact]
  1043. [AutoInitShutdown]
  1044. public void OnEnter_OnLeave_Triggered_On_Application_Begin_End_With_More_Toplevels ()
  1045. {
  1046. var iterations = 0;
  1047. var steps = new int [4];
  1048. var isEnterTop = false;
  1049. var isLeaveTop = false;
  1050. var vt = new View ();
  1051. Toplevel top = new ();
  1052. var diag = new Dialog ();
  1053. vt.Enter += (s, e) =>
  1054. {
  1055. iterations++;
  1056. isEnterTop = true;
  1057. if (iterations == 1)
  1058. {
  1059. steps [0] = iterations;
  1060. Assert.Null (e.View);
  1061. }
  1062. else
  1063. {
  1064. steps [3] = iterations;
  1065. Assert.Equal (diag, e.View);
  1066. }
  1067. };
  1068. vt.Leave += (s, e) =>
  1069. {
  1070. // This will never be raised
  1071. iterations++;
  1072. isLeaveTop = true;
  1073. Assert.Equal (diag, e.View);
  1074. };
  1075. top.Add (vt);
  1076. Assert.False (vt.CanFocus);
  1077. Exception exception = Record.Exception (() => top.OnEnter (top));
  1078. Assert.Null (exception);
  1079. exception = Record.Exception (() => top.OnLeave (top));
  1080. Assert.Null (exception);
  1081. vt.CanFocus = true;
  1082. RunState rsTop = Application.Begin (top);
  1083. Assert.True (isEnterTop);
  1084. Assert.False (isLeaveTop);
  1085. isEnterTop = false;
  1086. var isEnterDiag = false;
  1087. var isLeaveDiag = false;
  1088. var vd = new View ();
  1089. vd.Enter += (s, e) =>
  1090. {
  1091. iterations++;
  1092. steps [1] = iterations;
  1093. isEnterDiag = true;
  1094. Assert.Null (e.View);
  1095. };
  1096. vd.Leave += (s, e) =>
  1097. {
  1098. iterations++;
  1099. steps [2] = iterations;
  1100. isLeaveDiag = true;
  1101. Assert.Equal (top, e.View);
  1102. };
  1103. diag.Add (vd);
  1104. Assert.False (vd.CanFocus);
  1105. exception = Record.Exception (() => diag.OnEnter (diag));
  1106. Assert.Null (exception);
  1107. exception = Record.Exception (() => diag.OnLeave (diag));
  1108. Assert.Null (exception);
  1109. vd.CanFocus = true;
  1110. RunState rsDiag = Application.Begin (diag);
  1111. Assert.True (isEnterDiag);
  1112. Assert.False (isLeaveDiag);
  1113. Assert.False (isEnterTop);
  1114. // The Leave event is only raised on the End method
  1115. // and the top is still running
  1116. Assert.False (isLeaveTop);
  1117. isEnterDiag = false;
  1118. isLeaveTop = false;
  1119. Application.End (rsDiag);
  1120. Assert.False (isEnterDiag);
  1121. Assert.True (isLeaveDiag);
  1122. Assert.True (isEnterTop);
  1123. // Leave event on top cannot be raised
  1124. // because Current is null on the End method
  1125. Assert.False (isLeaveTop);
  1126. Assert.True (vt.HasFocus);
  1127. Application.End (rsTop);
  1128. Assert.Equal (1, steps [0]);
  1129. Assert.Equal (2, steps [1]);
  1130. Assert.Equal (3, steps [2]);
  1131. Assert.Equal (4, steps [^1]);
  1132. }
  1133. [Fact]
  1134. [AutoInitShutdown]
  1135. public void PositionCursor_SetCursorVisibility_To_Invisible_If_Focused_Is_Null ()
  1136. {
  1137. var tf = new TextField { Width = 5, Text = "test" };
  1138. var view = new View { Width = 10, Height = 10 };
  1139. view.Add (tf);
  1140. var top = new Toplevel ();
  1141. top.Add (view);
  1142. Application.Begin (top);
  1143. Assert.True (tf.HasFocus);
  1144. Application.Driver.GetCursorVisibility (out CursorVisibility cursor);
  1145. Assert.Equal (CursorVisibility.Default, cursor);
  1146. view.Enabled = false;
  1147. Assert.False (tf.HasFocus);
  1148. Application.Refresh ();
  1149. Application.Driver.GetCursorVisibility (out cursor);
  1150. Assert.Equal (CursorVisibility.Invisible, cursor);
  1151. }
  1152. [Fact]
  1153. [AutoInitShutdown]
  1154. public void IsLoaded_Application_Begin ()
  1155. {
  1156. Toplevel top = new ();
  1157. Assert.False (top.IsLoaded);
  1158. Application.Begin (top);
  1159. Assert.True (top.IsLoaded);
  1160. }
  1161. [Fact]
  1162. [AutoInitShutdown]
  1163. public void IsLoaded_With_Sub_Toplevel_Application_Begin_NeedDisplay ()
  1164. {
  1165. Toplevel top = new ();
  1166. var subTop = new Toplevel ();
  1167. var view = new View { Frame = new Rectangle (0, 0, 20, 10) };
  1168. subTop.Add (view);
  1169. top.Add (subTop);
  1170. Assert.False (top.IsLoaded);
  1171. Assert.False (subTop.IsLoaded);
  1172. Assert.Equal (new Rectangle (0, 0, 20, 10), view.Frame);
  1173. view.LayoutStarted += view_LayoutStarted;
  1174. void view_LayoutStarted (object sender, LayoutEventArgs e)
  1175. {
  1176. Assert.Equal (new Rectangle (0, 0, 20, 10), view._needsDisplayRect);
  1177. view.LayoutStarted -= view_LayoutStarted;
  1178. }
  1179. Application.Begin (top);
  1180. Assert.True (top.IsLoaded);
  1181. Assert.True (subTop.IsLoaded);
  1182. Assert.Equal (new Rectangle (0, 0, 20, 10), view.Frame);
  1183. view.Frame = new (1, 3, 10, 5);
  1184. Assert.Equal (new (1, 3, 10, 5), view.Frame);
  1185. Assert.Equal (new (0, 0, 10, 5), view._needsDisplayRect);
  1186. view.OnDrawContent (view.Viewport);
  1187. view.Frame = new (1, 3, 10, 5);
  1188. Assert.Equal (new (1, 3, 10, 5), view.Frame);
  1189. Assert.Equal (new (0, 0, 10, 5), view._needsDisplayRect);
  1190. }
  1191. [Fact]
  1192. [AutoInitShutdown]
  1193. public void Toplevel_Inside_ScrollView_MouseGrabView ()
  1194. {
  1195. var scrollView = new ScrollView
  1196. {
  1197. X = 3,
  1198. Y = 3,
  1199. Width = 40,
  1200. Height = 16,
  1201. ContentSize = new (200, 100)
  1202. };
  1203. var win = new Window { X = 3, Y = 3, Width = Dim.Fill (3), Height = Dim.Fill (3) };
  1204. scrollView.Add (win);
  1205. Toplevel top = new ();
  1206. top.Add (scrollView);
  1207. Application.Begin (top);
  1208. Assert.Equal (new (0, 0, 80, 25), top.Frame);
  1209. Assert.Equal (new (3, 3, 40, 16), scrollView.Frame);
  1210. Assert.Equal (new (0, 0, 200, 100), scrollView.Subviews [0].Frame);
  1211. Assert.Equal (new (3, 3, 194, 94), win.Frame);
  1212. TestHelpers.AssertDriverContentsWithFrameAre (
  1213. @"
  1214. ┌───────────────────────────────────┴
  1215. │ ░
  1216. │ ░
  1217. │ ░
  1218. │ ░
  1219. │ ░
  1220. │ ░
  1221. │ ░
  1222. │ ░
  1223. │ ░
  1224. │ ░
  1225. │ ▼
  1226. ◄├──────┤░░░░░░░░░░░░░░░░░░░░░░░░░░░░░► ",
  1227. _output
  1228. );
  1229. Application.OnMouseEvent (
  1230. new MouseEventEventArgs (
  1231. new MouseEvent { X = 6, Y = 6, Flags = MouseFlags.Button1Pressed }
  1232. )
  1233. );
  1234. Assert.Equal (win.Border, Application.MouseGrabView);
  1235. Assert.Equal (new (3, 3, 194, 94), win.Frame);
  1236. Application.OnMouseEvent (
  1237. new MouseEventEventArgs (
  1238. new MouseEvent
  1239. {
  1240. X = 9,
  1241. Y = 9,
  1242. Flags = MouseFlags.Button1Pressed
  1243. | MouseFlags.ReportMousePosition
  1244. }
  1245. )
  1246. );
  1247. Assert.Equal (win.Border, Application.MouseGrabView);
  1248. top.SetNeedsLayout ();
  1249. top.LayoutSubviews ();
  1250. Assert.Equal (new Rectangle (6, 6, 191, 91), win.Frame);
  1251. Application.Refresh ();
  1252. TestHelpers.AssertDriverContentsWithFrameAre (
  1253. @"
  1254. ┌────────────────────────────────░
  1255. │ ░
  1256. │ ░
  1257. │ ░
  1258. │ ░
  1259. │ ░
  1260. │ ░
  1261. │ ░
  1262. │ ▼
  1263. ◄├──────┤░░░░░░░░░░░░░░░░░░░░░░░░░░░░░► ",
  1264. _output
  1265. );
  1266. Application.OnMouseEvent (
  1267. new MouseEventEventArgs (
  1268. new MouseEvent
  1269. {
  1270. X = 5,
  1271. Y = 5,
  1272. Flags = MouseFlags.Button1Pressed
  1273. | MouseFlags.ReportMousePosition
  1274. }
  1275. )
  1276. );
  1277. Assert.Equal (win.Border, Application.MouseGrabView);
  1278. top.SetNeedsLayout ();
  1279. top.LayoutSubviews ();
  1280. Assert.Equal (new Rectangle (2, 2, 195, 95), win.Frame);
  1281. Application.Refresh ();
  1282. TestHelpers.AssertDriverContentsWithFrameAre (
  1283. @"
  1284. ┌────────────────────────────────────│
  1285. │ ┴
  1286. │ ░
  1287. │ ░
  1288. │ ░
  1289. │ ░
  1290. │ ░
  1291. │ ░
  1292. │ ░
  1293. │ ░
  1294. │ ░
  1295. │ ░
  1296. │ ▼
  1297. ◄├──────┤░░░░░░░░░░░░░░░░░░░░░░░░░░░░░► ",
  1298. _output
  1299. );
  1300. Application.OnMouseEvent (
  1301. new MouseEventEventArgs (
  1302. new MouseEvent { X = 5, Y = 5, Flags = MouseFlags.Button1Released }
  1303. )
  1304. );
  1305. // ScrollView always grab the mouse when the container's subview OnMouseEnter don't want grab the mouse
  1306. Assert.Equal (scrollView, Application.MouseGrabView);
  1307. Application.OnMouseEvent (
  1308. new MouseEventEventArgs (
  1309. new MouseEvent { X = 4, Y = 4, Flags = MouseFlags.ReportMousePosition }
  1310. )
  1311. );
  1312. Assert.Equal (scrollView, Application.MouseGrabView);
  1313. }
  1314. [Fact]
  1315. [AutoInitShutdown]
  1316. public void Window_Viewport_Bigger_Than_Driver_Cols_And_Rows_Allow_Drag_Beyond_Left_Right_And_Bottom ()
  1317. {
  1318. Toplevel top = new ();
  1319. var window = new Window { Width = 20, Height = 3 };
  1320. RunState rsTop = Application.Begin (top);
  1321. ((FakeDriver)Application.Driver).SetBufferSize (40, 10);
  1322. RunState rsWindow = Application.Begin (window);
  1323. Application.Refresh ();
  1324. Assert.Equal (new Rectangle (0, 0, 40, 10), top.Frame);
  1325. Assert.Equal (new Rectangle (0, 0, 20, 3), window.Frame);
  1326. TestHelpers.AssertDriverContentsWithFrameAre (
  1327. @"
  1328. ┌──────────────────┐
  1329. │ │
  1330. └──────────────────┘
  1331. ",
  1332. _output
  1333. );
  1334. Assert.Null (Application.MouseGrabView);
  1335. Application.OnMouseEvent (
  1336. new MouseEventEventArgs (
  1337. new MouseEvent { X = 0, Y = 0, Flags = MouseFlags.Button1Pressed }
  1338. )
  1339. );
  1340. Assert.Equal (window.Border, Application.MouseGrabView);
  1341. Application.OnMouseEvent (
  1342. new MouseEventEventArgs (
  1343. new MouseEvent
  1344. {
  1345. X = -11,
  1346. Y = -4,
  1347. Flags = MouseFlags.Button1Pressed
  1348. | MouseFlags.ReportMousePosition
  1349. }
  1350. )
  1351. );
  1352. Application.Refresh ();
  1353. Assert.Equal (new Rectangle (0, 0, 40, 10), top.Frame);
  1354. Assert.Equal (new Rectangle (0, 0, 20, 3), window.Frame);
  1355. TestHelpers.AssertDriverContentsWithFrameAre (
  1356. @"
  1357. ┌──────────────────┐
  1358. │ │
  1359. └──────────────────┘
  1360. ",
  1361. _output
  1362. );
  1363. // Changes Top size to same size as Dialog more menu and scroll bar
  1364. ((FakeDriver)Application.Driver).SetBufferSize (20, 3);
  1365. Application.OnMouseEvent (
  1366. new MouseEventEventArgs (
  1367. new MouseEvent
  1368. {
  1369. X = -1,
  1370. Y = -1,
  1371. Flags = MouseFlags.Button1Pressed
  1372. | MouseFlags.ReportMousePosition
  1373. }
  1374. )
  1375. );
  1376. Application.Refresh ();
  1377. Assert.Equal (new Rectangle (0, 0, 20, 3), top.Frame);
  1378. Assert.Equal (new Rectangle (0, 0, 20, 3), window.Frame);
  1379. TestHelpers.AssertDriverContentsWithFrameAre (
  1380. @"
  1381. ┌──────────────────┐
  1382. │ │
  1383. └──────────────────┘
  1384. ",
  1385. _output
  1386. );
  1387. // Changes Top size smaller than Dialog size
  1388. ((FakeDriver)Application.Driver).SetBufferSize (19, 2);
  1389. Application.OnMouseEvent (
  1390. new MouseEventEventArgs (
  1391. new MouseEvent
  1392. {
  1393. X = -1,
  1394. Y = -1,
  1395. Flags = MouseFlags.Button1Pressed
  1396. | MouseFlags.ReportMousePosition
  1397. }
  1398. )
  1399. );
  1400. Application.Refresh ();
  1401. Assert.Equal (new Rectangle (0, 0, 19, 2), top.Frame);
  1402. Assert.Equal (new Rectangle (-1, 0, 20, 3), window.Frame);
  1403. TestHelpers.AssertDriverContentsWithFrameAre (
  1404. @"
  1405. ──────────────────┐
  1406. ",
  1407. _output
  1408. );
  1409. Application.OnMouseEvent (
  1410. new MouseEventEventArgs (
  1411. new MouseEvent
  1412. {
  1413. X = 18,
  1414. Y = 1,
  1415. Flags = MouseFlags.Button1Pressed
  1416. | MouseFlags.ReportMousePosition
  1417. }
  1418. )
  1419. );
  1420. Application.Refresh ();
  1421. Assert.Equal (new Rectangle (0, 0, 19, 2), top.Frame);
  1422. Assert.Equal (new Rectangle (18, 1, 20, 3), window.Frame);
  1423. TestHelpers.AssertDriverContentsWithFrameAre (
  1424. @"
  1425. ┌",
  1426. _output
  1427. );
  1428. // On a real app we can't go beyond the SuperView bounds
  1429. Application.OnMouseEvent (
  1430. new MouseEventEventArgs (
  1431. new MouseEvent
  1432. {
  1433. X = 19,
  1434. Y = 2,
  1435. Flags = MouseFlags.Button1Pressed
  1436. | MouseFlags.ReportMousePosition
  1437. }
  1438. )
  1439. );
  1440. Application.Refresh ();
  1441. Assert.Equal (new Rectangle (0, 0, 19, 2), top.Frame);
  1442. Assert.Equal (new Rectangle (19, 2, 20, 3), window.Frame);
  1443. TestHelpers.AssertDriverContentsWithFrameAre (@"", _output);
  1444. Application.End (rsWindow);
  1445. Application.End (rsTop);
  1446. }
  1447. [Fact]
  1448. [AutoInitShutdown]
  1449. public void Modal_As_Top_Will_Drag_Cleanly ()
  1450. {
  1451. // Don't use Dialog as a Top, use a Window instead - dialog has complex layout behavior that is not needed here.
  1452. var window = new Window { Width = 10, Height = 3 };
  1453. window.Add (
  1454. new Label
  1455. {
  1456. X = Pos.Center (),
  1457. Y = Pos.Center (),
  1458. AutoSize = false,
  1459. Width = Dim.Fill (),
  1460. Height = Dim.Fill (),
  1461. TextAlignment = TextAlignment.Centered,
  1462. VerticalTextAlignment = VerticalTextAlignment.Middle,
  1463. Text = "Test"
  1464. }
  1465. );
  1466. RunState rs = Application.Begin (window);
  1467. Assert.Null (Application.MouseGrabView);
  1468. Assert.Equal (new Rectangle (0, 0, 10, 3), window.Frame);
  1469. TestHelpers.AssertDriverContentsWithFrameAre (
  1470. @"
  1471. ┌────────┐
  1472. │ Test │
  1473. └────────┘",
  1474. _output
  1475. );
  1476. Application.OnMouseEvent (
  1477. new MouseEventEventArgs (
  1478. new MouseEvent { X = 0, Y = 0, Flags = MouseFlags.Button1Pressed }
  1479. )
  1480. );
  1481. var firstIteration = false;
  1482. Application.RunIteration (ref rs, ref firstIteration);
  1483. Assert.Equal (window.Border, Application.MouseGrabView);
  1484. Assert.Equal (new Rectangle (0, 0, 10, 3), window.Frame);
  1485. TestHelpers.AssertDriverContentsWithFrameAre (
  1486. @"
  1487. ┌────────┐
  1488. │ Test │
  1489. └────────┘",
  1490. _output
  1491. );
  1492. Application.OnMouseEvent (
  1493. new MouseEventEventArgs (
  1494. new MouseEvent
  1495. {
  1496. X = 1,
  1497. Y = 1,
  1498. Flags = MouseFlags.Button1Pressed
  1499. | MouseFlags.ReportMousePosition
  1500. }
  1501. )
  1502. );
  1503. firstIteration = false;
  1504. Application.RunIteration (ref rs, ref firstIteration);
  1505. Assert.Equal (window.Border, Application.MouseGrabView);
  1506. Assert.Equal (new Rectangle (1, 1, 10, 3), window.Frame);
  1507. TestHelpers.AssertDriverContentsWithFrameAre (
  1508. @"
  1509. ┌────────┐
  1510. │ Test │
  1511. └────────┘",
  1512. _output
  1513. );
  1514. Application.End (rs);
  1515. }
  1516. [Fact]
  1517. [AutoInitShutdown]
  1518. public void Begin_With_Window_Sets_Size_Correctly ()
  1519. {
  1520. Toplevel top = new ();
  1521. RunState rsTop = Application.Begin (top);
  1522. ((FakeDriver)Application.Driver).SetBufferSize (20, 20);
  1523. var testWindow = new Window { X = 2, Y = 1, Width = 15, Height = 10 };
  1524. Assert.Equal (new Rectangle (2, 1, 15, 10), testWindow.Frame);
  1525. RunState rsTestWindow = Application.Begin (testWindow);
  1526. Assert.Equal (new Rectangle (2, 1, 15, 10), testWindow.Frame);
  1527. Application.End (rsTestWindow);
  1528. Application.End (rsTop);
  1529. }
  1530. // Don't use Dialog as a Top, use a Window instead - dialog has complex layout behavior that is not needed here.
  1531. [Fact]
  1532. [AutoInitShutdown]
  1533. public void Draw_A_Top_Subview_On_A_Window ()
  1534. {
  1535. Toplevel top = new ();
  1536. var win = new Window ();
  1537. top.Add (win);
  1538. RunState rsTop = Application.Begin (top);
  1539. ((FakeDriver)Application.Driver).SetBufferSize (20, 20);
  1540. Assert.Equal (new Rectangle (0, 0, 20, 20), win.Frame);
  1541. TestHelpers.AssertDriverContentsWithFrameAre (
  1542. @"
  1543. ┌──────────────────┐
  1544. │ │
  1545. │ │
  1546. │ │
  1547. │ │
  1548. │ │
  1549. │ │
  1550. │ │
  1551. │ │
  1552. │ │
  1553. │ │
  1554. │ │
  1555. │ │
  1556. │ │
  1557. │ │
  1558. │ │
  1559. │ │
  1560. │ │
  1561. │ │
  1562. └──────────────────┘",
  1563. _output
  1564. );
  1565. var btnPopup = new Button { Text = "Popup" };
  1566. var testWindow = new Window { X = 2, Y = 1, Width = 15, Height = 10 };
  1567. testWindow.Add (btnPopup);
  1568. btnPopup.Accept += (s, e) =>
  1569. {
  1570. Rectangle viewToScreen = btnPopup.ViewportToScreen (top.Frame);
  1571. var viewAddedToTop = new View
  1572. {
  1573. Text = "viewAddedToTop",
  1574. X = 1,
  1575. Y = viewToScreen.Y + 1,
  1576. Width = 18,
  1577. Height = 16,
  1578. BorderStyle = LineStyle.Single
  1579. };
  1580. Assert.Equal (testWindow, Application.Current);
  1581. Application.Current.DrawContentComplete += OnDrawContentComplete;
  1582. top.Add (viewAddedToTop);
  1583. void OnDrawContentComplete (object sender, DrawEventArgs e)
  1584. {
  1585. Assert.Equal (new Rectangle (1, 3, 18, 16), viewAddedToTop.Frame);
  1586. Rectangle savedClip = Application.Driver.Clip;
  1587. Application.Driver.Clip = top.Frame;
  1588. viewAddedToTop.Draw ();
  1589. top.Move (2, 15);
  1590. View.Driver.AddStr ("One");
  1591. top.Move (2, 16);
  1592. View.Driver.AddStr ("Two");
  1593. top.Move (2, 17);
  1594. View.Driver.AddStr ("Three");
  1595. Application.Driver.Clip = savedClip;
  1596. Application.Current.DrawContentComplete -= OnDrawContentComplete;
  1597. }
  1598. };
  1599. RunState rsTestWindow = Application.Begin (testWindow);
  1600. Assert.Equal (new Rectangle (2, 1, 15, 10), testWindow.Frame);
  1601. TestHelpers.AssertDriverContentsWithFrameAre (
  1602. @$"
  1603. ┌──────────────────┐
  1604. │ ┌─────────────┐ │
  1605. │ │{
  1606. CM.Glyphs.LeftBracket
  1607. } Popup {
  1608. CM.Glyphs.RightBracket
  1609. } │ │
  1610. │ │ │ │
  1611. │ │ │ │
  1612. │ │ │ │
  1613. │ │ │ │
  1614. │ │ │ │
  1615. │ │ │ │
  1616. │ │ │ │
  1617. │ └─────────────┘ │
  1618. │ │
  1619. │ │
  1620. │ │
  1621. │ │
  1622. │ │
  1623. │ │
  1624. │ │
  1625. │ │
  1626. └──────────────────┘",
  1627. _output
  1628. );
  1629. Application.OnMouseEvent (
  1630. new MouseEventEventArgs (
  1631. new MouseEvent { X = 5, Y = 2, Flags = MouseFlags.Button1Clicked }
  1632. )
  1633. );
  1634. Application.Top.Draw ();
  1635. var firstIteration = false;
  1636. Application.RunIteration (ref rsTestWindow, ref firstIteration);
  1637. TestHelpers.AssertDriverContentsWithFrameAre (
  1638. @$"
  1639. ┌──────────────────┐
  1640. │ ┌─────────────┐ │
  1641. │ │{
  1642. CM.Glyphs.LeftBracket
  1643. } Popup {
  1644. CM.Glyphs.RightBracket
  1645. } │ │
  1646. │┌────────────────┐│
  1647. ││viewAddedToTop ││
  1648. ││ ││
  1649. ││ ││
  1650. ││ ││
  1651. ││ ││
  1652. ││ ││
  1653. ││ ││
  1654. ││ ││
  1655. ││ ││
  1656. ││ ││
  1657. ││ ││
  1658. ││One ││
  1659. ││Two ││
  1660. ││Three ││
  1661. │└────────────────┘│
  1662. └──────────────────┘",
  1663. _output
  1664. );
  1665. Application.End (rsTestWindow);
  1666. Application.End (rsTop);
  1667. }
  1668. private void OnDrawContentComplete (object sender, DrawEventArgs e) { throw new NotImplementedException (); }
  1669. [Fact]
  1670. [AutoInitShutdown]
  1671. public void Activating_MenuBar_By_Alt_Key_Does_Not_Throw ()
  1672. {
  1673. var menu = new MenuBar
  1674. {
  1675. Menus =
  1676. [
  1677. new MenuBarItem ("Child", new MenuItem [] { new ("_Create Child", "", null) })
  1678. ]
  1679. };
  1680. var topChild = new Toplevel ();
  1681. topChild.Add (menu);
  1682. var top = new Toplevel ();
  1683. top.Add (topChild);
  1684. Application.Begin (top);
  1685. Exception exception = Record.Exception (() => topChild.NewKeyDownEvent (KeyCode.AltMask));
  1686. Assert.Null (exception);
  1687. }
  1688. [Fact]
  1689. [TestRespondersDisposed]
  1690. public void Multi_Thread_Toplevels ()
  1691. {
  1692. Application.Init (new FakeDriver ());
  1693. Toplevel t = new ();
  1694. var w = new Window ();
  1695. t.Add (w);
  1696. int count = 0, count1 = 0, count2 = 0;
  1697. bool log = false, log1 = false, log2 = false;
  1698. var fromTopStillKnowFirstIsRunning = false;
  1699. var fromTopStillKnowSecondIsRunning = false;
  1700. var fromFirstStillKnowSecondIsRunning = false;
  1701. Application.AddTimeout (
  1702. TimeSpan.FromMilliseconds (100),
  1703. () =>
  1704. {
  1705. count++;
  1706. if (count1 == 5)
  1707. {
  1708. log1 = true;
  1709. }
  1710. if (count1 == 14 && count2 == 10 && count == 15)
  1711. {
  1712. // count2 is already stopped
  1713. fromTopStillKnowFirstIsRunning = true;
  1714. }
  1715. if (count1 == 7 && count2 == 7 && count == 8)
  1716. {
  1717. fromTopStillKnowSecondIsRunning = true;
  1718. }
  1719. if (count == 30)
  1720. {
  1721. Assert.Equal (30, count);
  1722. Assert.Equal (20, count1);
  1723. Assert.Equal (10, count2);
  1724. Assert.True (log);
  1725. Assert.True (log1);
  1726. Assert.True (log2);
  1727. Assert.True (fromTopStillKnowFirstIsRunning);
  1728. Assert.True (fromTopStillKnowSecondIsRunning);
  1729. Assert.True (fromFirstStillKnowSecondIsRunning);
  1730. Application.RequestStop ();
  1731. return false;
  1732. }
  1733. return true;
  1734. }
  1735. );
  1736. t.Ready += FirstWindow;
  1737. void FirstWindow (object sender, EventArgs args)
  1738. {
  1739. var firstWindow = new Window ();
  1740. firstWindow.Ready += SecondWindow;
  1741. Application.AddTimeout (
  1742. TimeSpan.FromMilliseconds (100),
  1743. () =>
  1744. {
  1745. count1++;
  1746. if (count2 == 5)
  1747. {
  1748. log2 = true;
  1749. }
  1750. if (count2 == 4 && count1 == 5 && count == 5)
  1751. {
  1752. fromFirstStillKnowSecondIsRunning = true;
  1753. }
  1754. if (count1 == 20)
  1755. {
  1756. Assert.Equal (20, count1);
  1757. Application.RequestStop ();
  1758. return false;
  1759. }
  1760. return true;
  1761. }
  1762. );
  1763. Application.Run (firstWindow);
  1764. firstWindow.Dispose ();
  1765. }
  1766. void SecondWindow (object sender, EventArgs args)
  1767. {
  1768. var testWindow = new Window ();
  1769. Application.AddTimeout (
  1770. TimeSpan.FromMilliseconds (100),
  1771. () =>
  1772. {
  1773. count2++;
  1774. if (count < 30)
  1775. {
  1776. log = true;
  1777. }
  1778. if (count2 == 10)
  1779. {
  1780. Assert.Equal (10, count2);
  1781. Application.RequestStop ();
  1782. return false;
  1783. }
  1784. return true;
  1785. }
  1786. );
  1787. Application.Run (testWindow);
  1788. testWindow.Dispose ();
  1789. }
  1790. Application.Run (t);
  1791. t.Dispose ();
  1792. Application.Shutdown ();
  1793. }
  1794. }