Terminal.Gui.Button.yml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  1. ### YamlMime:ManagedReference
  2. items:
  3. - uid: Terminal.Gui.Button
  4. id: Button
  5. children:
  6. - Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean)
  7. - Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring)
  8. - Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean)
  9. - Terminal.Gui.Button.Clicked
  10. - Terminal.Gui.Button.IsDefault
  11. - Terminal.Gui.Button.MouseEvent(Terminal.Gui.MouseEvent)
  12. - Terminal.Gui.Button.PositionCursor
  13. - Terminal.Gui.Button.ProcessColdKey(Terminal.Gui.KeyEvent)
  14. - Terminal.Gui.Button.ProcessHotKey(Terminal.Gui.KeyEvent)
  15. - Terminal.Gui.Button.ProcessKey(Terminal.Gui.KeyEvent)
  16. - Terminal.Gui.Button.Redraw(Terminal.Gui.Rect)
  17. - Terminal.Gui.Button.Text
  18. langs:
  19. - csharp
  20. name: Button
  21. nameWithType: Button
  22. fullName: Terminal.Gui.Button
  23. type: Class
  24. assemblies:
  25. - Terminal.Gui
  26. namespace: Terminal.Gui
  27. summary: Button is a view that provides an item that invokes a callback when activated.
  28. remarks: >-
  29. <p>
  30. Provides a button that can be clicked, or pressed with
  31. the enter key and processes hotkeys (the first uppercase
  32. letter in the button becomes the hotkey).
  33. </p>
  34. <p>
  35. If the button is configured as the default (IsDefault) the button
  36. will respond to the return key is no other view processes it, and
  37. turns this into a clicked event.
  38. </p>
  39. syntax:
  40. content: 'public class Button : Terminal.Gui.View'
  41. inheritance:
  42. - System.Object
  43. - Terminal.Gui.Responder
  44. - Terminal.Gui.View
  45. implements: []
  46. inheritedMembers:
  47. - Terminal.Gui.Responder.CanFocus
  48. - Terminal.Gui.View.Add(Terminal.Gui.View)
  49. - Terminal.Gui.View.Add(Terminal.Gui.View[])
  50. - Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  51. - Terminal.Gui.View.Bounds
  52. - Terminal.Gui.View.ChildNeedsDisplay
  53. - Terminal.Gui.View.Clear
  54. - Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  55. - Terminal.Gui.View.ClearNeedsDisplay
  56. - Terminal.Gui.View.ClipToBounds
  57. - Terminal.Gui.View.ColorScheme
  58. - Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  59. - Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  60. - Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  61. - Terminal.Gui.View.Driver
  62. - Terminal.Gui.View.EnsureFocus
  63. - Terminal.Gui.View.Focused
  64. - Terminal.Gui.View.FocusFirst
  65. - Terminal.Gui.View.FocusLast
  66. - Terminal.Gui.View.FocusNext
  67. - Terminal.Gui.View.FocusPrev
  68. - Terminal.Gui.View.Frame
  69. - Terminal.Gui.View.GetEnumerator
  70. - Terminal.Gui.View.HasFocus
  71. - Terminal.Gui.View.Height
  72. - Terminal.Gui.View.Id
  73. - Terminal.Gui.View.LayoutStyle
  74. - Terminal.Gui.View.LayoutSubviews
  75. - Terminal.Gui.View.MostFocused
  76. - Terminal.Gui.View.Move(System.Int32,System.Int32)
  77. - Terminal.Gui.View.Remove(Terminal.Gui.View)
  78. - Terminal.Gui.View.RemoveAll
  79. - Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  80. - Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  81. - Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  82. - Terminal.Gui.View.SetNeedsDisplay
  83. - Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  84. - Terminal.Gui.View.Subviews
  85. - Terminal.Gui.View.SuperView
  86. - Terminal.Gui.View.ToString
  87. - Terminal.Gui.View.WantMousePositionReports
  88. - Terminal.Gui.View.Width
  89. - Terminal.Gui.View.X
  90. - Terminal.Gui.View.Y
  91. - uid: Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean)
  92. id: '#ctor(NStack.ustring,System.Boolean)'
  93. parent: Terminal.Gui.Button
  94. langs:
  95. - csharp
  96. name: Button(ustring, Boolean)
  97. nameWithType: Button.Button(ustring, Boolean)
  98. fullName: Button.Button(ustring, Boolean)
  99. type: Constructor
  100. assemblies:
  101. - Terminal.Gui
  102. namespace: Terminal.Gui
  103. summary: >-
  104. Public constructor, creates a button based on
  105. the given text at position 0,0
  106. remarks: >-
  107. The size of the button is computed based on the
  108. text length. This button is not a default button.
  109. syntax:
  110. content: public Button (NStack.ustring text, bool is_default = false);
  111. parameters:
  112. - id: text
  113. type: NStack.ustring
  114. description: The button's text
  115. - id: is_default
  116. type: System.Boolean
  117. description: If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button
  118. overload: Terminal.Gui.Button.#ctor*
  119. exceptions: []
  120. - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring)
  121. id: '#ctor(System.Int32,System.Int32,NStack.ustring)'
  122. parent: Terminal.Gui.Button
  123. langs:
  124. - csharp
  125. name: Button(Int32, Int32, ustring)
  126. nameWithType: Button.Button(Int32, Int32, ustring)
  127. fullName: Button.Button(Int32, Int32, ustring)
  128. type: Constructor
  129. assemblies:
  130. - Terminal.Gui
  131. namespace: Terminal.Gui
  132. summary: >-
  133. Public constructor, creates a button based on
  134. the given text at the given position.
  135. remarks: >-
  136. The size of the button is computed based on the
  137. text length. This button is not a default button.
  138. syntax:
  139. content: public Button (int x, int y, NStack.ustring text);
  140. parameters:
  141. - id: x
  142. type: System.Int32
  143. description: X position where the button will be shown.
  144. - id: y
  145. type: System.Int32
  146. description: Y position where the button will be shown.
  147. - id: text
  148. type: NStack.ustring
  149. description: The button's text
  150. overload: Terminal.Gui.Button.#ctor*
  151. exceptions: []
  152. - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean)
  153. id: '#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean)'
  154. parent: Terminal.Gui.Button
  155. langs:
  156. - csharp
  157. name: Button(Int32, Int32, ustring, Boolean)
  158. nameWithType: Button.Button(Int32, Int32, ustring, Boolean)
  159. fullName: Button.Button(Int32, Int32, ustring, Boolean)
  160. type: Constructor
  161. assemblies:
  162. - Terminal.Gui
  163. namespace: Terminal.Gui
  164. summary: >-
  165. Public constructor, creates a button based on
  166. the given text at the given position.
  167. remarks: >-
  168. If the value for is_default is true, a special
  169. decoration is used, and the enter key on a
  170. dialog would implicitly activate this button.
  171. syntax:
  172. content: public Button (int x, int y, NStack.ustring text, bool is_default);
  173. parameters:
  174. - id: x
  175. type: System.Int32
  176. description: X position where the button will be shown.
  177. - id: y
  178. type: System.Int32
  179. description: Y position where the button will be shown.
  180. - id: text
  181. type: NStack.ustring
  182. description: The button's text
  183. - id: is_default
  184. type: System.Boolean
  185. description: If set, this makes the button the default button in the current view, which means that if the user presses return on a view that does not handle return, it will be treated as if he had clicked on the button
  186. overload: Terminal.Gui.Button.#ctor*
  187. exceptions: []
  188. - uid: Terminal.Gui.Button.Clicked
  189. id: Clicked
  190. parent: Terminal.Gui.Button
  191. langs:
  192. - csharp
  193. name: Clicked
  194. nameWithType: Button.Clicked
  195. fullName: Button.Clicked
  196. type: Field
  197. assemblies:
  198. - Terminal.Gui
  199. namespace: Terminal.Gui
  200. summary: Clicked event, raised when the button is clicked.
  201. remarks: >-
  202. Client code can hook up to this event, it is
  203. raised when the button is activated either with
  204. the mouse or the keyboard.
  205. syntax:
  206. content: public Action Clicked;
  207. return:
  208. type: System.Action
  209. description: To be added.
  210. exceptions: []
  211. - uid: Terminal.Gui.Button.IsDefault
  212. id: IsDefault
  213. parent: Terminal.Gui.Button
  214. langs:
  215. - csharp
  216. name: IsDefault
  217. nameWithType: Button.IsDefault
  218. fullName: Button.IsDefault
  219. type: Property
  220. assemblies:
  221. - Terminal.Gui
  222. namespace: Terminal.Gui
  223. summary: Gets or sets a value indicating whether this <xref href="Terminal.Gui.Button"></xref> is the default action to activate on return on a dialog.
  224. syntax:
  225. content: public bool IsDefault { get; set; }
  226. return:
  227. type: System.Boolean
  228. description: <code>true</code> if is default; otherwise, <code>false</code>.
  229. overload: Terminal.Gui.Button.IsDefault*
  230. exceptions: []
  231. - uid: Terminal.Gui.Button.MouseEvent(Terminal.Gui.MouseEvent)
  232. id: MouseEvent(Terminal.Gui.MouseEvent)
  233. parent: Terminal.Gui.Button
  234. langs:
  235. - csharp
  236. name: MouseEvent(MouseEvent)
  237. nameWithType: Button.MouseEvent(MouseEvent)
  238. fullName: Button.MouseEvent(MouseEvent)
  239. type: Method
  240. assemblies:
  241. - Terminal.Gui
  242. namespace: Terminal.Gui
  243. syntax:
  244. content: public override bool MouseEvent (Terminal.Gui.MouseEvent me);
  245. parameters:
  246. - id: me
  247. type: Terminal.Gui.MouseEvent
  248. description: To be added.
  249. return:
  250. type: System.Boolean
  251. description: To be added.
  252. overload: Terminal.Gui.Button.MouseEvent*
  253. exceptions: []
  254. - uid: Terminal.Gui.Button.PositionCursor
  255. id: PositionCursor
  256. parent: Terminal.Gui.Button
  257. langs:
  258. - csharp
  259. name: PositionCursor()
  260. nameWithType: Button.PositionCursor()
  261. fullName: Button.PositionCursor()
  262. type: Method
  263. assemblies:
  264. - Terminal.Gui
  265. namespace: Terminal.Gui
  266. syntax:
  267. content: public override void PositionCursor ();
  268. parameters: []
  269. overload: Terminal.Gui.Button.PositionCursor*
  270. exceptions: []
  271. - uid: Terminal.Gui.Button.ProcessColdKey(Terminal.Gui.KeyEvent)
  272. id: ProcessColdKey(Terminal.Gui.KeyEvent)
  273. parent: Terminal.Gui.Button
  274. langs:
  275. - csharp
  276. name: ProcessColdKey(KeyEvent)
  277. nameWithType: Button.ProcessColdKey(KeyEvent)
  278. fullName: Button.ProcessColdKey(KeyEvent)
  279. type: Method
  280. assemblies:
  281. - Terminal.Gui
  282. namespace: Terminal.Gui
  283. syntax:
  284. content: public override bool ProcessColdKey (Terminal.Gui.KeyEvent kb);
  285. parameters:
  286. - id: kb
  287. type: Terminal.Gui.KeyEvent
  288. description: To be added.
  289. return:
  290. type: System.Boolean
  291. description: To be added.
  292. overload: Terminal.Gui.Button.ProcessColdKey*
  293. exceptions: []
  294. - uid: Terminal.Gui.Button.ProcessHotKey(Terminal.Gui.KeyEvent)
  295. id: ProcessHotKey(Terminal.Gui.KeyEvent)
  296. parent: Terminal.Gui.Button
  297. langs:
  298. - csharp
  299. name: ProcessHotKey(KeyEvent)
  300. nameWithType: Button.ProcessHotKey(KeyEvent)
  301. fullName: Button.ProcessHotKey(KeyEvent)
  302. type: Method
  303. assemblies:
  304. - Terminal.Gui
  305. namespace: Terminal.Gui
  306. syntax:
  307. content: public override bool ProcessHotKey (Terminal.Gui.KeyEvent kb);
  308. parameters:
  309. - id: kb
  310. type: Terminal.Gui.KeyEvent
  311. description: To be added.
  312. return:
  313. type: System.Boolean
  314. description: To be added.
  315. overload: Terminal.Gui.Button.ProcessHotKey*
  316. exceptions: []
  317. - uid: Terminal.Gui.Button.ProcessKey(Terminal.Gui.KeyEvent)
  318. id: ProcessKey(Terminal.Gui.KeyEvent)
  319. parent: Terminal.Gui.Button
  320. langs:
  321. - csharp
  322. name: ProcessKey(KeyEvent)
  323. nameWithType: Button.ProcessKey(KeyEvent)
  324. fullName: Button.ProcessKey(KeyEvent)
  325. type: Method
  326. assemblies:
  327. - Terminal.Gui
  328. namespace: Terminal.Gui
  329. syntax:
  330. content: public override bool ProcessKey (Terminal.Gui.KeyEvent kb);
  331. parameters:
  332. - id: kb
  333. type: Terminal.Gui.KeyEvent
  334. description: To be added.
  335. return:
  336. type: System.Boolean
  337. description: To be added.
  338. overload: Terminal.Gui.Button.ProcessKey*
  339. exceptions: []
  340. - uid: Terminal.Gui.Button.Redraw(Terminal.Gui.Rect)
  341. id: Redraw(Terminal.Gui.Rect)
  342. parent: Terminal.Gui.Button
  343. langs:
  344. - csharp
  345. name: Redraw(Rect)
  346. nameWithType: Button.Redraw(Rect)
  347. fullName: Button.Redraw(Rect)
  348. type: Method
  349. assemblies:
  350. - Terminal.Gui
  351. namespace: Terminal.Gui
  352. syntax:
  353. content: public override void Redraw (Terminal.Gui.Rect region);
  354. parameters:
  355. - id: region
  356. type: Terminal.Gui.Rect
  357. description: To be added.
  358. overload: Terminal.Gui.Button.Redraw*
  359. exceptions: []
  360. - uid: Terminal.Gui.Button.Text
  361. id: Text
  362. parent: Terminal.Gui.Button
  363. langs:
  364. - csharp
  365. name: Text
  366. nameWithType: Button.Text
  367. fullName: Button.Text
  368. type: Property
  369. assemblies:
  370. - Terminal.Gui
  371. namespace: Terminal.Gui
  372. summary: The text displayed by this widget.
  373. syntax:
  374. content: public NStack.ustring Text { get; set; }
  375. return:
  376. type: NStack.ustring
  377. description: To be added.
  378. overload: Terminal.Gui.Button.Text*
  379. exceptions: []
  380. references:
  381. - uid: Terminal.Gui.View
  382. parent: Terminal.Gui
  383. isExternal: false
  384. name: View
  385. nameWithType: View
  386. fullName: Terminal.Gui.View
  387. - uid: Terminal.Gui.Button.#ctor(NStack.ustring,System.Boolean)
  388. parent: Terminal.Gui.Button
  389. isExternal: false
  390. name: Button(ustring, Boolean)
  391. nameWithType: Button.Button(ustring, Boolean)
  392. fullName: Button.Button(ustring, Boolean)
  393. - uid: NStack.ustring
  394. parent: NStack
  395. isExternal: true
  396. name: ustring
  397. nameWithType: ustring
  398. fullName: NStack.ustring
  399. - uid: System.Boolean
  400. parent: System
  401. isExternal: true
  402. name: Boolean
  403. nameWithType: Boolean
  404. fullName: System.Boolean
  405. - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring)
  406. parent: Terminal.Gui.Button
  407. isExternal: false
  408. name: Button(Int32, Int32, ustring)
  409. nameWithType: Button.Button(Int32, Int32, ustring)
  410. fullName: Button.Button(Int32, Int32, ustring)
  411. - uid: System.Int32
  412. parent: System
  413. isExternal: true
  414. name: Int32
  415. nameWithType: Int32
  416. fullName: System.Int32
  417. - uid: Terminal.Gui.Button.#ctor(System.Int32,System.Int32,NStack.ustring,System.Boolean)
  418. parent: Terminal.Gui.Button
  419. isExternal: false
  420. name: Button(Int32, Int32, ustring, Boolean)
  421. nameWithType: Button.Button(Int32, Int32, ustring, Boolean)
  422. fullName: Button.Button(Int32, Int32, ustring, Boolean)
  423. - uid: Terminal.Gui.Button.Clicked
  424. parent: Terminal.Gui.Button
  425. isExternal: false
  426. name: Clicked
  427. nameWithType: Button.Clicked
  428. fullName: Button.Clicked
  429. - uid: System.Action
  430. parent: System
  431. isExternal: true
  432. name: Action
  433. nameWithType: Action
  434. fullName: System.Action
  435. - uid: Terminal.Gui.Button.IsDefault
  436. parent: Terminal.Gui.Button
  437. isExternal: false
  438. name: IsDefault
  439. nameWithType: Button.IsDefault
  440. fullName: Button.IsDefault
  441. - uid: Terminal.Gui.Button.MouseEvent(Terminal.Gui.MouseEvent)
  442. parent: Terminal.Gui.Button
  443. isExternal: false
  444. name: MouseEvent(MouseEvent)
  445. nameWithType: Button.MouseEvent(MouseEvent)
  446. fullName: Button.MouseEvent(MouseEvent)
  447. - uid: Terminal.Gui.MouseEvent
  448. parent: Terminal.Gui
  449. isExternal: false
  450. name: MouseEvent
  451. nameWithType: MouseEvent
  452. fullName: Terminal.Gui.MouseEvent
  453. - uid: Terminal.Gui.Button.PositionCursor
  454. parent: Terminal.Gui.Button
  455. isExternal: false
  456. name: PositionCursor()
  457. nameWithType: Button.PositionCursor()
  458. fullName: Button.PositionCursor()
  459. - uid: Terminal.Gui.Button.ProcessColdKey(Terminal.Gui.KeyEvent)
  460. parent: Terminal.Gui.Button
  461. isExternal: false
  462. name: ProcessColdKey(KeyEvent)
  463. nameWithType: Button.ProcessColdKey(KeyEvent)
  464. fullName: Button.ProcessColdKey(KeyEvent)
  465. - uid: Terminal.Gui.KeyEvent
  466. parent: Terminal.Gui
  467. isExternal: false
  468. name: KeyEvent
  469. nameWithType: KeyEvent
  470. fullName: Terminal.Gui.KeyEvent
  471. - uid: Terminal.Gui.Button.ProcessHotKey(Terminal.Gui.KeyEvent)
  472. parent: Terminal.Gui.Button
  473. isExternal: false
  474. name: ProcessHotKey(KeyEvent)
  475. nameWithType: Button.ProcessHotKey(KeyEvent)
  476. fullName: Button.ProcessHotKey(KeyEvent)
  477. - uid: Terminal.Gui.Button.ProcessKey(Terminal.Gui.KeyEvent)
  478. parent: Terminal.Gui.Button
  479. isExternal: false
  480. name: ProcessKey(KeyEvent)
  481. nameWithType: Button.ProcessKey(KeyEvent)
  482. fullName: Button.ProcessKey(KeyEvent)
  483. - uid: Terminal.Gui.Button.Redraw(Terminal.Gui.Rect)
  484. parent: Terminal.Gui.Button
  485. isExternal: false
  486. name: Redraw(Rect)
  487. nameWithType: Button.Redraw(Rect)
  488. fullName: Button.Redraw(Rect)
  489. - uid: Terminal.Gui.Rect
  490. parent: Terminal.Gui
  491. isExternal: false
  492. name: Rect
  493. nameWithType: Rect
  494. fullName: Terminal.Gui.Rect
  495. - uid: Terminal.Gui.Button.Text
  496. parent: Terminal.Gui.Button
  497. isExternal: false
  498. name: Text
  499. nameWithType: Button.Text
  500. fullName: Button.Text
  501. - uid: Terminal.Gui.Button.#ctor*
  502. parent: Terminal.Gui.Button
  503. isExternal: false
  504. name: Button
  505. nameWithType: Button.Button
  506. fullName: Button.Button
  507. - uid: Terminal.Gui.Button.IsDefault*
  508. parent: Terminal.Gui.Button
  509. isExternal: false
  510. name: IsDefault
  511. nameWithType: Button.IsDefault
  512. fullName: Button.IsDefault
  513. - uid: Terminal.Gui.Button.MouseEvent*
  514. parent: Terminal.Gui.Button
  515. isExternal: false
  516. name: MouseEvent
  517. nameWithType: Button.MouseEvent
  518. fullName: Button.MouseEvent
  519. - uid: Terminal.Gui.Button.PositionCursor*
  520. parent: Terminal.Gui.Button
  521. isExternal: false
  522. name: PositionCursor
  523. nameWithType: Button.PositionCursor
  524. fullName: Button.PositionCursor
  525. - uid: Terminal.Gui.Button.ProcessColdKey*
  526. parent: Terminal.Gui.Button
  527. isExternal: false
  528. name: ProcessColdKey
  529. nameWithType: Button.ProcessColdKey
  530. fullName: Button.ProcessColdKey
  531. - uid: Terminal.Gui.Button.ProcessHotKey*
  532. parent: Terminal.Gui.Button
  533. isExternal: false
  534. name: ProcessHotKey
  535. nameWithType: Button.ProcessHotKey
  536. fullName: Button.ProcessHotKey
  537. - uid: Terminal.Gui.Button.ProcessKey*
  538. parent: Terminal.Gui.Button
  539. isExternal: false
  540. name: ProcessKey
  541. nameWithType: Button.ProcessKey
  542. fullName: Button.ProcessKey
  543. - uid: Terminal.Gui.Button.Redraw*
  544. parent: Terminal.Gui.Button
  545. isExternal: false
  546. name: Redraw
  547. nameWithType: Button.Redraw
  548. fullName: Button.Redraw
  549. - uid: Terminal.Gui.Button.Text*
  550. parent: Terminal.Gui.Button
  551. isExternal: false
  552. name: Text
  553. nameWithType: Button.Text
  554. fullName: Button.Text
  555. - uid: Terminal.Gui.Responder.CanFocus
  556. parent: Terminal.Gui.Responder
  557. isExternal: false
  558. name: CanFocus
  559. nameWithType: Responder.CanFocus
  560. fullName: Responder.CanFocus
  561. - uid: Terminal.Gui.View.HasFocus
  562. parent: Terminal.Gui.View
  563. isExternal: false
  564. name: HasFocus
  565. nameWithType: View.HasFocus
  566. fullName: View.HasFocus
  567. - uid: Terminal.Gui.View.Add(Terminal.Gui.View)
  568. parent: Terminal.Gui.View
  569. isExternal: false
  570. name: Add(View)
  571. nameWithType: View.Add(View)
  572. fullName: View.Add(View)
  573. - uid: Terminal.Gui.View.Add(Terminal.Gui.View[])
  574. parent: Terminal.Gui.View
  575. isExternal: false
  576. name: Add(View[])
  577. nameWithType: View.Add(View[])
  578. fullName: View.Add(View[])
  579. - uid: Terminal.Gui.View.AddRune(System.Int32,System.Int32,System.Rune)
  580. parent: Terminal.Gui.View
  581. isExternal: false
  582. name: AddRune(Int32, Int32, Rune)
  583. nameWithType: View.AddRune(Int32, Int32, Rune)
  584. fullName: View.AddRune(Int32, Int32, Rune)
  585. - uid: Terminal.Gui.View.Bounds
  586. parent: Terminal.Gui.View
  587. isExternal: false
  588. name: Bounds
  589. nameWithType: View.Bounds
  590. fullName: View.Bounds
  591. - uid: Terminal.Gui.View.ChildNeedsDisplay
  592. parent: Terminal.Gui.View
  593. isExternal: false
  594. name: ChildNeedsDisplay()
  595. nameWithType: View.ChildNeedsDisplay()
  596. fullName: View.ChildNeedsDisplay()
  597. - uid: Terminal.Gui.View.Clear
  598. parent: Terminal.Gui.View
  599. isExternal: false
  600. name: Clear()
  601. nameWithType: View.Clear()
  602. fullName: View.Clear()
  603. - uid: Terminal.Gui.View.Clear(Terminal.Gui.Rect)
  604. parent: Terminal.Gui.View
  605. isExternal: false
  606. name: Clear(Rect)
  607. nameWithType: View.Clear(Rect)
  608. fullName: View.Clear(Rect)
  609. - uid: Terminal.Gui.View.ClearNeedsDisplay
  610. parent: Terminal.Gui.View
  611. isExternal: false
  612. name: ClearNeedsDisplay()
  613. nameWithType: View.ClearNeedsDisplay()
  614. fullName: View.ClearNeedsDisplay()
  615. - uid: Terminal.Gui.View.ClipToBounds
  616. parent: Terminal.Gui.View
  617. isExternal: false
  618. name: ClipToBounds()
  619. nameWithType: View.ClipToBounds()
  620. fullName: View.ClipToBounds()
  621. - uid: Terminal.Gui.View.ColorScheme
  622. parent: Terminal.Gui.View
  623. isExternal: false
  624. name: ColorScheme
  625. nameWithType: View.ColorScheme
  626. fullName: View.ColorScheme
  627. - uid: Terminal.Gui.View.DrawFrame(Terminal.Gui.Rect,System.Int32,System.Boolean)
  628. parent: Terminal.Gui.View
  629. isExternal: false
  630. name: DrawFrame(Rect, Int32, Boolean)
  631. nameWithType: View.DrawFrame(Rect, Int32, Boolean)
  632. fullName: View.DrawFrame(Rect, Int32, Boolean)
  633. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,System.Boolean,Terminal.Gui.ColorScheme)
  634. parent: Terminal.Gui.View
  635. isExternal: false
  636. name: DrawHotString(ustring, Boolean, ColorScheme)
  637. nameWithType: View.DrawHotString(ustring, Boolean, ColorScheme)
  638. fullName: View.DrawHotString(ustring, Boolean, ColorScheme)
  639. - uid: Terminal.Gui.View.DrawHotString(NStack.ustring,Terminal.Gui.Attribute,Terminal.Gui.Attribute)
  640. parent: Terminal.Gui.View
  641. isExternal: false
  642. name: DrawHotString(ustring, Attribute, Attribute)
  643. nameWithType: View.DrawHotString(ustring, Attribute, Attribute)
  644. fullName: View.DrawHotString(ustring, Attribute, Attribute)
  645. - uid: Terminal.Gui.View.Driver
  646. parent: Terminal.Gui.View
  647. isExternal: false
  648. name: Driver
  649. nameWithType: View.Driver
  650. fullName: View.Driver
  651. - uid: Terminal.Gui.View.EnsureFocus
  652. parent: Terminal.Gui.View
  653. isExternal: false
  654. name: EnsureFocus()
  655. nameWithType: View.EnsureFocus()
  656. fullName: View.EnsureFocus()
  657. - uid: Terminal.Gui.View.Focused
  658. parent: Terminal.Gui.View
  659. isExternal: false
  660. name: Focused
  661. nameWithType: View.Focused
  662. fullName: View.Focused
  663. - uid: Terminal.Gui.View.FocusFirst
  664. parent: Terminal.Gui.View
  665. isExternal: false
  666. name: FocusFirst()
  667. nameWithType: View.FocusFirst()
  668. fullName: View.FocusFirst()
  669. - uid: Terminal.Gui.View.FocusLast
  670. parent: Terminal.Gui.View
  671. isExternal: false
  672. name: FocusLast()
  673. nameWithType: View.FocusLast()
  674. fullName: View.FocusLast()
  675. - uid: Terminal.Gui.View.FocusNext
  676. parent: Terminal.Gui.View
  677. isExternal: false
  678. name: FocusNext()
  679. nameWithType: View.FocusNext()
  680. fullName: View.FocusNext()
  681. - uid: Terminal.Gui.View.FocusPrev
  682. parent: Terminal.Gui.View
  683. isExternal: false
  684. name: FocusPrev()
  685. nameWithType: View.FocusPrev()
  686. fullName: View.FocusPrev()
  687. - uid: Terminal.Gui.View.Frame
  688. parent: Terminal.Gui.View
  689. isExternal: false
  690. name: Frame
  691. nameWithType: View.Frame
  692. fullName: View.Frame
  693. - uid: Terminal.Gui.View.GetEnumerator
  694. parent: Terminal.Gui.View
  695. isExternal: false
  696. name: GetEnumerator()
  697. nameWithType: View.GetEnumerator()
  698. fullName: View.GetEnumerator()
  699. - uid: Terminal.Gui.View.Height
  700. parent: Terminal.Gui.View
  701. isExternal: false
  702. name: Height
  703. nameWithType: View.Height
  704. fullName: View.Height
  705. - uid: Terminal.Gui.View.Id
  706. parent: Terminal.Gui.View
  707. isExternal: false
  708. name: Id
  709. nameWithType: View.Id
  710. fullName: View.Id
  711. - uid: Terminal.Gui.View.LayoutStyle
  712. parent: Terminal.Gui.View
  713. isExternal: false
  714. name: LayoutStyle
  715. nameWithType: View.LayoutStyle
  716. fullName: View.LayoutStyle
  717. - uid: Terminal.Gui.View.LayoutSubviews
  718. parent: Terminal.Gui.View
  719. isExternal: false
  720. name: LayoutSubviews()
  721. nameWithType: View.LayoutSubviews()
  722. fullName: View.LayoutSubviews()
  723. - uid: Terminal.Gui.View.MostFocused
  724. parent: Terminal.Gui.View
  725. isExternal: false
  726. name: MostFocused
  727. nameWithType: View.MostFocused
  728. fullName: View.MostFocused
  729. - uid: Terminal.Gui.View.Move(System.Int32,System.Int32)
  730. parent: Terminal.Gui.View
  731. isExternal: false
  732. name: Move(Int32, Int32)
  733. nameWithType: View.Move(Int32, Int32)
  734. fullName: View.Move(Int32, Int32)
  735. - uid: Terminal.Gui.View.Remove(Terminal.Gui.View)
  736. parent: Terminal.Gui.View
  737. isExternal: false
  738. name: Remove(View)
  739. nameWithType: View.Remove(View)
  740. fullName: View.Remove(View)
  741. - uid: Terminal.Gui.View.RemoveAll
  742. parent: Terminal.Gui.View
  743. isExternal: false
  744. name: RemoveAll()
  745. nameWithType: View.RemoveAll()
  746. fullName: View.RemoveAll()
  747. - uid: Terminal.Gui.View.ScreenToView(System.Int32,System.Int32)
  748. parent: Terminal.Gui.View
  749. isExternal: false
  750. name: ScreenToView(Int32, Int32)
  751. nameWithType: View.ScreenToView(Int32, Int32)
  752. fullName: View.ScreenToView(Int32, Int32)
  753. - uid: Terminal.Gui.View.SetClip(Terminal.Gui.Rect)
  754. parent: Terminal.Gui.View
  755. isExternal: false
  756. name: SetClip(Rect)
  757. nameWithType: View.SetClip(Rect)
  758. fullName: View.SetClip(Rect)
  759. - uid: Terminal.Gui.View.SetFocus(Terminal.Gui.View)
  760. parent: Terminal.Gui.View
  761. isExternal: false
  762. name: SetFocus(View)
  763. nameWithType: View.SetFocus(View)
  764. fullName: View.SetFocus(View)
  765. - uid: Terminal.Gui.View.SetNeedsDisplay
  766. parent: Terminal.Gui.View
  767. isExternal: false
  768. name: SetNeedsDisplay()
  769. nameWithType: View.SetNeedsDisplay()
  770. fullName: View.SetNeedsDisplay()
  771. - uid: Terminal.Gui.View.SetNeedsDisplay(Terminal.Gui.Rect)
  772. parent: Terminal.Gui.View
  773. isExternal: false
  774. name: SetNeedsDisplay(Rect)
  775. nameWithType: View.SetNeedsDisplay(Rect)
  776. fullName: View.SetNeedsDisplay(Rect)
  777. - uid: Terminal.Gui.View.Subviews
  778. parent: Terminal.Gui.View
  779. isExternal: false
  780. name: Subviews
  781. nameWithType: View.Subviews
  782. fullName: View.Subviews
  783. - uid: Terminal.Gui.View.SuperView
  784. parent: Terminal.Gui.View
  785. isExternal: false
  786. name: SuperView
  787. nameWithType: View.SuperView
  788. fullName: View.SuperView
  789. - uid: Terminal.Gui.View.ToString
  790. parent: Terminal.Gui.View
  791. isExternal: false
  792. name: ToString()
  793. nameWithType: View.ToString()
  794. fullName: View.ToString()
  795. - uid: Terminal.Gui.View.WantMousePositionReports
  796. parent: Terminal.Gui.View
  797. isExternal: false
  798. name: WantMousePositionReports
  799. nameWithType: View.WantMousePositionReports
  800. fullName: View.WantMousePositionReports
  801. - uid: Terminal.Gui.View.Width
  802. parent: Terminal.Gui.View
  803. isExternal: false
  804. name: Width
  805. nameWithType: View.Width
  806. fullName: View.Width
  807. - uid: Terminal.Gui.View.X
  808. parent: Terminal.Gui.View
  809. isExternal: false
  810. name: X
  811. nameWithType: View.X
  812. fullName: View.X
  813. - uid: Terminal.Gui.View.Y
  814. parent: Terminal.Gui.View
  815. isExternal: false
  816. name: Y
  817. nameWithType: View.Y
  818. fullName: View.Y