Terminal.Gui.Application.yml 23 KB

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