Terminal.Gui.Button.yml 26 KB

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