Terminal.Gui.Application.yml 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.Application
  4. id: Application
  5. children:
  6. - Terminal.Gui.Application.Begin(Terminal.Gui.Toplevel)
  7. - Terminal.Gui.Application.Current
  8. - Terminal.Gui.Application.Driver
  9. - Terminal.Gui.Application.End(Terminal.Gui.Application.RunState)
  10. - Terminal.Gui.Application.GrabMouse(Terminal.Gui.View)
  11. - Terminal.Gui.Application.Init
  12. - Terminal.Gui.Application.Iteration
  13. - Terminal.Gui.Application.MainLoop
  14. - Terminal.Gui.Application.MakeCenteredRect(Terminal.Gui.Size)
  15. - Terminal.Gui.Application.Refresh
  16. - Terminal.Gui.Application.RequestStop
  17. - Terminal.Gui.Application.RootMouseEvent
  18. - Terminal.Gui.Application.Run
  19. - Terminal.Gui.Application.Run(Terminal.Gui.Toplevel)
  20. - Terminal.Gui.Application.RunLoop(Terminal.Gui.Application.RunState,System.Boolean)
  21. - Terminal.Gui.Application.Top
  22. - Terminal.Gui.Application.UngrabMouse
  23. - Terminal.Gui.Application.UseSystemConsole
  24. langs:
  25. - csharp
  26. name: Application
  27. nameWithType: Application
  28. fullName: Terminal.Gui.Application
  29. type: Class
  30. assemblies:
  31. - Terminal.Gui
  32. namespace: Terminal.Gui
  33. summary: The application driver for gui.cs
  34. remarks: "<p>\n You can hook up to the Iteration event to have your method \n invoked on each iteration of the mainloop.\n </p>\n <p>\n Creates a mainloop to process input events, handle timers and\n other sources of data. It is accessible via the MainLoop property.\n </p>\n <p>\n When invoked sets the SynchronizationContext to one that is tied\n to the mainloop, allowing user code to use async/await.\n </p>"
  35. syntax:
  36. content: public static class Application
  37. inheritance:
  38. - System.Object
  39. implements: []
  40. inheritedMembers: []
  41. - uid: Terminal.Gui.Application.Begin(Terminal.Gui.Toplevel)
  42. id: Begin(Terminal.Gui.Toplevel)
  43. parent: Terminal.Gui.Application
  44. langs:
  45. - csharp
  46. name: Begin(Toplevel)
  47. nameWithType: Application.Begin(Toplevel)
  48. fullName: Application.Begin(Toplevel)
  49. type: Method
  50. assemblies:
  51. - Terminal.Gui
  52. namespace: Terminal.Gui
  53. summary: 'Building block API: Prepares the provided toplevel for execution.'
  54. remarks: "This method prepares the provided toplevel for running with the focus,\n it adds this to the list of toplevels, sets up the mainloop to process the \n event, lays out the subviews, focuses the first element, and draws the\n toplevel in the screen. This is usually followed by executing\n the <xref href=\"Terminal.Gui.Application.RunLoop(Terminal.Gui.Application.RunState,System.Boolean)\"></xref> method, and then the <xref href=\"Terminal.Gui.Application.End(Terminal.Gui.Application.RunState)\"></xref> method upon termination which will\n undo these changes."
  55. syntax:
  56. content: public static Terminal.Gui.Application.RunState Begin (Terminal.Gui.Toplevel toplevel);
  57. parameters:
  58. - id: toplevel
  59. type: Terminal.Gui.Toplevel
  60. description: Toplevel to prepare execution for.
  61. return:
  62. type: Terminal.Gui.Application+RunState
  63. description: The runstate handle that needs to be passed to the End() method upon completion.
  64. overload: Terminal.Gui.Application.Begin*
  65. exceptions: []
  66. - uid: Terminal.Gui.Application.Current
  67. id: Current
  68. parent: Terminal.Gui.Application
  69. langs:
  70. - csharp
  71. name: Current
  72. nameWithType: Application.Current
  73. fullName: Application.Current
  74. type: Property
  75. assemblies:
  76. - Terminal.Gui
  77. namespace: Terminal.Gui
  78. summary: The current toplevel object. This is updated when Application.Run enters and leaves and points to the current toplevel.
  79. syntax:
  80. content: public static Terminal.Gui.Toplevel Current { get; }
  81. return:
  82. type: Terminal.Gui.Toplevel
  83. description: The current.
  84. overload: Terminal.Gui.Application.Current*
  85. exceptions: []
  86. - uid: Terminal.Gui.Application.Driver
  87. id: Driver
  88. parent: Terminal.Gui.Application
  89. langs:
  90. - csharp
  91. name: Driver
  92. nameWithType: Application.Driver
  93. fullName: Application.Driver
  94. type: Field
  95. assemblies:
  96. - Terminal.Gui
  97. namespace: Terminal.Gui
  98. summary: The current Console Driver in use.
  99. syntax:
  100. content: public static Terminal.Gui.ConsoleDriver Driver;
  101. return:
  102. type: Terminal.Gui.ConsoleDriver
  103. description: To be added.
  104. exceptions: []
  105. - uid: Terminal.Gui.Application.End(Terminal.Gui.Application.RunState)
  106. id: End(Terminal.Gui.Application.RunState)
  107. parent: Terminal.Gui.Application
  108. langs:
  109. - csharp
  110. name: End(Application+RunState)
  111. nameWithType: Application.End(Application+RunState)
  112. fullName: Application.End(Application+RunState)
  113. type: Method
  114. assemblies:
  115. - Terminal.Gui
  116. namespace: Terminal.Gui
  117. summary: 'Building block API: completes the exection of a Toplevel that was started with Begin.'
  118. syntax:
  119. content: public static void End (Terminal.Gui.Application.RunState runState);
  120. parameters:
  121. - id: runState
  122. type: Terminal.Gui.Application+RunState
  123. description: The runstate returned by the <xref href="Terminal.Gui.Application.Begin(Terminal.Gui.Toplevel)"></xref> method.
  124. overload: Terminal.Gui.Application.End*
  125. exceptions: []
  126. - uid: Terminal.Gui.Application.GrabMouse(Terminal.Gui.View)
  127. id: GrabMouse(Terminal.Gui.View)
  128. parent: Terminal.Gui.Application
  129. langs:
  130. - csharp
  131. name: GrabMouse(View)
  132. nameWithType: Application.GrabMouse(View)
  133. fullName: Application.GrabMouse(View)
  134. type: Method
  135. assemblies:
  136. - Terminal.Gui
  137. namespace: Terminal.Gui
  138. summary: Grabs the mouse, forcing all mouse events to be routed to the specified view until UngrabMouse is called.
  139. syntax:
  140. content: public static void GrabMouse (Terminal.Gui.View view);
  141. parameters:
  142. - id: view
  143. type: Terminal.Gui.View
  144. description: View that will receive all mouse events until UngrabMouse is invoked.
  145. overload: Terminal.Gui.Application.GrabMouse*
  146. exceptions: []
  147. - uid: Terminal.Gui.Application.Init
  148. id: Init
  149. parent: Terminal.Gui.Application
  150. langs:
  151. - csharp
  152. name: Init()
  153. nameWithType: Application.Init()
  154. fullName: Application.Init()
  155. type: Method
  156. assemblies:
  157. - Terminal.Gui
  158. namespace: Terminal.Gui
  159. summary: Initializes the Application
  160. syntax:
  161. content: public static void Init ();
  162. parameters: []
  163. overload: Terminal.Gui.Application.Init*
  164. exceptions: []
  165. - uid: Terminal.Gui.Application.Iteration
  166. id: Iteration
  167. parent: Terminal.Gui.Application
  168. langs:
  169. - csharp
  170. name: Iteration
  171. nameWithType: Application.Iteration
  172. fullName: Application.Iteration
  173. type: Event
  174. assemblies:
  175. - Terminal.Gui
  176. namespace: Terminal.Gui
  177. summary: >-
  178. This event is raised on each iteration of the
  179. main loop.
  180. remarks: See also <xref href="System.Threading.Timeout"></xref>
  181. syntax:
  182. content: public static event EventHandler Iteration;
  183. return:
  184. type: System.EventHandler
  185. description: To be added.
  186. exceptions: []
  187. - uid: Terminal.Gui.Application.MainLoop
  188. id: MainLoop
  189. parent: Terminal.Gui.Application
  190. langs:
  191. - csharp
  192. name: MainLoop
  193. nameWithType: Application.MainLoop
  194. fullName: Application.MainLoop
  195. type: Property
  196. assemblies:
  197. - Terminal.Gui
  198. namespace: Terminal.Gui
  199. summary: The mainloop driver for the applicaiton
  200. syntax:
  201. content: public static Mono.Terminal.MainLoop MainLoop { get; }
  202. return:
  203. type: Mono.Terminal.MainLoop
  204. description: The main loop.
  205. overload: Terminal.Gui.Application.MainLoop*
  206. exceptions: []
  207. - uid: Terminal.Gui.Application.MakeCenteredRect(Terminal.Gui.Size)
  208. id: MakeCenteredRect(Terminal.Gui.Size)
  209. parent: Terminal.Gui.Application
  210. langs:
  211. - csharp
  212. name: MakeCenteredRect(Size)
  213. nameWithType: Application.MakeCenteredRect(Size)
  214. fullName: Application.MakeCenteredRect(Size)
  215. type: Method
  216. assemblies:
  217. - Terminal.Gui
  218. namespace: Terminal.Gui
  219. summary: Returns a rectangle that is centered in the screen for the provided size.
  220. syntax:
  221. content: public static Terminal.Gui.Rect MakeCenteredRect (Terminal.Gui.Size size);
  222. parameters:
  223. - id: size
  224. type: Terminal.Gui.Size
  225. description: Size for the rectangle.
  226. return:
  227. type: Terminal.Gui.Rect
  228. description: The centered rect.
  229. overload: Terminal.Gui.Application.MakeCenteredRect*
  230. exceptions: []
  231. - uid: Terminal.Gui.Application.Refresh
  232. id: Refresh
  233. parent: Terminal.Gui.Application
  234. langs:
  235. - csharp
  236. name: Refresh()
  237. nameWithType: Application.Refresh()
  238. fullName: Application.Refresh()
  239. type: Method
  240. assemblies:
  241. - Terminal.Gui
  242. namespace: Terminal.Gui
  243. summary: Triggers a refresh of the entire display.
  244. syntax:
  245. content: public static void Refresh ();
  246. parameters: []
  247. overload: Terminal.Gui.Application.Refresh*
  248. exceptions: []
  249. - uid: Terminal.Gui.Application.RequestStop
  250. id: RequestStop
  251. parent: Terminal.Gui.Application
  252. langs:
  253. - csharp
  254. name: RequestStop()
  255. nameWithType: Application.RequestStop()
  256. fullName: Application.RequestStop()
  257. type: Method
  258. assemblies:
  259. - Terminal.Gui
  260. namespace: Terminal.Gui
  261. summary: Stops running the most recent toplevel
  262. syntax:
  263. content: public static void RequestStop ();
  264. parameters: []
  265. overload: Terminal.Gui.Application.RequestStop*
  266. exceptions: []
  267. - uid: Terminal.Gui.Application.RootMouseEvent
  268. id: RootMouseEvent
  269. parent: Terminal.Gui.Application
  270. langs:
  271. - csharp
  272. name: RootMouseEvent
  273. nameWithType: Application.RootMouseEvent
  274. fullName: Application.RootMouseEvent
  275. type: Field
  276. assemblies:
  277. - Terminal.Gui
  278. namespace: Terminal.Gui
  279. summary: Merely a debugging aid to see the raw mouse events
  280. syntax:
  281. content: public static Action<Terminal.Gui.MouseEvent> RootMouseEvent;
  282. return:
  283. type: System.Action{Terminal.Gui.MouseEvent}
  284. description: To be added.
  285. exceptions: []
  286. - uid: Terminal.Gui.Application.Run
  287. id: Run
  288. parent: Terminal.Gui.Application
  289. langs:
  290. - csharp
  291. name: Run()
  292. nameWithType: Application.Run()
  293. fullName: Application.Run()
  294. type: Method
  295. assemblies:
  296. - Terminal.Gui
  297. namespace: Terminal.Gui
  298. summary: Runs the application with the built-in toplevel view
  299. syntax:
  300. content: public static void Run ();
  301. parameters: []
  302. overload: Terminal.Gui.Application.Run*
  303. exceptions: []
  304. - uid: Terminal.Gui.Application.Run(Terminal.Gui.Toplevel)
  305. id: Run(Terminal.Gui.Toplevel)
  306. parent: Terminal.Gui.Application
  307. langs:
  308. - csharp
  309. name: Run(Toplevel)
  310. nameWithType: Application.Run(Toplevel)
  311. fullName: Application.Run(Toplevel)
  312. type: Method
  313. assemblies:
  314. - Terminal.Gui
  315. namespace: Terminal.Gui
  316. summary: Runs the main loop on the given container.
  317. remarks: "<p>\n This method is used to start processing events\n for the main application, but it is also used to\n run modal dialog boxes.\n </p>\n <p>\n To make a toplevel stop execution, set the \"Running\"\n property to false.\n </p>\n <p>\n This is equivalent to calling Begin on the toplevel view, followed by RunLoop with the\n returned value, and then calling end on the return value.\n </p>\n <p>\n Alternatively, if your program needs to control the main loop and needs to \n process events manually, you can invoke Begin to set things up manually and then\n repeatedly call RunLoop with the wait parameter set to false. By doing this\n the RunLoop method will only process any pending events, timers, idle handlers and\n then return control immediately.\n </p>"
  318. syntax:
  319. content: public static void Run (Terminal.Gui.Toplevel view);
  320. parameters:
  321. - id: view
  322. type: Terminal.Gui.Toplevel
  323. description: To be added.
  324. overload: Terminal.Gui.Application.Run*
  325. exceptions: []
  326. - uid: Terminal.Gui.Application.RunLoop(Terminal.Gui.Application.RunState,System.Boolean)
  327. id: RunLoop(Terminal.Gui.Application.RunState,System.Boolean)
  328. parent: Terminal.Gui.Application
  329. langs:
  330. - csharp
  331. name: RunLoop(Application+RunState, Boolean)
  332. nameWithType: Application.RunLoop(Application+RunState, Boolean)
  333. fullName: Application.RunLoop(Application+RunState, Boolean)
  334. type: Method
  335. assemblies:
  336. - Terminal.Gui
  337. namespace: Terminal.Gui
  338. summary: 'Building block API: Runs the main loop for the created dialog'
  339. remarks: >-
  340. Use the wait parameter to control whether this is a
  341. blocking or non-blocking call.
  342. syntax:
  343. content: public static void RunLoop (Terminal.Gui.Application.RunState state, bool wait = true);
  344. parameters:
  345. - id: state
  346. type: Terminal.Gui.Application+RunState
  347. description: The state returned by the Begin method.
  348. - id: wait
  349. type: System.Boolean
  350. description: By default this is true which will execute the runloop waiting for events, if you pass false, you can use this method to run a single iteration of the events.
  351. overload: Terminal.Gui.Application.RunLoop*
  352. exceptions: []
  353. - uid: Terminal.Gui.Application.Top
  354. id: Top
  355. parent: Terminal.Gui.Application
  356. langs:
  357. - csharp
  358. name: Top
  359. nameWithType: Application.Top
  360. fullName: Application.Top
  361. type: Property
  362. assemblies:
  363. - Terminal.Gui
  364. namespace: Terminal.Gui
  365. summary: The Toplevel object used for the application on startup.
  366. syntax:
  367. content: public static Terminal.Gui.Toplevel Top { get; }
  368. return:
  369. type: Terminal.Gui.Toplevel
  370. description: The top.
  371. overload: Terminal.Gui.Application.Top*
  372. exceptions: []
  373. - uid: Terminal.Gui.Application.UngrabMouse
  374. id: UngrabMouse
  375. parent: Terminal.Gui.Application
  376. langs:
  377. - csharp
  378. name: UngrabMouse()
  379. nameWithType: Application.UngrabMouse()
  380. fullName: Application.UngrabMouse()
  381. type: Method
  382. assemblies:
  383. - Terminal.Gui
  384. namespace: Terminal.Gui
  385. summary: Releases the mouse grab, so mouse events will be routed to the view on which the mouse is.
  386. syntax:
  387. content: public static void UngrabMouse ();
  388. parameters: []
  389. overload: Terminal.Gui.Application.UngrabMouse*
  390. exceptions: []
  391. - uid: Terminal.Gui.Application.UseSystemConsole
  392. id: UseSystemConsole
  393. parent: Terminal.Gui.Application
  394. langs:
  395. - csharp
  396. name: UseSystemConsole
  397. nameWithType: Application.UseSystemConsole
  398. fullName: Application.UseSystemConsole
  399. type: Field
  400. assemblies:
  401. - Terminal.Gui
  402. namespace: Terminal.Gui
  403. summary: If set, it forces the use of the System.Console-based driver.
  404. syntax:
  405. content: public static bool UseSystemConsole;
  406. return:
  407. type: System.Boolean
  408. description: To be added.
  409. exceptions: []
  410. references:
  411. - uid: System.Object
  412. parent: System
  413. isExternal: true
  414. name: Object
  415. nameWithType: Object
  416. fullName: System.Object
  417. - uid: Terminal.Gui.Application.Begin(Terminal.Gui.Toplevel)
  418. parent: Terminal.Gui.Application
  419. isExternal: false
  420. name: Begin(Toplevel)
  421. nameWithType: Application.Begin(Toplevel)
  422. fullName: Application.Begin(Toplevel)
  423. - uid: Terminal.Gui.Application
  424. parent: Terminal.Gui
  425. isExternal: false
  426. name: Application
  427. nameWithType: Application
  428. fullName: Terminal.Gui.Application+RunState
  429. - uid: Terminal.Gui.Toplevel
  430. parent: Terminal.Gui
  431. isExternal: false
  432. name: Toplevel
  433. nameWithType: Toplevel
  434. fullName: Terminal.Gui.Toplevel
  435. - uid: Terminal.Gui.Application.Current
  436. parent: Terminal.Gui.Application
  437. isExternal: false
  438. name: Current
  439. nameWithType: Application.Current
  440. fullName: Application.Current
  441. - uid: Terminal.Gui.Application.Driver
  442. parent: Terminal.Gui.Application
  443. isExternal: false
  444. name: Driver
  445. nameWithType: Application.Driver
  446. fullName: Application.Driver
  447. - uid: Terminal.Gui.ConsoleDriver
  448. parent: Terminal.Gui
  449. isExternal: false
  450. name: ConsoleDriver
  451. nameWithType: ConsoleDriver
  452. fullName: Terminal.Gui.ConsoleDriver
  453. - uid: Terminal.Gui.Application.End(Terminal.Gui.Application.RunState)
  454. parent: Terminal.Gui.Application
  455. isExternal: false
  456. name: End(Application+RunState)
  457. nameWithType: Application.End(Application+RunState)
  458. fullName: Application.End(Application+RunState)
  459. - uid: Terminal.Gui.Application.GrabMouse(Terminal.Gui.View)
  460. parent: Terminal.Gui.Application
  461. isExternal: false
  462. name: GrabMouse(View)
  463. nameWithType: Application.GrabMouse(View)
  464. fullName: Application.GrabMouse(View)
  465. - uid: Terminal.Gui.View
  466. parent: Terminal.Gui
  467. isExternal: false
  468. name: View
  469. nameWithType: View
  470. fullName: Terminal.Gui.View
  471. - uid: Terminal.Gui.Application.Init
  472. parent: Terminal.Gui.Application
  473. isExternal: false
  474. name: Init()
  475. nameWithType: Application.Init()
  476. fullName: Application.Init()
  477. - uid: Terminal.Gui.Application.Iteration
  478. parent: Terminal.Gui.Application
  479. isExternal: false
  480. name: Iteration
  481. nameWithType: Application.Iteration
  482. fullName: Application.Iteration
  483. - uid: System.EventHandler
  484. parent: System
  485. isExternal: true
  486. name: EventHandler
  487. nameWithType: EventHandler
  488. fullName: System.EventHandler
  489. - uid: Terminal.Gui.Application.MainLoop
  490. parent: Terminal.Gui.Application
  491. isExternal: false
  492. name: MainLoop
  493. nameWithType: Application.MainLoop
  494. fullName: Application.MainLoop
  495. - uid: Mono.Terminal.MainLoop
  496. parent: Mono.Terminal
  497. isExternal: false
  498. name: MainLoop
  499. nameWithType: MainLoop
  500. fullName: Mono.Terminal.MainLoop
  501. - uid: Terminal.Gui.Application.MakeCenteredRect(Terminal.Gui.Size)
  502. parent: Terminal.Gui.Application
  503. isExternal: false
  504. name: MakeCenteredRect(Size)
  505. nameWithType: Application.MakeCenteredRect(Size)
  506. fullName: Application.MakeCenteredRect(Size)
  507. - uid: Terminal.Gui.Rect
  508. parent: Terminal.Gui
  509. isExternal: false
  510. name: Rect
  511. nameWithType: Rect
  512. fullName: Terminal.Gui.Rect
  513. - uid: Terminal.Gui.Size
  514. parent: Terminal.Gui
  515. isExternal: false
  516. name: Size
  517. nameWithType: Size
  518. fullName: Terminal.Gui.Size
  519. - uid: Terminal.Gui.Application.Refresh
  520. parent: Terminal.Gui.Application
  521. isExternal: false
  522. name: Refresh()
  523. nameWithType: Application.Refresh()
  524. fullName: Application.Refresh()
  525. - uid: Terminal.Gui.Application.RequestStop
  526. parent: Terminal.Gui.Application
  527. isExternal: false
  528. name: RequestStop()
  529. nameWithType: Application.RequestStop()
  530. fullName: Application.RequestStop()
  531. - uid: Terminal.Gui.Application.RootMouseEvent
  532. parent: Terminal.Gui.Application
  533. isExternal: false
  534. name: RootMouseEvent
  535. nameWithType: Application.RootMouseEvent
  536. fullName: Application.RootMouseEvent
  537. - uid: System.Action`1
  538. name: Action
  539. nameWithType: Action
  540. fullName: System.Action
  541. - uid: Terminal.Gui.MouseEvent
  542. name: MouseEvent
  543. nameWithType: MouseEvent
  544. fullName: Terminal.Gui.MouseEvent
  545. - uid: System.Action{Terminal.Gui.MouseEvent}
  546. parent: System
  547. isExternal: true
  548. name: Action<MouseEvent>
  549. nameWithType: Action<MouseEvent>
  550. fullName: System.Action<Terminal.Gui.MouseEvent>
  551. spec.csharp:
  552. - uid: System.Action`1
  553. name: Action
  554. nameWithType: Action
  555. fullName: System.Action
  556. - name: <
  557. nameWithType: <
  558. fullName: <
  559. - uid: Terminal.Gui.MouseEvent
  560. name: MouseEvent
  561. nameWithType: MouseEvent
  562. fullName: Terminal.Gui.MouseEvent
  563. - name: '>'
  564. nameWithType: '>'
  565. fullName: '>'
  566. - uid: Terminal.Gui.Application.Run
  567. parent: Terminal.Gui.Application
  568. isExternal: false
  569. name: Run()
  570. nameWithType: Application.Run()
  571. fullName: Application.Run()
  572. - uid: Terminal.Gui.Application.Run(Terminal.Gui.Toplevel)
  573. parent: Terminal.Gui.Application
  574. isExternal: false
  575. name: Run(Toplevel)
  576. nameWithType: Application.Run(Toplevel)
  577. fullName: Application.Run(Toplevel)
  578. - uid: Terminal.Gui.Application.RunLoop(Terminal.Gui.Application.RunState,System.Boolean)
  579. parent: Terminal.Gui.Application
  580. isExternal: false
  581. name: RunLoop(Application+RunState, Boolean)
  582. nameWithType: Application.RunLoop(Application+RunState, Boolean)
  583. fullName: Application.RunLoop(Application+RunState, Boolean)
  584. - uid: System.Boolean
  585. parent: System
  586. isExternal: true
  587. name: Boolean
  588. nameWithType: Boolean
  589. fullName: System.Boolean
  590. - uid: Terminal.Gui.Application.Top
  591. parent: Terminal.Gui.Application
  592. isExternal: false
  593. name: Top
  594. nameWithType: Application.Top
  595. fullName: Application.Top
  596. - uid: Terminal.Gui.Application.UngrabMouse
  597. parent: Terminal.Gui.Application
  598. isExternal: false
  599. name: UngrabMouse()
  600. nameWithType: Application.UngrabMouse()
  601. fullName: Application.UngrabMouse()
  602. - uid: Terminal.Gui.Application.UseSystemConsole
  603. parent: Terminal.Gui.Application
  604. isExternal: false
  605. name: UseSystemConsole
  606. nameWithType: Application.UseSystemConsole
  607. fullName: Application.UseSystemConsole
  608. - uid: Terminal.Gui.Application.Begin*
  609. parent: Terminal.Gui.Application
  610. isExternal: false
  611. name: Begin
  612. nameWithType: Application.Begin
  613. fullName: Application.Begin
  614. - uid: Terminal.Gui.Application.Current*
  615. parent: Terminal.Gui.Application
  616. isExternal: false
  617. name: Current
  618. nameWithType: Application.Current
  619. fullName: Application.Current
  620. - uid: Terminal.Gui.Application.End*
  621. parent: Terminal.Gui.Application
  622. isExternal: false
  623. name: End
  624. nameWithType: Application.End
  625. fullName: Application.End
  626. - uid: Terminal.Gui.Application.GrabMouse*
  627. parent: Terminal.Gui.Application
  628. isExternal: false
  629. name: GrabMouse
  630. nameWithType: Application.GrabMouse
  631. fullName: Application.GrabMouse
  632. - uid: Terminal.Gui.Application.Init*
  633. parent: Terminal.Gui.Application
  634. isExternal: false
  635. name: Init
  636. nameWithType: Application.Init
  637. fullName: Application.Init
  638. - uid: Terminal.Gui.Application.MainLoop*
  639. parent: Terminal.Gui.Application
  640. isExternal: false
  641. name: MainLoop
  642. nameWithType: Application.MainLoop
  643. fullName: Application.MainLoop
  644. - uid: Terminal.Gui.Application.MakeCenteredRect*
  645. parent: Terminal.Gui.Application
  646. isExternal: false
  647. name: MakeCenteredRect
  648. nameWithType: Application.MakeCenteredRect
  649. fullName: Application.MakeCenteredRect
  650. - uid: Terminal.Gui.Application.Refresh*
  651. parent: Terminal.Gui.Application
  652. isExternal: false
  653. name: Refresh
  654. nameWithType: Application.Refresh
  655. fullName: Application.Refresh
  656. - uid: Terminal.Gui.Application.RequestStop*
  657. parent: Terminal.Gui.Application
  658. isExternal: false
  659. name: RequestStop
  660. nameWithType: Application.RequestStop
  661. fullName: Application.RequestStop
  662. - uid: Terminal.Gui.Application.Run*
  663. parent: Terminal.Gui.Application
  664. isExternal: false
  665. name: Run
  666. nameWithType: Application.Run
  667. fullName: Application.Run
  668. - uid: Terminal.Gui.Application.RunLoop*
  669. parent: Terminal.Gui.Application
  670. isExternal: false
  671. name: RunLoop
  672. nameWithType: Application.RunLoop
  673. fullName: Application.RunLoop
  674. - uid: Terminal.Gui.Application.Top*
  675. parent: Terminal.Gui.Application
  676. isExternal: false
  677. name: Top
  678. nameWithType: Application.Top
  679. fullName: Application.Top
  680. - uid: Terminal.Gui.Application.UngrabMouse*
  681. parent: Terminal.Gui.Application
  682. isExternal: false
  683. name: UngrabMouse
  684. nameWithType: Application.UngrabMouse
  685. fullName: Application.UngrabMouse