TextField.cs 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875
  1. using System.Data;
  2. using System.Globalization;
  3. using Terminal.Gui.Resources;
  4. namespace Terminal.Gui;
  5. /// <summary>Single-line text entry <see cref="View"/></summary>
  6. /// <remarks>The <see cref="TextField"/> <see cref="View"/> provides editing functionality and mouse support.</remarks>
  7. public class TextField : View
  8. {
  9. private readonly HistoryText _historyText;
  10. private CultureInfo _currentCulture;
  11. private int _cursorPosition;
  12. private bool _isButtonPressed;
  13. private bool _isButtonReleased;
  14. private bool _isDrawing;
  15. private int _preTextChangedCursorPos;
  16. private int _selectedStart; // -1 represents there is no text selection.
  17. private string _selectedText;
  18. private int _start;
  19. private List<Rune> _text;
  20. /// <summary>
  21. /// Initializes a new instance of the <see cref="TextField"/> class using <see cref="LayoutStyle.Computed"/>
  22. /// positioning.
  23. /// </summary>
  24. public TextField ()
  25. {
  26. _historyText = new HistoryText ();
  27. _isButtonReleased = true;
  28. _selectedStart = -1;
  29. _text = new List<Rune> ();
  30. CaptionColor = new Color (Color.DarkGray);
  31. ReadOnly = false;
  32. Autocomplete = new TextFieldAutocomplete ();
  33. Height = Dim.Auto (DimAutoStyle.Text, minimumContentDim: 1);
  34. CanFocus = true;
  35. CursorVisibility = CursorVisibility.Default;
  36. Used = true;
  37. WantMousePositionReports = true;
  38. _historyText.ChangeText += HistoryText_ChangeText;
  39. Initialized += TextField_Initialized;
  40. // Things this view knows how to do
  41. AddCommand (
  42. Command.DeleteCharRight,
  43. () =>
  44. {
  45. DeleteCharRight ();
  46. return true;
  47. }
  48. );
  49. AddCommand (
  50. Command.DeleteCharLeft,
  51. () =>
  52. {
  53. DeleteCharLeft (false);
  54. return true;
  55. }
  56. );
  57. AddCommand (
  58. Command.LeftHomeExtend,
  59. () =>
  60. {
  61. MoveHomeExtend ();
  62. return true;
  63. }
  64. );
  65. AddCommand (
  66. Command.RightEndExtend,
  67. () =>
  68. {
  69. MoveEndExtend ();
  70. return true;
  71. }
  72. );
  73. AddCommand (
  74. Command.LeftHome,
  75. () =>
  76. {
  77. MoveHome ();
  78. return true;
  79. }
  80. );
  81. AddCommand (
  82. Command.LeftExtend,
  83. () =>
  84. {
  85. MoveLeftExtend ();
  86. return true;
  87. }
  88. );
  89. AddCommand (
  90. Command.RightExtend,
  91. () =>
  92. {
  93. MoveRightExtend ();
  94. return true;
  95. }
  96. );
  97. AddCommand (
  98. Command.WordLeftExtend,
  99. () =>
  100. {
  101. MoveWordLeftExtend ();
  102. return true;
  103. }
  104. );
  105. AddCommand (
  106. Command.WordRightExtend,
  107. () =>
  108. {
  109. MoveWordRightExtend ();
  110. return true;
  111. }
  112. );
  113. AddCommand (
  114. Command.Left,
  115. () =>
  116. {
  117. MoveLeft ();
  118. return true;
  119. }
  120. );
  121. AddCommand (
  122. Command.RightEnd,
  123. () =>
  124. {
  125. MoveEnd ();
  126. return true;
  127. }
  128. );
  129. AddCommand (
  130. Command.Right,
  131. () =>
  132. {
  133. MoveRight ();
  134. return true;
  135. }
  136. );
  137. AddCommand (
  138. Command.CutToEndLine,
  139. () =>
  140. {
  141. KillToEnd ();
  142. return true;
  143. }
  144. );
  145. AddCommand (
  146. Command.CutToStartLine,
  147. () =>
  148. {
  149. KillToStart ();
  150. return true;
  151. }
  152. );
  153. AddCommand (
  154. Command.Undo,
  155. () =>
  156. {
  157. Undo ();
  158. return true;
  159. }
  160. );
  161. AddCommand (
  162. Command.Redo,
  163. () =>
  164. {
  165. Redo ();
  166. return true;
  167. }
  168. );
  169. AddCommand (
  170. Command.WordLeft,
  171. () =>
  172. {
  173. MoveWordLeft ();
  174. return true;
  175. }
  176. );
  177. AddCommand (
  178. Command.WordRight,
  179. () =>
  180. {
  181. MoveWordRight ();
  182. return true;
  183. }
  184. );
  185. AddCommand (
  186. Command.KillWordForwards,
  187. () =>
  188. {
  189. KillWordForwards ();
  190. return true;
  191. }
  192. );
  193. AddCommand (
  194. Command.KillWordBackwards,
  195. () =>
  196. {
  197. KillWordBackwards ();
  198. return true;
  199. }
  200. );
  201. AddCommand (
  202. Command.ToggleOverwrite,
  203. () =>
  204. {
  205. SetOverwrite (!Used);
  206. return true;
  207. }
  208. );
  209. AddCommand (
  210. Command.EnableOverwrite,
  211. () =>
  212. {
  213. SetOverwrite (true);
  214. return true;
  215. }
  216. );
  217. AddCommand (
  218. Command.DisableOverwrite,
  219. () =>
  220. {
  221. SetOverwrite (false);
  222. return true;
  223. }
  224. );
  225. AddCommand (
  226. Command.Copy,
  227. () =>
  228. {
  229. Copy ();
  230. return true;
  231. }
  232. );
  233. AddCommand (
  234. Command.Cut,
  235. () =>
  236. {
  237. Cut ();
  238. return true;
  239. }
  240. );
  241. AddCommand (
  242. Command.Paste,
  243. () =>
  244. {
  245. Paste ();
  246. return true;
  247. }
  248. );
  249. AddCommand (
  250. Command.SelectAll,
  251. () =>
  252. {
  253. SelectAll ();
  254. return true;
  255. }
  256. );
  257. AddCommand (
  258. Command.DeleteAll,
  259. () =>
  260. {
  261. DeleteAll ();
  262. return true;
  263. }
  264. );
  265. AddCommand (
  266. Command.ShowContextMenu,
  267. () =>
  268. {
  269. ShowContextMenu ();
  270. return true;
  271. }
  272. );
  273. // OnAccept returns true if the event is canceled.
  274. // By Default pressing ENTER should be ignored (Invoke(Command.Accept) should return false).
  275. AddCommand (Command.Accept, () => OnAccept () != true);
  276. // Default keybindings for this view
  277. // We follow this as closely as possible: https://en.wikipedia.org/wiki/Table_of_keyboard_shortcuts
  278. KeyBindings.Add (Key.Delete, Command.DeleteCharRight);
  279. KeyBindings.Add (Key.D.WithCtrl, Command.DeleteCharRight);
  280. KeyBindings.Add (Key.Backspace, Command.DeleteCharLeft);
  281. KeyBindings.Add (Key.Home.WithShift, Command.LeftHomeExtend);
  282. KeyBindings.Add (Key.Home.WithShift.WithCtrl, Command.LeftHomeExtend);
  283. KeyBindings.Add (Key.A.WithShift.WithCtrl, Command.LeftHomeExtend);
  284. KeyBindings.Add (Key.End.WithShift, Command.RightEndExtend);
  285. KeyBindings.Add (Key.End.WithShift.WithCtrl, Command.RightEndExtend);
  286. KeyBindings.Add (Key.E.WithShift.WithCtrl, Command.RightEndExtend);
  287. KeyBindings.Add (Key.Home, Command.LeftHome);
  288. KeyBindings.Add (Key.Home.WithCtrl, Command.LeftHome);
  289. KeyBindings.Add (Key.A.WithCtrl, Command.LeftHome);
  290. KeyBindings.Add (Key.CursorLeft.WithShift, Command.LeftExtend);
  291. KeyBindings.Add (Key.CursorUp.WithShift, Command.LeftExtend);
  292. KeyBindings.Add (Key.CursorRight.WithShift, Command.RightExtend);
  293. KeyBindings.Add (Key.CursorDown.WithShift, Command.RightExtend);
  294. KeyBindings.Add (Key.CursorLeft.WithShift.WithCtrl, Command.WordLeftExtend);
  295. KeyBindings.Add (Key.CursorUp.WithShift.WithCtrl, Command.WordLeftExtend);
  296. KeyBindings.Add (Key.CursorRight.WithShift.WithCtrl, Command.WordRightExtend);
  297. KeyBindings.Add (Key.CursorDown.WithShift.WithCtrl, Command.WordRightExtend);
  298. KeyBindings.Add (Key.CursorLeft, Command.Left);
  299. KeyBindings.Add (Key.B.WithCtrl, Command.Left);
  300. KeyBindings.Add (Key.End, Command.RightEnd);
  301. KeyBindings.Add (Key.End.WithCtrl, Command.RightEnd);
  302. KeyBindings.Add (Key.E.WithCtrl, Command.RightEnd);
  303. KeyBindings.Add (Key.CursorRight, Command.Right);
  304. KeyBindings.Add (Key.F.WithCtrl, Command.Right);
  305. KeyBindings.Add (Key.K.WithCtrl, Command.CutToEndLine);
  306. KeyBindings.Add (Key.K.WithCtrl.WithShift, Command.CutToStartLine);
  307. KeyBindings.Add (Key.Z.WithCtrl, Command.Undo);
  308. KeyBindings.Add (Key.Y.WithCtrl, Command.Redo);
  309. KeyBindings.Add (Key.CursorLeft.WithCtrl, Command.WordLeft);
  310. KeyBindings.Add (Key.CursorUp.WithCtrl, Command.WordLeft);
  311. KeyBindings.Add (Key.CursorRight.WithCtrl, Command.WordRight);
  312. KeyBindings.Add (Key.CursorDown.WithCtrl, Command.WordRight);
  313. #if UNIX_KEY_BINDINGS
  314. KeyBindings.Add (Key.F.WithShift.WithAlt, Command.WordRightExtend);
  315. KeyBindings.Add (Key.K.WithAlt, Command.CutToStartLine);
  316. KeyBindings.Add (Key.B.WithShift.WithAlt, Command.WordLeftExtend);
  317. KeyBindings.Add (Key.B.WithAlt, Command.WordLeft);
  318. KeyBindings.Add (Key.F.WithAlt, Command.WordRight);
  319. KeyBindings.Add (Key.Backspace.WithAlt, Command.Undo);
  320. #endif
  321. KeyBindings.Add (Key.Delete.WithCtrl, Command.KillWordForwards);
  322. KeyBindings.Add (Key.Backspace.WithCtrl, Command.KillWordBackwards);
  323. KeyBindings.Add (Key.InsertChar, Command.ToggleOverwrite);
  324. KeyBindings.Add (Key.C.WithCtrl, Command.Copy);
  325. KeyBindings.Add (Key.X.WithCtrl, Command.Cut);
  326. KeyBindings.Add (Key.V.WithCtrl, Command.Paste);
  327. KeyBindings.Add (Key.T.WithCtrl, Command.SelectAll);
  328. KeyBindings.Add (Key.R.WithCtrl, Command.DeleteAll);
  329. KeyBindings.Add (Key.D.WithCtrl.WithShift, Command.DeleteAll);
  330. _currentCulture = Thread.CurrentThread.CurrentUICulture;
  331. ContextMenu = new ContextMenu { Host = this, MenuItems = BuildContextMenuBarItem () };
  332. ContextMenu.KeyChanged += ContextMenu_KeyChanged;
  333. KeyBindings.Add (ContextMenu.Key, KeyBindingScope.HotKey, Command.ShowContextMenu);
  334. KeyBindings.Add (Key.Enter, Command.Accept);
  335. }
  336. /// <summary>
  337. /// Provides autocomplete context menu based on suggestions at the current cursor position. Configure
  338. /// <see cref="ISuggestionGenerator"/> to enable this feature.
  339. /// </summary>
  340. public IAutocomplete Autocomplete { get; set; }
  341. /// <summary>
  342. /// Gets or sets the text to render in control when no value has been entered yet and the <see cref="View"/> does
  343. /// not yet have input focus.
  344. /// </summary>
  345. public string Caption { get; set; }
  346. /// <summary>Gets or sets the foreground <see cref="Color"/> to use when rendering <see cref="Caption"/>.</summary>
  347. public Color CaptionColor { get; set; }
  348. /// <summary>Get the <see cref="ContextMenu"/> for this view.</summary>
  349. public ContextMenu ContextMenu { get; }
  350. /// <summary>Sets or gets the current cursor position.</summary>
  351. public virtual int CursorPosition
  352. {
  353. get => _cursorPosition;
  354. set
  355. {
  356. if (value < 0)
  357. {
  358. _cursorPosition = 0;
  359. }
  360. else if (value > _text.Count)
  361. {
  362. _cursorPosition = _text.Count;
  363. }
  364. else
  365. {
  366. _cursorPosition = value;
  367. }
  368. PrepareSelection (_selectedStart, _cursorPosition - _selectedStart);
  369. }
  370. }
  371. /// <summary>
  372. /// Indicates whatever the text has history changes or not. <see langword="true"/> if the text has history changes
  373. /// <see langword="false"/> otherwise.
  374. /// </summary>
  375. public bool HasHistoryChanges => _historyText.HasHistoryChanges;
  376. /// <summary>
  377. /// Indicates whatever the text was changed or not. <see langword="true"/> if the text was changed
  378. /// <see langword="false"/> otherwise.
  379. /// </summary>
  380. public bool IsDirty => _historyText.IsDirty (Text);
  381. /// <summary>If set to true its not allow any changes in the text.</summary>
  382. public bool ReadOnly { get; set; }
  383. /// <summary>Gets the left offset position.</summary>
  384. public int ScrollOffset { get; private set; }
  385. /// <summary>
  386. /// Sets the secret property.
  387. /// <remarks>This makes the text entry suitable for entering passwords.</remarks>
  388. /// </summary>
  389. public bool Secret { get; set; }
  390. /// <summary>Length of the selected text.</summary>
  391. public int SelectedLength { get; private set; }
  392. /// <summary>Start position of the selected text.</summary>
  393. public int SelectedStart
  394. {
  395. get => _selectedStart;
  396. set
  397. {
  398. if (value < -1)
  399. {
  400. _selectedStart = -1;
  401. }
  402. else if (value > _text.Count)
  403. {
  404. _selectedStart = _text.Count;
  405. }
  406. else
  407. {
  408. _selectedStart = value;
  409. }
  410. PrepareSelection (_selectedStart, _cursorPosition - _selectedStart);
  411. }
  412. }
  413. /// <summary>The selected text.</summary>
  414. public string SelectedText
  415. {
  416. get => Secret ? null : _selectedText;
  417. private set => _selectedText = value;
  418. }
  419. /// <summary>Sets or gets the text held by the view.</summary>
  420. public new string Text
  421. {
  422. get => StringExtensions.ToString (_text);
  423. set
  424. {
  425. var oldText = StringExtensions.ToString (_text);
  426. if (oldText == value)
  427. {
  428. return;
  429. }
  430. StateEventArgs<string> newText = OnTextChanging (value.Replace ("\t", "").Split ("\n") [0]);
  431. if (newText.Cancel)
  432. {
  433. if (_cursorPosition > _text.Count)
  434. {
  435. _cursorPosition = _text.Count;
  436. }
  437. return;
  438. }
  439. ClearAllSelection ();
  440. _text = newText.NewValue.EnumerateRunes ().ToList ();
  441. if (!Secret && !_historyText.IsFromHistory)
  442. {
  443. _historyText.Add (
  444. new List<List<RuneCell>> { TextModel.ToRuneCellList (oldText) },
  445. new Point (_cursorPosition, 0)
  446. );
  447. _historyText.Add (
  448. new List<List<RuneCell>> { TextModel.ToRuneCells (_text) },
  449. new Point (_cursorPosition, 0),
  450. HistoryText.LineStatus.Replaced
  451. );
  452. }
  453. OnTextChanged (oldText, StringExtensions.ToString (_text));
  454. ProcessAutocomplete ();
  455. if (_cursorPosition > _text.Count)
  456. {
  457. _cursorPosition = Math.Max (TextModel.DisplaySize (_text, 0).size - 1, 0);
  458. }
  459. Adjust ();
  460. SetNeedsDisplay ();
  461. }
  462. }
  463. /// <summary>
  464. /// Tracks whether the text field should be considered "used", that is, that the user has moved in the entry, so
  465. /// new input should be appended at the cursor position, rather than clearing the entry
  466. /// </summary>
  467. public bool Used { get; set; }
  468. /// <summary>Clear the selected text.</summary>
  469. public void ClearAllSelection ()
  470. {
  471. if (_selectedStart == -1 && SelectedLength == 0 && string.IsNullOrEmpty (_selectedText))
  472. {
  473. return;
  474. }
  475. _selectedStart = -1;
  476. SelectedLength = 0;
  477. _selectedText = null;
  478. _start = 0;
  479. SelectedLength = 0;
  480. SetNeedsDisplay ();
  481. }
  482. /// <summary>Allows clearing the <see cref="HistoryText.HistoryTextItem"/> items updating the original text.</summary>
  483. public void ClearHistoryChanges () { _historyText.Clear (Text); }
  484. /// <summary>Copy the selected text to the clipboard.</summary>
  485. public virtual void Copy ()
  486. {
  487. if (Secret || SelectedLength == 0)
  488. {
  489. return;
  490. }
  491. Clipboard.Contents = SelectedText;
  492. }
  493. /// <summary>Cut the selected text to the clipboard.</summary>
  494. public virtual void Cut ()
  495. {
  496. if (ReadOnly || Secret || SelectedLength == 0)
  497. {
  498. return;
  499. }
  500. Clipboard.Contents = SelectedText;
  501. List<Rune> newText = DeleteSelectedText ();
  502. Text = StringExtensions.ToString (newText);
  503. Adjust ();
  504. }
  505. /// <summary>Deletes all text.</summary>
  506. public void DeleteAll ()
  507. {
  508. if (_text.Count == 0)
  509. {
  510. return;
  511. }
  512. _selectedStart = 0;
  513. MoveEndExtend ();
  514. DeleteCharLeft (false);
  515. SetNeedsDisplay ();
  516. }
  517. /// <summary>Deletes the character to the left.</summary>
  518. /// <param name="usePreTextChangedCursorPos">
  519. /// If set to <see langword="true">true</see> use the cursor position cached ;
  520. /// otherwise use <see cref="CursorPosition"/>. use .
  521. /// </param>
  522. public virtual void DeleteCharLeft (bool usePreTextChangedCursorPos)
  523. {
  524. if (ReadOnly)
  525. {
  526. return;
  527. }
  528. _historyText.Add (
  529. new List<List<RuneCell>> { TextModel.ToRuneCells (_text) },
  530. new Point (_cursorPosition, 0)
  531. );
  532. if (SelectedLength == 0)
  533. {
  534. if (_cursorPosition == 0)
  535. {
  536. return;
  537. }
  538. if (!usePreTextChangedCursorPos)
  539. {
  540. _preTextChangedCursorPos = _cursorPosition;
  541. }
  542. _cursorPosition--;
  543. if (_preTextChangedCursorPos < _text.Count)
  544. {
  545. SetText (
  546. _text.GetRange (0, _preTextChangedCursorPos - 1)
  547. .Concat (
  548. _text.GetRange (
  549. _preTextChangedCursorPos,
  550. _text.Count - _preTextChangedCursorPos
  551. )
  552. )
  553. );
  554. }
  555. else
  556. {
  557. SetText (_text.GetRange (0, _preTextChangedCursorPos - 1));
  558. }
  559. Adjust ();
  560. }
  561. else
  562. {
  563. List<Rune> newText = DeleteSelectedText ();
  564. Text = StringExtensions.ToString (newText);
  565. Adjust ();
  566. }
  567. }
  568. /// <summary>Deletes the character to the right.</summary>
  569. public virtual void DeleteCharRight ()
  570. {
  571. if (ReadOnly)
  572. {
  573. return;
  574. }
  575. _historyText.Add (
  576. new List<List<RuneCell>> { TextModel.ToRuneCells (_text) },
  577. new Point (_cursorPosition, 0)
  578. );
  579. if (SelectedLength == 0)
  580. {
  581. if (_text.Count == 0 || _text.Count == _cursorPosition)
  582. {
  583. return;
  584. }
  585. SetText (
  586. _text.GetRange (0, _cursorPosition)
  587. .Concat (_text.GetRange (_cursorPosition + 1, _text.Count - (_cursorPosition + 1)))
  588. );
  589. Adjust ();
  590. }
  591. else
  592. {
  593. List<Rune> newText = DeleteSelectedText ();
  594. Text = StringExtensions.ToString (newText);
  595. Adjust ();
  596. }
  597. }
  598. /// <inheritdoc/>
  599. public override Attribute GetNormalColor ()
  600. {
  601. ColorScheme cs = ColorScheme;
  602. if (ColorScheme is null)
  603. {
  604. cs = new ColorScheme ();
  605. }
  606. return Enabled ? cs.Focus : cs.Disabled;
  607. }
  608. /// <summary>
  609. /// Inserts the given <paramref name="toAdd"/> text at the current cursor position exactly as if the user had just
  610. /// typed it
  611. /// </summary>
  612. /// <param name="toAdd">Text to add</param>
  613. /// <param name="useOldCursorPos">Use the previous cursor position.</param>
  614. public void InsertText (string toAdd, bool useOldCursorPos = true)
  615. {
  616. foreach (char ch in toAdd)
  617. {
  618. Key key;
  619. try
  620. {
  621. key = ch;
  622. }
  623. catch (Exception)
  624. {
  625. throw new ArgumentException (
  626. $"Cannot insert character '{ch}' because it does not map to a Key"
  627. );
  628. }
  629. InsertText (key, useOldCursorPos);
  630. }
  631. }
  632. /// <summary>Deletes word backwards.</summary>
  633. public virtual void KillWordBackwards ()
  634. {
  635. ClearAllSelection ();
  636. (int col, int row)? newPos = GetModel ().WordBackward (_cursorPosition, 0);
  637. if (newPos is null)
  638. {
  639. return;
  640. }
  641. if (newPos.Value.col != -1)
  642. {
  643. SetText (
  644. _text.GetRange (0, newPos.Value.col)
  645. .Concat (_text.GetRange (_cursorPosition, _text.Count - _cursorPosition))
  646. );
  647. _cursorPosition = newPos.Value.col;
  648. }
  649. Adjust ();
  650. }
  651. /// <summary>Deletes word forwards.</summary>
  652. public virtual void KillWordForwards ()
  653. {
  654. ClearAllSelection ();
  655. (int col, int row)? newPos = GetModel ().WordForward (_cursorPosition, 0);
  656. if (newPos is null)
  657. {
  658. return;
  659. }
  660. if (newPos.Value.col != -1)
  661. {
  662. SetText (
  663. _text.GetRange (0, _cursorPosition)
  664. .Concat (_text.GetRange (newPos.Value.col, _text.Count - newPos.Value.col))
  665. );
  666. }
  667. Adjust ();
  668. }
  669. /// <inheritdoc/>
  670. protected internal override bool OnMouseEvent (MouseEvent ev)
  671. {
  672. if (!ev.Flags.HasFlag (MouseFlags.Button1Pressed)
  673. && !ev.Flags.HasFlag (MouseFlags.ReportMousePosition)
  674. && !ev.Flags.HasFlag (MouseFlags.Button1Released)
  675. && !ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked)
  676. && !ev.Flags.HasFlag (MouseFlags.Button1TripleClicked)
  677. && !ev.Flags.HasFlag (ContextMenu.MouseFlags))
  678. {
  679. return base.OnMouseEvent (ev);
  680. }
  681. if (!CanFocus)
  682. {
  683. return true;
  684. }
  685. if (!HasFocus && ev.Flags != MouseFlags.ReportMousePosition)
  686. {
  687. SetFocus ();
  688. }
  689. // Give autocomplete first opportunity to respond to mouse clicks
  690. if (SelectedLength == 0 && Autocomplete.OnMouseEvent (ev, true))
  691. {
  692. return true;
  693. }
  694. if (ev.Flags == MouseFlags.Button1Pressed)
  695. {
  696. EnsureHasFocus ();
  697. PositionCursor (ev);
  698. if (_isButtonReleased)
  699. {
  700. ClearAllSelection ();
  701. }
  702. _isButtonReleased = true;
  703. _isButtonPressed = true;
  704. }
  705. else if (ev.Flags == (MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition) && _isButtonPressed)
  706. {
  707. int x = PositionCursor (ev);
  708. _isButtonReleased = false;
  709. PrepareSelection (x);
  710. if (Application.MouseGrabView is null)
  711. {
  712. Application.GrabMouse (this);
  713. }
  714. }
  715. else if (ev.Flags == MouseFlags.Button1Released)
  716. {
  717. _isButtonReleased = true;
  718. _isButtonPressed = false;
  719. Application.UngrabMouse ();
  720. }
  721. else if (ev.Flags == MouseFlags.Button1DoubleClicked)
  722. {
  723. EnsureHasFocus ();
  724. int x = PositionCursor (ev);
  725. int sbw = x;
  726. if (x == _text.Count
  727. || (x > 0 && (char)_text [x - 1].Value != ' ')
  728. || (x > 0 && (char)_text [x].Value == ' '))
  729. {
  730. (int col, int row)? newPosBw = GetModel ().WordBackward (x, 0);
  731. if (newPosBw is null)
  732. {
  733. return true;
  734. }
  735. sbw = newPosBw.Value.col;
  736. }
  737. if (sbw != -1)
  738. {
  739. x = sbw;
  740. PositionCursor (x);
  741. }
  742. (int col, int row)? newPosFw = GetModel ().WordForward (x, 0);
  743. if (newPosFw is null)
  744. {
  745. return true;
  746. }
  747. ClearAllSelection ();
  748. if (newPosFw.Value.col != -1 && sbw != -1)
  749. {
  750. _cursorPosition = newPosFw.Value.col;
  751. }
  752. PrepareSelection (sbw, newPosFw.Value.col - sbw);
  753. }
  754. else if (ev.Flags == MouseFlags.Button1TripleClicked)
  755. {
  756. EnsureHasFocus ();
  757. PositionCursor (0);
  758. ClearAllSelection ();
  759. PrepareSelection (0, _text.Count);
  760. }
  761. else if (ev.Flags == ContextMenu.MouseFlags)
  762. {
  763. ShowContextMenu ();
  764. }
  765. //SetNeedsDisplay ();
  766. return true;
  767. void EnsureHasFocus ()
  768. {
  769. if (!HasFocus)
  770. {
  771. SetFocus ();
  772. }
  773. }
  774. }
  775. /// <summary>Moves cursor to the end of the typed text.</summary>
  776. public void MoveEnd ()
  777. {
  778. ClearAllSelection ();
  779. _cursorPosition = _text.Count;
  780. Adjust ();
  781. }
  782. /// <inheritdoc/>
  783. public override void OnDrawContent (Rectangle viewport)
  784. {
  785. _isDrawing = true;
  786. var selColor = new Attribute (GetFocusColor ().Background, GetFocusColor ().Foreground);
  787. SetSelectedStartSelectedLength ();
  788. Driver?.SetAttribute (GetNormalColor ());
  789. Move (0, 0);
  790. int p = ScrollOffset;
  791. var col = 0;
  792. int width = Frame.Width + OffSetBackground ();
  793. int tcount = _text.Count;
  794. Attribute roc = GetReadOnlyColor ();
  795. for (int idx = p; idx < tcount; idx++)
  796. {
  797. Rune rune = _text [idx];
  798. int cols = rune.GetColumns ();
  799. if (idx == _cursorPosition && HasFocus && !Used && SelectedLength == 0 && !ReadOnly)
  800. {
  801. Driver?.SetAttribute (selColor);
  802. }
  803. else if (ReadOnly)
  804. {
  805. Driver?.SetAttribute (
  806. idx >= _start && SelectedLength > 0 && idx < _start + SelectedLength
  807. ? selColor
  808. : roc
  809. );
  810. }
  811. else if (!HasFocus && Enabled)
  812. {
  813. Driver?.SetAttribute (GetFocusColor ());
  814. }
  815. else if (!Enabled)
  816. {
  817. Driver?.SetAttribute (roc);
  818. }
  819. else
  820. {
  821. Driver?.SetAttribute (
  822. idx >= _start && SelectedLength > 0 && idx < _start + SelectedLength
  823. ? selColor
  824. : ColorScheme.Focus
  825. );
  826. }
  827. if (col + cols <= width)
  828. {
  829. Driver?.AddRune (Secret ? Glyphs.Dot : rune);
  830. }
  831. if (!TextModel.SetCol (ref col, width, cols))
  832. {
  833. break;
  834. }
  835. if (idx + 1 < tcount && col + _text [idx + 1].GetColumns () > width)
  836. {
  837. break;
  838. }
  839. }
  840. Driver.SetAttribute (GetFocusColor ());
  841. for (int i = col; i < width; i++)
  842. {
  843. Driver.AddRune ((Rune)' ');
  844. }
  845. PositionCursor ();
  846. RenderCaption ();
  847. ProcessAutocomplete ();
  848. _isDrawing = false;
  849. }
  850. /// <inheritdoc/>
  851. public override bool? OnInvokingKeyBindings (Key a)
  852. {
  853. // Give autocomplete first opportunity to respond to key presses
  854. if (SelectedLength == 0 && Autocomplete.Suggestions.Count > 0 && Autocomplete.ProcessKey (a))
  855. {
  856. return true;
  857. }
  858. return base.OnInvokingKeyBindings (a);
  859. }
  860. /// <inheritdoc/>
  861. public override bool OnLeave (View view)
  862. {
  863. if (Application.MouseGrabView is { } && Application.MouseGrabView == this)
  864. {
  865. Application.UngrabMouse ();
  866. }
  867. //if (SelectedLength != 0 && !(Application.MouseGrabView is MenuBar))
  868. // ClearAllSelection ();
  869. return base.OnLeave (view);
  870. }
  871. /// TODO: Flush out these docs
  872. /// <summary>
  873. /// Processes key presses for the <see cref="TextField"/>.
  874. /// <remarks>
  875. /// The <see cref="TextField"/> control responds to the following keys:
  876. /// <list type="table">
  877. /// <listheader>
  878. /// <term>Keys</term> <description>Function</description>
  879. /// </listheader>
  880. /// <item>
  881. /// <term><see cref="Key.Delete"/>, <see cref="Key.Backspace"/></term>
  882. /// <description>Deletes the character before cursor.</description>
  883. /// </item>
  884. /// </list>
  885. /// </remarks>
  886. /// </summary>
  887. /// <param name="a"></param>
  888. /// <returns></returns>
  889. public override bool OnProcessKeyDown (Key a)
  890. {
  891. // Remember the cursor position because the new calculated cursor position is needed
  892. // to be set BEFORE the TextChanged event is triggered.
  893. // Needed for the Elmish Wrapper issue https://github.com/DieselMeister/Terminal.Gui.Elmish/issues/2
  894. _preTextChangedCursorPos = _cursorPosition;
  895. // Ignore other control characters.
  896. if (!a.IsKeyCodeAtoZ && (a.KeyCode < KeyCode.Space || a.KeyCode > KeyCode.CharMask))
  897. {
  898. return false;
  899. }
  900. if (ReadOnly)
  901. {
  902. return true;
  903. }
  904. InsertText (a, true);
  905. return true;
  906. }
  907. /// <summary>Virtual method that invoke the <see cref="TextChanging"/> event if it's defined.</summary>
  908. /// <param name="newText">The new text to be replaced.</param>
  909. /// <returns>Returns the <see cref="StringEventArgs"/></returns>
  910. public virtual StateEventArgs<string> OnTextChanging (string newText)
  911. {
  912. StateEventArgs<string> ev = new (string.Empty, newText);
  913. TextChanging?.Invoke (this, ev);
  914. return ev;
  915. }
  916. /// <summary>Paste the selected text from the clipboard.</summary>
  917. public virtual void Paste ()
  918. {
  919. if (ReadOnly || string.IsNullOrEmpty (Clipboard.Contents))
  920. {
  921. return;
  922. }
  923. SetSelectedStartSelectedLength ();
  924. int selStart = _start == -1 ? CursorPosition : _start;
  925. string cbTxt = Clipboard.Contents.Split ("\n") [0] ?? "";
  926. Text = StringExtensions.ToString (_text.GetRange (0, selStart))
  927. + cbTxt
  928. + StringExtensions.ToString (
  929. _text.GetRange (
  930. selStart + SelectedLength,
  931. _text.Count - (selStart + SelectedLength)
  932. )
  933. );
  934. _cursorPosition = Math.Min (selStart + cbTxt.GetRuneCount (), _text.Count);
  935. ClearAllSelection ();
  936. SetNeedsDisplay ();
  937. Adjust ();
  938. }
  939. /// <summary>Sets the cursor position.</summary>
  940. public override Point? PositionCursor ()
  941. {
  942. ProcessAutocomplete ();
  943. var col = 0;
  944. for (int idx = ScrollOffset < 0 ? 0 : ScrollOffset; idx < _text.Count; idx++)
  945. {
  946. if (idx == _cursorPosition)
  947. {
  948. break;
  949. }
  950. int cols = _text [idx].GetColumns ();
  951. TextModel.SetCol (ref col, Frame.Width - 1, cols);
  952. }
  953. int pos = _cursorPosition - ScrollOffset + Math.Min (Frame.X, 0);
  954. Move (pos, 0);
  955. return new Point (pos, 0);
  956. }
  957. /// <summary>Redoes the latest changes.</summary>
  958. public void Redo ()
  959. {
  960. if (ReadOnly)
  961. {
  962. return;
  963. }
  964. _historyText.Redo ();
  965. }
  966. /// <summary>Selects all text.</summary>
  967. public void SelectAll ()
  968. {
  969. if (_text.Count == 0)
  970. {
  971. return;
  972. }
  973. _selectedStart = 0;
  974. MoveEndExtend ();
  975. SetNeedsDisplay ();
  976. }
  977. ///// <summary>
  978. ///// Changed event, raised when the text has changed.
  979. ///// <remarks>
  980. ///// This event is raised when the <see cref="Text"/> changes. The passed <see cref="EventArgs"/> is a
  981. ///// <see cref="string"/> containing the old value.
  982. ///// </remarks>
  983. ///// </summary>
  984. //public event EventHandler<StateEventArgs<string>> TextChanged;
  985. /// <summary>Changing event, raised before the <see cref="Text"/> changes and can be canceled or changing the new text.</summary>
  986. public event EventHandler<StateEventArgs<string>> TextChanging;
  987. /// <summary>Undoes the latest changes.</summary>
  988. public void Undo ()
  989. {
  990. if (ReadOnly)
  991. {
  992. return;
  993. }
  994. _historyText.Undo ();
  995. }
  996. /// <summary>
  997. /// Returns <see langword="true"/> if the current cursor position is at the end of the <see cref="Text"/>. This
  998. /// includes when it is empty.
  999. /// </summary>
  1000. /// <returns></returns>
  1001. internal bool CursorIsAtEnd () { return CursorPosition == Text.Length; }
  1002. /// <summary>Returns <see langword="true"/> if the current cursor position is at the start of the <see cref="TextField"/>.</summary>
  1003. /// <returns></returns>
  1004. internal bool CursorIsAtStart () { return CursorPosition <= 0; }
  1005. private void Adjust ()
  1006. {
  1007. if (!IsAdded)
  1008. {
  1009. return;
  1010. }
  1011. int offB = OffSetBackground ();
  1012. bool need = NeedsDisplay || !Used;
  1013. if (_cursorPosition < ScrollOffset)
  1014. {
  1015. ScrollOffset = _cursorPosition;
  1016. need = true;
  1017. }
  1018. else if (Frame.Width > 0
  1019. && (ScrollOffset + _cursorPosition - (Frame.Width + offB) == 0
  1020. || TextModel.DisplaySize (_text, ScrollOffset, _cursorPosition).size >= Frame.Width + offB))
  1021. {
  1022. ScrollOffset = Math.Max (
  1023. TextModel.CalculateLeftColumn (
  1024. _text,
  1025. ScrollOffset,
  1026. _cursorPosition,
  1027. Frame.Width + offB
  1028. ),
  1029. 0
  1030. );
  1031. need = true;
  1032. }
  1033. if (need)
  1034. {
  1035. SetNeedsDisplay ();
  1036. }
  1037. else
  1038. {
  1039. PositionCursor ();
  1040. }
  1041. }
  1042. private MenuBarItem BuildContextMenuBarItem ()
  1043. {
  1044. return new MenuBarItem (
  1045. new MenuItem []
  1046. {
  1047. new (
  1048. Strings.ctxSelectAll,
  1049. "",
  1050. () => SelectAll (),
  1051. null,
  1052. null,
  1053. (KeyCode)KeyBindings.GetKeyFromCommands (Command.SelectAll)
  1054. ),
  1055. new (
  1056. Strings.ctxDeleteAll,
  1057. "",
  1058. () => DeleteAll (),
  1059. null,
  1060. null,
  1061. (KeyCode)KeyBindings.GetKeyFromCommands (Command.DeleteAll)
  1062. ),
  1063. new (
  1064. Strings.ctxCopy,
  1065. "",
  1066. () => Copy (),
  1067. null,
  1068. null,
  1069. (KeyCode)KeyBindings.GetKeyFromCommands (Command.Copy)
  1070. ),
  1071. new (
  1072. Strings.ctxCut,
  1073. "",
  1074. () => Cut (),
  1075. null,
  1076. null,
  1077. (KeyCode)KeyBindings.GetKeyFromCommands (Command.Cut)
  1078. ),
  1079. new (
  1080. Strings.ctxPaste,
  1081. "",
  1082. () => Paste (),
  1083. null,
  1084. null,
  1085. (KeyCode)KeyBindings.GetKeyFromCommands (Command.Paste)
  1086. ),
  1087. new (
  1088. Strings.ctxUndo,
  1089. "",
  1090. () => Undo (),
  1091. null,
  1092. null,
  1093. (KeyCode)KeyBindings.GetKeyFromCommands (Command.Undo)
  1094. ),
  1095. new (
  1096. Strings.ctxRedo,
  1097. "",
  1098. () => Redo (),
  1099. null,
  1100. null,
  1101. (KeyCode)KeyBindings.GetKeyFromCommands (Command.Redo)
  1102. )
  1103. }
  1104. );
  1105. }
  1106. private void ContextMenu_KeyChanged (object sender, KeyChangedEventArgs e) { KeyBindings.Replace (e.OldKey.KeyCode, e.NewKey.KeyCode); }
  1107. private List<Rune> DeleteSelectedText ()
  1108. {
  1109. SetSelectedStartSelectedLength ();
  1110. int selStart = SelectedStart > -1 ? _start : _cursorPosition;
  1111. string newText = StringExtensions.ToString (_text.GetRange (0, selStart))
  1112. + StringExtensions.ToString (
  1113. _text.GetRange (
  1114. selStart + SelectedLength,
  1115. _text.Count - (selStart + SelectedLength)
  1116. )
  1117. );
  1118. ClearAllSelection ();
  1119. _cursorPosition = selStart >= newText.GetRuneCount () ? newText.GetRuneCount () : selStart;
  1120. return newText.ToRuneList ();
  1121. }
  1122. private void GenerateSuggestions ()
  1123. {
  1124. List<RuneCell> currentLine = TextModel.ToRuneCellList (Text);
  1125. int cursorPosition = Math.Min (CursorPosition, currentLine.Count);
  1126. Autocomplete.Context = new AutocompleteContext (
  1127. currentLine,
  1128. cursorPosition,
  1129. Autocomplete.Context != null
  1130. ? Autocomplete.Context.Canceled
  1131. : false
  1132. );
  1133. Autocomplete.GenerateSuggestions (
  1134. Autocomplete.Context
  1135. );
  1136. }
  1137. private TextModel GetModel ()
  1138. {
  1139. var model = new TextModel ();
  1140. model.LoadString (Text);
  1141. return model;
  1142. }
  1143. private Attribute GetReadOnlyColor ()
  1144. {
  1145. ColorScheme cs = ColorScheme;
  1146. if (ColorScheme is null)
  1147. {
  1148. cs = new ColorScheme ();
  1149. }
  1150. if (cs.Disabled.Foreground == cs.Focus.Background)
  1151. {
  1152. return new Attribute (cs.Focus.Foreground, cs.Focus.Background);
  1153. }
  1154. return new Attribute (cs.Disabled.Foreground, cs.Focus.Background);
  1155. }
  1156. private void HistoryText_ChangeText (object sender, HistoryText.HistoryTextItem obj)
  1157. {
  1158. if (obj is null)
  1159. {
  1160. return;
  1161. }
  1162. Text = TextModel.ToString (obj?.Lines [obj.CursorPosition.Y]);
  1163. CursorPosition = obj.CursorPosition.X;
  1164. Adjust ();
  1165. }
  1166. private void InsertText (Key a, bool usePreTextChangedCursorPos)
  1167. {
  1168. _historyText.Add (
  1169. new List<List<RuneCell>> { TextModel.ToRuneCells (_text) },
  1170. new Point (_cursorPosition, 0)
  1171. );
  1172. List<Rune> newText = _text;
  1173. if (SelectedLength > 0)
  1174. {
  1175. newText = DeleteSelectedText ();
  1176. _preTextChangedCursorPos = _cursorPosition;
  1177. }
  1178. if (!usePreTextChangedCursorPos)
  1179. {
  1180. _preTextChangedCursorPos = _cursorPosition;
  1181. }
  1182. StringRuneEnumerator kbstr = a.AsRune.ToString ().EnumerateRunes ();
  1183. if (Used)
  1184. {
  1185. _cursorPosition++;
  1186. if (_cursorPosition == newText.Count + 1)
  1187. {
  1188. SetText (newText.Concat (kbstr).ToList ());
  1189. }
  1190. else
  1191. {
  1192. if (_preTextChangedCursorPos > newText.Count)
  1193. {
  1194. _preTextChangedCursorPos = newText.Count;
  1195. }
  1196. SetText (
  1197. newText.GetRange (0, _preTextChangedCursorPos)
  1198. .Concat (kbstr)
  1199. .Concat (
  1200. newText.GetRange (
  1201. _preTextChangedCursorPos,
  1202. Math.Min (
  1203. newText.Count - _preTextChangedCursorPos,
  1204. newText.Count
  1205. )
  1206. )
  1207. )
  1208. );
  1209. }
  1210. }
  1211. else
  1212. {
  1213. SetText (
  1214. newText.GetRange (0, _preTextChangedCursorPos)
  1215. .Concat (kbstr)
  1216. .Concat (
  1217. newText.GetRange (
  1218. Math.Min (_preTextChangedCursorPos + 1, newText.Count),
  1219. Math.Max (newText.Count - _preTextChangedCursorPos - 1, 0)
  1220. )
  1221. )
  1222. );
  1223. _cursorPosition++;
  1224. }
  1225. Adjust ();
  1226. }
  1227. private void KillToEnd ()
  1228. {
  1229. if (ReadOnly)
  1230. {
  1231. return;
  1232. }
  1233. ClearAllSelection ();
  1234. if (_cursorPosition >= _text.Count)
  1235. {
  1236. return;
  1237. }
  1238. SetClipboard (_text.GetRange (_cursorPosition, _text.Count - _cursorPosition));
  1239. SetText (_text.GetRange (0, _cursorPosition));
  1240. Adjust ();
  1241. }
  1242. private void KillToStart ()
  1243. {
  1244. if (ReadOnly)
  1245. {
  1246. return;
  1247. }
  1248. ClearAllSelection ();
  1249. if (_cursorPosition == 0)
  1250. {
  1251. return;
  1252. }
  1253. SetClipboard (_text.GetRange (0, _cursorPosition));
  1254. SetText (_text.GetRange (_cursorPosition, _text.Count - _cursorPosition));
  1255. _cursorPosition = 0;
  1256. Adjust ();
  1257. }
  1258. private void MoveEndExtend ()
  1259. {
  1260. if (_cursorPosition <= _text.Count)
  1261. {
  1262. int x = _cursorPosition;
  1263. _cursorPosition = _text.Count;
  1264. PrepareSelection (x, _cursorPosition - x);
  1265. }
  1266. }
  1267. private void MoveHome ()
  1268. {
  1269. ClearAllSelection ();
  1270. _cursorPosition = 0;
  1271. Adjust ();
  1272. }
  1273. private void MoveHomeExtend ()
  1274. {
  1275. if (_cursorPosition > 0)
  1276. {
  1277. int x = _cursorPosition;
  1278. _cursorPosition = 0;
  1279. PrepareSelection (x, _cursorPosition - x);
  1280. }
  1281. }
  1282. private void MoveLeft ()
  1283. {
  1284. ClearAllSelection ();
  1285. if (_cursorPosition > 0)
  1286. {
  1287. _cursorPosition--;
  1288. Adjust ();
  1289. }
  1290. }
  1291. private void MoveLeftExtend ()
  1292. {
  1293. if (_cursorPosition > 0)
  1294. {
  1295. PrepareSelection (_cursorPosition--, -1);
  1296. }
  1297. }
  1298. private void MoveRight ()
  1299. {
  1300. ClearAllSelection ();
  1301. if (_cursorPosition == _text.Count)
  1302. {
  1303. return;
  1304. }
  1305. _cursorPosition++;
  1306. Adjust ();
  1307. }
  1308. private void MoveRightExtend ()
  1309. {
  1310. if (_cursorPosition < _text.Count)
  1311. {
  1312. PrepareSelection (_cursorPosition++, 1);
  1313. }
  1314. }
  1315. private void MoveWordLeft ()
  1316. {
  1317. ClearAllSelection ();
  1318. (int col, int row)? newPos = GetModel ().WordBackward (_cursorPosition, 0);
  1319. if (newPos is null)
  1320. {
  1321. return;
  1322. }
  1323. if (newPos.Value.col != -1)
  1324. {
  1325. _cursorPosition = newPos.Value.col;
  1326. }
  1327. Adjust ();
  1328. }
  1329. private void MoveWordLeftExtend ()
  1330. {
  1331. if (_cursorPosition > 0)
  1332. {
  1333. int x = Math.Min (
  1334. _start > -1 && _start > _cursorPosition ? _start : _cursorPosition,
  1335. _text.Count
  1336. );
  1337. if (x > 0)
  1338. {
  1339. (int col, int row)? newPos = GetModel ().WordBackward (x, 0);
  1340. if (newPos is null)
  1341. {
  1342. return;
  1343. }
  1344. if (newPos.Value.col != -1)
  1345. {
  1346. _cursorPosition = newPos.Value.col;
  1347. }
  1348. PrepareSelection (x, newPos.Value.col - x);
  1349. }
  1350. }
  1351. }
  1352. private void MoveWordRight ()
  1353. {
  1354. ClearAllSelection ();
  1355. (int col, int row)? newPos = GetModel ().WordForward (_cursorPosition, 0);
  1356. if (newPos is null)
  1357. {
  1358. return;
  1359. }
  1360. if (newPos.Value.col != -1)
  1361. {
  1362. _cursorPosition = newPos.Value.col;
  1363. }
  1364. Adjust ();
  1365. }
  1366. private void MoveWordRightExtend ()
  1367. {
  1368. if (_cursorPosition < _text.Count)
  1369. {
  1370. int x = _start > -1 && _start > _cursorPosition ? _start : _cursorPosition;
  1371. (int col, int row)? newPos = GetModel ().WordForward (x, 0);
  1372. if (newPos is null)
  1373. {
  1374. return;
  1375. }
  1376. if (newPos.Value.col != -1)
  1377. {
  1378. _cursorPosition = newPos.Value.col;
  1379. }
  1380. PrepareSelection (x, newPos.Value.col - x);
  1381. }
  1382. }
  1383. // BUGBUG: This assumes Frame == Viewport. It's also not clear what the intention is. For now, changed to always return 0.
  1384. private int OffSetBackground ()
  1385. {
  1386. var offB = 0;
  1387. if (SuperView?.Frame.Right - Frame.Right < 0)
  1388. {
  1389. offB = SuperView.Frame.Right - Frame.Right - 1;
  1390. }
  1391. return 0;//offB;
  1392. }
  1393. private int PositionCursor (MouseEvent ev)
  1394. {
  1395. return PositionCursor (TextModel.GetColFromX (_text, ScrollOffset, ev.Position.X), false);
  1396. }
  1397. private int PositionCursor (int x, bool getX = true)
  1398. {
  1399. int pX = x;
  1400. if (getX)
  1401. {
  1402. pX = TextModel.GetColFromX (_text, ScrollOffset, x);
  1403. }
  1404. if (ScrollOffset + pX > _text.Count)
  1405. {
  1406. _cursorPosition = _text.Count;
  1407. }
  1408. else if (ScrollOffset + pX < ScrollOffset)
  1409. {
  1410. _cursorPosition = 0;
  1411. }
  1412. else
  1413. {
  1414. _cursorPosition = ScrollOffset + pX;
  1415. }
  1416. return _cursorPosition;
  1417. }
  1418. private void PrepareSelection (int x, int direction = 0)
  1419. {
  1420. x = x + ScrollOffset < -1 ? 0 : x;
  1421. _selectedStart = _selectedStart == -1 && _text.Count > 0 && x >= 0 && x <= _text.Count
  1422. ? x
  1423. : _selectedStart;
  1424. if (_selectedStart > -1)
  1425. {
  1426. SelectedLength = Math.Abs (
  1427. x + direction <= _text.Count
  1428. ? x + direction - _selectedStart
  1429. : _text.Count - _selectedStart
  1430. );
  1431. SetSelectedStartSelectedLength ();
  1432. if (_start > -1 && SelectedLength > 0)
  1433. {
  1434. _selectedText = SelectedLength > 0
  1435. ? StringExtensions.ToString (
  1436. _text.GetRange (
  1437. _start < 0 ? 0 : _start,
  1438. SelectedLength > _text.Count
  1439. ? _text.Count
  1440. : SelectedLength
  1441. )
  1442. )
  1443. : "";
  1444. if (ScrollOffset > _start)
  1445. {
  1446. ScrollOffset = _start;
  1447. }
  1448. }
  1449. else if (_start > -1 && SelectedLength == 0)
  1450. {
  1451. _selectedText = null;
  1452. }
  1453. SetNeedsDisplay ();
  1454. }
  1455. else if (SelectedLength > 0 || _selectedText is { })
  1456. {
  1457. ClearAllSelection ();
  1458. }
  1459. Adjust ();
  1460. }
  1461. private void ProcessAutocomplete ()
  1462. {
  1463. if (_isDrawing)
  1464. {
  1465. return;
  1466. }
  1467. if (SelectedLength > 0)
  1468. {
  1469. return;
  1470. }
  1471. // draw autocomplete
  1472. GenerateSuggestions ();
  1473. var renderAt = new Point (
  1474. Autocomplete.Context.CursorPosition,
  1475. 0
  1476. );
  1477. Autocomplete.RenderOverlay (renderAt);
  1478. }
  1479. private void RenderCaption ()
  1480. {
  1481. if (HasFocus
  1482. || Caption == null
  1483. || Caption.Length == 0
  1484. || Text?.Length > 0)
  1485. {
  1486. return;
  1487. }
  1488. var color = new Attribute (CaptionColor, GetNormalColor ().Background);
  1489. Driver.SetAttribute (color);
  1490. Move (0, 0);
  1491. string render = Caption;
  1492. if (render.GetColumns () > Viewport.Width)
  1493. {
  1494. render = render [..Viewport.Width];
  1495. }
  1496. Driver.AddStr (render);
  1497. }
  1498. private void SetClipboard (IEnumerable<Rune> text)
  1499. {
  1500. if (!Secret)
  1501. {
  1502. Clipboard.Contents = StringExtensions.ToString (text.ToList ());
  1503. }
  1504. }
  1505. private void SetOverwrite (bool overwrite)
  1506. {
  1507. Used = overwrite;
  1508. SetNeedsDisplay ();
  1509. }
  1510. private void SetSelectedStartSelectedLength ()
  1511. {
  1512. if (SelectedStart > -1 && _cursorPosition < SelectedStart)
  1513. {
  1514. _start = _cursorPosition;
  1515. }
  1516. else
  1517. {
  1518. _start = SelectedStart;
  1519. }
  1520. }
  1521. private void SetText (List<Rune> newText) { Text = StringExtensions.ToString (newText); }
  1522. private void SetText (IEnumerable<Rune> newText) { SetText (newText.ToList ()); }
  1523. private void ShowContextMenu ()
  1524. {
  1525. if (_currentCulture != Thread.CurrentThread.CurrentUICulture)
  1526. {
  1527. _currentCulture = Thread.CurrentThread.CurrentUICulture;
  1528. ContextMenu.MenuItems = BuildContextMenuBarItem ();
  1529. }
  1530. ContextMenu.Show ();
  1531. }
  1532. private void TextField_Initialized (object sender, EventArgs e)
  1533. {
  1534. _cursorPosition = Text.GetRuneCount ();
  1535. if (Viewport.Width > 0)
  1536. {
  1537. ScrollOffset = _cursorPosition > Viewport.Width + 1 ? _cursorPosition - Viewport.Width + 1 : 0;
  1538. }
  1539. Autocomplete.HostControl = this;
  1540. Autocomplete.PopupInsideContainer = false;
  1541. }
  1542. }
  1543. /// <summary>
  1544. /// Renders an overlay on another view at a given point that allows selecting from a range of 'autocomplete'
  1545. /// options. An implementation on a TextField.
  1546. /// </summary>
  1547. public class TextFieldAutocomplete : PopupAutocomplete
  1548. {
  1549. /// <inheritdoc/>
  1550. protected override void DeleteTextBackwards () { ((TextField)HostControl).DeleteCharLeft (false); }
  1551. /// <inheritdoc/>
  1552. protected override void InsertText (string accepted) { ((TextField)HostControl).InsertText (accepted, false); }
  1553. /// <inheritdoc/>
  1554. protected override void SetCursorPosition (int column) { ((TextField)HostControl).CursorPosition = column; }
  1555. }