Terminal.Gui.Dialog.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.Dialog
  4. id: Dialog
  5. children:
  6. - Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
  7. - Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  8. - Terminal.Gui.Dialog.LayoutSubviews
  9. - Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  10. langs:
  11. - csharp
  12. name: Dialog
  13. nameWithType: Dialog
  14. fullName: Terminal.Gui.Dialog
  15. type: Class
  16. assemblies:
  17. - Terminal.Gui
  18. namespace: Terminal.Gui
  19. summary: "The dialog box is a window that by default is centered and contains one \n or more buttons. It defaults to the Colors.Dialog color scheme and has a\n 1 cell padding around the edges."
  20. remarks: >-
  21. To run the dialog modally, create the Dialog, and pass this to Application.Run which
  22. will execute the dialog until it terminates via the [ESC] key, or when one of the views
  23. or buttons added to the dialog set the Running property on the Dialog to false.
  24. syntax:
  25. content: 'public class Dialog : Terminal.Gui.Window'
  26. inheritance:
  27. - System.Object
  28. - Terminal.Gui.Responder
  29. - Terminal.Gui.View
  30. - Terminal.Gui.Toplevel
  31. - Terminal.Gui.Window
  32. derivedClasses:
  33. - Terminal.Gui.FileDialog
  34. implements: []
  35. inheritedMembers:
  36. - Terminal.Gui.Toplevel.CanFocus
  37. - Terminal.Gui.Toplevel.Create
  38. - Terminal.Gui.Toplevel.Running
  39. - Terminal.Gui.Toplevel.WillPresent
  40. - Terminal.Gui.View.Add(Terminal.Gui.View[])
  41. - Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  42. - Terminal.Gui.View.Bounds
  43. - Terminal.Gui.View.ChildNeedsDisplay
  44. - Terminal.Gui.View.Clear
  45. - Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  46. - Terminal.Gui.View.ClearNeedsDisplay
  47. - Terminal.Gui.View.ClipToBounds
  48. - Terminal.Gui.View.ColorScheme
  49. - Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  50. - Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  51. - Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  52. - Terminal.Gui.View.Driver
  53. - Terminal.Gui.View.EnsureFocus
  54. - Terminal.Gui.View.Focused
  55. - Terminal.Gui.View.FocusFirst
  56. - Terminal.Gui.View.FocusLast
  57. - Terminal.Gui.View.FocusNext
  58. - Terminal.Gui.View.FocusPrev
  59. - Terminal.Gui.View.Frame
  60. - Terminal.Gui.View.HasFocus
  61. - Terminal.Gui.View.Height
  62. - Terminal.Gui.View.Id
  63. - Terminal.Gui.View.LayoutStyle
  64. - Terminal.Gui.View.MostFocused
  65. - Terminal.Gui.View.Move(System.Int32,System.Int32)
  66. - Terminal.Gui.View.PositionCursor
  67. - Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  68. - Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  69. - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  70. - Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  71. - Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  72. - Terminal.Gui.View.SetNeedsDisplay
  73. - Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  74. - Terminal.Gui.View.Subviews
  75. - Terminal.Gui.View.SuperView
  76. - Terminal.Gui.View.ToString
  77. - Terminal.Gui.View.WantMousePositionReports
  78. - Terminal.Gui.View.Width
  79. - Terminal.Gui.View.X
  80. - Terminal.Gui.View.Y
  81. - Terminal.Gui.Window.Add(Terminal.Gui.View)
  82. - Terminal.Gui.Window.GetEnumerator
  83. - Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  84. - Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  85. - Terminal.Gui.Window.Remove(Terminal.Gui.View)
  86. - Terminal.Gui.Window.RemoveAll
  87. - Terminal.Gui.Window.Title
  88. - uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
  89. id: '#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])'
  90. parent: Terminal.Gui.Dialog
  91. langs:
  92. - csharp
  93. name: Dialog(ustring, Int32, Int32, Button[])
  94. nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[])
  95. fullName: Dialog.Dialog(ustring, Int32, Int32, Button[])
  96. type: Constructor
  97. assemblies:
  98. - Terminal.Gui
  99. namespace: Terminal.Gui
  100. summary: Initializes a new instance of the <xref href="Terminal.Gui.Dialog"></xref> class with an optional set of buttons to display
  101. syntax:
  102. content: public Dialog (NStack.ustring title, int width, int height, Terminal.Gui.Button[] buttons);
  103. parameters:
  104. - id: title
  105. type: NStack.ustring
  106. description: Title for the dialog.
  107. - id: width
  108. type: System.Int32
  109. description: Width for the dialog.
  110. - id: height
  111. type: System.Int32
  112. description: Height for the dialog.
  113. - id: buttons
  114. type: Terminal.Gui.Button[]
  115. description: Optional buttons to lay out at the bottom of the dialog.
  116. overload: Terminal.Gui.Dialog.#ctor*
  117. exceptions: []
  118. - uid: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  119. id: AddButton(Terminal.Gui.Button)
  120. parent: Terminal.Gui.Dialog
  121. langs:
  122. - csharp
  123. name: AddButton(Button)
  124. nameWithType: Dialog.AddButton(Button)
  125. fullName: Dialog.AddButton(Button)
  126. type: Method
  127. assemblies:
  128. - Terminal.Gui
  129. namespace: Terminal.Gui
  130. summary: Adds a button to the dialog, its layout will be controled by the dialog
  131. syntax:
  132. content: public void AddButton (Terminal.Gui.Button button);
  133. parameters:
  134. - id: button
  135. type: Terminal.Gui.Button
  136. description: Button to add.
  137. overload: Terminal.Gui.Dialog.AddButton*
  138. exceptions: []
  139. - uid: Terminal.Gui.Dialog.LayoutSubviews
  140. id: LayoutSubviews
  141. parent: Terminal.Gui.Dialog
  142. langs:
  143. - csharp
  144. name: LayoutSubviews()
  145. nameWithType: Dialog.LayoutSubviews()
  146. fullName: Dialog.LayoutSubviews()
  147. type: Method
  148. assemblies:
  149. - Terminal.Gui
  150. namespace: Terminal.Gui
  151. syntax:
  152. content: public override void LayoutSubviews ();
  153. parameters: []
  154. overload: Terminal.Gui.Dialog.LayoutSubviews*
  155. exceptions: []
  156. - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  157. id: ProcessKey(Terminal.Gui.KeyEvent)
  158. parent: Terminal.Gui.Dialog
  159. langs:
  160. - csharp
  161. name: ProcessKey(KeyEvent)
  162. nameWithType: Dialog.ProcessKey(KeyEvent)
  163. fullName: Dialog.ProcessKey(KeyEvent)
  164. type: Method
  165. assemblies:
  166. - Terminal.Gui
  167. namespace: Terminal.Gui
  168. syntax:
  169. content: public override bool ProcessKey (Terminal.Gui.KeyEvent kb);
  170. parameters:
  171. - id: kb
  172. type: Terminal.Gui.KeyEvent
  173. description: To be added.
  174. return:
  175. type: System.Boolean
  176. description: To be added.
  177. overload: Terminal.Gui.Dialog.ProcessKey*
  178. exceptions: []
  179. references:
  180. - uid: Terminal.Gui.Window
  181. parent: Terminal.Gui
  182. isExternal: false
  183. name: Window
  184. nameWithType: Window
  185. fullName: Terminal.Gui.Window
  186. - uid: Terminal.Gui.Dialog.#ctor(NStack.ustring,System.Int32,System.Int32,Terminal.Gui.Button[])
  187. parent: Terminal.Gui.Dialog
  188. isExternal: false
  189. name: Dialog(ustring, Int32, Int32, Button[])
  190. nameWithType: Dialog.Dialog(ustring, Int32, Int32, Button[])
  191. fullName: Dialog.Dialog(ustring, Int32, Int32, Button[])
  192. - uid: NStack.ustring
  193. parent: NStack
  194. isExternal: true
  195. name: ustring
  196. nameWithType: ustring
  197. fullName: NStack.ustring
  198. - uid: System.Int32
  199. parent: System
  200. isExternal: true
  201. name: Int32
  202. nameWithType: Int32
  203. fullName: System.Int32
  204. - uid: Terminal.Gui.Button
  205. name: Button
  206. nameWithType: Button
  207. fullName: Terminal.Gui.Button
  208. - uid: Terminal.Gui.Button[]
  209. parent: Terminal.Gui
  210. isExternal: false
  211. name: Button[]
  212. nameWithType: Button[]
  213. fullName: Terminal.Gui.Button[]
  214. spec.csharp:
  215. - uid: Terminal.Gui.Button
  216. name: Button
  217. nameWithType: Button
  218. fullName: Terminal.Gui.Button
  219. - name: '[]'
  220. nameWithType: '[]'
  221. fullName: '[]'
  222. - uid: Terminal.Gui.Dialog.AddButton(Terminal.Gui.Button)
  223. parent: Terminal.Gui.Dialog
  224. isExternal: false
  225. name: AddButton(Button)
  226. nameWithType: Dialog.AddButton(Button)
  227. fullName: Dialog.AddButton(Button)
  228. - uid: Terminal.Gui.Dialog.LayoutSubviews
  229. parent: Terminal.Gui.Dialog
  230. isExternal: false
  231. name: LayoutSubviews()
  232. nameWithType: Dialog.LayoutSubviews()
  233. fullName: Dialog.LayoutSubviews()
  234. - uid: Terminal.Gui.Dialog.ProcessKey(Terminal.Gui.KeyEvent)
  235. parent: Terminal.Gui.Dialog
  236. isExternal: false
  237. name: ProcessKey(KeyEvent)
  238. nameWithType: Dialog.ProcessKey(KeyEvent)
  239. fullName: Dialog.ProcessKey(KeyEvent)
  240. - uid: System.Boolean
  241. parent: System
  242. isExternal: true
  243. name: Boolean
  244. nameWithType: Boolean
  245. fullName: System.Boolean
  246. - uid: Terminal.Gui.KeyEvent
  247. parent: Terminal.Gui
  248. isExternal: false
  249. name: KeyEvent
  250. nameWithType: KeyEvent
  251. fullName: Terminal.Gui.KeyEvent
  252. - uid: Terminal.Gui.Dialog.#ctor*
  253. parent: Terminal.Gui.Dialog
  254. isExternal: false
  255. name: Dialog
  256. nameWithType: Dialog.Dialog
  257. fullName: Dialog.Dialog
  258. - uid: Terminal.Gui.Dialog.AddButton*
  259. parent: Terminal.Gui.Dialog
  260. isExternal: false
  261. name: AddButton
  262. nameWithType: Dialog.AddButton
  263. fullName: Dialog.AddButton
  264. - uid: Terminal.Gui.Dialog.LayoutSubviews*
  265. parent: Terminal.Gui.Dialog
  266. isExternal: false
  267. name: LayoutSubviews
  268. nameWithType: Dialog.LayoutSubviews
  269. fullName: Dialog.LayoutSubviews
  270. - uid: Terminal.Gui.Dialog.ProcessKey*
  271. parent: Terminal.Gui.Dialog
  272. isExternal: false
  273. name: ProcessKey
  274. nameWithType: Dialog.ProcessKey
  275. fullName: Dialog.ProcessKey
  276. - uid: Terminal.Gui.Toplevel.CanFocus
  277. parent: Terminal.Gui.Toplevel
  278. isExternal: false
  279. name: CanFocus
  280. nameWithType: Toplevel.CanFocus
  281. fullName: Toplevel.CanFocus
  282. - uid: Terminal.Gui.View.HasFocus
  283. parent: Terminal.Gui.View
  284. isExternal: false
  285. name: HasFocus
  286. nameWithType: View.HasFocus
  287. fullName: View.HasFocus
  288. - uid: Terminal.Gui.Window.MouseEvent(Terminal.Gui.MouseEvent)
  289. parent: Terminal.Gui.Window
  290. isExternal: false
  291. name: MouseEvent(MouseEvent)
  292. nameWithType: Window.MouseEvent(MouseEvent)
  293. fullName: Window.MouseEvent(MouseEvent)
  294. - uid: Terminal.Gui.View.ProcessColdKey(Terminal.Gui.KeyEvent)
  295. parent: Terminal.Gui.View
  296. isExternal: false
  297. name: ProcessColdKey(KeyEvent)
  298. nameWithType: View.ProcessColdKey(KeyEvent)
  299. fullName: View.ProcessColdKey(KeyEvent)
  300. - uid: Terminal.Gui.View.ProcessHotKey(Terminal.Gui.KeyEvent)
  301. parent: Terminal.Gui.View
  302. isExternal: false
  303. name: ProcessHotKey(KeyEvent)
  304. nameWithType: View.ProcessHotKey(KeyEvent)
  305. fullName: View.ProcessHotKey(KeyEvent)
  306. - uid: Terminal.Gui.Window.Add(Terminal.Gui.View)
  307. parent: Terminal.Gui.Window
  308. isExternal: false
  309. name: Add(View)
  310. nameWithType: Window.Add(View)
  311. fullName: Window.Add(View)
  312. - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
  313. parent: Terminal.Gui.View
  314. isExternal: false
  315. name: Add(View[])
  316. nameWithType: View.Add(View[])
  317. fullName: View.Add(View[])
  318. - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  319. parent: Terminal.Gui.View
  320. isExternal: false
  321. name: AddRune(Int32, Int32, Rune)
  322. nameWithType: View.AddRune(Int32, Int32, Rune)
  323. fullName: View.AddRune(Int32, Int32, Rune)
  324. - uid: Terminal.Gui.View.Bounds
  325. parent: Terminal.Gui.View
  326. isExternal: false
  327. name: Bounds
  328. nameWithType: View.Bounds
  329. fullName: View.Bounds
  330. - uid: Terminal.Gui.View.ChildNeedsDisplay
  331. parent: Terminal.Gui.View
  332. isExternal: false
  333. name: ChildNeedsDisplay()
  334. nameWithType: View.ChildNeedsDisplay()
  335. fullName: View.ChildNeedsDisplay()
  336. - uid: Terminal.Gui.View.Clear
  337. parent: Terminal.Gui.View
  338. isExternal: false
  339. name: Clear()
  340. nameWithType: View.Clear()
  341. fullName: View.Clear()
  342. - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  343. parent: Terminal.Gui.View
  344. isExternal: false
  345. name: Clear(Rect)
  346. nameWithType: View.Clear(Rect)
  347. fullName: View.Clear(Rect)
  348. - uid: Terminal.Gui.View.ClearNeedsDisplay
  349. parent: Terminal.Gui.View
  350. isExternal: false
  351. name: ClearNeedsDisplay()
  352. nameWithType: View.ClearNeedsDisplay()
  353. fullName: View.ClearNeedsDisplay()
  354. - uid: Terminal.Gui.View.ClipToBounds
  355. parent: Terminal.Gui.View
  356. isExternal: false
  357. name: ClipToBounds()
  358. nameWithType: View.ClipToBounds()
  359. fullName: View.ClipToBounds()
  360. - uid: Terminal.Gui.View.ColorScheme
  361. parent: Terminal.Gui.View
  362. isExternal: false
  363. name: ColorScheme
  364. nameWithType: View.ColorScheme
  365. fullName: View.ColorScheme
  366. - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  367. parent: Terminal.Gui.View
  368. isExternal: false
  369. name: DrawFrame(Rect, Int32, Boolean)
  370. nameWithType: View.DrawFrame(Rect, Int32, Boolean)
  371. fullName: View.DrawFrame(Rect, Int32, Boolean)
  372. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  373. parent: Terminal.Gui.View
  374. isExternal: false
  375. name: DrawHotString(ustring, Boolean, ColorScheme)
  376. nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme)
  377. fullName: View.DrawHotString(ustring, Boolean, ColorScheme)
  378. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  379. parent: Terminal.Gui.View
  380. isExternal: false
  381. name: DrawHotString(ustring, Attribute, Attribute)
  382. nameWithType: View.DrawHotString(ustring, Attribute, Attribute)
  383. fullName: View.DrawHotString(ustring, Attribute, Attribute)
  384. - uid: Terminal.Gui.View.Driver
  385. parent: Terminal.Gui.View
  386. isExternal: false
  387. name: Driver
  388. nameWithType: View.Driver
  389. fullName: View.Driver
  390. - uid: Terminal.Gui.View.EnsureFocus
  391. parent: Terminal.Gui.View
  392. isExternal: false
  393. name: EnsureFocus()
  394. nameWithType: View.EnsureFocus()
  395. fullName: View.EnsureFocus()
  396. - uid: Terminal.Gui.View.Focused
  397. parent: Terminal.Gui.View
  398. isExternal: false
  399. name: Focused
  400. nameWithType: View.Focused
  401. fullName: View.Focused
  402. - uid: Terminal.Gui.View.FocusFirst
  403. parent: Terminal.Gui.View
  404. isExternal: false
  405. name: FocusFirst()
  406. nameWithType: View.FocusFirst()
  407. fullName: View.FocusFirst()
  408. - uid: Terminal.Gui.View.FocusLast
  409. parent: Terminal.Gui.View
  410. isExternal: false
  411. name: FocusLast()
  412. nameWithType: View.FocusLast()
  413. fullName: View.FocusLast()
  414. - uid: Terminal.Gui.View.FocusNext
  415. parent: Terminal.Gui.View
  416. isExternal: false
  417. name: FocusNext()
  418. nameWithType: View.FocusNext()
  419. fullName: View.FocusNext()
  420. - uid: Terminal.Gui.View.FocusPrev
  421. parent: Terminal.Gui.View
  422. isExternal: false
  423. name: FocusPrev()
  424. nameWithType: View.FocusPrev()
  425. fullName: View.FocusPrev()
  426. - uid: Terminal.Gui.View.Frame
  427. parent: Terminal.Gui.View
  428. isExternal: false
  429. name: Frame
  430. nameWithType: View.Frame
  431. fullName: View.Frame
  432. - uid: Terminal.Gui.Window.GetEnumerator
  433. parent: Terminal.Gui.Window
  434. isExternal: false
  435. name: GetEnumerator()
  436. nameWithType: Window.GetEnumerator()
  437. fullName: Window.GetEnumerator()
  438. - uid: Terminal.Gui.View.Height
  439. parent: Terminal.Gui.View
  440. isExternal: false
  441. name: Height
  442. nameWithType: View.Height
  443. fullName: View.Height
  444. - uid: Terminal.Gui.View.Id
  445. parent: Terminal.Gui.View
  446. isExternal: false
  447. name: Id
  448. nameWithType: View.Id
  449. fullName: View.Id
  450. - uid: Terminal.Gui.View.LayoutStyle
  451. parent: Terminal.Gui.View
  452. isExternal: false
  453. name: LayoutStyle
  454. nameWithType: View.LayoutStyle
  455. fullName: View.LayoutStyle
  456. - uid: Terminal.Gui.View.MostFocused
  457. parent: Terminal.Gui.View
  458. isExternal: false
  459. name: MostFocused
  460. nameWithType: View.MostFocused
  461. fullName: View.MostFocused
  462. - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
  463. parent: Terminal.Gui.View
  464. isExternal: false
  465. name: Move(Int32, Int32)
  466. nameWithType: View.Move(Int32, Int32)
  467. fullName: View.Move(Int32, Int32)
  468. - uid: Terminal.Gui.View.PositionCursor
  469. parent: Terminal.Gui.View
  470. isExternal: false
  471. name: PositionCursor()
  472. nameWithType: View.PositionCursor()
  473. fullName: View.PositionCursor()
  474. - uid: Terminal.Gui.Window.Redraw(Terminal.Gui.Rect)
  475. parent: Terminal.Gui.Window
  476. isExternal: false
  477. name: Redraw(Rect)
  478. nameWithType: Window.Redraw(Rect)
  479. fullName: Window.Redraw(Rect)
  480. - uid: Terminal.Gui.Window.Remove(Terminal.Gui.View)
  481. parent: Terminal.Gui.Window
  482. isExternal: false
  483. name: Remove(View)
  484. nameWithType: Window.Remove(View)
  485. fullName: Window.Remove(View)
  486. - uid: Terminal.Gui.Window.RemoveAll
  487. parent: Terminal.Gui.Window
  488. isExternal: false
  489. name: RemoveAll()
  490. nameWithType: Window.RemoveAll()
  491. fullName: Window.RemoveAll()
  492. - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  493. parent: Terminal.Gui.View
  494. isExternal: false
  495. name: ScreenToView(Int32, Int32)
  496. nameWithType: View.ScreenToView(Int32, Int32)
  497. fullName: View.ScreenToView(Int32, Int32)
  498. - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  499. parent: Terminal.Gui.View
  500. isExternal: false
  501. name: SetClip(Rect)
  502. nameWithType: View.SetClip(Rect)
  503. fullName: View.SetClip(Rect)
  504. - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  505. parent: Terminal.Gui.View
  506. isExternal: false
  507. name: SetFocus(View)
  508. nameWithType: View.SetFocus(View)
  509. fullName: View.SetFocus(View)
  510. - uid: Terminal.Gui.View.SetNeedsDisplay
  511. parent: Terminal.Gui.View
  512. isExternal: false
  513. name: SetNeedsDisplay()
  514. nameWithType: View.SetNeedsDisplay()
  515. fullName: View.SetNeedsDisplay()
  516. - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  517. parent: Terminal.Gui.View
  518. isExternal: false
  519. name: SetNeedsDisplay(Rect)
  520. nameWithType: View.SetNeedsDisplay(Rect)
  521. fullName: View.SetNeedsDisplay(Rect)
  522. - uid: Terminal.Gui.View.Subviews
  523. parent: Terminal.Gui.View
  524. isExternal: false
  525. name: Subviews
  526. nameWithType: View.Subviews
  527. fullName: View.Subviews
  528. - uid: Terminal.Gui.View.SuperView
  529. parent: Terminal.Gui.View
  530. isExternal: false
  531. name: SuperView
  532. nameWithType: View.SuperView
  533. fullName: View.SuperView
  534. - uid: Terminal.Gui.View.ToString
  535. parent: Terminal.Gui.View
  536. isExternal: false
  537. name: ToString()
  538. nameWithType: View.ToString()
  539. fullName: View.ToString()
  540. - uid: Terminal.Gui.View.WantMousePositionReports
  541. parent: Terminal.Gui.View
  542. isExternal: false
  543. name: WantMousePositionReports
  544. nameWithType: View.WantMousePositionReports
  545. fullName: View.WantMousePositionReports
  546. - uid: Terminal.Gui.View.Width
  547. parent: Terminal.Gui.View
  548. isExternal: false
  549. name: Width
  550. nameWithType: View.Width
  551. fullName: View.Width
  552. - uid: Terminal.Gui.View.X
  553. parent: Terminal.Gui.View
  554. isExternal: false
  555. name: X
  556. nameWithType: View.X
  557. fullName: View.X
  558. - uid: Terminal.Gui.View.Y
  559. parent: Terminal.Gui.View
  560. isExternal: false
  561. name: Y
  562. nameWithType: View.Y
  563. fullName: View.Y
  564. - uid: Terminal.Gui.Toplevel.Create
  565. parent: Terminal.Gui.Toplevel
  566. isExternal: false
  567. name: Create()
  568. nameWithType: Toplevel.Create()
  569. fullName: Toplevel.Create()
  570. - uid: Terminal.Gui.Toplevel.Running
  571. parent: Terminal.Gui.Toplevel
  572. isExternal: false
  573. name: Running
  574. nameWithType: Toplevel.Running
  575. fullName: Toplevel.Running
  576. - uid: Terminal.Gui.Toplevel.WillPresent
  577. parent: Terminal.Gui.Toplevel
  578. isExternal: false
  579. name: WillPresent()
  580. nameWithType: Toplevel.WillPresent()
  581. fullName: Toplevel.WillPresent()
  582. - uid: Terminal.Gui.Window.Title
  583. parent: Terminal.Gui.Window
  584. isExternal: false
  585. name: Title
  586. nameWithType: Window.Title
  587. fullName: Window.Title