ToplevelTests.cs 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788
  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_Default_Is_Fixed ()
  25. {
  26. var top = new Toplevel ();
  27. Assert.Equal (ViewArrangement.Fixed, 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.NewMouseEvent (new MouseEvent { X = 6, Y = 0, Flags = MouseFlags.Button1Pressed });
  325. // Assert.Equal (new Point (6, 0), Toplevel._dragPosition);
  326. win.NewMouseEvent (new MouseEvent { X = 6, Y = 0, Flags = MouseFlags.Button1Released });
  327. //Assert.Null (Toplevel._dragPosition);
  328. win.CanFocus = false;
  329. win.NewMouseEvent (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. Arrangement = ViewArrangement.Movable
  755. };
  756. Application.Run (testWindow);
  757. }
  758. else if (iterations == 1)
  759. {
  760. Assert.Equal(new Point(2,2), Application.Current.Frame.Location);
  761. }
  762. else if (iterations == 2)
  763. {
  764. Assert.Null (Application.MouseGrabView);
  765. // Grab the mouse
  766. Application.OnMouseEvent (new () { X = 3, Y = 2, Flags = MouseFlags.Button1Pressed });
  767. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  768. Assert.Equal (new Rectangle (2, 2, 10, 3), Application.Current.Frame);
  769. }
  770. else if (iterations == 3)
  771. {
  772. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  773. // Drag to left
  774. Application.OnMouseEvent (new ()
  775. {
  776. X = 2,
  777. Y = 2,
  778. Flags = MouseFlags.Button1Pressed
  779. | MouseFlags.ReportMousePosition
  780. });
  781. Application.Refresh ();
  782. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  783. Assert.Equal (new Rectangle (1, 2, 10, 3), Application.Current.Frame);
  784. }
  785. else if (iterations == 4)
  786. {
  787. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  788. Assert.Equal (new Point (1, 2), Application.Current.Frame.Location);
  789. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  790. }
  791. else if (iterations == 5)
  792. {
  793. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  794. // Drag up
  795. Application.OnMouseEvent (new ()
  796. {
  797. X = 2,
  798. Y = 1,
  799. Flags = MouseFlags.Button1Pressed
  800. | MouseFlags.ReportMousePosition
  801. });
  802. Application.Refresh ();
  803. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  804. Assert.Equal (new Rectangle (1, 1, 10, 3), Application.Current.Frame);
  805. }
  806. else if (iterations == 6)
  807. {
  808. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  809. Assert.Equal (new Point (1, 1), Application.Current.Frame.Location);
  810. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  811. Assert.Equal (new Rectangle (1, 1, 10, 3), Application.Current.Frame);
  812. }
  813. else if (iterations == 7)
  814. {
  815. Assert.Equal (Application.Current.Border, Application.MouseGrabView);
  816. // Ungrab the mouse
  817. Application.OnMouseEvent (new () { X = 2, Y = 1, Flags = MouseFlags.Button1Released });
  818. Application.Refresh ();
  819. Assert.Null (Application.MouseGrabView);
  820. }
  821. else if (iterations == 8)
  822. {
  823. Application.RequestStop ();
  824. }
  825. else if (iterations == 9)
  826. {
  827. Application.RequestStop ();
  828. }
  829. };
  830. Application.Run (top);
  831. }
  832. [Fact]
  833. [AutoInitShutdown]
  834. public void Mouse_Drag_On_Top_With_Superview_Not_Null ()
  835. {
  836. var win = new Window { X = 3, Y = 2, Width = 10, Height = 5, Arrangement = ViewArrangement.Movable };
  837. Toplevel top = new ();
  838. top.Add (win);
  839. int iterations = -1;
  840. var movex = 0;
  841. var movey = 0;
  842. var location = new Rectangle (win.Frame.X, win.Frame.Y, 7, 3);
  843. Application.Iteration += (s, a) =>
  844. {
  845. iterations++;
  846. if (iterations == 0)
  847. {
  848. ((FakeDriver)Application.Driver).SetBufferSize (30, 10);
  849. }
  850. else if (iterations == 1)
  851. {
  852. location = win.Frame;
  853. Assert.Null (Application.MouseGrabView);
  854. // Grab the mouse
  855. Application.OnMouseEvent (new MouseEvent
  856. {
  857. X = win.Frame.X, Y = win.Frame.Y,
  858. Flags = MouseFlags.Button1Pressed
  859. });
  860. Assert.Equal (win.Border, Application.MouseGrabView);
  861. }
  862. else if (iterations == 2)
  863. {
  864. Assert.Equal (win.Border, Application.MouseGrabView);
  865. // Drag to left
  866. movex = 1;
  867. movey = 0;
  868. Application.OnMouseEvent (new MouseEvent
  869. {
  870. X = win.Frame.X + movex,
  871. Y = win.Frame.Y + movey,
  872. Flags = MouseFlags.Button1Pressed
  873. | MouseFlags.ReportMousePosition
  874. });
  875. Assert.Equal (win.Border, Application.MouseGrabView);
  876. }
  877. else if (iterations == 3)
  878. {
  879. // we should have moved +1, +0
  880. Assert.Equal (win.Border, Application.MouseGrabView);
  881. Assert.Equal (win.Border, Application.MouseGrabView);
  882. location.Offset (movex, movey);
  883. }
  884. else if (iterations == 4)
  885. {
  886. Assert.Equal (win.Border, Application.MouseGrabView);
  887. // Drag up
  888. movex = 0;
  889. movey = -1;
  890. Application.OnMouseEvent (new MouseEvent
  891. {
  892. X = win.Frame.X + movex,
  893. Y = win.Frame.Y + movey,
  894. Flags = MouseFlags.Button1Pressed
  895. | MouseFlags.ReportMousePosition
  896. });
  897. Assert.Equal (win.Border, Application.MouseGrabView);
  898. }
  899. else if (iterations == 5)
  900. {
  901. // we should have moved +0, -1
  902. Assert.Equal (win.Border, Application.MouseGrabView);
  903. location.Offset (movex, movey);
  904. Assert.Equal (location, win.Frame);
  905. }
  906. else if (iterations == 6)
  907. {
  908. Assert.Equal (win.Border, Application.MouseGrabView);
  909. // Ungrab the mouse
  910. movex = 0;
  911. movey = 0;
  912. Application.OnMouseEvent (new MouseEvent
  913. {
  914. X = win.Frame.X + movex, Y = win.Frame.Y + movey,
  915. Flags = MouseFlags.Button1Released
  916. });
  917. Assert.Null (Application.MouseGrabView);
  918. }
  919. else if (iterations == 7)
  920. {
  921. Application.RequestStop ();
  922. }
  923. };
  924. Application.Run (top);
  925. }
  926. [Fact]
  927. [AutoInitShutdown]
  928. public void GetLocationThatFits_With_Border_Null_Not_Throws ()
  929. {
  930. var top = new Toplevel ();
  931. Application.Begin (top);
  932. Exception exception = Record.Exception (() => ((FakeDriver)Application.Driver).SetBufferSize (0, 10));
  933. Assert.Null (exception);
  934. exception = Record.Exception (() => ((FakeDriver)Application.Driver).SetBufferSize (10, 0));
  935. Assert.Null (exception);
  936. }
  937. [Fact]
  938. [AutoInitShutdown]
  939. public void OnEnter_OnLeave_Triggered_On_Application_Begin_End ()
  940. {
  941. var isEnter = false;
  942. var isLeave = false;
  943. var v = new View ();
  944. v.Enter += (s, _) => isEnter = true;
  945. v.Leave += (s, _) => isLeave = true;
  946. Toplevel top = new ();
  947. top.Add (v);
  948. Assert.False (v.CanFocus);
  949. Exception exception = Record.Exception (() => top.OnEnter (top));
  950. Assert.Null (exception);
  951. exception = Record.Exception (() => top.OnLeave (top));
  952. Assert.Null (exception);
  953. v.CanFocus = true;
  954. RunState rsTop = Application.Begin (top);
  955. // From the v view
  956. Assert.True (isEnter);
  957. // The Leave event is only raised on the End method
  958. // and the top is still running
  959. Assert.False (isLeave);
  960. isEnter = false;
  961. var d = new Dialog ();
  962. var dv = new View { CanFocus = true };
  963. dv.Enter += (s, _) => isEnter = true;
  964. dv.Leave += (s, _) => isLeave = true;
  965. d.Add (dv);
  966. RunState rsDialog = Application.Begin (d);
  967. // From the dv view
  968. Assert.True (isEnter);
  969. Assert.False (isLeave);
  970. Assert.True (dv.HasFocus);
  971. isEnter = false;
  972. Application.End (rsDialog);
  973. // From the v view
  974. Assert.True (isEnter);
  975. // From the dv view
  976. Assert.True (isLeave);
  977. Assert.True (v.HasFocus);
  978. Application.End (rsTop);
  979. }
  980. [Fact]
  981. [AutoInitShutdown]
  982. public void OnEnter_OnLeave_Triggered_On_Application_Begin_End_With_More_Toplevels ()
  983. {
  984. var iterations = 0;
  985. var steps = new int [4];
  986. var isEnterTop = false;
  987. var isLeaveTop = false;
  988. var vt = new View ();
  989. Toplevel top = new ();
  990. var diag = new Dialog ();
  991. vt.Enter += (s, e) =>
  992. {
  993. iterations++;
  994. isEnterTop = true;
  995. if (iterations == 1)
  996. {
  997. steps [0] = iterations;
  998. Assert.Null (e.View);
  999. }
  1000. else
  1001. {
  1002. steps [3] = iterations;
  1003. Assert.Equal (diag, e.View);
  1004. }
  1005. };
  1006. vt.Leave += (s, e) =>
  1007. {
  1008. // This will never be raised
  1009. iterations++;
  1010. isLeaveTop = true;
  1011. Assert.Equal (diag, e.View);
  1012. };
  1013. top.Add (vt);
  1014. Assert.False (vt.CanFocus);
  1015. Exception exception = Record.Exception (() => top.OnEnter (top));
  1016. Assert.Null (exception);
  1017. exception = Record.Exception (() => top.OnLeave (top));
  1018. Assert.Null (exception);
  1019. vt.CanFocus = true;
  1020. RunState rsTop = Application.Begin (top);
  1021. Assert.True (isEnterTop);
  1022. Assert.False (isLeaveTop);
  1023. isEnterTop = false;
  1024. var isEnterDiag = false;
  1025. var isLeaveDiag = false;
  1026. var vd = new View ();
  1027. vd.Enter += (s, e) =>
  1028. {
  1029. iterations++;
  1030. steps [1] = iterations;
  1031. isEnterDiag = true;
  1032. Assert.Null (e.View);
  1033. };
  1034. vd.Leave += (s, e) =>
  1035. {
  1036. iterations++;
  1037. steps [2] = iterations;
  1038. isLeaveDiag = true;
  1039. Assert.Equal (top, e.View);
  1040. };
  1041. diag.Add (vd);
  1042. Assert.False (vd.CanFocus);
  1043. exception = Record.Exception (() => diag.OnEnter (diag));
  1044. Assert.Null (exception);
  1045. exception = Record.Exception (() => diag.OnLeave (diag));
  1046. Assert.Null (exception);
  1047. vd.CanFocus = true;
  1048. RunState rsDiag = Application.Begin (diag);
  1049. Assert.True (isEnterDiag);
  1050. Assert.False (isLeaveDiag);
  1051. Assert.False (isEnterTop);
  1052. // The Leave event is only raised on the End method
  1053. // and the top is still running
  1054. Assert.False (isLeaveTop);
  1055. isEnterDiag = false;
  1056. isLeaveTop = false;
  1057. Application.End (rsDiag);
  1058. Assert.False (isEnterDiag);
  1059. Assert.True (isLeaveDiag);
  1060. Assert.True (isEnterTop);
  1061. // Leave event on top cannot be raised
  1062. // because Current is null on the End method
  1063. Assert.False (isLeaveTop);
  1064. Assert.True (vt.HasFocus);
  1065. Application.End (rsTop);
  1066. Assert.Equal (1, steps [0]);
  1067. Assert.Equal (2, steps [1]);
  1068. Assert.Equal (3, steps [2]);
  1069. Assert.Equal (4, steps [^1]);
  1070. }
  1071. [Fact]
  1072. [AutoInitShutdown]
  1073. public void PositionCursor_SetCursorVisibility_To_Invisible_If_Focused_Is_Null ()
  1074. {
  1075. var tf = new TextField { Width = 5, Text = "test" };
  1076. var view = new View { Width = 10, Height = 10 };
  1077. view.Add (tf);
  1078. var top = new Toplevel ();
  1079. top.Add (view);
  1080. Application.Begin (top);
  1081. Assert.True (tf.HasFocus);
  1082. Application.PositionCursor (top);
  1083. Application.Driver.GetCursorVisibility (out CursorVisibility cursor);
  1084. Assert.Equal (CursorVisibility.Default, cursor);
  1085. view.Enabled = false;
  1086. Assert.False (tf.HasFocus);
  1087. Application.PositionCursor (top);
  1088. Application.Driver.GetCursorVisibility (out cursor);
  1089. Assert.Equal (CursorVisibility.Invisible, cursor);
  1090. }
  1091. [Fact]
  1092. [AutoInitShutdown]
  1093. public void IsLoaded_Application_Begin ()
  1094. {
  1095. Toplevel top = new ();
  1096. Assert.False (top.IsLoaded);
  1097. Application.Begin (top);
  1098. Assert.True (top.IsLoaded);
  1099. }
  1100. [Fact]
  1101. [AutoInitShutdown]
  1102. public void IsLoaded_With_Sub_Toplevel_Application_Begin_NeedDisplay ()
  1103. {
  1104. Toplevel top = new ();
  1105. var subTop = new Toplevel ();
  1106. var view = new View { Frame = new Rectangle (0, 0, 20, 10) };
  1107. subTop.Add (view);
  1108. top.Add (subTop);
  1109. Assert.False (top.IsLoaded);
  1110. Assert.False (subTop.IsLoaded);
  1111. Assert.Equal (new Rectangle (0, 0, 20, 10), view.Frame);
  1112. view.LayoutStarted += view_LayoutStarted;
  1113. void view_LayoutStarted (object sender, LayoutEventArgs e)
  1114. {
  1115. Assert.Equal (new Rectangle (0, 0, 20, 10), view._needsDisplayRect);
  1116. view.LayoutStarted -= view_LayoutStarted;
  1117. }
  1118. Application.Begin (top);
  1119. Assert.True (top.IsLoaded);
  1120. Assert.True (subTop.IsLoaded);
  1121. Assert.Equal (new Rectangle (0, 0, 20, 10), view.Frame);
  1122. view.Frame = new (1, 3, 10, 5);
  1123. Assert.Equal (new (1, 3, 10, 5), view.Frame);
  1124. Assert.Equal (new (0, 0, 10, 5), view._needsDisplayRect);
  1125. view.OnDrawContent (view.Viewport);
  1126. view.Frame = new (1, 3, 10, 5);
  1127. Assert.Equal (new (1, 3, 10, 5), view.Frame);
  1128. Assert.Equal (new (0, 0, 10, 5), view._needsDisplayRect);
  1129. }
  1130. [Fact]
  1131. [AutoInitShutdown]
  1132. public void Toplevel_Inside_ScrollView_MouseGrabView ()
  1133. {
  1134. var scrollView = new ScrollView
  1135. {
  1136. X = 3,
  1137. Y = 3,
  1138. Width = 40,
  1139. Height = 16,
  1140. ContentSize = new (200, 100)
  1141. };
  1142. var win = new Window { X = 3, Y = 3, Width = Dim.Fill (3), Height = Dim.Fill (3), Arrangement = ViewArrangement.Movable };
  1143. scrollView.Add (win);
  1144. Toplevel top = new ();
  1145. top.Add (scrollView);
  1146. Application.Begin (top);
  1147. Assert.Equal (new (0, 0, 80, 25), top.Frame);
  1148. Assert.Equal (new (3, 3, 40, 16), scrollView.Frame);
  1149. Assert.Equal (new (0, 0, 200, 100), scrollView.Subviews [0].Frame);
  1150. Assert.Equal (new (3, 3, 194, 94), win.Frame);
  1151. Application.OnMouseEvent (new MouseEvent { X = 6, Y = 6, Flags = MouseFlags.Button1Pressed });
  1152. Assert.Equal (win.Border, Application.MouseGrabView);
  1153. Assert.Equal (new (3, 3, 194, 94), win.Frame);
  1154. Application.OnMouseEvent (new MouseEvent { X = 9, Y = 9, Flags = MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition });
  1155. Assert.Equal (win.Border, Application.MouseGrabView);
  1156. top.SetNeedsLayout ();
  1157. top.LayoutSubviews ();
  1158. Assert.Equal (new Rectangle (6, 6, 191, 91), win.Frame);
  1159. Application.Refresh ();
  1160. Application.OnMouseEvent (new MouseEvent
  1161. {
  1162. X = 5,
  1163. Y = 5,
  1164. Flags = MouseFlags.Button1Pressed
  1165. | MouseFlags.ReportMousePosition
  1166. });
  1167. Assert.Equal (win.Border, Application.MouseGrabView);
  1168. top.SetNeedsLayout ();
  1169. top.LayoutSubviews ();
  1170. Assert.Equal (new Rectangle (2, 2, 195, 95), win.Frame);
  1171. Application.Refresh ();
  1172. Application.OnMouseEvent (new MouseEvent { X = 5, Y = 5, Flags = MouseFlags.Button1Released });
  1173. // ScrollView always grab the mouse when the container's subview OnMouseEnter don't want grab the mouse
  1174. Assert.Equal (scrollView, Application.MouseGrabView);
  1175. Application.OnMouseEvent (new MouseEvent { X = 4, Y = 4, Flags = MouseFlags.ReportMousePosition });
  1176. Assert.Equal (scrollView, Application.MouseGrabView);
  1177. }
  1178. [Fact]
  1179. [AutoInitShutdown]
  1180. public void Window_Viewport_Bigger_Than_Driver_Cols_And_Rows_Allow_Drag_Beyond_Left_Right_And_Bottom ()
  1181. {
  1182. Toplevel top = new ();
  1183. var window = new Window { Width = 20, Height = 3, Arrangement = ViewArrangement.Movable};
  1184. RunState rsTop = Application.Begin (top);
  1185. ((FakeDriver)Application.Driver).SetBufferSize (40, 10);
  1186. RunState rsWindow = Application.Begin (window);
  1187. Application.Refresh ();
  1188. Assert.Equal (new Rectangle (0, 0, 40, 10), top.Frame);
  1189. Assert.Equal (new Rectangle (0, 0, 20, 3), window.Frame);
  1190. Assert.Null (Application.MouseGrabView);
  1191. Application.OnMouseEvent (new MouseEvent { X = 0, Y = 0, Flags = MouseFlags.Button1Pressed });
  1192. Assert.Equal (window.Border, Application.MouseGrabView);
  1193. Application.OnMouseEvent (new MouseEvent
  1194. {
  1195. X = -11,
  1196. Y = -4,
  1197. Flags = MouseFlags.Button1Pressed
  1198. | MouseFlags.ReportMousePosition
  1199. });
  1200. Application.Refresh ();
  1201. Assert.Equal (new Rectangle (0, 0, 40, 10), top.Frame);
  1202. Assert.Equal (new Rectangle (0, 0, 20, 3), window.Frame);
  1203. // Changes Top size to same size as Dialog more menu and scroll bar
  1204. ((FakeDriver)Application.Driver).SetBufferSize (20, 3);
  1205. Application.OnMouseEvent (new MouseEvent
  1206. {
  1207. X = -1,
  1208. Y = -1,
  1209. Flags = MouseFlags.Button1Pressed
  1210. | MouseFlags.ReportMousePosition
  1211. });
  1212. Application.Refresh ();
  1213. Assert.Equal (new Rectangle (0, 0, 20, 3), top.Frame);
  1214. Assert.Equal (new Rectangle (0, 0, 20, 3), window.Frame);
  1215. // Changes Top size smaller than Dialog size
  1216. ((FakeDriver)Application.Driver).SetBufferSize (19, 2);
  1217. Application.OnMouseEvent (new MouseEvent
  1218. {
  1219. X = -1,
  1220. Y = -1,
  1221. Flags = MouseFlags.Button1Pressed
  1222. | MouseFlags.ReportMousePosition
  1223. });
  1224. Application.Refresh ();
  1225. Assert.Equal (new Rectangle (0, 0, 19, 2), top.Frame);
  1226. Assert.Equal (new Rectangle (-1, 0, 20, 3), window.Frame);
  1227. Application.OnMouseEvent (new MouseEvent
  1228. {
  1229. X = 18,
  1230. Y = 1,
  1231. Flags = MouseFlags.Button1Pressed
  1232. | MouseFlags.ReportMousePosition
  1233. });
  1234. Application.Refresh ();
  1235. Assert.Equal (new Rectangle (0, 0, 19, 2), top.Frame);
  1236. Assert.Equal (new Rectangle (18, 1, 20, 3), window.Frame);
  1237. // On a real app we can't go beyond the SuperView bounds
  1238. Application.OnMouseEvent (new MouseEvent
  1239. {
  1240. X = 19,
  1241. Y = 2,
  1242. Flags = MouseFlags.Button1Pressed
  1243. | MouseFlags.ReportMousePosition
  1244. });
  1245. Application.Refresh ();
  1246. Assert.Equal (new Rectangle (0, 0, 19, 2), top.Frame);
  1247. Assert.Equal (new Rectangle (19, 2, 20, 3), window.Frame);
  1248. TestHelpers.AssertDriverContentsWithFrameAre (@"", _output);
  1249. Application.End (rsWindow);
  1250. Application.End (rsTop);
  1251. }
  1252. [Fact]
  1253. [AutoInitShutdown]
  1254. public void Modal_As_Top_Will_Drag_Cleanly ()
  1255. {
  1256. // Don't use Dialog as a Top, use a Window instead - dialog has complex layout behavior that is not needed here.
  1257. var window = new Window { Width = 10, Height = 3, Arrangement = ViewArrangement.Movable };
  1258. window.Add (
  1259. new Label
  1260. {
  1261. X = Pos.Center (),
  1262. Y = Pos.Center (),
  1263. AutoSize = false,
  1264. Width = Dim.Fill (),
  1265. Height = Dim.Fill (),
  1266. TextAlignment = TextAlignment.Centered,
  1267. VerticalTextAlignment = VerticalTextAlignment.Middle,
  1268. Text = "Test"
  1269. }
  1270. );
  1271. RunState rs = Application.Begin (window);
  1272. Assert.Null (Application.MouseGrabView);
  1273. Assert.Equal (new Rectangle (0, 0, 10, 3), window.Frame);
  1274. Application.OnMouseEvent (new MouseEvent { X = 0, Y = 0, Flags = MouseFlags.Button1Pressed });
  1275. var firstIteration = false;
  1276. Application.RunIteration (ref rs, ref firstIteration);
  1277. Assert.Equal (window.Border, Application.MouseGrabView);
  1278. Assert.Equal (new Rectangle (0, 0, 10, 3), window.Frame);
  1279. Application.OnMouseEvent (new MouseEvent
  1280. {
  1281. X = 1,
  1282. Y = 1,
  1283. Flags = MouseFlags.Button1Pressed
  1284. | MouseFlags.ReportMousePosition
  1285. });
  1286. firstIteration = false;
  1287. Application.RunIteration (ref rs, ref firstIteration);
  1288. Assert.Equal (window.Border, Application.MouseGrabView);
  1289. Assert.Equal (new Rectangle (1, 1, 10, 3), window.Frame);
  1290. Application.End (rs);
  1291. }
  1292. [Fact]
  1293. [AutoInitShutdown]
  1294. public void Begin_With_Window_Sets_Size_Correctly ()
  1295. {
  1296. Toplevel top = new ();
  1297. RunState rsTop = Application.Begin (top);
  1298. ((FakeDriver)Application.Driver).SetBufferSize (20, 20);
  1299. var testWindow = new Window { X = 2, Y = 1, Width = 15, Height = 10 };
  1300. Assert.Equal (new Rectangle (2, 1, 15, 10), testWindow.Frame);
  1301. RunState rsTestWindow = Application.Begin (testWindow);
  1302. Assert.Equal (new Rectangle (2, 1, 15, 10), testWindow.Frame);
  1303. Application.End (rsTestWindow);
  1304. Application.End (rsTop);
  1305. }
  1306. // Don't use Dialog as a Top, use a Window instead - dialog has complex layout behavior that is not needed here.
  1307. [Fact]
  1308. [AutoInitShutdown]
  1309. public void Draw_A_Top_Subview_On_A_Window ()
  1310. {
  1311. Toplevel top = new ();
  1312. var win = new Window ();
  1313. top.Add (win);
  1314. RunState rsTop = Application.Begin (top);
  1315. ((FakeDriver)Application.Driver).SetBufferSize (20, 20);
  1316. Assert.Equal (new Rectangle (0, 0, 20, 20), win.Frame);
  1317. var btnPopup = new Button { Text = "Popup" };
  1318. var testWindow = new Window { X = 2, Y = 1, Width = 15, Height = 10 };
  1319. testWindow.Add (btnPopup);
  1320. btnPopup.Accept += (s, e) =>
  1321. {
  1322. Rectangle viewToScreen = btnPopup.ViewportToScreen (top.Frame);
  1323. var viewAddedToTop = new View
  1324. {
  1325. Text = "viewAddedToTop",
  1326. X = 1,
  1327. Y = viewToScreen.Y + 1,
  1328. Width = 18,
  1329. Height = 16,
  1330. BorderStyle = LineStyle.Single
  1331. };
  1332. Assert.Equal (testWindow, Application.Current);
  1333. Application.Current.DrawContentComplete += OnDrawContentComplete;
  1334. top.Add (viewAddedToTop);
  1335. void OnDrawContentComplete (object sender, DrawEventArgs e)
  1336. {
  1337. Assert.Equal (new Rectangle (1, 3, 18, 16), viewAddedToTop.Frame);
  1338. Rectangle savedClip = Application.Driver.Clip;
  1339. Application.Driver.Clip = top.Frame;
  1340. viewAddedToTop.Draw ();
  1341. top.Move (2, 15);
  1342. View.Driver.AddStr ("One");
  1343. top.Move (2, 16);
  1344. View.Driver.AddStr ("Two");
  1345. top.Move (2, 17);
  1346. View.Driver.AddStr ("Three");
  1347. Application.Driver.Clip = savedClip;
  1348. Application.Current.DrawContentComplete -= OnDrawContentComplete;
  1349. }
  1350. };
  1351. RunState rsTestWindow = Application.Begin (testWindow);
  1352. Assert.Equal (new Rectangle (2, 1, 15, 10), testWindow.Frame);
  1353. Application.OnMouseEvent (new () { X = 5, Y = 2, Flags = MouseFlags.Button1Clicked });
  1354. Application.Top.Draw ();
  1355. var firstIteration = false;
  1356. Application.RunIteration (ref rsTestWindow, ref firstIteration);
  1357. TestHelpers.AssertDriverContentsWithFrameAre (
  1358. @$"
  1359. ┌──────────────────┐
  1360. │ ┌─────────────┐ │
  1361. │ │{CM.Glyphs.LeftBracket} Popup {CM.Glyphs.RightBracket} │ │
  1362. │┌────────────────┐│
  1363. ││viewAddedToTop ││
  1364. ││ ││
  1365. ││ ││
  1366. ││ ││
  1367. ││ ││
  1368. ││ ││
  1369. ││ ││
  1370. ││ ││
  1371. ││ ││
  1372. ││ ││
  1373. ││ ││
  1374. ││One ││
  1375. ││Two ││
  1376. ││Three ││
  1377. │└────────────────┘│
  1378. └──────────────────┘",
  1379. _output
  1380. );
  1381. Application.End (rsTestWindow);
  1382. Application.End (rsTop);
  1383. }
  1384. private void OnDrawContentComplete (object sender, DrawEventArgs e) { throw new NotImplementedException (); }
  1385. [Fact]
  1386. [AutoInitShutdown]
  1387. public void Activating_MenuBar_By_Alt_Key_Does_Not_Throw ()
  1388. {
  1389. var menu = new MenuBar
  1390. {
  1391. Menus =
  1392. [
  1393. new MenuBarItem ("Child", new MenuItem [] { new ("_Create Child", "", null) })
  1394. ]
  1395. };
  1396. var topChild = new Toplevel ();
  1397. topChild.Add (menu);
  1398. var top = new Toplevel ();
  1399. top.Add (topChild);
  1400. Application.Begin (top);
  1401. Exception exception = Record.Exception (() => topChild.NewKeyDownEvent (KeyCode.AltMask));
  1402. Assert.Null (exception);
  1403. }
  1404. [Fact]
  1405. [TestRespondersDisposed]
  1406. public void Multi_Thread_Toplevels ()
  1407. {
  1408. Application.Init (new FakeDriver ());
  1409. Toplevel t = new ();
  1410. var w = new Window ();
  1411. t.Add (w);
  1412. int count = 0, count1 = 0, count2 = 0;
  1413. bool log = false, log1 = false, log2 = false;
  1414. var fromTopStillKnowFirstIsRunning = false;
  1415. var fromTopStillKnowSecondIsRunning = false;
  1416. var fromFirstStillKnowSecondIsRunning = false;
  1417. Application.AddTimeout (
  1418. TimeSpan.FromMilliseconds (100),
  1419. () =>
  1420. {
  1421. count++;
  1422. if (count1 == 5)
  1423. {
  1424. log1 = true;
  1425. }
  1426. if (count1 == 14 && count2 == 10 && count == 15)
  1427. {
  1428. // count2 is already stopped
  1429. fromTopStillKnowFirstIsRunning = true;
  1430. }
  1431. if (count1 == 7 && count2 == 7 && count == 8)
  1432. {
  1433. fromTopStillKnowSecondIsRunning = true;
  1434. }
  1435. if (count == 30)
  1436. {
  1437. Assert.Equal (30, count);
  1438. Assert.Equal (20, count1);
  1439. Assert.Equal (10, count2);
  1440. Assert.True (log);
  1441. Assert.True (log1);
  1442. Assert.True (log2);
  1443. Assert.True (fromTopStillKnowFirstIsRunning);
  1444. Assert.True (fromTopStillKnowSecondIsRunning);
  1445. Assert.True (fromFirstStillKnowSecondIsRunning);
  1446. Application.RequestStop ();
  1447. return false;
  1448. }
  1449. return true;
  1450. }
  1451. );
  1452. t.Ready += FirstWindow;
  1453. void FirstWindow (object sender, EventArgs args)
  1454. {
  1455. var firstWindow = new Window ();
  1456. firstWindow.Ready += SecondWindow;
  1457. Application.AddTimeout (
  1458. TimeSpan.FromMilliseconds (100),
  1459. () =>
  1460. {
  1461. count1++;
  1462. if (count2 == 5)
  1463. {
  1464. log2 = true;
  1465. }
  1466. if (count2 == 4 && count1 == 5 && count == 5)
  1467. {
  1468. fromFirstStillKnowSecondIsRunning = true;
  1469. }
  1470. if (count1 == 20)
  1471. {
  1472. Assert.Equal (20, count1);
  1473. Application.RequestStop ();
  1474. return false;
  1475. }
  1476. return true;
  1477. }
  1478. );
  1479. Application.Run (firstWindow);
  1480. firstWindow.Dispose ();
  1481. }
  1482. void SecondWindow (object sender, EventArgs args)
  1483. {
  1484. var testWindow = new Window ();
  1485. Application.AddTimeout (
  1486. TimeSpan.FromMilliseconds (100),
  1487. () =>
  1488. {
  1489. count2++;
  1490. if (count < 30)
  1491. {
  1492. log = true;
  1493. }
  1494. if (count2 == 10)
  1495. {
  1496. Assert.Equal (10, count2);
  1497. Application.RequestStop ();
  1498. return false;
  1499. }
  1500. return true;
  1501. }
  1502. );
  1503. Application.Run (testWindow);
  1504. testWindow.Dispose ();
  1505. }
  1506. Application.Run (t);
  1507. t.Dispose ();
  1508. Application.Shutdown ();
  1509. }
  1510. }