TextView.cs 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428
  1. //
  2. // TextView.cs: multi-line text editing
  3. //
  4. // Authors:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. //
  8. // TODO:
  9. // In ReadOnly mode backspace/space behave like pageup/pagedown
  10. // Attributed text on spans
  11. // Replace insertion with Insert method
  12. // String accumulation (Control-k, control-k is not preserving the last new line, see StringToRunes
  13. // Alt-D, Alt-Backspace
  14. // API to set the cursor position
  15. // API to scroll to a particular place
  16. // keybindings to go to top/bottom
  17. // public API to insert, remove ranges
  18. // Add word forward/word backwards commands
  19. // Save buffer API
  20. // Mouse
  21. //
  22. // Desirable:
  23. // Move all the text manipulation into the TextModel
  24. using System;
  25. using System.Collections.Generic;
  26. using System.Globalization;
  27. using System.IO;
  28. using System.Linq;
  29. using System.Runtime.CompilerServices;
  30. using System.Text;
  31. using System.Threading;
  32. using NStack;
  33. using Terminal.Gui.Resources;
  34. using Rune = System.Rune;
  35. namespace Terminal.Gui {
  36. class TextModel {
  37. List<List<Rune>> lines = new List<List<Rune>> ();
  38. public event Action LinesLoaded;
  39. public bool LoadFile (string file)
  40. {
  41. FilePath = file ?? throw new ArgumentNullException (nameof (file));
  42. var stream = File.OpenRead (file);
  43. LoadStream (stream);
  44. return true;
  45. }
  46. public bool CloseFile ()
  47. {
  48. if (FilePath == null)
  49. throw new ArgumentNullException (nameof (FilePath));
  50. FilePath = null;
  51. lines = new List<List<Rune>> ();
  52. return true;
  53. }
  54. // Turns the ustring into runes, this does not split the
  55. // contents on a newline if it is present.
  56. internal static List<Rune> ToRunes (ustring str)
  57. {
  58. List<Rune> runes = new List<Rune> ();
  59. foreach (var x in str.ToRunes ()) {
  60. runes.Add (x);
  61. }
  62. return runes;
  63. }
  64. // Splits a string into a List that contains a List<Rune> for each line
  65. public static List<List<Rune>> StringToRunes (ustring content)
  66. {
  67. var lines = new List<List<Rune>> ();
  68. int start = 0, i = 0;
  69. var hasCR = false;
  70. // ASCII code 13 = Carriage Return.
  71. // ASCII code 10 = Line Feed.
  72. for (; i < content.Length; i++) {
  73. if (content [i] == 13) {
  74. hasCR = true;
  75. continue;
  76. }
  77. if (content [i] == 10) {
  78. if (i - start > 0)
  79. lines.Add (ToRunes (content [start, hasCR ? i - 1 : i]));
  80. else
  81. lines.Add (ToRunes (ustring.Empty));
  82. start = i + 1;
  83. hasCR = false;
  84. }
  85. }
  86. if (i - start >= 0)
  87. lines.Add (ToRunes (content [start, null]));
  88. return lines;
  89. }
  90. void Append (List<byte> line)
  91. {
  92. var str = ustring.Make (line.ToArray ());
  93. lines.Add (ToRunes (str));
  94. }
  95. public void LoadStream (Stream input)
  96. {
  97. if (input == null)
  98. throw new ArgumentNullException (nameof (input));
  99. lines = new List<List<Rune>> ();
  100. var buff = new BufferedStream (input);
  101. int v;
  102. var line = new List<byte> ();
  103. var wasNewLine = false;
  104. while ((v = buff.ReadByte ()) != -1) {
  105. if (v == 13) {
  106. continue;
  107. }
  108. if (v == 10) {
  109. Append (line);
  110. line.Clear ();
  111. wasNewLine = true;
  112. continue;
  113. }
  114. line.Add ((byte)v);
  115. wasNewLine = false;
  116. }
  117. if (line.Count > 0 || wasNewLine)
  118. Append (line);
  119. buff.Dispose ();
  120. OnLinesLoaded ();
  121. }
  122. public void LoadString (ustring content)
  123. {
  124. lines = StringToRunes (content);
  125. OnLinesLoaded ();
  126. }
  127. void OnLinesLoaded ()
  128. {
  129. LinesLoaded?.Invoke ();
  130. }
  131. public override string ToString ()
  132. {
  133. var sb = new StringBuilder ();
  134. for (int i = 0; i < lines.Count; i++) {
  135. sb.Append (ustring.Make (lines [i]));
  136. if ((i + 1) < lines.Count) {
  137. sb.AppendLine ();
  138. }
  139. }
  140. return sb.ToString ();
  141. }
  142. public string FilePath { get; set; }
  143. /// <summary>
  144. /// The number of text lines in the model
  145. /// </summary>
  146. public int Count => lines.Count;
  147. /// <summary>
  148. /// Returns the specified line as a List of Rune
  149. /// </summary>
  150. /// <returns>The line.</returns>
  151. /// <param name="line">Line number to retrieve.</param>
  152. public List<Rune> GetLine (int line)
  153. {
  154. if (lines.Count > 0) {
  155. if (line < Count) {
  156. return lines [line];
  157. } else {
  158. return lines [Count - 1];
  159. }
  160. } else {
  161. lines.Add (new List<Rune> ());
  162. return lines [0];
  163. }
  164. }
  165. /// <summary>
  166. /// Adds a line to the model at the specified position.
  167. /// </summary>
  168. /// <param name="pos">Line number where the line will be inserted.</param>
  169. /// <param name="runes">The line of text, as a List of Rune.</param>
  170. public void AddLine (int pos, List<Rune> runes)
  171. {
  172. lines.Insert (pos, runes);
  173. }
  174. /// <summary>
  175. /// Removes the line at the specified position
  176. /// </summary>
  177. /// <param name="pos">Position.</param>
  178. public void RemoveLine (int pos)
  179. {
  180. if (lines.Count > 0) {
  181. if (lines.Count == 1 && lines [0].Count == 0) {
  182. return;
  183. }
  184. lines.RemoveAt (pos);
  185. }
  186. }
  187. public void ReplaceLine (int pos, List<Rune> runes)
  188. {
  189. if (lines.Count > 0 && pos < lines.Count) {
  190. lines [pos] = new List<Rune> (runes);
  191. } else if (lines.Count == 0 || (lines.Count > 0 && pos >= lines.Count)) {
  192. lines.Add (runes);
  193. }
  194. }
  195. /// <summary>
  196. /// Returns the maximum line length of the visible lines.
  197. /// </summary>
  198. /// <param name="first">The first line.</param>
  199. /// <param name="last">The last line.</param>
  200. /// <param name="tabWidth">The tab width.</param>
  201. public int GetMaxVisibleLine (int first, int last, int tabWidth)
  202. {
  203. int maxLength = 0;
  204. last = last < lines.Count ? last : lines.Count;
  205. for (int i = first; i < last; i++) {
  206. var line = GetLine (i);
  207. var tabSum = line.Sum (r => r == '\t' ? Math.Max (tabWidth - 1, 0) : 0);
  208. var l = line.Count + tabSum;
  209. if (l > maxLength) {
  210. maxLength = l;
  211. }
  212. }
  213. return maxLength;
  214. }
  215. internal static bool SetCol (ref int col, int width, int cols)
  216. {
  217. if (col + cols <= width) {
  218. col += cols;
  219. return true;
  220. }
  221. return false;
  222. }
  223. internal static int GetColFromX (List<Rune> t, int start, int x, int tabWidth = 0)
  224. {
  225. if (x < 0) {
  226. return x;
  227. }
  228. int size = start;
  229. var pX = x + start;
  230. for (int i = start; i < t.Count; i++) {
  231. var r = t [i];
  232. size += Rune.ColumnWidth (r);
  233. if (r == '\t') {
  234. size += tabWidth + 1;
  235. }
  236. if (i == pX || (size > pX)) {
  237. return i - start;
  238. }
  239. }
  240. return t.Count - start;
  241. }
  242. // Returns the size and length in a range of the string.
  243. internal static (int size, int length) DisplaySize (List<Rune> t, int start = -1, int end = -1,
  244. bool checkNextRune = true, int tabWidth = 0)
  245. {
  246. if (t == null || t.Count == 0) {
  247. return (0, 0);
  248. }
  249. int size = 0;
  250. int len = 0;
  251. int tcount = end == -1 ? t.Count : end > t.Count ? t.Count : end;
  252. int i = start == -1 ? 0 : start;
  253. for (; i < tcount; i++) {
  254. var rune = t [i];
  255. size += Rune.ColumnWidth (rune);
  256. len += Rune.RuneLen (rune);
  257. if (rune == '\t') {
  258. size += tabWidth + 1;
  259. len += tabWidth - 1;
  260. }
  261. if (checkNextRune && i == tcount - 1 && t.Count > tcount
  262. && IsWideRune (t [i + 1], tabWidth, out int s, out int l)) {
  263. size += s;
  264. len += l;
  265. }
  266. }
  267. bool IsWideRune (Rune r, int tWidth, out int s, out int l)
  268. {
  269. s = Rune.ColumnWidth (r);
  270. l = Rune.RuneLen (r);
  271. if (r == '\t') {
  272. s += tWidth + 1;
  273. l += tWidth - 1;
  274. }
  275. return s > 1;
  276. }
  277. return (size, len);
  278. }
  279. // Returns the left column in a range of the string.
  280. internal static int CalculateLeftColumn (List<Rune> t, int start, int end, int width, int tabWidth = 0)
  281. {
  282. if (t == null || t.Count == 0) {
  283. return 0;
  284. }
  285. int size = 0;
  286. int tcount = end > t.Count - 1 ? t.Count - 1 : end;
  287. int col = 0;
  288. for (int i = tcount; i >= 0; i--) {
  289. var rune = t [i];
  290. size += Rune.ColumnWidth (rune);
  291. if (rune == '\t') {
  292. size += tabWidth + 1;
  293. }
  294. if (size > width) {
  295. if (col + width == end) {
  296. col++;
  297. }
  298. break;
  299. } else if ((end < t.Count && col > 0 && start < end && col == start) || (end - col == width - 1)) {
  300. break;
  301. }
  302. col = i;
  303. }
  304. return col;
  305. }
  306. (Point startPointToFind, Point currentPointToFind, bool found) toFind;
  307. internal (Point current, bool found) FindNextText (ustring text, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false)
  308. {
  309. if (text == null || lines.Count == 0) {
  310. gaveFullTurn = false;
  311. return (Point.Empty, false);
  312. }
  313. if (toFind.found) {
  314. toFind.currentPointToFind.X++;
  315. }
  316. var foundPos = GetFoundNextTextPoint (text, lines.Count, matchCase, matchWholeWord, toFind.currentPointToFind);
  317. if (!foundPos.found && toFind.currentPointToFind != toFind.startPointToFind) {
  318. foundPos = GetFoundNextTextPoint (text, toFind.startPointToFind.Y + 1, matchCase, matchWholeWord, Point.Empty);
  319. }
  320. gaveFullTurn = ApplyToFind (foundPos);
  321. return foundPos;
  322. }
  323. internal (Point current, bool found) FindPreviousText (ustring text, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false)
  324. {
  325. if (text == null || lines.Count == 0) {
  326. gaveFullTurn = false;
  327. return (Point.Empty, false);
  328. }
  329. if (toFind.found) {
  330. toFind.currentPointToFind.X++;
  331. }
  332. var linesCount = toFind.currentPointToFind.IsEmpty ? lines.Count - 1 : toFind.currentPointToFind.Y;
  333. var foundPos = GetFoundPreviousTextPoint (text, linesCount, matchCase, matchWholeWord, toFind.currentPointToFind);
  334. if (!foundPos.found && toFind.currentPointToFind != toFind.startPointToFind) {
  335. foundPos = GetFoundPreviousTextPoint (text, lines.Count - 1, matchCase, matchWholeWord,
  336. new Point (lines [lines.Count - 1].Count, lines.Count));
  337. }
  338. gaveFullTurn = ApplyToFind (foundPos);
  339. return foundPos;
  340. }
  341. internal (Point current, bool found) ReplaceAllText (ustring text, bool matchCase = false, bool matchWholeWord = false, ustring textToReplace = null)
  342. {
  343. bool found = false;
  344. Point pos = Point.Empty;
  345. for (int i = 0; i < lines.Count; i++) {
  346. var x = lines [i];
  347. var txt = GetText (x);
  348. var matchText = !matchCase ? text.ToUpper ().ToString () : text.ToString ();
  349. var col = txt.IndexOf (matchText);
  350. while (col > -1) {
  351. if (matchWholeWord && !MatchWholeWord (txt, matchText, col)) {
  352. if (col + 1 > txt.Length) {
  353. break;
  354. }
  355. col = txt.IndexOf (matchText, col + 1);
  356. continue;
  357. }
  358. if (col > -1) {
  359. if (!found) {
  360. found = true;
  361. }
  362. lines [i] = ReplaceText (x, textToReplace, matchText, col).ToRuneList ();
  363. x = lines [i];
  364. txt = GetText (x);
  365. pos = new Point (col, i);
  366. col += (textToReplace.Length - matchText.Length);
  367. }
  368. if (col + 1 > txt.Length) {
  369. break;
  370. }
  371. col = txt.IndexOf (matchText, col + 1);
  372. }
  373. }
  374. string GetText (List<Rune> x)
  375. {
  376. var txt = ustring.Make (x).ToString ();
  377. if (!matchCase) {
  378. txt = txt.ToUpper ();
  379. }
  380. return txt;
  381. }
  382. return (pos, found);
  383. }
  384. ustring ReplaceText (List<Rune> source, ustring textToReplace, string matchText, int col)
  385. {
  386. var origTxt = ustring.Make (source);
  387. (int _, int len) = TextModel.DisplaySize (source, 0, col, false);
  388. (var _, var len2) = TextModel.DisplaySize (source, col, col + matchText.Length, false);
  389. (var _, var len3) = TextModel.DisplaySize (source, col + matchText.Length, origTxt.RuneCount, false);
  390. return origTxt [0, len] +
  391. textToReplace.ToString () +
  392. origTxt [len + len2, len + len2 + len3];
  393. }
  394. bool ApplyToFind ((Point current, bool found) foundPos)
  395. {
  396. bool gaveFullTurn = false;
  397. if (foundPos.found) {
  398. toFind.currentPointToFind = foundPos.current;
  399. if (toFind.found && toFind.currentPointToFind == toFind.startPointToFind) {
  400. gaveFullTurn = true;
  401. }
  402. if (!toFind.found) {
  403. toFind.startPointToFind = toFind.currentPointToFind = foundPos.current;
  404. toFind.found = foundPos.found;
  405. }
  406. }
  407. return gaveFullTurn;
  408. }
  409. (Point current, bool found) GetFoundNextTextPoint (ustring text, int linesCount, bool matchCase, bool matchWholeWord, Point start)
  410. {
  411. for (int i = start.Y; i < linesCount; i++) {
  412. var x = lines [i];
  413. var txt = ustring.Make (x).ToString ();
  414. if (!matchCase) {
  415. txt = txt.ToUpper ();
  416. }
  417. var matchText = !matchCase ? text.ToUpper ().ToString () : text.ToString ();
  418. var col = txt.IndexOf (matchText, Math.Min (start.X, txt.Length));
  419. if (col > -1 && matchWholeWord && !MatchWholeWord (txt, matchText, col)) {
  420. continue;
  421. }
  422. if (col > -1 && ((i == start.Y && col >= start.X)
  423. || i > start.Y)
  424. && txt.Contains (matchText)) {
  425. return (new Point (col, i), true);
  426. } else if (col == -1 && start.X > 0) {
  427. start.X = 0;
  428. }
  429. }
  430. return (Point.Empty, false);
  431. }
  432. (Point current, bool found) GetFoundPreviousTextPoint (ustring text, int linesCount, bool matchCase, bool matchWholeWord, Point start)
  433. {
  434. for (int i = linesCount; i >= 0; i--) {
  435. var x = lines [i];
  436. var txt = ustring.Make (x).ToString ();
  437. if (!matchCase) {
  438. txt = txt.ToUpper ();
  439. }
  440. if (start.Y != i) {
  441. start.X = Math.Max (x.Count - 1, 0);
  442. }
  443. var matchText = !matchCase ? text.ToUpper ().ToString () : text.ToString ();
  444. var col = txt.LastIndexOf (matchText, toFind.found ? start.X - 1 : start.X);
  445. if (col > -1 && matchWholeWord && !MatchWholeWord (txt, matchText, col)) {
  446. continue;
  447. }
  448. if (col > -1 && ((i <= linesCount && col <= start.X)
  449. || i < start.Y)
  450. && txt.Contains (matchText)) {
  451. return (new Point (col, i), true);
  452. }
  453. }
  454. return (Point.Empty, false);
  455. }
  456. bool MatchWholeWord (string source, string matchText, int index = 0)
  457. {
  458. if (string.IsNullOrEmpty (source) || string.IsNullOrEmpty (matchText)) {
  459. return false;
  460. }
  461. var txt = matchText.Trim ();
  462. var start = index > 0 ? index - 1 : 0;
  463. var end = index + txt.Length;
  464. if ((start == 0 || Rune.IsWhiteSpace (source [start]))
  465. && (end == source.Length || Rune.IsWhiteSpace (source [end]))) {
  466. return true;
  467. }
  468. return false;
  469. }
  470. /// <summary>
  471. /// Redefine column and line tracking.
  472. /// </summary>
  473. /// <param name="point">Contains the column and line.</param>
  474. internal void ResetContinuousFind (Point point)
  475. {
  476. toFind.startPointToFind = toFind.currentPointToFind = point;
  477. toFind.found = false;
  478. }
  479. }
  480. class HistoryText {
  481. public enum LineStatus {
  482. Original,
  483. Replaced,
  484. Removed,
  485. Added
  486. }
  487. public class HistoryTextItem {
  488. public List<List<Rune>> Lines;
  489. public Point CursorPosition;
  490. public LineStatus LineStatus;
  491. public bool IsUndoing;
  492. public Point FinalCursorPosition;
  493. public HistoryTextItem RemovedOnAdded;
  494. public HistoryTextItem (List<List<Rune>> lines, Point curPos, LineStatus linesStatus)
  495. {
  496. Lines = lines;
  497. CursorPosition = curPos;
  498. LineStatus = linesStatus;
  499. }
  500. public HistoryTextItem (HistoryTextItem historyTextItem)
  501. {
  502. Lines = new List<List<Rune>> (historyTextItem.Lines);
  503. CursorPosition = new Point (historyTextItem.CursorPosition.X, historyTextItem.CursorPosition.Y);
  504. LineStatus = historyTextItem.LineStatus;
  505. }
  506. public override string ToString ()
  507. {
  508. return $"(Count: {Lines.Count}, Cursor: {CursorPosition}, Status: {LineStatus})";
  509. }
  510. }
  511. List<HistoryTextItem> historyTextItems = new List<HistoryTextItem> ();
  512. int idxHistoryText = -1;
  513. ustring originalText;
  514. public bool IsFromHistory { get; private set; }
  515. public bool HasHistoryChanges => idxHistoryText > -1;
  516. public event Action<HistoryTextItem> ChangeText;
  517. public void Add (List<List<Rune>> lines, Point curPos, LineStatus lineStatus = LineStatus.Original)
  518. {
  519. if (lineStatus == LineStatus.Original && historyTextItems.Count > 0
  520. && historyTextItems.Last ().LineStatus == LineStatus.Original) {
  521. return;
  522. }
  523. if (lineStatus == LineStatus.Replaced && historyTextItems.Count > 0
  524. && historyTextItems.Last ().LineStatus == LineStatus.Replaced) {
  525. return;
  526. }
  527. if (historyTextItems.Count == 0 && lineStatus != LineStatus.Original)
  528. throw new ArgumentException ("The first item must be the original.");
  529. if (idxHistoryText >= 0 && idxHistoryText + 1 < historyTextItems.Count)
  530. historyTextItems.RemoveRange (idxHistoryText + 1, historyTextItems.Count - idxHistoryText - 1);
  531. historyTextItems.Add (new HistoryTextItem (lines, curPos, lineStatus));
  532. idxHistoryText++;
  533. }
  534. public void ReplaceLast (List<List<Rune>> lines, Point curPos, LineStatus lineStatus)
  535. {
  536. var found = historyTextItems.FindLast (x => x.LineStatus == lineStatus);
  537. if (found != null) {
  538. found.Lines = lines;
  539. found.CursorPosition = curPos;
  540. }
  541. }
  542. public void Undo ()
  543. {
  544. if (historyTextItems?.Count > 0 && idxHistoryText > 0) {
  545. IsFromHistory = true;
  546. idxHistoryText--;
  547. var historyTextItem = new HistoryTextItem (historyTextItems [idxHistoryText]) {
  548. IsUndoing = true
  549. };
  550. ProcessChanges (ref historyTextItem);
  551. IsFromHistory = false;
  552. }
  553. }
  554. public void Redo ()
  555. {
  556. if (historyTextItems?.Count > 0 && idxHistoryText < historyTextItems.Count - 1) {
  557. IsFromHistory = true;
  558. idxHistoryText++;
  559. var historyTextItem = new HistoryTextItem (historyTextItems [idxHistoryText]) {
  560. IsUndoing = false
  561. };
  562. ProcessChanges (ref historyTextItem);
  563. IsFromHistory = false;
  564. }
  565. }
  566. void ProcessChanges (ref HistoryTextItem historyTextItem)
  567. {
  568. if (historyTextItem.IsUndoing) {
  569. if (idxHistoryText - 1 > -1 && ((historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Added)
  570. || historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Removed
  571. || (historyTextItem.LineStatus == LineStatus.Replaced &&
  572. historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Original))) {
  573. idxHistoryText--;
  574. while (historyTextItems [idxHistoryText].LineStatus == LineStatus.Added
  575. && historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Removed) {
  576. idxHistoryText--;
  577. }
  578. historyTextItem = new HistoryTextItem (historyTextItems [idxHistoryText]);
  579. historyTextItem.IsUndoing = true;
  580. historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
  581. }
  582. if (historyTextItem.LineStatus == LineStatus.Removed && historyTextItems [idxHistoryText + 1].LineStatus == LineStatus.Added) {
  583. historyTextItem.RemovedOnAdded = new HistoryTextItem (historyTextItems [idxHistoryText + 1]);
  584. }
  585. if ((historyTextItem.LineStatus == LineStatus.Added && historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Original)
  586. || (historyTextItem.LineStatus == LineStatus.Removed && historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Original)
  587. || (historyTextItem.LineStatus == LineStatus.Added && historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Removed)) {
  588. if (!historyTextItem.Lines [0].SequenceEqual (historyTextItems [idxHistoryText - 1].Lines [0])
  589. && historyTextItem.CursorPosition == historyTextItems [idxHistoryText - 1].CursorPosition) {
  590. historyTextItem.Lines [0] = new List<Rune> (historyTextItems [idxHistoryText - 1].Lines [0]);
  591. }
  592. if (historyTextItem.LineStatus == LineStatus.Added && historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Removed) {
  593. historyTextItem.FinalCursorPosition = historyTextItems [idxHistoryText - 2].CursorPosition;
  594. } else {
  595. historyTextItem.FinalCursorPosition = historyTextItems [idxHistoryText - 1].CursorPosition;
  596. }
  597. } else {
  598. historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
  599. }
  600. OnChangeText (historyTextItem);
  601. while (historyTextItems [idxHistoryText].LineStatus == LineStatus.Removed
  602. || historyTextItems [idxHistoryText].LineStatus == LineStatus.Added) {
  603. idxHistoryText--;
  604. }
  605. } else if (!historyTextItem.IsUndoing) {
  606. if (idxHistoryText + 1 < historyTextItems.Count && (historyTextItem.LineStatus == LineStatus.Original
  607. || historyTextItems [idxHistoryText + 1].LineStatus == LineStatus.Added
  608. || historyTextItems [idxHistoryText + 1].LineStatus == LineStatus.Removed)) {
  609. idxHistoryText++;
  610. historyTextItem = new HistoryTextItem (historyTextItems [idxHistoryText]);
  611. historyTextItem.IsUndoing = false;
  612. historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
  613. }
  614. if (historyTextItem.LineStatus == LineStatus.Added && historyTextItems [idxHistoryText - 1].LineStatus == LineStatus.Removed) {
  615. historyTextItem.RemovedOnAdded = new HistoryTextItem (historyTextItems [idxHistoryText - 1]);
  616. }
  617. if ((historyTextItem.LineStatus == LineStatus.Removed && historyTextItems [idxHistoryText + 1].LineStatus == LineStatus.Replaced)
  618. || (historyTextItem.LineStatus == LineStatus.Removed && historyTextItems [idxHistoryText + 1].LineStatus == LineStatus.Original)
  619. || (historyTextItem.LineStatus == LineStatus.Added && historyTextItems [idxHistoryText + 1].LineStatus == LineStatus.Replaced)) {
  620. if (historyTextItem.LineStatus == LineStatus.Removed
  621. && !historyTextItem.Lines [0].SequenceEqual (historyTextItems [idxHistoryText + 1].Lines [0])) {
  622. historyTextItem.Lines [0] = new List<Rune> (historyTextItems [idxHistoryText + 1].Lines [0]);
  623. }
  624. historyTextItem.FinalCursorPosition = historyTextItems [idxHistoryText + 1].CursorPosition;
  625. } else {
  626. historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
  627. }
  628. OnChangeText (historyTextItem);
  629. while (historyTextItems [idxHistoryText].LineStatus == LineStatus.Removed
  630. || historyTextItems [idxHistoryText].LineStatus == LineStatus.Added) {
  631. idxHistoryText++;
  632. }
  633. }
  634. }
  635. void OnChangeText (HistoryTextItem lines)
  636. {
  637. ChangeText?.Invoke (lines);
  638. }
  639. public void Clear (ustring text)
  640. {
  641. historyTextItems.Clear ();
  642. idxHistoryText = -1;
  643. originalText = text;
  644. }
  645. public bool IsDirty (ustring text)
  646. {
  647. return originalText != text;
  648. }
  649. }
  650. class WordWrapManager {
  651. class WrappedLine {
  652. public int ModelLine;
  653. public int Row;
  654. public int RowIndex;
  655. public int ColWidth;
  656. }
  657. List<WrappedLine> wrappedModelLines = new List<WrappedLine> ();
  658. int frameWidth;
  659. bool isWrapModelRefreshing;
  660. public TextModel Model { get; private set; }
  661. public WordWrapManager (TextModel model)
  662. {
  663. Model = model;
  664. }
  665. public TextModel WrapModel (int width, out int nRow, out int nCol, out int nStartRow, out int nStartCol,
  666. int row = 0, int col = 0, int startRow = 0, int startCol = 0, int tabWidth = 0, bool preserveTrailingSpaces = true)
  667. {
  668. frameWidth = width;
  669. var modelRow = isWrapModelRefreshing ? row : GetModelLineFromWrappedLines (row);
  670. var modelCol = isWrapModelRefreshing ? col : GetModelColFromWrappedLines (row, col);
  671. var modelStartRow = isWrapModelRefreshing ? startRow : GetModelLineFromWrappedLines (startRow);
  672. var modelStartCol = isWrapModelRefreshing ? startCol : GetModelColFromWrappedLines (startRow, startCol);
  673. var wrappedModel = new TextModel ();
  674. int lines = 0;
  675. nRow = 0;
  676. nCol = 0;
  677. nStartRow = 0;
  678. nStartCol = 0;
  679. bool isRowAndColSetted = row == 0 && col == 0;
  680. bool isStartRowAndColSetted = startRow == 0 && startCol == 0;
  681. List<WrappedLine> wModelLines = new List<WrappedLine> ();
  682. for (int i = 0; i < Model.Count; i++) {
  683. var line = Model.GetLine (i);
  684. var wrappedLines = ToListRune (
  685. TextFormatter.Format (ustring.Make (line), width, TextAlignment.Left, true, preserveTrailingSpaces, tabWidth));
  686. int sumColWidth = 0;
  687. for (int j = 0; j < wrappedLines.Count; j++) {
  688. var wrapLine = wrappedLines [j];
  689. if (!isRowAndColSetted && modelRow == i) {
  690. if (nCol + wrapLine.Count <= modelCol) {
  691. nCol += wrapLine.Count;
  692. nRow = lines;
  693. if (nCol == modelCol) {
  694. nCol = wrapLine.Count;
  695. isRowAndColSetted = true;
  696. } else if (j == wrappedLines.Count - 1) {
  697. nCol = wrapLine.Count - j + modelCol - nCol;
  698. isRowAndColSetted = true;
  699. }
  700. } else {
  701. var offset = nCol + wrapLine.Count - modelCol;
  702. nCol = wrapLine.Count - offset;
  703. nRow = lines;
  704. isRowAndColSetted = true;
  705. }
  706. }
  707. if (!isStartRowAndColSetted && modelStartRow == i) {
  708. if (nStartCol + wrapLine.Count <= modelStartCol) {
  709. nStartCol += wrapLine.Count;
  710. nStartRow = lines;
  711. if (nStartCol == modelStartCol) {
  712. nStartCol = wrapLine.Count;
  713. isStartRowAndColSetted = true;
  714. } else if (j == wrappedLines.Count - 1) {
  715. nStartCol = wrapLine.Count - j + modelStartCol - nStartCol;
  716. isStartRowAndColSetted = true;
  717. }
  718. } else {
  719. var offset = nStartCol + wrapLine.Count - modelStartCol;
  720. nStartCol = wrapLine.Count - offset;
  721. nStartRow = lines;
  722. isStartRowAndColSetted = true;
  723. }
  724. }
  725. wrappedModel.AddLine (lines, wrapLine);
  726. sumColWidth += wrapLine.Count;
  727. var wrappedLine = new WrappedLine () {
  728. ModelLine = i,
  729. Row = lines,
  730. RowIndex = j,
  731. ColWidth = wrapLine.Count,
  732. };
  733. wModelLines.Add (wrappedLine);
  734. lines++;
  735. }
  736. }
  737. wrappedModelLines = wModelLines;
  738. return wrappedModel;
  739. }
  740. public List<List<Rune>> ToListRune (List<ustring> textList)
  741. {
  742. var runesList = new List<List<Rune>> ();
  743. foreach (var text in textList) {
  744. runesList.Add (text.ToRuneList ());
  745. }
  746. return runesList;
  747. }
  748. public int GetModelLineFromWrappedLines (int line) => wrappedModelLines.Count > 0
  749. ? wrappedModelLines [Math.Min (line, wrappedModelLines.Count - 1)].ModelLine
  750. : 0;
  751. public int GetModelColFromWrappedLines (int line, int col)
  752. {
  753. if (wrappedModelLines?.Count == 0) {
  754. return 0;
  755. }
  756. var modelLine = GetModelLineFromWrappedLines (line);
  757. var firstLine = wrappedModelLines.IndexOf (r => r.ModelLine == modelLine);
  758. int modelCol = 0;
  759. for (int i = firstLine; i <= line; i++) {
  760. var wLine = wrappedModelLines [i];
  761. if (i < line) {
  762. modelCol += wLine.ColWidth;
  763. } else {
  764. modelCol += col;
  765. }
  766. }
  767. return modelCol;
  768. }
  769. List<Rune> GetCurrentLine (int row) => Model.GetLine (row);
  770. public void AddLine (int row, int col)
  771. {
  772. var modelRow = GetModelLineFromWrappedLines (row);
  773. var modelCol = GetModelColFromWrappedLines (row, col);
  774. var line = GetCurrentLine (modelRow);
  775. var restCount = line.Count - modelCol;
  776. var rest = line.GetRange (modelCol, restCount);
  777. line.RemoveRange (modelCol, restCount);
  778. Model.AddLine (modelRow + 1, rest);
  779. isWrapModelRefreshing = true;
  780. WrapModel (frameWidth, out _, out _, out _, out _, modelRow + 1, 0);
  781. isWrapModelRefreshing = false;
  782. }
  783. public bool Insert (int row, int col, Rune rune)
  784. {
  785. var line = GetCurrentLine (GetModelLineFromWrappedLines (row));
  786. line.Insert (GetModelColFromWrappedLines (row, col), rune);
  787. if (line.Count > frameWidth) {
  788. return true;
  789. } else {
  790. return false;
  791. }
  792. }
  793. public bool RemoveAt (int row, int col)
  794. {
  795. var modelRow = GetModelLineFromWrappedLines (row);
  796. var line = GetCurrentLine (modelRow);
  797. var modelCol = GetModelColFromWrappedLines (row, col);
  798. if (modelCol > line.Count) {
  799. Model.RemoveLine (modelRow);
  800. RemoveAt (row, 0);
  801. return false;
  802. }
  803. if (modelCol < line.Count)
  804. line.RemoveAt (modelCol);
  805. if (line.Count > frameWidth || (row + 1 < wrappedModelLines.Count
  806. && wrappedModelLines [row + 1].ModelLine == modelRow)) {
  807. return true;
  808. }
  809. return false;
  810. }
  811. public bool RemoveLine (int row, int col, out bool lineRemoved, bool forward = true)
  812. {
  813. lineRemoved = false;
  814. var modelRow = GetModelLineFromWrappedLines (row);
  815. var line = GetCurrentLine (modelRow);
  816. var modelCol = GetModelColFromWrappedLines (row, col);
  817. if (modelCol == 0 && line.Count == 0) {
  818. Model.RemoveLine (modelRow);
  819. return false;
  820. } else if (modelCol < line.Count) {
  821. if (forward) {
  822. line.RemoveAt (modelCol);
  823. return true;
  824. } else if (modelCol - 1 > -1) {
  825. line.RemoveAt (modelCol - 1);
  826. return true;
  827. }
  828. }
  829. lineRemoved = true;
  830. if (forward) {
  831. if (modelRow + 1 == Model.Count) {
  832. return false;
  833. }
  834. var nextLine = Model.GetLine (modelRow + 1);
  835. line.AddRange (nextLine);
  836. Model.RemoveLine (modelRow + 1);
  837. if (line.Count > frameWidth) {
  838. return true;
  839. }
  840. } else {
  841. if (modelRow == 0) {
  842. return false;
  843. }
  844. var prevLine = Model.GetLine (modelRow - 1);
  845. prevLine.AddRange (line);
  846. Model.RemoveLine (modelRow);
  847. if (prevLine.Count > frameWidth) {
  848. return true;
  849. }
  850. }
  851. return false;
  852. }
  853. public bool RemoveRange (int row, int index, int count)
  854. {
  855. var modelRow = GetModelLineFromWrappedLines (row);
  856. var line = GetCurrentLine (modelRow);
  857. var modelCol = GetModelColFromWrappedLines (row, index);
  858. try {
  859. line.RemoveRange (modelCol, count);
  860. } catch (Exception) {
  861. return false;
  862. }
  863. return true;
  864. }
  865. public void UpdateModel (TextModel model, out int nRow, out int nCol, out int nStartRow, out int nStartCol,
  866. int row, int col, int startRow, int startCol, bool preserveTrailingSpaces)
  867. {
  868. isWrapModelRefreshing = true;
  869. Model = model;
  870. WrapModel (frameWidth, out nRow, out nCol, out nStartRow, out nStartCol, row, col, startRow, startCol, tabWidth: 0, preserveTrailingSpaces);
  871. isWrapModelRefreshing = false;
  872. }
  873. public int GetWrappedLineColWidth (int line, int col, WordWrapManager wrapManager)
  874. {
  875. if (wrappedModelLines?.Count == 0)
  876. return 0;
  877. var wModelLines = wrapManager.wrappedModelLines;
  878. var modelLine = GetModelLineFromWrappedLines (line);
  879. var firstLine = wrappedModelLines.IndexOf (r => r.ModelLine == modelLine);
  880. int modelCol = 0;
  881. int colWidthOffset = 0;
  882. int i = firstLine;
  883. while (modelCol < col) {
  884. var wLine = wrappedModelLines [i];
  885. var wLineToCompare = wModelLines [i];
  886. if (wLine.ModelLine != modelLine || wLineToCompare.ModelLine != modelLine)
  887. break;
  888. modelCol += Math.Max (wLine.ColWidth, wLineToCompare.ColWidth);
  889. colWidthOffset += wLine.ColWidth - wLineToCompare.ColWidth;
  890. if (modelCol > col) {
  891. modelCol += col - modelCol;
  892. }
  893. i++;
  894. }
  895. return modelCol - colWidthOffset;
  896. }
  897. }
  898. /// <summary>
  899. /// Multi-line text editing <see cref="View"/>
  900. /// </summary>
  901. /// <remarks>
  902. /// <para>
  903. /// <see cref="TextView"/> provides a multi-line text editor. Users interact
  904. /// with it with the standard Emacs commands for movement or the arrow
  905. /// keys.
  906. /// </para>
  907. /// <list type="table">
  908. /// <listheader>
  909. /// <term>Shortcut</term>
  910. /// <description>Action performed</description>
  911. /// </listheader>
  912. /// <item>
  913. /// <term>Left cursor, Control-b</term>
  914. /// <description>
  915. /// Moves the editing point left.
  916. /// </description>
  917. /// </item>
  918. /// <item>
  919. /// <term>Right cursor, Control-f</term>
  920. /// <description>
  921. /// Moves the editing point right.
  922. /// </description>
  923. /// </item>
  924. /// <item>
  925. /// <term>Alt-b</term>
  926. /// <description>
  927. /// Moves one word back.
  928. /// </description>
  929. /// </item>
  930. /// <item>
  931. /// <term>Alt-f</term>
  932. /// <description>
  933. /// Moves one word forward.
  934. /// </description>
  935. /// </item>
  936. /// <item>
  937. /// <term>Up cursor, Control-p</term>
  938. /// <description>
  939. /// Moves the editing point one line up.
  940. /// </description>
  941. /// </item>
  942. /// <item>
  943. /// <term>Down cursor, Control-n</term>
  944. /// <description>
  945. /// Moves the editing point one line down
  946. /// </description>
  947. /// </item>
  948. /// <item>
  949. /// <term>Home key, Control-a</term>
  950. /// <description>
  951. /// Moves the cursor to the beginning of the line.
  952. /// </description>
  953. /// </item>
  954. /// <item>
  955. /// <term>End key, Control-e</term>
  956. /// <description>
  957. /// Moves the cursor to the end of the line.
  958. /// </description>
  959. /// </item>
  960. /// <item>
  961. /// <term>Control-Home</term>
  962. /// <description>
  963. /// Scrolls to the first line and moves the cursor there.
  964. /// </description>
  965. /// </item>
  966. /// <item>
  967. /// <term>Control-End</term>
  968. /// <description>
  969. /// Scrolls to the last line and moves the cursor there.
  970. /// </description>
  971. /// </item>
  972. /// <item>
  973. /// <term>Delete, Control-d</term>
  974. /// <description>
  975. /// Deletes the character in front of the cursor.
  976. /// </description>
  977. /// </item>
  978. /// <item>
  979. /// <term>Backspace</term>
  980. /// <description>
  981. /// Deletes the character behind the cursor.
  982. /// </description>
  983. /// </item>
  984. /// <item>
  985. /// <term>Control-k</term>
  986. /// <description>
  987. /// Deletes the text until the end of the line and replaces the kill buffer
  988. /// with the deleted text. You can paste this text in a different place by
  989. /// using Control-y.
  990. /// </description>
  991. /// </item>
  992. /// <item>
  993. /// <term>Control-y</term>
  994. /// <description>
  995. /// Pastes the content of the kill ring into the current position.
  996. /// </description>
  997. /// </item>
  998. /// <item>
  999. /// <term>Alt-d</term>
  1000. /// <description>
  1001. /// Deletes the word above the cursor and adds it to the kill ring. You
  1002. /// can paste the contents of the kill ring with Control-y.
  1003. /// </description>
  1004. /// </item>
  1005. /// <item>
  1006. /// <term>Control-q</term>
  1007. /// <description>
  1008. /// Quotes the next input character, to prevent the normal processing of
  1009. /// key handling to take place.
  1010. /// </description>
  1011. /// </item>
  1012. /// </list>
  1013. /// </remarks>
  1014. public class TextView : View {
  1015. TextModel model = new TextModel ();
  1016. int topRow;
  1017. int leftColumn;
  1018. int currentRow;
  1019. int currentColumn;
  1020. int selectionStartColumn, selectionStartRow;
  1021. bool selecting;
  1022. bool wordWrap;
  1023. WordWrapManager wrapManager;
  1024. bool continuousFind;
  1025. int bottomOffset, rightOffset;
  1026. int tabWidth = 4;
  1027. bool allowsTab = true;
  1028. bool allowsReturn = true;
  1029. bool multiline = true;
  1030. HistoryText historyText = new HistoryText ();
  1031. CultureInfo currentCulture;
  1032. /// <summary>
  1033. /// Raised when the <see cref="Text"/> of the <see cref="TextView"/> changes.
  1034. /// </summary>
  1035. public event Action TextChanged;
  1036. /// <summary>
  1037. /// Invoked with the unwrapped <see cref="CursorPosition"/>.
  1038. /// </summary>
  1039. public event Action<Point> UnwrappedCursorPosition;
  1040. /// <summary>
  1041. /// Provides autocomplete context menu based on suggestions at the current cursor
  1042. /// position. Populate <see cref="Autocomplete.AllSuggestions"/> to enable this feature
  1043. /// </summary>
  1044. public IAutocomplete Autocomplete { get; protected set; } = new TextViewAutocomplete ();
  1045. #if false
  1046. /// <summary>
  1047. /// Changed event, raised when the text has clicked.
  1048. /// </summary>
  1049. /// <remarks>
  1050. /// Client code can hook up to this event, it is
  1051. /// raised when the text in the entry changes.
  1052. /// </remarks>
  1053. public Action Changed;
  1054. #endif
  1055. /// <summary>
  1056. /// Initializes a <see cref="TextView"/> on the specified area, with absolute position and size.
  1057. /// </summary>
  1058. /// <remarks>
  1059. /// </remarks>
  1060. public TextView (Rect frame) : base (frame)
  1061. {
  1062. Initialize ();
  1063. }
  1064. /// <summary>
  1065. /// Initializes a <see cref="TextView"/> on the specified area,
  1066. /// with dimensions controlled with the X, Y, Width and Height properties.
  1067. /// </summary>
  1068. public TextView () : base ()
  1069. {
  1070. Initialize ();
  1071. }
  1072. void Initialize ()
  1073. {
  1074. CanFocus = true;
  1075. Used = true;
  1076. model.LinesLoaded += Model_LinesLoaded;
  1077. historyText.ChangeText += HistoryText_ChangeText;
  1078. Initialized += TextView_Initialized;
  1079. // Things this view knows how to do
  1080. AddCommand (Command.PageDown, () => { ProcessPageDown (); return true; });
  1081. AddCommand (Command.PageDownExtend, () => { ProcessPageDownExtend (); return true; });
  1082. AddCommand (Command.PageUp, () => { ProcessPageUp (); return true; });
  1083. AddCommand (Command.PageUpExtend, () => { ProcessPageUpExtend (); return true; });
  1084. AddCommand (Command.LineDown, () => { ProcessMoveDown (); return true; });
  1085. AddCommand (Command.LineDownExtend, () => { ProcessMoveDownExtend (); return true; });
  1086. AddCommand (Command.LineUp, () => { ProcessMoveUp (); return true; });
  1087. AddCommand (Command.LineUpExtend, () => { ProcessMoveUpExtend (); return true; });
  1088. AddCommand (Command.Right, () => ProcessMoveRight ());
  1089. AddCommand (Command.RightExtend, () => { ProcessMoveRightExtend (); return true; });
  1090. AddCommand (Command.Left, () => ProcessMoveLeft ());
  1091. AddCommand (Command.LeftExtend, () => { ProcessMoveLeftExtend (); return true; });
  1092. AddCommand (Command.DeleteCharLeft, () => { ProcessDeleteCharLeft (); return true; });
  1093. AddCommand (Command.StartOfLine, () => { ProcessMoveStartOfLine (); return true; });
  1094. AddCommand (Command.StartOfLineExtend, () => { ProcessMoveStartOfLineExtend (); return true; });
  1095. AddCommand (Command.DeleteCharRight, () => { ProcessDeleteCharRight (); return true; });
  1096. AddCommand (Command.EndOfLine, () => { ProcessMoveEndOfLine (); return true; });
  1097. AddCommand (Command.EndOfLineExtend, () => { ProcessMoveEndOfLineExtend (); return true; });
  1098. AddCommand (Command.CutToEndLine, () => { KillToEndOfLine (); return true; });
  1099. AddCommand (Command.CutToStartLine, () => { KillToStartOfLine (); return true; });
  1100. AddCommand (Command.Paste, () => { ProcessPaste (); return true; });
  1101. AddCommand (Command.ToggleExtend, () => { ToggleSelecting (); return true; });
  1102. AddCommand (Command.Copy, () => { ProcessCopy (); return true; });
  1103. AddCommand (Command.Cut, () => { ProcessCut (); return true; });
  1104. AddCommand (Command.WordLeft, () => { ProcessMoveWordBackward (); return true; });
  1105. AddCommand (Command.WordLeftExtend, () => { ProcessMoveWordBackwardExtend (); return true; });
  1106. AddCommand (Command.WordRight, () => { ProcessMoveWordForward (); return true; });
  1107. AddCommand (Command.WordRightExtend, () => { ProcessMoveWordForwardExtend (); return true; });
  1108. AddCommand (Command.KillWordForwards, () => { ProcessKillWordForward (); return true; });
  1109. AddCommand (Command.KillWordBackwards, () => { ProcessKillWordBackward (); return true; });
  1110. AddCommand (Command.NewLine, () => ProcessReturn ());
  1111. AddCommand (Command.BottomEnd, () => { MoveBottomEnd (); return true; });
  1112. AddCommand (Command.BottomEndExtend, () => { MoveBottomEndExtend (); return true; });
  1113. AddCommand (Command.TopHome, () => { MoveTopHome (); return true; });
  1114. AddCommand (Command.TopHomeExtend, () => { MoveTopHomeExtend (); return true; });
  1115. AddCommand (Command.SelectAll, () => { ProcessSelectAll (); return true; });
  1116. AddCommand (Command.ToggleOverwrite, () => { ProcessSetOverwrite (); return true; });
  1117. AddCommand (Command.EnableOverwrite, () => { SetOverwrite (true); return true; });
  1118. AddCommand (Command.DisableOverwrite, () => { SetOverwrite (false); return true; });
  1119. AddCommand (Command.Tab, () => ProcessTab ());
  1120. AddCommand (Command.BackTab, () => ProcessBackTab ());
  1121. AddCommand (Command.NextView, () => ProcessMoveNextView ());
  1122. AddCommand (Command.PreviousView, () => ProcessMovePreviousView ());
  1123. AddCommand (Command.Undo, () => { UndoChanges (); return true; });
  1124. AddCommand (Command.Redo, () => { RedoChanges (); return true; });
  1125. AddCommand (Command.DeleteAll, () => { DeleteAll (); return true; });
  1126. AddCommand (Command.Accept, () => {
  1127. ContextMenu.Position = new Point (CursorPosition.X - leftColumn + 2, CursorPosition.Y - topRow + 2);
  1128. ShowContextMenu ();
  1129. return true;
  1130. });
  1131. // Default keybindings for this view
  1132. AddKeyBinding (Key.PageDown, Command.PageDown);
  1133. AddKeyBinding (Key.V | Key.CtrlMask, Command.PageDown);
  1134. AddKeyBinding (Key.PageDown | Key.ShiftMask, Command.PageDownExtend);
  1135. AddKeyBinding (Key.PageUp, Command.PageUp);
  1136. AddKeyBinding (((int)'V' + Key.AltMask), Command.PageUp);
  1137. AddKeyBinding (Key.PageUp | Key.ShiftMask, Command.PageUpExtend);
  1138. AddKeyBinding (Key.N | Key.CtrlMask, Command.LineDown);
  1139. AddKeyBinding (Key.CursorDown, Command.LineDown);
  1140. AddKeyBinding (Key.CursorDown | Key.ShiftMask, Command.LineDownExtend);
  1141. AddKeyBinding (Key.P | Key.CtrlMask, Command.LineUp);
  1142. AddKeyBinding (Key.CursorUp, Command.LineUp);
  1143. AddKeyBinding (Key.CursorUp | Key.ShiftMask, Command.LineUpExtend);
  1144. AddKeyBinding (Key.F | Key.CtrlMask, Command.Right);
  1145. AddKeyBinding (Key.CursorRight, Command.Right);
  1146. AddKeyBinding (Key.CursorRight | Key.ShiftMask, Command.RightExtend);
  1147. AddKeyBinding (Key.B | Key.CtrlMask, Command.Left);
  1148. AddKeyBinding (Key.CursorLeft, Command.Left);
  1149. AddKeyBinding (Key.CursorLeft | Key.ShiftMask, Command.LeftExtend);
  1150. AddKeyBinding (Key.Delete, Command.DeleteCharLeft);
  1151. AddKeyBinding (Key.Backspace, Command.DeleteCharLeft);
  1152. AddKeyBinding (Key.Home, Command.StartOfLine);
  1153. AddKeyBinding (Key.A | Key.CtrlMask, Command.StartOfLine);
  1154. AddKeyBinding (Key.Home | Key.ShiftMask, Command.StartOfLineExtend);
  1155. AddKeyBinding (Key.DeleteChar, Command.DeleteCharRight);
  1156. AddKeyBinding (Key.D | Key.CtrlMask, Command.DeleteCharRight);
  1157. AddKeyBinding (Key.End, Command.EndOfLine);
  1158. AddKeyBinding (Key.E | Key.CtrlMask, Command.EndOfLine);
  1159. AddKeyBinding (Key.End | Key.ShiftMask, Command.EndOfLineExtend);
  1160. AddKeyBinding (Key.K | Key.CtrlMask, Command.CutToEndLine); // kill-to-end
  1161. AddKeyBinding (Key.DeleteChar | Key.CtrlMask | Key.ShiftMask, Command.CutToEndLine); // kill-to-end
  1162. AddKeyBinding (Key.K | Key.AltMask, Command.CutToStartLine); // kill-to-start
  1163. AddKeyBinding (Key.Backspace | Key.CtrlMask | Key.ShiftMask, Command.CutToStartLine); // kill-to-start
  1164. AddKeyBinding (Key.Y | Key.CtrlMask, Command.Paste); // Control-y, yank
  1165. AddKeyBinding (Key.Space | Key.CtrlMask, Command.ToggleExtend);
  1166. AddKeyBinding (((int)'C' + Key.AltMask), Command.Copy);
  1167. AddKeyBinding (Key.C | Key.CtrlMask, Command.Copy);
  1168. AddKeyBinding (((int)'W' + Key.AltMask), Command.Cut);
  1169. AddKeyBinding (Key.W | Key.CtrlMask, Command.Cut);
  1170. AddKeyBinding (Key.X | Key.CtrlMask, Command.Cut);
  1171. AddKeyBinding (Key.CursorLeft | Key.CtrlMask, Command.WordLeft);
  1172. AddKeyBinding ((Key)((int)'B' + Key.AltMask), Command.WordLeft);
  1173. AddKeyBinding (Key.CursorLeft | Key.CtrlMask | Key.ShiftMask, Command.WordLeftExtend);
  1174. AddKeyBinding (Key.CursorRight | Key.CtrlMask, Command.WordRight);
  1175. AddKeyBinding ((Key)((int)'F' + Key.AltMask), Command.WordRight);
  1176. AddKeyBinding (Key.CursorRight | Key.CtrlMask | Key.ShiftMask, Command.WordRightExtend);
  1177. AddKeyBinding (Key.DeleteChar | Key.CtrlMask, Command.KillWordForwards); // kill-word-forwards
  1178. AddKeyBinding (Key.Backspace | Key.CtrlMask, Command.KillWordBackwards); // kill-word-backwards
  1179. AddKeyBinding (Key.Enter, Command.NewLine);
  1180. AddKeyBinding (Key.End | Key.CtrlMask, Command.BottomEnd);
  1181. AddKeyBinding (Key.End | Key.CtrlMask | Key.ShiftMask, Command.BottomEndExtend);
  1182. AddKeyBinding (Key.Home | Key.CtrlMask, Command.TopHome);
  1183. AddKeyBinding (Key.Home | Key.CtrlMask | Key.ShiftMask, Command.TopHomeExtend);
  1184. AddKeyBinding (Key.T | Key.CtrlMask, Command.SelectAll);
  1185. AddKeyBinding (Key.InsertChar, Command.ToggleOverwrite);
  1186. AddKeyBinding (Key.Tab, Command.Tab);
  1187. AddKeyBinding (Key.BackTab | Key.ShiftMask, Command.BackTab);
  1188. AddKeyBinding (Key.Tab | Key.CtrlMask, Command.NextView);
  1189. AddKeyBinding (Application.AlternateForwardKey, Command.NextView);
  1190. AddKeyBinding (Key.Tab | Key.CtrlMask | Key.ShiftMask, Command.PreviousView);
  1191. AddKeyBinding (Application.AlternateBackwardKey, Command.PreviousView);
  1192. AddKeyBinding (Key.Z | Key.CtrlMask, Command.Undo);
  1193. AddKeyBinding (Key.R | Key.CtrlMask, Command.Redo);
  1194. AddKeyBinding (Key.G | Key.CtrlMask, Command.DeleteAll);
  1195. AddKeyBinding (Key.D | Key.CtrlMask | Key.ShiftMask, Command.DeleteAll);
  1196. currentCulture = Thread.CurrentThread.CurrentUICulture;
  1197. ContextMenu = new ContextMenu () { MenuItems = BuildContextMenuBarItem () };
  1198. ContextMenu.KeyChanged += ContextMenu_KeyChanged;
  1199. AddKeyBinding (ContextMenu.Key, Command.Accept);
  1200. }
  1201. private MenuBarItem BuildContextMenuBarItem ()
  1202. {
  1203. return new MenuBarItem (new MenuItem [] {
  1204. new MenuItem (Strings.ctxSelectAll, "", () => SelectAll (), null, null, GetKeyFromCommand (Command.SelectAll)),
  1205. new MenuItem (Strings.ctxDeleteAll, "", () => DeleteAll (), null, null, GetKeyFromCommand (Command.DeleteAll)),
  1206. new MenuItem (Strings.ctxCopy, "", () => Copy (), null, null, GetKeyFromCommand (Command.Copy)),
  1207. new MenuItem (Strings.ctxCut, "", () => Cut (), null, null, GetKeyFromCommand (Command.Cut)),
  1208. new MenuItem (Strings.ctxPaste, "", () => Paste (), null, null, GetKeyFromCommand (Command.Paste)),
  1209. new MenuItem (Strings.ctxUndo, "", () => UndoChanges (), null, null, GetKeyFromCommand (Command.Undo)),
  1210. new MenuItem (Strings.ctxRedo, "", () => RedoChanges (), null, null, GetKeyFromCommand (Command.Redo)),
  1211. });
  1212. }
  1213. private void ContextMenu_KeyChanged (Key obj)
  1214. {
  1215. ReplaceKeyBinding (obj, ContextMenu.Key);
  1216. }
  1217. private void Model_LinesLoaded ()
  1218. {
  1219. historyText.Clear (Text);
  1220. }
  1221. private void HistoryText_ChangeText (HistoryText.HistoryTextItem obj)
  1222. {
  1223. SetWrapModel ();
  1224. var startLine = obj.CursorPosition.Y;
  1225. if (obj.RemovedOnAdded != null) {
  1226. int offset;
  1227. if (obj.IsUndoing) {
  1228. offset = Math.Max (obj.RemovedOnAdded.Lines.Count - obj.Lines.Count, 1);
  1229. } else {
  1230. offset = obj.RemovedOnAdded.Lines.Count - 1;
  1231. }
  1232. for (int i = 0; i < offset; i++) {
  1233. if (Lines > obj.RemovedOnAdded.CursorPosition.Y) {
  1234. model.RemoveLine (obj.RemovedOnAdded.CursorPosition.Y);
  1235. } else {
  1236. break;
  1237. }
  1238. }
  1239. }
  1240. for (int i = 0; i < obj.Lines.Count; i++) {
  1241. if (i == 0) {
  1242. model.ReplaceLine (startLine, obj.Lines [i]);
  1243. } else if ((obj.IsUndoing && obj.LineStatus == HistoryText.LineStatus.Removed)
  1244. || !obj.IsUndoing && obj.LineStatus == HistoryText.LineStatus.Added) {
  1245. model.AddLine (startLine, obj.Lines [i]);
  1246. } else if (Lines > obj.CursorPosition.Y + 1) {
  1247. model.RemoveLine (obj.CursorPosition.Y + 1);
  1248. }
  1249. startLine++;
  1250. }
  1251. CursorPosition = obj.FinalCursorPosition;
  1252. UpdateWrapModel ();
  1253. Adjust ();
  1254. }
  1255. void TextView_Initialized (object sender, EventArgs e)
  1256. {
  1257. Autocomplete.HostControl = this;
  1258. Application.Top.AlternateForwardKeyChanged += Top_AlternateForwardKeyChanged;
  1259. Application.Top.AlternateBackwardKeyChanged += Top_AlternateBackwardKeyChanged;
  1260. }
  1261. void Top_AlternateBackwardKeyChanged (Key obj)
  1262. {
  1263. ReplaceKeyBinding (obj, Application.AlternateBackwardKey);
  1264. }
  1265. void Top_AlternateForwardKeyChanged (Key obj)
  1266. {
  1267. ReplaceKeyBinding (obj, Application.AlternateForwardKey);
  1268. }
  1269. /// <summary>
  1270. /// Tracks whether the text view should be considered "used", that is, that the user has moved in the entry,
  1271. /// so new input should be appended at the cursor position, rather than clearing the entry
  1272. /// </summary>
  1273. public bool Used { get; set; }
  1274. void ResetPosition ()
  1275. {
  1276. topRow = leftColumn = currentRow = currentColumn = 0;
  1277. StopSelecting ();
  1278. ResetCursorVisibility ();
  1279. }
  1280. /// <summary>
  1281. /// Sets or gets the text in the <see cref="TextView"/>.
  1282. /// </summary>
  1283. /// <remarks>
  1284. /// </remarks>
  1285. public override ustring Text {
  1286. get {
  1287. if (wordWrap) {
  1288. return wrapManager.Model.ToString ();
  1289. } else {
  1290. return model.ToString ();
  1291. }
  1292. }
  1293. set {
  1294. ResetPosition ();
  1295. model.LoadString (value);
  1296. if (wordWrap) {
  1297. wrapManager = new WordWrapManager (model);
  1298. model = wrapManager.WrapModel (frameWidth, out _, out _, out _, out _);
  1299. }
  1300. TextChanged?.Invoke ();
  1301. SetNeedsDisplay ();
  1302. historyText.Clear (Text);
  1303. }
  1304. }
  1305. ///<inheritdoc/>
  1306. public override Rect Frame {
  1307. get => base.Frame;
  1308. set {
  1309. base.Frame = value;
  1310. WrapTextModel ();
  1311. Adjust ();
  1312. }
  1313. }
  1314. void WrapTextModel ()
  1315. {
  1316. if (wordWrap && wrapManager != null) {
  1317. model = wrapManager.WrapModel (frameWidth,
  1318. out int nRow, out int nCol,
  1319. out int nStartRow, out int nStartCol,
  1320. currentRow, currentColumn,
  1321. selectionStartRow, selectionStartColumn,
  1322. tabWidth, preserveTrailingSpaces: true);
  1323. currentRow = nRow;
  1324. currentColumn = nCol;
  1325. selectionStartRow = nStartRow;
  1326. selectionStartColumn = nStartCol;
  1327. SetNeedsDisplay ();
  1328. }
  1329. }
  1330. int frameWidth => Math.Max (Frame.Width - (RightOffset != 0 ? 2 : 1), 0);
  1331. /// <summary>
  1332. /// Gets or sets the top row.
  1333. /// </summary>
  1334. public int TopRow { get => topRow; set => topRow = Math.Max (Math.Min (value, Lines - 1), 0); }
  1335. /// <summary>
  1336. /// Gets or sets the left column.
  1337. /// </summary>
  1338. public int LeftColumn {
  1339. get => leftColumn;
  1340. set {
  1341. if (value > 0 && wordWrap)
  1342. return;
  1343. leftColumn = Math.Max (Math.Min (value, Maxlength - 1), 0);
  1344. }
  1345. }
  1346. /// <summary>
  1347. /// Gets the maximum visible length line.
  1348. /// </summary>
  1349. public int Maxlength => model.GetMaxVisibleLine (topRow, topRow + Frame.Height, TabWidth);
  1350. /// <summary>
  1351. /// Gets the number of lines.
  1352. /// </summary>
  1353. public int Lines => model.Count;
  1354. /// <summary>
  1355. /// Sets or gets the current cursor position.
  1356. /// </summary>
  1357. public Point CursorPosition {
  1358. get => new Point (currentColumn, currentRow);
  1359. set {
  1360. var line = model.GetLine (Math.Max (Math.Min (value.Y, model.Count - 1), 0));
  1361. currentColumn = value.X < 0 ? 0 : value.X > line.Count ? line.Count : value.X;
  1362. currentRow = value.Y < 0 ? 0 : value.Y > model.Count - 1
  1363. ? Math.Max (model.Count - 1, 0) : value.Y;
  1364. SetNeedsDisplay ();
  1365. Adjust ();
  1366. }
  1367. }
  1368. /// <summary>
  1369. /// Start column position of the selected text.
  1370. /// </summary>
  1371. public int SelectionStartColumn {
  1372. get => selectionStartColumn;
  1373. set {
  1374. var line = model.GetLine (currentRow);
  1375. selectionStartColumn = value < 0 ? 0 : value > line.Count ? line.Count : value;
  1376. selecting = true;
  1377. SetNeedsDisplay ();
  1378. Adjust ();
  1379. }
  1380. }
  1381. /// <summary>
  1382. /// Start row position of the selected text.
  1383. /// </summary>
  1384. public int SelectionStartRow {
  1385. get => selectionStartRow;
  1386. set {
  1387. selectionStartRow = value < 0 ? 0 : value > model.Count - 1
  1388. ? Math.Max (model.Count - 1, 0) : value;
  1389. selecting = true;
  1390. SetNeedsDisplay ();
  1391. Adjust ();
  1392. }
  1393. }
  1394. /// <summary>
  1395. /// The selected text.
  1396. /// </summary>
  1397. public ustring SelectedText {
  1398. get {
  1399. if (!selecting || (model.Count == 1 && model.GetLine (0).Count == 0)) {
  1400. return ustring.Empty;
  1401. }
  1402. return GetSelectedRegion ();
  1403. }
  1404. }
  1405. /// <summary>
  1406. /// Length of the selected text.
  1407. /// </summary>
  1408. public int SelectedLength => GetSelectedLength ();
  1409. /// <summary>
  1410. /// Get or sets the selecting.
  1411. /// </summary>
  1412. public bool Selecting {
  1413. get => selecting;
  1414. set => selecting = value;
  1415. }
  1416. /// <summary>
  1417. /// Allows word wrap the to fit the available container width.
  1418. /// </summary>
  1419. public bool WordWrap {
  1420. get => wordWrap;
  1421. set {
  1422. if (value == wordWrap) {
  1423. return;
  1424. }
  1425. if (value && !multiline) {
  1426. return;
  1427. }
  1428. wordWrap = value;
  1429. ResetPosition ();
  1430. if (wordWrap) {
  1431. wrapManager = new WordWrapManager (model);
  1432. model = wrapManager.WrapModel (frameWidth, out _, out _, out _, out _);
  1433. } else if (!wordWrap && wrapManager != null) {
  1434. model = wrapManager.Model;
  1435. }
  1436. SetNeedsDisplay ();
  1437. }
  1438. }
  1439. /// <summary>
  1440. /// The bottom offset needed to use a horizontal scrollbar or for another reason.
  1441. /// This is only needed with the keyboard navigation.
  1442. /// </summary>
  1443. public int BottomOffset {
  1444. get => bottomOffset;
  1445. set {
  1446. if (currentRow == Lines - 1 && bottomOffset > 0 && value == 0) {
  1447. topRow = Math.Max (topRow - bottomOffset, 0);
  1448. }
  1449. bottomOffset = value;
  1450. Adjust ();
  1451. }
  1452. }
  1453. /// <summary>
  1454. /// The right offset needed to use a vertical scrollbar or for another reason.
  1455. /// This is only needed with the keyboard navigation.
  1456. /// </summary>
  1457. public int RightOffset {
  1458. get => rightOffset;
  1459. set {
  1460. if (!wordWrap && currentColumn == GetCurrentLine ().Count && rightOffset > 0 && value == 0) {
  1461. leftColumn = Math.Max (leftColumn - rightOffset, 0);
  1462. }
  1463. rightOffset = value;
  1464. Adjust ();
  1465. }
  1466. }
  1467. /// <summary>
  1468. /// Gets or sets a value indicating whether pressing ENTER in a <see cref="TextView"/>
  1469. /// creates a new line of text in the view or activates the default button for the toplevel.
  1470. /// </summary>
  1471. public bool AllowsReturn {
  1472. get => allowsReturn;
  1473. set {
  1474. allowsReturn = value;
  1475. if (allowsReturn && !multiline) {
  1476. Multiline = true;
  1477. }
  1478. if (!allowsReturn && multiline) {
  1479. Multiline = false;
  1480. AllowsTab = false;
  1481. }
  1482. SetNeedsDisplay ();
  1483. }
  1484. }
  1485. /// <summary>
  1486. /// Gets or sets whether the <see cref="TextView"/> inserts a tab character into the text or ignores
  1487. /// tab input. If set to `false` and the user presses the tab key (or shift-tab) the focus will move to the
  1488. /// next view (or previous with shift-tab). The default is `true`; if the user presses the tab key, a tab
  1489. /// character will be inserted into the text.
  1490. /// </summary>
  1491. public bool AllowsTab {
  1492. get => allowsTab;
  1493. set {
  1494. allowsTab = value;
  1495. if (allowsTab && tabWidth == 0) {
  1496. tabWidth = 4;
  1497. }
  1498. if (allowsTab && !multiline) {
  1499. Multiline = true;
  1500. }
  1501. if (!allowsTab && tabWidth > 0) {
  1502. tabWidth = 0;
  1503. }
  1504. SetNeedsDisplay ();
  1505. }
  1506. }
  1507. /// <summary>
  1508. /// Gets or sets a value indicating the number of whitespace when pressing the TAB key.
  1509. /// </summary>
  1510. public int TabWidth {
  1511. get => tabWidth;
  1512. set {
  1513. tabWidth = Math.Max (value, 0);
  1514. if (tabWidth > 0 && !AllowsTab) {
  1515. AllowsTab = true;
  1516. }
  1517. SetNeedsDisplay ();
  1518. }
  1519. }
  1520. Dim savedHeight = null;
  1521. /// <summary>
  1522. /// Gets or sets a value indicating whether this <see cref="TextView"/> is a multiline text view.
  1523. /// </summary>
  1524. public bool Multiline {
  1525. get => multiline;
  1526. set {
  1527. multiline = value;
  1528. if (multiline && !allowsTab) {
  1529. AllowsTab = true;
  1530. }
  1531. if (multiline && !allowsReturn) {
  1532. AllowsReturn = true;
  1533. }
  1534. if (!multiline) {
  1535. AllowsReturn = false;
  1536. AllowsTab = false;
  1537. WordWrap = false;
  1538. currentColumn = 0;
  1539. currentRow = 0;
  1540. savedHeight = Height;
  1541. var lyout = LayoutStyle;
  1542. if (LayoutStyle == LayoutStyle.Computed) {
  1543. LayoutStyle = LayoutStyle.Absolute;
  1544. }
  1545. Height = 1;
  1546. LayoutStyle = lyout;
  1547. Autocomplete.PopupInsideContainer = false;
  1548. SetNeedsDisplay ();
  1549. } else if (multiline && savedHeight != null) {
  1550. var lyout = LayoutStyle;
  1551. if (LayoutStyle == LayoutStyle.Computed) {
  1552. LayoutStyle = LayoutStyle.Absolute;
  1553. }
  1554. Height = savedHeight;
  1555. LayoutStyle = lyout;
  1556. Autocomplete.PopupInsideContainer = true;
  1557. SetNeedsDisplay ();
  1558. }
  1559. }
  1560. }
  1561. /// <summary>
  1562. /// Indicates whatever the text was changed or not.
  1563. /// <see langword="true"/> if the text was changed <see langword="false"/> otherwise.
  1564. /// </summary>
  1565. public bool IsDirty => historyText.IsDirty (Text);
  1566. /// <summary>
  1567. /// Indicates whatever the text has history changes or not.
  1568. /// <see langword="true"/> if the text has history changes <see langword="false"/> otherwise.
  1569. /// </summary>
  1570. public bool HasHistoryChanges => historyText.HasHistoryChanges;
  1571. /// <summary>
  1572. /// Get the <see cref="ContextMenu"/> for this view.
  1573. /// </summary>
  1574. public ContextMenu ContextMenu { get; private set; }
  1575. int GetSelectedLength ()
  1576. {
  1577. return SelectedText.Length;
  1578. }
  1579. CursorVisibility savedCursorVisibility;
  1580. void SaveCursorVisibility ()
  1581. {
  1582. if (desiredCursorVisibility != CursorVisibility.Invisible) {
  1583. if (savedCursorVisibility == 0) {
  1584. savedCursorVisibility = desiredCursorVisibility;
  1585. }
  1586. DesiredCursorVisibility = CursorVisibility.Invisible;
  1587. }
  1588. }
  1589. void ResetCursorVisibility ()
  1590. {
  1591. if (savedCursorVisibility != 0) {
  1592. DesiredCursorVisibility = savedCursorVisibility;
  1593. savedCursorVisibility = 0;
  1594. }
  1595. }
  1596. /// <summary>
  1597. /// Loads the contents of the file into the <see cref="TextView"/>.
  1598. /// </summary>
  1599. /// <returns><c>true</c>, if file was loaded, <c>false</c> otherwise.</returns>
  1600. /// <param name="path">Path to the file to load.</param>
  1601. public bool LoadFile (string path)
  1602. {
  1603. bool res;
  1604. try {
  1605. SetWrapModel ();
  1606. res = model.LoadFile (path);
  1607. ResetPosition ();
  1608. } catch (Exception) {
  1609. throw;
  1610. } finally {
  1611. UpdateWrapModel ();
  1612. SetNeedsDisplay ();
  1613. Adjust ();
  1614. }
  1615. return res;
  1616. }
  1617. /// <summary>
  1618. /// Loads the contents of the stream into the <see cref="TextView"/>.
  1619. /// </summary>
  1620. /// <returns><c>true</c>, if stream was loaded, <c>false</c> otherwise.</returns>
  1621. /// <param name="stream">Stream to load the contents from.</param>
  1622. public void LoadStream (Stream stream)
  1623. {
  1624. model.LoadStream (stream);
  1625. ResetPosition ();
  1626. SetNeedsDisplay ();
  1627. }
  1628. /// <summary>
  1629. /// Closes the contents of the stream into the <see cref="TextView"/>.
  1630. /// </summary>
  1631. /// <returns><c>true</c>, if stream was closed, <c>false</c> otherwise.</returns>
  1632. public bool CloseFile ()
  1633. {
  1634. var res = model.CloseFile ();
  1635. ResetPosition ();
  1636. SetNeedsDisplay ();
  1637. return res;
  1638. }
  1639. /// <summary>
  1640. /// Gets the current cursor row.
  1641. /// </summary>
  1642. public int CurrentRow => currentRow;
  1643. /// <summary>
  1644. /// Gets the cursor column.
  1645. /// </summary>
  1646. /// <value>The cursor column.</value>
  1647. public int CurrentColumn => currentColumn;
  1648. /// <summary>
  1649. /// Positions the cursor on the current row and column
  1650. /// </summary>
  1651. public override void PositionCursor ()
  1652. {
  1653. if (!CanFocus || !Enabled) {
  1654. return;
  1655. }
  1656. if (selecting) {
  1657. var minRow = Math.Min (Math.Max (Math.Min (selectionStartRow, currentRow) - topRow, 0), Frame.Height);
  1658. var maxRow = Math.Min (Math.Max (Math.Max (selectionStartRow, currentRow) - topRow, 0), Frame.Height);
  1659. SetNeedsDisplay (new Rect (0, minRow, Frame.Width, maxRow));
  1660. }
  1661. var line = model.GetLine (currentRow);
  1662. var col = 0;
  1663. if (line.Count > 0) {
  1664. for (int idx = leftColumn; idx < line.Count; idx++) {
  1665. if (idx >= currentColumn)
  1666. break;
  1667. var cols = Rune.ColumnWidth (line [idx]);
  1668. if (line [idx] == '\t') {
  1669. cols += TabWidth + 1;
  1670. }
  1671. if (!TextModel.SetCol (ref col, Frame.Width, cols)) {
  1672. col = currentColumn;
  1673. break;
  1674. }
  1675. }
  1676. }
  1677. var posX = currentColumn - leftColumn;
  1678. var posY = currentRow - topRow;
  1679. if (posX > -1 && col >= posX && posX < Frame.Width - RightOffset
  1680. && topRow <= currentRow && posY < Frame.Height - BottomOffset) {
  1681. ResetCursorVisibility ();
  1682. Move (col, currentRow - topRow);
  1683. } else {
  1684. SaveCursorVisibility ();
  1685. }
  1686. }
  1687. void ClearRegion (int left, int top, int right, int bottom)
  1688. {
  1689. for (int row = top; row < bottom; row++) {
  1690. Move (left, row);
  1691. for (int col = left; col < right; col++)
  1692. AddRune (col, row, ' ');
  1693. }
  1694. }
  1695. /// <summary>
  1696. /// Sets the driver to the default color for the control where no text is being rendered. Defaults to <see cref="ColorScheme.Normal"/>.
  1697. /// </summary>
  1698. protected virtual void ColorNormal ()
  1699. {
  1700. Driver.SetAttribute (GetNormalColor ());
  1701. }
  1702. /// <summary>
  1703. /// Sets the <see cref="View.Driver"/> to an appropriate color for rendering the given <paramref name="idx"/> of the
  1704. /// current <paramref name="line"/>. Override to provide custom coloring by calling <see cref="ConsoleDriver.SetAttribute(Attribute)"/>
  1705. /// Defaults to <see cref="ColorScheme.Normal"/>.
  1706. /// </summary>
  1707. /// <param name="line"></param>
  1708. /// <param name="idx"></param>
  1709. protected virtual void ColorNormal (List<Rune> line, int idx)
  1710. {
  1711. Driver.SetAttribute (GetNormalColor ());
  1712. }
  1713. /// <summary>
  1714. /// Sets the <see cref="View.Driver"/> to an appropriate color for rendering the given <paramref name="idx"/> of the
  1715. /// current <paramref name="line"/>. Override to provide custom coloring by calling <see cref="ConsoleDriver.SetAttribute(Attribute)"/>
  1716. /// Defaults to <see cref="ColorScheme.Focus"/>.
  1717. /// </summary>
  1718. /// <param name="line"></param>
  1719. /// <param name="idx"></param>
  1720. protected virtual void ColorSelection (List<Rune> line, int idx)
  1721. {
  1722. Driver.SetAttribute (ColorScheme.Focus);
  1723. }
  1724. /// <summary>
  1725. /// Sets the <see cref="View.Driver"/> to an appropriate color for rendering the given <paramref name="idx"/> of the
  1726. /// current <paramref name="line"/>. Override to provide custom coloring by calling <see cref="ConsoleDriver.SetAttribute(Attribute)"/>
  1727. /// Defaults to <see cref="ColorScheme.HotFocus"/>.
  1728. /// </summary>
  1729. /// <param name="line"></param>
  1730. /// <param name="idx"></param>
  1731. protected virtual void ColorUsed (List<Rune> line, int idx)
  1732. {
  1733. Driver.SetAttribute (ColorScheme.HotFocus);
  1734. }
  1735. bool isReadOnly = false;
  1736. /// <summary>
  1737. /// Gets or sets whether the <see cref="TextView"/> is in read-only mode or not
  1738. /// </summary>
  1739. /// <value>Boolean value(Default false)</value>
  1740. public bool ReadOnly {
  1741. get => isReadOnly;
  1742. set {
  1743. if (value != isReadOnly) {
  1744. isReadOnly = value;
  1745. SetNeedsDisplay ();
  1746. Adjust ();
  1747. }
  1748. }
  1749. }
  1750. CursorVisibility desiredCursorVisibility = CursorVisibility.Default;
  1751. /// <summary>
  1752. /// Get / Set the wished cursor when the field is focused
  1753. /// </summary>
  1754. public CursorVisibility DesiredCursorVisibility {
  1755. get => desiredCursorVisibility;
  1756. set {
  1757. if (HasFocus) {
  1758. Application.Driver.SetCursorVisibility (value);
  1759. }
  1760. desiredCursorVisibility = value;
  1761. SetNeedsDisplay ();
  1762. }
  1763. }
  1764. ///<inheritdoc/>
  1765. public override bool OnEnter (View view)
  1766. {
  1767. //TODO: Improve it by handling read only mode of the text field
  1768. Application.Driver.SetCursorVisibility (DesiredCursorVisibility);
  1769. return base.OnEnter (view);
  1770. }
  1771. // Returns an encoded region start..end (top 32 bits are the row, low32 the column)
  1772. void GetEncodedRegionBounds (out long start, out long end,
  1773. int? startRow = null, int? startCol = null, int? cRow = null, int? cCol = null)
  1774. {
  1775. long selection;
  1776. long point;
  1777. if (startRow == null || startCol == null || cRow == null || cCol == null) {
  1778. selection = ((long)(uint)selectionStartRow << 32) | (uint)selectionStartColumn;
  1779. point = ((long)(uint)currentRow << 32) | (uint)currentColumn;
  1780. } else {
  1781. selection = ((long)(uint)startRow << 32) | (uint)startCol;
  1782. point = ((long)(uint)cRow << 32) | (uint)cCol;
  1783. }
  1784. if (selection > point) {
  1785. start = point;
  1786. end = selection;
  1787. } else {
  1788. start = selection;
  1789. end = point;
  1790. }
  1791. }
  1792. bool PointInSelection (int col, int row)
  1793. {
  1794. long start, end;
  1795. GetEncodedRegionBounds (out start, out end);
  1796. var q = ((long)(uint)row << 32) | (uint)col;
  1797. return q >= start && q <= end - 1;
  1798. }
  1799. //
  1800. // Returns a ustring with the text in the selected
  1801. // region.
  1802. //
  1803. ustring GetRegion (int? sRow = null, int? sCol = null, int? cRow = null, int? cCol = null, TextModel model = null)
  1804. {
  1805. long start, end;
  1806. GetEncodedRegionBounds (out start, out end, sRow, sCol, cRow, cCol);
  1807. if (start == end) {
  1808. return ustring.Empty;
  1809. }
  1810. int startRow = (int)(start >> 32);
  1811. var maxrow = ((int)(end >> 32));
  1812. int startCol = (int)(start & 0xffffffff);
  1813. var endCol = (int)(end & 0xffffffff);
  1814. var line = model == null ? this.model.GetLine (startRow) : model.GetLine (startRow);
  1815. if (startRow == maxrow)
  1816. return StringFromRunes (line.GetRange (startCol, endCol - startCol));
  1817. ustring res = StringFromRunes (line.GetRange (startCol, line.Count - startCol));
  1818. for (int row = startRow + 1; row < maxrow; row++) {
  1819. res = res + ustring.Make (Environment.NewLine) + StringFromRunes (model == null
  1820. ? this.model.GetLine (row) : model.GetLine (row));
  1821. }
  1822. line = model == null ? this.model.GetLine (maxrow) : model.GetLine (maxrow);
  1823. res = res + ustring.Make (Environment.NewLine) + StringFromRunes (line.GetRange (0, endCol));
  1824. return res;
  1825. }
  1826. //
  1827. // Clears the contents of the selected region
  1828. //
  1829. void ClearRegion ()
  1830. {
  1831. SetWrapModel ();
  1832. long start, end;
  1833. long currentEncoded = ((long)(uint)currentRow << 32) | (uint)currentColumn;
  1834. GetEncodedRegionBounds (out start, out end);
  1835. int startRow = (int)(start >> 32);
  1836. var maxrow = ((int)(end >> 32));
  1837. int startCol = (int)(start & 0xffffffff);
  1838. var endCol = (int)(end & 0xffffffff);
  1839. var line = model.GetLine (startRow);
  1840. historyText.Add (new List<List<Rune>> () { new List<Rune> (line) }, new Point (startCol, startRow));
  1841. List<List<Rune>> removedLines = new List<List<Rune>> ();
  1842. if (startRow == maxrow) {
  1843. removedLines.Add (new List<Rune> (line));
  1844. line.RemoveRange (startCol, endCol - startCol);
  1845. currentColumn = startCol;
  1846. if (wordWrap) {
  1847. SetNeedsDisplay ();
  1848. } else {
  1849. SetNeedsDisplay (new Rect (0, startRow - topRow, Frame.Width, startRow - topRow + 1));
  1850. }
  1851. historyText.Add (new List<List<Rune>> (removedLines), CursorPosition, HistoryText.LineStatus.Removed);
  1852. UpdateWrapModel ();
  1853. return;
  1854. }
  1855. removedLines.Add (new List<Rune> (line));
  1856. line.RemoveRange (startCol, line.Count - startCol);
  1857. var line2 = model.GetLine (maxrow);
  1858. line.AddRange (line2.Skip (endCol));
  1859. for (int row = startRow + 1; row <= maxrow; row++) {
  1860. removedLines.Add (new List<Rune> (model.GetLine (startRow + 1)));
  1861. model.RemoveLine (startRow + 1);
  1862. }
  1863. if (currentEncoded == end) {
  1864. currentRow -= maxrow - (startRow);
  1865. }
  1866. currentColumn = startCol;
  1867. historyText.Add (new List<List<Rune>> (removedLines), CursorPosition,
  1868. HistoryText.LineStatus.Removed);
  1869. UpdateWrapModel ();
  1870. SetNeedsDisplay ();
  1871. }
  1872. /// <summary>
  1873. /// Select all text.
  1874. /// </summary>
  1875. public void SelectAll ()
  1876. {
  1877. if (model.Count == 0) {
  1878. return;
  1879. }
  1880. StartSelecting ();
  1881. selectionStartColumn = 0;
  1882. selectionStartRow = 0;
  1883. currentColumn = model.GetLine (model.Count - 1).Count;
  1884. currentRow = model.Count - 1;
  1885. SetNeedsDisplay ();
  1886. }
  1887. /// <summary>
  1888. /// Find the next text based on the match case with the option to replace it.
  1889. /// </summary>
  1890. /// <param name="textToFind">The text to find.</param>
  1891. /// <param name="gaveFullTurn"><c>true</c>If all the text was forward searched.<c>false</c>otherwise.</param>
  1892. /// <param name="matchCase">The match case setting.</param>
  1893. /// <param name="matchWholeWord">The match whole word setting.</param>
  1894. /// <param name="textToReplace">The text to replace.</param>
  1895. /// <param name="replace"><c>true</c>If is replacing.<c>false</c>otherwise.</param>
  1896. /// <returns><c>true</c>If the text was found.<c>false</c>otherwise.</returns>
  1897. public bool FindNextText (ustring textToFind, out bool gaveFullTurn, bool matchCase = false,
  1898. bool matchWholeWord = false, ustring textToReplace = null, bool replace = false)
  1899. {
  1900. if (model.Count == 0) {
  1901. gaveFullTurn = false;
  1902. return false;
  1903. }
  1904. SetWrapModel ();
  1905. ResetContinuousFind ();
  1906. var foundPos = model.FindNextText (textToFind, out gaveFullTurn, matchCase, matchWholeWord);
  1907. return SetFoundText (textToFind, foundPos, textToReplace, replace);
  1908. }
  1909. /// <summary>
  1910. /// Find the previous text based on the match case with the option to replace it.
  1911. /// </summary>
  1912. /// <param name="textToFind">The text to find.</param>
  1913. /// <param name="gaveFullTurn"><c>true</c>If all the text was backward searched.<c>false</c>otherwise.</param>
  1914. /// <param name="matchCase">The match case setting.</param>
  1915. /// <param name="matchWholeWord">The match whole word setting.</param>
  1916. /// <param name="textToReplace">The text to replace.</param>
  1917. /// <param name="replace"><c>true</c>If the text was found.<c>false</c>otherwise.</param>
  1918. /// <returns><c>true</c>If the text was found.<c>false</c>otherwise.</returns>
  1919. public bool FindPreviousText (ustring textToFind, out bool gaveFullTurn, bool matchCase = false,
  1920. bool matchWholeWord = false, ustring textToReplace = null, bool replace = false)
  1921. {
  1922. if (model.Count == 0) {
  1923. gaveFullTurn = false;
  1924. return false;
  1925. }
  1926. SetWrapModel ();
  1927. ResetContinuousFind ();
  1928. var foundPos = model.FindPreviousText (textToFind, out gaveFullTurn, matchCase, matchWholeWord);
  1929. return SetFoundText (textToFind, foundPos, textToReplace, replace);
  1930. }
  1931. /// <summary>
  1932. /// Reset the flag to stop continuous find.
  1933. /// </summary>
  1934. public void FindTextChanged ()
  1935. {
  1936. continuousFind = false;
  1937. }
  1938. /// <summary>
  1939. /// Replaces all the text based on the match case.
  1940. /// </summary>
  1941. /// <param name="textToFind">The text to find.</param>
  1942. /// <param name="matchCase">The match case setting.</param>
  1943. /// <param name="matchWholeWord">The match whole word setting.</param>
  1944. /// <param name="textToReplace">The text to replace.</param>
  1945. /// <returns><c>true</c>If the text was found.<c>false</c>otherwise.</returns>
  1946. public bool ReplaceAllText (ustring textToFind, bool matchCase = false, bool matchWholeWord = false,
  1947. ustring textToReplace = null)
  1948. {
  1949. if (isReadOnly || model.Count == 0) {
  1950. return false;
  1951. }
  1952. SetWrapModel ();
  1953. ResetContinuousFind ();
  1954. var foundPos = model.ReplaceAllText (textToFind, matchCase, matchWholeWord, textToReplace);
  1955. return SetFoundText (textToFind, foundPos, textToReplace, false, true);
  1956. }
  1957. bool SetFoundText (ustring text, (Point current, bool found) foundPos,
  1958. ustring textToReplace = null, bool replace = false, bool replaceAll = false)
  1959. {
  1960. if (foundPos.found) {
  1961. StartSelecting ();
  1962. selectionStartColumn = foundPos.current.X;
  1963. selectionStartRow = foundPos.current.Y;
  1964. if (!replaceAll) {
  1965. currentColumn = selectionStartColumn + text.RuneCount;
  1966. } else {
  1967. currentColumn = selectionStartColumn + textToReplace.RuneCount;
  1968. }
  1969. currentRow = foundPos.current.Y;
  1970. if (!isReadOnly && replace) {
  1971. Adjust ();
  1972. ClearSelectedRegion ();
  1973. InsertText (textToReplace);
  1974. StartSelecting ();
  1975. selectionStartColumn = currentColumn - textToReplace.RuneCount;
  1976. } else {
  1977. UpdateWrapModel ();
  1978. SetNeedsDisplay ();
  1979. Adjust ();
  1980. }
  1981. continuousFind = true;
  1982. return foundPos.found;
  1983. }
  1984. UpdateWrapModel ();
  1985. continuousFind = false;
  1986. return foundPos.found;
  1987. }
  1988. void ResetContinuousFind ()
  1989. {
  1990. if (!continuousFind) {
  1991. var col = selecting ? selectionStartColumn : currentColumn;
  1992. var row = selecting ? selectionStartRow : currentRow;
  1993. model.ResetContinuousFind (new Point (col, row));
  1994. }
  1995. }
  1996. string currentCaller;
  1997. /// <summary>
  1998. /// Restore from original model.
  1999. /// </summary>
  2000. void SetWrapModel ([CallerMemberName] string caller = null)
  2001. {
  2002. if (currentCaller != null)
  2003. return;
  2004. if (wordWrap) {
  2005. currentCaller = caller;
  2006. currentColumn = wrapManager.GetModelColFromWrappedLines (currentRow, currentColumn);
  2007. currentRow = wrapManager.GetModelLineFromWrappedLines (currentRow);
  2008. selectionStartColumn = wrapManager.GetModelColFromWrappedLines (selectionStartRow, selectionStartColumn);
  2009. selectionStartRow = wrapManager.GetModelLineFromWrappedLines (selectionStartRow);
  2010. model = wrapManager.Model;
  2011. }
  2012. }
  2013. /// <summary>
  2014. /// Update the original model.
  2015. /// </summary>
  2016. void UpdateWrapModel ([CallerMemberName] string caller = null)
  2017. {
  2018. if (currentCaller != null && currentCaller != caller)
  2019. return;
  2020. if (wordWrap) {
  2021. currentCaller = null;
  2022. wrapManager.UpdateModel (model, out int nRow, out int nCol,
  2023. out int nStartRow, out int nStartCol,
  2024. currentRow, currentColumn,
  2025. selectionStartRow, selectionStartColumn, preserveTrailingSpaces: true);
  2026. currentRow = nRow;
  2027. currentColumn = nCol;
  2028. selectionStartRow = nStartRow;
  2029. selectionStartColumn = nStartCol;
  2030. wrapNeeded = true;
  2031. }
  2032. if (currentCaller != null)
  2033. throw new InvalidOperationException ($"WordWrap settings was changed after the {currentCaller} call.");
  2034. }
  2035. /// <summary>
  2036. /// Invoke the <see cref="UnwrappedCursorPosition"/> event with the unwrapped <see cref="CursorPosition"/>.
  2037. /// </summary>
  2038. public virtual void OnUnwrappedCursorPosition (int? cRow = null, int? cCol = null)
  2039. {
  2040. var row = cRow == null ? currentRow : cRow;
  2041. var col = cCol == null ? currentColumn : cCol;
  2042. if (cRow == null && cCol == null && wordWrap) {
  2043. row = wrapManager.GetModelLineFromWrappedLines (currentRow);
  2044. col = wrapManager.GetModelColFromWrappedLines (currentRow, currentColumn);
  2045. }
  2046. UnwrappedCursorPosition?.Invoke (new Point ((int)col, (int)row));
  2047. }
  2048. ustring GetSelectedRegion ()
  2049. {
  2050. var cRow = currentRow;
  2051. var cCol = currentColumn;
  2052. var startRow = selectionStartRow;
  2053. var startCol = selectionStartColumn;
  2054. var model = this.model;
  2055. if (wordWrap) {
  2056. cRow = wrapManager.GetModelLineFromWrappedLines (currentRow);
  2057. cCol = wrapManager.GetModelColFromWrappedLines (currentRow, currentColumn);
  2058. startRow = wrapManager.GetModelLineFromWrappedLines (selectionStartRow);
  2059. startCol = wrapManager.GetModelColFromWrappedLines (selectionStartRow, selectionStartColumn);
  2060. model = wrapManager.Model;
  2061. }
  2062. OnUnwrappedCursorPosition (cRow, cCol);
  2063. return GetRegion (startRow, startCol, cRow, cCol, model);
  2064. }
  2065. ///<inheritdoc/>
  2066. public override void Redraw (Rect bounds)
  2067. {
  2068. ColorNormal ();
  2069. var offB = OffSetBackground ();
  2070. int right = Frame.Width + offB.width + RightOffset;
  2071. int bottom = Frame.Height + offB.height + BottomOffset;
  2072. var row = 0;
  2073. for (int idxRow = topRow; idxRow < model.Count; idxRow++) {
  2074. var line = model.GetLine (idxRow);
  2075. int lineRuneCount = line.Count;
  2076. var col = 0;
  2077. Move (0, row);
  2078. for (int idxCol = leftColumn; idxCol < lineRuneCount; idxCol++) {
  2079. var rune = idxCol >= lineRuneCount ? ' ' : line [idxCol];
  2080. var cols = Rune.ColumnWidth (rune);
  2081. if (idxCol < line.Count && selecting && PointInSelection (idxCol, idxRow)) {
  2082. ColorSelection (line, idxCol);
  2083. } else if (idxCol == currentColumn && idxRow == currentRow && !selecting && !Used
  2084. && HasFocus && idxCol < lineRuneCount) {
  2085. ColorUsed (line, idxCol);
  2086. } else {
  2087. ColorNormal (line, idxCol);
  2088. }
  2089. if (rune == '\t') {
  2090. cols += TabWidth + 1;
  2091. if (col + cols > right) {
  2092. cols = right - col;
  2093. }
  2094. for (int i = 0; i < cols; i++) {
  2095. if (col + i < right) {
  2096. AddRune (col + i, row, ' ');
  2097. }
  2098. }
  2099. } else {
  2100. AddRune (col, row, rune);
  2101. }
  2102. if (!TextModel.SetCol (ref col, bounds.Right, cols)) {
  2103. break;
  2104. }
  2105. if (idxCol + 1 < lineRuneCount && col + Rune.ColumnWidth (line [idxCol + 1]) > right) {
  2106. break;
  2107. }
  2108. }
  2109. if (col < right) {
  2110. ColorNormal ();
  2111. ClearRegion (col, row, right, row + 1);
  2112. }
  2113. row++;
  2114. }
  2115. if (row < bottom) {
  2116. ColorNormal ();
  2117. ClearRegion (bounds.Left, row, right, bottom);
  2118. }
  2119. PositionCursor ();
  2120. if (SelectedLength > 0)
  2121. return;
  2122. // draw autocomplete
  2123. Autocomplete.GenerateSuggestions ();
  2124. var renderAt = new Point (
  2125. CursorPosition.X - LeftColumn,
  2126. Autocomplete.PopupInsideContainer
  2127. ? (CursorPosition.Y + 1) - TopRow
  2128. : 0);
  2129. Autocomplete.RenderOverlay (renderAt);
  2130. }
  2131. ///<inheritdoc/>
  2132. public override bool CanFocus {
  2133. get => base.CanFocus;
  2134. set { base.CanFocus = value; }
  2135. }
  2136. void SetClipboard (ustring text)
  2137. {
  2138. if (text != null) {
  2139. Clipboard.Contents = text;
  2140. }
  2141. }
  2142. void AppendClipboard (ustring text)
  2143. {
  2144. Clipboard.Contents += text;
  2145. }
  2146. /// <summary>
  2147. /// Inserts the given <paramref name="toAdd"/> text at the current cursor position
  2148. /// exactly as if the user had just typed it
  2149. /// </summary>
  2150. /// <param name="toAdd">Text to add</param>
  2151. public void InsertText (string toAdd)
  2152. {
  2153. foreach (var ch in toAdd) {
  2154. Key key;
  2155. try {
  2156. key = (Key)ch;
  2157. } catch (Exception) {
  2158. throw new ArgumentException ($"Cannot insert character '{ch}' because it does not map to a Key");
  2159. }
  2160. InsertText (new KeyEvent () { Key = key });
  2161. }
  2162. }
  2163. void Insert (Rune rune)
  2164. {
  2165. var line = GetCurrentLine ();
  2166. if (Used) {
  2167. line.Insert (Math.Min (currentColumn, line.Count), rune);
  2168. } else {
  2169. if (currentColumn < line.Count) {
  2170. line.RemoveAt (currentColumn);
  2171. }
  2172. line.Insert (Math.Min (currentColumn, line.Count), rune);
  2173. }
  2174. var prow = currentRow - topRow;
  2175. if (!wrapNeeded) {
  2176. SetNeedsDisplay (new Rect (0, prow, Math.Max (Frame.Width, 0), Math.Max (prow + 1, 0)));
  2177. }
  2178. }
  2179. ustring StringFromRunes (List<Rune> runes)
  2180. {
  2181. if (runes == null)
  2182. throw new ArgumentNullException (nameof (runes));
  2183. int size = 0;
  2184. foreach (var rune in runes) {
  2185. size += Utf8.RuneLen (rune);
  2186. }
  2187. var encoded = new byte [size];
  2188. int offset = 0;
  2189. foreach (var rune in runes) {
  2190. offset += Utf8.EncodeRune (rune, encoded, offset);
  2191. }
  2192. return ustring.Make (encoded);
  2193. }
  2194. /// <summary>
  2195. /// Returns the characters on the current line (where the cursor is positioned).
  2196. /// Use <see cref="CurrentColumn"/> to determine the position of the cursor within
  2197. /// that line
  2198. /// </summary>
  2199. /// <returns></returns>
  2200. public List<Rune> GetCurrentLine () => model.GetLine (currentRow);
  2201. void InsertText (ustring text)
  2202. {
  2203. if (ustring.IsNullOrEmpty (text)) {
  2204. return;
  2205. }
  2206. var lines = TextModel.StringToRunes (text);
  2207. if (lines.Count == 0) {
  2208. return;
  2209. }
  2210. SetWrapModel ();
  2211. var line = GetCurrentLine ();
  2212. historyText.Add (new List<List<Rune>> () { new List<Rune> (line) }, CursorPosition);
  2213. // Optimize single line
  2214. if (lines.Count == 1) {
  2215. line.InsertRange (currentColumn, lines [0]);
  2216. currentColumn += lines [0].Count;
  2217. historyText.Add (new List<List<Rune>> () { new List<Rune> (line) }, CursorPosition,
  2218. HistoryText.LineStatus.Replaced);
  2219. if (!wordWrap && currentColumn - leftColumn > Frame.Width) {
  2220. leftColumn = Math.Max (currentColumn - Frame.Width + 1, 0);
  2221. }
  2222. if (wordWrap) {
  2223. SetNeedsDisplay ();
  2224. } else {
  2225. SetNeedsDisplay (new Rect (0, currentRow - topRow, Frame.Width, Math.Max (currentRow - topRow + 1, 0)));
  2226. }
  2227. UpdateWrapModel ();
  2228. return;
  2229. }
  2230. List<Rune> rest = null;
  2231. int lastp = 0;
  2232. if (model.Count > 0 && line.Count > 0 && !copyWithoutSelection) {
  2233. // Keep a copy of the rest of the line
  2234. var restCount = line.Count - currentColumn;
  2235. rest = line.GetRange (currentColumn, restCount);
  2236. line.RemoveRange (currentColumn, restCount);
  2237. }
  2238. // First line is inserted at the current location, the rest is appended
  2239. line.InsertRange (currentColumn, lines [0]);
  2240. //model.AddLine (currentRow, lines [0]);
  2241. var addedLines = new List<List<Rune>> () { new List<Rune> (line) };
  2242. for (int i = 1; i < lines.Count; i++) {
  2243. model.AddLine (currentRow + i, lines [i]);
  2244. addedLines.Add (new List<Rune> (lines [i]));
  2245. }
  2246. if (rest != null) {
  2247. var last = model.GetLine (currentRow + lines.Count - 1);
  2248. lastp = last.Count;
  2249. last.InsertRange (last.Count, rest);
  2250. addedLines.Last ().InsertRange (addedLines.Last ().Count, rest);
  2251. }
  2252. historyText.Add (addedLines, CursorPosition, HistoryText.LineStatus.Added);
  2253. // Now adjust column and row positions
  2254. currentRow += lines.Count - 1;
  2255. currentColumn = rest != null ? lastp : lines [lines.Count - 1].Count;
  2256. Adjust ();
  2257. historyText.Add (new List<List<Rune>> () { new List<Rune> (line) }, CursorPosition,
  2258. HistoryText.LineStatus.Replaced);
  2259. UpdateWrapModel ();
  2260. }
  2261. // The column we are tracking, or -1 if we are not tracking any column
  2262. int columnTrack = -1;
  2263. // Tries to snap the cursor to the tracking column
  2264. void TrackColumn ()
  2265. {
  2266. // Now track the column
  2267. var line = GetCurrentLine ();
  2268. if (line.Count < columnTrack)
  2269. currentColumn = line.Count;
  2270. else if (columnTrack != -1)
  2271. currentColumn = columnTrack;
  2272. else if (currentColumn > line.Count)
  2273. currentColumn = line.Count;
  2274. Adjust ();
  2275. }
  2276. void Adjust ()
  2277. {
  2278. var offB = OffSetBackground ();
  2279. var line = GetCurrentLine ();
  2280. bool need = !NeedDisplay.IsEmpty || wrapNeeded;
  2281. var tSize = TextModel.DisplaySize (line, -1, -1, false, TabWidth);
  2282. var dSize = TextModel.DisplaySize (line, leftColumn, currentColumn, true, TabWidth);
  2283. if (!wordWrap && currentColumn < leftColumn) {
  2284. leftColumn = currentColumn;
  2285. need = true;
  2286. } else if (!wordWrap && (currentColumn - leftColumn + RightOffset > Frame.Width + offB.width
  2287. || dSize.size + RightOffset >= Frame.Width + offB.width)) {
  2288. leftColumn = TextModel.CalculateLeftColumn (line, leftColumn, currentColumn,
  2289. Frame.Width + offB.width - RightOffset, TabWidth);
  2290. need = true;
  2291. } else if ((wordWrap && leftColumn > 0) || (dSize.size + RightOffset < Frame.Width + offB.width
  2292. && tSize.size + RightOffset < Frame.Width + offB.width)) {
  2293. leftColumn = 0;
  2294. need = true;
  2295. }
  2296. if (currentRow < topRow) {
  2297. topRow = currentRow;
  2298. need = true;
  2299. } else if (currentRow - topRow + BottomOffset >= Frame.Height + offB.height) {
  2300. topRow = Math.Min (Math.Max (currentRow - Frame.Height + 1 + BottomOffset, 0), currentRow);
  2301. need = true;
  2302. } else if (topRow > 0 && currentRow == topRow) {
  2303. topRow = Math.Max (topRow - 1, 0);
  2304. }
  2305. if (need) {
  2306. if (wrapNeeded) {
  2307. WrapTextModel ();
  2308. wrapNeeded = false;
  2309. }
  2310. SetNeedsDisplay ();
  2311. } else {
  2312. PositionCursor ();
  2313. }
  2314. OnUnwrappedCursorPosition ();
  2315. }
  2316. (int width, int height) OffSetBackground ()
  2317. {
  2318. int w = 0;
  2319. int h = 0;
  2320. if (SuperView?.Frame.Right - Frame.Right < 0) {
  2321. w = SuperView.Frame.Right - Frame.Right - 1;
  2322. }
  2323. if (SuperView?.Frame.Bottom - Frame.Bottom < 0) {
  2324. h = SuperView.Frame.Bottom - Frame.Bottom - 1;
  2325. }
  2326. return (w, h);
  2327. }
  2328. /// <summary>
  2329. /// Will scroll the <see cref="TextView"/> to display the specified row at the top if <paramref name="isRow"/> is true or
  2330. /// will scroll the <see cref="TextView"/> to display the specified column at the left if <paramref name="isRow"/> is false.
  2331. /// </summary>
  2332. /// <param name="idx">Row that should be displayed at the top or Column that should be displayed at the left,
  2333. /// if the value is negative it will be reset to zero</param>
  2334. /// <param name="isRow">If true (default) the <paramref name="idx"/> is a row, column otherwise.</param>
  2335. public void ScrollTo (int idx, bool isRow = true)
  2336. {
  2337. if (idx < 0) {
  2338. idx = 0;
  2339. }
  2340. if (isRow) {
  2341. topRow = Math.Max (idx > model.Count - 1 ? model.Count - 1 : idx, 0);
  2342. } else if (!wordWrap) {
  2343. var maxlength = model.GetMaxVisibleLine (topRow, topRow + Frame.Height + RightOffset, TabWidth);
  2344. leftColumn = Math.Max (!wordWrap && idx > maxlength - 1 ? maxlength - 1 : idx, 0);
  2345. }
  2346. SetNeedsDisplay ();
  2347. }
  2348. bool lastWasKill;
  2349. bool wrapNeeded;
  2350. bool shiftSelecting;
  2351. ///<inheritdoc/>
  2352. public override bool ProcessKey (KeyEvent kb)
  2353. {
  2354. if (!CanFocus) {
  2355. return true;
  2356. }
  2357. // Give autocomplete first opportunity to respond to key presses
  2358. if (SelectedLength == 0 && Autocomplete.ProcessKey (kb)) {
  2359. return true;
  2360. }
  2361. var result = InvokeKeybindings (new KeyEvent (ShortcutHelper.GetModifiersKey (kb),
  2362. new KeyModifiers () { Alt = kb.IsAlt, Ctrl = kb.IsCtrl, Shift = kb.IsShift }));
  2363. if (result != null)
  2364. return (bool)result;
  2365. ResetColumnTrack ();
  2366. // Ignore control characters and other special keys
  2367. if (kb.Key < Key.Space || kb.Key > Key.CharMask)
  2368. return false;
  2369. InsertText (kb);
  2370. DoNeededAction ();
  2371. return true;
  2372. }
  2373. void RedoChanges ()
  2374. {
  2375. if (ReadOnly)
  2376. return;
  2377. historyText.Redo ();
  2378. }
  2379. void UndoChanges ()
  2380. {
  2381. if (ReadOnly)
  2382. return;
  2383. historyText.Undo ();
  2384. }
  2385. bool ProcessMovePreviousView ()
  2386. {
  2387. ResetColumnTrack ();
  2388. return MovePreviousView ();
  2389. }
  2390. bool ProcessMoveNextView ()
  2391. {
  2392. ResetColumnTrack ();
  2393. return MoveNextView ();
  2394. }
  2395. void ProcessSetOverwrite ()
  2396. {
  2397. ResetColumnTrack ();
  2398. SetOverwrite (!Used);
  2399. }
  2400. void ProcessSelectAll ()
  2401. {
  2402. ResetColumnTrack ();
  2403. SelectAll ();
  2404. }
  2405. void MoveTopHomeExtend ()
  2406. {
  2407. ResetColumnTrack ();
  2408. StartSelecting ();
  2409. MoveHome ();
  2410. }
  2411. void MoveTopHome ()
  2412. {
  2413. ResetAllTrack ();
  2414. if (shiftSelecting && selecting) {
  2415. StopSelecting ();
  2416. }
  2417. MoveHome ();
  2418. }
  2419. void MoveBottomEndExtend ()
  2420. {
  2421. ResetAllTrack ();
  2422. StartSelecting ();
  2423. MoveEnd ();
  2424. }
  2425. void MoveBottomEnd ()
  2426. {
  2427. ResetAllTrack ();
  2428. if (shiftSelecting && selecting) {
  2429. StopSelecting ();
  2430. }
  2431. MoveEnd ();
  2432. }
  2433. void ProcessKillWordBackward ()
  2434. {
  2435. ResetColumnTrack ();
  2436. KillWordBackward ();
  2437. }
  2438. void ProcessKillWordForward ()
  2439. {
  2440. ResetColumnTrack ();
  2441. KillWordForward ();
  2442. }
  2443. void ProcessMoveWordForwardExtend ()
  2444. {
  2445. ResetAllTrack ();
  2446. StartSelecting ();
  2447. MoveWordForward ();
  2448. }
  2449. void ProcessMoveWordForward ()
  2450. {
  2451. ResetAllTrack ();
  2452. if (shiftSelecting && selecting) {
  2453. StopSelecting ();
  2454. }
  2455. MoveWordForward ();
  2456. }
  2457. void ProcessMoveWordBackwardExtend ()
  2458. {
  2459. ResetAllTrack ();
  2460. StartSelecting ();
  2461. MoveWordBackward ();
  2462. }
  2463. void ProcessMoveWordBackward ()
  2464. {
  2465. ResetAllTrack ();
  2466. if (shiftSelecting && selecting) {
  2467. StopSelecting ();
  2468. }
  2469. MoveWordBackward ();
  2470. }
  2471. void ProcessCut ()
  2472. {
  2473. ResetColumnTrack ();
  2474. Cut ();
  2475. }
  2476. void ProcessCopy ()
  2477. {
  2478. ResetColumnTrack ();
  2479. Copy ();
  2480. }
  2481. void ToggleSelecting ()
  2482. {
  2483. ResetColumnTrack ();
  2484. selecting = !selecting;
  2485. selectionStartColumn = currentColumn;
  2486. selectionStartRow = currentRow;
  2487. }
  2488. void ProcessPaste ()
  2489. {
  2490. ResetColumnTrack ();
  2491. if (isReadOnly)
  2492. return;
  2493. Paste ();
  2494. }
  2495. void ProcessMoveEndOfLineExtend ()
  2496. {
  2497. ResetAllTrack ();
  2498. StartSelecting ();
  2499. MoveEndOfLine ();
  2500. }
  2501. void ProcessMoveEndOfLine ()
  2502. {
  2503. ResetAllTrack ();
  2504. if (shiftSelecting && selecting) {
  2505. StopSelecting ();
  2506. }
  2507. MoveEndOfLine ();
  2508. }
  2509. void ProcessDeleteCharRight ()
  2510. {
  2511. ResetColumnTrack ();
  2512. DeleteCharRight ();
  2513. }
  2514. void ProcessMoveStartOfLineExtend ()
  2515. {
  2516. ResetAllTrack ();
  2517. StartSelecting ();
  2518. MoveStartOfLine ();
  2519. }
  2520. void ProcessMoveStartOfLine ()
  2521. {
  2522. ResetAllTrack ();
  2523. if (shiftSelecting && selecting) {
  2524. StopSelecting ();
  2525. }
  2526. MoveStartOfLine ();
  2527. }
  2528. void ProcessDeleteCharLeft ()
  2529. {
  2530. ResetColumnTrack ();
  2531. DeleteCharLeft ();
  2532. }
  2533. void ProcessMoveLeftExtend ()
  2534. {
  2535. ResetAllTrack ();
  2536. StartSelecting ();
  2537. MoveLeft ();
  2538. }
  2539. bool ProcessMoveLeft ()
  2540. {
  2541. // if the user presses Left (without any control keys) and they are at the start of the text
  2542. if (currentColumn == 0 && currentRow == 0) {
  2543. // do not respond (this lets the key press fall through to navigation system - which usually changes focus backward)
  2544. return false;
  2545. }
  2546. ResetAllTrack ();
  2547. if (shiftSelecting && selecting) {
  2548. StopSelecting ();
  2549. }
  2550. MoveLeft ();
  2551. return true;
  2552. }
  2553. void ProcessMoveRightExtend ()
  2554. {
  2555. ResetAllTrack ();
  2556. StartSelecting ();
  2557. MoveRight ();
  2558. }
  2559. bool ProcessMoveRight ()
  2560. {
  2561. // if the user presses Right (without any control keys)
  2562. // determine where the last cursor position in the text is
  2563. var lastRow = model.Count - 1;
  2564. var lastCol = model.GetLine (lastRow).Count;
  2565. // if they are at the very end of all the text do not respond (this lets the key press fall through to navigation system - which usually changes focus forward)
  2566. if (currentColumn == lastCol && currentRow == lastRow) {
  2567. return false;
  2568. }
  2569. ResetAllTrack ();
  2570. if (shiftSelecting && selecting) {
  2571. StopSelecting ();
  2572. }
  2573. MoveRight ();
  2574. return true;
  2575. }
  2576. void ProcessMoveUpExtend ()
  2577. {
  2578. ResetColumnTrack ();
  2579. StartSelecting ();
  2580. MoveUp ();
  2581. }
  2582. void ProcessMoveUp ()
  2583. {
  2584. ResetContinuousFindTrack ();
  2585. if (shiftSelecting && selecting) {
  2586. StopSelecting ();
  2587. }
  2588. MoveUp ();
  2589. }
  2590. void ProcessMoveDownExtend ()
  2591. {
  2592. ResetColumnTrack ();
  2593. StartSelecting ();
  2594. MoveDown ();
  2595. }
  2596. void ProcessMoveDown ()
  2597. {
  2598. ResetContinuousFindTrack ();
  2599. if (shiftSelecting && selecting) {
  2600. StopSelecting ();
  2601. }
  2602. MoveDown ();
  2603. }
  2604. void ProcessPageUpExtend ()
  2605. {
  2606. ResetColumnTrack ();
  2607. StartSelecting ();
  2608. MovePageUp ();
  2609. }
  2610. void ProcessPageUp ()
  2611. {
  2612. ResetColumnTrack ();
  2613. if (shiftSelecting && selecting) {
  2614. StopSelecting ();
  2615. }
  2616. MovePageUp ();
  2617. }
  2618. void ProcessPageDownExtend ()
  2619. {
  2620. ResetColumnTrack ();
  2621. StartSelecting ();
  2622. MovePageDown ();
  2623. }
  2624. void ProcessPageDown ()
  2625. {
  2626. ResetColumnTrack ();
  2627. if (shiftSelecting && selecting) {
  2628. StopSelecting ();
  2629. }
  2630. MovePageDown ();
  2631. }
  2632. bool MovePreviousView ()
  2633. {
  2634. if (Application.MdiTop != null) {
  2635. return SuperView?.FocusPrev () == true;
  2636. }
  2637. return false;
  2638. }
  2639. bool MoveNextView ()
  2640. {
  2641. if (Application.MdiTop != null) {
  2642. return SuperView?.FocusNext () == true;
  2643. }
  2644. return false;
  2645. }
  2646. bool ProcessBackTab ()
  2647. {
  2648. ResetColumnTrack ();
  2649. if (!AllowsTab || isReadOnly) {
  2650. return ProcessMovePreviousView ();
  2651. }
  2652. if (currentColumn > 0) {
  2653. SetWrapModel ();
  2654. var currentLine = GetCurrentLine ();
  2655. if (currentLine.Count > 0 && currentLine [currentColumn - 1] == '\t') {
  2656. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  2657. currentLine.RemoveAt (currentColumn - 1);
  2658. currentColumn--;
  2659. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2660. HistoryText.LineStatus.Replaced);
  2661. }
  2662. UpdateWrapModel ();
  2663. }
  2664. DoNeededAction ();
  2665. return true;
  2666. }
  2667. bool ProcessTab ()
  2668. {
  2669. ResetColumnTrack ();
  2670. if (!AllowsTab || isReadOnly) {
  2671. return ProcessMoveNextView ();
  2672. }
  2673. InsertText (new KeyEvent ((Key)'\t', null));
  2674. DoNeededAction ();
  2675. return true;
  2676. }
  2677. void SetOverwrite (bool overwrite)
  2678. {
  2679. Used = overwrite;
  2680. SetNeedsDisplay ();
  2681. DoNeededAction ();
  2682. }
  2683. bool ProcessReturn ()
  2684. {
  2685. ResetColumnTrack ();
  2686. if (!AllowsReturn || isReadOnly) {
  2687. return false;
  2688. }
  2689. SetWrapModel ();
  2690. var currentLine = GetCurrentLine ();
  2691. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  2692. if (selecting) {
  2693. ClearSelectedRegion ();
  2694. currentLine = GetCurrentLine ();
  2695. }
  2696. var restCount = currentLine.Count - currentColumn;
  2697. var rest = currentLine.GetRange (currentColumn, restCount);
  2698. currentLine.RemoveRange (currentColumn, restCount);
  2699. var addedLines = new List<List<Rune>> () { new List<Rune> (currentLine) };
  2700. model.AddLine (currentRow + 1, rest);
  2701. addedLines.Add (new List<Rune> (model.GetLine (currentRow + 1)));
  2702. historyText.Add (addedLines, CursorPosition, HistoryText.LineStatus.Added);
  2703. currentRow++;
  2704. bool fullNeedsDisplay = false;
  2705. if (currentRow >= topRow + Frame.Height) {
  2706. topRow++;
  2707. fullNeedsDisplay = true;
  2708. }
  2709. currentColumn = 0;
  2710. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2711. HistoryText.LineStatus.Replaced);
  2712. if (!wordWrap && currentColumn < leftColumn) {
  2713. fullNeedsDisplay = true;
  2714. leftColumn = 0;
  2715. }
  2716. if (fullNeedsDisplay)
  2717. SetNeedsDisplay ();
  2718. else
  2719. SetNeedsDisplay (new Rect (0, currentRow - topRow, 2, Frame.Height));
  2720. UpdateWrapModel ();
  2721. DoNeededAction ();
  2722. return true;
  2723. }
  2724. void KillWordBackward ()
  2725. {
  2726. if (isReadOnly)
  2727. return;
  2728. SetWrapModel ();
  2729. var currentLine = GetCurrentLine ();
  2730. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition);
  2731. if (currentColumn == 0) {
  2732. DeleteTextBackwards ();
  2733. historyText.ReplaceLast (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2734. HistoryText.LineStatus.Replaced);
  2735. UpdateWrapModel ();
  2736. return;
  2737. }
  2738. var newPos = WordBackward (currentColumn, currentRow);
  2739. if (newPos.HasValue && currentRow == newPos.Value.row) {
  2740. var restCount = currentColumn - newPos.Value.col;
  2741. currentLine.RemoveRange (newPos.Value.col, restCount);
  2742. if (wordWrap) {
  2743. wrapNeeded = true;
  2744. }
  2745. currentColumn = newPos.Value.col;
  2746. } else if (newPos.HasValue) {
  2747. var restCount = currentLine.Count - currentColumn;
  2748. currentLine.RemoveRange (currentColumn, restCount);
  2749. if (wordWrap) {
  2750. wrapNeeded = true;
  2751. }
  2752. currentColumn = newPos.Value.col;
  2753. currentRow = newPos.Value.row;
  2754. }
  2755. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2756. HistoryText.LineStatus.Replaced);
  2757. UpdateWrapModel ();
  2758. if (wrapNeeded) {
  2759. SetNeedsDisplay ();
  2760. } else {
  2761. SetNeedsDisplay (new Rect (0, currentRow - topRow, Frame.Width, Frame.Height));
  2762. }
  2763. DoNeededAction ();
  2764. }
  2765. void KillWordForward ()
  2766. {
  2767. if (isReadOnly)
  2768. return;
  2769. SetWrapModel ();
  2770. var currentLine = GetCurrentLine ();
  2771. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition);
  2772. if (currentLine.Count == 0 || currentColumn == currentLine.Count) {
  2773. DeleteTextForwards ();
  2774. historyText.ReplaceLast (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2775. HistoryText.LineStatus.Replaced);
  2776. UpdateWrapModel ();
  2777. return;
  2778. }
  2779. var newPos = WordForward (currentColumn, currentRow);
  2780. var restCount = 0;
  2781. if (newPos.HasValue && currentRow == newPos.Value.row) {
  2782. restCount = newPos.Value.col - currentColumn;
  2783. currentLine.RemoveRange (currentColumn, restCount);
  2784. } else if (newPos.HasValue) {
  2785. restCount = currentLine.Count - currentColumn;
  2786. currentLine.RemoveRange (currentColumn, restCount);
  2787. }
  2788. if (wordWrap) {
  2789. wrapNeeded = true;
  2790. }
  2791. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2792. HistoryText.LineStatus.Replaced);
  2793. UpdateWrapModel ();
  2794. if (wrapNeeded) {
  2795. SetNeedsDisplay ();
  2796. } else {
  2797. SetNeedsDisplay (new Rect (0, currentRow - topRow, Frame.Width, Frame.Height));
  2798. }
  2799. DoNeededAction ();
  2800. }
  2801. void MoveWordForward ()
  2802. {
  2803. var newPos = WordForward (currentColumn, currentRow);
  2804. if (newPos.HasValue) {
  2805. currentColumn = newPos.Value.col;
  2806. currentRow = newPos.Value.row;
  2807. }
  2808. Adjust ();
  2809. DoNeededAction ();
  2810. }
  2811. void MoveWordBackward ()
  2812. {
  2813. var newPos = WordBackward (currentColumn, currentRow);
  2814. if (newPos.HasValue) {
  2815. currentColumn = newPos.Value.col;
  2816. currentRow = newPos.Value.row;
  2817. }
  2818. Adjust ();
  2819. DoNeededAction ();
  2820. }
  2821. void KillToStartOfLine ()
  2822. {
  2823. if (isReadOnly)
  2824. return;
  2825. if (model.Count == 1 && GetCurrentLine ().Count == 0) {
  2826. // Prevents from adding line feeds if there is no more lines.
  2827. return;
  2828. }
  2829. SetWrapModel ();
  2830. var currentLine = GetCurrentLine ();
  2831. var setLastWasKill = true;
  2832. if (currentLine.Count > 0 && currentColumn == 0) {
  2833. UpdateWrapModel ();
  2834. DeleteTextBackwards ();
  2835. return;
  2836. }
  2837. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  2838. if (currentLine.Count == 0) {
  2839. if (currentRow > 0) {
  2840. model.RemoveLine (currentRow);
  2841. if (model.Count > 0 || lastWasKill) {
  2842. var val = ustring.Make (Environment.NewLine);
  2843. if (lastWasKill) {
  2844. AppendClipboard (val);
  2845. } else {
  2846. SetClipboard (val);
  2847. }
  2848. }
  2849. if (model.Count == 0) {
  2850. // Prevents from adding line feeds if there is no more lines.
  2851. setLastWasKill = false;
  2852. }
  2853. currentRow--;
  2854. currentLine = model.GetLine (currentRow);
  2855. var removedLine = new List<List<Rune>> () { new List<Rune> (currentLine) };
  2856. removedLine.Add (new List<Rune> ());
  2857. historyText.Add (new List<List<Rune>> (removedLine), CursorPosition, HistoryText.LineStatus.Removed);
  2858. currentColumn = currentLine.Count;
  2859. }
  2860. } else {
  2861. var restCount = currentColumn;
  2862. var rest = currentLine.GetRange (0, restCount);
  2863. var val = ustring.Empty;
  2864. val += StringFromRunes (rest);
  2865. if (lastWasKill) {
  2866. AppendClipboard (val);
  2867. } else {
  2868. SetClipboard (val);
  2869. }
  2870. currentLine.RemoveRange (0, restCount);
  2871. currentColumn = 0;
  2872. }
  2873. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2874. HistoryText.LineStatus.Replaced);
  2875. UpdateWrapModel ();
  2876. if (wrapNeeded)
  2877. SetNeedsDisplay ();
  2878. else
  2879. SetNeedsDisplay (new Rect (0, currentRow - topRow, Frame.Width, Frame.Height));
  2880. lastWasKill = setLastWasKill;
  2881. DoNeededAction ();
  2882. }
  2883. void KillToEndOfLine ()
  2884. {
  2885. if (isReadOnly)
  2886. return;
  2887. if (model.Count == 1 && GetCurrentLine ().Count == 0) {
  2888. // Prevents from adding line feeds if there is no more lines.
  2889. return;
  2890. }
  2891. SetWrapModel ();
  2892. var currentLine = GetCurrentLine ();
  2893. var setLastWasKill = true;
  2894. if (currentLine.Count > 0 && currentColumn == currentLine.Count) {
  2895. UpdateWrapModel ();
  2896. DeleteTextForwards ();
  2897. return;
  2898. }
  2899. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  2900. if (currentLine.Count == 0) {
  2901. if (currentRow < model.Count - 1) {
  2902. var removedLines = new List<List<Rune>> () { new List<Rune> (currentLine) };
  2903. model.RemoveLine (currentRow);
  2904. removedLines.Add (new List<Rune> (GetCurrentLine ()));
  2905. historyText.Add (new List<List<Rune>> (removedLines), CursorPosition,
  2906. HistoryText.LineStatus.Removed);
  2907. }
  2908. if (model.Count > 0 || lastWasKill) {
  2909. var val = ustring.Make (Environment.NewLine);
  2910. if (lastWasKill) {
  2911. AppendClipboard (val);
  2912. } else {
  2913. SetClipboard (val);
  2914. }
  2915. }
  2916. if (model.Count == 0) {
  2917. // Prevents from adding line feeds if there is no more lines.
  2918. setLastWasKill = false;
  2919. }
  2920. } else {
  2921. var restCount = currentLine.Count - currentColumn;
  2922. var rest = currentLine.GetRange (currentColumn, restCount);
  2923. var val = ustring.Empty;
  2924. val += StringFromRunes (rest);
  2925. if (lastWasKill) {
  2926. AppendClipboard (val);
  2927. } else {
  2928. SetClipboard (val);
  2929. }
  2930. currentLine.RemoveRange (currentColumn, restCount);
  2931. }
  2932. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2933. HistoryText.LineStatus.Replaced);
  2934. UpdateWrapModel ();
  2935. if (wrapNeeded)
  2936. SetNeedsDisplay ();
  2937. else
  2938. SetNeedsDisplay (new Rect (0, currentRow - topRow, Frame.Width, Frame.Height));
  2939. lastWasKill = setLastWasKill;
  2940. DoNeededAction ();
  2941. }
  2942. void MoveEndOfLine ()
  2943. {
  2944. var currentLine = GetCurrentLine ();
  2945. currentColumn = currentLine.Count;
  2946. Adjust ();
  2947. DoNeededAction ();
  2948. }
  2949. void MoveStartOfLine ()
  2950. {
  2951. currentColumn = 0;
  2952. leftColumn = 0;
  2953. Adjust ();
  2954. DoNeededAction ();
  2955. }
  2956. /// <summary>
  2957. /// Deletes all the selected or a single character at right from the position of the cursor.
  2958. /// </summary>
  2959. public void DeleteCharRight ()
  2960. {
  2961. if (isReadOnly)
  2962. return;
  2963. SetWrapModel ();
  2964. if (selecting) {
  2965. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2966. HistoryText.LineStatus.Original);
  2967. ClearSelectedRegion ();
  2968. var currentLine = GetCurrentLine ();
  2969. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition,
  2970. HistoryText.LineStatus.Replaced);
  2971. UpdateWrapModel ();
  2972. return;
  2973. }
  2974. if (DeleteTextForwards ()) {
  2975. UpdateWrapModel ();
  2976. return;
  2977. }
  2978. UpdateWrapModel ();
  2979. DoNeededAction ();
  2980. }
  2981. /// <summary>
  2982. /// Deletes all the selected or a single character at left from the position of the cursor.
  2983. /// </summary>
  2984. public void DeleteCharLeft ()
  2985. {
  2986. if (isReadOnly)
  2987. return;
  2988. SetWrapModel ();
  2989. if (selecting) {
  2990. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  2991. HistoryText.LineStatus.Original);
  2992. ClearSelectedRegion ();
  2993. var currentLine = GetCurrentLine ();
  2994. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition,
  2995. HistoryText.LineStatus.Replaced);
  2996. UpdateWrapModel ();
  2997. return;
  2998. }
  2999. if (DeleteTextBackwards ()) {
  3000. UpdateWrapModel ();
  3001. return;
  3002. }
  3003. UpdateWrapModel ();
  3004. DoNeededAction ();
  3005. }
  3006. void MoveLeft ()
  3007. {
  3008. if (currentColumn > 0) {
  3009. currentColumn--;
  3010. } else {
  3011. if (currentRow > 0) {
  3012. currentRow--;
  3013. if (currentRow < topRow) {
  3014. topRow--;
  3015. SetNeedsDisplay ();
  3016. }
  3017. var currentLine = GetCurrentLine ();
  3018. currentColumn = currentLine.Count;
  3019. }
  3020. }
  3021. Adjust ();
  3022. DoNeededAction ();
  3023. }
  3024. void MoveRight ()
  3025. {
  3026. var currentLine = GetCurrentLine ();
  3027. if (currentColumn < currentLine.Count) {
  3028. currentColumn++;
  3029. } else {
  3030. if (currentRow + 1 < model.Count) {
  3031. currentRow++;
  3032. currentColumn = 0;
  3033. if (currentRow >= topRow + Frame.Height) {
  3034. topRow++;
  3035. SetNeedsDisplay ();
  3036. }
  3037. }
  3038. }
  3039. Adjust ();
  3040. DoNeededAction ();
  3041. }
  3042. void MovePageUp ()
  3043. {
  3044. int nPageUpShift = Frame.Height - 1;
  3045. if (currentRow > 0) {
  3046. if (columnTrack == -1)
  3047. columnTrack = currentColumn;
  3048. currentRow = currentRow - nPageUpShift < 0 ? 0 : currentRow - nPageUpShift;
  3049. if (currentRow < topRow) {
  3050. topRow = topRow - nPageUpShift < 0 ? 0 : topRow - nPageUpShift;
  3051. SetNeedsDisplay ();
  3052. }
  3053. TrackColumn ();
  3054. PositionCursor ();
  3055. }
  3056. DoNeededAction ();
  3057. }
  3058. void MovePageDown ()
  3059. {
  3060. int nPageDnShift = Frame.Height - 1;
  3061. if (currentRow >= 0 && currentRow < model.Count) {
  3062. if (columnTrack == -1)
  3063. columnTrack = currentColumn;
  3064. currentRow = (currentRow + nPageDnShift) > model.Count
  3065. ? model.Count > 0 ? model.Count - 1 : 0
  3066. : currentRow + nPageDnShift;
  3067. if (topRow < currentRow - nPageDnShift) {
  3068. topRow = currentRow >= model.Count ? currentRow - nPageDnShift : topRow + nPageDnShift;
  3069. SetNeedsDisplay ();
  3070. }
  3071. TrackColumn ();
  3072. PositionCursor ();
  3073. }
  3074. DoNeededAction ();
  3075. }
  3076. void ResetContinuousFindTrack ()
  3077. {
  3078. // Handle some state here - whether the last command was a kill
  3079. // operation and the column tracking (up/down)
  3080. lastWasKill = false;
  3081. continuousFind = false;
  3082. }
  3083. void ResetColumnTrack ()
  3084. {
  3085. // Handle some state here - whether the last command was a kill
  3086. // operation and the column tracking (up/down)
  3087. lastWasKill = false;
  3088. columnTrack = -1;
  3089. }
  3090. void ResetAllTrack ()
  3091. {
  3092. // Handle some state here - whether the last command was a kill
  3093. // operation and the column tracking (up/down)
  3094. lastWasKill = false;
  3095. columnTrack = -1;
  3096. continuousFind = false;
  3097. }
  3098. bool InsertText (KeyEvent kb)
  3099. {
  3100. //So that special keys like tab can be processed
  3101. if (isReadOnly)
  3102. return true;
  3103. SetWrapModel ();
  3104. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition);
  3105. if (selecting) {
  3106. ClearSelectedRegion ();
  3107. }
  3108. if (kb.Key == Key.Enter) {
  3109. model.AddLine (currentRow + 1, new List<Rune> ());
  3110. currentRow++;
  3111. currentColumn = 0;
  3112. } else if ((uint)kb.Key == 13) {
  3113. currentColumn = 0;
  3114. } else {
  3115. if (Used) {
  3116. Insert ((uint)kb.Key);
  3117. currentColumn++;
  3118. if (currentColumn >= leftColumn + Frame.Width) {
  3119. leftColumn++;
  3120. SetNeedsDisplay ();
  3121. }
  3122. } else {
  3123. Insert ((uint)kb.Key);
  3124. currentColumn++;
  3125. }
  3126. }
  3127. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  3128. HistoryText.LineStatus.Replaced);
  3129. UpdateWrapModel ();
  3130. return true;
  3131. }
  3132. void ShowContextMenu ()
  3133. {
  3134. if (currentCulture != Thread.CurrentThread.CurrentUICulture) {
  3135. currentCulture = Thread.CurrentThread.CurrentUICulture;
  3136. ContextMenu.MenuItems = BuildContextMenuBarItem ();
  3137. }
  3138. ContextMenu.Show ();
  3139. }
  3140. /// <summary>
  3141. /// Deletes all text.
  3142. /// </summary>
  3143. public void DeleteAll ()
  3144. {
  3145. if (Lines == 0) {
  3146. return;
  3147. }
  3148. selectionStartColumn = 0;
  3149. selectionStartRow = 0;
  3150. MoveBottomEndExtend ();
  3151. DeleteCharLeft ();
  3152. SetNeedsDisplay ();
  3153. }
  3154. ///<inheritdoc/>
  3155. public override bool OnKeyUp (KeyEvent kb)
  3156. {
  3157. switch (kb.Key) {
  3158. case Key.Space | Key.CtrlMask:
  3159. return true;
  3160. }
  3161. return false;
  3162. }
  3163. void DoNeededAction ()
  3164. {
  3165. if (NeedDisplay.IsEmpty) {
  3166. PositionCursor ();
  3167. } else {
  3168. Adjust ();
  3169. }
  3170. }
  3171. bool DeleteTextForwards ()
  3172. {
  3173. SetWrapModel ();
  3174. var currentLine = GetCurrentLine ();
  3175. if (currentColumn == currentLine.Count) {
  3176. if (currentRow + 1 == model.Count) {
  3177. UpdateWrapModel ();
  3178. return true;
  3179. }
  3180. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  3181. var removedLines = new List<List<Rune>> () { new List<Rune> (currentLine) };
  3182. var nextLine = model.GetLine (currentRow + 1);
  3183. removedLines.Add (new List<Rune> (nextLine));
  3184. historyText.Add (removedLines, CursorPosition, HistoryText.LineStatus.Removed);
  3185. currentLine.AddRange (nextLine);
  3186. model.RemoveLine (currentRow + 1);
  3187. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition,
  3188. HistoryText.LineStatus.Replaced);
  3189. if (wordWrap) {
  3190. wrapNeeded = true;
  3191. }
  3192. if (wrapNeeded) {
  3193. SetNeedsDisplay ();
  3194. } else {
  3195. var sr = currentRow - topRow;
  3196. SetNeedsDisplay (new Rect (0, sr, Frame.Width, sr + 1));
  3197. }
  3198. } else {
  3199. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  3200. currentLine.RemoveAt (currentColumn);
  3201. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition,
  3202. HistoryText.LineStatus.Replaced);
  3203. if (wordWrap) {
  3204. wrapNeeded = true;
  3205. }
  3206. if (wrapNeeded) {
  3207. SetNeedsDisplay ();
  3208. } else {
  3209. var r = currentRow - topRow;
  3210. SetNeedsDisplay (new Rect (currentColumn - leftColumn, r, Frame.Width, r + 1));
  3211. }
  3212. }
  3213. UpdateWrapModel ();
  3214. return false;
  3215. }
  3216. bool DeleteTextBackwards ()
  3217. {
  3218. SetWrapModel ();
  3219. if (currentColumn > 0) {
  3220. // Delete backwards
  3221. var currentLine = GetCurrentLine ();
  3222. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  3223. currentLine.RemoveAt (currentColumn - 1);
  3224. if (wordWrap) {
  3225. wrapNeeded = true;
  3226. }
  3227. currentColumn--;
  3228. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition,
  3229. HistoryText.LineStatus.Replaced);
  3230. if (currentColumn < leftColumn) {
  3231. leftColumn--;
  3232. SetNeedsDisplay ();
  3233. } else
  3234. SetNeedsDisplay (new Rect (0, currentRow - topRow, 1, Frame.Width));
  3235. } else {
  3236. // Merges the current line with the previous one.
  3237. if (currentRow == 0)
  3238. return true;
  3239. var prowIdx = currentRow - 1;
  3240. var prevRow = model.GetLine (prowIdx);
  3241. historyText.Add (new List<List<Rune>> () { new List<Rune> (prevRow) }, CursorPosition);
  3242. List<List<Rune>> removedLines = new List<List<Rune>> () { new List<Rune> (prevRow) };
  3243. removedLines.Add (new List<Rune> (GetCurrentLine ()));
  3244. historyText.Add (removedLines, new Point (currentColumn, prowIdx),
  3245. HistoryText.LineStatus.Removed);
  3246. var prevCount = prevRow.Count;
  3247. model.GetLine (prowIdx).AddRange (GetCurrentLine ());
  3248. model.RemoveLine (currentRow);
  3249. if (wordWrap) {
  3250. wrapNeeded = true;
  3251. }
  3252. currentRow--;
  3253. historyText.Add (new List<List<Rune>> () { GetCurrentLine () }, new Point (currentColumn, prowIdx),
  3254. HistoryText.LineStatus.Replaced);
  3255. currentColumn = prevCount;
  3256. SetNeedsDisplay ();
  3257. }
  3258. UpdateWrapModel ();
  3259. return false;
  3260. }
  3261. bool copyWithoutSelection;
  3262. /// <summary>
  3263. /// Copy the selected text to the clipboard contents.
  3264. /// </summary>
  3265. public void Copy ()
  3266. {
  3267. SetWrapModel ();
  3268. if (selecting) {
  3269. SetClipboard (GetRegion ());
  3270. copyWithoutSelection = false;
  3271. } else {
  3272. var currentLine = GetCurrentLine ();
  3273. SetClipboard (ustring.Make (currentLine));
  3274. copyWithoutSelection = true;
  3275. }
  3276. UpdateWrapModel ();
  3277. DoNeededAction ();
  3278. }
  3279. /// <summary>
  3280. /// Cut the selected text to the clipboard contents.
  3281. /// </summary>
  3282. public void Cut ()
  3283. {
  3284. SetWrapModel ();
  3285. SetClipboard (GetRegion ());
  3286. if (!isReadOnly) {
  3287. ClearRegion ();
  3288. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  3289. HistoryText.LineStatus.Replaced);
  3290. }
  3291. UpdateWrapModel ();
  3292. selecting = false;
  3293. DoNeededAction ();
  3294. }
  3295. /// <summary>
  3296. /// Paste the clipboard contents into the current selected position.
  3297. /// </summary>
  3298. public void Paste ()
  3299. {
  3300. if (isReadOnly) {
  3301. return;
  3302. }
  3303. SetWrapModel ();
  3304. var contents = Clipboard.Contents;
  3305. if (copyWithoutSelection && contents.FirstOrDefault (x => x == '\n' || x == '\r') == 0) {
  3306. var runeList = contents == null ? new List<Rune> () : contents.ToRuneList ();
  3307. var currentLine = GetCurrentLine ();
  3308. historyText.Add (new List<List<Rune>> () { new List<Rune> (currentLine) }, CursorPosition);
  3309. var addedLine = new List<List<Rune>> () { new List<Rune> (currentLine) };
  3310. addedLine.Add (runeList);
  3311. historyText.Add (new List<List<Rune>> (addedLine), CursorPosition, HistoryText.LineStatus.Added);
  3312. model.AddLine (currentRow, runeList);
  3313. currentRow++;
  3314. historyText.Add (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  3315. HistoryText.LineStatus.Replaced);
  3316. } else {
  3317. if (selecting) {
  3318. ClearRegion ();
  3319. }
  3320. copyWithoutSelection = false;
  3321. InsertText (contents);
  3322. if (selecting) {
  3323. historyText.ReplaceLast (new List<List<Rune>> () { new List<Rune> (GetCurrentLine ()) }, CursorPosition,
  3324. HistoryText.LineStatus.Original);
  3325. }
  3326. }
  3327. UpdateWrapModel ();
  3328. selecting = false;
  3329. DoNeededAction ();
  3330. }
  3331. void StartSelecting ()
  3332. {
  3333. if (shiftSelecting && selecting) {
  3334. return;
  3335. }
  3336. shiftSelecting = true;
  3337. selecting = true;
  3338. selectionStartColumn = currentColumn;
  3339. selectionStartRow = currentRow;
  3340. }
  3341. void StopSelecting ()
  3342. {
  3343. shiftSelecting = false;
  3344. selecting = false;
  3345. isButtonShift = false;
  3346. }
  3347. void ClearSelectedRegion ()
  3348. {
  3349. SetWrapModel ();
  3350. if (!isReadOnly) {
  3351. ClearRegion ();
  3352. }
  3353. UpdateWrapModel ();
  3354. selecting = false;
  3355. DoNeededAction ();
  3356. }
  3357. void MoveUp ()
  3358. {
  3359. if (currentRow > 0) {
  3360. if (columnTrack == -1) {
  3361. columnTrack = currentColumn;
  3362. }
  3363. currentRow--;
  3364. if (currentRow < topRow) {
  3365. topRow--;
  3366. SetNeedsDisplay ();
  3367. }
  3368. TrackColumn ();
  3369. PositionCursor ();
  3370. }
  3371. DoNeededAction ();
  3372. }
  3373. void MoveDown ()
  3374. {
  3375. if (currentRow + 1 < model.Count) {
  3376. if (columnTrack == -1) {
  3377. columnTrack = currentColumn;
  3378. }
  3379. currentRow++;
  3380. if (currentRow + BottomOffset >= topRow + Frame.Height) {
  3381. topRow++;
  3382. SetNeedsDisplay ();
  3383. }
  3384. TrackColumn ();
  3385. PositionCursor ();
  3386. } else if (currentRow > Frame.Height) {
  3387. Adjust ();
  3388. }
  3389. DoNeededAction ();
  3390. }
  3391. IEnumerable<(int col, int row, Rune rune)> ForwardIterator (int col, int row)
  3392. {
  3393. if (col < 0 || row < 0)
  3394. yield break;
  3395. if (row >= model.Count)
  3396. yield break;
  3397. var line = GetCurrentLine ();
  3398. if (col >= line.Count)
  3399. yield break;
  3400. while (row < model.Count) {
  3401. for (int c = col; c < line.Count; c++) {
  3402. yield return (c, row, line [c]);
  3403. }
  3404. col = 0;
  3405. row++;
  3406. line = GetCurrentLine ();
  3407. }
  3408. }
  3409. Rune RuneAt (int col, int row)
  3410. {
  3411. var line = model.GetLine (row);
  3412. if (line.Count > 0) {
  3413. return line [col > line.Count - 1 ? line.Count - 1 : col];
  3414. } else {
  3415. return 0;
  3416. }
  3417. }
  3418. /// <summary>
  3419. /// Will scroll the <see cref="TextView"/> to the last line and position the cursor there.
  3420. /// </summary>
  3421. public void MoveEnd ()
  3422. {
  3423. currentRow = model.Count - 1;
  3424. var line = GetCurrentLine ();
  3425. currentColumn = line.Count;
  3426. TrackColumn ();
  3427. PositionCursor ();
  3428. }
  3429. /// <summary>
  3430. /// Will scroll the <see cref="TextView"/> to the first line and position the cursor there.
  3431. /// </summary>
  3432. public void MoveHome ()
  3433. {
  3434. currentRow = 0;
  3435. topRow = 0;
  3436. currentColumn = 0;
  3437. leftColumn = 0;
  3438. TrackColumn ();
  3439. PositionCursor ();
  3440. }
  3441. bool MoveNext (ref int col, ref int row, out Rune rune)
  3442. {
  3443. var line = model.GetLine (row);
  3444. if (col + 1 < line.Count) {
  3445. col++;
  3446. rune = line [col];
  3447. if (col + 1 == line.Count && !Rune.IsLetterOrDigit (rune)
  3448. && !Rune.IsWhiteSpace (line [col - 1])) {
  3449. col++;
  3450. }
  3451. return true;
  3452. } else if (col + 1 == line.Count) {
  3453. col++;
  3454. }
  3455. while (row + 1 < model.Count) {
  3456. col = 0;
  3457. row++;
  3458. line = model.GetLine (row);
  3459. if (line.Count > 0) {
  3460. rune = line [0];
  3461. return true;
  3462. }
  3463. }
  3464. rune = 0;
  3465. return false;
  3466. }
  3467. bool MovePrev (ref int col, ref int row, out Rune rune)
  3468. {
  3469. var line = model.GetLine (row);
  3470. if (col > 0) {
  3471. col--;
  3472. rune = line [col];
  3473. return true;
  3474. }
  3475. if (row == 0) {
  3476. rune = 0;
  3477. return false;
  3478. }
  3479. while (row > 0) {
  3480. row--;
  3481. line = model.GetLine (row);
  3482. col = line.Count - 1;
  3483. if (col >= 0) {
  3484. rune = line [col];
  3485. return true;
  3486. }
  3487. }
  3488. rune = 0;
  3489. return false;
  3490. }
  3491. (int col, int row)? WordForward (int fromCol, int fromRow)
  3492. {
  3493. var col = fromCol;
  3494. var row = fromRow;
  3495. try {
  3496. var rune = RuneAt (col, row);
  3497. void ProcMoveNext (ref int nCol, ref int nRow, Rune nRune)
  3498. {
  3499. if (Rune.IsSymbol (nRune) || Rune.IsWhiteSpace (nRune)) {
  3500. while (MoveNext (ref nCol, ref nRow, out nRune)) {
  3501. if (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune))
  3502. return;
  3503. }
  3504. if (nRow != fromRow && (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune))) {
  3505. return;
  3506. }
  3507. while (MoveNext (ref nCol, ref nRow, out nRune)) {
  3508. if (!Rune.IsLetterOrDigit (nRune) && !Rune.IsPunctuation (nRune))
  3509. break;
  3510. }
  3511. } else {
  3512. if (!MoveNext (ref nCol, ref nRow, out nRune)) {
  3513. return;
  3514. }
  3515. var line = model.GetLine (fromRow);
  3516. if ((nRow != fromRow && fromCol < line.Count)
  3517. || (nRow == fromRow && nCol == line.Count - 1)) {
  3518. nCol = line.Count;
  3519. nRow = fromRow;
  3520. return;
  3521. } else if (nRow != fromRow && fromCol == line.Count) {
  3522. line = model.GetLine (nRow);
  3523. if (Rune.IsLetterOrDigit (line [nCol]) || Rune.IsPunctuation (line [nCol])) {
  3524. return;
  3525. }
  3526. }
  3527. ProcMoveNext (ref nCol, ref nRow, nRune);
  3528. }
  3529. }
  3530. ProcMoveNext (ref col, ref row, rune);
  3531. if (fromCol != col || fromRow != row)
  3532. return (col, row);
  3533. return null;
  3534. } catch (Exception) {
  3535. return null;
  3536. }
  3537. }
  3538. (int col, int row)? WordBackward (int fromCol, int fromRow)
  3539. {
  3540. if (fromRow == 0 && fromCol == 0)
  3541. return null;
  3542. var col = Math.Max (fromCol - 1, 0);
  3543. var row = fromRow;
  3544. try {
  3545. var rune = RuneAt (col, row);
  3546. int lastValidCol = Rune.IsLetterOrDigit (rune) || Rune.IsPunctuation (rune) ? col : -1;
  3547. void ProcMovePrev (ref int nCol, ref int nRow, Rune nRune)
  3548. {
  3549. if (Rune.IsSymbol (nRune) || Rune.IsWhiteSpace (nRune)) {
  3550. while (MovePrev (ref nCol, ref nRow, out nRune)) {
  3551. if (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune)) {
  3552. lastValidCol = nCol;
  3553. break;
  3554. }
  3555. }
  3556. if (nRow != fromRow && (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune))) {
  3557. if (lastValidCol > -1) {
  3558. nCol = lastValidCol;
  3559. }
  3560. return;
  3561. }
  3562. while (MovePrev (ref nCol, ref nRow, out nRune)) {
  3563. if (!Rune.IsLetterOrDigit (nRune) && !Rune.IsPunctuation (nRune))
  3564. break;
  3565. if (nRow != fromRow) {
  3566. break;
  3567. }
  3568. lastValidCol = nCol;
  3569. }
  3570. if (lastValidCol > -1) {
  3571. nCol = lastValidCol;
  3572. nRow = fromRow;
  3573. }
  3574. } else {
  3575. if (!MovePrev (ref nCol, ref nRow, out nRune)) {
  3576. return;
  3577. }
  3578. var line = model.GetLine (nRow);
  3579. if (nCol == 0 && nRow == fromRow && (Rune.IsLetterOrDigit (line [0]) || Rune.IsPunctuation (line [0]))) {
  3580. return;
  3581. }
  3582. lastValidCol = Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) ? nCol : lastValidCol;
  3583. if (lastValidCol > -1 && (Rune.IsSymbol (nRune) || Rune.IsWhiteSpace (nRune))) {
  3584. nCol = lastValidCol;
  3585. return;
  3586. }
  3587. if (fromRow != nRow) {
  3588. nCol = line.Count;
  3589. return;
  3590. }
  3591. ProcMovePrev (ref nCol, ref nRow, nRune);
  3592. }
  3593. }
  3594. ProcMovePrev (ref col, ref row, rune);
  3595. if (fromCol != col || fromRow != row)
  3596. return (col, row);
  3597. return null;
  3598. } catch (Exception) {
  3599. return null;
  3600. }
  3601. }
  3602. bool isButtonShift;
  3603. ///<inheritdoc/>
  3604. public override bool MouseEvent (MouseEvent ev)
  3605. {
  3606. if (!ev.Flags.HasFlag (MouseFlags.Button1Clicked) && !ev.Flags.HasFlag (MouseFlags.Button1Pressed)
  3607. && !ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition)
  3608. && !ev.Flags.HasFlag (MouseFlags.Button1Released)
  3609. && !ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ButtonShift)
  3610. && !ev.Flags.HasFlag (MouseFlags.WheeledDown) && !ev.Flags.HasFlag (MouseFlags.WheeledUp)
  3611. && !ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked)
  3612. && !ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked | MouseFlags.ButtonShift)
  3613. && !ev.Flags.HasFlag (MouseFlags.Button1TripleClicked)
  3614. && !ev.Flags.HasFlag (ContextMenu.MouseFlags)) {
  3615. return false;
  3616. }
  3617. if (!CanFocus) {
  3618. return true;
  3619. }
  3620. if (!HasFocus) {
  3621. SetFocus ();
  3622. }
  3623. continuousFind = false;
  3624. // Give autocomplete first opportunity to respond to mouse clicks
  3625. if (SelectedLength == 0 && Autocomplete.MouseEvent (ev, true)) {
  3626. return true;
  3627. }
  3628. if (ev.Flags == MouseFlags.Button1Clicked) {
  3629. if (shiftSelecting && !isButtonShift) {
  3630. StopSelecting ();
  3631. }
  3632. ProcessMouseClick (ev, out _);
  3633. PositionCursor ();
  3634. lastWasKill = false;
  3635. columnTrack = currentColumn;
  3636. } else if (ev.Flags == MouseFlags.WheeledDown) {
  3637. lastWasKill = false;
  3638. columnTrack = currentColumn;
  3639. ScrollTo (topRow + 1);
  3640. } else if (ev.Flags == MouseFlags.WheeledUp) {
  3641. lastWasKill = false;
  3642. columnTrack = currentColumn;
  3643. ScrollTo (topRow - 1);
  3644. } else if (ev.Flags == MouseFlags.WheeledRight) {
  3645. lastWasKill = false;
  3646. columnTrack = currentColumn;
  3647. ScrollTo (leftColumn + 1, false);
  3648. } else if (ev.Flags == MouseFlags.WheeledLeft) {
  3649. lastWasKill = false;
  3650. columnTrack = currentColumn;
  3651. ScrollTo (leftColumn - 1, false);
  3652. } else if (ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition)) {
  3653. ProcessMouseClick (ev, out List<Rune> line);
  3654. PositionCursor ();
  3655. if (model.Count > 0 && shiftSelecting && selecting) {
  3656. if (currentRow - topRow + BottomOffset >= Frame.Height - 1
  3657. && model.Count + BottomOffset > topRow + currentRow) {
  3658. ScrollTo (topRow + Frame.Height);
  3659. } else if (topRow > 0 && currentRow <= topRow) {
  3660. ScrollTo (topRow - Frame.Height);
  3661. } else if (ev.Y >= Frame.Height) {
  3662. ScrollTo (model.Count + BottomOffset);
  3663. } else if (ev.Y < 0 && topRow > 0) {
  3664. ScrollTo (0);
  3665. }
  3666. if (currentColumn - leftColumn + RightOffset >= Frame.Width - 1
  3667. && line.Count + RightOffset > leftColumn + currentColumn) {
  3668. ScrollTo (leftColumn + Frame.Width, false);
  3669. } else if (leftColumn > 0 && currentColumn <= leftColumn) {
  3670. ScrollTo (leftColumn - Frame.Width, false);
  3671. } else if (ev.X >= Frame.Width) {
  3672. ScrollTo (line.Count + RightOffset, false);
  3673. } else if (ev.X < 0 && leftColumn > 0) {
  3674. ScrollTo (0, false);
  3675. }
  3676. }
  3677. lastWasKill = false;
  3678. columnTrack = currentColumn;
  3679. } else if (ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ButtonShift)) {
  3680. if (!shiftSelecting) {
  3681. isButtonShift = true;
  3682. StartSelecting ();
  3683. }
  3684. ProcessMouseClick (ev, out _);
  3685. PositionCursor ();
  3686. lastWasKill = false;
  3687. columnTrack = currentColumn;
  3688. } else if (ev.Flags.HasFlag (MouseFlags.Button1Pressed)) {
  3689. if (shiftSelecting) {
  3690. StopSelecting ();
  3691. }
  3692. ProcessMouseClick (ev, out _);
  3693. PositionCursor ();
  3694. if (!selecting) {
  3695. StartSelecting ();
  3696. }
  3697. lastWasKill = false;
  3698. columnTrack = currentColumn;
  3699. if (Application.mouseGrabView == null) {
  3700. Application.GrabMouse (this);
  3701. }
  3702. } else if (ev.Flags.HasFlag (MouseFlags.Button1Released)) {
  3703. Application.UngrabMouse ();
  3704. } else if (ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked)) {
  3705. if (ev.Flags.HasFlag (MouseFlags.ButtonShift)) {
  3706. if (!selecting) {
  3707. StartSelecting ();
  3708. }
  3709. } else if (selecting) {
  3710. StopSelecting ();
  3711. }
  3712. ProcessMouseClick (ev, out List<Rune> line);
  3713. (int col, int row)? newPos;
  3714. if (currentColumn == line.Count || (currentColumn > 0 && (line [currentColumn - 1] != ' '
  3715. || line [currentColumn] == ' '))) {
  3716. newPos = WordBackward (currentColumn, currentRow);
  3717. if (newPos.HasValue) {
  3718. currentColumn = currentRow == newPos.Value.row ? newPos.Value.col : 0;
  3719. }
  3720. }
  3721. if (!selecting) {
  3722. StartSelecting ();
  3723. }
  3724. newPos = WordForward (currentColumn, currentRow);
  3725. if (newPos != null && newPos.HasValue) {
  3726. currentColumn = currentRow == newPos.Value.row ? newPos.Value.col : line.Count;
  3727. }
  3728. PositionCursor ();
  3729. lastWasKill = false;
  3730. columnTrack = currentColumn;
  3731. } else if (ev.Flags.HasFlag (MouseFlags.Button1TripleClicked)) {
  3732. if (selecting) {
  3733. StopSelecting ();
  3734. }
  3735. ProcessMouseClick (ev, out List<Rune> line);
  3736. currentColumn = 0;
  3737. if (!selecting) {
  3738. StartSelecting ();
  3739. }
  3740. currentColumn = line.Count;
  3741. PositionCursor ();
  3742. lastWasKill = false;
  3743. columnTrack = currentColumn;
  3744. } else if (ev.Flags == ContextMenu.MouseFlags) {
  3745. ContextMenu.Position = new Point (ev.X + 2, ev.Y + 2);
  3746. ShowContextMenu ();
  3747. }
  3748. return true;
  3749. }
  3750. void ProcessMouseClick (MouseEvent ev, out List<Rune> line)
  3751. {
  3752. List<Rune> r = null;
  3753. if (model.Count > 0) {
  3754. var maxCursorPositionableLine = Math.Max ((model.Count - 1) - topRow, 0);
  3755. if (Math.Max (ev.Y, 0) > maxCursorPositionableLine) {
  3756. currentRow = maxCursorPositionableLine + topRow;
  3757. } else {
  3758. currentRow = Math.Max (ev.Y + topRow, 0);
  3759. }
  3760. r = GetCurrentLine ();
  3761. var idx = TextModel.GetColFromX (r, leftColumn, Math.Max (ev.X, 0), TabWidth);
  3762. if (idx - leftColumn >= r.Count + RightOffset) {
  3763. currentColumn = Math.Max (r.Count - leftColumn + RightOffset, 0);
  3764. } else {
  3765. currentColumn = idx + leftColumn;
  3766. }
  3767. }
  3768. line = r;
  3769. }
  3770. ///<inheritdoc/>
  3771. public override bool OnLeave (View view)
  3772. {
  3773. if (Application.mouseGrabView != null && Application.mouseGrabView == this) {
  3774. Application.UngrabMouse ();
  3775. }
  3776. return base.OnLeave (view);
  3777. }
  3778. /// <summary>
  3779. /// Allows clearing the <see cref="HistoryText.HistoryTextItem"/> items updating the original text.
  3780. /// </summary>
  3781. public void ClearHistoryChanges ()
  3782. {
  3783. historyText?.Clear (Text);
  3784. }
  3785. }
  3786. /// <summary>
  3787. /// Renders an overlay on another view at a given point that allows selecting
  3788. /// from a range of 'autocomplete' options.
  3789. /// An implementation on a TextView.
  3790. /// </summary>
  3791. public class TextViewAutocomplete : Autocomplete {
  3792. ///<inheritdoc/>
  3793. protected override string GetCurrentWord ()
  3794. {
  3795. var host = (TextView)HostControl;
  3796. var currentLine = host.GetCurrentLine ();
  3797. var cursorPosition = Math.Min (host.CurrentColumn, currentLine.Count);
  3798. return IdxToWord (currentLine, cursorPosition);
  3799. }
  3800. /// <inheritdoc/>
  3801. protected override void DeleteTextBackwards ()
  3802. {
  3803. ((TextView)HostControl).DeleteCharLeft ();
  3804. }
  3805. /// <inheritdoc/>
  3806. protected override void InsertText (string accepted)
  3807. {
  3808. ((TextView)HostControl).InsertText (accepted);
  3809. }
  3810. }
  3811. }