123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935 |
- #nullable enable
- // TextView.cs: multi-line text editing
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Globalization;
- using System.IO;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Text.Json.Serialization;
- using System.Threading;
- using Terminal.Gui.Resources;
- namespace Terminal.Gui;
- /// <summary>
- /// Represents a single row/column within the <see cref="TextView"/>. Includes the glyph and the foreground/background colors.
- /// </summary>
- [DebuggerDisplay ("{DebuggerDisplay}")]
- public class RuneCell : IEquatable<RuneCell> {
- /// <summary>
- /// The glyph to draw.
- /// </summary>
- [JsonConverter (typeof (RuneJsonConverter))]
- public Rune Rune { get; set; }
- /// <summary>
- /// The <see cref="Terminal.Gui.ColorScheme"/> color sets to draw the glyph with.
- /// </summary>
- [JsonConverter (typeof (ColorSchemeJsonConverter))]
- public ColorScheme? ColorScheme { get; set; }
- /// <summary>Indicates whether the current object is equal to another object of the same type.</summary>
- /// <param name="other">An object to compare with this object.</param>
- /// <returns>
- /// <see langword="true" /> if the current object is equal to the <paramref name="other" /> parameter;
- /// otherwise, <see langword="false" />.</returns>
- public bool Equals (RuneCell? other) => other != null &&
- Rune.Equals (other.Rune) &&
- ColorScheme == other.ColorScheme;
- /// <summary>Returns a string that represents the current object.</summary>
- /// <returns>A string that represents the current object.</returns>
- public override string ToString ()
- {
- string colorSchemeStr = ColorSchemeDebuggerDisplay ();
- return DebuggerDisplay;
- }
- string ColorSchemeDebuggerDisplay ()
- {
- string colorSchemeStr = "null";
- if (ColorScheme != null) {
- colorSchemeStr = $"Normal: {ColorScheme.Normal.Foreground},{ColorScheme.Normal.Background}; " +
- $"Focus: {ColorScheme.Focus.Foreground},{ColorScheme.Focus.Background}; " +
- $"HotNormal: {ColorScheme.HotNormal.Foreground},{ColorScheme.HotNormal.Background}; " +
- $"HotFocus: {ColorScheme.HotFocus.Foreground},{ColorScheme.HotFocus.Background}; " +
- $"Disabled: {ColorScheme.Disabled.Foreground},{ColorScheme.Disabled.Background}";
- }
- return colorSchemeStr;
- }
- string DebuggerDisplay {
- get {
- string colorSchemeStr = ColorSchemeDebuggerDisplay ();
- return $"U+{Rune.Value:X4} '{Rune.ToString ()}'; {colorSchemeStr}";
- }
- }
- }
- class TextModel {
- List<List<RuneCell>> _lines = new ();
- public event EventHandler? LinesLoaded;
- public bool LoadFile (string file)
- {
- FilePath = file ?? throw new ArgumentNullException (nameof (file));
- using (var stream = File.OpenRead (file)) {
- LoadStream (stream);
- return true;
- }
- }
- public bool CloseFile ()
- {
- if (FilePath == null) {
- throw new ArgumentNullException (nameof (FilePath));
- }
- FilePath = null;
- _lines = new List<List<RuneCell>> ();
- return true;
- }
- // Turns the string into cells, this does not split the
- // contents on a newline if it is present.
- internal static List<RuneCell> StringToRuneCells (string str, ColorScheme? colorScheme = null)
- {
- var cells = new List<RuneCell> ();
- foreach (var rune in str.ToRunes ()) {
- cells.Add (new RuneCell { Rune = rune, ColorScheme = colorScheme });
- }
- return cells;
- }
- internal static List<RuneCell> ToRuneCells (IEnumerable<Rune> runes, ColorScheme? colorScheme = null)
- {
- var cells = new List<RuneCell> ();
- foreach (var rune in runes) {
- cells.Add (new RuneCell { Rune = rune, ColorScheme = colorScheme });
- }
- return cells;
- }
- static List<List<RuneCell>> ToRuneCells (List<RuneCell> cells) => SplitNewLines (cells);
- // Splits a string into a List that contains a List<RuneCell> for each line
- public static List<List<RuneCell>> StringToLinesOfRuneCells (string content, ColorScheme? colorScheme = null)
- {
- var cells = content.EnumerateRunes ().Select (x => new RuneCell () { Rune = x, ColorScheme = colorScheme }).ToList ();
- return SplitNewLines (cells);
- }
- static List<List<RuneCell>> SplitNewLines (List<RuneCell> cells)
- {
- var lines = new List<List<RuneCell>> ();
- int start = 0, i = 0;
- bool hasCR = false;
- // ASCII code 13 = Carriage Return.
- // ASCII code 10 = Line Feed.
- for (; i < cells.Count; i++) {
- if (cells [i].Rune.Value == 13) {
- hasCR = true;
- continue;
- }
- if (cells [i].Rune.Value == 10) {
- if (i - start > 0) {
- lines.Add (cells.GetRange (start, hasCR ? i - 1 - start : i - start));
- } else {
- lines.Add (StringToRuneCells (string.Empty));
- }
- start = i + 1;
- hasCR = false;
- }
- }
- if (i - start >= 0) {
- lines.Add (cells.GetRange (start, i - start));
- }
- return lines;
- }
- void Append (List<byte> line)
- {
- string str = StringExtensions.ToString (line.ToArray ());
- _lines.Add (StringToRuneCells (str));
- }
- public void LoadStream (Stream input)
- {
- if (input == null) {
- throw new ArgumentNullException (nameof (input));
- }
- _lines = new List<List<RuneCell>> ();
- var buff = new BufferedStream (input);
- int v;
- var line = new List<byte> ();
- bool wasNewLine = false;
- while ((v = buff.ReadByte ()) != -1) {
- if (v == 13) {
- continue;
- }
- if (v == 10) {
- Append (line);
- line.Clear ();
- wasNewLine = true;
- continue;
- }
- line.Add ((byte)v);
- wasNewLine = false;
- }
- if (line.Count > 0 || wasNewLine) {
- Append (line);
- }
- buff.Dispose ();
- OnLinesLoaded ();
- }
- public void LoadString (string content)
- {
- _lines = StringToLinesOfRuneCells (content);
- OnLinesLoaded ();
- }
- public void LoadRuneCells (List<RuneCell> cells, ColorScheme? colorScheme)
- {
- _lines = ToRuneCells (cells);
- SetColorSchemes (colorScheme);
- OnLinesLoaded ();
- }
- public void LoadListRuneCells (List<List<RuneCell>> cellsList, ColorScheme? colorScheme)
- {
- _lines = cellsList;
- SetColorSchemes (colorScheme);
- OnLinesLoaded ();
- }
- void SetColorSchemes (ColorScheme? colorScheme)
- {
- foreach (var line in _lines) {
- foreach (var cell in line) {
- if (cell.ColorScheme == null) {
- cell.ColorScheme = colorScheme;
- }
- }
- }
- }
- void OnLinesLoaded () => LinesLoaded?.Invoke (this, EventArgs.Empty);
- public override string ToString ()
- {
- var sb = new StringBuilder ();
- for (int i = 0; i < _lines.Count; i++) {
- sb.Append (ToString (_lines [i]));
- if (i + 1 < _lines.Count) {
- sb.AppendLine ();
- }
- }
- return sb.ToString ();
- }
- public string? FilePath { get; set; }
- /// <summary>
- /// The number of text lines in the model
- /// </summary>
- public int Count => _lines.Count;
- /// <summary>
- /// Returns the specified line as a List of Rune
- /// </summary>
- /// <returns>The line.</returns>
- /// <param name="line">Line number to retrieve.</param>
- public List<RuneCell> GetLine (int line)
- {
- if (_lines.Count > 0) {
- if (line < Count) {
- return _lines [line];
- } else {
- return _lines [Count - 1];
- }
- } else {
- _lines.Add (new List<RuneCell> ());
- return _lines [0];
- }
- }
- public List<List<RuneCell>> GetAllLines () => _lines;
- /// <summary>
- /// Adds a line to the model at the specified position.
- /// </summary>
- /// <param name="pos">Line number where the line will be inserted.</param>
- /// <param name="cells">The line of text and color, as a List of RuneCell.</param>
- public void AddLine (int pos, List<RuneCell> cells) => _lines.Insert (pos, cells);
- /// <summary>
- /// Removes the line at the specified position
- /// </summary>
- /// <param name="pos">Position.</param>
- public void RemoveLine (int pos)
- {
- if (_lines.Count > 0) {
- if (_lines.Count == 1 && _lines [0].Count == 0) {
- return;
- }
- _lines.RemoveAt (pos);
- }
- }
- public void ReplaceLine (int pos, List<RuneCell> runes)
- {
- if (_lines.Count > 0 && pos < _lines.Count) {
- _lines [pos] = new List<RuneCell> (runes);
- } else if (_lines.Count == 0 || _lines.Count > 0 && pos >= _lines.Count) {
- _lines.Add (runes);
- }
- }
- /// <summary>
- /// Returns the maximum line length of the visible lines.
- /// </summary>
- /// <param name="first">The first line.</param>
- /// <param name="last">The last line.</param>
- /// <param name="tabWidth">The tab width.</param>
- public int GetMaxVisibleLine (int first, int last, int tabWidth)
- {
- int maxLength = 0;
- last = last < _lines.Count ? last : _lines.Count;
- for (int i = first; i < last; i++) {
- var line = GetLine (i);
- int tabSum = line.Sum (c => c.Rune.Value == '\t' ? Math.Max (tabWidth - 1, 0) : 0);
- int l = line.Count + tabSum;
- if (l > maxLength) {
- maxLength = l;
- }
- }
- return maxLength;
- }
- internal static bool SetCol (ref int col, int width, int cols)
- {
- if (col + cols <= width) {
- col += cols;
- return true;
- }
- return false;
- }
- internal static int GetColFromX (List<RuneCell> t, int start, int x, int tabWidth = 0)
- {
- var runes = new List<Rune> ();
- foreach (var cell in t) {
- runes.Add (cell.Rune);
- }
- return GetColFromX (runes, start, x, tabWidth);
- }
- internal static int GetColFromX (List<Rune> t, int start, int x, int tabWidth = 0)
- {
- if (x < 0) {
- return x;
- }
- int size = start;
- int pX = x + start;
- for (int i = start; i < t.Count; i++) {
- var r = t [i];
- size += r.GetColumns ();
- if (r.Value == '\t') {
- size += tabWidth + 1;
- }
- if (i == pX || size > pX) {
- return i - start;
- }
- }
- return t.Count - start;
- }
- internal static (int size, int length) DisplaySize (List<RuneCell> t, int start = -1, int end = -1,
- bool checkNextRune = true, int tabWidth = 0)
- {
- var runes = new List<Rune> ();
- foreach (var cell in t) {
- runes.Add (cell.Rune);
- }
- return DisplaySize (runes, start, end, checkNextRune, tabWidth);
- }
- // Returns the size and length in a range of the string.
- internal static (int size, int length) DisplaySize (List<Rune> t, int start = -1, int end = -1,
- bool checkNextRune = true, int tabWidth = 0)
- {
- if (t == null || t.Count == 0) {
- return (0, 0);
- }
- int size = 0;
- int len = 0;
- int tcount = end == -1 ? t.Count : end > t.Count ? t.Count : end;
- int i = start == -1 ? 0 : start;
- for (; i < tcount; i++) {
- var rune = t [i];
- size += rune.GetColumns ();
- len += rune.GetEncodingLength (Encoding.Unicode);
- if (rune.Value == '\t') {
- size += tabWidth + 1;
- len += tabWidth - 1;
- }
- if (checkNextRune && i == tcount - 1 && t.Count > tcount
- && IsWideRune (t [i + 1], tabWidth, out int s, out int l)) {
- size += s;
- len += l;
- }
- }
- bool IsWideRune (Rune r, int tWidth, out int s, out int l)
- {
- s = r.GetColumns ();
- l = r.GetEncodingLength ();
- if (r.Value == '\t') {
- s += tWidth + 1;
- l += tWidth - 1;
- }
- return s > 1;
- }
- return (size, len);
- }
- internal static int CalculateLeftColumn (List<RuneCell> t, int start, int end, int width, int tabWidth = 0)
- {
- var runes = new List<Rune> ();
- foreach (var cell in t) {
- runes.Add (cell.Rune);
- }
- return CalculateLeftColumn (runes, start, end, width, tabWidth);
- }
- // Returns the left column in a range of the string.
- internal static int CalculateLeftColumn (List<Rune> t, int start, int end, int width, int tabWidth = 0)
- {
- if (t == null || t.Count == 0) {
- return 0;
- }
- int size = 0;
- int tcount = end > t.Count - 1 ? t.Count - 1 : end;
- int col = 0;
- for (int i = tcount; i >= 0; i--) {
- var rune = t [i];
- size += rune.GetColumns ();
- if (rune.Value == '\t') {
- size += tabWidth + 1;
- }
- if (size > width) {
- if (col + width == end) {
- col++;
- }
- break;
- } else if (end < t.Count && col > 0 && start < end && col == start || end - col == width - 1) {
- break;
- }
- col = i;
- }
- return col;
- }
- (Point startPointToFind, Point currentPointToFind, bool found) _toFind;
- internal (Point current, bool found) FindNextText (string text, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false)
- {
- if (text == null || _lines.Count == 0) {
- gaveFullTurn = false;
- return (Point.Empty, false);
- }
- if (_toFind.found) {
- _toFind.currentPointToFind.X++;
- }
- var foundPos = GetFoundNextTextPoint (text, _lines.Count, matchCase, matchWholeWord, _toFind.currentPointToFind);
- if (!foundPos.found && _toFind.currentPointToFind != _toFind.startPointToFind) {
- foundPos = GetFoundNextTextPoint (text, _toFind.startPointToFind.Y + 1, matchCase, matchWholeWord, Point.Empty);
- }
- gaveFullTurn = ApplyToFind (foundPos);
- return foundPos;
- }
- internal (Point current, bool found) FindPreviousText (string text, out bool gaveFullTurn, bool matchCase = false, bool matchWholeWord = false)
- {
- if (text == null || _lines.Count == 0) {
- gaveFullTurn = false;
- return (Point.Empty, false);
- }
- if (_toFind.found) {
- _toFind.currentPointToFind.X++;
- }
- int linesCount = _toFind.currentPointToFind.IsEmpty ? _lines.Count - 1 : _toFind.currentPointToFind.Y;
- var foundPos = GetFoundPreviousTextPoint (text, linesCount, matchCase, matchWholeWord, _toFind.currentPointToFind);
- if (!foundPos.found && _toFind.currentPointToFind != _toFind.startPointToFind) {
- foundPos = GetFoundPreviousTextPoint (text, _lines.Count - 1, matchCase, matchWholeWord,
- new Point (_lines [_lines.Count - 1].Count, _lines.Count));
- }
- gaveFullTurn = ApplyToFind (foundPos);
- return foundPos;
- }
- internal (Point current, bool found) ReplaceAllText (string text, bool matchCase = false, bool matchWholeWord = false, string? textToReplace = null)
- {
- bool found = false;
- var pos = Point.Empty;
- for (int i = 0; i < _lines.Count; i++) {
- var x = _lines [i];
- string txt = GetText (x);
- string matchText = !matchCase ? text.ToUpper () : text;
- int col = txt.IndexOf (matchText);
- while (col > -1) {
- if (matchWholeWord && !MatchWholeWord (txt, matchText, col)) {
- if (col + 1 > txt.Length) {
- break;
- }
- col = txt.IndexOf (matchText, col + 1);
- continue;
- }
- if (col > -1) {
- if (!found) {
- found = true;
- }
- _lines [i] = ToRuneCellList (ReplaceText (x, textToReplace!, matchText, col));
- x = _lines [i];
- txt = GetText (x);
- pos = new Point (col, i);
- col += textToReplace!.Length - matchText.Length;
- }
- if (col < 0 || col + 1 > txt.Length) {
- break;
- }
- col = txt.IndexOf (matchText, col + 1);
- }
- }
- string GetText (List<RuneCell> x)
- {
- string txt = ToString (x);
- if (!matchCase) {
- txt = txt.ToUpper ();
- }
- return txt;
- }
- return (pos, found);
- }
- string ReplaceText (List<RuneCell> source, string textToReplace, string matchText, int col)
- {
- string origTxt = ToString (source);
- (int _, int len) = DisplaySize (source, 0, col, false);
- (int _, int len2) = DisplaySize (source, col, col + matchText.Length, false);
- (int _, int len3) = DisplaySize (source, col + matchText.Length, origTxt.GetRuneCount (), false);
- return origTxt [..len] +
- textToReplace +
- origTxt.Substring (len + len2, len3);
- }
- bool ApplyToFind ((Point current, bool found) foundPos)
- {
- bool gaveFullTurn = false;
- if (foundPos.found) {
- _toFind.currentPointToFind = foundPos.current;
- if (_toFind.found && _toFind.currentPointToFind == _toFind.startPointToFind) {
- gaveFullTurn = true;
- }
- if (!_toFind.found) {
- _toFind.startPointToFind = _toFind.currentPointToFind = foundPos.current;
- _toFind.found = foundPos.found;
- }
- }
- return gaveFullTurn;
- }
- (Point current, bool found) GetFoundNextTextPoint (string text, int linesCount, bool matchCase, bool matchWholeWord, Point start)
- {
- for (int i = start.Y; i < linesCount; i++) {
- var x = _lines [i];
- string txt = ToString (x);
- if (!matchCase) {
- txt = txt.ToUpper ();
- }
- string matchText = !matchCase ? text.ToUpper () : text;
- int col = txt.IndexOf (matchText, Math.Min (start.X, txt.Length));
- if (col > -1 && matchWholeWord && !MatchWholeWord (txt, matchText, col)) {
- continue;
- }
- if (col > -1 && (i == start.Y && col >= start.X
- || i > start.Y)
- && txt.Contains (matchText)) {
- return (new Point (col, i), true);
- } else if (col == -1 && start.X > 0) {
- start.X = 0;
- }
- }
- return (Point.Empty, false);
- }
- (Point current, bool found) GetFoundPreviousTextPoint (string text, int linesCount, bool matchCase, bool matchWholeWord, Point start)
- {
- for (int i = linesCount; i >= 0; i--) {
- var x = _lines [i];
- string txt = ToString (x);
- if (!matchCase) {
- txt = txt.ToUpper ();
- }
- if (start.Y != i) {
- start.X = Math.Max (x.Count - 1, 0);
- }
- string matchText = !matchCase ? text.ToUpper () : text;
- int col = txt.LastIndexOf (matchText, _toFind.found ? start.X - 1 : start.X);
- if (col > -1 && matchWholeWord && !MatchWholeWord (txt, matchText, col)) {
- continue;
- }
- if (col > -1 && (i <= linesCount && col <= start.X
- || i < start.Y)
- && txt.Contains (matchText)) {
- return (new Point (col, i), true);
- }
- }
- return (Point.Empty, false);
- }
- bool MatchWholeWord (string source, string matchText, int index = 0)
- {
- if (string.IsNullOrEmpty (source) || string.IsNullOrEmpty (matchText)) {
- return false;
- }
- string txt = matchText.Trim ();
- int start = index > 0 ? index - 1 : 0;
- int end = index + txt.Length;
- if ((start == 0 || Rune.IsWhiteSpace ((Rune)source [start]))
- && (end == source.Length || Rune.IsWhiteSpace ((Rune)source [end]))) {
- return true;
- }
- return false;
- }
- /// <summary>
- /// Redefine column and line tracking.
- /// </summary>
- /// <param name="point">Contains the column and line.</param>
- internal void ResetContinuousFind (Point point)
- {
- _toFind.startPointToFind = _toFind.currentPointToFind = point;
- _toFind.found = false;
- }
- RuneCell RuneAt (int col, int row)
- {
- var line = GetLine (row);
- if (line.Count > 0) {
- return line [col > line.Count - 1 ? line.Count - 1 : col];
- } else {
- return default!;
- }
- }
- bool MoveNext (ref int col, ref int row, out Rune rune)
- {
- var line = GetLine (row);
- if (col + 1 < line.Count) {
- col++;
- rune = line [col].Rune;
- if (col + 1 == line.Count && !Rune.IsLetterOrDigit (rune)
- && !Rune.IsWhiteSpace (line [col - 1].Rune)) {
- col++;
- }
- return true;
- } else if (col + 1 == line.Count) {
- col++;
- }
- while (row + 1 < Count) {
- col = 0;
- row++;
- line = GetLine (row);
- if (line.Count > 0) {
- rune = line [0].Rune;
- return true;
- }
- }
- rune = default;
- return false;
- }
- bool MovePrev (ref int col, ref int row, out Rune rune)
- {
- var line = GetLine (row);
- if (col > 0) {
- col--;
- rune = line [col].Rune;
- return true;
- }
- if (row == 0) {
- rune = default;
- return false;
- }
- while (row > 0) {
- row--;
- line = GetLine (row);
- col = line.Count - 1;
- if (col >= 0) {
- rune = line [col].Rune;
- return true;
- }
- }
- rune = default;
- return false;
- }
- enum RuneType {
- IsSymbol,
- IsWhiteSpace,
- IsLetterOrDigit,
- IsPunctuation,
- IsUnknow
- }
- RuneType GetRuneType (Rune rune)
- {
- if (Rune.IsSymbol (rune)) {
- return RuneType.IsSymbol;
- } else if (Rune.IsWhiteSpace (rune)) {
- return RuneType.IsWhiteSpace;
- } else if (Rune.IsLetterOrDigit (rune)) {
- return RuneType.IsLetterOrDigit;
- } else if (Rune.IsPunctuation (rune)) {
- return RuneType.IsPunctuation;
- }
- return RuneType.IsUnknow;
- }
- bool IsSameRuneType (Rune newRune, RuneType runeType)
- {
- var rt = GetRuneType (newRune);
- return rt == runeType;
- }
- public (int col, int row)? WordForward (int fromCol, int fromRow)
- {
- if (fromRow == _lines.Count - 1 && fromCol == GetLine (_lines.Count - 1).Count) {
- return null;
- }
- int col = fromCol;
- int row = fromRow;
- try {
- var rune = RuneAt (col, row).Rune;
- var runeType = GetRuneType (rune);
- int lastValidCol = IsSameRuneType (rune, runeType) && (Rune.IsLetterOrDigit (rune) || Rune.IsPunctuation (rune) || Rune.IsSymbol (rune)) ? col : -1;
- void ProcMoveNext (ref int nCol, ref int nRow, Rune nRune)
- {
- if (Rune.IsWhiteSpace (nRune)) {
- while (MoveNext (ref nCol, ref nRow, out nRune)) {
- if (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune)) {
- lastValidCol = nCol;
- return;
- }
- }
- if (nRow != fromRow && (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune))) {
- if (lastValidCol > -1) {
- nCol = lastValidCol;
- }
- return;
- }
- while (MoveNext (ref nCol, ref nRow, out nRune)) {
- if (!Rune.IsLetterOrDigit (nRune) && !Rune.IsPunctuation (nRune) && !Rune.IsSymbol (nRune)) {
- break;
- }
- if (nRow != fromRow) {
- break;
- }
- lastValidCol = IsSameRuneType (nRune, runeType) && Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune) ? nCol : lastValidCol;
- }
- if (lastValidCol > -1) {
- nCol = lastValidCol;
- nRow = fromRow;
- }
- } else {
- if (!MoveNext (ref nCol, ref nRow, out nRune)) {
- return;
- }
- if (!IsSameRuneType (nRune, runeType) && !Rune.IsWhiteSpace (nRune)) {
- return;
- }
- var line = GetLine (nRow);
- if (nCol == line.Count && nRow == fromRow && (Rune.IsLetterOrDigit (line [0].Rune) || Rune.IsPunctuation (line [0].Rune) || Rune.IsSymbol (line [0].Rune))) {
- return;
- }
- lastValidCol = IsSameRuneType (nRune, runeType) && Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune) ? nCol : lastValidCol;
- if (fromRow != nRow) {
- nCol = 0;
- return;
- }
- ProcMoveNext (ref nCol, ref nRow, nRune);
- }
- }
- ProcMoveNext (ref col, ref row, rune);
- if (fromCol != col || fromRow != row) {
- return (col, row);
- }
- return null;
- } catch (Exception) {
- return null;
- }
- }
- public (int col, int row)? WordBackward (int fromCol, int fromRow)
- {
- if (fromRow == 0 && fromCol == 0) {
- return null;
- }
- int col = Math.Max (fromCol - 1, 0);
- int row = fromRow;
- try {
- var cell = RuneAt (col, row);
- Rune rune;
- if (cell != null) {
- rune = cell.Rune;
- } else {
- if (col > 0) {
- return (col, row);
- } else if (col == 0 && row > 0) {
- row--;
- var line = GetLine (row);
- return (line.Count, row);
- } else {
- return null;
- }
- }
- var runeType = GetRuneType (rune);
- int lastValidCol = IsSameRuneType (rune, runeType) && (Rune.IsLetterOrDigit (rune) || Rune.IsPunctuation (rune) || Rune.IsSymbol (rune)) ? col : -1;
- void ProcMovePrev (ref int nCol, ref int nRow, Rune nRune)
- {
- if (Rune.IsWhiteSpace (nRune)) {
- while (MovePrev (ref nCol, ref nRow, out nRune)) {
- if (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune)) {
- lastValidCol = nCol;
- if (runeType == RuneType.IsWhiteSpace || runeType == RuneType.IsUnknow) {
- runeType = GetRuneType (nRune);
- }
- break;
- }
- }
- if (nRow != fromRow && (Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune))) {
- if (lastValidCol > -1) {
- nCol = lastValidCol;
- }
- return;
- }
- while (MovePrev (ref nCol, ref nRow, out nRune)) {
- if (!Rune.IsLetterOrDigit (nRune) && !Rune.IsPunctuation (nRune) && !Rune.IsSymbol (nRune)) {
- break;
- }
- if (nRow != fromRow) {
- break;
- }
- lastValidCol = IsSameRuneType (nRune, runeType) && Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune) ? nCol : lastValidCol;
- }
- if (lastValidCol > -1) {
- nCol = lastValidCol;
- nRow = fromRow;
- }
- } else {
- if (!MovePrev (ref nCol, ref nRow, out nRune)) {
- return;
- }
- var line = GetLine (nRow);
- if (nCol == 0 && nRow == fromRow && (Rune.IsLetterOrDigit (line [0].Rune) || Rune.IsPunctuation (line [0].Rune) || Rune.IsSymbol (line [0].Rune))) {
- return;
- }
- lastValidCol = IsSameRuneType (nRune, runeType) && Rune.IsLetterOrDigit (nRune) || Rune.IsPunctuation (nRune) || Rune.IsSymbol (nRune) ? nCol : lastValidCol;
- if (lastValidCol > -1 && Rune.IsWhiteSpace (nRune)) {
- nCol = lastValidCol;
- return;
- }
- if (fromRow != nRow) {
- nCol = line.Count;
- return;
- }
- ProcMovePrev (ref nCol, ref nRow, nRune);
- }
- }
- ProcMovePrev (ref col, ref row, rune);
- if (fromCol != col || fromRow != row) {
- return (col, row);
- }
- return null;
- } catch (Exception) {
- return null;
- }
- }
- /// <summary>
- /// Converts the string into a <see cref="List{RuneCell}"/>.
- /// </summary>
- /// <param name="str">The string to convert.</param>
- /// <param name="colorScheme">The <see cref="ColorScheme"/> to use.</param>
- /// <returns></returns>
- public static List<RuneCell> ToRuneCellList (string str, ColorScheme? colorScheme = null)
- {
- var cells = new List<RuneCell> ();
- foreach (var rune in str.EnumerateRunes ()) {
- cells.Add (new RuneCell { Rune = rune, ColorScheme = colorScheme });
- }
- return cells;
- }
- /// <summary>
- /// Converts a <see cref="RuneCell"/> generic collection into a string.
- /// </summary>
- /// <param name="cells">The enumerable cell to convert.</param>
- /// <returns></returns>
- public static string ToString (IEnumerable<RuneCell> cells)
- {
- string str = string.Empty;
- foreach (var cell in cells) {
- str += cell.Rune.ToString ();
- }
- return str;
- }
- }
- partial class HistoryText {
- public enum LineStatus {
- Original,
- Replaced,
- Removed,
- Added
- }
- List<HistoryTextItem> _historyTextItems = new ();
- int _idxHistoryText = -1;
- string? _originalText;
- public bool IsFromHistory { get; private set; }
- public bool HasHistoryChanges => _idxHistoryText > -1;
- public event EventHandler<HistoryTextItem>? ChangeText;
- public void Add (List<List<RuneCell>> lines, Point curPos, LineStatus lineStatus = LineStatus.Original)
- {
- if (lineStatus == LineStatus.Original && _historyTextItems.Count > 0
- && _historyTextItems.Last ().LineStatus == LineStatus.Original) {
- return;
- }
- if (lineStatus == LineStatus.Replaced && _historyTextItems.Count > 0
- && _historyTextItems.Last ().LineStatus == LineStatus.Replaced) {
- return;
- }
- if (_historyTextItems.Count == 0 && lineStatus != LineStatus.Original) {
- throw new ArgumentException ("The first item must be the original.");
- }
- if (_idxHistoryText >= 0 && _idxHistoryText + 1 < _historyTextItems.Count) {
- _historyTextItems.RemoveRange (_idxHistoryText + 1, _historyTextItems.Count - _idxHistoryText - 1);
- }
- _historyTextItems.Add (new HistoryTextItem (lines, curPos, lineStatus));
- _idxHistoryText++;
- }
- public void ReplaceLast (List<List<RuneCell>> lines, Point curPos, LineStatus lineStatus)
- {
- var found = _historyTextItems.FindLast (x => x.LineStatus == lineStatus);
- if (found != null) {
- found.Lines = lines;
- found.CursorPosition = curPos;
- }
- }
- public void Undo ()
- {
- if (_historyTextItems?.Count > 0 && _idxHistoryText > 0) {
- IsFromHistory = true;
- _idxHistoryText--;
- var historyTextItem = new HistoryTextItem (_historyTextItems [_idxHistoryText]) {
- IsUndoing = true
- };
- ProcessChanges (ref historyTextItem);
- IsFromHistory = false;
- }
- }
- public void Redo ()
- {
- if (_historyTextItems?.Count > 0 && _idxHistoryText < _historyTextItems.Count - 1) {
- IsFromHistory = true;
- _idxHistoryText++;
- var historyTextItem = new HistoryTextItem (_historyTextItems [_idxHistoryText]) {
- IsUndoing = false
- };
- ProcessChanges (ref historyTextItem);
- IsFromHistory = false;
- }
- }
- void ProcessChanges (ref HistoryTextItem historyTextItem)
- {
- if (historyTextItem.IsUndoing) {
- if (_idxHistoryText - 1 > -1 && (_historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Added
- || _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Removed
- || historyTextItem.LineStatus == LineStatus.Replaced &&
- _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Original)) {
- _idxHistoryText--;
- while (_historyTextItems [_idxHistoryText].LineStatus == LineStatus.Added
- && _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Removed) {
- _idxHistoryText--;
- }
- historyTextItem = new HistoryTextItem (_historyTextItems [_idxHistoryText]);
- historyTextItem.IsUndoing = true;
- historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
- }
- if (historyTextItem.LineStatus == LineStatus.Removed && _historyTextItems [_idxHistoryText + 1].LineStatus == LineStatus.Added) {
- historyTextItem.RemovedOnAdded = new HistoryTextItem (_historyTextItems [_idxHistoryText + 1]);
- }
- if (historyTextItem.LineStatus == LineStatus.Added && _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Original
- || historyTextItem.LineStatus == LineStatus.Removed && _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Original
- || historyTextItem.LineStatus == LineStatus.Added && _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Removed) {
- if (!historyTextItem.Lines [0].SequenceEqual (_historyTextItems [_idxHistoryText - 1].Lines [0])
- && historyTextItem.CursorPosition == _historyTextItems [_idxHistoryText - 1].CursorPosition) {
- historyTextItem.Lines [0] = new List<RuneCell> (_historyTextItems [_idxHistoryText - 1].Lines [0]);
- }
- if (historyTextItem.LineStatus == LineStatus.Added && _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Removed) {
- historyTextItem.FinalCursorPosition = _historyTextItems [_idxHistoryText - 2].CursorPosition;
- } else {
- historyTextItem.FinalCursorPosition = _historyTextItems [_idxHistoryText - 1].CursorPosition;
- }
- } else {
- historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
- }
- OnChangeText (historyTextItem);
- while (_historyTextItems [_idxHistoryText].LineStatus == LineStatus.Removed
- || _historyTextItems [_idxHistoryText].LineStatus == LineStatus.Added) {
- _idxHistoryText--;
- }
- } else if (!historyTextItem.IsUndoing) {
- if (_idxHistoryText + 1 < _historyTextItems.Count && (historyTextItem.LineStatus == LineStatus.Original
- || _historyTextItems [_idxHistoryText + 1].LineStatus == LineStatus.Added
- || _historyTextItems [_idxHistoryText + 1].LineStatus == LineStatus.Removed)) {
- _idxHistoryText++;
- historyTextItem = new HistoryTextItem (_historyTextItems [_idxHistoryText]);
- historyTextItem.IsUndoing = false;
- historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
- }
- if (historyTextItem.LineStatus == LineStatus.Added && _historyTextItems [_idxHistoryText - 1].LineStatus == LineStatus.Removed) {
- historyTextItem.RemovedOnAdded = new HistoryTextItem (_historyTextItems [_idxHistoryText - 1]);
- }
- if (historyTextItem.LineStatus == LineStatus.Removed && _historyTextItems [_idxHistoryText + 1].LineStatus == LineStatus.Replaced
- || historyTextItem.LineStatus == LineStatus.Removed && _historyTextItems [_idxHistoryText + 1].LineStatus == LineStatus.Original
- || historyTextItem.LineStatus == LineStatus.Added && _historyTextItems [_idxHistoryText + 1].LineStatus == LineStatus.Replaced) {
- if (historyTextItem.LineStatus == LineStatus.Removed
- && !historyTextItem.Lines [0].SequenceEqual (_historyTextItems [_idxHistoryText + 1].Lines [0])) {
- historyTextItem.Lines [0] = new List<RuneCell> (_historyTextItems [_idxHistoryText + 1].Lines [0]);
- }
- historyTextItem.FinalCursorPosition = _historyTextItems [_idxHistoryText + 1].CursorPosition;
- } else {
- historyTextItem.FinalCursorPosition = historyTextItem.CursorPosition;
- }
- OnChangeText (historyTextItem);
- while (_historyTextItems [_idxHistoryText].LineStatus == LineStatus.Removed
- || _historyTextItems [_idxHistoryText].LineStatus == LineStatus.Added) {
- _idxHistoryText++;
- }
- }
- }
- void OnChangeText (HistoryTextItem? lines) => ChangeText?.Invoke (this, lines!);
- public void Clear (string text)
- {
- _historyTextItems.Clear ();
- _idxHistoryText = -1;
- _originalText = text;
- OnChangeText (null);
- }
- public bool IsDirty (string text) => _originalText != text;
- }
- class WordWrapManager {
- class WrappedLine {
- public int ModelLine;
- public int Row;
- public int RowIndex;
- public int ColWidth;
- }
- List<WrappedLine> _wrappedModelLines = new ();
- int _frameWidth;
- bool _isWrapModelRefreshing;
- public TextModel Model { get; private set; }
- public WordWrapManager (TextModel model) => Model = model;
- public TextModel WrapModel (int width, out int nRow, out int nCol, out int nStartRow, out int nStartCol,
- int row = 0, int col = 0, int startRow = 0, int startCol = 0, int tabWidth = 0, bool preserveTrailingSpaces = true)
- {
- _frameWidth = width;
- int modelRow = _isWrapModelRefreshing ? row : GetModelLineFromWrappedLines (row);
- int modelCol = _isWrapModelRefreshing ? col : GetModelColFromWrappedLines (row, col);
- int modelStartRow = _isWrapModelRefreshing ? startRow : GetModelLineFromWrappedLines (startRow);
- int modelStartCol = _isWrapModelRefreshing ? startCol : GetModelColFromWrappedLines (startRow, startCol);
- var wrappedModel = new TextModel ();
- int lines = 0;
- nRow = 0;
- nCol = 0;
- nStartRow = 0;
- nStartCol = 0;
- bool isRowAndColSetted = row == 0 && col == 0;
- bool isStartRowAndColSetted = startRow == 0 && startCol == 0;
- var wModelLines = new List<WrappedLine> ();
- for (int i = 0; i < Model.Count; i++) {
- var line = Model.GetLine (i);
- var wrappedLines = ToListRune (
- TextFormatter.Format (TextModel.ToString (line), width, TextAlignment.Left, true, preserveTrailingSpaces, tabWidth));
- int sumColWidth = 0;
- for (int j = 0; j < wrappedLines.Count; j++) {
- var wrapLine = wrappedLines [j];
- if (!isRowAndColSetted && modelRow == i) {
- if (nCol + wrapLine.Count <= modelCol) {
- nCol += wrapLine.Count;
- nRow = lines;
- if (nCol == modelCol) {
- nCol = wrapLine.Count;
- isRowAndColSetted = true;
- } else if (j == wrappedLines.Count - 1) {
- nCol = wrapLine.Count - j + modelCol - nCol;
- isRowAndColSetted = true;
- }
- } else {
- int offset = nCol + wrapLine.Count - modelCol;
- nCol = wrapLine.Count - offset;
- nRow = lines;
- isRowAndColSetted = true;
- }
- }
- if (!isStartRowAndColSetted && modelStartRow == i) {
- if (nStartCol + wrapLine.Count <= modelStartCol) {
- nStartCol += wrapLine.Count;
- nStartRow = lines;
- if (nStartCol == modelStartCol) {
- nStartCol = wrapLine.Count;
- isStartRowAndColSetted = true;
- } else if (j == wrappedLines.Count - 1) {
- nStartCol = wrapLine.Count - j + modelStartCol - nStartCol;
- isStartRowAndColSetted = true;
- }
- } else {
- int offset = nStartCol + wrapLine.Count - modelStartCol;
- nStartCol = wrapLine.Count - offset;
- nStartRow = lines;
- isStartRowAndColSetted = true;
- }
- }
- for (int k = j; k < wrapLine.Count; k++) {
- wrapLine [k].ColorScheme = line [k].ColorScheme;
- }
- wrappedModel.AddLine (lines, wrapLine);
- sumColWidth += wrapLine.Count;
- var wrappedLine = new WrappedLine () {
- ModelLine = i,
- Row = lines,
- RowIndex = j,
- ColWidth = wrapLine.Count
- };
- wModelLines.Add (wrappedLine);
- lines++;
- }
- }
- _wrappedModelLines = wModelLines;
- return wrappedModel;
- }
- public List<List<RuneCell>> ToListRune (List<string> textList)
- {
- var runesList = new List<List<RuneCell>> ();
- foreach (string text in textList) {
- runesList.Add (TextModel.ToRuneCellList (text));
- }
- return runesList;
- }
- public int GetModelLineFromWrappedLines (int line) => _wrappedModelLines.Count > 0
- ? _wrappedModelLines [Math.Min (line, _wrappedModelLines.Count - 1)].ModelLine
- : 0;
- public int GetModelColFromWrappedLines (int line, int col)
- {
- if (_wrappedModelLines?.Count == 0) {
- return 0;
- }
- int modelLine = GetModelLineFromWrappedLines (line);
- int firstLine = _wrappedModelLines.IndexOf (r => r.ModelLine == modelLine);
- int modelCol = 0;
- for (int i = firstLine; i <= Math.Min (line, _wrappedModelLines!.Count - 1); i++) {
- var wLine = _wrappedModelLines [i];
- if (i < line) {
- modelCol += wLine.ColWidth;
- } else {
- modelCol += col;
- }
- }
- return modelCol;
- }
- List<RuneCell> GetCurrentLine (int row) => Model.GetLine (row);
- public void AddLine (int row, int col)
- {
- int modelRow = GetModelLineFromWrappedLines (row);
- int modelCol = GetModelColFromWrappedLines (row, col);
- var line = GetCurrentLine (modelRow);
- int restCount = line.Count - modelCol;
- var rest = line.GetRange (modelCol, restCount);
- line.RemoveRange (modelCol, restCount);
- Model.AddLine (modelRow + 1, rest);
- _isWrapModelRefreshing = true;
- WrapModel (_frameWidth, out _, out _, out _, out _, modelRow + 1, 0);
- _isWrapModelRefreshing = false;
- }
- public bool Insert (int row, int col, RuneCell cell)
- {
- var line = GetCurrentLine (GetModelLineFromWrappedLines (row));
- line.Insert (GetModelColFromWrappedLines (row, col), cell);
- if (line.Count > _frameWidth) {
- return true;
- } else {
- return false;
- }
- }
- public bool RemoveAt (int row, int col)
- {
- int modelRow = GetModelLineFromWrappedLines (row);
- var line = GetCurrentLine (modelRow);
- int modelCol = GetModelColFromWrappedLines (row, col);
- if (modelCol > line.Count) {
- Model.RemoveLine (modelRow);
- RemoveAt (row, 0);
- return false;
- }
- if (modelCol < line.Count) {
- line.RemoveAt (modelCol);
- }
- if (line.Count > _frameWidth || row + 1 < _wrappedModelLines.Count
- && _wrappedModelLines [row + 1].ModelLine == modelRow) {
- return true;
- }
- return false;
- }
- public bool RemoveLine (int row, int col, out bool lineRemoved, bool forward = true)
- {
- lineRemoved = false;
- int modelRow = GetModelLineFromWrappedLines (row);
- var line = GetCurrentLine (modelRow);
- int modelCol = GetModelColFromWrappedLines (row, col);
- if (modelCol == 0 && line.Count == 0) {
- Model.RemoveLine (modelRow);
- return false;
- } else if (modelCol < line.Count) {
- if (forward) {
- line.RemoveAt (modelCol);
- return true;
- } else if (modelCol - 1 > -1) {
- line.RemoveAt (modelCol - 1);
- return true;
- }
- }
- lineRemoved = true;
- if (forward) {
- if (modelRow + 1 == Model.Count) {
- return false;
- }
- var nextLine = Model.GetLine (modelRow + 1);
- line.AddRange (nextLine);
- Model.RemoveLine (modelRow + 1);
- if (line.Count > _frameWidth) {
- return true;
- }
- } else {
- if (modelRow == 0) {
- return false;
- }
- var prevLine = Model.GetLine (modelRow - 1);
- prevLine.AddRange (line);
- Model.RemoveLine (modelRow);
- if (prevLine.Count > _frameWidth) {
- return true;
- }
- }
- return false;
- }
- public bool RemoveRange (int row, int index, int count)
- {
- int modelRow = GetModelLineFromWrappedLines (row);
- var line = GetCurrentLine (modelRow);
- int modelCol = GetModelColFromWrappedLines (row, index);
- try {
- line.RemoveRange (modelCol, count);
- } catch (Exception) {
- return false;
- }
- return true;
- }
- public void UpdateModel (TextModel model, out int nRow, out int nCol, out int nStartRow, out int nStartCol,
- int row, int col, int startRow, int startCol, bool preserveTrailingSpaces)
- {
- _isWrapModelRefreshing = true;
- Model = model;
- WrapModel (_frameWidth, out nRow, out nCol, out nStartRow, out nStartCol, row, col, startRow, startCol, 0, preserveTrailingSpaces);
- _isWrapModelRefreshing = false;
- }
- public int GetWrappedLineColWidth (int line, int col, WordWrapManager wrapManager)
- {
- if (_wrappedModelLines?.Count == 0) {
- return 0;
- }
- var wModelLines = wrapManager._wrappedModelLines;
- int modelLine = GetModelLineFromWrappedLines (line);
- int firstLine = _wrappedModelLines.IndexOf (r => r.ModelLine == modelLine);
- int modelCol = 0;
- int colWidthOffset = 0;
- int i = firstLine;
- while (modelCol < col) {
- var wLine = _wrappedModelLines! [i];
- var wLineToCompare = wModelLines [i];
- if (wLine.ModelLine != modelLine || wLineToCompare.ModelLine != modelLine) {
- break;
- }
- modelCol += Math.Max (wLine.ColWidth, wLineToCompare.ColWidth);
- colWidthOffset += wLine.ColWidth - wLineToCompare.ColWidth;
- if (modelCol > col) {
- modelCol += col - modelCol;
- }
- i++;
- }
- return modelCol - colWidthOffset;
- }
- }
- /// <summary>
- /// Multi-line text editing <see cref="View"/>.
- /// </summary>
- /// <remarks>
- /// <para>
- /// <see cref="TextView"/> provides a multi-line text editor. Users interact
- /// with it with the standard Windows, Mac, and Linux (Emacs) commands.
- /// </para>
- /// <list type="table">
- /// <listheader>
- /// <term>Shortcut</term>
- /// <description>Action performed</description>
- /// </listheader>
- /// <item>
- /// <term>Left cursor, Control-b</term>
- /// <description>
- /// Moves the editing point left.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Right cursor, Control-f</term>
- /// <description>
- /// Moves the editing point right.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Alt-b</term>
- /// <description>
- /// Moves one word back.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Alt-f</term>
- /// <description>
- /// Moves one word forward.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Up cursor, Control-p</term>
- /// <description>
- /// Moves the editing point one line up.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Down cursor, Control-n</term>
- /// <description>
- /// Moves the editing point one line down
- /// </description>
- /// </item>
- /// <item>
- /// <term>Home key, Control-a</term>
- /// <description>
- /// Moves the cursor to the beginning of the line.
- /// </description>
- /// </item>
- /// <item>
- /// <term>End key, Control-e</term>
- /// <description>
- /// Moves the cursor to the end of the line.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Control-Home</term>
- /// <description>
- /// Scrolls to the first line and moves the cursor there.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Control-End</term>
- /// <description>
- /// Scrolls to the last line and moves the cursor there.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Delete, Control-d</term>
- /// <description>
- /// Deletes the character in front of the cursor.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Backspace</term>
- /// <description>
- /// Deletes the character behind the cursor.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Control-k</term>
- /// <description>
- /// Deletes the text until the end of the line and replaces the kill buffer
- /// with the deleted text. You can paste this text in a different place by
- /// using Control-y.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Control-y</term>
- /// <description>
- /// Pastes the content of the kill ring into the current position.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Alt-d</term>
- /// <description>
- /// Deletes the word above the cursor and adds it to the kill ring. You
- /// can paste the contents of the kill ring with Control-y.
- /// </description>
- /// </item>
- /// <item>
- /// <term>Control-q</term>
- /// <description>
- /// Quotes the next input character, to prevent the normal processing of
- /// key handling to take place.
- /// </description>
- /// </item>
- /// </list>
- /// </remarks>
- public class TextView : View {
- TextModel _model = new ();
- int _topRow;
- int _leftColumn;
- int _currentRow;
- int _currentColumn;
- int _selectionStartColumn, _selectionStartRow;
- bool _selecting;
- bool _wordWrap;
- WordWrapManager? _wrapManager;
- bool _continuousFind;
- int _bottomOffset, _rightOffset;
- int _tabWidth = 4;
- bool _allowsTab = true;
- bool _allowsReturn = true;
- bool _multiline = true;
- HistoryText _historyText = new ();
- CultureInfo? _currentCulture;
- /// <summary>
- /// Raised when the <see cref="Text"/> property of the <see cref="TextView"/> changes.
- /// </summary>
- /// <remarks>
- /// The <see cref="Text"/> property of <see cref="TextView"/> only changes when it is explicitly
- /// set, not as the user types. To be notified as the user changes the contents of the TextView
- /// see <see cref="IsDirty"/>.
- /// </remarks>
- public event EventHandler? TextChanged;
- /// <summary>
- /// Raised when the contents of the <see cref="TextView"/> are changed.
- /// </summary>
- /// <remarks>
- /// Unlike the <see cref="TextChanged"/> event, this event is raised whenever the user types or
- /// otherwise changes the contents of the <see cref="TextView"/>.
- /// </remarks>
- public event EventHandler<ContentsChangedEventArgs>? ContentsChanged;
- /// <summary>
- /// Invoked with the unwrapped <see cref="CursorPosition"/>.
- /// </summary>
- public event EventHandler<PointEventArgs>? UnwrappedCursorPosition;
- /// <summary>
- /// Invoked when the normal color is drawn.
- /// </summary>
- public event EventHandler<RuneCellEventArgs>? DrawNormalColor;
- /// <summary>
- /// Invoked when the selection color is drawn.
- /// </summary>
- public event EventHandler<RuneCellEventArgs>? DrawSelectionColor;
- /// <summary>
- /// Invoked when the ready only color is drawn.
- /// </summary>
- public event EventHandler<RuneCellEventArgs>? DrawReadOnlyColor;
- /// <summary>
- /// Invoked when the used color is drawn. The Used Color is used to indicate
- /// if the <see cref="Key.InsertChar"/> was pressed and enabled.
- /// </summary>
- public event EventHandler<RuneCellEventArgs>? DrawUsedColor;
- /// <summary>
- /// Provides autocomplete context menu based on suggestions at the current cursor
- /// position. Configure <see cref="IAutocomplete.SuggestionGenerator"/> to enable this feature
- /// </summary>
- public IAutocomplete Autocomplete { get; protected set; } = new TextViewAutocomplete ();
- /// <summary>
- /// Initializes a <see cref="TextView"/> on the specified area, with absolute position and size.
- /// </summary>
- /// <remarks>
- /// </remarks>
- public TextView (Rect frame) : base (frame) => SetInitialProperties ();
- /// <summary>
- /// Initializes a <see cref="TextView"/> on the specified area,
- /// with dimensions controlled with the X, Y, Width and Height properties.
- /// </summary>
- public TextView () : base () => SetInitialProperties ();
- void SetInitialProperties ()
- {
- CanFocus = true;
- Used = true;
- _model.LinesLoaded += Model_LinesLoaded!;
- _historyText.ChangeText += HistoryText_ChangeText!;
- Initialized += TextView_Initialized!;
- // Things this view knows how to do
- AddCommand (Command.PageDown, () => { ProcessPageDown (); return true; });
- AddCommand (Command.PageDownExtend, () => { ProcessPageDownExtend (); return true; });
- AddCommand (Command.PageUp, () => { ProcessPageUp (); return true; });
- AddCommand (Command.PageUpExtend, () => { ProcessPageUpExtend (); return true; });
- AddCommand (Command.LineDown, () => { ProcessMoveDown (); return true; });
- AddCommand (Command.LineDownExtend, () => { ProcessMoveDownExtend (); return true; });
- AddCommand (Command.LineUp, () => { ProcessMoveUp (); return true; });
- AddCommand (Command.LineUpExtend, () => { ProcessMoveUpExtend (); return true; });
- AddCommand (Command.Right, () => ProcessMoveRight ());
- AddCommand (Command.RightExtend, () => { ProcessMoveRightExtend (); return true; });
- AddCommand (Command.Left, () => ProcessMoveLeft ());
- AddCommand (Command.LeftExtend, () => { ProcessMoveLeftExtend (); return true; });
- AddCommand (Command.DeleteCharLeft, () => { ProcessDeleteCharLeft (); return true; });
- AddCommand (Command.StartOfLine, () => { ProcessMoveStartOfLine (); return true; });
- AddCommand (Command.StartOfLineExtend, () => { ProcessMoveStartOfLineExtend (); return true; });
- AddCommand (Command.DeleteCharRight, () => { ProcessDeleteCharRight (); return true; });
- AddCommand (Command.EndOfLine, () => { ProcessMoveEndOfLine (); return true; });
- AddCommand (Command.EndOfLineExtend, () => { ProcessMoveEndOfLineExtend (); return true; });
- AddCommand (Command.CutToEndLine, () => { KillToEndOfLine (); return true; });
- AddCommand (Command.CutToStartLine, () => { KillToStartOfLine (); return true; });
- AddCommand (Command.Paste, () => { ProcessPaste (); return true; });
- AddCommand (Command.ToggleExtend, () => { ToggleSelecting (); return true; });
- AddCommand (Command.Copy, () => { ProcessCopy (); return true; });
- AddCommand (Command.Cut, () => { ProcessCut (); return true; });
- AddCommand (Command.WordLeft, () => { ProcessMoveWordBackward (); return true; });
- AddCommand (Command.WordLeftExtend, () => { ProcessMoveWordBackwardExtend (); return true; });
- AddCommand (Command.WordRight, () => { ProcessMoveWordForward (); return true; });
- AddCommand (Command.WordRightExtend, () => { ProcessMoveWordForwardExtend (); return true; });
- AddCommand (Command.KillWordForwards, () => { ProcessKillWordForward (); return true; });
- AddCommand (Command.KillWordBackwards, () => { ProcessKillWordBackward (); return true; });
- AddCommand (Command.NewLine, () => ProcessReturn ());
- AddCommand (Command.BottomEnd, () => { MoveBottomEnd (); return true; });
- AddCommand (Command.BottomEndExtend, () => { MoveBottomEndExtend (); return true; });
- AddCommand (Command.TopHome, () => { MoveTopHome (); return true; });
- AddCommand (Command.TopHomeExtend, () => { MoveTopHomeExtend (); return true; });
- AddCommand (Command.SelectAll, () => { ProcessSelectAll (); return true; });
- AddCommand (Command.ToggleOverwrite, () => { ProcessSetOverwrite (); return true; });
- AddCommand (Command.EnableOverwrite, () => { SetOverwrite (true); return true; });
- AddCommand (Command.DisableOverwrite, () => { SetOverwrite (false); return true; });
- AddCommand (Command.Tab, () => ProcessTab ());
- AddCommand (Command.BackTab, () => ProcessBackTab ());
- AddCommand (Command.NextView, () => ProcessMoveNextView ());
- AddCommand (Command.PreviousView, () => ProcessMovePreviousView ());
- AddCommand (Command.Undo, () => { Undo (); return true; });
- AddCommand (Command.Redo, () => { Redo (); return true; });
- AddCommand (Command.DeleteAll, () => { DeleteAll (); return true; });
- AddCommand (Command.ShowContextMenu, () => {
- ContextMenu!.Position = new Point (CursorPosition.X - _leftColumn + 2, CursorPosition.Y - _topRow + 2);
- ShowContextMenu ();
- return true;
- });
- // Default keybindings for this view
- KeyBindings.Add (KeyCode.PageDown, Command.PageDown);
- KeyBindings.Add (KeyCode.V | KeyCode.CtrlMask, Command.PageDown);
- KeyBindings.Add (KeyCode.PageDown | KeyCode.ShiftMask, Command.PageDownExtend);
- KeyBindings.Add (KeyCode.PageUp, Command.PageUp);
- KeyBindings.Add ((int)'V' + KeyCode.AltMask, Command.PageUp);
- KeyBindings.Add (KeyCode.PageUp | KeyCode.ShiftMask, Command.PageUpExtend);
- KeyBindings.Add (KeyCode.N | KeyCode.CtrlMask, Command.LineDown);
- KeyBindings.Add (KeyCode.CursorDown, Command.LineDown);
- KeyBindings.Add (KeyCode.CursorDown | KeyCode.ShiftMask, Command.LineDownExtend);
- KeyBindings.Add (KeyCode.P | KeyCode.CtrlMask, Command.LineUp);
- KeyBindings.Add (KeyCode.CursorUp, Command.LineUp);
- KeyBindings.Add (KeyCode.CursorUp | KeyCode.ShiftMask, Command.LineUpExtend);
- KeyBindings.Add (KeyCode.F | KeyCode.CtrlMask, Command.Right);
- KeyBindings.Add (KeyCode.CursorRight, Command.Right);
- KeyBindings.Add (KeyCode.CursorRight | KeyCode.ShiftMask, Command.RightExtend);
- KeyBindings.Add (KeyCode.B | KeyCode.CtrlMask, Command.Left);
- KeyBindings.Add (KeyCode.CursorLeft, Command.Left);
- KeyBindings.Add (KeyCode.CursorLeft | KeyCode.ShiftMask, Command.LeftExtend);
- KeyBindings.Add (KeyCode.Backspace, Command.DeleteCharLeft);
- KeyBindings.Add (KeyCode.Home, Command.StartOfLine);
- KeyBindings.Add (KeyCode.A | KeyCode.CtrlMask, Command.StartOfLine);
- KeyBindings.Add (KeyCode.Home | KeyCode.ShiftMask, Command.StartOfLineExtend);
- KeyBindings.Add (KeyCode.Delete, Command.DeleteCharRight);
- KeyBindings.Add (KeyCode.D | KeyCode.CtrlMask, Command.DeleteCharRight);
- KeyBindings.Add (KeyCode.End, Command.EndOfLine);
- KeyBindings.Add (KeyCode.E | KeyCode.CtrlMask, Command.EndOfLine);
- KeyBindings.Add (KeyCode.End | KeyCode.ShiftMask, Command.EndOfLineExtend);
- KeyBindings.Add (KeyCode.K | KeyCode.CtrlMask, Command.CutToEndLine); // kill-to-end
- KeyBindings.Add (KeyCode.Delete | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.CutToEndLine); // kill-to-end
- KeyBindings.Add (KeyCode.K | KeyCode.AltMask, Command.CutToStartLine); // kill-to-start
- KeyBindings.Add (KeyCode.Backspace | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.CutToStartLine); // kill-to-start
- KeyBindings.Add (KeyCode.Y | KeyCode.CtrlMask, Command.Paste); // Control-y, yank
- KeyBindings.Add (KeyCode.Space | KeyCode.CtrlMask, Command.ToggleExtend);
- KeyBindings.Add ((int)'C' + KeyCode.AltMask, Command.Copy);
- KeyBindings.Add (KeyCode.C | KeyCode.CtrlMask, Command.Copy);
- KeyBindings.Add ((int)'W' + KeyCode.AltMask, Command.Cut);
- KeyBindings.Add (KeyCode.W | KeyCode.CtrlMask, Command.Cut);
- KeyBindings.Add (KeyCode.X | KeyCode.CtrlMask, Command.Cut);
- KeyBindings.Add (KeyCode.CursorLeft | KeyCode.CtrlMask, Command.WordLeft);
- KeyBindings.Add ((KeyCode)((int)'B' + KeyCode.AltMask), Command.WordLeft);
- KeyBindings.Add (KeyCode.CursorLeft | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.WordLeftExtend);
- KeyBindings.Add (KeyCode.CursorRight | KeyCode.CtrlMask, Command.WordRight);
- KeyBindings.Add ((KeyCode)((int)'F' + KeyCode.AltMask), Command.WordRight);
- KeyBindings.Add (KeyCode.CursorRight | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.WordRightExtend);
- KeyBindings.Add (KeyCode.Delete | KeyCode.CtrlMask, Command.KillWordForwards); // kill-word-forwards
- KeyBindings.Add (KeyCode.Backspace | KeyCode.CtrlMask, Command.KillWordBackwards); // kill-word-backwards
- // BUGBUG: If AllowsReturn is false, Key.Enter should not be bound (so that Toplevel can cause Command.Accept).
- KeyBindings.Add (KeyCode.Enter, Command.NewLine);
- KeyBindings.Add (KeyCode.End | KeyCode.CtrlMask, Command.BottomEnd);
- KeyBindings.Add (KeyCode.End | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.BottomEndExtend);
- KeyBindings.Add (KeyCode.Home | KeyCode.CtrlMask, Command.TopHome);
- KeyBindings.Add (KeyCode.Home | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.TopHomeExtend);
- KeyBindings.Add (KeyCode.T | KeyCode.CtrlMask, Command.SelectAll);
- KeyBindings.Add (KeyCode.Insert, Command.ToggleOverwrite);
- KeyBindings.Add (KeyCode.Tab, Command.Tab);
- KeyBindings.Add (KeyCode.Tab | KeyCode.ShiftMask, Command.BackTab);
- KeyBindings.Add (KeyCode.Tab | KeyCode.CtrlMask, Command.NextView);
- KeyBindings.Add ((KeyCode)Application.AlternateForwardKey, Command.NextView);
- KeyBindings.Add (KeyCode.Tab | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.PreviousView);
- KeyBindings.Add ((KeyCode)Application.AlternateBackwardKey, Command.PreviousView);
- KeyBindings.Add (KeyCode.Z | KeyCode.CtrlMask, Command.Undo);
- KeyBindings.Add (KeyCode.R | KeyCode.CtrlMask, Command.Redo);
- KeyBindings.Add (KeyCode.G | KeyCode.CtrlMask, Command.DeleteAll);
- KeyBindings.Add (KeyCode.D | KeyCode.CtrlMask | KeyCode.ShiftMask, Command.DeleteAll);
- _currentCulture = Thread.CurrentThread.CurrentUICulture;
- ContextMenu = new ContextMenu () { MenuItems = BuildContextMenuBarItem () };
- ContextMenu.KeyChanged += ContextMenu_KeyChanged!;
- KeyBindings.Add ((KeyCode)ContextMenu.Key, KeyBindingScope.HotKey, Command.ShowContextMenu);
- }
- MenuBarItem BuildContextMenuBarItem () => new (new MenuItem [] {
- new (Strings.ctxSelectAll, "", () => SelectAll (), null, null, (KeyCode)KeyBindings.GetKeyFromCommands (Command.SelectAll)),
- new (Strings.ctxDeleteAll, "", () => DeleteAll (), null, null, (KeyCode)KeyBindings.GetKeyFromCommands (Command.DeleteAll)),
- new (Strings.ctxCopy, "", () => Copy (), null, null, (KeyCode)KeyBindings.GetKeyFromCommands (Command.Copy)),
- new (Strings.ctxCut, "", () => Cut (), null, null, (KeyCode)KeyBindings.GetKeyFromCommands (Command.Cut)),
- new (Strings.ctxPaste, "", () => Paste (), null, null, (KeyCode)KeyBindings.GetKeyFromCommands (Command.Paste)),
- new (Strings.ctxUndo, "", () => Undo (), null, null, (KeyCode)KeyBindings.GetKeyFromCommands (Command.Undo)),
- new (Strings.ctxRedo, "", () => Redo (), null, null, (KeyCode)KeyBindings.GetKeyFromCommands (Command.Redo))
- });
- void ContextMenu_KeyChanged (object sender, KeyChangedEventArgs e) => KeyBindings.Replace ((KeyCode)e.OldKey, (KeyCode)e.NewKey);
- void Model_LinesLoaded (object sender, EventArgs e)
- {
- // This call is not needed. Model_LinesLoaded gets invoked when
- // model.LoadString (value) is called. LoadString is called from one place
- // (Text.set) and historyText.Clear() is called immediately after.
- // If this call happens, HistoryText_ChangeText will get called multiple times
- // when Text is set, which is wrong.
- //historyText.Clear (Text);
- if (!_multiline && !IsInitialized) {
- _currentColumn = Text.GetRuneCount ();
- _leftColumn = _currentColumn > Frame.Width + 1 ? _currentColumn - Frame.Width + 1 : 0;
- }
- }
- void HistoryText_ChangeText (object sender, HistoryText.HistoryTextItem obj)
- {
- SetWrapModel ();
- if (obj != null) {
- int startLine = obj.CursorPosition.Y;
- if (obj.RemovedOnAdded != null) {
- int offset;
- if (obj.IsUndoing) {
- offset = Math.Max (obj.RemovedOnAdded.Lines.Count - obj.Lines.Count, 1);
- } else {
- offset = obj.RemovedOnAdded.Lines.Count - 1;
- }
- for (int i = 0; i < offset; i++) {
- if (Lines > obj.RemovedOnAdded.CursorPosition.Y) {
- _model.RemoveLine (obj.RemovedOnAdded.CursorPosition.Y);
- } else {
- break;
- }
- }
- }
- for (int i = 0; i < obj.Lines.Count; i++) {
- if (i == 0) {
- _model.ReplaceLine (startLine, obj.Lines [i]);
- } else if (obj.IsUndoing && obj.LineStatus == HistoryText.LineStatus.Removed
- || !obj.IsUndoing && obj.LineStatus == HistoryText.LineStatus.Added) {
- _model.AddLine (startLine, obj.Lines [i]);
- } else if (Lines > obj.CursorPosition.Y + 1) {
- _model.RemoveLine (obj.CursorPosition.Y + 1);
- }
- startLine++;
- }
- CursorPosition = obj.FinalCursorPosition;
- }
- UpdateWrapModel ();
- Adjust ();
- OnContentsChanged ();
- }
- void TextView_Initialized (object sender, EventArgs e)
- {
- Autocomplete.HostControl = this;
- if (Application.Top != null) {
- Application.Top.AlternateForwardKeyChanged += Top_AlternateForwardKeyChanged!;
- Application.Top.AlternateBackwardKeyChanged += Top_AlternateBackwardKeyChanged!;
- }
- OnContentsChanged ();
- }
- void Top_AlternateBackwardKeyChanged (object sender, KeyChangedEventArgs e) => KeyBindings.Replace ((KeyCode)e.OldKey, (KeyCode)e.NewKey);
- void Top_AlternateForwardKeyChanged (object sender, KeyChangedEventArgs e) => KeyBindings.Replace ((KeyCode)e.OldKey, (KeyCode)e.NewKey);
- /// <summary>
- /// Tracks whether the text view should be considered "used", that is, that the user has moved in the entry,
- /// so new input should be appended at the cursor position, rather than clearing the entry
- /// </summary>
- public bool Used { get; set; }
- void ResetPosition ()
- {
- _topRow = _leftColumn = _currentRow = _currentColumn = 0;
- StopSelecting ();
- ResetCursorVisibility ();
- }
- /// <summary>
- /// Sets or gets the text in the <see cref="TextView"/>.
- /// </summary>
- /// <remarks>
- /// The <see cref="TextChanged"/> event is fired whenever this property is set. Note, however,
- /// that Text is not set by <see cref="TextView"/> as the user types.
- /// </remarks>
- public override string Text {
- get {
- if (_wordWrap) {
- return _wrapManager!.Model.ToString ();
- } else {
- return _model.ToString ();
- }
- }
- set {
- ResetPosition ();
- _model.LoadString (value);
- if (_wordWrap) {
- _wrapManager = new WordWrapManager (_model);
- _model = _wrapManager.WrapModel (_frameWidth, out _, out _, out _, out _);
- }
- TextChanged?.Invoke (this, EventArgs.Empty);
- SetNeedsDisplay ();
- _historyText.Clear (Text);
- }
- }
- ///<inheritdoc/>
- public override Rect Frame {
- get => base.Frame;
- set {
- base.Frame = value;
- if (IsInitialized) {
- WrapTextModel ();
- Adjust ();
- }
- }
- }
- void WrapTextModel ()
- {
- if (_wordWrap && _wrapManager != null) {
- _model = _wrapManager.WrapModel (_frameWidth,
- out int nRow, out int nCol,
- out int nStartRow, out int nStartCol,
- _currentRow, _currentColumn,
- _selectionStartRow, _selectionStartColumn,
- _tabWidth, true);
- _currentRow = nRow;
- _currentColumn = nCol;
- _selectionStartRow = nStartRow;
- _selectionStartColumn = nStartCol;
- SetNeedsDisplay ();
- }
- }
- int _frameWidth => Math.Max (Frame.Width - (RightOffset != 0 ? 2 : 1), 0);
- /// <summary>
- /// Gets or sets the top row.
- /// </summary>
- public int TopRow { get => _topRow; set => _topRow = Math.Max (Math.Min (value, Lines - 1), 0); }
- /// <summary>
- /// Gets or sets the left column.
- /// </summary>
- public int LeftColumn {
- get => _leftColumn;
- set {
- if (value > 0 && _wordWrap) {
- return;
- }
- _leftColumn = Math.Max (Math.Min (value, Maxlength - 1), 0);
- }
- }
- /// <summary>
- /// Gets the maximum visible length line.
- /// </summary>
- public int Maxlength => _model.GetMaxVisibleLine (_topRow, _topRow + Frame.Height, TabWidth);
- /// <summary>
- /// Gets the number of lines.
- /// </summary>
- public int Lines => _model.Count;
- /// <summary>
- /// Sets or gets the current cursor position.
- /// </summary>
- public Point CursorPosition {
- get => new (_currentColumn, _currentRow);
- set {
- var line = _model.GetLine (Math.Max (Math.Min (value.Y, _model.Count - 1), 0));
- _currentColumn = value.X < 0 ? 0 : value.X > line.Count ? line.Count : value.X;
- _currentRow = value.Y < 0 ? 0 : value.Y > _model.Count - 1
- ? Math.Max (_model.Count - 1, 0) : value.Y;
- SetNeedsDisplay ();
- Adjust ();
- }
- }
- /// <summary>
- /// Start column position of the selected text.
- /// </summary>
- public int SelectionStartColumn {
- get => _selectionStartColumn;
- set {
- var line = _model.GetLine (_selectionStartRow);
- _selectionStartColumn = value < 0 ? 0 : value > line.Count ? line.Count : value;
- _selecting = true;
- SetNeedsDisplay ();
- Adjust ();
- }
- }
- /// <summary>
- /// Start row position of the selected text.
- /// </summary>
- public int SelectionStartRow {
- get => _selectionStartRow;
- set {
- _selectionStartRow = value < 0 ? 0 : value > _model.Count - 1
- ? Math.Max (_model.Count - 1, 0) : value;
- _selecting = true;
- SetNeedsDisplay ();
- Adjust ();
- }
- }
- /// <summary>
- /// The selected text.
- /// </summary>
- public string SelectedText {
- get {
- if (!_selecting || _model.Count == 1 && _model.GetLine (0).Count == 0) {
- return string.Empty;
- }
- return GetSelectedRegion ();
- }
- }
- /// <summary>
- /// Length of the selected text.
- /// </summary>
- public int SelectedLength => GetSelectedLength ();
- /// <summary>
- /// Get or sets the selecting.
- /// </summary>
- public bool Selecting {
- get => _selecting;
- set => _selecting = value;
- }
- /// <summary>
- /// Allows word wrap the to fit the available container width.
- /// </summary>
- public bool WordWrap {
- get => _wordWrap;
- set {
- if (value == _wordWrap) {
- return;
- }
- if (value && !_multiline) {
- return;
- }
- _wordWrap = value;
- ResetPosition ();
- if (_wordWrap) {
- _wrapManager = new WordWrapManager (_model);
- _model = _wrapManager.WrapModel (_frameWidth, out _, out _, out _, out _);
- } else if (!_wordWrap && _wrapManager != null) {
- _model = _wrapManager.Model;
- }
- SetNeedsDisplay ();
- }
- }
- /// <summary>
- /// The bottom offset needed to use a horizontal scrollbar or for another reason.
- /// This is only needed with the keyboard navigation.
- /// </summary>
- public int BottomOffset {
- get => _bottomOffset;
- set {
- if (_currentRow == Lines - 1 && _bottomOffset > 0 && value == 0) {
- _topRow = Math.Max (_topRow - _bottomOffset, 0);
- }
- _bottomOffset = value;
- Adjust ();
- }
- }
- /// <summary>
- /// The right offset needed to use a vertical scrollbar or for another reason.
- /// This is only needed with the keyboard navigation.
- /// </summary>
- public int RightOffset {
- get => _rightOffset;
- set {
- if (!_wordWrap && _currentColumn == GetCurrentLine ().Count && _rightOffset > 0 && value == 0) {
- _leftColumn = Math.Max (_leftColumn - _rightOffset, 0);
- }
- _rightOffset = value;
- Adjust ();
- }
- }
- /// <summary>
- /// Gets or sets a value indicating whether pressing ENTER in a <see cref="TextView"/>
- /// creates a new line of text in the view or activates the default button for the Toplevel.
- /// </summary>
- public bool AllowsReturn {
- get => _allowsReturn;
- set {
- _allowsReturn = value;
- if (_allowsReturn && !_multiline) {
- Multiline = true;
- }
- if (!_allowsReturn && _multiline) {
- Multiline = false;
- AllowsTab = false;
- }
- SetNeedsDisplay ();
- }
- }
- /// <summary>
- /// Gets or sets whether the <see cref="TextView"/> inserts a tab character into the text or ignores
- /// tab input. If set to `false` and the user presses the tab key (or shift-tab) the focus will move to the
- /// next view (or previous with shift-tab). The default is `true`; if the user presses the tab key, a tab
- /// character will be inserted into the text.
- /// </summary>
- public bool AllowsTab {
- get => _allowsTab;
- set {
- _allowsTab = value;
- if (_allowsTab && _tabWidth == 0) {
- _tabWidth = 4;
- }
- if (_allowsTab && !_multiline) {
- Multiline = true;
- }
- if (!_allowsTab && _tabWidth > 0) {
- _tabWidth = 0;
- }
- SetNeedsDisplay ();
- }
- }
- /// <summary>
- /// Gets or sets a value indicating the number of whitespace when pressing the TAB key.
- /// </summary>
- public int TabWidth {
- get => _tabWidth;
- set {
- _tabWidth = Math.Max (value, 0);
- if (_tabWidth > 0 && !AllowsTab) {
- AllowsTab = true;
- }
- SetNeedsDisplay ();
- }
- }
- Dim? savedHeight = null;
- /// <summary>
- /// Gets or sets a value indicating whether this <see cref="TextView"/> is a multiline text view.
- /// </summary>
- public bool Multiline {
- get => _multiline;
- set {
- _multiline = value;
- if (_multiline && !_allowsTab) {
- AllowsTab = true;
- }
- if (_multiline && !_allowsReturn) {
- AllowsReturn = true;
- }
- if (!_multiline) {
- AllowsReturn = false;
- AllowsTab = false;
- WordWrap = false;
- _currentColumn = 0;
- _currentRow = 0;
- savedHeight = Height;
- var prevLayoutStyle = LayoutStyle;
- if (LayoutStyle == LayoutStyle.Computed) {
- LayoutStyle = LayoutStyle.Absolute;
- }
- Height = 1;
- LayoutStyle = prevLayoutStyle;
- if (!IsInitialized) {
- _model.LoadString (Text);
- }
- SetNeedsDisplay ();
- } else if (_multiline && savedHeight != null) {
- var lyout = LayoutStyle;
- if (LayoutStyle == LayoutStyle.Computed) {
- LayoutStyle = LayoutStyle.Absolute;
- }
- Height = savedHeight;
- LayoutStyle = lyout;
- SetNeedsDisplay ();
- }
- }
- }
- /// <summary>
- /// Indicates whatever the text was changed or not.
- /// <see langword="true"/> if the text was changed <see langword="false"/> otherwise.
- /// </summary>
- public bool IsDirty {
- get => _historyText.IsDirty (Text);
- set => _historyText.Clear (Text);
- }
- /// <summary>
- /// Indicates whatever the text has history changes or not.
- /// <see langword="true"/> if the text has history changes <see langword="false"/> otherwise.
- /// </summary>
- public bool HasHistoryChanges => _historyText.HasHistoryChanges;
- /// <summary>
- /// Get the <see cref="ContextMenu"/> for this view.
- /// </summary>
- public ContextMenu? ContextMenu { get; private set; }
- /// <summary>
- /// If <see langword="true"/> and the current <see cref="RuneCell.ColorScheme"/> is null
- /// will inherit from the previous, otherwise if <see langword="false"/> (default) do nothing.
- /// If the text is load with <see cref="Load(List{RuneCell})"/> this
- /// property is automatically sets to <see langword="true"/>.
- /// </summary>
- public bool InheritsPreviousColorScheme { get; set; }
- int GetSelectedLength () => SelectedText.Length;
- CursorVisibility _savedCursorVisibility;
- void SaveCursorVisibility ()
- {
- if (_desiredCursorVisibility != CursorVisibility.Invisible) {
- if (_savedCursorVisibility == 0) {
- _savedCursorVisibility = _desiredCursorVisibility;
- }
- DesiredCursorVisibility = CursorVisibility.Invisible;
- }
- }
- void ResetCursorVisibility ()
- {
- if (_savedCursorVisibility != 0) {
- DesiredCursorVisibility = _savedCursorVisibility;
- _savedCursorVisibility = 0;
- }
- }
- /// <summary>
- /// Loads the contents of the file into the <see cref="TextView"/>.
- /// </summary>
- /// <returns><c>true</c>, if file was loaded, <c>false</c> otherwise.</returns>
- /// <param name="path">Path to the file to load.</param>
- public bool Load (string path)
- {
- SetWrapModel ();
- bool res;
- try {
- SetWrapModel ();
- res = _model.LoadFile (path);
- _historyText.Clear (Text);
- ResetPosition ();
- } catch (Exception) {
- throw;
- } finally {
- UpdateWrapModel ();
- SetNeedsDisplay ();
- Adjust ();
- }
- UpdateWrapModel ();
- return res;
- }
- /// <summary>
- /// Loads the contents of the stream into the <see cref="TextView"/>.
- /// </summary>
- /// <returns><c>true</c>, if stream was loaded, <c>false</c> otherwise.</returns>
- /// <param name="stream">Stream to load the contents from.</param>
- public void Load (Stream stream)
- {
- SetWrapModel ();
- _model.LoadStream (stream);
- _historyText.Clear (Text);
- ResetPosition ();
- SetNeedsDisplay ();
- UpdateWrapModel ();
- }
- /// <summary>
- /// Loads the contents of the <see cref="RuneCell"/> list into the <see cref="TextView"/>.
- /// </summary>
- /// <param name="cells">Rune cells list to load the contents from.</param>
- public void Load (List<RuneCell> cells)
- {
- SetWrapModel ();
- _model.LoadRuneCells (cells, ColorScheme);
- _historyText.Clear (Text);
- ResetPosition ();
- SetNeedsDisplay ();
- UpdateWrapModel ();
- InheritsPreviousColorScheme = true;
- }
- /// <summary>
- /// Loads the contents of the list of <see cref="RuneCell"/> list into the <see cref="TextView"/>.
- /// </summary>
- /// <param name="cellsList">List of rune cells list to load the contents from.</param>
- public void Load (List<List<RuneCell>> cellsList)
- {
- SetWrapModel ();
- InheritsPreviousColorScheme = true;
- _model.LoadListRuneCells (cellsList, ColorScheme);
- _historyText.Clear (Text);
- ResetPosition ();
- SetNeedsDisplay ();
- UpdateWrapModel ();
- }
- /// <summary>
- /// Closes the contents of the stream into the <see cref="TextView"/>.
- /// </summary>
- /// <returns><c>true</c>, if stream was closed, <c>false</c> otherwise.</returns>
- public bool CloseFile ()
- {
- SetWrapModel ();
- bool res = _model.CloseFile ();
- ResetPosition ();
- SetNeedsDisplay ();
- UpdateWrapModel ();
- return res;
- }
- /// <summary>
- /// Gets the current cursor row.
- /// </summary>
- public int CurrentRow => _currentRow;
- /// <summary>
- /// Gets the cursor column.
- /// </summary>
- /// <value>The cursor column.</value>
- public int CurrentColumn => _currentColumn;
- /// <summary>
- /// Positions the cursor on the current row and column
- /// </summary>
- public override void PositionCursor ()
- {
- ProcessAutocomplete ();
- if (!CanFocus || !Enabled || Application.Driver == null) {
- return;
- }
- if (_selecting) {
- // BUGBUG: customized rect aren't supported now because the Redraw isn't using the Intersect method.
- //var minRow = Math.Min (Math.Max (Math.Min (selectionStartRow, currentRow) - topRow, 0), Frame.Height);
- //var maxRow = Math.Min (Math.Max (Math.Max (selectionStartRow, currentRow) - topRow, 0), Frame.Height);
- //SetNeedsDisplay (new Rect (0, minRow, Frame.Width, maxRow));
- SetNeedsDisplay ();
- }
- var line = _model.GetLine (_currentRow);
- int col = 0;
- if (line.Count > 0) {
- for (int idx = _leftColumn; idx < line.Count; idx++) {
- if (idx >= _currentColumn) {
- break;
- }
- int cols = line [idx].Rune.GetColumns ();
- if (line [idx].Rune.Value == '\t') {
- cols += TabWidth + 1;
- }
- if (!TextModel.SetCol (ref col, Frame.Width, cols)) {
- col = _currentColumn;
- break;
- }
- }
- }
- int posX = _currentColumn - _leftColumn;
- int posY = _currentRow - _topRow;
- if (posX > -1 && col >= posX && posX < Frame.Width - RightOffset
- && _topRow <= _currentRow && posY < Frame.Height - BottomOffset) {
- ResetCursorVisibility ();
- Move (col, _currentRow - _topRow);
- } else {
- SaveCursorVisibility ();
- }
- }
- void ClearRegion (int left, int top, int right, int bottom)
- {
- for (int row = top; row < bottom; row++) {
- Move (left, row);
- for (int col = left; col < right; col++) {
- AddRune (col, row, (Rune)' ');
- }
- }
- }
- /// <inheritdoc/>
- public override Attribute GetNormalColor ()
- {
- var cs = ColorScheme;
- if (ColorScheme == null) {
- cs = new ColorScheme ();
- }
- return Enabled ? cs.Focus : cs.Disabled;
- }
- /// <summary>
- /// Sets the driver to the default color for the control where no text is being rendered. Defaults to <see cref="ColorScheme.Normal"/>.
- /// </summary>
- protected virtual void SetNormalColor () => Driver.SetAttribute (GetNormalColor ());
- /// <summary>
- /// Sets the <see cref="View.Driver"/> to an appropriate color for rendering the given <paramref name="idxCol"/> of the
- /// current <paramref name="line"/>. Override to provide custom coloring by calling <see cref="ConsoleDriver.SetAttribute(Attribute)"/>
- /// Defaults to <see cref="ColorScheme.Normal"/>.
- /// </summary>
- /// <param name="line">The line.</param>
- /// <param name="idxCol">The col index.</param>
- /// <param name="idxRow">The row index.</param>
- protected virtual void OnDrawNormalColor (List<RuneCell> line, int idxCol, int idxRow)
- {
- var unwrappedPos = GetUnwrappedPosition (idxRow, idxCol);
- var ev = new RuneCellEventArgs (line, idxCol, unwrappedPos);
- DrawNormalColor?.Invoke (this, ev);
- if (line [idxCol].ColorScheme != null) {
- var colorScheme = line [idxCol].ColorScheme;
- Driver.SetAttribute (Enabled ? colorScheme!.Focus : colorScheme!.Disabled);
- } else {
- Driver.SetAttribute (GetNormalColor ());
- }
- }
- /// <summary>
- /// Sets the <see cref="View.Driver"/> to an appropriate color for rendering the given <paramref name="idxCol"/> of the
- /// current <paramref name="line"/>. Override to provide custom coloring by calling <see cref="ConsoleDriver.SetAttribute(Attribute)"/>
- /// Defaults to <see cref="ColorScheme.Focus"/>.
- /// </summary>
- /// <param name="line">The line.</param>
- /// <param name="idxCol">The col index.</param>
- /// /// <param name="idxRow">The row index.</param>
- protected virtual void OnDrawSelectionColor (List<RuneCell> line, int idxCol, int idxRow)
- {
- var unwrappedPos = GetUnwrappedPosition (idxRow, idxCol);
- var ev = new RuneCellEventArgs (line, idxCol, unwrappedPos);
- DrawSelectionColor?.Invoke (this, ev);
- if (line [idxCol].ColorScheme != null) {
- var colorScheme = line [idxCol].ColorScheme;
- Driver.SetAttribute (new Attribute (colorScheme!.Focus.Background, colorScheme.Focus.Foreground));
- } else {
- Driver.SetAttribute (new Attribute (ColorScheme.Focus.Background, ColorScheme.Focus.Foreground));
- }
- }
- /// <summary>
- /// Sets the <see cref="View.Driver"/> to an appropriate color for rendering the given <paramref name="idxCol"/> of the
- /// current <paramref name="line"/>. Override to provide custom coloring by calling <see cref="ConsoleDriver.SetAttribute(Attribute)"/>
- /// Defaults to <see cref="ColorScheme.Focus"/>.
- /// </summary>
- /// <param name="line">The line.</param>
- /// <param name="idxCol">The col index.</param>
- /// /// <param name="idxRow">The row index.</param>
- protected virtual void OnDrawReadOnlyColor (List<RuneCell> line, int idxCol, int idxRow)
- {
- var unwrappedPos = GetUnwrappedPosition (idxRow, idxCol);
- var ev = new RuneCellEventArgs (line, idxCol, unwrappedPos);
- DrawReadOnlyColor?.Invoke (this, ev);
- var colorScheme = line [idxCol].ColorScheme != null ? line [idxCol].ColorScheme : ColorScheme;
- Attribute attribute;
- if (colorScheme!.Disabled.Foreground == colorScheme.Focus.Background) {
- attribute = new Attribute (colorScheme.Focus.Foreground, colorScheme.Focus.Background);
- } else {
- attribute = new Attribute (colorScheme.Disabled.Foreground, colorScheme.Focus.Background);
- }
- Driver.SetAttribute (attribute);
- }
- /// <summary>
- /// Sets the <see cref="View.Driver"/> to an appropriate color for rendering the given <paramref name="idxCol"/> of the
- /// current <paramref name="line"/>. Override to provide custom coloring by calling <see cref="ConsoleDriver.SetAttribute(Attribute)"/>
- /// Defaults to <see cref="ColorScheme.HotFocus"/>.
- /// </summary>
- /// <param name="line">The line.</param>
- /// <param name="idxCol">The col index.</param>
- /// /// <param name="idxRow">The row index.</param>
- protected virtual void OnDrawUsedColor (List<RuneCell> line, int idxCol, int idxRow)
- {
- var unwrappedPos = GetUnwrappedPosition (idxRow, idxCol);
- var ev = new RuneCellEventArgs (line, idxCol, unwrappedPos);
- DrawUsedColor?.Invoke (this, ev);
- if (line [idxCol].ColorScheme != null) {
- var colorScheme = line [idxCol].ColorScheme;
- SetValidUsedColor (colorScheme!);
- } else {
- SetValidUsedColor (ColorScheme);
- }
- }
- static void SetValidUsedColor (ColorScheme colorScheme) =>
- // BUGBUG: (v2 truecolor) This code depends on 8-bit color names; disabling for now
- //if ((colorScheme!.HotNormal.Foreground & colorScheme.Focus.Background) == colorScheme.Focus.Foreground) {
- Driver.SetAttribute (new Attribute (colorScheme.Focus.Background, colorScheme.Focus.Foreground));
- //} else {
- //Driver.SetAttribute (new Attribute (colorScheme!.HotNormal.Foreground & colorScheme.Focus.Background, colorScheme.Focus.Foreground));
- //}
- bool _isReadOnly = false;
- /// <summary>
- /// Gets or sets whether the <see cref="TextView"/> is in read-only mode or not
- /// </summary>
- /// <value>Boolean value(Default false)</value>
- public bool ReadOnly {
- get => _isReadOnly;
- set {
- if (value != _isReadOnly) {
- _isReadOnly = value;
- SetNeedsDisplay ();
- Adjust ();
- }
- }
- }
- CursorVisibility _desiredCursorVisibility = CursorVisibility.Default;
- /// <summary>
- /// Get / Set the wished cursor when the field is focused
- /// </summary>
- public CursorVisibility DesiredCursorVisibility {
- get => _desiredCursorVisibility;
- set {
- if (HasFocus) {
- Application.Driver.SetCursorVisibility (value);
- }
- _desiredCursorVisibility = value;
- SetNeedsDisplay ();
- }
- }
- ///<inheritdoc/>
- public override bool OnEnter (View view)
- {
- //TODO: Improve it by handling read only mode of the text field
- Application.Driver.SetCursorVisibility (DesiredCursorVisibility);
- return base.OnEnter (view);
- }
- ///<inheritdoc/>
- public override bool OnLeave (View view)
- {
- if (Application.MouseGrabView != null && Application.MouseGrabView == this) {
- Application.UngrabMouse ();
- }
- return base.OnLeave (view);
- }
- // Returns an encoded region start..end (top 32 bits are the row, low32 the column)
- void GetEncodedRegionBounds (out long start, out long end,
- int? startRow = null, int? startCol = null, int? cRow = null, int? cCol = null)
- {
- long selection;
- long point;
- if (startRow == null || startCol == null || cRow == null || cCol == null) {
- selection = (long)(uint)_selectionStartRow << 32 | (uint)_selectionStartColumn;
- point = (long)(uint)_currentRow << 32 | (uint)_currentColumn;
- } else {
- selection = (long)(uint)startRow << 32 | (uint)startCol;
- point = (long)(uint)cRow << 32 | (uint)cCol;
- }
- if (selection > point) {
- start = point;
- end = selection;
- } else {
- start = selection;
- end = point;
- }
- }
- bool PointInSelection (int col, int row)
- {
- long start, end;
- GetEncodedRegionBounds (out start, out end);
- long q = (long)(uint)row << 32 | (uint)col;
- return q >= start && q <= end - 1;
- }
- //
- // Returns a string with the text in the selected
- // region.
- //
- string GetRegion (int? sRow = null, int? sCol = null, int? cRow = null, int? cCol = null, TextModel? model = null)
- {
- long start, end;
- GetEncodedRegionBounds (out start, out end, sRow, sCol, cRow, cCol);
- if (start == end) {
- return string.Empty;
- }
- int startRow = (int)(start >> 32);
- int maxrow = (int)(end >> 32);
- int startCol = (int)(start & 0xffffffff);
- int endCol = (int)(end & 0xffffffff);
- var line = model == null ? _model.GetLine (startRow) : model.GetLine (startRow);
- if (startRow == maxrow) {
- return StringFromRunes (line.GetRange (startCol, endCol - startCol));
- }
- string res = StringFromRunes (line.GetRange (startCol, line.Count - startCol));
- for (int row = startRow + 1; row < maxrow; row++) {
- res = res + Environment.NewLine + StringFromRunes (model == null
- ? _model.GetLine (row) : model.GetLine (row));
- }
- line = model == null ? _model.GetLine (maxrow) : model.GetLine (maxrow);
- res = res + Environment.NewLine + StringFromRunes (line.GetRange (0, endCol));
- return res;
- }
- //
- // Clears the contents of the selected region
- //
- void ClearRegion ()
- {
- SetWrapModel ();
- long start, end;
- long currentEncoded = (long)(uint)_currentRow << 32 | (uint)_currentColumn;
- GetEncodedRegionBounds (out start, out end);
- int startRow = (int)(start >> 32);
- int maxrow = (int)(end >> 32);
- int startCol = (int)(start & 0xffffffff);
- int endCol = (int)(end & 0xffffffff);
- var line = _model.GetLine (startRow);
- _historyText.Add (new List<List<RuneCell>> () { new (line) }, new Point (startCol, startRow));
- var removedLines = new List<List<RuneCell>> ();
- if (startRow == maxrow) {
- removedLines.Add (new List<RuneCell> (line));
- line.RemoveRange (startCol, endCol - startCol);
- _currentColumn = startCol;
- if (_wordWrap) {
- SetNeedsDisplay ();
- } else {
- // BUGBUG: customized rect aren't supported now because the Redraw isn't using the Intersect method.
- //SetNeedsDisplay (new Rect (0, startRow - topRow, Frame.Width, startRow - topRow + 1));
- SetNeedsDisplay ();
- }
- _historyText.Add (new List<List<RuneCell>> (removedLines), CursorPosition, HistoryText.LineStatus.Removed);
- UpdateWrapModel ();
- return;
- }
- removedLines.Add (new List<RuneCell> (line));
- line.RemoveRange (startCol, line.Count - startCol);
- var line2 = _model.GetLine (maxrow);
- line.AddRange (line2.Skip (endCol));
- for (int row = startRow + 1; row <= maxrow; row++) {
- removedLines.Add (new List<RuneCell> (_model.GetLine (startRow + 1)));
- _model.RemoveLine (startRow + 1);
- }
- if (currentEncoded == end) {
- _currentRow -= maxrow - startRow;
- }
- _currentColumn = startCol;
- _historyText.Add (new List<List<RuneCell>> (removedLines), CursorPosition,
- HistoryText.LineStatus.Removed);
- UpdateWrapModel ();
- SetNeedsDisplay ();
- }
- /// <summary>
- /// Select all text.
- /// </summary>
- public void SelectAll ()
- {
- if (_model.Count == 0) {
- return;
- }
- StartSelecting ();
- _selectionStartColumn = 0;
- _selectionStartRow = 0;
- _currentColumn = _model.GetLine (_model.Count - 1).Count;
- _currentRow = _model.Count - 1;
- SetNeedsDisplay ();
- }
- /// <summary>
- /// Find the next text based on the match case with the option to replace it.
- /// </summary>
- /// <param name="textToFind">The text to find.</param>
- /// <param name="gaveFullTurn"><c>true</c>If all the text was forward searched.<c>false</c>otherwise.</param>
- /// <param name="matchCase">The match case setting.</param>
- /// <param name="matchWholeWord">The match whole word setting.</param>
- /// <param name="textToReplace">The text to replace.</param>
- /// <param name="replace"><c>true</c>If is replacing.<c>false</c>otherwise.</param>
- /// <returns><c>true</c>If the text was found.<c>false</c>otherwise.</returns>
- public bool FindNextText (string textToFind, out bool gaveFullTurn, bool matchCase = false,
- bool matchWholeWord = false, string? textToReplace = null, bool replace = false)
- {
- if (_model.Count == 0) {
- gaveFullTurn = false;
- return false;
- }
- SetWrapModel ();
- ResetContinuousFind ();
- var foundPos = _model.FindNextText (textToFind, out gaveFullTurn, matchCase, matchWholeWord);
- return SetFoundText (textToFind, foundPos, textToReplace, replace);
- }
- /// <summary>
- /// Find the previous text based on the match case with the option to replace it.
- /// </summary>
- /// <param name="textToFind">The text to find.</param>
- /// <param name="gaveFullTurn"><c>true</c>If all the text was backward searched.<c>false</c>otherwise.</param>
- /// <param name="matchCase">The match case setting.</param>
- /// <param name="matchWholeWord">The match whole word setting.</param>
- /// <param name="textToReplace">The text to replace.</param>
- /// <param name="replace"><c>true</c>If the text was found.<c>false</c>otherwise.</param>
- /// <returns><c>true</c>If the text was found.<c>false</c>otherwise.</returns>
- public bool FindPreviousText (string textToFind, out bool gaveFullTurn, bool matchCase = false,
- bool matchWholeWord = false, string? textToReplace = null, bool replace = false)
- {
- if (_model.Count == 0) {
- gaveFullTurn = false;
- return false;
- }
- SetWrapModel ();
- ResetContinuousFind ();
- var foundPos = _model.FindPreviousText (textToFind, out gaveFullTurn, matchCase, matchWholeWord);
- return SetFoundText (textToFind, foundPos, textToReplace, replace);
- }
- /// <summary>
- /// Reset the flag to stop continuous find.
- /// </summary>
- public void FindTextChanged () => _continuousFind = false;
- /// <summary>
- /// Replaces all the text based on the match case.
- /// </summary>
- /// <param name="textToFind">The text to find.</param>
- /// <param name="matchCase">The match case setting.</param>
- /// <param name="matchWholeWord">The match whole word setting.</param>
- /// <param name="textToReplace">The text to replace.</param>
- /// <returns><c>true</c>If the text was found.<c>false</c>otherwise.</returns>
- public bool ReplaceAllText (string textToFind, bool matchCase = false, bool matchWholeWord = false,
- string? textToReplace = null)
- {
- if (_isReadOnly || _model.Count == 0) {
- return false;
- }
- SetWrapModel ();
- ResetContinuousFind ();
- var foundPos = _model.ReplaceAllText (textToFind, matchCase, matchWholeWord, textToReplace);
- return SetFoundText (textToFind, foundPos, textToReplace, false, true);
- }
- bool SetFoundText (string text, (Point current, bool found) foundPos,
- string? textToReplace = null, bool replace = false, bool replaceAll = false)
- {
- if (foundPos.found) {
- StartSelecting ();
- _selectionStartColumn = foundPos.current.X;
- _selectionStartRow = foundPos.current.Y;
- if (!replaceAll) {
- _currentColumn = _selectionStartColumn + text.GetRuneCount ();
- } else {
- _currentColumn = _selectionStartColumn + textToReplace!.GetRuneCount ();
- }
- _currentRow = foundPos.current.Y;
- if (!_isReadOnly && replace) {
- Adjust ();
- ClearSelectedRegion ();
- InsertAllText (textToReplace!);
- StartSelecting ();
- _selectionStartColumn = _currentColumn - textToReplace!.GetRuneCount ();
- } else {
- UpdateWrapModel ();
- SetNeedsDisplay ();
- Adjust ();
- }
- _continuousFind = true;
- return foundPos.found;
- }
- UpdateWrapModel ();
- _continuousFind = false;
- return foundPos.found;
- }
- void ResetContinuousFind ()
- {
- if (!_continuousFind) {
- int col = _selecting ? _selectionStartColumn : _currentColumn;
- int row = _selecting ? _selectionStartRow : _currentRow;
- _model.ResetContinuousFind (new Point (col, row));
- }
- }
- string? _currentCaller;
- /// <summary>
- /// Restore from original model.
- /// </summary>
- void SetWrapModel ([CallerMemberName] string? caller = null)
- {
- if (_currentCaller != null) {
- return;
- }
- if (_wordWrap) {
- _currentCaller = caller;
- _currentColumn = _wrapManager!.GetModelColFromWrappedLines (_currentRow, _currentColumn);
- _currentRow = _wrapManager.GetModelLineFromWrappedLines (_currentRow);
- _selectionStartColumn = _wrapManager.GetModelColFromWrappedLines (_selectionStartRow, _selectionStartColumn);
- _selectionStartRow = _wrapManager.GetModelLineFromWrappedLines (_selectionStartRow);
- _model = _wrapManager.Model;
- }
- }
- /// <summary>
- /// Update the original model.
- /// </summary>
- void UpdateWrapModel ([CallerMemberName] string? caller = null)
- {
- if (_currentCaller != null && _currentCaller != caller) {
- return;
- }
- if (_wordWrap) {
- _currentCaller = null;
- _wrapManager!.UpdateModel (_model, out int nRow, out int nCol,
- out int nStartRow, out int nStartCol,
- _currentRow, _currentColumn,
- _selectionStartRow, _selectionStartColumn, true);
- _currentRow = nRow;
- _currentColumn = nCol;
- _selectionStartRow = nStartRow;
- _selectionStartColumn = nStartCol;
- _wrapNeeded = true;
- SetNeedsDisplay ();
- }
- if (_currentCaller != null) {
- throw new InvalidOperationException ($"WordWrap settings was changed after the {_currentCaller} call.");
- }
- }
- /// <summary>
- /// Invoke the <see cref="UnwrappedCursorPosition"/> event with the unwrapped <see cref="CursorPosition"/>.
- /// </summary>
- public virtual void OnUnwrappedCursorPosition (int? cRow = null, int? cCol = null)
- {
- int? row = cRow == null ? _currentRow : cRow;
- int? col = cCol == null ? _currentColumn : cCol;
- if (cRow == null && cCol == null && _wordWrap) {
- row = _wrapManager!.GetModelLineFromWrappedLines (_currentRow);
- col = _wrapManager.GetModelColFromWrappedLines (_currentRow, _currentColumn);
- }
- UnwrappedCursorPosition?.Invoke (this, new PointEventArgs (new Point ((int)col, (int)row)));
- }
- string GetSelectedRegion ()
- {
- int cRow = _currentRow;
- int cCol = _currentColumn;
- int startRow = _selectionStartRow;
- int startCol = _selectionStartColumn;
- var model = _model;
- if (_wordWrap) {
- cRow = _wrapManager!.GetModelLineFromWrappedLines (_currentRow);
- cCol = _wrapManager.GetModelColFromWrappedLines (_currentRow, _currentColumn);
- startRow = _wrapManager.GetModelLineFromWrappedLines (_selectionStartRow);
- startCol = _wrapManager.GetModelColFromWrappedLines (_selectionStartRow, _selectionStartColumn);
- model = _wrapManager.Model;
- }
- OnUnwrappedCursorPosition (cRow, cCol);
- return GetRegion (startRow, startCol, cRow, cCol, model);
- }
- bool _isDrawing = false;
- ///<inheritdoc/>
- public override void OnDrawContent (Rect contentArea)
- {
- _isDrawing = true;
- SetNormalColor ();
- var offB = OffSetBackground ();
- int right = Frame.Width + offB.width + RightOffset;
- int bottom = Frame.Height + offB.height + BottomOffset;
- int row = 0;
- for (int idxRow = _topRow; idxRow < _model.Count; idxRow++) {
- var line = _model.GetLine (idxRow);
- int lineRuneCount = line.Count;
- int col = 0;
- Move (0, row);
- for (int idxCol = _leftColumn; idxCol < lineRuneCount; idxCol++) {
- var rune = idxCol >= lineRuneCount ? (Rune)' ' : line [idxCol].Rune;
- int cols = rune.GetColumns ();
- if (idxCol < line.Count && _selecting && PointInSelection (idxCol, idxRow)) {
- OnDrawSelectionColor (line, idxCol, idxRow);
- } else if (idxCol == _currentColumn && idxRow == _currentRow && !_selecting && !Used
- && HasFocus && idxCol < lineRuneCount) {
- OnDrawUsedColor (line, idxCol, idxRow);
- } else if (ReadOnly) {
- OnDrawReadOnlyColor (line, idxCol, idxRow);
- } else {
- OnDrawNormalColor (line, idxCol, idxRow);
- }
- if (rune.Value == '\t') {
- cols += TabWidth + 1;
- if (col + cols > right) {
- cols = right - col;
- }
- for (int i = 0; i < cols; i++) {
- if (col + i < right) {
- AddRune (col + i, row, (Rune)' ');
- }
- }
- } else {
- AddRune (col, row, rune);
- }
- if (!TextModel.SetCol (ref col, contentArea.Right, cols)) {
- break;
- }
- if (idxCol + 1 < lineRuneCount && col + line [idxCol + 1].Rune.GetColumns () > right) {
- break;
- }
- }
- if (col < right) {
- SetNormalColor ();
- ClearRegion (col, row, right, row + 1);
- }
- row++;
- }
- if (row < bottom) {
- SetNormalColor ();
- ClearRegion (contentArea.Left, row, right, bottom);
- }
- PositionCursor ();
- _isDrawing = false;
- }
- (int Row, int Col) GetUnwrappedPosition (int line, int col)
- {
- if (WordWrap) {
- return new ValueTuple<int, int> (_wrapManager!.GetModelLineFromWrappedLines (line), _wrapManager.GetModelColFromWrappedLines (line, col));
- }
- return new ValueTuple<int, int> (line, col);
- }
- void ProcessAutocomplete ()
- {
- if (_isDrawing) {
- return;
- }
- if (_clickWithSelecting) {
- _clickWithSelecting = false;
- return;
- }
- if (SelectedLength > 0) {
- return;
- }
- // draw autocomplete
- GenerateSuggestions ();
- var renderAt = new Point (
- Autocomplete.Context.CursorPosition,
- Autocomplete.PopupInsideContainer
- ? CursorPosition.Y + 1 - TopRow
- : 0);
- Autocomplete.RenderOverlay (renderAt);
- }
- void GenerateSuggestions ()
- {
- var currentLine = this.GetCurrentLine ();
- var cursorPosition = Math.Min (CurrentColumn, currentLine.Count);
- Autocomplete.Context = new AutocompleteContext (currentLine, cursorPosition,
- Autocomplete.Context != null ? Autocomplete.Context.Canceled : false);
- Autocomplete.GenerateSuggestions (
- Autocomplete.Context);
- }
- ///<inheritdoc/>
- public override bool CanFocus {
- get => base.CanFocus;
- set => base.CanFocus = value;
- }
- void SetClipboard (string text)
- {
- if (text != null) {
- Clipboard.Contents = text;
- }
- }
- void AppendClipboard (string text) => Clipboard.Contents += text;
- /// <summary>
- /// Inserts the given <paramref name="toAdd"/> text at the current cursor position
- /// exactly as if the user had just typed it
- /// </summary>
- /// <param name="toAdd">Text to add</param>
- public void InsertText (string toAdd)
- {
- foreach (char ch in toAdd) {
- Key key;
- try {
- key = new Key(ch);
- } catch (Exception) {
- throw new ArgumentException ($"Cannot insert character '{ch}' because it does not map to a Key");
- }
- InsertText (key);
- if (NeedsDisplay) {
- Adjust ();
- } else {
- PositionCursor ();
- }
- }
- }
- void Insert (RuneCell cell)
- {
- var line = GetCurrentLine ();
- if (Used) {
- line.Insert (Math.Min (_currentColumn, line.Count), cell);
- } else {
- if (_currentColumn < line.Count) {
- line.RemoveAt (_currentColumn);
- }
- line.Insert (Math.Min (_currentColumn, line.Count), cell);
- }
- int prow = _currentRow - _topRow;
- if (!_wrapNeeded) {
- // BUGBUG: customized rect aren't supported now because the Redraw isn't using the Intersect method.
- //SetNeedsDisplay (new Rect (0, prow, Math.Max (Frame.Width, 0), Math.Max (prow + 1, 0)));
- SetNeedsDisplay ();
- }
- }
- string StringFromRunes (List<RuneCell> cells)
- {
- if (cells == null) {
- throw new ArgumentNullException (nameof (cells));
- }
- int size = 0;
- foreach (var cell in cells) {
- size += cell.Rune.GetEncodingLength ();
- }
- byte [] encoded = new byte [size];
- int offset = 0;
- foreach (var cell in cells) {
- offset += cell.Rune.Encode (encoded, offset);
- }
- return StringExtensions.ToString (encoded);
- }
- /// <summary>
- /// Returns the characters on the current line (where the cursor is positioned).
- /// Use <see cref="CurrentColumn"/> to determine the position of the cursor within
- /// that line
- /// </summary>
- /// <returns></returns>
- public List<RuneCell> GetCurrentLine () => _model.GetLine (_currentRow);
- /// <summary>
- /// Returns the characters on the <paramref name="line"/>.
- /// </summary>
- /// <param name="line">The intended line.</param>
- /// <returns></returns>
- public List<RuneCell> GetLine (int line) => _model.GetLine (line);
- /// <summary>
- /// Gets all lines of characters.
- /// </summary>
- /// <returns></returns>
- public List<List<RuneCell>> GetAllLines () => _model.GetAllLines ();
- void InsertAllText (string text)
- {
- if (string.IsNullOrEmpty (text)) {
- return;
- }
- var lines = TextModel.StringToLinesOfRuneCells (text);
- if (lines.Count == 0) {
- return;
- }
- SetWrapModel ();
- var line = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new (line) }, CursorPosition);
- // Optimize single line
- if (lines.Count == 1) {
- line.InsertRange (_currentColumn, lines [0]);
- _currentColumn += lines [0].Count;
- _historyText.Add (new List<List<RuneCell>> () { new (line) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- if (!_wordWrap && _currentColumn - _leftColumn > Frame.Width) {
- _leftColumn = Math.Max (_currentColumn - Frame.Width + 1, 0);
- }
- if (_wordWrap) {
- SetNeedsDisplay ();
- } else {
- // BUGBUG: customized rect aren't supported now because the Redraw isn't using the Intersect method.
- //SetNeedsDisplay (new Rect (0, currentRow - topRow, Frame.Width, Math.Max (currentRow - topRow + 1, 0)));
- SetNeedsDisplay ();
- }
- UpdateWrapModel ();
- OnContentsChanged ();
- return;
- }
- List<RuneCell>? rest = null;
- int lastp = 0;
- if (_model.Count > 0 && line.Count > 0 && !_copyWithoutSelection) {
- // Keep a copy of the rest of the line
- int restCount = line.Count - _currentColumn;
- rest = line.GetRange (_currentColumn, restCount);
- line.RemoveRange (_currentColumn, restCount);
- }
- // First line is inserted at the current location, the rest is appended
- line.InsertRange (_currentColumn, lines [0]);
- //model.AddLine (currentRow, lines [0]);
- var addedLines = new List<List<RuneCell>> () { new (line) };
- for (int i = 1; i < lines.Count; i++) {
- _model.AddLine (_currentRow + i, lines [i]);
- addedLines.Add (new List<RuneCell> (lines [i]));
- }
- if (rest != null) {
- var last = _model.GetLine (_currentRow + lines.Count - 1);
- lastp = last.Count;
- last.InsertRange (last.Count, rest);
- addedLines.Last ().InsertRange (addedLines.Last ().Count, rest);
- }
- _historyText.Add (addedLines, CursorPosition, HistoryText.LineStatus.Added);
- // Now adjust column and row positions
- _currentRow += lines.Count - 1;
- _currentColumn = rest != null ? lastp : lines [lines.Count - 1].Count;
- Adjust ();
- _historyText.Add (new List<List<RuneCell>> () { new (line) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- OnContentsChanged ();
- }
- // The column we are tracking, or -1 if we are not tracking any column
- int _columnTrack = -1;
- // Tries to snap the cursor to the tracking column
- void TrackColumn ()
- {
- // Now track the column
- var line = GetCurrentLine ();
- if (line.Count < _columnTrack) {
- _currentColumn = line.Count;
- } else if (_columnTrack != -1) {
- _currentColumn = _columnTrack;
- } else if (_currentColumn > line.Count) {
- _currentColumn = line.Count;
- }
- Adjust ();
- }
- void Adjust ()
- {
- var offB = OffSetBackground ();
- var line = GetCurrentLine ();
- bool need = NeedsDisplay || _wrapNeeded || !Used;
- var tSize = TextModel.DisplaySize (line, -1, -1, false, TabWidth);
- var dSize = TextModel.DisplaySize (line, _leftColumn, _currentColumn, true, TabWidth);
- if (!_wordWrap && _currentColumn < _leftColumn) {
- _leftColumn = _currentColumn;
- need = true;
- } else if (!_wordWrap && (_currentColumn - _leftColumn + RightOffset > Frame.Width + offB.width
- || dSize.size + RightOffset >= Frame.Width + offB.width)) {
- _leftColumn = TextModel.CalculateLeftColumn (line, _leftColumn, _currentColumn,
- Frame.Width + offB.width - RightOffset, TabWidth);
- need = true;
- } else if (_wordWrap && _leftColumn > 0 || dSize.size + RightOffset < Frame.Width + offB.width
- && tSize.size + RightOffset < Frame.Width + offB.width) {
- if (_leftColumn > 0) {
- _leftColumn = 0;
- need = true;
- }
- }
- if (_currentRow < _topRow) {
- _topRow = _currentRow;
- need = true;
- } else if (_currentRow - _topRow + BottomOffset >= Frame.Height + offB.height) {
- _topRow = Math.Min (Math.Max (_currentRow - Frame.Height + 1 + BottomOffset, 0), _currentRow);
- need = true;
- } else if (_topRow > 0 && _currentRow < _topRow) {
- _topRow = Math.Max (_topRow - 1, 0);
- need = true;
- }
- if (need) {
- if (_wrapNeeded) {
- WrapTextModel ();
- _wrapNeeded = false;
- }
- SetNeedsDisplay ();
- } else {
- PositionCursor ();
- }
- OnUnwrappedCursorPosition ();
- }
- /// <summary>
- /// Called when the contents of the TextView change. E.g. when the user types text or deletes text. Raises
- /// the <see cref="ContentsChanged"/> event.
- /// </summary>
- public virtual void OnContentsChanged ()
- {
- ContentsChanged?.Invoke (this, new ContentsChangedEventArgs (CurrentRow, CurrentColumn));
- ProcessInheritsPreviousColorScheme (CurrentRow, CurrentColumn);
- ProcessAutocomplete ();
- }
- // If InheritsPreviousColorScheme is enabled this method will check if the rune cell on
- // the row and col location and around has a not null color scheme. If it's null will set it with
- // the very most previous valid color scheme.
- void ProcessInheritsPreviousColorScheme (int row, int col)
- {
- if (!InheritsPreviousColorScheme || Lines == 1 && GetLine (Lines).Count == 0) {
- return;
- }
- var line = GetLine (row);
- var lineToSet = line;
- while (line.Count == 0) {
- if (row == 0 && line.Count == 0) {
- return;
- }
- row--;
- line = GetLine (row);
- lineToSet = line;
- }
- int colWithColor = Math.Max (Math.Min (col - 2, line.Count - 1), 0);
- var cell = line [colWithColor];
- int colWithoutColor = Math.Max (col - 1, 0);
- if (cell.ColorScheme != null && colWithColor == 0 && lineToSet [colWithoutColor].ColorScheme != null) {
- for (int r = row - 1; r > -1; r--) {
- var l = GetLine (r);
- for (int c = l.Count - 1; c > -1; c--) {
- if (l [c].ColorScheme == null) {
- l [c].ColorScheme = cell.ColorScheme;
- } else {
- return;
- }
- }
- }
- return;
- } else if (cell.ColorScheme == null) {
- for (int r = row; r > -1; r--) {
- var l = GetLine (r);
- colWithColor = l.FindLastIndex (colWithColor > -1 ? colWithColor : l.Count - 1, rc => rc.ColorScheme != null);
- if (colWithColor > -1 && l [colWithColor].ColorScheme != null) {
- cell = l [colWithColor];
- break;
- }
- }
- } else {
- int cRow = row;
- while (cell.ColorScheme == null) {
- if ((colWithColor == 0 || cell.ColorScheme == null) && cRow > 0) {
- line = GetLine (--cRow);
- colWithColor = line.Count - 1;
- cell = line [colWithColor];
- } else if (cRow == 0 && colWithColor < line.Count) {
- cell = line [colWithColor + 1];
- }
- }
- }
- if (cell.ColorScheme != null && colWithColor > -1 && colWithoutColor < lineToSet.Count && lineToSet [colWithoutColor].ColorScheme == null) {
- while (lineToSet [colWithoutColor].ColorScheme == null) {
- lineToSet [colWithoutColor].ColorScheme = cell.ColorScheme;
- colWithoutColor--;
- if (colWithoutColor == -1 && row > 0) {
- lineToSet = GetLine (--row);
- colWithoutColor = lineToSet.Count - 1;
- }
- }
- }
- }
- (int width, int height) OffSetBackground ()
- {
- int w = 0;
- int h = 0;
- if (SuperView?.Frame.Right - Frame.Right < 0) {
- w = SuperView!.Frame.Right - Frame.Right - 1;
- }
- if (SuperView?.Frame.Bottom - Frame.Bottom < 0) {
- h = SuperView!.Frame.Bottom - Frame.Bottom - 1;
- }
- return (w, h);
- }
- /// <summary>
- /// Will scroll the <see cref="TextView"/> to display the specified row at the top if <paramref name="isRow"/> is true or
- /// will scroll the <see cref="TextView"/> to display the specified column at the left if <paramref name="isRow"/> is false.
- /// </summary>
- /// <param name="idx">Row that should be displayed at the top or Column that should be displayed at the left,
- /// if the value is negative it will be reset to zero</param>
- /// <param name="isRow">If true (default) the <paramref name="idx"/> is a row, column otherwise.</param>
- public void ScrollTo (int idx, bool isRow = true)
- {
- if (idx < 0) {
- idx = 0;
- }
- if (isRow) {
- _topRow = Math.Max (idx > _model.Count - 1 ? _model.Count - 1 : idx, 0);
- } else if (!_wordWrap) {
- int maxlength = _model.GetMaxVisibleLine (_topRow, _topRow + Frame.Height + RightOffset, TabWidth);
- _leftColumn = Math.Max (!_wordWrap && idx > maxlength - 1 ? maxlength - 1 : idx, 0);
- }
- SetNeedsDisplay ();
- }
- bool _lastWasKill;
- bool _wrapNeeded;
- bool _shiftSelecting;
- ///<inheritdoc/>
- public override bool? OnInvokingKeyBindings (Key a)
- {
- if (!a.IsValid) {
- return false;
- }
- // Give autocomplete first opportunity to respond to key presses
- if (SelectedLength == 0 && Autocomplete.Suggestions.Count > 0 && Autocomplete.ProcessKey (a)) {
- return true;
- }
- return base.OnInvokingKeyBindings (a);
- }
- ///<inheritdoc/>
- public override bool OnProcessKeyDown (Key a)
- {
- if (!CanFocus) {
- return true;
- }
- ResetColumnTrack ();
- // Ignore control characters and other special keys
- if (!a.IsKeyCodeAtoZ && (a.KeyCode < KeyCode.Space || a.KeyCode > KeyCode.CharMask)) {
- return false;
- }
- InsertText (a);
- DoNeededAction ();
- return true;
- }
- /// <summary>
- /// Redoes the latest changes.
- /// </summary>
- public void Redo ()
- {
- if (ReadOnly) {
- return;
- }
- _historyText.Redo ();
- }
- /// <summary>
- /// Undoes the latest changes.
- /// </summary>
- public void Undo ()
- {
- if (ReadOnly) {
- return;
- }
- _historyText.Undo ();
- }
- bool ProcessMovePreviousView ()
- {
- ResetColumnTrack ();
- return MovePreviousView ();
- }
- bool ProcessMoveNextView ()
- {
- ResetColumnTrack ();
- return MoveNextView ();
- }
- void ProcessSetOverwrite ()
- {
- ResetColumnTrack ();
- SetOverwrite (!Used);
- }
- void ProcessSelectAll ()
- {
- ResetColumnTrack ();
- SelectAll ();
- }
- void MoveTopHomeExtend ()
- {
- ResetColumnTrack ();
- StartSelecting ();
- MoveHome ();
- }
- void MoveTopHome ()
- {
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveHome ();
- }
- void MoveBottomEndExtend ()
- {
- ResetAllTrack ();
- StartSelecting ();
- MoveEnd ();
- }
- void MoveBottomEnd ()
- {
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveEnd ();
- }
- void ProcessKillWordBackward ()
- {
- ResetColumnTrack ();
- KillWordBackward ();
- }
- void ProcessKillWordForward ()
- {
- ResetColumnTrack ();
- KillWordForward ();
- }
- void ProcessMoveWordForwardExtend ()
- {
- ResetAllTrack ();
- StartSelecting ();
- MoveWordForward ();
- }
- void ProcessMoveWordForward ()
- {
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveWordForward ();
- }
- void ProcessMoveWordBackwardExtend ()
- {
- ResetAllTrack ();
- StartSelecting ();
- MoveWordBackward ();
- }
- void ProcessMoveWordBackward ()
- {
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveWordBackward ();
- }
- void ProcessCut ()
- {
- ResetColumnTrack ();
- Cut ();
- }
- void ProcessCopy ()
- {
- ResetColumnTrack ();
- Copy ();
- }
- void ToggleSelecting ()
- {
- ResetColumnTrack ();
- _selecting = !_selecting;
- _selectionStartColumn = _currentColumn;
- _selectionStartRow = _currentRow;
- }
- void ProcessPaste ()
- {
- ResetColumnTrack ();
- if (_isReadOnly) {
- return;
- }
- Paste ();
- }
- void ProcessMoveEndOfLineExtend ()
- {
- ResetAllTrack ();
- StartSelecting ();
- MoveEndOfLine ();
- }
- void ProcessMoveEndOfLine ()
- {
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveEndOfLine ();
- }
- void ProcessDeleteCharRight ()
- {
- ResetColumnTrack ();
- DeleteCharRight ();
- }
- void ProcessMoveStartOfLineExtend ()
- {
- ResetAllTrack ();
- StartSelecting ();
- MoveStartOfLine ();
- }
- void ProcessMoveStartOfLine ()
- {
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveStartOfLine ();
- }
- void ProcessDeleteCharLeft ()
- {
- ResetColumnTrack ();
- DeleteCharLeft ();
- }
- void ProcessMoveLeftExtend ()
- {
- ResetAllTrack ();
- StartSelecting ();
- MoveLeft ();
- }
- bool ProcessMoveLeft ()
- {
- // if the user presses Left (without any control keys) and they are at the start of the text
- if (_currentColumn == 0 && _currentRow == 0) {
- // do not respond (this lets the key press fall through to navigation system - which usually changes focus backward)
- return false;
- }
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveLeft ();
- return true;
- }
- void ProcessMoveRightExtend ()
- {
- ResetAllTrack ();
- StartSelecting ();
- MoveRight ();
- }
- bool ProcessMoveRight ()
- {
- // if the user presses Right (without any control keys)
- // determine where the last cursor position in the text is
- int lastRow = _model.Count - 1;
- int lastCol = _model.GetLine (lastRow).Count;
- // 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)
- if (_currentColumn == lastCol && _currentRow == lastRow) {
- return false;
- }
- ResetAllTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveRight ();
- return true;
- }
- void ProcessMoveUpExtend ()
- {
- ResetColumnTrack ();
- StartSelecting ();
- MoveUp ();
- }
- void ProcessMoveUp ()
- {
- ResetContinuousFindTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveUp ();
- }
- void ProcessMoveDownExtend ()
- {
- ResetColumnTrack ();
- StartSelecting ();
- MoveDown ();
- }
- void ProcessMoveDown ()
- {
- ResetContinuousFindTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MoveDown ();
- }
- void ProcessPageUpExtend ()
- {
- ResetColumnTrack ();
- StartSelecting ();
- MovePageUp ();
- }
- void ProcessPageUp ()
- {
- ResetColumnTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MovePageUp ();
- }
- void ProcessPageDownExtend ()
- {
- ResetColumnTrack ();
- StartSelecting ();
- MovePageDown ();
- }
- void ProcessPageDown ()
- {
- ResetColumnTrack ();
- if (_shiftSelecting && _selecting) {
- StopSelecting ();
- }
- MovePageDown ();
- }
- bool MovePreviousView ()
- {
- if (Application.OverlappedTop != null) {
- return SuperView?.FocusPrev () == true;
- }
- return false;
- }
- bool MoveNextView ()
- {
- if (Application.OverlappedTop != null) {
- return SuperView?.FocusNext () == true;
- }
- return false;
- }
- bool ProcessBackTab ()
- {
- ResetColumnTrack ();
- if (!AllowsTab || _isReadOnly) {
- return ProcessMovePreviousView ();
- }
- if (_currentColumn > 0) {
- SetWrapModel ();
- var currentLine = GetCurrentLine ();
- if (currentLine.Count > 0 && currentLine [_currentColumn - 1].Rune.Value == '\t') {
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- currentLine.RemoveAt (_currentColumn - 1);
- _currentColumn--;
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- }
- SetNeedsDisplay ();
- UpdateWrapModel ();
- }
- DoNeededAction ();
- return true;
- }
- bool ProcessTab ()
- {
- ResetColumnTrack ();
- if (!AllowsTab || _isReadOnly) {
- return ProcessMoveNextView ();
- }
- InsertText (new Key ((KeyCode)'\t'));
- DoNeededAction ();
- return true;
- }
- void SetOverwrite (bool overwrite)
- {
- Used = overwrite;
- SetNeedsDisplay ();
- DoNeededAction ();
- }
- bool ProcessReturn ()
- {
- ResetColumnTrack ();
- if (!AllowsReturn || _isReadOnly) {
- return false;
- }
- SetWrapModel ();
- var currentLine = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- if (_selecting) {
- ClearSelectedRegion ();
- currentLine = GetCurrentLine ();
- }
- int restCount = currentLine.Count - _currentColumn;
- var rest = currentLine.GetRange (_currentColumn, restCount);
- currentLine.RemoveRange (_currentColumn, restCount);
- var addedLines = new List<List<RuneCell>> () { new List<RuneCell> (currentLine) };
- _model.AddLine (_currentRow + 1, rest);
- addedLines.Add (new List<RuneCell> (_model.GetLine (_currentRow + 1)));
- _historyText.Add (addedLines, CursorPosition, HistoryText.LineStatus.Added);
- _currentRow++;
- bool fullNeedsDisplay = false;
- if (_currentRow >= _topRow + Frame.Height) {
- _topRow++;
- fullNeedsDisplay = true;
- }
- _currentColumn = 0;
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- if (!_wordWrap && _currentColumn < _leftColumn) {
- fullNeedsDisplay = true;
- _leftColumn = 0;
- }
- if (fullNeedsDisplay) {
- SetNeedsDisplay ();
- } else {
- // BUGBUG: customized rect aren't supported now because the Redraw isn't using the Intersect method.
- //SetNeedsDisplay (new Rect (0, currentRow - topRow, 2, Frame.Height));
- SetNeedsDisplay ();
- }
- UpdateWrapModel ();
- DoNeededAction ();
- OnContentsChanged ();
- return true;
- }
- void KillWordBackward ()
- {
- if (_isReadOnly) {
- return;
- }
- SetWrapModel ();
- var currentLine = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition);
- if (_currentColumn == 0) {
- DeleteTextBackwards ();
- _historyText.ReplaceLast (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- return;
- }
- var newPos = _model.WordBackward (_currentColumn, _currentRow);
- if (newPos.HasValue && _currentRow == newPos.Value.row) {
- int restCount = _currentColumn - newPos.Value.col;
- currentLine.RemoveRange (newPos.Value.col, restCount);
- if (_wordWrap) {
- _wrapNeeded = true;
- }
- _currentColumn = newPos.Value.col;
- } else if (newPos.HasValue) {
- int restCount = currentLine.Count - _currentColumn;
- currentLine.RemoveRange (_currentColumn, restCount);
- if (_wordWrap) {
- _wrapNeeded = true;
- }
- _currentColumn = newPos.Value.col;
- _currentRow = newPos.Value.row;
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- DoSetNeedsDisplay (new Rect (0, _currentRow - _topRow, Frame.Width, Frame.Height));
- DoNeededAction ();
- }
- void KillWordForward ()
- {
- if (_isReadOnly) {
- return;
- }
- SetWrapModel ();
- var currentLine = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition);
- if (currentLine.Count == 0 || _currentColumn == currentLine.Count) {
- DeleteTextForwards ();
- _historyText.ReplaceLast (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- return;
- }
- var newPos = _model.WordForward (_currentColumn, _currentRow);
- int restCount = 0;
- if (newPos.HasValue && _currentRow == newPos.Value.row) {
- restCount = newPos.Value.col - _currentColumn;
- currentLine.RemoveRange (_currentColumn, restCount);
- } else if (newPos.HasValue) {
- restCount = currentLine.Count - _currentColumn;
- currentLine.RemoveRange (_currentColumn, restCount);
- }
- if (_wordWrap) {
- _wrapNeeded = true;
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- DoSetNeedsDisplay (new Rect (0, _currentRow - _topRow, Frame.Width, Frame.Height));
- DoNeededAction ();
- }
- void MoveWordForward ()
- {
- var newPos = _model.WordForward (_currentColumn, _currentRow);
- if (newPos.HasValue) {
- _currentColumn = newPos.Value.col;
- _currentRow = newPos.Value.row;
- }
- Adjust ();
- DoNeededAction ();
- }
- void MoveWordBackward ()
- {
- var newPos = _model.WordBackward (_currentColumn, _currentRow);
- if (newPos.HasValue) {
- _currentColumn = newPos.Value.col;
- _currentRow = newPos.Value.row;
- }
- Adjust ();
- DoNeededAction ();
- }
- void KillToStartOfLine ()
- {
- if (_isReadOnly) {
- return;
- }
- if (_model.Count == 1 && GetCurrentLine ().Count == 0) {
- // Prevents from adding line feeds if there is no more lines.
- return;
- }
- SetWrapModel ();
- var currentLine = GetCurrentLine ();
- bool setLastWasKill = true;
- if (currentLine.Count > 0 && _currentColumn == 0) {
- UpdateWrapModel ();
- DeleteTextBackwards ();
- return;
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- if (currentLine.Count == 0) {
- if (_currentRow > 0) {
- _model.RemoveLine (_currentRow);
- if (_model.Count > 0 || _lastWasKill) {
- string val = Environment.NewLine;
- if (_lastWasKill) {
- AppendClipboard (val);
- } else {
- SetClipboard (val);
- }
- }
- if (_model.Count == 0) {
- // Prevents from adding line feeds if there is no more lines.
- setLastWasKill = false;
- }
- _currentRow--;
- currentLine = _model.GetLine (_currentRow);
- var removedLine = new List<List<RuneCell>> () { new List<RuneCell> (currentLine) };
- removedLine.Add (new List<RuneCell> ());
- _historyText.Add (new List<List<RuneCell>> (removedLine), CursorPosition, HistoryText.LineStatus.Removed);
- _currentColumn = currentLine.Count;
- }
- } else {
- int restCount = _currentColumn;
- var rest = currentLine.GetRange (0, restCount);
- string val = string.Empty;
- val += StringFromRunes (rest);
- if (_lastWasKill) {
- AppendClipboard (val);
- } else {
- SetClipboard (val);
- }
- currentLine.RemoveRange (0, restCount);
- _currentColumn = 0;
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- DoSetNeedsDisplay (new Rect (0, _currentRow - _topRow, Frame.Width, Frame.Height));
- _lastWasKill = setLastWasKill;
- DoNeededAction ();
- }
- void KillToEndOfLine ()
- {
- if (_isReadOnly) {
- return;
- }
- if (_model.Count == 1 && GetCurrentLine ().Count == 0) {
- // Prevents from adding line feeds if there is no more lines.
- return;
- }
- SetWrapModel ();
- var currentLine = GetCurrentLine ();
- bool setLastWasKill = true;
- if (currentLine.Count > 0 && _currentColumn == currentLine.Count) {
- UpdateWrapModel ();
- DeleteTextForwards ();
- return;
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- if (currentLine.Count == 0) {
- if (_currentRow < _model.Count - 1) {
- var removedLines = new List<List<RuneCell>> () { new List<RuneCell> (currentLine) };
- _model.RemoveLine (_currentRow);
- removedLines.Add (new List<RuneCell> (GetCurrentLine ()));
- _historyText.Add (new List<List<RuneCell>> (removedLines), CursorPosition,
- HistoryText.LineStatus.Removed);
- }
- if (_model.Count > 0 || _lastWasKill) {
- string val = Environment.NewLine;
- if (_lastWasKill) {
- AppendClipboard (val);
- } else {
- SetClipboard (val);
- }
- }
- if (_model.Count == 0) {
- // Prevents from adding line feeds if there is no more lines.
- setLastWasKill = false;
- }
- } else {
- int restCount = currentLine.Count - _currentColumn;
- var rest = currentLine.GetRange (_currentColumn, restCount);
- string val = string.Empty;
- val += StringFromRunes (rest);
- if (_lastWasKill) {
- AppendClipboard (val);
- } else {
- SetClipboard (val);
- }
- currentLine.RemoveRange (_currentColumn, restCount);
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- DoSetNeedsDisplay (new Rect (0, _currentRow - _topRow, Frame.Width, Frame.Height));
- _lastWasKill = setLastWasKill;
- DoNeededAction ();
- }
- void MoveEndOfLine ()
- {
- var currentLine = GetCurrentLine ();
- _currentColumn = currentLine.Count;
- Adjust ();
- DoNeededAction ();
- }
- void MoveStartOfLine ()
- {
- if (_leftColumn > 0) {
- SetNeedsDisplay ();
- }
- _currentColumn = 0;
- _leftColumn = 0;
- Adjust ();
- DoNeededAction ();
- }
- /// <summary>
- /// Deletes all the selected or a single character at right from the position of the cursor.
- /// </summary>
- public void DeleteCharRight ()
- {
- if (_isReadOnly) {
- return;
- }
- SetWrapModel ();
- if (_selecting) {
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Original);
- ClearSelectedRegion ();
- var currentLine = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- OnContentsChanged ();
- return;
- }
- if (DeleteTextForwards ()) {
- UpdateWrapModel ();
- OnContentsChanged ();
- return;
- }
- UpdateWrapModel ();
- DoNeededAction ();
- OnContentsChanged ();
- }
- /// <summary>
- /// Deletes all the selected or a single character at left from the position of the cursor.
- /// </summary>
- public void DeleteCharLeft ()
- {
- if (_isReadOnly) {
- return;
- }
- SetWrapModel ();
- if (_selecting) {
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Original);
- ClearSelectedRegion ();
- var currentLine = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- OnContentsChanged ();
- return;
- }
- if (DeleteTextBackwards ()) {
- UpdateWrapModel ();
- OnContentsChanged ();
- return;
- }
- UpdateWrapModel ();
- DoNeededAction ();
- OnContentsChanged ();
- }
- void MoveLeft ()
- {
- if (_currentColumn > 0) {
- _currentColumn--;
- } else {
- if (_currentRow > 0) {
- _currentRow--;
- if (_currentRow < _topRow) {
- _topRow--;
- SetNeedsDisplay ();
- }
- var currentLine = GetCurrentLine ();
- _currentColumn = currentLine.Count;
- }
- }
- Adjust ();
- DoNeededAction ();
- }
- void MoveRight ()
- {
- var currentLine = GetCurrentLine ();
- if (_currentColumn < currentLine.Count) {
- _currentColumn++;
- } else {
- if (_currentRow + 1 < _model.Count) {
- _currentRow++;
- _currentColumn = 0;
- if (_currentRow >= _topRow + Frame.Height) {
- _topRow++;
- SetNeedsDisplay ();
- }
- }
- }
- Adjust ();
- DoNeededAction ();
- }
- void MovePageUp ()
- {
- int nPageUpShift = Frame.Height - 1;
- if (_currentRow > 0) {
- if (_columnTrack == -1) {
- _columnTrack = _currentColumn;
- }
- _currentRow = _currentRow - nPageUpShift < 0 ? 0 : _currentRow - nPageUpShift;
- if (_currentRow < _topRow) {
- _topRow = _topRow - nPageUpShift < 0 ? 0 : _topRow - nPageUpShift;
- SetNeedsDisplay ();
- }
- TrackColumn ();
- PositionCursor ();
- }
- DoNeededAction ();
- }
- void MovePageDown ()
- {
- int nPageDnShift = Frame.Height - 1;
- if (_currentRow >= 0 && _currentRow < _model.Count) {
- if (_columnTrack == -1) {
- _columnTrack = _currentColumn;
- }
- _currentRow = _currentRow + nPageDnShift > _model.Count
- ? _model.Count > 0 ? _model.Count - 1 : 0
- : _currentRow + nPageDnShift;
- if (_topRow < _currentRow - nPageDnShift) {
- _topRow = _currentRow >= _model.Count ? _currentRow - nPageDnShift : _topRow + nPageDnShift;
- SetNeedsDisplay ();
- }
- TrackColumn ();
- PositionCursor ();
- }
- DoNeededAction ();
- }
- void ResetContinuousFindTrack ()
- {
- // Handle some state here - whether the last command was a kill
- // operation and the column tracking (up/down)
- _lastWasKill = false;
- _continuousFind = false;
- }
- void ResetColumnTrack ()
- {
- // Handle some state here - whether the last command was a kill
- // operation and the column tracking (up/down)
- _lastWasKill = false;
- _columnTrack = -1;
- }
- void ResetAllTrack ()
- {
- // Handle some state here - whether the last command was a kill
- // operation and the column tracking (up/down)
- _lastWasKill = false;
- _columnTrack = -1;
- _continuousFind = false;
- }
- bool InsertText (Key a, ColorScheme? colorScheme = null)
- {
- //So that special keys like tab can be processed
- if (_isReadOnly) {
- return true;
- }
- SetWrapModel ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition);
- if (_selecting) {
- ClearSelectedRegion ();
- }
- if ((uint)a.KeyCode == '\n') {
- _model.AddLine (_currentRow + 1, new List<RuneCell> ());
- _currentRow++;
- _currentColumn = 0;
- } else if ((uint)a.KeyCode == '\r') {
- _currentColumn = 0;
- } else {
- if (Used) {
- Insert (new RuneCell { Rune = a.AsRune, ColorScheme = colorScheme });
- _currentColumn++;
- if (_currentColumn >= _leftColumn + Frame.Width) {
- _leftColumn++;
- SetNeedsDisplay ();
- }
- } else {
- Insert (new RuneCell { Rune = a.AsRune, ColorScheme = colorScheme });
- _currentColumn++;
- }
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- UpdateWrapModel ();
- OnContentsChanged ();
- return true;
- }
- void ShowContextMenu ()
- {
- if (_currentCulture != Thread.CurrentThread.CurrentUICulture) {
- _currentCulture = Thread.CurrentThread.CurrentUICulture;
- ContextMenu!.MenuItems = BuildContextMenuBarItem ();
- }
- ContextMenu!.Show ();
- }
- /// <summary>
- /// Deletes all text.
- /// </summary>
- public void DeleteAll ()
- {
- if (Lines == 0) {
- return;
- }
- _selectionStartColumn = 0;
- _selectionStartRow = 0;
- MoveBottomEndExtend ();
- DeleteCharLeft ();
- SetNeedsDisplay ();
- }
- ///<inheritdoc/>
- public override bool OnKeyUp (Key a)
- {
- switch (a.KeyCode) {
- case KeyCode.Space | KeyCode.CtrlMask:
- return true;
- }
- return base.OnKeyUp (a);
- }
- void DoNeededAction ()
- {
- if (NeedsDisplay) {
- Adjust ();
- } else {
- PositionCursor ();
- }
- }
- bool DeleteTextForwards ()
- {
- SetWrapModel ();
- var currentLine = GetCurrentLine ();
- if (_currentColumn == currentLine.Count) {
- if (_currentRow + 1 == _model.Count) {
- UpdateWrapModel ();
- return true;
- }
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- var removedLines = new List<List<RuneCell>> () { new List<RuneCell> (currentLine) };
- var nextLine = _model.GetLine (_currentRow + 1);
- removedLines.Add (new List<RuneCell> (nextLine));
- _historyText.Add (removedLines, CursorPosition, HistoryText.LineStatus.Removed);
- currentLine.AddRange (nextLine);
- _model.RemoveLine (_currentRow + 1);
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- if (_wordWrap) {
- _wrapNeeded = true;
- }
- DoSetNeedsDisplay (new Rect (0, _currentRow - _topRow, Frame.Width, _currentRow - _topRow + 1));
- } else {
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- currentLine.RemoveAt (_currentColumn);
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- if (_wordWrap) {
- _wrapNeeded = true;
- }
- DoSetNeedsDisplay (new Rect (_currentColumn - _leftColumn, _currentRow - _topRow, Frame.Width, _currentRow - _topRow + 1));
- }
- UpdateWrapModel ();
- return false;
- }
- void DoSetNeedsDisplay (Rect rect)
- {
- if (_wrapNeeded) {
- SetNeedsDisplay ();
- } else {
- // BUGBUG: customized rect aren't supported now because the Redraw isn't using the Intersect method.
- //SetNeedsDisplay (rect);
- SetNeedsDisplay ();
- }
- }
- bool DeleteTextBackwards ()
- {
- SetWrapModel ();
- if (_currentColumn > 0) {
- // Delete backwards
- var currentLine = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- currentLine.RemoveAt (_currentColumn - 1);
- if (_wordWrap) {
- _wrapNeeded = true;
- }
- _currentColumn--;
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- if (_currentColumn < _leftColumn) {
- _leftColumn--;
- SetNeedsDisplay ();
- } else {
- // BUGBUG: customized rect aren't supported now because the Redraw isn't using the Intersect method.
- //SetNeedsDisplay (new Rect (0, currentRow - topRow, 1, Frame.Width));
- SetNeedsDisplay ();
- }
- } else {
- // Merges the current line with the previous one.
- if (_currentRow == 0) {
- return true;
- }
- int prowIdx = _currentRow - 1;
- var prevRow = _model.GetLine (prowIdx);
- _historyText.Add (new List<List<RuneCell>> () { new (prevRow) }, CursorPosition);
- List<List<RuneCell>> removedLines = new () { new List<RuneCell> (prevRow) };
- removedLines.Add (new List<RuneCell> (GetCurrentLine ()));
- _historyText.Add (removedLines, new Point (_currentColumn, prowIdx),
- HistoryText.LineStatus.Removed);
- int prevCount = prevRow.Count;
- _model.GetLine (prowIdx).AddRange (GetCurrentLine ());
- _model.RemoveLine (_currentRow);
- if (_wordWrap) {
- _wrapNeeded = true;
- }
- _currentRow--;
- _historyText.Add (new List<List<RuneCell>> () { GetCurrentLine () }, new Point (_currentColumn, prowIdx),
- HistoryText.LineStatus.Replaced);
- _currentColumn = prevCount;
- SetNeedsDisplay ();
- }
- UpdateWrapModel ();
- return false;
- }
- bool _copyWithoutSelection;
- /// <summary>
- /// Copy the selected text to the clipboard contents.
- /// </summary>
- public void Copy ()
- {
- SetWrapModel ();
- if (_selecting) {
- SetClipboard (GetRegion ());
- _copyWithoutSelection = false;
- } else {
- var currentLine = GetCurrentLine ();
- SetClipboard (TextModel.ToString (currentLine));
- _copyWithoutSelection = true;
- }
- UpdateWrapModel ();
- DoNeededAction ();
- }
- /// <summary>
- /// Cut the selected text to the clipboard contents.
- /// </summary>
- public void Cut ()
- {
- SetWrapModel ();
- SetClipboard (GetRegion ());
- if (!_isReadOnly) {
- ClearRegion ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- }
- UpdateWrapModel ();
- _selecting = false;
- DoNeededAction ();
- OnContentsChanged ();
- }
- /// <summary>
- /// Paste the clipboard contents into the current selected position.
- /// </summary>
- public void Paste ()
- {
- if (_isReadOnly) {
- return;
- }
- SetWrapModel ();
- string? contents = Clipboard.Contents;
- if (_copyWithoutSelection && contents.FirstOrDefault (x => x == '\n' || x == '\r') == 0) {
- var runeList = contents == null ? new List<RuneCell> () : TextModel.ToRuneCellList (contents);
- var currentLine = GetCurrentLine ();
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (currentLine) }, CursorPosition);
- var addedLine = new List<List<RuneCell>> {
- new List<RuneCell> (currentLine),
- runeList
- };
- _historyText.Add (new List<List<RuneCell>> (addedLine), CursorPosition, HistoryText.LineStatus.Added);
- _model.AddLine (_currentRow, runeList);
- _currentRow++;
- _historyText.Add (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Replaced);
- SetNeedsDisplay ();
- OnContentsChanged ();
- } else {
- if (_selecting) {
- ClearRegion ();
- }
- _copyWithoutSelection = false;
- InsertAllText (contents);
- if (_selecting) {
- _historyText.ReplaceLast (new List<List<RuneCell>> () { new List<RuneCell> (GetCurrentLine ()) }, CursorPosition,
- HistoryText.LineStatus.Original);
- }
- SetNeedsDisplay ();
- }
- UpdateWrapModel ();
- _selecting = false;
- DoNeededAction ();
- }
- void StartSelecting ()
- {
- if (_shiftSelecting && _selecting) {
- return;
- }
- _shiftSelecting = true;
- _selecting = true;
- _selectionStartColumn = _currentColumn;
- _selectionStartRow = _currentRow;
- }
- void StopSelecting ()
- {
- _shiftSelecting = false;
- _selecting = false;
- _isButtonShift = false;
- }
- void ClearSelectedRegion ()
- {
- SetWrapModel ();
- if (!_isReadOnly) {
- ClearRegion ();
- }
- UpdateWrapModel ();
- _selecting = false;
- DoNeededAction ();
- }
- void MoveUp ()
- {
- if (_currentRow > 0) {
- if (_columnTrack == -1) {
- _columnTrack = _currentColumn;
- }
- _currentRow--;
- if (_currentRow < _topRow) {
- _topRow--;
- SetNeedsDisplay ();
- }
- TrackColumn ();
- PositionCursor ();
- }
- DoNeededAction ();
- }
- void MoveDown ()
- {
- if (_currentRow + 1 < _model.Count) {
- if (_columnTrack == -1) {
- _columnTrack = _currentColumn;
- }
- _currentRow++;
- if (_currentRow + BottomOffset >= _topRow + Frame.Height) {
- _topRow++;
- SetNeedsDisplay ();
- }
- TrackColumn ();
- PositionCursor ();
- } else if (_currentRow > Frame.Height) {
- Adjust ();
- }
- DoNeededAction ();
- }
- IEnumerable<(int col, int row, RuneCell rune)> ForwardIterator (int col, int row)
- {
- if (col < 0 || row < 0) {
- yield break;
- }
- if (row >= _model.Count) {
- yield break;
- }
- var line = GetCurrentLine ();
- if (col >= line.Count) {
- yield break;
- }
- while (row < _model.Count) {
- for (int c = col; c < line.Count; c++) {
- yield return (c, row, line [c]);
- }
- col = 0;
- row++;
- line = GetCurrentLine ();
- }
- }
- /// <summary>
- /// Will scroll the <see cref="TextView"/> to the last line and position the cursor there.
- /// </summary>
- public void MoveEnd ()
- {
- _currentRow = _model.Count - 1;
- var line = GetCurrentLine ();
- _currentColumn = line.Count;
- TrackColumn ();
- PositionCursor ();
- }
- /// <summary>
- /// Will scroll the <see cref="TextView"/> to the first line and position the cursor there.
- /// </summary>
- public void MoveHome ()
- {
- _currentRow = 0;
- _topRow = 0;
- _currentColumn = 0;
- _leftColumn = 0;
- TrackColumn ();
- PositionCursor ();
- SetNeedsDisplay ();
- }
- bool _isButtonShift;
- bool _clickWithSelecting;
- ///<inheritdoc/>
- public override bool MouseEvent (MouseEvent ev)
- {
- if (!ev.Flags.HasFlag (MouseFlags.Button1Clicked) && !ev.Flags.HasFlag (MouseFlags.Button1Pressed)
- && !ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition)
- && !ev.Flags.HasFlag (MouseFlags.Button1Released)
- && !ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ButtonShift)
- && !ev.Flags.HasFlag (MouseFlags.WheeledDown) && !ev.Flags.HasFlag (MouseFlags.WheeledUp)
- && !ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked)
- && !ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked | MouseFlags.ButtonShift)
- && !ev.Flags.HasFlag (MouseFlags.Button1TripleClicked)
- && !ev.Flags.HasFlag (ContextMenu!.MouseFlags)) {
- return false;
- }
- if (!CanFocus) {
- return true;
- }
- if (!HasFocus) {
- SetFocus ();
- }
- _continuousFind = false;
- // Give autocomplete first opportunity to respond to mouse clicks
- if (SelectedLength == 0 && Autocomplete.MouseEvent (ev, true)) {
- return true;
- }
- if (ev.Flags == MouseFlags.Button1Clicked) {
- if (_shiftSelecting && !_isButtonShift) {
- StopSelecting ();
- }
- ProcessMouseClick (ev, out _);
- if (Used) {
- PositionCursor ();
- } else {
- SetNeedsDisplay ();
- }
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- } else if (ev.Flags == MouseFlags.WheeledDown) {
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- ScrollTo (_topRow + 1);
- } else if (ev.Flags == MouseFlags.WheeledUp) {
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- ScrollTo (_topRow - 1);
- } else if (ev.Flags == MouseFlags.WheeledRight) {
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- ScrollTo (_leftColumn + 1, false);
- } else if (ev.Flags == MouseFlags.WheeledLeft) {
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- ScrollTo (_leftColumn - 1, false);
- } else if (ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ReportMousePosition)) {
- ProcessMouseClick (ev, out var line);
- PositionCursor ();
- if (_model.Count > 0 && _shiftSelecting && _selecting) {
- if (_currentRow - _topRow + BottomOffset >= Frame.Height - 1
- && _model.Count + BottomOffset > _topRow + _currentRow) {
- ScrollTo (_topRow + Frame.Height);
- } else if (_topRow > 0 && _currentRow <= _topRow) {
- ScrollTo (_topRow - Frame.Height);
- } else if (ev.Y >= Frame.Height) {
- ScrollTo (_model.Count + BottomOffset);
- } else if (ev.Y < 0 && _topRow > 0) {
- ScrollTo (0);
- }
- if (_currentColumn - _leftColumn + RightOffset >= Frame.Width - 1
- && line.Count + RightOffset > _leftColumn + _currentColumn) {
- ScrollTo (_leftColumn + Frame.Width, false);
- } else if (_leftColumn > 0 && _currentColumn <= _leftColumn) {
- ScrollTo (_leftColumn - Frame.Width, false);
- } else if (ev.X >= Frame.Width) {
- ScrollTo (line.Count + RightOffset, false);
- } else if (ev.X < 0 && _leftColumn > 0) {
- ScrollTo (0, false);
- }
- }
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- } else if (ev.Flags.HasFlag (MouseFlags.Button1Pressed | MouseFlags.ButtonShift)) {
- if (!_shiftSelecting) {
- _isButtonShift = true;
- StartSelecting ();
- }
- ProcessMouseClick (ev, out _);
- PositionCursor ();
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- } else if (ev.Flags.HasFlag (MouseFlags.Button1Pressed)) {
- if (_shiftSelecting) {
- _clickWithSelecting = true;
- StopSelecting ();
- }
- ProcessMouseClick (ev, out _);
- PositionCursor ();
- if (!_selecting) {
- StartSelecting ();
- }
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- if (Application.MouseGrabView == null) {
- Application.GrabMouse (this);
- }
- } else if (ev.Flags.HasFlag (MouseFlags.Button1Released)) {
- Application.UngrabMouse ();
- } else if (ev.Flags.HasFlag (MouseFlags.Button1DoubleClicked)) {
- if (ev.Flags.HasFlag (MouseFlags.ButtonShift)) {
- if (!_selecting) {
- StartSelecting ();
- }
- } else if (_selecting) {
- StopSelecting ();
- }
- ProcessMouseClick (ev, out var line);
- (int col, int row)? newPos;
- if (_currentColumn == line.Count || _currentColumn > 0 && (line [_currentColumn - 1].Rune.Value != ' '
- || line [_currentColumn].Rune.Value == ' ')) {
- newPos = _model.WordBackward (_currentColumn, _currentRow);
- if (newPos.HasValue) {
- _currentColumn = _currentRow == newPos.Value.row ? newPos.Value.col : 0;
- }
- }
- if (!_selecting) {
- StartSelecting ();
- }
- newPos = _model.WordForward (_currentColumn, _currentRow);
- if (newPos != null && newPos.HasValue) {
- _currentColumn = _currentRow == newPos.Value.row ? newPos.Value.col : line.Count;
- }
- PositionCursor ();
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- } else if (ev.Flags.HasFlag (MouseFlags.Button1TripleClicked)) {
- if (_selecting) {
- StopSelecting ();
- }
- ProcessMouseClick (ev, out var line);
- _currentColumn = 0;
- if (!_selecting) {
- StartSelecting ();
- }
- _currentColumn = line.Count;
- PositionCursor ();
- _lastWasKill = false;
- _columnTrack = _currentColumn;
- } else if (ev.Flags == ContextMenu!.MouseFlags) {
- ContextMenu.Position = new Point (ev.X + 2, ev.Y + 2);
- ShowContextMenu ();
- }
- return true;
- }
- void ProcessMouseClick (MouseEvent ev, out List<RuneCell> line)
- {
- List<RuneCell>? r = null;
- if (_model.Count > 0) {
- int maxCursorPositionableLine = Math.Max (_model.Count - 1 - _topRow, 0);
- if (Math.Max (ev.Y, 0) > maxCursorPositionableLine) {
- _currentRow = maxCursorPositionableLine + _topRow;
- } else {
- _currentRow = Math.Max (ev.Y + _topRow, 0);
- }
- r = GetCurrentLine ();
- int idx = TextModel.GetColFromX (r, _leftColumn, Math.Max (ev.X, 0), TabWidth);
- if (idx - _leftColumn >= r.Count + RightOffset) {
- _currentColumn = Math.Max (r.Count - _leftColumn + RightOffset, 0);
- } else {
- _currentColumn = idx + _leftColumn;
- }
- }
- line = r!;
- }
- /// <summary>
- /// Allows clearing the <see cref="HistoryText.HistoryTextItem"/> items updating the original text.
- /// </summary>
- public void ClearHistoryChanges () => _historyText?.Clear (Text);
- }
- /// <summary>
- /// Renders an overlay on another view at a given point that allows selecting
- /// from a range of 'autocomplete' options.
- /// An implementation on a TextView.
- /// </summary>
- public class TextViewAutocomplete : PopupAutocomplete {
- /// <inheritdoc/>
- protected override void DeleteTextBackwards () => ((TextView)HostControl).DeleteCharLeft ();
- /// <inheritdoc/>
- protected override void InsertText (string accepted) => ((TextView)HostControl).InsertText (accepted);
- /// <inheritdoc/>
- protected override void SetCursorPosition (int column) => ((TextView)HostControl).CursorPosition = new Point (column, ((TextView)HostControl).CurrentRow);
- }
|