st.c 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404
  1. /* See LICENSE for license details. */
  2. #include <ctype.h>
  3. #include <errno.h>
  4. #include <fcntl.h>
  5. #include <limits.h>
  6. #include <locale.h>
  7. #include <pwd.h>
  8. #include <stdarg.h>
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <string.h>
  12. #include <signal.h>
  13. #include <stdint.h>
  14. #include <sys/ioctl.h>
  15. #include <sys/select.h>
  16. #include <sys/stat.h>
  17. #include <sys/time.h>
  18. #include <sys/types.h>
  19. #include <sys/wait.h>
  20. #include <termios.h>
  21. #include <time.h>
  22. #include <unistd.h>
  23. #include <libgen.h>
  24. #include <X11/Xatom.h>
  25. #include <X11/Xlib.h>
  26. #include <X11/Xutil.h>
  27. #include <X11/cursorfont.h>
  28. #include <X11/keysym.h>
  29. #include <X11/Xft/Xft.h>
  30. #include <X11/XKBlib.h>
  31. #include <fontconfig/fontconfig.h>
  32. #include <wchar.h>
  33. #include "arg.h"
  34. char *argv0;
  35. #define Glyph Glyph_
  36. #define Font Font_
  37. #if defined(__linux)
  38. #include <pty.h>
  39. #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
  40. #include <util.h>
  41. #elif defined(__FreeBSD__) || defined(__DragonFly__)
  42. #include <libutil.h>
  43. #endif
  44. /* XEMBED messages */
  45. #define XEMBED_FOCUS_IN 4
  46. #define XEMBED_FOCUS_OUT 5
  47. /* Arbitrary sizes */
  48. #define UTF_INVALID 0xFFFD
  49. #define UTF_SIZ 4
  50. #define ESC_BUF_SIZ (128*UTF_SIZ)
  51. #define ESC_ARG_SIZ 16
  52. #define STR_BUF_SIZ ESC_BUF_SIZ
  53. #define STR_ARG_SIZ ESC_ARG_SIZ
  54. #define XK_ANY_MOD UINT_MAX
  55. #define XK_NO_MOD 0
  56. #define XK_SWITCH_MOD (1<<13)
  57. /* macros */
  58. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  59. #define MAX(a, b) ((a) < (b) ? (b) : (a))
  60. #define LEN(a) (sizeof(a) / sizeof(a)[0])
  61. #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
  62. #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
  63. #define ISCONTROLC0(c) (BETWEEN(c, 0, 0x1f) || (c) == '\177')
  64. #define ISCONTROLC1(c) (BETWEEN(c, 0x80, 0x9f))
  65. #define ISCONTROL(c) (ISCONTROLC0(c) || ISCONTROLC1(c))
  66. #define ISDELIM(u) (utf8strchr(worddelimiters, u) != NULL)
  67. #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
  68. #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || \
  69. (a).bg != (b).bg)
  70. #define IS_SET(flag) ((term.mode & (flag)) != 0)
  71. #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + \
  72. (t1.tv_nsec-t2.tv_nsec)/1E6)
  73. #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
  74. #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
  75. #define IS_TRUECOL(x) (1 << 24 & (x))
  76. #define TRUERED(x) (((x) & 0xff0000) >> 8)
  77. #define TRUEGREEN(x) (((x) & 0xff00))
  78. #define TRUEBLUE(x) (((x) & 0xff) << 8)
  79. enum glyph_attribute {
  80. ATTR_NULL = 0,
  81. ATTR_BOLD = 1 << 0,
  82. ATTR_FAINT = 1 << 1,
  83. ATTR_ITALIC = 1 << 2,
  84. ATTR_UNDERLINE = 1 << 3,
  85. ATTR_BLINK = 1 << 4,
  86. ATTR_REVERSE = 1 << 5,
  87. ATTR_INVISIBLE = 1 << 6,
  88. ATTR_STRUCK = 1 << 7,
  89. ATTR_WRAP = 1 << 8,
  90. ATTR_WIDE = 1 << 9,
  91. ATTR_WDUMMY = 1 << 10,
  92. ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
  93. };
  94. enum cursor_movement {
  95. CURSOR_SAVE,
  96. CURSOR_LOAD
  97. };
  98. enum cursor_state {
  99. CURSOR_DEFAULT = 0,
  100. CURSOR_WRAPNEXT = 1,
  101. CURSOR_ORIGIN = 2
  102. };
  103. enum term_mode {
  104. MODE_WRAP = 1 << 0,
  105. MODE_INSERT = 1 << 1,
  106. MODE_APPKEYPAD = 1 << 2,
  107. MODE_ALTSCREEN = 1 << 3,
  108. MODE_CRLF = 1 << 4,
  109. MODE_MOUSEBTN = 1 << 5,
  110. MODE_MOUSEMOTION = 1 << 6,
  111. MODE_REVERSE = 1 << 7,
  112. MODE_KBDLOCK = 1 << 8,
  113. MODE_HIDE = 1 << 9,
  114. MODE_ECHO = 1 << 10,
  115. MODE_APPCURSOR = 1 << 11,
  116. MODE_MOUSESGR = 1 << 12,
  117. MODE_8BIT = 1 << 13,
  118. MODE_BLINK = 1 << 14,
  119. MODE_FBLINK = 1 << 15,
  120. MODE_FOCUS = 1 << 16,
  121. MODE_MOUSEX10 = 1 << 17,
  122. MODE_MOUSEMANY = 1 << 18,
  123. MODE_BRCKTPASTE = 1 << 19,
  124. MODE_PRINT = 1 << 20,
  125. MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
  126. |MODE_MOUSEMANY,
  127. };
  128. enum charset {
  129. CS_GRAPHIC0,
  130. CS_GRAPHIC1,
  131. CS_UK,
  132. CS_USA,
  133. CS_MULTI,
  134. CS_GER,
  135. CS_FIN
  136. };
  137. enum escape_state {
  138. ESC_START = 1,
  139. ESC_CSI = 2,
  140. ESC_STR = 4, /* DCS, OSC, PM, APC */
  141. ESC_ALTCHARSET = 8,
  142. ESC_STR_END = 16, /* a final string was encountered */
  143. ESC_TEST = 32, /* Enter in test mode */
  144. };
  145. enum window_state {
  146. WIN_VISIBLE = 1,
  147. WIN_FOCUSED = 2
  148. };
  149. enum selection_mode {
  150. SEL_IDLE = 0,
  151. SEL_EMPTY = 1,
  152. SEL_READY = 2
  153. };
  154. enum selection_type {
  155. SEL_REGULAR = 1,
  156. SEL_RECTANGULAR = 2
  157. };
  158. enum selection_snap {
  159. SNAP_WORD = 1,
  160. SNAP_LINE = 2
  161. };
  162. typedef unsigned char uchar;
  163. typedef unsigned int uint;
  164. typedef unsigned long ulong;
  165. typedef unsigned short ushort;
  166. typedef uint_least32_t Rune;
  167. typedef XftDraw *Draw;
  168. typedef XftColor Color;
  169. typedef struct {
  170. Rune u; /* character code */
  171. ushort mode; /* attribute flags */
  172. uint32_t fg; /* foreground */
  173. uint32_t bg; /* background */
  174. } Glyph;
  175. typedef Glyph *Line;
  176. typedef struct {
  177. Glyph attr; /* current char attributes */
  178. int x;
  179. int y;
  180. char state;
  181. } TCursor;
  182. /* CSI Escape sequence structs */
  183. /* ESC '[' [[ [<priv>] <arg> [;]] <mode> [<mode>]] */
  184. typedef struct {
  185. char buf[ESC_BUF_SIZ]; /* raw string */
  186. int len; /* raw string length */
  187. char priv;
  188. int arg[ESC_ARG_SIZ];
  189. int narg; /* nb of args */
  190. char mode[2];
  191. } CSIEscape;
  192. /* STR Escape sequence structs */
  193. /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
  194. typedef struct {
  195. char type; /* ESC type ... */
  196. char buf[STR_BUF_SIZ]; /* raw string */
  197. int len; /* raw string length */
  198. char *args[STR_ARG_SIZ];
  199. int narg; /* nb of args */
  200. } STREscape;
  201. /* Internal representation of the screen */
  202. typedef struct {
  203. int row; /* nb row */
  204. int col; /* nb col */
  205. Line *line; /* screen */
  206. Line *alt; /* alternate screen */
  207. int *dirty; /* dirtyness of lines */
  208. XftGlyphFontSpec *specbuf; /* font spec buffer used for rendering */
  209. TCursor c; /* cursor */
  210. int top; /* top scroll limit */
  211. int bot; /* bottom scroll limit */
  212. int mode; /* terminal mode flags */
  213. int esc; /* escape state flags */
  214. char trantbl[4]; /* charset table translation */
  215. int charset; /* current charset */
  216. int icharset; /* selected charset for sequence */
  217. int numlock; /* lock numbers in keyboard */
  218. int *tabs;
  219. } Term;
  220. /* Purely graphic info */
  221. typedef struct {
  222. Display *dpy;
  223. Colormap cmap;
  224. Window win;
  225. Drawable buf;
  226. Atom xembed, wmdeletewin, netwmname, netwmpid;
  227. XIM xim;
  228. XIC xic;
  229. Draw draw;
  230. Visual *vis;
  231. XSetWindowAttributes attrs;
  232. int scr;
  233. int isfixed; /* is fixed geometry? */
  234. int l, t; /* left and top offset */
  235. int gm; /* geometry mask */
  236. int tw, th; /* tty width and height */
  237. int w, h; /* window width and height */
  238. int ch; /* char height */
  239. int cw; /* char width */
  240. char state; /* focus, redraw, visible */
  241. int cursor; /* cursor style */
  242. } XWindow;
  243. typedef struct {
  244. uint b;
  245. uint mask;
  246. char *s;
  247. } Mousekey;
  248. typedef struct {
  249. KeySym k;
  250. uint mask;
  251. char *s;
  252. /* three valued logic variables: 0 indifferent, 1 on, -1 off */
  253. signed char appkey; /* application keypad */
  254. signed char appcursor; /* application cursor */
  255. signed char crlf; /* crlf mode */
  256. } Key;
  257. typedef struct {
  258. int mode;
  259. int type;
  260. int snap;
  261. /*
  262. * Selection variables:
  263. * nb – normalized coordinates of the beginning of the selection
  264. * ne – normalized coordinates of the end of the selection
  265. * ob – original coordinates of the beginning of the selection
  266. * oe – original coordinates of the end of the selection
  267. */
  268. struct {
  269. int x, y;
  270. } nb, ne, ob, oe;
  271. char *primary, *clipboard;
  272. Atom xtarget;
  273. int alt;
  274. struct timespec tclick1;
  275. struct timespec tclick2;
  276. } Selection;
  277. typedef union {
  278. int i;
  279. uint ui;
  280. float f;
  281. const void *v;
  282. } Arg;
  283. typedef struct {
  284. uint mod;
  285. KeySym keysym;
  286. void (*func)(const Arg *);
  287. const Arg arg;
  288. } Shortcut;
  289. /* function definitions used in config.h */
  290. static void clipcopy(const Arg *);
  291. static void clippaste(const Arg *);
  292. static void numlock(const Arg *);
  293. static void selpaste(const Arg *);
  294. static void xzoom(const Arg *);
  295. static void xzoomabs(const Arg *);
  296. static void xzoomreset(const Arg *);
  297. static void printsel(const Arg *);
  298. static void printscreen(const Arg *) ;
  299. static void toggleprinter(const Arg *);
  300. static void sendbreak(const Arg *);
  301. /* Config.h for applying patches and the configuration. */
  302. #include "config.h"
  303. /* Font structure */
  304. typedef struct {
  305. int height;
  306. int width;
  307. int ascent;
  308. int descent;
  309. short lbearing;
  310. short rbearing;
  311. XftFont *match;
  312. FcFontSet *set;
  313. FcPattern *pattern;
  314. } Font;
  315. /* Drawing Context */
  316. typedef struct {
  317. Color col[MAX(LEN(colorname), 256)];
  318. Font font, bfont, ifont, ibfont;
  319. GC gc;
  320. } DC;
  321. static void die(const char *, ...);
  322. static void draw(void);
  323. static void redraw(void);
  324. static void drawregion(int, int, int, int);
  325. static void execsh(void);
  326. static void stty(void);
  327. static void sigchld(int);
  328. static void run(void);
  329. static void csidump(void);
  330. static void csihandle(void);
  331. static void csiparse(void);
  332. static void csireset(void);
  333. static int eschandle(uchar);
  334. static void strdump(void);
  335. static void strhandle(void);
  336. static void strparse(void);
  337. static void strreset(void);
  338. static int tattrset(int);
  339. static void tprinter(char *, size_t);
  340. static void tdumpsel(void);
  341. static void tdumpline(int);
  342. static void tdump(void);
  343. static void tclearregion(int, int, int, int);
  344. static void tcursor(int);
  345. static void tdeletechar(int);
  346. static void tdeleteline(int);
  347. static void tinsertblank(int);
  348. static void tinsertblankline(int);
  349. static int tlinelen(int);
  350. static void tmoveto(int, int);
  351. static void tmoveato(int, int);
  352. static void tnew(int, int);
  353. static void tnewline(int);
  354. static void tputtab(int);
  355. static void tputc(Rune);
  356. static void treset(void);
  357. static void tresize(int, int);
  358. static void tscrollup(int, int);
  359. static void tscrolldown(int, int);
  360. static void tsetattr(int *, int);
  361. static void tsetchar(Rune, Glyph *, int, int);
  362. static void tsetscroll(int, int);
  363. static void tswapscreen(void);
  364. static void tsetdirt(int, int);
  365. static void tsetdirtattr(int);
  366. static void tsetmode(int, int, int *, int);
  367. static void tfulldirt(void);
  368. static void techo(Rune);
  369. static void tcontrolcode(uchar );
  370. static void tdectest(char );
  371. static int32_t tdefcolor(int *, int *, int);
  372. static void tdeftran(char);
  373. static inline int match(uint, uint);
  374. static void ttynew(void);
  375. static void ttyread(void);
  376. static void ttyresize(void);
  377. static void ttysend(char *, size_t);
  378. static void ttywrite(const char *, size_t);
  379. static void tstrsequence(uchar);
  380. static inline ushort sixd_to_16bit(int);
  381. static int xmakeglyphfontspecs(XftGlyphFontSpec *, const Glyph *, int, int, int);
  382. static void xdrawglyphfontspecs(const XftGlyphFontSpec *, Glyph, int, int, int);
  383. static void xdrawglyph(Glyph, int, int);
  384. static void xhints(void);
  385. static void xclear(int, int, int, int);
  386. static void xdrawcursor(void);
  387. static void xinit(void);
  388. static void xloadcols(void);
  389. static int xsetcolorname(int, const char *);
  390. static int xgeommasktogravity(int);
  391. static int xloadfont(Font *, FcPattern *);
  392. static void xloadfonts(char *, double);
  393. static void xsettitle(char *);
  394. static void xresettitle(void);
  395. static void xsetpointermotion(int);
  396. static void xseturgency(int);
  397. static void xsetsel(char *, Time);
  398. static void xtermclear(int, int, int, int);
  399. static void xunloadfont(Font *);
  400. static void xunloadfonts(void);
  401. static void xresize(int, int);
  402. static void expose(XEvent *);
  403. static void visibility(XEvent *);
  404. static void unmap(XEvent *);
  405. static char *kmap(KeySym, uint);
  406. static void kpress(XEvent *);
  407. static void cmessage(XEvent *);
  408. static void cresize(int, int);
  409. static void resize(XEvent *);
  410. static void focus(XEvent *);
  411. static void brelease(XEvent *);
  412. static void bpress(XEvent *);
  413. static void bmotion(XEvent *);
  414. static void propnotify(XEvent *);
  415. static void selnotify(XEvent *);
  416. static void selclear(XEvent *);
  417. static void selrequest(XEvent *);
  418. static void selinit(void);
  419. static void selnormalize(void);
  420. static inline int selected(int, int);
  421. static char *getsel(void);
  422. static void selcopy(Time);
  423. static void selscroll(int, int);
  424. static void selsnap(int *, int *, int);
  425. static int x2col(int);
  426. static int y2row(int);
  427. static void getbuttoninfo(XEvent *);
  428. static void mousereport(XEvent *);
  429. static size_t utf8decode(char *, Rune *, size_t);
  430. static Rune utf8decodebyte(char, size_t *);
  431. static size_t utf8encode(Rune, char *);
  432. static char utf8encodebyte(Rune, size_t);
  433. static char *utf8strchr(char *s, Rune u);
  434. static size_t utf8validate(Rune *, size_t);
  435. static ssize_t xwrite(int, const char *, size_t);
  436. static void *xmalloc(size_t);
  437. static void *xrealloc(void *, size_t);
  438. static char *xstrdup(char *);
  439. static void usage(void);
  440. static void (*handler[LASTEvent])(XEvent *) = {
  441. [KeyPress] = kpress,
  442. [ClientMessage] = cmessage,
  443. [ConfigureNotify] = resize,
  444. [VisibilityNotify] = visibility,
  445. [UnmapNotify] = unmap,
  446. [Expose] = expose,
  447. [FocusIn] = focus,
  448. [FocusOut] = focus,
  449. [MotionNotify] = bmotion,
  450. [ButtonPress] = bpress,
  451. [ButtonRelease] = brelease,
  452. /*
  453. * Uncomment if you want the selection to disappear when you select something
  454. * different in another window.
  455. */
  456. /* [SelectionClear] = selclear, */
  457. [SelectionNotify] = selnotify,
  458. /*
  459. * PropertyNotify is only turned on when there is some INCR transfer happening
  460. * for the selection retrieval.
  461. */
  462. [PropertyNotify] = propnotify,
  463. [SelectionRequest] = selrequest,
  464. };
  465. /* Globals */
  466. static DC dc;
  467. static XWindow xw;
  468. static Term term;
  469. static CSIEscape csiescseq;
  470. static STREscape strescseq;
  471. static int cmdfd;
  472. static pid_t pid;
  473. static Selection sel;
  474. static int iofd = 1;
  475. static char **opt_cmd = NULL;
  476. static char *opt_io = NULL;
  477. static char *opt_title = NULL;
  478. static char *opt_embed = NULL;
  479. static char *opt_class = NULL;
  480. static char *opt_font = NULL;
  481. static char *opt_line = NULL;
  482. static int oldbutton = 3; /* button event on startup: 3 = release */
  483. static char *usedfont = NULL;
  484. static double usedfontsize = 0;
  485. static double defaultfontsize = 0;
  486. static uchar utfbyte[UTF_SIZ + 1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
  487. static uchar utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
  488. static Rune utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000};
  489. static Rune utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
  490. /* Font Ring Cache */
  491. enum {
  492. FRC_NORMAL,
  493. FRC_ITALIC,
  494. FRC_BOLD,
  495. FRC_ITALICBOLD
  496. };
  497. typedef struct {
  498. XftFont *font;
  499. int flags;
  500. Rune unicodep;
  501. } Fontcache;
  502. /* Fontcache is an array now. A new font will be appended to the array. */
  503. static Fontcache frc[16];
  504. static int frclen = 0;
  505. ssize_t
  506. xwrite(int fd, const char *s, size_t len)
  507. {
  508. size_t aux = len;
  509. ssize_t r;
  510. while (len > 0) {
  511. r = write(fd, s, len);
  512. if (r < 0)
  513. return r;
  514. len -= r;
  515. s += r;
  516. }
  517. return aux;
  518. }
  519. void *
  520. xmalloc(size_t len)
  521. {
  522. void *p = malloc(len);
  523. if (!p)
  524. die("Out of memory\n");
  525. return p;
  526. }
  527. void *
  528. xrealloc(void *p, size_t len)
  529. {
  530. if ((p = realloc(p, len)) == NULL)
  531. die("Out of memory\n");
  532. return p;
  533. }
  534. char *
  535. xstrdup(char *s)
  536. {
  537. if ((s = strdup(s)) == NULL)
  538. die("Out of memory\n");
  539. return s;
  540. }
  541. size_t
  542. utf8decode(char *c, Rune *u, size_t clen)
  543. {
  544. size_t i, j, len, type;
  545. Rune udecoded;
  546. *u = UTF_INVALID;
  547. if (!clen)
  548. return 0;
  549. udecoded = utf8decodebyte(c[0], &len);
  550. if (!BETWEEN(len, 1, UTF_SIZ))
  551. return 1;
  552. for (i = 1, j = 1; i < clen && j < len; ++i, ++j) {
  553. udecoded = (udecoded << 6) | utf8decodebyte(c[i], &type);
  554. if (type != 0)
  555. return j;
  556. }
  557. if (j < len)
  558. return 0;
  559. *u = udecoded;
  560. utf8validate(u, len);
  561. return len;
  562. }
  563. Rune
  564. utf8decodebyte(char c, size_t *i)
  565. {
  566. for (*i = 0; *i < LEN(utfmask); ++(*i))
  567. if (((uchar)c & utfmask[*i]) == utfbyte[*i])
  568. return (uchar)c & ~utfmask[*i];
  569. return 0;
  570. }
  571. size_t
  572. utf8encode(Rune u, char *c)
  573. {
  574. size_t len, i;
  575. len = utf8validate(&u, 0);
  576. if (len > UTF_SIZ)
  577. return 0;
  578. for (i = len - 1; i != 0; --i) {
  579. c[i] = utf8encodebyte(u, 0);
  580. u >>= 6;
  581. }
  582. c[0] = utf8encodebyte(u, len);
  583. return len;
  584. }
  585. char
  586. utf8encodebyte(Rune u, size_t i)
  587. {
  588. return utfbyte[i] | (u & ~utfmask[i]);
  589. }
  590. char *
  591. utf8strchr(char *s, Rune u)
  592. {
  593. Rune r;
  594. size_t i, j, len;
  595. len = strlen(s);
  596. for (i = 0, j = 0; i < len; i += j) {
  597. if (!(j = utf8decode(&s[i], &r, len - i)))
  598. break;
  599. if (r == u)
  600. return &(s[i]);
  601. }
  602. return NULL;
  603. }
  604. size_t
  605. utf8validate(Rune *u, size_t i)
  606. {
  607. if (!BETWEEN(*u, utfmin[i], utfmax[i]) || BETWEEN(*u, 0xD800, 0xDFFF))
  608. *u = UTF_INVALID;
  609. for (i = 1; *u > utfmax[i]; ++i)
  610. ;
  611. return i;
  612. }
  613. void
  614. selinit(void)
  615. {
  616. clock_gettime(CLOCK_MONOTONIC, &sel.tclick1);
  617. clock_gettime(CLOCK_MONOTONIC, &sel.tclick2);
  618. sel.mode = SEL_IDLE;
  619. sel.snap = 0;
  620. sel.ob.x = -1;
  621. sel.primary = NULL;
  622. sel.clipboard = NULL;
  623. sel.xtarget = XInternAtom(xw.dpy, "UTF8_STRING", 0);
  624. if (sel.xtarget == None)
  625. sel.xtarget = XA_STRING;
  626. }
  627. int
  628. x2col(int x)
  629. {
  630. x -= borderpx;
  631. x /= xw.cw;
  632. return LIMIT(x, 0, term.col-1);
  633. }
  634. int
  635. y2row(int y)
  636. {
  637. y -= borderpx;
  638. y /= xw.ch;
  639. return LIMIT(y, 0, term.row-1);
  640. }
  641. int
  642. tlinelen(int y)
  643. {
  644. int i = term.col;
  645. if (term.line[y][i - 1].mode & ATTR_WRAP)
  646. return i;
  647. while (i > 0 && term.line[y][i - 1].u == ' ')
  648. --i;
  649. return i;
  650. }
  651. void
  652. selnormalize(void)
  653. {
  654. int i;
  655. if (sel.type == SEL_REGULAR && sel.ob.y != sel.oe.y) {
  656. sel.nb.x = sel.ob.y < sel.oe.y ? sel.ob.x : sel.oe.x;
  657. sel.ne.x = sel.ob.y < sel.oe.y ? sel.oe.x : sel.ob.x;
  658. } else {
  659. sel.nb.x = MIN(sel.ob.x, sel.oe.x);
  660. sel.ne.x = MAX(sel.ob.x, sel.oe.x);
  661. }
  662. sel.nb.y = MIN(sel.ob.y, sel.oe.y);
  663. sel.ne.y = MAX(sel.ob.y, sel.oe.y);
  664. selsnap(&sel.nb.x, &sel.nb.y, -1);
  665. selsnap(&sel.ne.x, &sel.ne.y, +1);
  666. /* expand selection over line breaks */
  667. if (sel.type == SEL_RECTANGULAR)
  668. return;
  669. i = tlinelen(sel.nb.y);
  670. if (i < sel.nb.x)
  671. sel.nb.x = i;
  672. if (tlinelen(sel.ne.y) <= sel.ne.x)
  673. sel.ne.x = term.col - 1;
  674. }
  675. int
  676. selected(int x, int y)
  677. {
  678. if (sel.mode == SEL_EMPTY)
  679. return 0;
  680. if (sel.type == SEL_RECTANGULAR)
  681. return BETWEEN(y, sel.nb.y, sel.ne.y)
  682. && BETWEEN(x, sel.nb.x, sel.ne.x);
  683. return BETWEEN(y, sel.nb.y, sel.ne.y)
  684. && (y != sel.nb.y || x >= sel.nb.x)
  685. && (y != sel.ne.y || x <= sel.ne.x);
  686. }
  687. void
  688. selsnap(int *x, int *y, int direction)
  689. {
  690. int newx, newy, xt, yt;
  691. int delim, prevdelim;
  692. Glyph *gp, *prevgp;
  693. switch (sel.snap) {
  694. case SNAP_WORD:
  695. /*
  696. * Snap around if the word wraps around at the end or
  697. * beginning of a line.
  698. */
  699. prevgp = &term.line[*y][*x];
  700. prevdelim = ISDELIM(prevgp->u);
  701. for (;;) {
  702. newx = *x + direction;
  703. newy = *y;
  704. if (!BETWEEN(newx, 0, term.col - 1)) {
  705. newy += direction;
  706. newx = (newx + term.col) % term.col;
  707. if (!BETWEEN(newy, 0, term.row - 1))
  708. break;
  709. if (direction > 0)
  710. yt = *y, xt = *x;
  711. else
  712. yt = newy, xt = newx;
  713. if (!(term.line[yt][xt].mode & ATTR_WRAP))
  714. break;
  715. }
  716. if (newx >= tlinelen(newy))
  717. break;
  718. gp = &term.line[newy][newx];
  719. delim = ISDELIM(gp->u);
  720. if (!(gp->mode & ATTR_WDUMMY) && (delim != prevdelim
  721. || (delim && gp->u != prevgp->u)))
  722. break;
  723. *x = newx;
  724. *y = newy;
  725. prevgp = gp;
  726. prevdelim = delim;
  727. }
  728. break;
  729. case SNAP_LINE:
  730. /*
  731. * Snap around if the the previous line or the current one
  732. * has set ATTR_WRAP at its end. Then the whole next or
  733. * previous line will be selected.
  734. */
  735. *x = (direction < 0) ? 0 : term.col - 1;
  736. if (direction < 0) {
  737. for (; *y > 0; *y += direction) {
  738. if (!(term.line[*y-1][term.col-1].mode
  739. & ATTR_WRAP)) {
  740. break;
  741. }
  742. }
  743. } else if (direction > 0) {
  744. for (; *y < term.row-1; *y += direction) {
  745. if (!(term.line[*y][term.col-1].mode
  746. & ATTR_WRAP)) {
  747. break;
  748. }
  749. }
  750. }
  751. break;
  752. }
  753. }
  754. void
  755. getbuttoninfo(XEvent *e)
  756. {
  757. int type;
  758. uint state = e->xbutton.state & ~(Button1Mask | forceselmod);
  759. sel.alt = IS_SET(MODE_ALTSCREEN);
  760. sel.oe.x = x2col(e->xbutton.x);
  761. sel.oe.y = y2row(e->xbutton.y);
  762. selnormalize();
  763. sel.type = SEL_REGULAR;
  764. for (type = 1; type < LEN(selmasks); ++type) {
  765. if (match(selmasks[type], state)) {
  766. sel.type = type;
  767. break;
  768. }
  769. }
  770. }
  771. void
  772. mousereport(XEvent *e)
  773. {
  774. int x = x2col(e->xbutton.x), y = y2row(e->xbutton.y),
  775. button = e->xbutton.button, state = e->xbutton.state,
  776. len;
  777. char buf[40];
  778. static int ox, oy;
  779. /* from urxvt */
  780. if (e->xbutton.type == MotionNotify) {
  781. if (x == ox && y == oy)
  782. return;
  783. if (!IS_SET(MODE_MOUSEMOTION) && !IS_SET(MODE_MOUSEMANY))
  784. return;
  785. /* MOUSE_MOTION: no reporting if no button is pressed */
  786. if (IS_SET(MODE_MOUSEMOTION) && oldbutton == 3)
  787. return;
  788. button = oldbutton + 32;
  789. ox = x;
  790. oy = y;
  791. } else {
  792. if (!IS_SET(MODE_MOUSESGR) && e->xbutton.type == ButtonRelease) {
  793. button = 3;
  794. } else {
  795. button -= Button1;
  796. if (button >= 3)
  797. button += 64 - 3;
  798. }
  799. if (e->xbutton.type == ButtonPress) {
  800. oldbutton = button;
  801. ox = x;
  802. oy = y;
  803. } else if (e->xbutton.type == ButtonRelease) {
  804. oldbutton = 3;
  805. /* MODE_MOUSEX10: no button release reporting */
  806. if (IS_SET(MODE_MOUSEX10))
  807. return;
  808. if (button == 64 || button == 65)
  809. return;
  810. }
  811. }
  812. if (!IS_SET(MODE_MOUSEX10)) {
  813. button += ((state & ShiftMask ) ? 4 : 0)
  814. + ((state & Mod4Mask ) ? 8 : 0)
  815. + ((state & ControlMask) ? 16 : 0);
  816. }
  817. if (IS_SET(MODE_MOUSESGR)) {
  818. len = snprintf(buf, sizeof(buf), "\033[<%d;%d;%d%c",
  819. button, x+1, y+1,
  820. e->xbutton.type == ButtonRelease ? 'm' : 'M');
  821. } else if (x < 223 && y < 223) {
  822. len = snprintf(buf, sizeof(buf), "\033[M%c%c%c",
  823. 32+button, 32+x+1, 32+y+1);
  824. } else {
  825. return;
  826. }
  827. ttywrite(buf, len);
  828. }
  829. void
  830. bpress(XEvent *e)
  831. {
  832. struct timespec now;
  833. Mousekey *mk;
  834. if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
  835. mousereport(e);
  836. return;
  837. }
  838. for (mk = mshortcuts; mk < mshortcuts + LEN(mshortcuts); mk++) {
  839. if (e->xbutton.button == mk->b
  840. && match(mk->mask, e->xbutton.state)) {
  841. ttysend(mk->s, strlen(mk->s));
  842. return;
  843. }
  844. }
  845. if (e->xbutton.button == Button1) {
  846. clock_gettime(CLOCK_MONOTONIC, &now);
  847. /* Clear previous selection, logically and visually. */
  848. selclear(NULL);
  849. sel.mode = SEL_EMPTY;
  850. sel.type = SEL_REGULAR;
  851. sel.oe.x = sel.ob.x = x2col(e->xbutton.x);
  852. sel.oe.y = sel.ob.y = y2row(e->xbutton.y);
  853. /*
  854. * If the user clicks below predefined timeouts specific
  855. * snapping behaviour is exposed.
  856. */
  857. if (TIMEDIFF(now, sel.tclick2) <= tripleclicktimeout) {
  858. sel.snap = SNAP_LINE;
  859. } else if (TIMEDIFF(now, sel.tclick1) <= doubleclicktimeout) {
  860. sel.snap = SNAP_WORD;
  861. } else {
  862. sel.snap = 0;
  863. }
  864. selnormalize();
  865. if (sel.snap != 0)
  866. sel.mode = SEL_READY;
  867. tsetdirt(sel.nb.y, sel.ne.y);
  868. sel.tclick2 = sel.tclick1;
  869. sel.tclick1 = now;
  870. }
  871. }
  872. char *
  873. getsel(void)
  874. {
  875. char *str, *ptr;
  876. int y, bufsize, lastx, linelen;
  877. Glyph *gp, *last;
  878. if (sel.ob.x == -1)
  879. return NULL;
  880. bufsize = (term.col+1) * (sel.ne.y-sel.nb.y+1) * UTF_SIZ;
  881. ptr = str = xmalloc(bufsize);
  882. /* append every set & selected glyph to the selection */
  883. for (y = sel.nb.y; y <= sel.ne.y; y++) {
  884. if ((linelen = tlinelen(y)) == 0) {
  885. *ptr++ = '\n';
  886. continue;
  887. }
  888. if (sel.type == SEL_RECTANGULAR) {
  889. gp = &term.line[y][sel.nb.x];
  890. lastx = sel.ne.x;
  891. } else {
  892. gp = &term.line[y][sel.nb.y == y ? sel.nb.x : 0];
  893. lastx = (sel.ne.y == y) ? sel.ne.x : term.col-1;
  894. }
  895. last = &term.line[y][MIN(lastx, linelen-1)];
  896. while (last >= gp && last->u == ' ')
  897. --last;
  898. for ( ; gp <= last; ++gp) {
  899. if (gp->mode & ATTR_WDUMMY)
  900. continue;
  901. ptr += utf8encode(gp->u, ptr);
  902. }
  903. /*
  904. * Copy and pasting of line endings is inconsistent
  905. * in the inconsistent terminal and GUI world.
  906. * The best solution seems like to produce '\n' when
  907. * something is copied from st and convert '\n' to
  908. * '\r', when something to be pasted is received by
  909. * st.
  910. * FIXME: Fix the computer world.
  911. */
  912. if ((y < sel.ne.y || lastx >= linelen) && !(last->mode & ATTR_WRAP))
  913. *ptr++ = '\n';
  914. }
  915. *ptr = 0;
  916. return str;
  917. }
  918. void
  919. selcopy(Time t)
  920. {
  921. xsetsel(getsel(), t);
  922. }
  923. void
  924. propnotify(XEvent *e)
  925. {
  926. XPropertyEvent *xpev;
  927. Atom clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  928. xpev = &e->xproperty;
  929. if (xpev->state == PropertyNewValue &&
  930. (xpev->atom == XA_PRIMARY ||
  931. xpev->atom == clipboard)) {
  932. selnotify(e);
  933. }
  934. }
  935. void
  936. selnotify(XEvent *e)
  937. {
  938. ulong nitems, ofs, rem;
  939. int format;
  940. uchar *data, *last, *repl;
  941. Atom type, incratom, property;
  942. incratom = XInternAtom(xw.dpy, "INCR", 0);
  943. ofs = 0;
  944. if (e->type == SelectionNotify) {
  945. property = e->xselection.property;
  946. } else if(e->type == PropertyNotify) {
  947. property = e->xproperty.atom;
  948. } else {
  949. return;
  950. }
  951. if (property == None)
  952. return;
  953. do {
  954. if (XGetWindowProperty(xw.dpy, xw.win, property, ofs,
  955. BUFSIZ/4, False, AnyPropertyType,
  956. &type, &format, &nitems, &rem,
  957. &data)) {
  958. fprintf(stderr, "Clipboard allocation failed\n");
  959. return;
  960. }
  961. if (e->type == PropertyNotify && nitems == 0 && rem == 0) {
  962. /*
  963. * If there is some PropertyNotify with no data, then
  964. * this is the signal of the selection owner that all
  965. * data has been transferred. We won't need to receive
  966. * PropertyNotify events anymore.
  967. */
  968. MODBIT(xw.attrs.event_mask, 0, PropertyChangeMask);
  969. XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask,
  970. &xw.attrs);
  971. }
  972. if (type == incratom) {
  973. /*
  974. * Activate the PropertyNotify events so we receive
  975. * when the selection owner does send us the next
  976. * chunk of data.
  977. */
  978. MODBIT(xw.attrs.event_mask, 1, PropertyChangeMask);
  979. XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask,
  980. &xw.attrs);
  981. /*
  982. * Deleting the property is the transfer start signal.
  983. */
  984. XDeleteProperty(xw.dpy, xw.win, (int)property);
  985. continue;
  986. }
  987. /*
  988. * As seen in getsel:
  989. * Line endings are inconsistent in the terminal and GUI world
  990. * copy and pasting. When receiving some selection data,
  991. * replace all '\n' with '\r'.
  992. * FIXME: Fix the computer world.
  993. */
  994. repl = data;
  995. last = data + nitems * format / 8;
  996. while ((repl = memchr(repl, '\n', last - repl))) {
  997. *repl++ = '\r';
  998. }
  999. if (IS_SET(MODE_BRCKTPASTE) && ofs == 0)
  1000. ttywrite("\033[200~", 6);
  1001. ttysend((char *)data, nitems * format / 8);
  1002. if (IS_SET(MODE_BRCKTPASTE) && rem == 0)
  1003. ttywrite("\033[201~", 6);
  1004. XFree(data);
  1005. /* number of 32-bit chunks returned */
  1006. ofs += nitems * format / 32;
  1007. } while (rem > 0);
  1008. /*
  1009. * Deleting the property again tells the selection owner to send the
  1010. * next data chunk in the property.
  1011. */
  1012. if (e->type == PropertyNotify)
  1013. XDeleteProperty(xw.dpy, xw.win, (int)property);
  1014. }
  1015. void
  1016. selpaste(const Arg *dummy)
  1017. {
  1018. XConvertSelection(xw.dpy, XA_PRIMARY, sel.xtarget, XA_PRIMARY,
  1019. xw.win, CurrentTime);
  1020. }
  1021. void
  1022. clipcopy(const Arg *dummy)
  1023. {
  1024. Atom clipboard;
  1025. if (sel.clipboard != NULL)
  1026. free(sel.clipboard);
  1027. if (sel.primary != NULL) {
  1028. sel.clipboard = xstrdup(sel.primary);
  1029. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  1030. XSetSelectionOwner(xw.dpy, clipboard, xw.win, CurrentTime);
  1031. }
  1032. }
  1033. void
  1034. clippaste(const Arg *dummy)
  1035. {
  1036. Atom clipboard;
  1037. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  1038. XConvertSelection(xw.dpy, clipboard, sel.xtarget, clipboard,
  1039. xw.win, CurrentTime);
  1040. }
  1041. void
  1042. selclear(XEvent *e)
  1043. {
  1044. if (sel.ob.x == -1)
  1045. return;
  1046. sel.mode = SEL_IDLE;
  1047. sel.ob.x = -1;
  1048. tsetdirt(sel.nb.y, sel.ne.y);
  1049. }
  1050. void
  1051. selrequest(XEvent *e)
  1052. {
  1053. XSelectionRequestEvent *xsre;
  1054. XSelectionEvent xev;
  1055. Atom xa_targets, string, clipboard;
  1056. char *seltext;
  1057. xsre = (XSelectionRequestEvent *) e;
  1058. xev.type = SelectionNotify;
  1059. xev.requestor = xsre->requestor;
  1060. xev.selection = xsre->selection;
  1061. xev.target = xsre->target;
  1062. xev.time = xsre->time;
  1063. if (xsre->property == None)
  1064. xsre->property = xsre->target;
  1065. /* reject */
  1066. xev.property = None;
  1067. xa_targets = XInternAtom(xw.dpy, "TARGETS", 0);
  1068. if (xsre->target == xa_targets) {
  1069. /* respond with the supported type */
  1070. string = sel.xtarget;
  1071. XChangeProperty(xsre->display, xsre->requestor, xsre->property,
  1072. XA_ATOM, 32, PropModeReplace,
  1073. (uchar *) &string, 1);
  1074. xev.property = xsre->property;
  1075. } else if (xsre->target == sel.xtarget || xsre->target == XA_STRING) {
  1076. /*
  1077. * xith XA_STRING non ascii characters may be incorrect in the
  1078. * requestor. It is not our problem, use utf8.
  1079. */
  1080. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  1081. if (xsre->selection == XA_PRIMARY) {
  1082. seltext = sel.primary;
  1083. } else if (xsre->selection == clipboard) {
  1084. seltext = sel.clipboard;
  1085. } else {
  1086. fprintf(stderr,
  1087. "Unhandled clipboard selection 0x%lx\n",
  1088. xsre->selection);
  1089. return;
  1090. }
  1091. if (seltext != NULL) {
  1092. XChangeProperty(xsre->display, xsre->requestor,
  1093. xsre->property, xsre->target,
  1094. 8, PropModeReplace,
  1095. (uchar *)seltext, strlen(seltext));
  1096. xev.property = xsre->property;
  1097. }
  1098. }
  1099. /* all done, send a notification to the listener */
  1100. if (!XSendEvent(xsre->display, xsre->requestor, 1, 0, (XEvent *) &xev))
  1101. fprintf(stderr, "Error sending SelectionNotify event\n");
  1102. }
  1103. void
  1104. xsetsel(char *str, Time t)
  1105. {
  1106. free(sel.primary);
  1107. sel.primary = str;
  1108. XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
  1109. if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
  1110. selclear(0);
  1111. }
  1112. void
  1113. brelease(XEvent *e)
  1114. {
  1115. if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
  1116. mousereport(e);
  1117. return;
  1118. }
  1119. if (e->xbutton.button == Button2) {
  1120. selpaste(NULL);
  1121. } else if (e->xbutton.button == Button1) {
  1122. if (sel.mode == SEL_READY) {
  1123. getbuttoninfo(e);
  1124. selcopy(e->xbutton.time);
  1125. } else
  1126. selclear(NULL);
  1127. sel.mode = SEL_IDLE;
  1128. tsetdirt(sel.nb.y, sel.ne.y);
  1129. }
  1130. }
  1131. void
  1132. bmotion(XEvent *e)
  1133. {
  1134. int oldey, oldex, oldsby, oldsey;
  1135. if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
  1136. mousereport(e);
  1137. return;
  1138. }
  1139. if (!sel.mode)
  1140. return;
  1141. sel.mode = SEL_READY;
  1142. oldey = sel.oe.y;
  1143. oldex = sel.oe.x;
  1144. oldsby = sel.nb.y;
  1145. oldsey = sel.ne.y;
  1146. getbuttoninfo(e);
  1147. if (oldey != sel.oe.y || oldex != sel.oe.x)
  1148. tsetdirt(MIN(sel.nb.y, oldsby), MAX(sel.ne.y, oldsey));
  1149. }
  1150. void
  1151. die(const char *errstr, ...)
  1152. {
  1153. va_list ap;
  1154. va_start(ap, errstr);
  1155. vfprintf(stderr, errstr, ap);
  1156. va_end(ap);
  1157. exit(1);
  1158. }
  1159. void
  1160. execsh(void)
  1161. {
  1162. char **args, *sh, *prog;
  1163. const struct passwd *pw;
  1164. char buf[sizeof(long) * 8 + 1];
  1165. errno = 0;
  1166. if ((pw = getpwuid(getuid())) == NULL) {
  1167. if (errno)
  1168. die("getpwuid:%s\n", strerror(errno));
  1169. else
  1170. die("who are you?\n");
  1171. }
  1172. if ((sh = getenv("SHELL")) == NULL)
  1173. sh = (pw->pw_shell[0]) ? pw->pw_shell : shell;
  1174. if (opt_cmd)
  1175. prog = opt_cmd[0];
  1176. else if (utmp)
  1177. prog = utmp;
  1178. else
  1179. prog = sh;
  1180. args = (opt_cmd) ? opt_cmd : (char *[]) {prog, NULL};
  1181. snprintf(buf, sizeof(buf), "%lu", xw.win);
  1182. unsetenv("COLUMNS");
  1183. unsetenv("LINES");
  1184. unsetenv("TERMCAP");
  1185. setenv("LOGNAME", pw->pw_name, 1);
  1186. setenv("USER", pw->pw_name, 1);
  1187. setenv("SHELL", sh, 1);
  1188. setenv("HOME", pw->pw_dir, 1);
  1189. setenv("TERM", termname, 1);
  1190. setenv("WINDOWID", buf, 1);
  1191. signal(SIGCHLD, SIG_DFL);
  1192. signal(SIGHUP, SIG_DFL);
  1193. signal(SIGINT, SIG_DFL);
  1194. signal(SIGQUIT, SIG_DFL);
  1195. signal(SIGTERM, SIG_DFL);
  1196. signal(SIGALRM, SIG_DFL);
  1197. execvp(prog, args);
  1198. _exit(1);
  1199. }
  1200. void
  1201. sigchld(int a)
  1202. {
  1203. int stat;
  1204. pid_t p;
  1205. if ((p = waitpid(pid, &stat, WNOHANG)) < 0)
  1206. die("Waiting for pid %hd failed: %s\n", pid, strerror(errno));
  1207. if (pid != p)
  1208. return;
  1209. if (!WIFEXITED(stat) || WEXITSTATUS(stat))
  1210. die("child finished with error '%d'\n", stat);
  1211. exit(0);
  1212. }
  1213. void
  1214. stty(void)
  1215. {
  1216. char cmd[_POSIX_ARG_MAX], **p, *q, *s;
  1217. size_t n, siz;
  1218. if ((n = strlen(stty_args)) > sizeof(cmd)-1)
  1219. die("incorrect stty parameters\n");
  1220. memcpy(cmd, stty_args, n);
  1221. q = cmd + n;
  1222. siz = sizeof(cmd) - n;
  1223. for (p = opt_cmd; p && (s = *p); ++p) {
  1224. if ((n = strlen(s)) > siz-1)
  1225. die("stty parameter length too long\n");
  1226. *q++ = ' ';
  1227. q = memcpy(q, s, n);
  1228. q += n;
  1229. siz-= n + 1;
  1230. }
  1231. *q = '\0';
  1232. if (system(cmd) != 0)
  1233. perror("Couldn't call stty");
  1234. }
  1235. void
  1236. ttynew(void)
  1237. {
  1238. int m, s;
  1239. struct winsize w = {term.row, term.col, 0, 0};
  1240. if (opt_io) {
  1241. term.mode |= MODE_PRINT;
  1242. iofd = (!strcmp(opt_io, "-")) ?
  1243. 1 : open(opt_io, O_WRONLY | O_CREAT, 0666);
  1244. if (iofd < 0) {
  1245. fprintf(stderr, "Error opening %s:%s\n",
  1246. opt_io, strerror(errno));
  1247. }
  1248. }
  1249. if (opt_line) {
  1250. if ((cmdfd = open(opt_line, O_RDWR)) < 0)
  1251. die("open line failed: %s\n", strerror(errno));
  1252. dup2(cmdfd, 0);
  1253. stty();
  1254. return;
  1255. }
  1256. /* seems to work fine on linux, openbsd and freebsd */
  1257. if (openpty(&m, &s, NULL, NULL, &w) < 0)
  1258. die("openpty failed: %s\n", strerror(errno));
  1259. switch (pid = fork()) {
  1260. case -1:
  1261. die("fork failed\n");
  1262. break;
  1263. case 0:
  1264. close(iofd);
  1265. setsid(); /* create a new process group */
  1266. dup2(s, 0);
  1267. dup2(s, 1);
  1268. dup2(s, 2);
  1269. if (ioctl(s, TIOCSCTTY, NULL) < 0)
  1270. die("ioctl TIOCSCTTY failed: %s\n", strerror(errno));
  1271. close(s);
  1272. close(m);
  1273. execsh();
  1274. break;
  1275. default:
  1276. close(s);
  1277. cmdfd = m;
  1278. signal(SIGCHLD, sigchld);
  1279. break;
  1280. }
  1281. }
  1282. void
  1283. ttyread(void)
  1284. {
  1285. static char buf[BUFSIZ];
  1286. static int buflen = 0;
  1287. char *ptr;
  1288. int charsize; /* size of utf8 char in bytes */
  1289. Rune unicodep;
  1290. int ret;
  1291. /* append read bytes to unprocessed bytes */
  1292. if ((ret = read(cmdfd, buf+buflen, LEN(buf)-buflen)) < 0)
  1293. die("Couldn't read from shell: %s\n", strerror(errno));
  1294. /* process every complete utf8 char */
  1295. buflen += ret;
  1296. ptr = buf;
  1297. while ((charsize = utf8decode(ptr, &unicodep, buflen))) {
  1298. tputc(unicodep);
  1299. ptr += charsize;
  1300. buflen -= charsize;
  1301. }
  1302. /* keep any uncomplete utf8 char for the next call */
  1303. memmove(buf, ptr, buflen);
  1304. }
  1305. void
  1306. ttywrite(const char *s, size_t n)
  1307. {
  1308. fd_set wfd;
  1309. struct timespec tv;
  1310. ssize_t r;
  1311. /*
  1312. * Remember that we are using a pty, which might be a modem line.
  1313. * Writing too much will clog the line. That's why we are doing this
  1314. * dance.
  1315. * FIXME: Migrate the world to Plan 9.
  1316. */
  1317. while (n > 0) {
  1318. FD_ZERO(&wfd);
  1319. FD_SET(cmdfd, &wfd);
  1320. tv.tv_sec = 0;
  1321. tv.tv_nsec = 0;
  1322. /* Check if we can write. */
  1323. if (pselect(cmdfd+1, NULL, &wfd, NULL, &tv, NULL) < 0) {
  1324. if (errno == EINTR)
  1325. continue;
  1326. die("select failed: %s\n", strerror(errno));
  1327. }
  1328. if(!FD_ISSET(cmdfd, &wfd)) {
  1329. /* No, then free some buffer space. */
  1330. ttyread();
  1331. } else {
  1332. /*
  1333. * Only write 256 bytes at maximum. This seems to be a
  1334. * reasonable value for a serial line. Bigger values
  1335. * might clog the I/O.
  1336. */
  1337. r = write(cmdfd, s, (n < 256)? n : 256);
  1338. if (r < 0) {
  1339. die("write error on tty: %s\n",
  1340. strerror(errno));
  1341. }
  1342. if (r < n) {
  1343. /*
  1344. * We weren't able to write out everything.
  1345. * This means the buffer is getting full
  1346. * again. Empty it.
  1347. */
  1348. if (n < 256)
  1349. ttyread();
  1350. n -= r;
  1351. s += r;
  1352. } else {
  1353. /* All bytes have been written. */
  1354. break;
  1355. }
  1356. }
  1357. }
  1358. }
  1359. void
  1360. ttysend(char *s, size_t n)
  1361. {
  1362. int len;
  1363. Rune u;
  1364. ttywrite(s, n);
  1365. if (IS_SET(MODE_ECHO))
  1366. while ((len = utf8decode(s, &u, n)) > 0) {
  1367. techo(u);
  1368. n -= len;
  1369. s += len;
  1370. }
  1371. }
  1372. void
  1373. ttyresize(void)
  1374. {
  1375. struct winsize w;
  1376. w.ws_row = term.row;
  1377. w.ws_col = term.col;
  1378. w.ws_xpixel = xw.tw;
  1379. w.ws_ypixel = xw.th;
  1380. if (ioctl(cmdfd, TIOCSWINSZ, &w) < 0)
  1381. fprintf(stderr, "Couldn't set window size: %s\n", strerror(errno));
  1382. }
  1383. int
  1384. tattrset(int attr)
  1385. {
  1386. int i, j;
  1387. for (i = 0; i < term.row-1; i++) {
  1388. for (j = 0; j < term.col-1; j++) {
  1389. if (term.line[i][j].mode & attr)
  1390. return 1;
  1391. }
  1392. }
  1393. return 0;
  1394. }
  1395. void
  1396. tsetdirt(int top, int bot)
  1397. {
  1398. int i;
  1399. LIMIT(top, 0, term.row-1);
  1400. LIMIT(bot, 0, term.row-1);
  1401. for (i = top; i <= bot; i++)
  1402. term.dirty[i] = 1;
  1403. }
  1404. void
  1405. tsetdirtattr(int attr)
  1406. {
  1407. int i, j;
  1408. for (i = 0; i < term.row-1; i++) {
  1409. for (j = 0; j < term.col-1; j++) {
  1410. if (term.line[i][j].mode & attr) {
  1411. tsetdirt(i, i);
  1412. break;
  1413. }
  1414. }
  1415. }
  1416. }
  1417. void
  1418. tfulldirt(void)
  1419. {
  1420. tsetdirt(0, term.row-1);
  1421. }
  1422. void
  1423. tcursor(int mode)
  1424. {
  1425. static TCursor c[2];
  1426. int alt = IS_SET(MODE_ALTSCREEN);
  1427. if (mode == CURSOR_SAVE) {
  1428. c[alt] = term.c;
  1429. } else if (mode == CURSOR_LOAD) {
  1430. term.c = c[alt];
  1431. tmoveto(c[alt].x, c[alt].y);
  1432. }
  1433. }
  1434. void
  1435. treset(void)
  1436. {
  1437. uint i;
  1438. term.c = (TCursor){{
  1439. .mode = ATTR_NULL,
  1440. .fg = defaultfg,
  1441. .bg = defaultbg
  1442. }, .x = 0, .y = 0, .state = CURSOR_DEFAULT};
  1443. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  1444. for (i = tabspaces; i < term.col; i += tabspaces)
  1445. term.tabs[i] = 1;
  1446. term.top = 0;
  1447. term.bot = term.row - 1;
  1448. term.mode = MODE_WRAP;
  1449. memset(term.trantbl, CS_USA, sizeof(term.trantbl));
  1450. term.charset = 0;
  1451. for (i = 0; i < 2; i++) {
  1452. tmoveto(0, 0);
  1453. tcursor(CURSOR_SAVE);
  1454. tclearregion(0, 0, term.col-1, term.row-1);
  1455. tswapscreen();
  1456. }
  1457. }
  1458. void
  1459. tnew(int col, int row)
  1460. {
  1461. term = (Term){ .c = { .attr = { .fg = defaultfg, .bg = defaultbg } } };
  1462. tresize(col, row);
  1463. term.numlock = 1;
  1464. treset();
  1465. }
  1466. void
  1467. tswapscreen(void)
  1468. {
  1469. Line *tmp = term.line;
  1470. term.line = term.alt;
  1471. term.alt = tmp;
  1472. term.mode ^= MODE_ALTSCREEN;
  1473. tfulldirt();
  1474. }
  1475. void
  1476. tscrolldown(int orig, int n)
  1477. {
  1478. int i;
  1479. Line temp;
  1480. LIMIT(n, 0, term.bot-orig+1);
  1481. tsetdirt(orig, term.bot-n);
  1482. tclearregion(0, term.bot-n+1, term.col-1, term.bot);
  1483. for (i = term.bot; i >= orig+n; i--) {
  1484. temp = term.line[i];
  1485. term.line[i] = term.line[i-n];
  1486. term.line[i-n] = temp;
  1487. }
  1488. selscroll(orig, n);
  1489. }
  1490. void
  1491. tscrollup(int orig, int n)
  1492. {
  1493. int i;
  1494. Line temp;
  1495. LIMIT(n, 0, term.bot-orig+1);
  1496. tclearregion(0, orig, term.col-1, orig+n-1);
  1497. tsetdirt(orig+n, term.bot);
  1498. for (i = orig; i <= term.bot-n; i++) {
  1499. temp = term.line[i];
  1500. term.line[i] = term.line[i+n];
  1501. term.line[i+n] = temp;
  1502. }
  1503. selscroll(orig, -n);
  1504. }
  1505. void
  1506. selscroll(int orig, int n)
  1507. {
  1508. if (sel.ob.x == -1)
  1509. return;
  1510. if (BETWEEN(sel.ob.y, orig, term.bot) || BETWEEN(sel.oe.y, orig, term.bot)) {
  1511. if ((sel.ob.y += n) > term.bot || (sel.oe.y += n) < term.top) {
  1512. selclear(NULL);
  1513. return;
  1514. }
  1515. if (sel.type == SEL_RECTANGULAR) {
  1516. if (sel.ob.y < term.top)
  1517. sel.ob.y = term.top;
  1518. if (sel.oe.y > term.bot)
  1519. sel.oe.y = term.bot;
  1520. } else {
  1521. if (sel.ob.y < term.top) {
  1522. sel.ob.y = term.top;
  1523. sel.ob.x = 0;
  1524. }
  1525. if (sel.oe.y > term.bot) {
  1526. sel.oe.y = term.bot;
  1527. sel.oe.x = term.col;
  1528. }
  1529. }
  1530. selnormalize();
  1531. }
  1532. }
  1533. void
  1534. tnewline(int first_col)
  1535. {
  1536. int y = term.c.y;
  1537. if (y == term.bot) {
  1538. tscrollup(term.top, 1);
  1539. } else {
  1540. y++;
  1541. }
  1542. tmoveto(first_col ? 0 : term.c.x, y);
  1543. }
  1544. void
  1545. csiparse(void)
  1546. {
  1547. char *p = csiescseq.buf, *np;
  1548. long int v;
  1549. csiescseq.narg = 0;
  1550. if (*p == '?') {
  1551. csiescseq.priv = 1;
  1552. p++;
  1553. }
  1554. csiescseq.buf[csiescseq.len] = '\0';
  1555. while (p < csiescseq.buf+csiescseq.len) {
  1556. np = NULL;
  1557. v = strtol(p, &np, 10);
  1558. if (np == p)
  1559. v = 0;
  1560. if (v == LONG_MAX || v == LONG_MIN)
  1561. v = -1;
  1562. csiescseq.arg[csiescseq.narg++] = v;
  1563. p = np;
  1564. if (*p != ';' || csiescseq.narg == ESC_ARG_SIZ)
  1565. break;
  1566. p++;
  1567. }
  1568. csiescseq.mode[0] = *p++;
  1569. csiescseq.mode[1] = (p < csiescseq.buf+csiescseq.len) ? *p : '\0';
  1570. }
  1571. /* for absolute user moves, when decom is set */
  1572. void
  1573. tmoveato(int x, int y)
  1574. {
  1575. tmoveto(x, y + ((term.c.state & CURSOR_ORIGIN) ? term.top: 0));
  1576. }
  1577. void
  1578. tmoveto(int x, int y)
  1579. {
  1580. int miny, maxy;
  1581. if (term.c.state & CURSOR_ORIGIN) {
  1582. miny = term.top;
  1583. maxy = term.bot;
  1584. } else {
  1585. miny = 0;
  1586. maxy = term.row - 1;
  1587. }
  1588. term.c.state &= ~CURSOR_WRAPNEXT;
  1589. term.c.x = LIMIT(x, 0, term.col-1);
  1590. term.c.y = LIMIT(y, miny, maxy);
  1591. }
  1592. void
  1593. tsetchar(Rune u, Glyph *attr, int x, int y)
  1594. {
  1595. static char *vt100_0[62] = { /* 0x41 - 0x7e */
  1596. "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
  1597. 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
  1598. 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
  1599. 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
  1600. "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
  1601. "␤", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
  1602. "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
  1603. "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
  1604. };
  1605. /*
  1606. * The table is proudly stolen from rxvt.
  1607. */
  1608. if (term.trantbl[term.charset] == CS_GRAPHIC0 &&
  1609. BETWEEN(u, 0x41, 0x7e) && vt100_0[u - 0x41])
  1610. utf8decode(vt100_0[u - 0x41], &u, UTF_SIZ);
  1611. if (term.line[y][x].mode & ATTR_WIDE) {
  1612. if (x+1 < term.col) {
  1613. term.line[y][x+1].u = ' ';
  1614. term.line[y][x+1].mode &= ~ATTR_WDUMMY;
  1615. }
  1616. } else if (term.line[y][x].mode & ATTR_WDUMMY) {
  1617. term.line[y][x-1].u = ' ';
  1618. term.line[y][x-1].mode &= ~ATTR_WIDE;
  1619. }
  1620. term.dirty[y] = 1;
  1621. term.line[y][x] = *attr;
  1622. term.line[y][x].u = u;
  1623. }
  1624. void
  1625. tclearregion(int x1, int y1, int x2, int y2)
  1626. {
  1627. int x, y, temp;
  1628. Glyph *gp;
  1629. if (x1 > x2)
  1630. temp = x1, x1 = x2, x2 = temp;
  1631. if (y1 > y2)
  1632. temp = y1, y1 = y2, y2 = temp;
  1633. LIMIT(x1, 0, term.col-1);
  1634. LIMIT(x2, 0, term.col-1);
  1635. LIMIT(y1, 0, term.row-1);
  1636. LIMIT(y2, 0, term.row-1);
  1637. for (y = y1; y <= y2; y++) {
  1638. term.dirty[y] = 1;
  1639. for (x = x1; x <= x2; x++) {
  1640. gp = &term.line[y][x];
  1641. if (selected(x, y))
  1642. selclear(NULL);
  1643. gp->fg = term.c.attr.fg;
  1644. gp->bg = term.c.attr.bg;
  1645. gp->mode = 0;
  1646. gp->u = ' ';
  1647. }
  1648. }
  1649. }
  1650. void
  1651. tdeletechar(int n)
  1652. {
  1653. int dst, src, size;
  1654. Glyph *line;
  1655. LIMIT(n, 0, term.col - term.c.x);
  1656. dst = term.c.x;
  1657. src = term.c.x + n;
  1658. size = term.col - src;
  1659. line = term.line[term.c.y];
  1660. memmove(&line[dst], &line[src], size * sizeof(Glyph));
  1661. tclearregion(term.col-n, term.c.y, term.col-1, term.c.y);
  1662. }
  1663. void
  1664. tinsertblank(int n)
  1665. {
  1666. int dst, src, size;
  1667. Glyph *line;
  1668. LIMIT(n, 0, term.col - term.c.x);
  1669. dst = term.c.x + n;
  1670. src = term.c.x;
  1671. size = term.col - dst;
  1672. line = term.line[term.c.y];
  1673. memmove(&line[dst], &line[src], size * sizeof(Glyph));
  1674. tclearregion(src, term.c.y, dst - 1, term.c.y);
  1675. }
  1676. void
  1677. tinsertblankline(int n)
  1678. {
  1679. if (BETWEEN(term.c.y, term.top, term.bot))
  1680. tscrolldown(term.c.y, n);
  1681. }
  1682. void
  1683. tdeleteline(int n)
  1684. {
  1685. if (BETWEEN(term.c.y, term.top, term.bot))
  1686. tscrollup(term.c.y, n);
  1687. }
  1688. int32_t
  1689. tdefcolor(int *attr, int *npar, int l)
  1690. {
  1691. int32_t idx = -1;
  1692. uint r, g, b;
  1693. switch (attr[*npar + 1]) {
  1694. case 2: /* direct color in RGB space */
  1695. if (*npar + 4 >= l) {
  1696. fprintf(stderr,
  1697. "erresc(38): Incorrect number of parameters (%d)\n",
  1698. *npar);
  1699. break;
  1700. }
  1701. r = attr[*npar + 2];
  1702. g = attr[*npar + 3];
  1703. b = attr[*npar + 4];
  1704. *npar += 4;
  1705. if (!BETWEEN(r, 0, 255) || !BETWEEN(g, 0, 255) || !BETWEEN(b, 0, 255))
  1706. fprintf(stderr, "erresc: bad rgb color (%u,%u,%u)\n",
  1707. r, g, b);
  1708. else
  1709. idx = TRUECOLOR(r, g, b);
  1710. break;
  1711. case 5: /* indexed color */
  1712. if (*npar + 2 >= l) {
  1713. fprintf(stderr,
  1714. "erresc(38): Incorrect number of parameters (%d)\n",
  1715. *npar);
  1716. break;
  1717. }
  1718. *npar += 2;
  1719. if (!BETWEEN(attr[*npar], 0, 255))
  1720. fprintf(stderr, "erresc: bad fgcolor %d\n", attr[*npar]);
  1721. else
  1722. idx = attr[*npar];
  1723. break;
  1724. case 0: /* implemented defined (only foreground) */
  1725. case 1: /* transparent */
  1726. case 3: /* direct color in CMY space */
  1727. case 4: /* direct color in CMYK space */
  1728. default:
  1729. fprintf(stderr,
  1730. "erresc(38): gfx attr %d unknown\n", attr[*npar]);
  1731. break;
  1732. }
  1733. return idx;
  1734. }
  1735. void
  1736. tsetattr(int *attr, int l)
  1737. {
  1738. int i;
  1739. int32_t idx;
  1740. for (i = 0; i < l; i++) {
  1741. switch (attr[i]) {
  1742. case 0:
  1743. term.c.attr.mode &= ~(
  1744. ATTR_BOLD |
  1745. ATTR_FAINT |
  1746. ATTR_ITALIC |
  1747. ATTR_UNDERLINE |
  1748. ATTR_BLINK |
  1749. ATTR_REVERSE |
  1750. ATTR_INVISIBLE |
  1751. ATTR_STRUCK );
  1752. term.c.attr.fg = defaultfg;
  1753. term.c.attr.bg = defaultbg;
  1754. break;
  1755. case 1:
  1756. term.c.attr.mode |= ATTR_BOLD;
  1757. break;
  1758. case 2:
  1759. term.c.attr.mode |= ATTR_FAINT;
  1760. break;
  1761. case 3:
  1762. term.c.attr.mode |= ATTR_ITALIC;
  1763. break;
  1764. case 4:
  1765. term.c.attr.mode |= ATTR_UNDERLINE;
  1766. break;
  1767. case 5: /* slow blink */
  1768. /* FALLTHROUGH */
  1769. case 6: /* rapid blink */
  1770. term.c.attr.mode |= ATTR_BLINK;
  1771. break;
  1772. case 7:
  1773. term.c.attr.mode |= ATTR_REVERSE;
  1774. break;
  1775. case 8:
  1776. term.c.attr.mode |= ATTR_INVISIBLE;
  1777. break;
  1778. case 9:
  1779. term.c.attr.mode |= ATTR_STRUCK;
  1780. break;
  1781. case 22:
  1782. term.c.attr.mode &= ~(ATTR_BOLD | ATTR_FAINT);
  1783. break;
  1784. case 23:
  1785. term.c.attr.mode &= ~ATTR_ITALIC;
  1786. break;
  1787. case 24:
  1788. term.c.attr.mode &= ~ATTR_UNDERLINE;
  1789. break;
  1790. case 25:
  1791. term.c.attr.mode &= ~ATTR_BLINK;
  1792. break;
  1793. case 27:
  1794. term.c.attr.mode &= ~ATTR_REVERSE;
  1795. break;
  1796. case 28:
  1797. term.c.attr.mode &= ~ATTR_INVISIBLE;
  1798. break;
  1799. case 29:
  1800. term.c.attr.mode &= ~ATTR_STRUCK;
  1801. break;
  1802. case 38:
  1803. if ((idx = tdefcolor(attr, &i, l)) >= 0)
  1804. term.c.attr.fg = idx;
  1805. break;
  1806. case 39:
  1807. term.c.attr.fg = defaultfg;
  1808. break;
  1809. case 48:
  1810. if ((idx = tdefcolor(attr, &i, l)) >= 0)
  1811. term.c.attr.bg = idx;
  1812. break;
  1813. case 49:
  1814. term.c.attr.bg = defaultbg;
  1815. break;
  1816. default:
  1817. if (BETWEEN(attr[i], 30, 37)) {
  1818. term.c.attr.fg = attr[i] - 30;
  1819. } else if (BETWEEN(attr[i], 40, 47)) {
  1820. term.c.attr.bg = attr[i] - 40;
  1821. } else if (BETWEEN(attr[i], 90, 97)) {
  1822. term.c.attr.fg = attr[i] - 90 + 8;
  1823. } else if (BETWEEN(attr[i], 100, 107)) {
  1824. term.c.attr.bg = attr[i] - 100 + 8;
  1825. } else {
  1826. fprintf(stderr,
  1827. "erresc(default): gfx attr %d unknown\n",
  1828. attr[i]), csidump();
  1829. }
  1830. break;
  1831. }
  1832. }
  1833. }
  1834. void
  1835. tsetscroll(int t, int b)
  1836. {
  1837. int temp;
  1838. LIMIT(t, 0, term.row-1);
  1839. LIMIT(b, 0, term.row-1);
  1840. if (t > b) {
  1841. temp = t;
  1842. t = b;
  1843. b = temp;
  1844. }
  1845. term.top = t;
  1846. term.bot = b;
  1847. }
  1848. void
  1849. tsetmode(int priv, int set, int *args, int narg)
  1850. {
  1851. int *lim, mode;
  1852. int alt;
  1853. for (lim = args + narg; args < lim; ++args) {
  1854. if (priv) {
  1855. switch (*args) {
  1856. case 1: /* DECCKM -- Cursor key */
  1857. MODBIT(term.mode, set, MODE_APPCURSOR);
  1858. break;
  1859. case 5: /* DECSCNM -- Reverse video */
  1860. mode = term.mode;
  1861. MODBIT(term.mode, set, MODE_REVERSE);
  1862. if (mode != term.mode)
  1863. redraw();
  1864. break;
  1865. case 6: /* DECOM -- Origin */
  1866. MODBIT(term.c.state, set, CURSOR_ORIGIN);
  1867. tmoveato(0, 0);
  1868. break;
  1869. case 7: /* DECAWM -- Auto wrap */
  1870. MODBIT(term.mode, set, MODE_WRAP);
  1871. break;
  1872. case 0: /* Error (IGNORED) */
  1873. case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
  1874. case 3: /* DECCOLM -- Column (IGNORED) */
  1875. case 4: /* DECSCLM -- Scroll (IGNORED) */
  1876. case 8: /* DECARM -- Auto repeat (IGNORED) */
  1877. case 18: /* DECPFF -- Printer feed (IGNORED) */
  1878. case 19: /* DECPEX -- Printer extent (IGNORED) */
  1879. case 42: /* DECNRCM -- National characters (IGNORED) */
  1880. case 12: /* att610 -- Start blinking cursor (IGNORED) */
  1881. break;
  1882. case 25: /* DECTCEM -- Text Cursor Enable Mode */
  1883. MODBIT(term.mode, !set, MODE_HIDE);
  1884. break;
  1885. case 9: /* X10 mouse compatibility mode */
  1886. xsetpointermotion(0);
  1887. MODBIT(term.mode, 0, MODE_MOUSE);
  1888. MODBIT(term.mode, set, MODE_MOUSEX10);
  1889. break;
  1890. case 1000: /* 1000: report button press */
  1891. xsetpointermotion(0);
  1892. MODBIT(term.mode, 0, MODE_MOUSE);
  1893. MODBIT(term.mode, set, MODE_MOUSEBTN);
  1894. break;
  1895. case 1002: /* 1002: report motion on button press */
  1896. xsetpointermotion(0);
  1897. MODBIT(term.mode, 0, MODE_MOUSE);
  1898. MODBIT(term.mode, set, MODE_MOUSEMOTION);
  1899. break;
  1900. case 1003: /* 1003: enable all mouse motions */
  1901. xsetpointermotion(set);
  1902. MODBIT(term.mode, 0, MODE_MOUSE);
  1903. MODBIT(term.mode, set, MODE_MOUSEMANY);
  1904. break;
  1905. case 1004: /* 1004: send focus events to tty */
  1906. MODBIT(term.mode, set, MODE_FOCUS);
  1907. break;
  1908. case 1006: /* 1006: extended reporting mode */
  1909. MODBIT(term.mode, set, MODE_MOUSESGR);
  1910. break;
  1911. case 1034:
  1912. MODBIT(term.mode, set, MODE_8BIT);
  1913. break;
  1914. case 1049: /* swap screen & set/restore cursor as xterm */
  1915. if (!allowaltscreen)
  1916. break;
  1917. tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
  1918. /* FALLTHROUGH */
  1919. case 47: /* swap screen */
  1920. case 1047:
  1921. if (!allowaltscreen)
  1922. break;
  1923. alt = IS_SET(MODE_ALTSCREEN);
  1924. if (alt) {
  1925. tclearregion(0, 0, term.col-1,
  1926. term.row-1);
  1927. }
  1928. if (set ^ alt) /* set is always 1 or 0 */
  1929. tswapscreen();
  1930. if (*args != 1049)
  1931. break;
  1932. /* FALLTHROUGH */
  1933. case 1048:
  1934. tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
  1935. break;
  1936. case 2004: /* 2004: bracketed paste mode */
  1937. MODBIT(term.mode, set, MODE_BRCKTPASTE);
  1938. break;
  1939. /* Not implemented mouse modes. See comments there. */
  1940. case 1001: /* mouse highlight mode; can hang the
  1941. terminal by design when implemented. */
  1942. case 1005: /* UTF-8 mouse mode; will confuse
  1943. applications not supporting UTF-8
  1944. and luit. */
  1945. case 1015: /* urxvt mangled mouse mode; incompatible
  1946. and can be mistaken for other control
  1947. codes. */
  1948. default:
  1949. fprintf(stderr,
  1950. "erresc: unknown private set/reset mode %d\n",
  1951. *args);
  1952. break;
  1953. }
  1954. } else {
  1955. switch (*args) {
  1956. case 0: /* Error (IGNORED) */
  1957. break;
  1958. case 2: /* KAM -- keyboard action */
  1959. MODBIT(term.mode, set, MODE_KBDLOCK);
  1960. break;
  1961. case 4: /* IRM -- Insertion-replacement */
  1962. MODBIT(term.mode, set, MODE_INSERT);
  1963. break;
  1964. case 12: /* SRM -- Send/Receive */
  1965. MODBIT(term.mode, !set, MODE_ECHO);
  1966. break;
  1967. case 20: /* LNM -- Linefeed/new line */
  1968. MODBIT(term.mode, set, MODE_CRLF);
  1969. break;
  1970. default:
  1971. fprintf(stderr,
  1972. "erresc: unknown set/reset mode %d\n",
  1973. *args);
  1974. break;
  1975. }
  1976. }
  1977. }
  1978. }
  1979. void
  1980. csihandle(void)
  1981. {
  1982. char buf[40];
  1983. int len;
  1984. switch (csiescseq.mode[0]) {
  1985. default:
  1986. unknown:
  1987. fprintf(stderr, "erresc: unknown csi ");
  1988. csidump();
  1989. /* die(""); */
  1990. break;
  1991. case '@': /* ICH -- Insert <n> blank char */
  1992. DEFAULT(csiescseq.arg[0], 1);
  1993. tinsertblank(csiescseq.arg[0]);
  1994. break;
  1995. case 'A': /* CUU -- Cursor <n> Up */
  1996. DEFAULT(csiescseq.arg[0], 1);
  1997. tmoveto(term.c.x, term.c.y-csiescseq.arg[0]);
  1998. break;
  1999. case 'B': /* CUD -- Cursor <n> Down */
  2000. case 'e': /* VPR --Cursor <n> Down */
  2001. DEFAULT(csiescseq.arg[0], 1);
  2002. tmoveto(term.c.x, term.c.y+csiescseq.arg[0]);
  2003. break;
  2004. case 'i': /* MC -- Media Copy */
  2005. switch (csiescseq.arg[0]) {
  2006. case 0:
  2007. tdump();
  2008. break;
  2009. case 1:
  2010. tdumpline(term.c.y);
  2011. break;
  2012. case 2:
  2013. tdumpsel();
  2014. break;
  2015. case 4:
  2016. term.mode &= ~MODE_PRINT;
  2017. break;
  2018. case 5:
  2019. term.mode |= MODE_PRINT;
  2020. break;
  2021. }
  2022. break;
  2023. case 'c': /* DA -- Device Attributes */
  2024. if (csiescseq.arg[0] == 0)
  2025. ttywrite(vtiden, sizeof(vtiden) - 1);
  2026. break;
  2027. case 'C': /* CUF -- Cursor <n> Forward */
  2028. case 'a': /* HPR -- Cursor <n> Forward */
  2029. DEFAULT(csiescseq.arg[0], 1);
  2030. tmoveto(term.c.x+csiescseq.arg[0], term.c.y);
  2031. break;
  2032. case 'D': /* CUB -- Cursor <n> Backward */
  2033. DEFAULT(csiescseq.arg[0], 1);
  2034. tmoveto(term.c.x-csiescseq.arg[0], term.c.y);
  2035. break;
  2036. case 'E': /* CNL -- Cursor <n> Down and first col */
  2037. DEFAULT(csiescseq.arg[0], 1);
  2038. tmoveto(0, term.c.y+csiescseq.arg[0]);
  2039. break;
  2040. case 'F': /* CPL -- Cursor <n> Up and first col */
  2041. DEFAULT(csiescseq.arg[0], 1);
  2042. tmoveto(0, term.c.y-csiescseq.arg[0]);
  2043. break;
  2044. case 'g': /* TBC -- Tabulation clear */
  2045. switch (csiescseq.arg[0]) {
  2046. case 0: /* clear current tab stop */
  2047. term.tabs[term.c.x] = 0;
  2048. break;
  2049. case 3: /* clear all the tabs */
  2050. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  2051. break;
  2052. default:
  2053. goto unknown;
  2054. }
  2055. break;
  2056. case 'G': /* CHA -- Move to <col> */
  2057. case '`': /* HPA */
  2058. DEFAULT(csiescseq.arg[0], 1);
  2059. tmoveto(csiescseq.arg[0]-1, term.c.y);
  2060. break;
  2061. case 'H': /* CUP -- Move to <row> <col> */
  2062. case 'f': /* HVP */
  2063. DEFAULT(csiescseq.arg[0], 1);
  2064. DEFAULT(csiescseq.arg[1], 1);
  2065. tmoveato(csiescseq.arg[1]-1, csiescseq.arg[0]-1);
  2066. break;
  2067. case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
  2068. DEFAULT(csiescseq.arg[0], 1);
  2069. tputtab(csiescseq.arg[0]);
  2070. break;
  2071. case 'J': /* ED -- Clear screen */
  2072. selclear(NULL);
  2073. switch (csiescseq.arg[0]) {
  2074. case 0: /* below */
  2075. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  2076. if (term.c.y < term.row-1) {
  2077. tclearregion(0, term.c.y+1, term.col-1,
  2078. term.row-1);
  2079. }
  2080. break;
  2081. case 1: /* above */
  2082. if (term.c.y > 1)
  2083. tclearregion(0, 0, term.col-1, term.c.y-1);
  2084. tclearregion(0, term.c.y, term.c.x, term.c.y);
  2085. break;
  2086. case 2: /* all */
  2087. tclearregion(0, 0, term.col-1, term.row-1);
  2088. break;
  2089. default:
  2090. goto unknown;
  2091. }
  2092. break;
  2093. case 'K': /* EL -- Clear line */
  2094. switch (csiescseq.arg[0]) {
  2095. case 0: /* right */
  2096. tclearregion(term.c.x, term.c.y, term.col-1,
  2097. term.c.y);
  2098. break;
  2099. case 1: /* left */
  2100. tclearregion(0, term.c.y, term.c.x, term.c.y);
  2101. break;
  2102. case 2: /* all */
  2103. tclearregion(0, term.c.y, term.col-1, term.c.y);
  2104. break;
  2105. }
  2106. break;
  2107. case 'S': /* SU -- Scroll <n> line up */
  2108. DEFAULT(csiescseq.arg[0], 1);
  2109. tscrollup(term.top, csiescseq.arg[0]);
  2110. break;
  2111. case 'T': /* SD -- Scroll <n> line down */
  2112. DEFAULT(csiescseq.arg[0], 1);
  2113. tscrolldown(term.top, csiescseq.arg[0]);
  2114. break;
  2115. case 'L': /* IL -- Insert <n> blank lines */
  2116. DEFAULT(csiescseq.arg[0], 1);
  2117. tinsertblankline(csiescseq.arg[0]);
  2118. break;
  2119. case 'l': /* RM -- Reset Mode */
  2120. tsetmode(csiescseq.priv, 0, csiescseq.arg, csiescseq.narg);
  2121. break;
  2122. case 'M': /* DL -- Delete <n> lines */
  2123. DEFAULT(csiescseq.arg[0], 1);
  2124. tdeleteline(csiescseq.arg[0]);
  2125. break;
  2126. case 'X': /* ECH -- Erase <n> char */
  2127. DEFAULT(csiescseq.arg[0], 1);
  2128. tclearregion(term.c.x, term.c.y,
  2129. term.c.x + csiescseq.arg[0] - 1, term.c.y);
  2130. break;
  2131. case 'P': /* DCH -- Delete <n> char */
  2132. DEFAULT(csiescseq.arg[0], 1);
  2133. tdeletechar(csiescseq.arg[0]);
  2134. break;
  2135. case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
  2136. DEFAULT(csiescseq.arg[0], 1);
  2137. tputtab(-csiescseq.arg[0]);
  2138. break;
  2139. case 'd': /* VPA -- Move to <row> */
  2140. DEFAULT(csiescseq.arg[0], 1);
  2141. tmoveato(term.c.x, csiescseq.arg[0]-1);
  2142. break;
  2143. case 'h': /* SM -- Set terminal mode */
  2144. tsetmode(csiescseq.priv, 1, csiescseq.arg, csiescseq.narg);
  2145. break;
  2146. case 'm': /* SGR -- Terminal attribute (color) */
  2147. tsetattr(csiescseq.arg, csiescseq.narg);
  2148. break;
  2149. case 'n': /* DSR – Device Status Report (cursor position) */
  2150. if (csiescseq.arg[0] == 6) {
  2151. len = snprintf(buf, sizeof(buf),"\033[%i;%iR",
  2152. term.c.y+1, term.c.x+1);
  2153. ttywrite(buf, len);
  2154. }
  2155. break;
  2156. case 'r': /* DECSTBM -- Set Scrolling Region */
  2157. if (csiescseq.priv) {
  2158. goto unknown;
  2159. } else {
  2160. DEFAULT(csiescseq.arg[0], 1);
  2161. DEFAULT(csiescseq.arg[1], term.row);
  2162. tsetscroll(csiescseq.arg[0]-1, csiescseq.arg[1]-1);
  2163. tmoveato(0, 0);
  2164. }
  2165. break;
  2166. case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
  2167. tcursor(CURSOR_SAVE);
  2168. break;
  2169. case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
  2170. tcursor(CURSOR_LOAD);
  2171. break;
  2172. case ' ':
  2173. switch (csiescseq.mode[1]) {
  2174. case 'q': /* DECSCUSR -- Set Cursor Style */
  2175. DEFAULT(csiescseq.arg[0], 1);
  2176. if (!BETWEEN(csiescseq.arg[0], 0, 6)) {
  2177. goto unknown;
  2178. }
  2179. xw.cursor = csiescseq.arg[0];
  2180. break;
  2181. default:
  2182. goto unknown;
  2183. }
  2184. break;
  2185. }
  2186. }
  2187. void
  2188. csidump(void)
  2189. {
  2190. int i;
  2191. uint c;
  2192. printf("ESC[");
  2193. for (i = 0; i < csiescseq.len; i++) {
  2194. c = csiescseq.buf[i] & 0xff;
  2195. if (isprint(c)) {
  2196. putchar(c);
  2197. } else if (c == '\n') {
  2198. printf("(\\n)");
  2199. } else if (c == '\r') {
  2200. printf("(\\r)");
  2201. } else if (c == 0x1b) {
  2202. printf("(\\e)");
  2203. } else {
  2204. printf("(%02x)", c);
  2205. }
  2206. }
  2207. putchar('\n');
  2208. }
  2209. void
  2210. csireset(void)
  2211. {
  2212. memset(&csiescseq, 0, sizeof(csiescseq));
  2213. }
  2214. void
  2215. strhandle(void)
  2216. {
  2217. char *p = NULL;
  2218. int j, narg, par;
  2219. term.esc &= ~(ESC_STR_END|ESC_STR);
  2220. strparse();
  2221. par = (narg = strescseq.narg) ? atoi(strescseq.args[0]) : 0;
  2222. switch (strescseq.type) {
  2223. case ']': /* OSC -- Operating System Command */
  2224. switch (par) {
  2225. case 0:
  2226. case 1:
  2227. case 2:
  2228. if (narg > 1)
  2229. xsettitle(strescseq.args[1]);
  2230. return;
  2231. case 4: /* color set */
  2232. if (narg < 3)
  2233. break;
  2234. p = strescseq.args[2];
  2235. /* FALLTHROUGH */
  2236. case 104: /* color reset, here p = NULL */
  2237. j = (narg > 1) ? atoi(strescseq.args[1]) : -1;
  2238. if (xsetcolorname(j, p)) {
  2239. fprintf(stderr, "erresc: invalid color %s\n", p);
  2240. } else {
  2241. /*
  2242. * TODO if defaultbg color is changed, borders
  2243. * are dirty
  2244. */
  2245. redraw();
  2246. }
  2247. return;
  2248. }
  2249. break;
  2250. case 'k': /* old title set compatibility */
  2251. xsettitle(strescseq.args[0]);
  2252. return;
  2253. case 'P': /* DCS -- Device Control String */
  2254. case '_': /* APC -- Application Program Command */
  2255. case '^': /* PM -- Privacy Message */
  2256. return;
  2257. }
  2258. fprintf(stderr, "erresc: unknown str ");
  2259. strdump();
  2260. }
  2261. void
  2262. strparse(void)
  2263. {
  2264. int c;
  2265. char *p = strescseq.buf;
  2266. strescseq.narg = 0;
  2267. strescseq.buf[strescseq.len] = '\0';
  2268. if (*p == '\0')
  2269. return;
  2270. while (strescseq.narg < STR_ARG_SIZ) {
  2271. strescseq.args[strescseq.narg++] = p;
  2272. while ((c = *p) != ';' && c != '\0')
  2273. ++p;
  2274. if (c == '\0')
  2275. return;
  2276. *p++ = '\0';
  2277. }
  2278. }
  2279. void
  2280. strdump(void)
  2281. {
  2282. int i;
  2283. uint c;
  2284. printf("ESC%c", strescseq.type);
  2285. for (i = 0; i < strescseq.len; i++) {
  2286. c = strescseq.buf[i] & 0xff;
  2287. if (c == '\0') {
  2288. return;
  2289. } else if (isprint(c)) {
  2290. putchar(c);
  2291. } else if (c == '\n') {
  2292. printf("(\\n)");
  2293. } else if (c == '\r') {
  2294. printf("(\\r)");
  2295. } else if (c == 0x1b) {
  2296. printf("(\\e)");
  2297. } else {
  2298. printf("(%02x)", c);
  2299. }
  2300. }
  2301. printf("ESC\\\n");
  2302. }
  2303. void
  2304. strreset(void)
  2305. {
  2306. memset(&strescseq, 0, sizeof(strescseq));
  2307. }
  2308. void
  2309. sendbreak(const Arg *arg)
  2310. {
  2311. if (tcsendbreak(cmdfd, 0))
  2312. perror("Error sending break");
  2313. }
  2314. void
  2315. tprinter(char *s, size_t len)
  2316. {
  2317. if (iofd != -1 && xwrite(iofd, s, len) < 0) {
  2318. fprintf(stderr, "Error writing in %s:%s\n",
  2319. opt_io, strerror(errno));
  2320. close(iofd);
  2321. iofd = -1;
  2322. }
  2323. }
  2324. void
  2325. toggleprinter(const Arg *arg)
  2326. {
  2327. term.mode ^= MODE_PRINT;
  2328. }
  2329. void
  2330. printscreen(const Arg *arg)
  2331. {
  2332. tdump();
  2333. }
  2334. void
  2335. printsel(const Arg *arg)
  2336. {
  2337. tdumpsel();
  2338. }
  2339. void
  2340. tdumpsel(void)
  2341. {
  2342. char *ptr;
  2343. if ((ptr = getsel())) {
  2344. tprinter(ptr, strlen(ptr));
  2345. free(ptr);
  2346. }
  2347. }
  2348. void
  2349. tdumpline(int n)
  2350. {
  2351. char buf[UTF_SIZ];
  2352. Glyph *bp, *end;
  2353. bp = &term.line[n][0];
  2354. end = &bp[MIN(tlinelen(n), term.col) - 1];
  2355. if (bp != end || bp->u != ' ') {
  2356. for ( ;bp <= end; ++bp)
  2357. tprinter(buf, utf8encode(bp->u, buf));
  2358. }
  2359. tprinter("\n", 1);
  2360. }
  2361. void
  2362. tdump(void)
  2363. {
  2364. int i;
  2365. for (i = 0; i < term.row; ++i)
  2366. tdumpline(i);
  2367. }
  2368. void
  2369. tputtab(int n)
  2370. {
  2371. uint x = term.c.x;
  2372. if (n > 0) {
  2373. while (x < term.col && n--)
  2374. for (++x; x < term.col && !term.tabs[x]; ++x)
  2375. /* nothing */ ;
  2376. } else if (n < 0) {
  2377. while (x > 0 && n++)
  2378. for (--x; x > 0 && !term.tabs[x]; --x)
  2379. /* nothing */ ;
  2380. }
  2381. term.c.x = LIMIT(x, 0, term.col-1);
  2382. }
  2383. void
  2384. techo(Rune u)
  2385. {
  2386. if (ISCONTROL(u)) { /* control code */
  2387. if (u & 0x80) {
  2388. u &= 0x7f;
  2389. tputc('^');
  2390. tputc('[');
  2391. } else if (u != '\n' && u != '\r' && u != '\t') {
  2392. u ^= 0x40;
  2393. tputc('^');
  2394. }
  2395. }
  2396. tputc(u);
  2397. }
  2398. void
  2399. tdeftran(char ascii)
  2400. {
  2401. static char cs[] = "0B";
  2402. static int vcs[] = {CS_GRAPHIC0, CS_USA};
  2403. char *p;
  2404. if ((p = strchr(cs, ascii)) == NULL) {
  2405. fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
  2406. } else {
  2407. term.trantbl[term.icharset] = vcs[p - cs];
  2408. }
  2409. }
  2410. void
  2411. tdectest(char c)
  2412. {
  2413. int x, y;
  2414. if (c == '8') { /* DEC screen alignment test. */
  2415. for (x = 0; x < term.col; ++x) {
  2416. for (y = 0; y < term.row; ++y)
  2417. tsetchar('E', &term.c.attr, x, y);
  2418. }
  2419. }
  2420. }
  2421. void
  2422. tstrsequence(uchar c)
  2423. {
  2424. switch (c) {
  2425. case 0x90: /* DCS -- Device Control String */
  2426. c = 'P';
  2427. break;
  2428. case 0x9f: /* APC -- Application Program Command */
  2429. c = '_';
  2430. break;
  2431. case 0x9e: /* PM -- Privacy Message */
  2432. c = '^';
  2433. break;
  2434. case 0x9d: /* OSC -- Operating System Command */
  2435. c = ']';
  2436. break;
  2437. }
  2438. strreset();
  2439. strescseq.type = c;
  2440. term.esc |= ESC_STR;
  2441. }
  2442. void
  2443. tcontrolcode(uchar ascii)
  2444. {
  2445. switch (ascii) {
  2446. case '\t': /* HT */
  2447. tputtab(1);
  2448. return;
  2449. case '\b': /* BS */
  2450. tmoveto(term.c.x-1, term.c.y);
  2451. return;
  2452. case '\r': /* CR */
  2453. tmoveto(0, term.c.y);
  2454. return;
  2455. case '\f': /* LF */
  2456. case '\v': /* VT */
  2457. case '\n': /* LF */
  2458. /* go to first col if the mode is set */
  2459. tnewline(IS_SET(MODE_CRLF));
  2460. return;
  2461. case '\a': /* BEL */
  2462. if (term.esc & ESC_STR_END) {
  2463. /* backwards compatibility to xterm */
  2464. strhandle();
  2465. } else {
  2466. if (!(xw.state & WIN_FOCUSED))
  2467. xseturgency(1);
  2468. if (bellvolume)
  2469. XkbBell(xw.dpy, xw.win, bellvolume, (Atom)NULL);
  2470. }
  2471. break;
  2472. case '\033': /* ESC */
  2473. csireset();
  2474. term.esc &= ~(ESC_CSI|ESC_ALTCHARSET|ESC_TEST);
  2475. term.esc |= ESC_START;
  2476. return;
  2477. case '\016': /* SO (LS1 -- Locking shift 1) */
  2478. case '\017': /* SI (LS0 -- Locking shift 0) */
  2479. term.charset = 1 - (ascii - '\016');
  2480. return;
  2481. case '\032': /* SUB */
  2482. tsetchar('?', &term.c.attr, term.c.x, term.c.y);
  2483. case '\030': /* CAN */
  2484. csireset();
  2485. break;
  2486. case '\005': /* ENQ (IGNORED) */
  2487. case '\000': /* NUL (IGNORED) */
  2488. case '\021': /* XON (IGNORED) */
  2489. case '\023': /* XOFF (IGNORED) */
  2490. case 0177: /* DEL (IGNORED) */
  2491. return;
  2492. case 0x80: /* TODO: PAD */
  2493. case 0x81: /* TODO: HOP */
  2494. case 0x82: /* TODO: BPH */
  2495. case 0x83: /* TODO: NBH */
  2496. case 0x84: /* TODO: IND */
  2497. break;
  2498. case 0x85: /* NEL -- Next line */
  2499. tnewline(1); /* always go to first col */
  2500. break;
  2501. case 0x86: /* TODO: SSA */
  2502. case 0x87: /* TODO: ESA */
  2503. break;
  2504. case 0x88: /* HTS -- Horizontal tab stop */
  2505. term.tabs[term.c.x] = 1;
  2506. break;
  2507. case 0x89: /* TODO: HTJ */
  2508. case 0x8a: /* TODO: VTS */
  2509. case 0x8b: /* TODO: PLD */
  2510. case 0x8c: /* TODO: PLU */
  2511. case 0x8d: /* TODO: RI */
  2512. case 0x8e: /* TODO: SS2 */
  2513. case 0x8f: /* TODO: SS3 */
  2514. case 0x91: /* TODO: PU1 */
  2515. case 0x92: /* TODO: PU2 */
  2516. case 0x93: /* TODO: STS */
  2517. case 0x94: /* TODO: CCH */
  2518. case 0x95: /* TODO: MW */
  2519. case 0x96: /* TODO: SPA */
  2520. case 0x97: /* TODO: EPA */
  2521. case 0x98: /* TODO: SOS */
  2522. case 0x99: /* TODO: SGCI */
  2523. break;
  2524. case 0x9a: /* DECID -- Identify Terminal */
  2525. ttywrite(vtiden, sizeof(vtiden) - 1);
  2526. break;
  2527. case 0x9b: /* TODO: CSI */
  2528. case 0x9c: /* TODO: ST */
  2529. break;
  2530. case 0x90: /* DCS -- Device Control String */
  2531. case 0x9d: /* OSC -- Operating System Command */
  2532. case 0x9e: /* PM -- Privacy Message */
  2533. case 0x9f: /* APC -- Application Program Command */
  2534. tstrsequence(ascii);
  2535. return;
  2536. }
  2537. /* only CAN, SUB, \a and C1 chars interrupt a sequence */
  2538. term.esc &= ~(ESC_STR_END|ESC_STR);
  2539. }
  2540. /*
  2541. * returns 1 when the sequence is finished and it hasn't to read
  2542. * more characters for this sequence, otherwise 0
  2543. */
  2544. int
  2545. eschandle(uchar ascii)
  2546. {
  2547. switch (ascii) {
  2548. case '[':
  2549. term.esc |= ESC_CSI;
  2550. return 0;
  2551. case '#':
  2552. term.esc |= ESC_TEST;
  2553. return 0;
  2554. case 'P': /* DCS -- Device Control String */
  2555. case '_': /* APC -- Application Program Command */
  2556. case '^': /* PM -- Privacy Message */
  2557. case ']': /* OSC -- Operating System Command */
  2558. case 'k': /* old title set compatibility */
  2559. tstrsequence(ascii);
  2560. return 0;
  2561. case 'n': /* LS2 -- Locking shift 2 */
  2562. case 'o': /* LS3 -- Locking shift 3 */
  2563. term.charset = 2 + (ascii - 'n');
  2564. break;
  2565. case '(': /* GZD4 -- set primary charset G0 */
  2566. case ')': /* G1D4 -- set secondary charset G1 */
  2567. case '*': /* G2D4 -- set tertiary charset G2 */
  2568. case '+': /* G3D4 -- set quaternary charset G3 */
  2569. term.icharset = ascii - '(';
  2570. term.esc |= ESC_ALTCHARSET;
  2571. return 0;
  2572. case 'D': /* IND -- Linefeed */
  2573. if (term.c.y == term.bot) {
  2574. tscrollup(term.top, 1);
  2575. } else {
  2576. tmoveto(term.c.x, term.c.y+1);
  2577. }
  2578. break;
  2579. case 'E': /* NEL -- Next line */
  2580. tnewline(1); /* always go to first col */
  2581. break;
  2582. case 'H': /* HTS -- Horizontal tab stop */
  2583. term.tabs[term.c.x] = 1;
  2584. break;
  2585. case 'M': /* RI -- Reverse index */
  2586. if (term.c.y == term.top) {
  2587. tscrolldown(term.top, 1);
  2588. } else {
  2589. tmoveto(term.c.x, term.c.y-1);
  2590. }
  2591. break;
  2592. case 'Z': /* DECID -- Identify Terminal */
  2593. ttywrite(vtiden, sizeof(vtiden) - 1);
  2594. break;
  2595. case 'c': /* RIS -- Reset to inital state */
  2596. treset();
  2597. xresettitle();
  2598. xloadcols();
  2599. break;
  2600. case '=': /* DECPAM -- Application keypad */
  2601. term.mode |= MODE_APPKEYPAD;
  2602. break;
  2603. case '>': /* DECPNM -- Normal keypad */
  2604. term.mode &= ~MODE_APPKEYPAD;
  2605. break;
  2606. case '7': /* DECSC -- Save Cursor */
  2607. tcursor(CURSOR_SAVE);
  2608. break;
  2609. case '8': /* DECRC -- Restore Cursor */
  2610. tcursor(CURSOR_LOAD);
  2611. break;
  2612. case '\\': /* ST -- String Terminator */
  2613. if (term.esc & ESC_STR_END)
  2614. strhandle();
  2615. break;
  2616. default:
  2617. fprintf(stderr, "erresc: unknown sequence ESC 0x%02X '%c'\n",
  2618. (uchar) ascii, isprint(ascii)? ascii:'.');
  2619. break;
  2620. }
  2621. return 1;
  2622. }
  2623. void
  2624. tputc(Rune u)
  2625. {
  2626. char c[UTF_SIZ];
  2627. int control;
  2628. int width, len;
  2629. Glyph *gp;
  2630. control = ISCONTROL(u);
  2631. len = utf8encode(u, c);
  2632. if (!control && (width = wcwidth(u)) == -1) {
  2633. memcpy(c, "\357\277\275", 4); /* UTF_INVALID */
  2634. width = 1;
  2635. }
  2636. if (IS_SET(MODE_PRINT))
  2637. tprinter(c, len);
  2638. /*
  2639. * STR sequence must be checked before anything else
  2640. * because it uses all following characters until it
  2641. * receives a ESC, a SUB, a ST or any other C1 control
  2642. * character.
  2643. */
  2644. if (term.esc & ESC_STR) {
  2645. if (u == '\a' || u == 030 || u == 032 || u == 033 ||
  2646. ISCONTROLC1(u)) {
  2647. term.esc &= ~(ESC_START|ESC_STR);
  2648. term.esc |= ESC_STR_END;
  2649. } else if (strescseq.len + len < sizeof(strescseq.buf) - 1) {
  2650. memmove(&strescseq.buf[strescseq.len], c, len);
  2651. strescseq.len += len;
  2652. return;
  2653. } else {
  2654. /*
  2655. * Here is a bug in terminals. If the user never sends
  2656. * some code to stop the str or esc command, then st
  2657. * will stop responding. But this is better than
  2658. * silently failing with unknown characters. At least
  2659. * then users will report back.
  2660. *
  2661. * In the case users ever get fixed, here is the code:
  2662. */
  2663. /*
  2664. * term.esc = 0;
  2665. * strhandle();
  2666. */
  2667. return;
  2668. }
  2669. }
  2670. /*
  2671. * Actions of control codes must be performed as soon they arrive
  2672. * because they can be embedded inside a control sequence, and
  2673. * they must not cause conflicts with sequences.
  2674. */
  2675. if (control) {
  2676. tcontrolcode(u);
  2677. /*
  2678. * control codes are not shown ever
  2679. */
  2680. return;
  2681. } else if (term.esc & ESC_START) {
  2682. if (term.esc & ESC_CSI) {
  2683. csiescseq.buf[csiescseq.len++] = u;
  2684. if (BETWEEN(u, 0x40, 0x7E)
  2685. || csiescseq.len >= \
  2686. sizeof(csiescseq.buf)-1) {
  2687. term.esc = 0;
  2688. csiparse();
  2689. csihandle();
  2690. }
  2691. return;
  2692. } else if (term.esc & ESC_ALTCHARSET) {
  2693. tdeftran(u);
  2694. } else if (term.esc & ESC_TEST) {
  2695. tdectest(u);
  2696. } else {
  2697. if (!eschandle(u))
  2698. return;
  2699. /* sequence already finished */
  2700. }
  2701. term.esc = 0;
  2702. /*
  2703. * All characters which form part of a sequence are not
  2704. * printed
  2705. */
  2706. return;
  2707. }
  2708. if (sel.ob.x != -1 && BETWEEN(term.c.y, sel.ob.y, sel.oe.y))
  2709. selclear(NULL);
  2710. gp = &term.line[term.c.y][term.c.x];
  2711. if (IS_SET(MODE_WRAP) && (term.c.state & CURSOR_WRAPNEXT)) {
  2712. gp->mode |= ATTR_WRAP;
  2713. tnewline(1);
  2714. gp = &term.line[term.c.y][term.c.x];
  2715. }
  2716. if (IS_SET(MODE_INSERT) && term.c.x+width < term.col)
  2717. memmove(gp+width, gp, (term.col - term.c.x - width) * sizeof(Glyph));
  2718. if (term.c.x+width > term.col) {
  2719. tnewline(1);
  2720. gp = &term.line[term.c.y][term.c.x];
  2721. }
  2722. tsetchar(u, &term.c.attr, term.c.x, term.c.y);
  2723. if (width == 2) {
  2724. gp->mode |= ATTR_WIDE;
  2725. if (term.c.x+1 < term.col) {
  2726. gp[1].u = '\0';
  2727. gp[1].mode = ATTR_WDUMMY;
  2728. }
  2729. }
  2730. if (term.c.x+width < term.col) {
  2731. tmoveto(term.c.x+width, term.c.y);
  2732. } else {
  2733. term.c.state |= CURSOR_WRAPNEXT;
  2734. }
  2735. }
  2736. void
  2737. tresize(int col, int row)
  2738. {
  2739. int i;
  2740. int minrow = MIN(row, term.row);
  2741. int mincol = MIN(col, term.col);
  2742. int *bp;
  2743. TCursor c;
  2744. if (col < 1 || row < 1) {
  2745. fprintf(stderr,
  2746. "tresize: error resizing to %dx%d\n", col, row);
  2747. return;
  2748. }
  2749. /*
  2750. * slide screen to keep cursor where we expect it -
  2751. * tscrollup would work here, but we can optimize to
  2752. * memmove because we're freeing the earlier lines
  2753. */
  2754. for (i = 0; i <= term.c.y - row; i++) {
  2755. free(term.line[i]);
  2756. free(term.alt[i]);
  2757. }
  2758. /* ensure that both src and dst are not NULL */
  2759. if (i > 0) {
  2760. memmove(term.line, term.line + i, row * sizeof(Line));
  2761. memmove(term.alt, term.alt + i, row * sizeof(Line));
  2762. }
  2763. for (i += row; i < term.row; i++) {
  2764. free(term.line[i]);
  2765. free(term.alt[i]);
  2766. }
  2767. /* resize to new width */
  2768. term.specbuf = xrealloc(term.specbuf, col * sizeof(XftGlyphFontSpec));
  2769. /* resize to new height */
  2770. term.line = xrealloc(term.line, row * sizeof(Line));
  2771. term.alt = xrealloc(term.alt, row * sizeof(Line));
  2772. term.dirty = xrealloc(term.dirty, row * sizeof(*term.dirty));
  2773. term.tabs = xrealloc(term.tabs, col * sizeof(*term.tabs));
  2774. /* resize each row to new width, zero-pad if needed */
  2775. for (i = 0; i < minrow; i++) {
  2776. term.line[i] = xrealloc(term.line[i], col * sizeof(Glyph));
  2777. term.alt[i] = xrealloc(term.alt[i], col * sizeof(Glyph));
  2778. }
  2779. /* allocate any new rows */
  2780. for (/* i == minrow */; i < row; i++) {
  2781. term.line[i] = xmalloc(col * sizeof(Glyph));
  2782. term.alt[i] = xmalloc(col * sizeof(Glyph));
  2783. }
  2784. if (col > term.col) {
  2785. bp = term.tabs + term.col;
  2786. memset(bp, 0, sizeof(*term.tabs) * (col - term.col));
  2787. while (--bp > term.tabs && !*bp)
  2788. /* nothing */ ;
  2789. for (bp += tabspaces; bp < term.tabs + col; bp += tabspaces)
  2790. *bp = 1;
  2791. }
  2792. /* update terminal size */
  2793. term.col = col;
  2794. term.row = row;
  2795. /* reset scrolling region */
  2796. tsetscroll(0, row-1);
  2797. /* make use of the LIMIT in tmoveto */
  2798. tmoveto(term.c.x, term.c.y);
  2799. /* Clearing both screens (it makes dirty all lines) */
  2800. c = term.c;
  2801. for (i = 0; i < 2; i++) {
  2802. if (mincol < col && 0 < minrow) {
  2803. tclearregion(mincol, 0, col - 1, minrow - 1);
  2804. }
  2805. if (0 < col && minrow < row) {
  2806. tclearregion(0, minrow, col - 1, row - 1);
  2807. }
  2808. tswapscreen();
  2809. tcursor(CURSOR_LOAD);
  2810. }
  2811. term.c = c;
  2812. }
  2813. void
  2814. xresize(int col, int row)
  2815. {
  2816. xw.tw = MAX(1, col * xw.cw);
  2817. xw.th = MAX(1, row * xw.ch);
  2818. XFreePixmap(xw.dpy, xw.buf);
  2819. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  2820. DefaultDepth(xw.dpy, xw.scr));
  2821. XftDrawChange(xw.draw, xw.buf);
  2822. xclear(0, 0, xw.w, xw.h);
  2823. }
  2824. ushort
  2825. sixd_to_16bit(int x)
  2826. {
  2827. return x == 0 ? 0 : 0x3737 + 0x2828 * x;
  2828. }
  2829. int
  2830. xloadcolor(int i, const char *name, Color *ncolor)
  2831. {
  2832. XRenderColor color = { .alpha = 0xffff };
  2833. if (!name) {
  2834. if (BETWEEN(i, 16, 255)) { /* 256 color */
  2835. if (i < 6*6*6+16) { /* same colors as xterm */
  2836. color.red = sixd_to_16bit( ((i-16)/36)%6 );
  2837. color.green = sixd_to_16bit( ((i-16)/6) %6 );
  2838. color.blue = sixd_to_16bit( ((i-16)/1) %6 );
  2839. } else { /* greyscale */
  2840. color.red = 0x0808 + 0x0a0a * (i - (6*6*6+16));
  2841. color.green = color.blue = color.red;
  2842. }
  2843. return XftColorAllocValue(xw.dpy, xw.vis,
  2844. xw.cmap, &color, ncolor);
  2845. } else
  2846. name = colorname[i];
  2847. }
  2848. return XftColorAllocName(xw.dpy, xw.vis, xw.cmap, name, ncolor);
  2849. }
  2850. void
  2851. xloadcols(void)
  2852. {
  2853. int i;
  2854. static int loaded;
  2855. Color *cp;
  2856. if (loaded) {
  2857. for (cp = dc.col; cp < &dc.col[LEN(dc.col)]; ++cp)
  2858. XftColorFree(xw.dpy, xw.vis, xw.cmap, cp);
  2859. }
  2860. for (i = 0; i < LEN(dc.col); i++)
  2861. if (!xloadcolor(i, NULL, &dc.col[i])) {
  2862. if (colorname[i])
  2863. die("Could not allocate color '%s'\n", colorname[i]);
  2864. else
  2865. die("Could not allocate color %d\n", i);
  2866. }
  2867. loaded = 1;
  2868. }
  2869. int
  2870. xsetcolorname(int x, const char *name)
  2871. {
  2872. Color ncolor;
  2873. if (!BETWEEN(x, 0, LEN(dc.col)))
  2874. return 1;
  2875. if (!xloadcolor(x, name, &ncolor))
  2876. return 1;
  2877. XftColorFree(xw.dpy, xw.vis, xw.cmap, &dc.col[x]);
  2878. dc.col[x] = ncolor;
  2879. return 0;
  2880. }
  2881. void
  2882. xtermclear(int col1, int row1, int col2, int row2)
  2883. {
  2884. XftDrawRect(xw.draw,
  2885. &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
  2886. borderpx + col1 * xw.cw,
  2887. borderpx + row1 * xw.ch,
  2888. (col2-col1+1) * xw.cw,
  2889. (row2-row1+1) * xw.ch);
  2890. }
  2891. /*
  2892. * Absolute coordinates.
  2893. */
  2894. void
  2895. xclear(int x1, int y1, int x2, int y2)
  2896. {
  2897. XftDrawRect(xw.draw,
  2898. &dc.col[IS_SET(MODE_REVERSE)? defaultfg : defaultbg],
  2899. x1, y1, x2-x1, y2-y1);
  2900. }
  2901. void
  2902. xhints(void)
  2903. {
  2904. XClassHint class = {opt_class ? opt_class : termname, termname};
  2905. XWMHints wm = {.flags = InputHint, .input = 1};
  2906. XSizeHints *sizeh = NULL;
  2907. sizeh = XAllocSizeHints();
  2908. sizeh->flags = PSize | PResizeInc | PBaseSize;
  2909. sizeh->height = xw.h;
  2910. sizeh->width = xw.w;
  2911. sizeh->height_inc = xw.ch;
  2912. sizeh->width_inc = xw.cw;
  2913. sizeh->base_height = 2 * borderpx;
  2914. sizeh->base_width = 2 * borderpx;
  2915. if (xw.isfixed) {
  2916. sizeh->flags |= PMaxSize | PMinSize;
  2917. sizeh->min_width = sizeh->max_width = xw.w;
  2918. sizeh->min_height = sizeh->max_height = xw.h;
  2919. }
  2920. if (xw.gm & (XValue|YValue)) {
  2921. sizeh->flags |= USPosition | PWinGravity;
  2922. sizeh->x = xw.l;
  2923. sizeh->y = xw.t;
  2924. sizeh->win_gravity = xgeommasktogravity(xw.gm);
  2925. }
  2926. XSetWMProperties(xw.dpy, xw.win, NULL, NULL, NULL, 0, sizeh, &wm,
  2927. &class);
  2928. XFree(sizeh);
  2929. }
  2930. int
  2931. xgeommasktogravity(int mask)
  2932. {
  2933. switch (mask & (XNegative|YNegative)) {
  2934. case 0:
  2935. return NorthWestGravity;
  2936. case XNegative:
  2937. return NorthEastGravity;
  2938. case YNegative:
  2939. return SouthWestGravity;
  2940. }
  2941. return SouthEastGravity;
  2942. }
  2943. int
  2944. xloadfont(Font *f, FcPattern *pattern)
  2945. {
  2946. FcPattern *match;
  2947. FcResult result;
  2948. match = FcFontMatch(NULL, pattern, &result);
  2949. if (!match)
  2950. return 1;
  2951. if (!(f->match = XftFontOpenPattern(xw.dpy, match))) {
  2952. FcPatternDestroy(match);
  2953. return 1;
  2954. }
  2955. f->set = NULL;
  2956. f->pattern = FcPatternDuplicate(pattern);
  2957. f->ascent = f->match->ascent;
  2958. f->descent = f->match->descent;
  2959. f->lbearing = 0;
  2960. f->rbearing = f->match->max_advance_width;
  2961. f->height = f->ascent + f->descent;
  2962. f->width = f->lbearing + f->rbearing;
  2963. return 0;
  2964. }
  2965. void
  2966. xloadfonts(char *fontstr, double fontsize)
  2967. {
  2968. FcPattern *pattern;
  2969. double fontval;
  2970. float ceilf(float);
  2971. if (fontstr[0] == '-') {
  2972. pattern = XftXlfdParse(fontstr, False, False);
  2973. } else {
  2974. pattern = FcNameParse((FcChar8 *)fontstr);
  2975. }
  2976. if (!pattern)
  2977. die("st: can't open font %s\n", fontstr);
  2978. if (fontsize > 1) {
  2979. FcPatternDel(pattern, FC_PIXEL_SIZE);
  2980. FcPatternDel(pattern, FC_SIZE);
  2981. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, (double)fontsize);
  2982. usedfontsize = fontsize;
  2983. } else {
  2984. if (FcPatternGetDouble(pattern, FC_PIXEL_SIZE, 0, &fontval) ==
  2985. FcResultMatch) {
  2986. usedfontsize = fontval;
  2987. } else if (FcPatternGetDouble(pattern, FC_SIZE, 0, &fontval) ==
  2988. FcResultMatch) {
  2989. usedfontsize = -1;
  2990. } else {
  2991. /*
  2992. * Default font size is 12, if none given. This is to
  2993. * have a known usedfontsize value.
  2994. */
  2995. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, 12);
  2996. usedfontsize = 12;
  2997. }
  2998. defaultfontsize = usedfontsize;
  2999. }
  3000. FcConfigSubstitute(0, pattern, FcMatchPattern);
  3001. FcDefaultSubstitute(pattern);
  3002. if (xloadfont(&dc.font, pattern))
  3003. die("st: can't open font %s\n", fontstr);
  3004. if (usedfontsize < 0) {
  3005. FcPatternGetDouble(dc.font.match->pattern,
  3006. FC_PIXEL_SIZE, 0, &fontval);
  3007. usedfontsize = fontval;
  3008. if (fontsize == 0)
  3009. defaultfontsize = fontval;
  3010. }
  3011. /* Setting character width and height. */
  3012. xw.cw = ceilf(dc.font.width * cwscale);
  3013. xw.ch = ceilf(dc.font.height * chscale);
  3014. FcPatternDel(pattern, FC_SLANT);
  3015. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC);
  3016. if (xloadfont(&dc.ifont, pattern))
  3017. die("st: can't open font %s\n", fontstr);
  3018. FcPatternDel(pattern, FC_WEIGHT);
  3019. FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_BOLD);
  3020. if (xloadfont(&dc.ibfont, pattern))
  3021. die("st: can't open font %s\n", fontstr);
  3022. FcPatternDel(pattern, FC_SLANT);
  3023. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN);
  3024. if (xloadfont(&dc.bfont, pattern))
  3025. die("st: can't open font %s\n", fontstr);
  3026. FcPatternDestroy(pattern);
  3027. }
  3028. void
  3029. xunloadfont(Font *f)
  3030. {
  3031. XftFontClose(xw.dpy, f->match);
  3032. FcPatternDestroy(f->pattern);
  3033. if (f->set)
  3034. FcFontSetDestroy(f->set);
  3035. }
  3036. void
  3037. xunloadfonts(void)
  3038. {
  3039. /* Free the loaded fonts in the font cache. */
  3040. while (frclen > 0)
  3041. XftFontClose(xw.dpy, frc[--frclen].font);
  3042. xunloadfont(&dc.font);
  3043. xunloadfont(&dc.bfont);
  3044. xunloadfont(&dc.ifont);
  3045. xunloadfont(&dc.ibfont);
  3046. }
  3047. void
  3048. xzoom(const Arg *arg)
  3049. {
  3050. Arg larg;
  3051. larg.f = usedfontsize + arg->f;
  3052. xzoomabs(&larg);
  3053. }
  3054. void
  3055. xzoomabs(const Arg *arg)
  3056. {
  3057. xunloadfonts();
  3058. xloadfonts(usedfont, arg->f);
  3059. cresize(0, 0);
  3060. redraw();
  3061. xhints();
  3062. }
  3063. void
  3064. xzoomreset(const Arg *arg)
  3065. {
  3066. Arg larg;
  3067. if (defaultfontsize > 0) {
  3068. larg.f = defaultfontsize;
  3069. xzoomabs(&larg);
  3070. }
  3071. }
  3072. void
  3073. xinit(void)
  3074. {
  3075. XGCValues gcvalues;
  3076. Cursor cursor;
  3077. Window parent;
  3078. pid_t thispid = getpid();
  3079. XColor xmousefg, xmousebg;
  3080. if (!(xw.dpy = XOpenDisplay(NULL)))
  3081. die("Can't open display\n");
  3082. xw.scr = XDefaultScreen(xw.dpy);
  3083. xw.vis = XDefaultVisual(xw.dpy, xw.scr);
  3084. /* font */
  3085. if (!FcInit())
  3086. die("Could not init fontconfig.\n");
  3087. usedfont = (opt_font == NULL)? font : opt_font;
  3088. xloadfonts(usedfont, 0);
  3089. /* colors */
  3090. xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
  3091. xloadcols();
  3092. /* adjust fixed window geometry */
  3093. xw.w = 2 * borderpx + term.col * xw.cw;
  3094. xw.h = 2 * borderpx + term.row * xw.ch;
  3095. if (xw.gm & XNegative)
  3096. xw.l += DisplayWidth(xw.dpy, xw.scr) - xw.w - 2;
  3097. if (xw.gm & YNegative)
  3098. xw.t += DisplayWidth(xw.dpy, xw.scr) - xw.h - 2;
  3099. /* Events */
  3100. xw.attrs.background_pixel = dc.col[defaultbg].pixel;
  3101. xw.attrs.border_pixel = dc.col[defaultbg].pixel;
  3102. xw.attrs.bit_gravity = NorthWestGravity;
  3103. xw.attrs.event_mask = FocusChangeMask | KeyPressMask
  3104. | ExposureMask | VisibilityChangeMask | StructureNotifyMask
  3105. | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
  3106. xw.attrs.colormap = xw.cmap;
  3107. if (!(opt_embed && (parent = strtol(opt_embed, NULL, 0))))
  3108. parent = XRootWindow(xw.dpy, xw.scr);
  3109. xw.win = XCreateWindow(xw.dpy, parent, xw.l, xw.t,
  3110. xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,
  3111. xw.vis, CWBackPixel | CWBorderPixel | CWBitGravity
  3112. | CWEventMask | CWColormap, &xw.attrs);
  3113. memset(&gcvalues, 0, sizeof(gcvalues));
  3114. gcvalues.graphics_exposures = False;
  3115. dc.gc = XCreateGC(xw.dpy, parent, GCGraphicsExposures,
  3116. &gcvalues);
  3117. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  3118. DefaultDepth(xw.dpy, xw.scr));
  3119. XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
  3120. XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
  3121. /* Xft rendering context */
  3122. xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
  3123. /* input methods */
  3124. if ((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  3125. XSetLocaleModifiers("@im=local");
  3126. if ((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  3127. XSetLocaleModifiers("@im=");
  3128. if ((xw.xim = XOpenIM(xw.dpy,
  3129. NULL, NULL, NULL)) == NULL) {
  3130. die("XOpenIM failed. Could not open input"
  3131. " device.\n");
  3132. }
  3133. }
  3134. }
  3135. xw.xic = XCreateIC(xw.xim, XNInputStyle, XIMPreeditNothing
  3136. | XIMStatusNothing, XNClientWindow, xw.win,
  3137. XNFocusWindow, xw.win, NULL);
  3138. if (xw.xic == NULL)
  3139. die("XCreateIC failed. Could not obtain input method.\n");
  3140. /* white cursor, black outline */
  3141. cursor = XCreateFontCursor(xw.dpy, mouseshape);
  3142. XDefineCursor(xw.dpy, xw.win, cursor);
  3143. if (XParseColor(xw.dpy, xw.cmap, colorname[mousefg], &xmousefg) == 0) {
  3144. xmousefg.red = 0xffff;
  3145. xmousefg.green = 0xffff;
  3146. xmousefg.blue = 0xffff;
  3147. }
  3148. if (XParseColor(xw.dpy, xw.cmap, colorname[mousebg], &xmousebg) == 0) {
  3149. xmousebg.red = 0x0000;
  3150. xmousebg.green = 0x0000;
  3151. xmousebg.blue = 0x0000;
  3152. }
  3153. XRecolorCursor(xw.dpy, cursor, &xmousefg, &xmousebg);
  3154. xw.xembed = XInternAtom(xw.dpy, "_XEMBED", False);
  3155. xw.wmdeletewin = XInternAtom(xw.dpy, "WM_DELETE_WINDOW", False);
  3156. xw.netwmname = XInternAtom(xw.dpy, "_NET_WM_NAME", False);
  3157. XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
  3158. xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
  3159. XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
  3160. PropModeReplace, (uchar *)&thispid, 1);
  3161. xresettitle();
  3162. XMapWindow(xw.dpy, xw.win);
  3163. xhints();
  3164. XSync(xw.dpy, False);
  3165. }
  3166. int
  3167. xmakeglyphfontspecs(XftGlyphFontSpec *specs, const Glyph *glyphs, int len, int x, int y)
  3168. {
  3169. float winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch, xp, yp;
  3170. ushort mode, prevmode = USHRT_MAX;
  3171. Font *font = &dc.font;
  3172. int frcflags = FRC_NORMAL;
  3173. float runewidth = xw.cw;
  3174. Rune rune;
  3175. FT_UInt glyphidx;
  3176. FcResult fcres;
  3177. FcPattern *fcpattern, *fontpattern;
  3178. FcFontSet *fcsets[] = { NULL };
  3179. FcCharSet *fccharset;
  3180. int i, f, numspecs = 0;
  3181. for (i = 0, xp = winx, yp = winy + font->ascent; i < len; ++i) {
  3182. /* Fetch rune and mode for current glyph. */
  3183. rune = glyphs[i].u;
  3184. mode = glyphs[i].mode;
  3185. /* Skip dummy wide-character spacing. */
  3186. if (mode == ATTR_WDUMMY)
  3187. continue;
  3188. /* Determine font for glyph if different from previous glyph. */
  3189. if (prevmode != mode) {
  3190. prevmode = mode;
  3191. font = &dc.font;
  3192. frcflags = FRC_NORMAL;
  3193. runewidth = xw.cw * ((mode & ATTR_WIDE) ? 2.0f : 1.0f);
  3194. if ((mode & ATTR_ITALIC) && (mode & ATTR_BOLD)) {
  3195. font = &dc.ibfont;
  3196. frcflags = FRC_ITALICBOLD;
  3197. } else if (mode & ATTR_ITALIC) {
  3198. font = &dc.ifont;
  3199. frcflags = FRC_ITALIC;
  3200. } else if (mode & ATTR_BOLD) {
  3201. font = &dc.bfont;
  3202. frcflags = FRC_BOLD;
  3203. }
  3204. yp = winy + font->ascent;
  3205. }
  3206. /* Lookup character index with default font. */
  3207. glyphidx = XftCharIndex(xw.dpy, font->match, rune);
  3208. if (glyphidx) {
  3209. specs[numspecs].font = font->match;
  3210. specs[numspecs].glyph = glyphidx;
  3211. specs[numspecs].x = (short)xp;
  3212. specs[numspecs].y = (short)yp;
  3213. xp += runewidth;
  3214. numspecs++;
  3215. continue;
  3216. }
  3217. /* Fallback on font cache, search the font cache for match. */
  3218. for (f = 0; f < frclen; f++) {
  3219. glyphidx = XftCharIndex(xw.dpy, frc[f].font, rune);
  3220. /* Everything correct. */
  3221. if (glyphidx && frc[f].flags == frcflags)
  3222. break;
  3223. /* We got a default font for a not found glyph. */
  3224. if (!glyphidx && frc[f].flags == frcflags
  3225. && frc[f].unicodep == rune) {
  3226. break;
  3227. }
  3228. }
  3229. /* Nothing was found. Use fontconfig to find matching font. */
  3230. if (f >= frclen) {
  3231. if (!font->set)
  3232. font->set = FcFontSort(0, font->pattern,
  3233. 1, 0, &fcres);
  3234. fcsets[0] = font->set;
  3235. /*
  3236. * Nothing was found in the cache. Now use
  3237. * some dozen of Fontconfig calls to get the
  3238. * font for one single character.
  3239. *
  3240. * Xft and fontconfig are design failures.
  3241. */
  3242. fcpattern = FcPatternDuplicate(font->pattern);
  3243. fccharset = FcCharSetCreate();
  3244. FcCharSetAddChar(fccharset, rune);
  3245. FcPatternAddCharSet(fcpattern, FC_CHARSET,
  3246. fccharset);
  3247. FcPatternAddBool(fcpattern, FC_SCALABLE, 1);
  3248. FcConfigSubstitute(0, fcpattern,
  3249. FcMatchPattern);
  3250. FcDefaultSubstitute(fcpattern);
  3251. fontpattern = FcFontSetMatch(0, fcsets, 1,
  3252. fcpattern, &fcres);
  3253. /*
  3254. * Overwrite or create the new cache entry.
  3255. */
  3256. if (frclen >= LEN(frc)) {
  3257. frclen = LEN(frc) - 1;
  3258. XftFontClose(xw.dpy, frc[frclen].font);
  3259. frc[frclen].unicodep = 0;
  3260. }
  3261. frc[frclen].font = XftFontOpenPattern(xw.dpy,
  3262. fontpattern);
  3263. frc[frclen].flags = frcflags;
  3264. frc[frclen].unicodep = rune;
  3265. glyphidx = XftCharIndex(xw.dpy, frc[frclen].font, rune);
  3266. f = frclen;
  3267. frclen++;
  3268. FcPatternDestroy(fcpattern);
  3269. FcCharSetDestroy(fccharset);
  3270. }
  3271. specs[numspecs].font = frc[f].font;
  3272. specs[numspecs].glyph = glyphidx;
  3273. specs[numspecs].x = (short)xp;
  3274. specs[numspecs].y = (short)(winy + frc[f].font->ascent);
  3275. xp += runewidth;
  3276. numspecs++;
  3277. }
  3278. return numspecs;
  3279. }
  3280. void
  3281. xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, int y)
  3282. {
  3283. int charlen = len * ((base.mode & ATTR_WIDE) ? 2 : 1);
  3284. int winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch,
  3285. width = charlen * xw.cw;
  3286. Color *fg, *bg, *temp, revfg, revbg, truefg, truebg;
  3287. XRenderColor colfg, colbg;
  3288. XRectangle r;
  3289. /* Determine foreground and background colors based on mode. */
  3290. if (base.fg == defaultfg) {
  3291. if (base.mode & ATTR_ITALIC)
  3292. base.fg = defaultitalic;
  3293. else if ((base.mode & ATTR_ITALIC) && (base.mode & ATTR_BOLD))
  3294. base.fg = defaultitalic;
  3295. else if (base.mode & ATTR_UNDERLINE)
  3296. base.fg = defaultunderline;
  3297. }
  3298. if (IS_TRUECOL(base.fg)) {
  3299. colfg.alpha = 0xffff;
  3300. colfg.red = TRUERED(base.fg);
  3301. colfg.green = TRUEGREEN(base.fg);
  3302. colfg.blue = TRUEBLUE(base.fg);
  3303. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &truefg);
  3304. fg = &truefg;
  3305. } else {
  3306. fg = &dc.col[base.fg];
  3307. }
  3308. if (IS_TRUECOL(base.bg)) {
  3309. colbg.alpha = 0xffff;
  3310. colbg.green = TRUEGREEN(base.bg);
  3311. colbg.red = TRUERED(base.bg);
  3312. colbg.blue = TRUEBLUE(base.bg);
  3313. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &truebg);
  3314. bg = &truebg;
  3315. } else {
  3316. bg = &dc.col[base.bg];
  3317. }
  3318. /* Change basic system colors [0-7] to bright system colors [8-15] */
  3319. if ((base.mode & ATTR_BOLD_FAINT) == ATTR_BOLD && BETWEEN(base.fg, 0, 7))
  3320. fg = &dc.col[base.fg + 8];
  3321. if (IS_SET(MODE_REVERSE)) {
  3322. if (fg == &dc.col[defaultfg]) {
  3323. fg = &dc.col[defaultbg];
  3324. } else {
  3325. colfg.red = ~fg->color.red;
  3326. colfg.green = ~fg->color.green;
  3327. colfg.blue = ~fg->color.blue;
  3328. colfg.alpha = fg->color.alpha;
  3329. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg,
  3330. &revfg);
  3331. fg = &revfg;
  3332. }
  3333. if (bg == &dc.col[defaultbg]) {
  3334. bg = &dc.col[defaultfg];
  3335. } else {
  3336. colbg.red = ~bg->color.red;
  3337. colbg.green = ~bg->color.green;
  3338. colbg.blue = ~bg->color.blue;
  3339. colbg.alpha = bg->color.alpha;
  3340. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg,
  3341. &revbg);
  3342. bg = &revbg;
  3343. }
  3344. }
  3345. if (base.mode & ATTR_REVERSE) {
  3346. temp = fg;
  3347. fg = bg;
  3348. bg = temp;
  3349. }
  3350. if ((base.mode & ATTR_BOLD_FAINT) == ATTR_FAINT) {
  3351. colfg.red = fg->color.red / 2;
  3352. colfg.green = fg->color.green / 2;
  3353. colfg.blue = fg->color.blue / 2;
  3354. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &revfg);
  3355. fg = &revfg;
  3356. }
  3357. if (base.mode & ATTR_BLINK && term.mode & MODE_BLINK)
  3358. fg = bg;
  3359. if (base.mode & ATTR_INVISIBLE)
  3360. fg = bg;
  3361. /* Intelligent cleaning up of the borders. */
  3362. if (x == 0) {
  3363. xclear(0, (y == 0)? 0 : winy, borderpx,
  3364. winy + xw.ch + ((y >= term.row-1)? xw.h : 0));
  3365. }
  3366. if (x + charlen >= term.col) {
  3367. xclear(winx + width, (y == 0)? 0 : winy, xw.w,
  3368. ((y >= term.row-1)? xw.h : (winy + xw.ch)));
  3369. }
  3370. if (y == 0)
  3371. xclear(winx, 0, winx + width, borderpx);
  3372. if (y == term.row-1)
  3373. xclear(winx, winy + xw.ch, winx + width, xw.h);
  3374. /* Clean up the region we want to draw to. */
  3375. XftDrawRect(xw.draw, bg, winx, winy, width, xw.ch);
  3376. /* Set the clip region because Xft is sometimes dirty. */
  3377. r.x = 0;
  3378. r.y = 0;
  3379. r.height = xw.ch;
  3380. r.width = width;
  3381. XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
  3382. /* Render the glyphs. */
  3383. XftDrawGlyphFontSpec(xw.draw, fg, specs, len);
  3384. /* Render underline and strikethrough. */
  3385. if (base.mode & ATTR_UNDERLINE) {
  3386. XftDrawRect(xw.draw, fg, winx, winy + dc.font.ascent + 1,
  3387. width, 1);
  3388. }
  3389. if (base.mode & ATTR_STRUCK) {
  3390. XftDrawRect(xw.draw, fg, winx, winy + 2 * dc.font.ascent / 3,
  3391. width, 1);
  3392. }
  3393. /* Reset clip to none. */
  3394. XftDrawSetClip(xw.draw, 0);
  3395. }
  3396. void
  3397. xdrawglyph(Glyph g, int x, int y)
  3398. {
  3399. int numspecs;
  3400. XftGlyphFontSpec spec;
  3401. numspecs = xmakeglyphfontspecs(&spec, &g, 1, x, y);
  3402. xdrawglyphfontspecs(&spec, g, numspecs, x, y);
  3403. }
  3404. void
  3405. xdrawcursor(void)
  3406. {
  3407. static int oldx = 0, oldy = 0;
  3408. int curx;
  3409. Glyph g = {' ', ATTR_NULL, defaultbg, defaultcs}, og;
  3410. int ena_sel = sel.ob.x != -1 && sel.alt == IS_SET(MODE_ALTSCREEN);
  3411. Color drawcol;
  3412. LIMIT(oldx, 0, term.col-1);
  3413. LIMIT(oldy, 0, term.row-1);
  3414. curx = term.c.x;
  3415. /* adjust position if in dummy */
  3416. if (term.line[oldy][oldx].mode & ATTR_WDUMMY)
  3417. oldx--;
  3418. if (term.line[term.c.y][curx].mode & ATTR_WDUMMY)
  3419. curx--;
  3420. /* remove the old cursor */
  3421. og = term.line[oldy][oldx];
  3422. if (ena_sel && selected(oldx, oldy))
  3423. og.mode ^= ATTR_REVERSE;
  3424. xdrawglyph(og, oldx, oldy);
  3425. g.u = term.line[term.c.y][term.c.x].u;
  3426. /*
  3427. * Select the right color for the right mode.
  3428. */
  3429. if (IS_SET(MODE_REVERSE)) {
  3430. g.mode |= ATTR_REVERSE;
  3431. g.bg = defaultfg;
  3432. if (ena_sel && selected(term.c.x, term.c.y)) {
  3433. drawcol = dc.col[defaultcs];
  3434. g.fg = defaultrcs;
  3435. } else {
  3436. drawcol = dc.col[defaultrcs];
  3437. g.fg = defaultcs;
  3438. }
  3439. } else {
  3440. if (ena_sel && selected(term.c.x, term.c.y)) {
  3441. drawcol = dc.col[defaultrcs];
  3442. g.fg = defaultfg;
  3443. g.bg = defaultrcs;
  3444. } else {
  3445. drawcol = dc.col[defaultcs];
  3446. }
  3447. }
  3448. if (IS_SET(MODE_HIDE))
  3449. return;
  3450. /* draw the new one */
  3451. if (xw.state & WIN_FOCUSED) {
  3452. switch (xw.cursor) {
  3453. case 7: /* st extension: snowman */
  3454. utf8decode("☃", &g.u, UTF_SIZ);
  3455. case 0: /* Blinking Block */
  3456. case 1: /* Blinking Block (Default) */
  3457. case 2: /* Steady Block */
  3458. g.mode |= term.line[term.c.y][curx].mode & ATTR_WIDE;
  3459. xdrawglyph(g, term.c.x, term.c.y);
  3460. break;
  3461. case 3: /* Blinking Underline */
  3462. case 4: /* Steady Underline */
  3463. XftDrawRect(xw.draw, &drawcol,
  3464. borderpx + curx * xw.cw,
  3465. borderpx + (term.c.y + 1) * xw.ch - \
  3466. cursorthickness,
  3467. xw.cw, cursorthickness);
  3468. break;
  3469. case 5: /* Blinking bar */
  3470. case 6: /* Steady bar */
  3471. XftDrawRect(xw.draw, &drawcol,
  3472. borderpx + curx * xw.cw,
  3473. borderpx + term.c.y * xw.ch,
  3474. cursorthickness, xw.ch);
  3475. break;
  3476. }
  3477. } else {
  3478. XftDrawRect(xw.draw, &drawcol,
  3479. borderpx + curx * xw.cw,
  3480. borderpx + term.c.y * xw.ch,
  3481. xw.cw - 1, 1);
  3482. XftDrawRect(xw.draw, &drawcol,
  3483. borderpx + curx * xw.cw,
  3484. borderpx + term.c.y * xw.ch,
  3485. 1, xw.ch - 1);
  3486. XftDrawRect(xw.draw, &drawcol,
  3487. borderpx + (curx + 1) * xw.cw - 1,
  3488. borderpx + term.c.y * xw.ch,
  3489. 1, xw.ch - 1);
  3490. XftDrawRect(xw.draw, &drawcol,
  3491. borderpx + curx * xw.cw,
  3492. borderpx + (term.c.y + 1) * xw.ch - 1,
  3493. xw.cw, 1);
  3494. }
  3495. oldx = curx, oldy = term.c.y;
  3496. }
  3497. void
  3498. xsettitle(char *p)
  3499. {
  3500. XTextProperty prop;
  3501. Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
  3502. &prop);
  3503. XSetWMName(xw.dpy, xw.win, &prop);
  3504. XSetTextProperty(xw.dpy, xw.win, &prop, xw.netwmname);
  3505. XFree(prop.value);
  3506. }
  3507. void
  3508. xresettitle(void)
  3509. {
  3510. xsettitle(opt_title ? opt_title : "st");
  3511. }
  3512. void
  3513. redraw(void)
  3514. {
  3515. tfulldirt();
  3516. draw();
  3517. }
  3518. void
  3519. draw(void)
  3520. {
  3521. drawregion(0, 0, term.col, term.row);
  3522. XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.w,
  3523. xw.h, 0, 0);
  3524. XSetForeground(xw.dpy, dc.gc,
  3525. dc.col[IS_SET(MODE_REVERSE)?
  3526. defaultfg : defaultbg].pixel);
  3527. }
  3528. void
  3529. drawregion(int x1, int y1, int x2, int y2)
  3530. {
  3531. int i, x, y, ox, numspecs;
  3532. Glyph base, new;
  3533. XftGlyphFontSpec *specs;
  3534. int ena_sel = sel.ob.x != -1 && sel.alt == IS_SET(MODE_ALTSCREEN);
  3535. if (!(xw.state & WIN_VISIBLE))
  3536. return;
  3537. for (y = y1; y < y2; y++) {
  3538. if (!term.dirty[y])
  3539. continue;
  3540. xtermclear(0, y, term.col, y);
  3541. term.dirty[y] = 0;
  3542. specs = term.specbuf;
  3543. numspecs = xmakeglyphfontspecs(specs, &term.line[y][x1], x2 - x1, x1, y);
  3544. i = ox = 0;
  3545. for (x = x1; x < x2 && i < numspecs; x++) {
  3546. new = term.line[y][x];
  3547. if (new.mode == ATTR_WDUMMY)
  3548. continue;
  3549. if (ena_sel && selected(x, y))
  3550. new.mode ^= ATTR_REVERSE;
  3551. if (i > 0 && ATTRCMP(base, new)) {
  3552. xdrawglyphfontspecs(specs, base, i, ox, y);
  3553. specs += i;
  3554. numspecs -= i;
  3555. i = 0;
  3556. }
  3557. if (i == 0) {
  3558. ox = x;
  3559. base = new;
  3560. }
  3561. i++;
  3562. }
  3563. if (i > 0)
  3564. xdrawglyphfontspecs(specs, base, i, ox, y);
  3565. }
  3566. xdrawcursor();
  3567. }
  3568. void
  3569. expose(XEvent *ev)
  3570. {
  3571. redraw();
  3572. }
  3573. void
  3574. visibility(XEvent *ev)
  3575. {
  3576. XVisibilityEvent *e = &ev->xvisibility;
  3577. MODBIT(xw.state, e->state != VisibilityFullyObscured, WIN_VISIBLE);
  3578. }
  3579. void
  3580. unmap(XEvent *ev)
  3581. {
  3582. xw.state &= ~WIN_VISIBLE;
  3583. }
  3584. void
  3585. xsetpointermotion(int set)
  3586. {
  3587. MODBIT(xw.attrs.event_mask, set, PointerMotionMask);
  3588. XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask, &xw.attrs);
  3589. }
  3590. void
  3591. xseturgency(int add)
  3592. {
  3593. XWMHints *h = XGetWMHints(xw.dpy, xw.win);
  3594. MODBIT(h->flags, add, XUrgencyHint);
  3595. XSetWMHints(xw.dpy, xw.win, h);
  3596. XFree(h);
  3597. }
  3598. void
  3599. focus(XEvent *ev)
  3600. {
  3601. XFocusChangeEvent *e = &ev->xfocus;
  3602. if (e->mode == NotifyGrab)
  3603. return;
  3604. if (ev->type == FocusIn) {
  3605. XSetICFocus(xw.xic);
  3606. xw.state |= WIN_FOCUSED;
  3607. xseturgency(0);
  3608. if (IS_SET(MODE_FOCUS))
  3609. ttywrite("\033[I", 3);
  3610. } else {
  3611. XUnsetICFocus(xw.xic);
  3612. xw.state &= ~WIN_FOCUSED;
  3613. if (IS_SET(MODE_FOCUS))
  3614. ttywrite("\033[O", 3);
  3615. }
  3616. }
  3617. int
  3618. match(uint mask, uint state)
  3619. {
  3620. return mask == XK_ANY_MOD || mask == (state & ~ignoremod);
  3621. }
  3622. void
  3623. numlock(const Arg *dummy)
  3624. {
  3625. term.numlock ^= 1;
  3626. }
  3627. char*
  3628. kmap(KeySym k, uint state)
  3629. {
  3630. Key *kp;
  3631. int i;
  3632. /* Check for mapped keys out of X11 function keys. */
  3633. for (i = 0; i < LEN(mappedkeys); i++) {
  3634. if (mappedkeys[i] == k)
  3635. break;
  3636. }
  3637. if (i == LEN(mappedkeys)) {
  3638. if ((k & 0xFFFF) < 0xFD00)
  3639. return NULL;
  3640. }
  3641. for (kp = key; kp < key + LEN(key); kp++) {
  3642. if (kp->k != k)
  3643. continue;
  3644. if (!match(kp->mask, state))
  3645. continue;
  3646. if (IS_SET(MODE_APPKEYPAD) ? kp->appkey < 0 : kp->appkey > 0)
  3647. continue;
  3648. if (term.numlock && kp->appkey == 2)
  3649. continue;
  3650. if (IS_SET(MODE_APPCURSOR) ? kp->appcursor < 0 : kp->appcursor > 0)
  3651. continue;
  3652. if (IS_SET(MODE_CRLF) ? kp->crlf < 0 : kp->crlf > 0)
  3653. continue;
  3654. return kp->s;
  3655. }
  3656. return NULL;
  3657. }
  3658. void
  3659. kpress(XEvent *ev)
  3660. {
  3661. XKeyEvent *e = &ev->xkey;
  3662. KeySym ksym;
  3663. char buf[32], *customkey;
  3664. int len;
  3665. Rune c;
  3666. Status status;
  3667. Shortcut *bp;
  3668. if (IS_SET(MODE_KBDLOCK))
  3669. return;
  3670. len = XmbLookupString(xw.xic, e, buf, sizeof buf, &ksym, &status);
  3671. /* 1. shortcuts */
  3672. for (bp = shortcuts; bp < shortcuts + LEN(shortcuts); bp++) {
  3673. if (ksym == bp->keysym && match(bp->mod, e->state)) {
  3674. bp->func(&(bp->arg));
  3675. return;
  3676. }
  3677. }
  3678. /* 2. custom keys from config.h */
  3679. if ((customkey = kmap(ksym, e->state))) {
  3680. ttysend(customkey, strlen(customkey));
  3681. return;
  3682. }
  3683. /* 3. composed string from input method */
  3684. if (len == 0)
  3685. return;
  3686. if (len == 1 && e->state & Mod1Mask) {
  3687. if (IS_SET(MODE_8BIT)) {
  3688. if (*buf < 0177) {
  3689. c = *buf | 0x80;
  3690. len = utf8encode(c, buf);
  3691. }
  3692. } else {
  3693. buf[1] = buf[0];
  3694. buf[0] = '\033';
  3695. len = 2;
  3696. }
  3697. }
  3698. ttysend(buf, len);
  3699. }
  3700. void
  3701. cmessage(XEvent *e)
  3702. {
  3703. /*
  3704. * See xembed specs
  3705. * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
  3706. */
  3707. if (e->xclient.message_type == xw.xembed && e->xclient.format == 32) {
  3708. if (e->xclient.data.l[1] == XEMBED_FOCUS_IN) {
  3709. xw.state |= WIN_FOCUSED;
  3710. xseturgency(0);
  3711. } else if (e->xclient.data.l[1] == XEMBED_FOCUS_OUT) {
  3712. xw.state &= ~WIN_FOCUSED;
  3713. }
  3714. } else if (e->xclient.data.l[0] == xw.wmdeletewin) {
  3715. /* Send SIGHUP to shell */
  3716. kill(pid, SIGHUP);
  3717. exit(0);
  3718. }
  3719. }
  3720. void
  3721. cresize(int width, int height)
  3722. {
  3723. int col, row;
  3724. if (width != 0)
  3725. xw.w = width;
  3726. if (height != 0)
  3727. xw.h = height;
  3728. col = (xw.w - 2 * borderpx) / xw.cw;
  3729. row = (xw.h - 2 * borderpx) / xw.ch;
  3730. tresize(col, row);
  3731. xresize(col, row);
  3732. ttyresize();
  3733. }
  3734. void
  3735. resize(XEvent *e)
  3736. {
  3737. if (e->xconfigure.width == xw.w && e->xconfigure.height == xw.h)
  3738. return;
  3739. cresize(e->xconfigure.width, e->xconfigure.height);
  3740. }
  3741. void
  3742. run(void)
  3743. {
  3744. XEvent ev;
  3745. int w = xw.w, h = xw.h;
  3746. fd_set rfd;
  3747. int xfd = XConnectionNumber(xw.dpy), xev, blinkset = 0, dodraw = 0;
  3748. struct timespec drawtimeout, *tv = NULL, now, last, lastblink;
  3749. long deltatime;
  3750. /* Waiting for window mapping */
  3751. do {
  3752. XNextEvent(xw.dpy, &ev);
  3753. /*
  3754. * This XFilterEvent call is required because of XOpenIM. It
  3755. * does filter out the key event and some client message for
  3756. * the input method too.
  3757. */
  3758. if (XFilterEvent(&ev, None))
  3759. continue;
  3760. if (ev.type == ConfigureNotify) {
  3761. w = ev.xconfigure.width;
  3762. h = ev.xconfigure.height;
  3763. }
  3764. } while (ev.type != MapNotify);
  3765. ttynew();
  3766. cresize(w, h);
  3767. clock_gettime(CLOCK_MONOTONIC, &last);
  3768. lastblink = last;
  3769. for (xev = actionfps;;) {
  3770. FD_ZERO(&rfd);
  3771. FD_SET(cmdfd, &rfd);
  3772. FD_SET(xfd, &rfd);
  3773. if (pselect(MAX(xfd, cmdfd)+1, &rfd, NULL, NULL, tv, NULL) < 0) {
  3774. if (errno == EINTR)
  3775. continue;
  3776. die("select failed: %s\n", strerror(errno));
  3777. }
  3778. if (FD_ISSET(cmdfd, &rfd)) {
  3779. ttyread();
  3780. if (blinktimeout) {
  3781. blinkset = tattrset(ATTR_BLINK);
  3782. if (!blinkset)
  3783. MODBIT(term.mode, 0, MODE_BLINK);
  3784. }
  3785. }
  3786. if (FD_ISSET(xfd, &rfd))
  3787. xev = actionfps;
  3788. clock_gettime(CLOCK_MONOTONIC, &now);
  3789. drawtimeout.tv_sec = 0;
  3790. drawtimeout.tv_nsec = (1000 * 1E6)/ xfps;
  3791. tv = &drawtimeout;
  3792. dodraw = 0;
  3793. if (blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) {
  3794. tsetdirtattr(ATTR_BLINK);
  3795. term.mode ^= MODE_BLINK;
  3796. lastblink = now;
  3797. dodraw = 1;
  3798. }
  3799. deltatime = TIMEDIFF(now, last);
  3800. if (deltatime > 1000 / (xev ? xfps : actionfps)) {
  3801. dodraw = 1;
  3802. last = now;
  3803. }
  3804. if (dodraw) {
  3805. while (XPending(xw.dpy)) {
  3806. XNextEvent(xw.dpy, &ev);
  3807. if (XFilterEvent(&ev, None))
  3808. continue;
  3809. if (handler[ev.type])
  3810. (handler[ev.type])(&ev);
  3811. }
  3812. draw();
  3813. XFlush(xw.dpy);
  3814. if (xev && !FD_ISSET(xfd, &rfd))
  3815. xev--;
  3816. if (!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd)) {
  3817. if (blinkset) {
  3818. if (TIMEDIFF(now, lastblink) \
  3819. > blinktimeout) {
  3820. drawtimeout.tv_nsec = 1000;
  3821. } else {
  3822. drawtimeout.tv_nsec = (1E6 * \
  3823. (blinktimeout - \
  3824. TIMEDIFF(now,
  3825. lastblink)));
  3826. }
  3827. drawtimeout.tv_sec = \
  3828. drawtimeout.tv_nsec / 1E9;
  3829. drawtimeout.tv_nsec %= (long)1E9;
  3830. } else {
  3831. tv = NULL;
  3832. }
  3833. }
  3834. }
  3835. }
  3836. }
  3837. void
  3838. usage(void)
  3839. {
  3840. die("%s " VERSION " (c) 2010-2015 st engineers\n"
  3841. "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
  3842. " [-i] [-t title] [-T title] [-w windowid] [-e command ...]"
  3843. " [command ...]\n"
  3844. " st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
  3845. " [-i] [-t title] [-T title] [-w windowid] -l line"
  3846. " [stty_args ...]\n",
  3847. argv0);
  3848. }
  3849. int
  3850. main(int argc, char *argv[])
  3851. {
  3852. uint cols = 80, rows = 24;
  3853. xw.l = xw.t = 0;
  3854. xw.isfixed = False;
  3855. xw.cursor = cursorshape;
  3856. ARGBEGIN {
  3857. case 'a':
  3858. allowaltscreen = 0;
  3859. break;
  3860. case 'c':
  3861. opt_class = EARGF(usage());
  3862. break;
  3863. case 'e':
  3864. if (argc > 0)
  3865. --argc, ++argv;
  3866. goto run;
  3867. case 'f':
  3868. opt_font = EARGF(usage());
  3869. break;
  3870. case 'g':
  3871. xw.gm = XParseGeometry(EARGF(usage()),
  3872. &xw.l, &xw.t, &cols, &rows);
  3873. break;
  3874. case 'i':
  3875. xw.isfixed = 1;
  3876. break;
  3877. case 'o':
  3878. opt_io = EARGF(usage());
  3879. break;
  3880. case 'l':
  3881. opt_line = EARGF(usage());
  3882. break;
  3883. case 't':
  3884. case 'T':
  3885. opt_title = EARGF(usage());
  3886. break;
  3887. case 'w':
  3888. opt_embed = EARGF(usage());
  3889. break;
  3890. case 'v':
  3891. default:
  3892. usage();
  3893. } ARGEND;
  3894. run:
  3895. if (argc > 0) {
  3896. /* eat all remaining arguments */
  3897. opt_cmd = argv;
  3898. if (!opt_title && !opt_line)
  3899. opt_title = basename(xstrdup(argv[0]));
  3900. }
  3901. setlocale(LC_CTYPE, "");
  3902. XSetLocaleModifiers("");
  3903. tnew(MAX(cols, 1), MAX(rows, 1));
  3904. xinit();
  3905. selinit();
  3906. run();
  3907. return 0;
  3908. }