st.c 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423
  1. /* See LICENSE for licence 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 <stdbool.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <string.h>
  13. #include <signal.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 <time.h>
  21. #include <unistd.h>
  22. #include <X11/Xatom.h>
  23. #include <X11/Xlib.h>
  24. #include <X11/Xutil.h>
  25. #include <X11/cursorfont.h>
  26. #include <X11/keysym.h>
  27. #include <X11/Xft/Xft.h>
  28. #include <fontconfig/fontconfig.h>
  29. #include "arg.h"
  30. char *argv0;
  31. #define Glyph Glyph_
  32. #define Font Font_
  33. #define Draw XftDraw *
  34. #define Colour XftColor
  35. #define Colourmap Colormap
  36. #if defined(__linux)
  37. #include <pty.h>
  38. #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
  39. #include <util.h>
  40. #elif defined(__FreeBSD__) || defined(__DragonFly__)
  41. #include <libutil.h>
  42. #endif
  43. /* XEMBED messages */
  44. #define XEMBED_FOCUS_IN 4
  45. #define XEMBED_FOCUS_OUT 5
  46. /* Arbitrary sizes */
  47. #define UTF_SIZ 4
  48. #define ESC_BUF_SIZ (128*UTF_SIZ)
  49. #define ESC_ARG_SIZ 16
  50. #define STR_BUF_SIZ ESC_BUF_SIZ
  51. #define STR_ARG_SIZ ESC_ARG_SIZ
  52. #define DRAW_BUF_SIZ 20*1024
  53. #define XK_ANY_MOD UINT_MAX
  54. #define XK_NO_MOD 0
  55. #define XK_SWITCH_MOD (1<<13)
  56. #define REDRAW_TIMEOUT (80*1000) /* 80 ms */
  57. /* macros */
  58. #define SERRNO strerror(errno)
  59. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  60. #define MAX(a, b) ((a) < (b) ? (b) : (a))
  61. #define LEN(a) (sizeof(a) / sizeof(a[0]))
  62. #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
  63. #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
  64. #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
  65. #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
  66. #define IS_SET(flag) ((term.mode & (flag)) != 0)
  67. #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_usec-t2.tv_usec)/1000)
  68. #define VT102ID "\033[?6c"
  69. enum glyph_attribute {
  70. ATTR_NULL = 0,
  71. ATTR_REVERSE = 1,
  72. ATTR_UNDERLINE = 2,
  73. ATTR_BOLD = 4,
  74. ATTR_GFX = 8,
  75. ATTR_ITALIC = 16,
  76. ATTR_BLINK = 32,
  77. };
  78. enum cursor_movement {
  79. CURSOR_SAVE,
  80. CURSOR_LOAD
  81. };
  82. enum cursor_state {
  83. CURSOR_DEFAULT = 0,
  84. CURSOR_WRAPNEXT = 1,
  85. CURSOR_ORIGIN = 2
  86. };
  87. enum glyph_state {
  88. GLYPH_SET = 1,
  89. GLYPH_DIRTY = 2
  90. };
  91. enum term_mode {
  92. MODE_WRAP = 1,
  93. MODE_INSERT = 2,
  94. MODE_APPKEYPAD = 4,
  95. MODE_ALTSCREEN = 8,
  96. MODE_CRLF = 16,
  97. MODE_MOUSEBTN = 32,
  98. MODE_MOUSEMOTION = 64,
  99. MODE_MOUSE = 32|64,
  100. MODE_REVERSE = 128,
  101. MODE_KBDLOCK = 256,
  102. MODE_HIDE = 512,
  103. MODE_ECHO = 1024,
  104. MODE_APPCURSOR = 2048,
  105. MODE_MOUSESGR = 4096,
  106. };
  107. enum escape_state {
  108. ESC_START = 1,
  109. ESC_CSI = 2,
  110. ESC_STR = 4, /* DSC, OSC, PM, APC */
  111. ESC_ALTCHARSET = 8,
  112. ESC_STR_END = 16, /* a final string was encountered */
  113. ESC_TEST = 32, /* Enter in test mode */
  114. };
  115. enum window_state {
  116. WIN_VISIBLE = 1,
  117. WIN_REDRAW = 2,
  118. WIN_FOCUSED = 4
  119. };
  120. enum selection_type {
  121. SEL_REGULAR = 1,
  122. SEL_RECTANGULAR = 2
  123. };
  124. /* bit macro */
  125. #undef B0
  126. enum { B0=1, B1=2, B2=4, B3=8, B4=16, B5=32, B6=64, B7=128 };
  127. typedef unsigned char uchar;
  128. typedef unsigned int uint;
  129. typedef unsigned long ulong;
  130. typedef unsigned short ushort;
  131. typedef struct {
  132. char c[UTF_SIZ]; /* character code */
  133. uchar mode; /* attribute flags */
  134. ushort fg; /* foreground */
  135. ushort bg; /* background */
  136. uchar state; /* state flags */
  137. } Glyph;
  138. typedef Glyph *Line;
  139. typedef struct {
  140. Glyph attr; /* current char attributes */
  141. int x;
  142. int y;
  143. char state;
  144. } TCursor;
  145. /* CSI Escape sequence structs */
  146. /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
  147. typedef struct {
  148. char buf[ESC_BUF_SIZ]; /* raw string */
  149. int len; /* raw string length */
  150. char priv;
  151. int arg[ESC_ARG_SIZ];
  152. int narg; /* nb of args */
  153. char mode;
  154. } CSIEscape;
  155. /* STR Escape sequence structs */
  156. /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
  157. typedef struct {
  158. char type; /* ESC type ... */
  159. char buf[STR_BUF_SIZ]; /* raw string */
  160. int len; /* raw string length */
  161. char *args[STR_ARG_SIZ];
  162. int narg; /* nb of args */
  163. } STREscape;
  164. /* Internal representation of the screen */
  165. typedef struct {
  166. int row; /* nb row */
  167. int col; /* nb col */
  168. Line *line; /* screen */
  169. Line *alt; /* alternate screen */
  170. bool *dirty; /* dirtyness of lines */
  171. TCursor c; /* cursor */
  172. int top; /* top scroll limit */
  173. int bot; /* bottom scroll limit */
  174. int mode; /* terminal mode flags */
  175. int esc; /* escape state flags */
  176. bool numlock; /* lock numbers in keyboard */
  177. bool *tabs;
  178. } Term;
  179. /* Purely graphic info */
  180. typedef struct {
  181. Display *dpy;
  182. Colourmap cmap;
  183. Window win;
  184. Drawable buf;
  185. Atom xembed, wmdeletewin;
  186. XIM xim;
  187. XIC xic;
  188. Draw draw;
  189. Visual *vis;
  190. int scr;
  191. bool isfixed; /* is fixed geometry? */
  192. int fx, fy, fw, fh; /* fixed geometry */
  193. int tw, th; /* tty width and height */
  194. int w, h; /* window width and height */
  195. int ch; /* char height */
  196. int cw; /* char width */
  197. char state; /* focus, redraw, visible */
  198. } XWindow;
  199. typedef struct {
  200. KeySym k;
  201. uint mask;
  202. char s[ESC_BUF_SIZ];
  203. /* three valued logic variables: 0 indifferent, 1 on, -1 off */
  204. signed char appkey; /* application keypad */
  205. signed char appcursor; /* application cursor */
  206. signed char crlf; /* crlf mode */
  207. } Key;
  208. /* TODO: use better name for vars... */
  209. typedef struct {
  210. int mode;
  211. int type;
  212. int bx, by;
  213. int ex, ey;
  214. struct {
  215. int x, y;
  216. } b, e;
  217. char *clip;
  218. Atom xtarget;
  219. bool alt;
  220. struct timeval tclick1;
  221. struct timeval tclick2;
  222. } Selection;
  223. typedef union {
  224. int i;
  225. unsigned int ui;
  226. float f;
  227. const void *v;
  228. } Arg;
  229. typedef struct {
  230. unsigned int mod;
  231. KeySym keysym;
  232. void (*func)(const Arg *);
  233. const Arg arg;
  234. } Shortcut;
  235. /* function definitions used in config.h */
  236. static void clippaste(const Arg *);
  237. static void numlock(const Arg *);
  238. static void selpaste(const Arg *);
  239. static void xzoom(const Arg *);
  240. /* Config.h for applying patches and the configuration. */
  241. #include "config.h"
  242. /* Font structure */
  243. typedef struct {
  244. int height;
  245. int width;
  246. int ascent;
  247. int descent;
  248. short lbearing;
  249. short rbearing;
  250. XftFont *match;
  251. FcFontSet *set;
  252. FcPattern *pattern;
  253. } Font;
  254. /* Drawing Context */
  255. typedef struct {
  256. Colour col[LEN(colorname) < 256 ? 256 : LEN(colorname)];
  257. Font font, bfont, ifont, ibfont;
  258. GC gc;
  259. } DC;
  260. static void die(const char *, ...);
  261. static void draw(void);
  262. static void redraw(int);
  263. static void drawregion(int, int, int, int);
  264. static void execsh(void);
  265. static void sigchld(int);
  266. static void run(void);
  267. static void csidump(void);
  268. static void csihandle(void);
  269. static void csiparse(void);
  270. static void csireset(void);
  271. static void strdump(void);
  272. static void strhandle(void);
  273. static void strparse(void);
  274. static void strreset(void);
  275. static void tclearregion(int, int, int, int);
  276. static void tcursor(int);
  277. static void tdeletechar(int);
  278. static void tdeleteline(int);
  279. static void tinsertblank(int);
  280. static void tinsertblankline(int);
  281. static void tmoveto(int, int);
  282. static void tmoveato(int x, int y);
  283. static void tnew(int, int);
  284. static void tnewline(int);
  285. static void tputtab(bool);
  286. static void tputc(char *, int);
  287. static void treset(void);
  288. static int tresize(int, int);
  289. static void tscrollup(int, int);
  290. static void tscrolldown(int, int);
  291. static void tsetattr(int*, int);
  292. static void tsetchar(char *, Glyph *, int, int);
  293. static void tsetscroll(int, int);
  294. static void tswapscreen(void);
  295. static void tsetdirt(int, int);
  296. static void tsetmode(bool, bool, int *, int);
  297. static void tfulldirt(void);
  298. static void techo(char *, int);
  299. static inline bool match(uint, uint);
  300. static void ttynew(void);
  301. static void ttyread(void);
  302. static void ttyresize(void);
  303. static void ttywrite(const char *, size_t);
  304. static void xdraws(char *, Glyph, int, int, int, int);
  305. static void xhints(void);
  306. static void xclear(int, int, int, int);
  307. static void xdrawcursor(void);
  308. static void xinit(void);
  309. static void xloadcols(void);
  310. static int xsetcolorname(int, const char *);
  311. static int xloadfont(Font *, FcPattern *);
  312. static void xloadfonts(char *, int);
  313. static void xsettitle(char *);
  314. static void xresettitle(void);
  315. static void xseturgency(int);
  316. static void xsetsel(char*);
  317. static void xtermclear(int, int, int, int);
  318. static void xunloadfonts(void);
  319. static void xresize(int, int);
  320. static void expose(XEvent *);
  321. static void visibility(XEvent *);
  322. static void unmap(XEvent *);
  323. static char *kmap(KeySym, uint);
  324. static void kpress(XEvent *);
  325. static void cmessage(XEvent *);
  326. static void cresize(int, int);
  327. static void resize(XEvent *);
  328. static void focus(XEvent *);
  329. static void brelease(XEvent *);
  330. static void bpress(XEvent *);
  331. static void bmotion(XEvent *);
  332. static void selnotify(XEvent *);
  333. static void selclear(XEvent *);
  334. static void selrequest(XEvent *);
  335. static void selinit(void);
  336. static inline bool selected(int, int);
  337. static void selcopy(void);
  338. static void selscroll(int, int);
  339. static int utf8decode(char *, long *);
  340. static int utf8encode(long *, char *);
  341. static int utf8size(char *);
  342. static int isfullutf8(char *, int);
  343. static ssize_t xwrite(int, char *, size_t);
  344. static void *xmalloc(size_t);
  345. static void *xrealloc(void *, size_t);
  346. static void *xcalloc(size_t, size_t);
  347. static void (*handler[LASTEvent])(XEvent *) = {
  348. [KeyPress] = kpress,
  349. [ClientMessage] = cmessage,
  350. [ConfigureNotify] = resize,
  351. [VisibilityNotify] = visibility,
  352. [UnmapNotify] = unmap,
  353. [Expose] = expose,
  354. [FocusIn] = focus,
  355. [FocusOut] = focus,
  356. [MotionNotify] = bmotion,
  357. [ButtonPress] = bpress,
  358. [ButtonRelease] = brelease,
  359. [SelectionClear] = selclear,
  360. [SelectionNotify] = selnotify,
  361. [SelectionRequest] = selrequest,
  362. };
  363. /* Globals */
  364. static DC dc;
  365. static XWindow xw;
  366. static Term term;
  367. static CSIEscape csiescseq;
  368. static STREscape strescseq;
  369. static int cmdfd;
  370. static pid_t pid;
  371. static Selection sel;
  372. static int iofd = -1;
  373. static char **opt_cmd = NULL;
  374. static char *opt_io = NULL;
  375. static char *opt_title = NULL;
  376. static char *opt_embed = NULL;
  377. static char *opt_class = NULL;
  378. static char *opt_font = NULL;
  379. static char *usedfont = NULL;
  380. static int usedfontsize = 0;
  381. /* Font Ring Cache */
  382. enum {
  383. FRC_NORMAL,
  384. FRC_ITALIC,
  385. FRC_BOLD,
  386. FRC_ITALICBOLD
  387. };
  388. typedef struct {
  389. XftFont *font;
  390. long c;
  391. int flags;
  392. } Fontcache;
  393. /*
  394. * Fontcache is a ring buffer, with frccur as current position and frclen as
  395. * the current length of used elements.
  396. */
  397. static Fontcache frc[1024];
  398. static int frccur = -1, frclen = 0;
  399. ssize_t
  400. xwrite(int fd, char *s, size_t len) {
  401. size_t aux = len;
  402. while(len > 0) {
  403. ssize_t r = write(fd, s, len);
  404. if(r < 0)
  405. return r;
  406. len -= r;
  407. s += r;
  408. }
  409. return aux;
  410. }
  411. void *
  412. xmalloc(size_t len) {
  413. void *p = malloc(len);
  414. if(!p)
  415. die("Out of memory\n");
  416. return p;
  417. }
  418. void *
  419. xrealloc(void *p, size_t len) {
  420. if((p = realloc(p, len)) == NULL)
  421. die("Out of memory\n");
  422. return p;
  423. }
  424. void *
  425. xcalloc(size_t nmemb, size_t size) {
  426. void *p = calloc(nmemb, size);
  427. if(!p)
  428. die("Out of memory\n");
  429. return p;
  430. }
  431. int
  432. utf8decode(char *s, long *u) {
  433. uchar c;
  434. int i, n, rtn;
  435. rtn = 1;
  436. c = *s;
  437. if(~c & B7) { /* 0xxxxxxx */
  438. *u = c;
  439. return rtn;
  440. } else if((c & (B7|B6|B5)) == (B7|B6)) { /* 110xxxxx */
  441. *u = c&(B4|B3|B2|B1|B0);
  442. n = 1;
  443. } else if((c & (B7|B6|B5|B4)) == (B7|B6|B5)) { /* 1110xxxx */
  444. *u = c&(B3|B2|B1|B0);
  445. n = 2;
  446. } else if((c & (B7|B6|B5|B4|B3)) == (B7|B6|B5|B4)) { /* 11110xxx */
  447. *u = c & (B2|B1|B0);
  448. n = 3;
  449. } else {
  450. goto invalid;
  451. }
  452. for(i = n, ++s; i > 0; --i, ++rtn, ++s) {
  453. c = *s;
  454. if((c & (B7|B6)) != B7) /* 10xxxxxx */
  455. goto invalid;
  456. *u <<= 6;
  457. *u |= c & (B5|B4|B3|B2|B1|B0);
  458. }
  459. if((n == 1 && *u < 0x80) ||
  460. (n == 2 && *u < 0x800) ||
  461. (n == 3 && *u < 0x10000) ||
  462. (*u >= 0xD800 && *u <= 0xDFFF)) {
  463. goto invalid;
  464. }
  465. return rtn;
  466. invalid:
  467. *u = 0xFFFD;
  468. return rtn;
  469. }
  470. int
  471. utf8encode(long *u, char *s) {
  472. uchar *sp;
  473. ulong uc;
  474. int i, n;
  475. sp = (uchar *)s;
  476. uc = *u;
  477. if(uc < 0x80) {
  478. *sp = uc; /* 0xxxxxxx */
  479. return 1;
  480. } else if(*u < 0x800) {
  481. *sp = (uc >> 6) | (B7|B6); /* 110xxxxx */
  482. n = 1;
  483. } else if(uc < 0x10000) {
  484. *sp = (uc >> 12) | (B7|B6|B5); /* 1110xxxx */
  485. n = 2;
  486. } else if(uc <= 0x10FFFF) {
  487. *sp = (uc >> 18) | (B7|B6|B5|B4); /* 11110xxx */
  488. n = 3;
  489. } else {
  490. goto invalid;
  491. }
  492. for(i=n,++sp; i>0; --i,++sp)
  493. *sp = ((uc >> 6*(i-1)) & (B5|B4|B3|B2|B1|B0)) | B7; /* 10xxxxxx */
  494. return n+1;
  495. invalid:
  496. /* U+FFFD */
  497. *s++ = '\xEF';
  498. *s++ = '\xBF';
  499. *s = '\xBD';
  500. return 3;
  501. }
  502. /* use this if your buffer is less than UTF_SIZ, it returns 1 if you can decode
  503. UTF-8 otherwise return 0 */
  504. int
  505. isfullutf8(char *s, int b) {
  506. uchar *c1, *c2, *c3;
  507. c1 = (uchar *)s;
  508. c2 = (uchar *)++s;
  509. c3 = (uchar *)++s;
  510. if(b < 1) {
  511. return 0;
  512. } else if((*c1&(B7|B6|B5)) == (B7|B6) && b == 1) {
  513. return 0;
  514. } else if((*c1&(B7|B6|B5|B4)) == (B7|B6|B5) &&
  515. ((b == 1) ||
  516. ((b == 2) && (*c2&(B7|B6)) == B7))) {
  517. return 0;
  518. } else if((*c1&(B7|B6|B5|B4|B3)) == (B7|B6|B5|B4) &&
  519. ((b == 1) ||
  520. ((b == 2) && (*c2&(B7|B6)) == B7) ||
  521. ((b == 3) && (*c2&(B7|B6)) == B7 && (*c3&(B7|B6)) == B7))) {
  522. return 0;
  523. } else {
  524. return 1;
  525. }
  526. }
  527. int
  528. utf8size(char *s) {
  529. uchar c = *s;
  530. if(~c&B7) {
  531. return 1;
  532. } else if((c&(B7|B6|B5)) == (B7|B6)) {
  533. return 2;
  534. } else if((c&(B7|B6|B5|B4)) == (B7|B6|B5)) {
  535. return 3;
  536. } else {
  537. return 4;
  538. }
  539. }
  540. void
  541. selinit(void) {
  542. memset(&sel.tclick1, 0, sizeof(sel.tclick1));
  543. memset(&sel.tclick2, 0, sizeof(sel.tclick2));
  544. sel.mode = 0;
  545. sel.bx = -1;
  546. sel.clip = NULL;
  547. sel.xtarget = XInternAtom(xw.dpy, "UTF8_STRING", 0);
  548. if(sel.xtarget == None)
  549. sel.xtarget = XA_STRING;
  550. }
  551. static int
  552. x2col(int x) {
  553. x -= borderpx;
  554. x /= xw.cw;
  555. return LIMIT(x, 0, term.col-1);
  556. }
  557. static int
  558. y2row(int y) {
  559. y -= borderpx;
  560. y /= xw.ch;
  561. return LIMIT(y, 0, term.row-1);
  562. }
  563. static inline bool
  564. selected(int x, int y) {
  565. int bx, ex;
  566. if(sel.ey == y && sel.by == y) {
  567. bx = MIN(sel.bx, sel.ex);
  568. ex = MAX(sel.bx, sel.ex);
  569. return BETWEEN(x, bx, ex);
  570. }
  571. if(sel.type == SEL_RECTANGULAR) {
  572. return ((sel.b.y <= y && y <= sel.e.y)
  573. && (sel.b.x <= x && x <= sel.e.x));
  574. }
  575. return ((sel.b.y < y && y < sel.e.y)
  576. || (y == sel.e.y && x <= sel.e.x))
  577. || (y == sel.b.y && x >= sel.b.x
  578. && (x <= sel.e.x || sel.b.y != sel.e.y));
  579. }
  580. void
  581. getbuttoninfo(XEvent *e) {
  582. int type;
  583. uint state = e->xbutton.state &~Button1Mask;
  584. sel.alt = IS_SET(MODE_ALTSCREEN);
  585. sel.ex = x2col(e->xbutton.x);
  586. sel.ey = y2row(e->xbutton.y);
  587. sel.b.x = sel.by < sel.ey ? sel.bx : sel.ex;
  588. sel.b.y = MIN(sel.by, sel.ey);
  589. sel.e.x = sel.by < sel.ey ? sel.ex : sel.bx;
  590. sel.e.y = MAX(sel.by, sel.ey);
  591. sel.type = SEL_REGULAR;
  592. for(type = 1; type < LEN(selmasks); ++type) {
  593. if(match(selmasks[type], state)) {
  594. sel.type = type;
  595. break;
  596. }
  597. }
  598. }
  599. void
  600. mousereport(XEvent *e) {
  601. int x = x2col(e->xbutton.x), y = y2row(e->xbutton.y),
  602. button = e->xbutton.button, state = e->xbutton.state,
  603. len;
  604. char buf[40];
  605. static int ob, ox, oy;
  606. /* from urxvt */
  607. if(e->xbutton.type == MotionNotify) {
  608. if(!IS_SET(MODE_MOUSEMOTION) || (x == ox && y == oy))
  609. return;
  610. button = ob + 32;
  611. ox = x, oy = y;
  612. } else if(!IS_SET(MODE_MOUSESGR)
  613. && (e->xbutton.type == ButtonRelease
  614. || button == AnyButton)) {
  615. button = 3;
  616. } else {
  617. button -= Button1;
  618. if(button >= 3)
  619. button += 64 - 3;
  620. if(e->xbutton.type == ButtonPress) {
  621. ob = button;
  622. ox = x, oy = y;
  623. }
  624. }
  625. button += (state & ShiftMask ? 4 : 0)
  626. + (state & Mod4Mask ? 8 : 0)
  627. + (state & ControlMask ? 16 : 0);
  628. len = 0;
  629. if(IS_SET(MODE_MOUSESGR)) {
  630. len = snprintf(buf, sizeof(buf), "\033[<%d;%d;%d%c",
  631. button, x+1, y+1,
  632. e->xbutton.type == ButtonRelease ? 'm' : 'M');
  633. } else if(x < 223 && y < 223) {
  634. len = snprintf(buf, sizeof(buf), "\033[M%c%c%c",
  635. 32+button, 32+x+1, 32+y+1);
  636. } else {
  637. return;
  638. }
  639. ttywrite(buf, len);
  640. }
  641. void
  642. bpress(XEvent *e) {
  643. if(IS_SET(MODE_MOUSE)) {
  644. mousereport(e);
  645. } else if(e->xbutton.button == Button1) {
  646. if(sel.bx != -1) {
  647. sel.bx = -1;
  648. tsetdirt(sel.b.y, sel.e.y);
  649. draw();
  650. }
  651. sel.mode = 1;
  652. sel.type = SEL_REGULAR;
  653. sel.ex = sel.bx = x2col(e->xbutton.x);
  654. sel.ey = sel.by = y2row(e->xbutton.y);
  655. } else if(e->xbutton.button == Button4) {
  656. ttywrite("\031", 1);
  657. } else if(e->xbutton.button == Button5) {
  658. ttywrite("\005", 1);
  659. }
  660. }
  661. void
  662. selcopy(void) {
  663. char *str, *ptr, *p;
  664. int x, y, bufsize, isselected = 0, size;
  665. Glyph *gp, *last;
  666. if(sel.bx == -1) {
  667. str = NULL;
  668. } else {
  669. bufsize = (term.col+1) * (sel.e.y-sel.b.y+1) * UTF_SIZ;
  670. ptr = str = xmalloc(bufsize);
  671. /* append every set & selected glyph to the selection */
  672. for(y = sel.b.y; y < sel.e.y + 1; y++) {
  673. isselected = 0;
  674. gp = &term.line[y][0];
  675. last = gp + term.col;
  676. while(--last >= gp && !(last->state & GLYPH_SET))
  677. /* nothing */;
  678. for(x = 0; gp <= last; x++, ++gp) {
  679. if(!selected(x, y)) {
  680. continue;
  681. } else {
  682. isselected = 1;
  683. }
  684. p = (gp->state & GLYPH_SET) ? gp->c : " ";
  685. size = utf8size(p);
  686. memcpy(ptr, p, size);
  687. ptr += size;
  688. }
  689. /*
  690. * Copy and pasting of line endings is inconsistent
  691. * in the inconsistent terminal and GUI world.
  692. * The best solution seems like to produce '\n' when
  693. * something is copied from st and convert '\n' to
  694. * '\r', when something to be pasted is received by
  695. * st.
  696. * FIXME: Fix the computer world.
  697. */
  698. if(isselected && y < sel.e.y)
  699. *ptr++ = '\n';
  700. }
  701. *ptr = 0;
  702. }
  703. xsetsel(str);
  704. }
  705. void
  706. selnotify(XEvent *e) {
  707. ulong nitems, ofs, rem;
  708. int format;
  709. uchar *data, *last, *repl;
  710. Atom type;
  711. ofs = 0;
  712. do {
  713. if(XGetWindowProperty(xw.dpy, xw.win, XA_PRIMARY, ofs, BUFSIZ/4,
  714. False, AnyPropertyType, &type, &format,
  715. &nitems, &rem, &data)) {
  716. fprintf(stderr, "Clipboard allocation failed\n");
  717. return;
  718. }
  719. /*
  720. * As seen in selcopy:
  721. * Line endings are inconsistent in the terminal and GUI world
  722. * copy and pasting. When receiving some selection data,
  723. * replace all '\n' with '\r'.
  724. * FIXME: Fix the computer world.
  725. */
  726. repl = data;
  727. last = data + nitems * format / 8;
  728. while((repl = memchr(repl, '\n', last - repl))) {
  729. *repl++ = '\r';
  730. }
  731. ttywrite((const char *)data, nitems * format / 8);
  732. XFree(data);
  733. /* number of 32-bit chunks returned */
  734. ofs += nitems * format / 32;
  735. } while(rem > 0);
  736. }
  737. void
  738. selpaste(const Arg *dummy) {
  739. XConvertSelection(xw.dpy, XA_PRIMARY, sel.xtarget, XA_PRIMARY,
  740. xw.win, CurrentTime);
  741. }
  742. void
  743. clippaste(const Arg *dummy) {
  744. Atom clipboard;
  745. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  746. XConvertSelection(xw.dpy, clipboard, sel.xtarget, XA_PRIMARY,
  747. xw.win, CurrentTime);
  748. }
  749. void
  750. selclear(XEvent *e) {
  751. if(sel.bx == -1)
  752. return;
  753. sel.bx = -1;
  754. tsetdirt(sel.b.y, sel.e.y);
  755. }
  756. void
  757. selrequest(XEvent *e) {
  758. XSelectionRequestEvent *xsre;
  759. XSelectionEvent xev;
  760. Atom xa_targets, string;
  761. xsre = (XSelectionRequestEvent *) e;
  762. xev.type = SelectionNotify;
  763. xev.requestor = xsre->requestor;
  764. xev.selection = xsre->selection;
  765. xev.target = xsre->target;
  766. xev.time = xsre->time;
  767. /* reject */
  768. xev.property = None;
  769. xa_targets = XInternAtom(xw.dpy, "TARGETS", 0);
  770. if(xsre->target == xa_targets) {
  771. /* respond with the supported type */
  772. string = sel.xtarget;
  773. XChangeProperty(xsre->display, xsre->requestor, xsre->property,
  774. XA_ATOM, 32, PropModeReplace,
  775. (uchar *) &string, 1);
  776. xev.property = xsre->property;
  777. } else if(xsre->target == sel.xtarget && sel.clip != NULL) {
  778. XChangeProperty(xsre->display, xsre->requestor, xsre->property,
  779. xsre->target, 8, PropModeReplace,
  780. (uchar *) sel.clip, strlen(sel.clip));
  781. xev.property = xsre->property;
  782. }
  783. /* all done, send a notification to the listener */
  784. if(!XSendEvent(xsre->display, xsre->requestor, True, 0, (XEvent *) &xev))
  785. fprintf(stderr, "Error sending SelectionNotify event\n");
  786. }
  787. void
  788. xsetsel(char *str) {
  789. /* register the selection for both the clipboard and the primary */
  790. Atom clipboard;
  791. free(sel.clip);
  792. sel.clip = str;
  793. XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, CurrentTime);
  794. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  795. XSetSelectionOwner(xw.dpy, clipboard, xw.win, CurrentTime);
  796. }
  797. void
  798. brelease(XEvent *e) {
  799. struct timeval now;
  800. if(IS_SET(MODE_MOUSE)) {
  801. mousereport(e);
  802. return;
  803. }
  804. if(e->xbutton.button == Button2) {
  805. selpaste(NULL);
  806. } else if(e->xbutton.button == Button1) {
  807. sel.mode = 0;
  808. getbuttoninfo(e);
  809. term.dirty[sel.ey] = 1;
  810. if(sel.bx == sel.ex && sel.by == sel.ey) {
  811. sel.bx = -1;
  812. gettimeofday(&now, NULL);
  813. if(TIMEDIFF(now, sel.tclick2) <= tripleclicktimeout) {
  814. /* triple click on the line */
  815. sel.b.x = sel.bx = 0;
  816. sel.e.x = sel.ex = term.col;
  817. sel.b.y = sel.e.y = sel.ey;
  818. selcopy();
  819. } else if(TIMEDIFF(now, sel.tclick1) <= doubleclicktimeout) {
  820. /* double click to select word */
  821. sel.bx = sel.ex;
  822. while(sel.bx > 0 && term.line[sel.ey][sel.bx-1].state & GLYPH_SET &&
  823. term.line[sel.ey][sel.bx-1].c[0] != ' ') {
  824. sel.bx--;
  825. }
  826. sel.b.x = sel.bx;
  827. while(sel.ex < term.col-1 && term.line[sel.ey][sel.ex+1].state & GLYPH_SET &&
  828. term.line[sel.ey][sel.ex+1].c[0] != ' ') {
  829. sel.ex++;
  830. }
  831. sel.e.x = sel.ex;
  832. sel.b.y = sel.e.y = sel.ey;
  833. selcopy();
  834. }
  835. } else {
  836. selcopy();
  837. }
  838. }
  839. memcpy(&sel.tclick2, &sel.tclick1, sizeof(struct timeval));
  840. gettimeofday(&sel.tclick1, NULL);
  841. }
  842. void
  843. bmotion(XEvent *e) {
  844. int oldey, oldex, oldsby, oldsey;
  845. if(IS_SET(MODE_MOUSE)) {
  846. mousereport(e);
  847. return;
  848. }
  849. if(!sel.mode)
  850. return;
  851. oldey = sel.ey;
  852. oldex = sel.ex;
  853. oldsby = sel.b.y;
  854. oldsey = sel.e.y;
  855. getbuttoninfo(e);
  856. if(oldey != sel.ey || oldex != sel.ex) {
  857. tsetdirt(MIN(sel.b.y, oldsby), MAX(sel.e.y, oldsey));
  858. }
  859. }
  860. void
  861. die(const char *errstr, ...) {
  862. va_list ap;
  863. va_start(ap, errstr);
  864. vfprintf(stderr, errstr, ap);
  865. va_end(ap);
  866. exit(EXIT_FAILURE);
  867. }
  868. void
  869. execsh(void) {
  870. char **args;
  871. char *envshell = getenv("SHELL");
  872. const struct passwd *pass = getpwuid(getuid());
  873. char buf[sizeof(long) * 8 + 1];
  874. unsetenv("COLUMNS");
  875. unsetenv("LINES");
  876. unsetenv("TERMCAP");
  877. if(pass) {
  878. setenv("LOGNAME", pass->pw_name, 1);
  879. setenv("USER", pass->pw_name, 1);
  880. setenv("SHELL", pass->pw_shell, 0);
  881. setenv("HOME", pass->pw_dir, 0);
  882. }
  883. snprintf(buf, sizeof(buf), "%lu", xw.win);
  884. setenv("WINDOWID", buf, 1);
  885. signal(SIGCHLD, SIG_DFL);
  886. signal(SIGHUP, SIG_DFL);
  887. signal(SIGINT, SIG_DFL);
  888. signal(SIGQUIT, SIG_DFL);
  889. signal(SIGTERM, SIG_DFL);
  890. signal(SIGALRM, SIG_DFL);
  891. DEFAULT(envshell, shell);
  892. setenv("TERM", termname, 1);
  893. args = opt_cmd ? opt_cmd : (char *[]){envshell, "-i", NULL};
  894. execvp(args[0], args);
  895. exit(EXIT_FAILURE);
  896. }
  897. void
  898. sigchld(int a) {
  899. int stat = 0;
  900. if(waitpid(pid, &stat, 0) < 0)
  901. die("Waiting for pid %hd failed: %s\n", pid, SERRNO);
  902. if(WIFEXITED(stat)) {
  903. exit(WEXITSTATUS(stat));
  904. } else {
  905. exit(EXIT_FAILURE);
  906. }
  907. }
  908. void
  909. ttynew(void) {
  910. int m, s;
  911. struct winsize w = {term.row, term.col, 0, 0};
  912. /* seems to work fine on linux, openbsd and freebsd */
  913. if(openpty(&m, &s, NULL, NULL, &w) < 0)
  914. die("openpty failed: %s\n", SERRNO);
  915. switch(pid = fork()) {
  916. case -1:
  917. die("fork failed\n");
  918. break;
  919. case 0:
  920. setsid(); /* create a new process group */
  921. dup2(s, STDIN_FILENO);
  922. dup2(s, STDOUT_FILENO);
  923. dup2(s, STDERR_FILENO);
  924. if(ioctl(s, TIOCSCTTY, NULL) < 0)
  925. die("ioctl TIOCSCTTY failed: %s\n", SERRNO);
  926. close(s);
  927. close(m);
  928. execsh();
  929. break;
  930. default:
  931. close(s);
  932. cmdfd = m;
  933. signal(SIGCHLD, sigchld);
  934. if(opt_io) {
  935. iofd = (!strcmp(opt_io, "-")) ?
  936. STDOUT_FILENO :
  937. open(opt_io, O_WRONLY | O_CREAT, 0666);
  938. if(iofd < 0) {
  939. fprintf(stderr, "Error opening %s:%s\n",
  940. opt_io, strerror(errno));
  941. }
  942. }
  943. }
  944. }
  945. void
  946. dump(char c) {
  947. static int col;
  948. fprintf(stderr, " %02x '%c' ", c, isprint(c)?c:'.');
  949. if(++col % 10 == 0)
  950. fprintf(stderr, "\n");
  951. }
  952. void
  953. ttyread(void) {
  954. static char buf[BUFSIZ];
  955. static int buflen = 0;
  956. char *ptr;
  957. char s[UTF_SIZ];
  958. int charsize; /* size of utf8 char in bytes */
  959. long utf8c;
  960. int ret;
  961. /* append read bytes to unprocessed bytes */
  962. if((ret = read(cmdfd, buf+buflen, LEN(buf)-buflen)) < 0)
  963. die("Couldn't read from shell: %s\n", SERRNO);
  964. /* process every complete utf8 char */
  965. buflen += ret;
  966. ptr = buf;
  967. while(buflen >= UTF_SIZ || isfullutf8(ptr,buflen)) {
  968. charsize = utf8decode(ptr, &utf8c);
  969. utf8encode(&utf8c, s);
  970. tputc(s, charsize);
  971. ptr += charsize;
  972. buflen -= charsize;
  973. }
  974. /* keep any uncomplete utf8 char for the next call */
  975. memmove(buf, ptr, buflen);
  976. }
  977. void
  978. ttywrite(const char *s, size_t n) {
  979. if(write(cmdfd, s, n) == -1)
  980. die("write error on tty: %s\n", SERRNO);
  981. }
  982. void
  983. ttyresize(void) {
  984. struct winsize w;
  985. w.ws_row = term.row;
  986. w.ws_col = term.col;
  987. w.ws_xpixel = xw.tw;
  988. w.ws_ypixel = xw.th;
  989. if(ioctl(cmdfd, TIOCSWINSZ, &w) < 0)
  990. fprintf(stderr, "Couldn't set window size: %s\n", SERRNO);
  991. }
  992. void
  993. tsetdirt(int top, int bot) {
  994. int i;
  995. LIMIT(top, 0, term.row-1);
  996. LIMIT(bot, 0, term.row-1);
  997. for(i = top; i <= bot; i++)
  998. term.dirty[i] = 1;
  999. }
  1000. void
  1001. tfulldirt(void) {
  1002. tsetdirt(0, term.row-1);
  1003. }
  1004. void
  1005. tcursor(int mode) {
  1006. static TCursor c;
  1007. if(mode == CURSOR_SAVE) {
  1008. c = term.c;
  1009. } else if(mode == CURSOR_LOAD) {
  1010. term.c = c;
  1011. tmoveto(c.x, c.y);
  1012. }
  1013. }
  1014. void
  1015. treset(void) {
  1016. uint i;
  1017. term.c = (TCursor){{
  1018. .mode = ATTR_NULL,
  1019. .fg = defaultfg,
  1020. .bg = defaultbg
  1021. }, .x = 0, .y = 0, .state = CURSOR_DEFAULT};
  1022. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  1023. for(i = tabspaces; i < term.col; i += tabspaces)
  1024. term.tabs[i] = 1;
  1025. term.top = 0;
  1026. term.bot = term.row - 1;
  1027. term.mode = MODE_WRAP;
  1028. tclearregion(0, 0, term.col-1, term.row-1);
  1029. tmoveto(0, 0);
  1030. tcursor(CURSOR_SAVE);
  1031. }
  1032. void
  1033. tnew(int col, int row) {
  1034. /* set screen size */
  1035. term.row = row;
  1036. term.col = col;
  1037. term.line = xmalloc(term.row * sizeof(Line));
  1038. term.alt = xmalloc(term.row * sizeof(Line));
  1039. term.dirty = xmalloc(term.row * sizeof(*term.dirty));
  1040. term.tabs = xmalloc(term.col * sizeof(*term.tabs));
  1041. for(row = 0; row < term.row; row++) {
  1042. term.line[row] = xmalloc(term.col * sizeof(Glyph));
  1043. term.alt [row] = xmalloc(term.col * sizeof(Glyph));
  1044. term.dirty[row] = 0;
  1045. }
  1046. term.numlock = 1;
  1047. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  1048. /* setup screen */
  1049. treset();
  1050. }
  1051. void
  1052. tswapscreen(void) {
  1053. Line *tmp = term.line;
  1054. term.line = term.alt;
  1055. term.alt = tmp;
  1056. term.mode ^= MODE_ALTSCREEN;
  1057. tfulldirt();
  1058. }
  1059. void
  1060. tscrolldown(int orig, int n) {
  1061. int i;
  1062. Line temp;
  1063. LIMIT(n, 0, term.bot-orig+1);
  1064. tclearregion(0, term.bot-n+1, term.col-1, term.bot);
  1065. for(i = term.bot; i >= orig+n; i--) {
  1066. temp = term.line[i];
  1067. term.line[i] = term.line[i-n];
  1068. term.line[i-n] = temp;
  1069. term.dirty[i] = 1;
  1070. term.dirty[i-n] = 1;
  1071. }
  1072. selscroll(orig, n);
  1073. }
  1074. void
  1075. tscrollup(int orig, int n) {
  1076. int i;
  1077. Line temp;
  1078. LIMIT(n, 0, term.bot-orig+1);
  1079. tclearregion(0, orig, term.col-1, orig+n-1);
  1080. for(i = orig; i <= term.bot-n; i++) {
  1081. temp = term.line[i];
  1082. term.line[i] = term.line[i+n];
  1083. term.line[i+n] = temp;
  1084. term.dirty[i] = 1;
  1085. term.dirty[i+n] = 1;
  1086. }
  1087. selscroll(orig, -n);
  1088. }
  1089. void
  1090. selscroll(int orig, int n) {
  1091. if(sel.bx == -1)
  1092. return;
  1093. if(BETWEEN(sel.by, orig, term.bot) || BETWEEN(sel.ey, orig, term.bot)) {
  1094. if((sel.by += n) > term.bot || (sel.ey += n) < term.top) {
  1095. sel.bx = -1;
  1096. return;
  1097. }
  1098. if(sel.type == SEL_RECTANGULAR) {
  1099. if(sel.by < term.top)
  1100. sel.by = term.top;
  1101. if(sel.ey > term.bot)
  1102. sel.ey = term.bot;
  1103. } else {
  1104. if(sel.by < term.top) {
  1105. sel.by = term.top;
  1106. sel.bx = 0;
  1107. }
  1108. if(sel.ey > term.bot) {
  1109. sel.ey = term.bot;
  1110. sel.ex = term.col;
  1111. }
  1112. }
  1113. sel.b.y = sel.by, sel.b.x = sel.bx;
  1114. sel.e.y = sel.ey, sel.e.x = sel.ex;
  1115. }
  1116. }
  1117. void
  1118. tnewline(int first_col) {
  1119. int y = term.c.y;
  1120. if(y == term.bot) {
  1121. tscrollup(term.top, 1);
  1122. } else {
  1123. y++;
  1124. }
  1125. tmoveto(first_col ? 0 : term.c.x, y);
  1126. }
  1127. void
  1128. csiparse(void) {
  1129. char *p = csiescseq.buf, *np;
  1130. long int v;
  1131. csiescseq.narg = 0;
  1132. if(*p == '?') {
  1133. csiescseq.priv = 1;
  1134. p++;
  1135. }
  1136. csiescseq.buf[csiescseq.len] = '\0';
  1137. while(p < csiescseq.buf+csiescseq.len) {
  1138. np = NULL;
  1139. v = strtol(p, &np, 10);
  1140. if(np == p)
  1141. v = 0;
  1142. if(v == LONG_MAX || v == LONG_MIN)
  1143. v = -1;
  1144. csiescseq.arg[csiescseq.narg++] = v;
  1145. p = np;
  1146. if(*p != ';' || csiescseq.narg == ESC_ARG_SIZ)
  1147. break;
  1148. p++;
  1149. }
  1150. csiescseq.mode = *p;
  1151. }
  1152. /* for absolute user moves, when decom is set */
  1153. void
  1154. tmoveato(int x, int y) {
  1155. tmoveto(x, y + ((term.c.state & CURSOR_ORIGIN) ? term.top: 0));
  1156. }
  1157. void
  1158. tmoveto(int x, int y) {
  1159. int miny, maxy;
  1160. if(term.c.state & CURSOR_ORIGIN) {
  1161. miny = term.top;
  1162. maxy = term.bot;
  1163. } else {
  1164. miny = 0;
  1165. maxy = term.row - 1;
  1166. }
  1167. LIMIT(x, 0, term.col-1);
  1168. LIMIT(y, miny, maxy);
  1169. term.c.state &= ~CURSOR_WRAPNEXT;
  1170. term.c.x = x;
  1171. term.c.y = y;
  1172. }
  1173. void
  1174. tsetchar(char *c, Glyph *attr, int x, int y) {
  1175. static char *vt100_0[62] = { /* 0x41 - 0x7e */
  1176. "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
  1177. 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
  1178. 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
  1179. 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
  1180. "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
  1181. "␤", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
  1182. "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
  1183. "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
  1184. };
  1185. /*
  1186. * The table is proudly stolen from rxvt.
  1187. */
  1188. if(attr->mode & ATTR_GFX) {
  1189. if(c[0] >= 0x41 && c[0] <= 0x7e
  1190. && vt100_0[c[0] - 0x41]) {
  1191. c = vt100_0[c[0] - 0x41];
  1192. }
  1193. }
  1194. term.dirty[y] = 1;
  1195. term.line[y][x] = *attr;
  1196. memcpy(term.line[y][x].c, c, UTF_SIZ);
  1197. term.line[y][x].state |= GLYPH_SET;
  1198. }
  1199. void
  1200. tclearregion(int x1, int y1, int x2, int y2) {
  1201. int x, y, temp;
  1202. if(x1 > x2)
  1203. temp = x1, x1 = x2, x2 = temp;
  1204. if(y1 > y2)
  1205. temp = y1, y1 = y2, y2 = temp;
  1206. LIMIT(x1, 0, term.col-1);
  1207. LIMIT(x2, 0, term.col-1);
  1208. LIMIT(y1, 0, term.row-1);
  1209. LIMIT(y2, 0, term.row-1);
  1210. for(y = y1; y <= y2; y++) {
  1211. term.dirty[y] = 1;
  1212. for(x = x1; x <= x2; x++) {
  1213. term.line[y][x] = term.c.attr;
  1214. memcpy(term.line[y][x].c, " ", 2);
  1215. term.line[y][x].state |= GLYPH_SET;
  1216. }
  1217. }
  1218. }
  1219. void
  1220. tdeletechar(int n) {
  1221. int src = term.c.x + n;
  1222. int dst = term.c.x;
  1223. int size = term.col - src;
  1224. term.dirty[term.c.y] = 1;
  1225. if(src >= term.col) {
  1226. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  1227. return;
  1228. }
  1229. memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src],
  1230. size * sizeof(Glyph));
  1231. tclearregion(term.col-n, term.c.y, term.col-1, term.c.y);
  1232. }
  1233. void
  1234. tinsertblank(int n) {
  1235. int src = term.c.x;
  1236. int dst = src + n;
  1237. int size = term.col - dst;
  1238. term.dirty[term.c.y] = 1;
  1239. if(dst >= term.col) {
  1240. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  1241. return;
  1242. }
  1243. memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src],
  1244. size * sizeof(Glyph));
  1245. tclearregion(src, term.c.y, dst - 1, term.c.y);
  1246. }
  1247. void
  1248. tinsertblankline(int n) {
  1249. if(term.c.y < term.top || term.c.y > term.bot)
  1250. return;
  1251. tscrolldown(term.c.y, n);
  1252. }
  1253. void
  1254. tdeleteline(int n) {
  1255. if(term.c.y < term.top || term.c.y > term.bot)
  1256. return;
  1257. tscrollup(term.c.y, n);
  1258. }
  1259. void
  1260. tsetattr(int *attr, int l) {
  1261. int i;
  1262. for(i = 0; i < l; i++) {
  1263. switch(attr[i]) {
  1264. case 0:
  1265. term.c.attr.mode &= ~(ATTR_REVERSE | ATTR_UNDERLINE \
  1266. | ATTR_BOLD | ATTR_ITALIC \
  1267. | ATTR_BLINK);
  1268. term.c.attr.fg = defaultfg;
  1269. term.c.attr.bg = defaultbg;
  1270. break;
  1271. case 1:
  1272. term.c.attr.mode |= ATTR_BOLD;
  1273. break;
  1274. case 3:
  1275. term.c.attr.mode |= ATTR_ITALIC;
  1276. break;
  1277. case 4:
  1278. term.c.attr.mode |= ATTR_UNDERLINE;
  1279. break;
  1280. case 5: /* slow blink */
  1281. case 6: /* rapid blink */
  1282. term.c.attr.mode |= ATTR_BLINK;
  1283. break;
  1284. case 7:
  1285. term.c.attr.mode |= ATTR_REVERSE;
  1286. break;
  1287. case 21:
  1288. case 22:
  1289. term.c.attr.mode &= ~ATTR_BOLD;
  1290. break;
  1291. case 23:
  1292. term.c.attr.mode &= ~ATTR_ITALIC;
  1293. break;
  1294. case 24:
  1295. term.c.attr.mode &= ~ATTR_UNDERLINE;
  1296. break;
  1297. case 25:
  1298. case 26:
  1299. term.c.attr.mode &= ~ATTR_BLINK;
  1300. break;
  1301. case 27:
  1302. term.c.attr.mode &= ~ATTR_REVERSE;
  1303. break;
  1304. case 38:
  1305. if(i + 2 < l && attr[i + 1] == 5) {
  1306. i += 2;
  1307. if(BETWEEN(attr[i], 0, 255)) {
  1308. term.c.attr.fg = attr[i];
  1309. } else {
  1310. fprintf(stderr,
  1311. "erresc: bad fgcolor %d\n",
  1312. attr[i]);
  1313. }
  1314. } else {
  1315. fprintf(stderr,
  1316. "erresc(38): gfx attr %d unknown\n",
  1317. attr[i]);
  1318. }
  1319. break;
  1320. case 39:
  1321. term.c.attr.fg = defaultfg;
  1322. break;
  1323. case 48:
  1324. if(i + 2 < l && attr[i + 1] == 5) {
  1325. i += 2;
  1326. if(BETWEEN(attr[i], 0, 255)) {
  1327. term.c.attr.bg = attr[i];
  1328. } else {
  1329. fprintf(stderr,
  1330. "erresc: bad bgcolor %d\n",
  1331. attr[i]);
  1332. }
  1333. } else {
  1334. fprintf(stderr,
  1335. "erresc(48): gfx attr %d unknown\n",
  1336. attr[i]);
  1337. }
  1338. break;
  1339. case 49:
  1340. term.c.attr.bg = defaultbg;
  1341. break;
  1342. default:
  1343. if(BETWEEN(attr[i], 30, 37)) {
  1344. term.c.attr.fg = attr[i] - 30;
  1345. } else if(BETWEEN(attr[i], 40, 47)) {
  1346. term.c.attr.bg = attr[i] - 40;
  1347. } else if(BETWEEN(attr[i], 90, 97)) {
  1348. term.c.attr.fg = attr[i] - 90 + 8;
  1349. } else if(BETWEEN(attr[i], 100, 107)) {
  1350. term.c.attr.bg = attr[i] - 100 + 8;
  1351. } else {
  1352. fprintf(stderr,
  1353. "erresc(default): gfx attr %d unknown\n",
  1354. attr[i]), csidump();
  1355. }
  1356. break;
  1357. }
  1358. }
  1359. }
  1360. void
  1361. tsetscroll(int t, int b) {
  1362. int temp;
  1363. LIMIT(t, 0, term.row-1);
  1364. LIMIT(b, 0, term.row-1);
  1365. if(t > b) {
  1366. temp = t;
  1367. t = b;
  1368. b = temp;
  1369. }
  1370. term.top = t;
  1371. term.bot = b;
  1372. }
  1373. #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
  1374. void
  1375. tsetmode(bool priv, bool set, int *args, int narg) {
  1376. int *lim, mode;
  1377. bool alt;
  1378. for(lim = args + narg; args < lim; ++args) {
  1379. if(priv) {
  1380. switch(*args) {
  1381. break;
  1382. case 1: /* DECCKM -- Cursor key */
  1383. MODBIT(term.mode, set, MODE_APPCURSOR);
  1384. break;
  1385. case 5: /* DECSCNM -- Reverse video */
  1386. mode = term.mode;
  1387. MODBIT(term.mode, set, MODE_REVERSE);
  1388. if(mode != term.mode)
  1389. redraw(REDRAW_TIMEOUT);
  1390. break;
  1391. case 6: /* DECOM -- Origin */
  1392. MODBIT(term.c.state, set, CURSOR_ORIGIN);
  1393. tmoveato(0, 0);
  1394. break;
  1395. case 7: /* DECAWM -- Auto wrap */
  1396. MODBIT(term.mode, set, MODE_WRAP);
  1397. break;
  1398. case 0: /* Error (IGNORED) */
  1399. case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
  1400. case 3: /* DECCOLM -- Column (IGNORED) */
  1401. case 4: /* DECSCLM -- Scroll (IGNORED) */
  1402. case 8: /* DECARM -- Auto repeat (IGNORED) */
  1403. case 18: /* DECPFF -- Printer feed (IGNORED) */
  1404. case 19: /* DECPEX -- Printer extent (IGNORED) */
  1405. case 42: /* DECNRCM -- National characters (IGNORED) */
  1406. case 12: /* att610 -- Start blinking cursor (IGNORED) */
  1407. break;
  1408. case 25: /* DECTCEM -- Text Cursor Enable Mode */
  1409. MODBIT(term.mode, !set, MODE_HIDE);
  1410. break;
  1411. case 1000: /* 1000,1002: enable xterm mouse report */
  1412. MODBIT(term.mode, set, MODE_MOUSEBTN);
  1413. MODBIT(term.mode, 0, MODE_MOUSEMOTION);
  1414. break;
  1415. case 1002:
  1416. MODBIT(term.mode, set, MODE_MOUSEMOTION);
  1417. MODBIT(term.mode, 0, MODE_MOUSEBTN);
  1418. break;
  1419. case 1006:
  1420. MODBIT(term.mode, set, MODE_MOUSESGR);
  1421. break;
  1422. case 1049: /* = 1047 and 1048 */
  1423. case 47:
  1424. case 1047:
  1425. if (!allowaltscreen)
  1426. break;
  1427. alt = IS_SET(MODE_ALTSCREEN);
  1428. if(alt) {
  1429. tclearregion(0, 0, term.col-1,
  1430. term.row-1);
  1431. }
  1432. if(set ^ alt) /* set is always 1 or 0 */
  1433. tswapscreen();
  1434. if(*args != 1049)
  1435. break;
  1436. /* FALLTRU */
  1437. case 1048:
  1438. tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
  1439. break;
  1440. default:
  1441. fprintf(stderr,
  1442. "erresc: unknown private set/reset mode %d\n",
  1443. *args);
  1444. break;
  1445. }
  1446. } else {
  1447. switch(*args) {
  1448. case 0: /* Error (IGNORED) */
  1449. break;
  1450. case 2: /* KAM -- keyboard action */
  1451. MODBIT(term.mode, set, MODE_KBDLOCK);
  1452. break;
  1453. case 4: /* IRM -- Insertion-replacement */
  1454. MODBIT(term.mode, set, MODE_INSERT);
  1455. break;
  1456. case 12: /* SRM -- Send/Receive */
  1457. MODBIT(term.mode, !set, MODE_ECHO);
  1458. break;
  1459. case 20: /* LNM -- Linefeed/new line */
  1460. MODBIT(term.mode, set, MODE_CRLF);
  1461. break;
  1462. default:
  1463. fprintf(stderr,
  1464. "erresc: unknown set/reset mode %d\n",
  1465. *args);
  1466. break;
  1467. }
  1468. }
  1469. }
  1470. }
  1471. #undef MODBIT
  1472. void
  1473. csihandle(void) {
  1474. switch(csiescseq.mode) {
  1475. default:
  1476. unknown:
  1477. fprintf(stderr, "erresc: unknown csi ");
  1478. csidump();
  1479. /* die(""); */
  1480. break;
  1481. case '@': /* ICH -- Insert <n> blank char */
  1482. DEFAULT(csiescseq.arg[0], 1);
  1483. tinsertblank(csiescseq.arg[0]);
  1484. break;
  1485. case 'A': /* CUU -- Cursor <n> Up */
  1486. DEFAULT(csiescseq.arg[0], 1);
  1487. tmoveto(term.c.x, term.c.y-csiescseq.arg[0]);
  1488. break;
  1489. case 'B': /* CUD -- Cursor <n> Down */
  1490. case 'e': /* VPR --Cursor <n> Down */
  1491. DEFAULT(csiescseq.arg[0], 1);
  1492. tmoveto(term.c.x, term.c.y+csiescseq.arg[0]);
  1493. break;
  1494. case 'c': /* DA -- Device Attributes */
  1495. if(csiescseq.arg[0] == 0)
  1496. ttywrite(VT102ID, sizeof(VT102ID) - 1);
  1497. break;
  1498. case 'C': /* CUF -- Cursor <n> Forward */
  1499. case 'a': /* HPR -- Cursor <n> Forward */
  1500. DEFAULT(csiescseq.arg[0], 1);
  1501. tmoveto(term.c.x+csiescseq.arg[0], term.c.y);
  1502. break;
  1503. case 'D': /* CUB -- Cursor <n> Backward */
  1504. DEFAULT(csiescseq.arg[0], 1);
  1505. tmoveto(term.c.x-csiescseq.arg[0], term.c.y);
  1506. break;
  1507. case 'E': /* CNL -- Cursor <n> Down and first col */
  1508. DEFAULT(csiescseq.arg[0], 1);
  1509. tmoveto(0, term.c.y+csiescseq.arg[0]);
  1510. break;
  1511. case 'F': /* CPL -- Cursor <n> Up and first col */
  1512. DEFAULT(csiescseq.arg[0], 1);
  1513. tmoveto(0, term.c.y-csiescseq.arg[0]);
  1514. break;
  1515. case 'g': /* TBC -- Tabulation clear */
  1516. switch(csiescseq.arg[0]) {
  1517. case 0: /* clear current tab stop */
  1518. term.tabs[term.c.x] = 0;
  1519. break;
  1520. case 3: /* clear all the tabs */
  1521. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  1522. break;
  1523. default:
  1524. goto unknown;
  1525. }
  1526. break;
  1527. case 'G': /* CHA -- Move to <col> */
  1528. case '`': /* HPA */
  1529. DEFAULT(csiescseq.arg[0], 1);
  1530. tmoveto(csiescseq.arg[0]-1, term.c.y);
  1531. break;
  1532. case 'H': /* CUP -- Move to <row> <col> */
  1533. case 'f': /* HVP */
  1534. DEFAULT(csiescseq.arg[0], 1);
  1535. DEFAULT(csiescseq.arg[1], 1);
  1536. tmoveato(csiescseq.arg[1]-1, csiescseq.arg[0]-1);
  1537. break;
  1538. case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
  1539. DEFAULT(csiescseq.arg[0], 1);
  1540. while(csiescseq.arg[0]--)
  1541. tputtab(1);
  1542. break;
  1543. case 'J': /* ED -- Clear screen */
  1544. sel.bx = -1;
  1545. switch(csiescseq.arg[0]) {
  1546. case 0: /* below */
  1547. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  1548. if(term.c.y < term.row-1) {
  1549. tclearregion(0, term.c.y+1, term.col-1,
  1550. term.row-1);
  1551. }
  1552. break;
  1553. case 1: /* above */
  1554. if(term.c.y > 1)
  1555. tclearregion(0, 0, term.col-1, term.c.y-1);
  1556. tclearregion(0, term.c.y, term.c.x, term.c.y);
  1557. break;
  1558. case 2: /* all */
  1559. tclearregion(0, 0, term.col-1, term.row-1);
  1560. break;
  1561. default:
  1562. goto unknown;
  1563. }
  1564. break;
  1565. case 'K': /* EL -- Clear line */
  1566. switch(csiescseq.arg[0]) {
  1567. case 0: /* right */
  1568. tclearregion(term.c.x, term.c.y, term.col-1,
  1569. term.c.y);
  1570. break;
  1571. case 1: /* left */
  1572. tclearregion(0, term.c.y, term.c.x, term.c.y);
  1573. break;
  1574. case 2: /* all */
  1575. tclearregion(0, term.c.y, term.col-1, term.c.y);
  1576. break;
  1577. }
  1578. break;
  1579. case 'S': /* SU -- Scroll <n> line up */
  1580. DEFAULT(csiescseq.arg[0], 1);
  1581. tscrollup(term.top, csiescseq.arg[0]);
  1582. break;
  1583. case 'T': /* SD -- Scroll <n> line down */
  1584. DEFAULT(csiescseq.arg[0], 1);
  1585. tscrolldown(term.top, csiescseq.arg[0]);
  1586. break;
  1587. case 'L': /* IL -- Insert <n> blank lines */
  1588. DEFAULT(csiescseq.arg[0], 1);
  1589. tinsertblankline(csiescseq.arg[0]);
  1590. break;
  1591. case 'l': /* RM -- Reset Mode */
  1592. tsetmode(csiescseq.priv, 0, csiescseq.arg, csiescseq.narg);
  1593. break;
  1594. case 'M': /* DL -- Delete <n> lines */
  1595. DEFAULT(csiescseq.arg[0], 1);
  1596. tdeleteline(csiescseq.arg[0]);
  1597. break;
  1598. case 'X': /* ECH -- Erase <n> char */
  1599. DEFAULT(csiescseq.arg[0], 1);
  1600. tclearregion(term.c.x, term.c.y,
  1601. term.c.x + csiescseq.arg[0] - 1, term.c.y);
  1602. break;
  1603. case 'P': /* DCH -- Delete <n> char */
  1604. DEFAULT(csiescseq.arg[0], 1);
  1605. tdeletechar(csiescseq.arg[0]);
  1606. break;
  1607. case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
  1608. DEFAULT(csiescseq.arg[0], 1);
  1609. while(csiescseq.arg[0]--)
  1610. tputtab(0);
  1611. break;
  1612. case 'd': /* VPA -- Move to <row> */
  1613. DEFAULT(csiescseq.arg[0], 1);
  1614. tmoveato(term.c.x, csiescseq.arg[0]-1);
  1615. break;
  1616. case 'h': /* SM -- Set terminal mode */
  1617. tsetmode(csiescseq.priv, 1, csiescseq.arg, csiescseq.narg);
  1618. break;
  1619. case 'm': /* SGR -- Terminal attribute (color) */
  1620. tsetattr(csiescseq.arg, csiescseq.narg);
  1621. break;
  1622. case 'r': /* DECSTBM -- Set Scrolling Region */
  1623. if(csiescseq.priv) {
  1624. goto unknown;
  1625. } else {
  1626. DEFAULT(csiescseq.arg[0], 1);
  1627. DEFAULT(csiescseq.arg[1], term.row);
  1628. tsetscroll(csiescseq.arg[0]-1, csiescseq.arg[1]-1);
  1629. tmoveato(0, 0);
  1630. }
  1631. break;
  1632. case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
  1633. tcursor(CURSOR_SAVE);
  1634. break;
  1635. case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
  1636. tcursor(CURSOR_LOAD);
  1637. break;
  1638. }
  1639. }
  1640. void
  1641. csidump(void) {
  1642. int i;
  1643. uint c;
  1644. printf("ESC[");
  1645. for(i = 0; i < csiescseq.len; i++) {
  1646. c = csiescseq.buf[i] & 0xff;
  1647. if(isprint(c)) {
  1648. putchar(c);
  1649. } else if(c == '\n') {
  1650. printf("(\\n)");
  1651. } else if(c == '\r') {
  1652. printf("(\\r)");
  1653. } else if(c == 0x1b) {
  1654. printf("(\\e)");
  1655. } else {
  1656. printf("(%02x)", c);
  1657. }
  1658. }
  1659. putchar('\n');
  1660. }
  1661. void
  1662. csireset(void) {
  1663. memset(&csiescseq, 0, sizeof(csiescseq));
  1664. }
  1665. void
  1666. strhandle(void) {
  1667. char *p = NULL;
  1668. int i, j, narg;
  1669. strparse();
  1670. narg = strescseq.narg;
  1671. switch(strescseq.type) {
  1672. case ']': /* OSC -- Operating System Command */
  1673. switch(i = atoi(strescseq.args[0])) {
  1674. case 0:
  1675. case 1:
  1676. case 2:
  1677. if(narg > 1)
  1678. xsettitle(strescseq.args[1]);
  1679. break;
  1680. case 4: /* color set */
  1681. if(narg < 3)
  1682. break;
  1683. p = strescseq.args[2];
  1684. /* fall through */
  1685. case 104: /* color reset, here p = NULL */
  1686. j = (narg > 1) ? atoi(strescseq.args[1]) : -1;
  1687. if (!xsetcolorname(j, p)) {
  1688. fprintf(stderr, "erresc: invalid color %s\n", p);
  1689. } else {
  1690. /*
  1691. * TODO if defaultbg color is changed, borders
  1692. * are dirty
  1693. */
  1694. redraw(0);
  1695. }
  1696. break;
  1697. default:
  1698. fprintf(stderr, "erresc: unknown str ");
  1699. strdump();
  1700. break;
  1701. }
  1702. break;
  1703. case 'k': /* old title set compatibility */
  1704. xsettitle(strescseq.args[0]);
  1705. break;
  1706. case 'P': /* DSC -- Device Control String */
  1707. case '_': /* APC -- Application Program Command */
  1708. case '^': /* PM -- Privacy Message */
  1709. default:
  1710. fprintf(stderr, "erresc: unknown str ");
  1711. strdump();
  1712. /* die(""); */
  1713. break;
  1714. }
  1715. }
  1716. void
  1717. strparse(void) {
  1718. char *p = strescseq.buf;
  1719. strescseq.narg = 0;
  1720. strescseq.buf[strescseq.len] = '\0';
  1721. while(p && strescseq.narg < STR_ARG_SIZ)
  1722. strescseq.args[strescseq.narg++] = strsep(&p, ";");
  1723. }
  1724. void
  1725. strdump(void) {
  1726. int i;
  1727. uint c;
  1728. printf("ESC%c", strescseq.type);
  1729. for(i = 0; i < strescseq.len; i++) {
  1730. c = strescseq.buf[i] & 0xff;
  1731. if(c == '\0') {
  1732. return;
  1733. } else if(isprint(c)) {
  1734. putchar(c);
  1735. } else if(c == '\n') {
  1736. printf("(\\n)");
  1737. } else if(c == '\r') {
  1738. printf("(\\r)");
  1739. } else if(c == 0x1b) {
  1740. printf("(\\e)");
  1741. } else {
  1742. printf("(%02x)", c);
  1743. }
  1744. }
  1745. printf("ESC\\\n");
  1746. }
  1747. void
  1748. strreset(void) {
  1749. memset(&strescseq, 0, sizeof(strescseq));
  1750. }
  1751. void
  1752. tputtab(bool forward) {
  1753. uint x = term.c.x;
  1754. if(forward) {
  1755. if(x == term.col)
  1756. return;
  1757. for(++x; x < term.col && !term.tabs[x]; ++x)
  1758. /* nothing */ ;
  1759. } else {
  1760. if(x == 0)
  1761. return;
  1762. for(--x; x > 0 && !term.tabs[x]; --x)
  1763. /* nothing */ ;
  1764. }
  1765. tmoveto(x, term.c.y);
  1766. }
  1767. void
  1768. techo(char *buf, int len) {
  1769. for(; len > 0; buf++, len--) {
  1770. char c = *buf;
  1771. if(c == '\033') { /* escape */
  1772. tputc("^", 1);
  1773. tputc("[", 1);
  1774. } else if(c < '\x20') { /* control code */
  1775. if(c != '\n' && c != '\r' && c != '\t') {
  1776. c |= '\x40';
  1777. tputc("^", 1);
  1778. }
  1779. tputc(&c, 1);
  1780. } else {
  1781. break;
  1782. }
  1783. }
  1784. if(len)
  1785. tputc(buf, len);
  1786. }
  1787. void
  1788. tputc(char *c, int len) {
  1789. uchar ascii = *c;
  1790. bool control = ascii < '\x20' || ascii == 0177;
  1791. if(iofd != -1) {
  1792. if(xwrite(iofd, c, len) < 0) {
  1793. fprintf(stderr, "Error writing in %s:%s\n",
  1794. opt_io, strerror(errno));
  1795. close(iofd);
  1796. iofd = -1;
  1797. }
  1798. }
  1799. /*
  1800. * STR sequences must be checked before anything else
  1801. * because it can use some control codes as part of the sequence.
  1802. */
  1803. if(term.esc & ESC_STR) {
  1804. switch(ascii) {
  1805. case '\033':
  1806. term.esc = ESC_START | ESC_STR_END;
  1807. break;
  1808. case '\a': /* backwards compatibility to xterm */
  1809. term.esc = 0;
  1810. strhandle();
  1811. break;
  1812. default:
  1813. if(strescseq.len + len < sizeof(strescseq.buf) - 1) {
  1814. memmove(&strescseq.buf[strescseq.len], c, len);
  1815. strescseq.len += len;
  1816. } else {
  1817. /*
  1818. * Here is a bug in terminals. If the user never sends
  1819. * some code to stop the str or esc command, then st
  1820. * will stop responding. But this is better than
  1821. * silently failing with unknown characters. At least
  1822. * then users will report back.
  1823. *
  1824. * In the case users ever get fixed, here is the code:
  1825. */
  1826. /*
  1827. * term.esc = 0;
  1828. * strhandle();
  1829. */
  1830. }
  1831. }
  1832. return;
  1833. }
  1834. /*
  1835. * Actions of control codes must be performed as soon they arrive
  1836. * because they can be embedded inside a control sequence, and
  1837. * they must not cause conflicts with sequences.
  1838. */
  1839. if(control) {
  1840. switch(ascii) {
  1841. case '\t': /* HT */
  1842. tputtab(1);
  1843. return;
  1844. case '\b': /* BS */
  1845. tmoveto(term.c.x-1, term.c.y);
  1846. return;
  1847. case '\r': /* CR */
  1848. tmoveto(0, term.c.y);
  1849. return;
  1850. case '\f': /* LF */
  1851. case '\v': /* VT */
  1852. case '\n': /* LF */
  1853. /* go to first col if the mode is set */
  1854. tnewline(IS_SET(MODE_CRLF));
  1855. return;
  1856. case '\a': /* BEL */
  1857. if(!(xw.state & WIN_FOCUSED))
  1858. xseturgency(1);
  1859. return;
  1860. case '\033': /* ESC */
  1861. csireset();
  1862. term.esc = ESC_START;
  1863. return;
  1864. case '\016': /* SO */
  1865. case '\017': /* SI */
  1866. /*
  1867. * Different charsets are hard to handle. Applications
  1868. * should use the right alt charset escapes for the
  1869. * only reason they still exist: line drawing. The
  1870. * rest is incompatible history st should not support.
  1871. */
  1872. return;
  1873. case '\032': /* SUB */
  1874. case '\030': /* CAN */
  1875. csireset();
  1876. return;
  1877. case '\005': /* ENQ (IGNORED) */
  1878. case '\000': /* NUL (IGNORED) */
  1879. case '\021': /* XON (IGNORED) */
  1880. case '\023': /* XOFF (IGNORED) */
  1881. case 0177: /* DEL (IGNORED) */
  1882. return;
  1883. }
  1884. } else if(term.esc & ESC_START) {
  1885. if(term.esc & ESC_CSI) {
  1886. csiescseq.buf[csiescseq.len++] = ascii;
  1887. if(BETWEEN(ascii, 0x40, 0x7E)
  1888. || csiescseq.len >= \
  1889. sizeof(csiescseq.buf)-1) {
  1890. term.esc = 0;
  1891. csiparse();
  1892. csihandle();
  1893. }
  1894. } else if(term.esc & ESC_STR_END) {
  1895. term.esc = 0;
  1896. if(ascii == '\\')
  1897. strhandle();
  1898. } else if(term.esc & ESC_ALTCHARSET) {
  1899. switch(ascii) {
  1900. case '0': /* Line drawing set */
  1901. term.c.attr.mode |= ATTR_GFX;
  1902. break;
  1903. case 'B': /* USASCII */
  1904. term.c.attr.mode &= ~ATTR_GFX;
  1905. break;
  1906. case 'A': /* UK (IGNORED) */
  1907. case '<': /* multinational charset (IGNORED) */
  1908. case '5': /* Finnish (IGNORED) */
  1909. case 'C': /* Finnish (IGNORED) */
  1910. case 'K': /* German (IGNORED) */
  1911. break;
  1912. default:
  1913. fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
  1914. }
  1915. term.esc = 0;
  1916. } else if(term.esc & ESC_TEST) {
  1917. if(ascii == '8') { /* DEC screen alignment test. */
  1918. char E[UTF_SIZ] = "E";
  1919. int x, y;
  1920. for(x = 0; x < term.col; ++x) {
  1921. for(y = 0; y < term.row; ++y)
  1922. tsetchar(E, &term.c.attr, x, y);
  1923. }
  1924. }
  1925. term.esc = 0;
  1926. } else {
  1927. switch(ascii) {
  1928. case '[':
  1929. term.esc |= ESC_CSI;
  1930. break;
  1931. case '#':
  1932. term.esc |= ESC_TEST;
  1933. break;
  1934. case 'P': /* DCS -- Device Control String */
  1935. case '_': /* APC -- Application Program Command */
  1936. case '^': /* PM -- Privacy Message */
  1937. case ']': /* OSC -- Operating System Command */
  1938. case 'k': /* old title set compatibility */
  1939. strreset();
  1940. strescseq.type = ascii;
  1941. term.esc |= ESC_STR;
  1942. break;
  1943. case '(': /* set primary charset G0 */
  1944. term.esc |= ESC_ALTCHARSET;
  1945. break;
  1946. case ')': /* set secondary charset G1 (IGNORED) */
  1947. case '*': /* set tertiary charset G2 (IGNORED) */
  1948. case '+': /* set quaternary charset G3 (IGNORED) */
  1949. term.esc = 0;
  1950. break;
  1951. case 'D': /* IND -- Linefeed */
  1952. if(term.c.y == term.bot) {
  1953. tscrollup(term.top, 1);
  1954. } else {
  1955. tmoveto(term.c.x, term.c.y+1);
  1956. }
  1957. term.esc = 0;
  1958. break;
  1959. case 'E': /* NEL -- Next line */
  1960. tnewline(1); /* always go to first col */
  1961. term.esc = 0;
  1962. break;
  1963. case 'H': /* HTS -- Horizontal tab stop */
  1964. term.tabs[term.c.x] = 1;
  1965. term.esc = 0;
  1966. break;
  1967. case 'M': /* RI -- Reverse index */
  1968. if(term.c.y == term.top) {
  1969. tscrolldown(term.top, 1);
  1970. } else {
  1971. tmoveto(term.c.x, term.c.y-1);
  1972. }
  1973. term.esc = 0;
  1974. break;
  1975. case 'Z': /* DECID -- Identify Terminal */
  1976. ttywrite(VT102ID, sizeof(VT102ID) - 1);
  1977. term.esc = 0;
  1978. break;
  1979. case 'c': /* RIS -- Reset to inital state */
  1980. treset();
  1981. term.esc = 0;
  1982. xresettitle();
  1983. break;
  1984. case '=': /* DECPAM -- Application keypad */
  1985. term.mode |= MODE_APPKEYPAD;
  1986. term.esc = 0;
  1987. break;
  1988. case '>': /* DECPNM -- Normal keypad */
  1989. term.mode &= ~MODE_APPKEYPAD;
  1990. term.esc = 0;
  1991. break;
  1992. case '7': /* DECSC -- Save Cursor */
  1993. tcursor(CURSOR_SAVE);
  1994. term.esc = 0;
  1995. break;
  1996. case '8': /* DECRC -- Restore Cursor */
  1997. tcursor(CURSOR_LOAD);
  1998. term.esc = 0;
  1999. break;
  2000. case '\\': /* ST -- Stop */
  2001. term.esc = 0;
  2002. break;
  2003. default:
  2004. fprintf(stderr, "erresc: unknown sequence ESC 0x%02X '%c'\n",
  2005. (uchar) ascii, isprint(ascii)? ascii:'.');
  2006. term.esc = 0;
  2007. }
  2008. }
  2009. /*
  2010. * All characters which form part of a sequence are not
  2011. * printed
  2012. */
  2013. return;
  2014. }
  2015. /*
  2016. * Display control codes only if we are in graphic mode
  2017. */
  2018. if(control && !(term.c.attr.mode & ATTR_GFX))
  2019. return;
  2020. if(sel.bx != -1 && BETWEEN(term.c.y, sel.by, sel.ey))
  2021. sel.bx = -1;
  2022. if(IS_SET(MODE_WRAP) && term.c.state & CURSOR_WRAPNEXT)
  2023. tnewline(1); /* always go to first col */
  2024. if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col) {
  2025. memmove(&term.line[term.c.y][term.c.x+1],
  2026. &term.line[term.c.y][term.c.x],
  2027. (term.col - term.c.x - 1) * sizeof(Glyph));
  2028. }
  2029. tsetchar(c, &term.c.attr, term.c.x, term.c.y);
  2030. if(term.c.x+1 < term.col) {
  2031. tmoveto(term.c.x+1, term.c.y);
  2032. } else {
  2033. term.c.state |= CURSOR_WRAPNEXT;
  2034. }
  2035. }
  2036. int
  2037. tresize(int col, int row) {
  2038. int i, x;
  2039. int minrow = MIN(row, term.row);
  2040. int mincol = MIN(col, term.col);
  2041. int slide = term.c.y - row + 1;
  2042. bool *bp;
  2043. if(col < 1 || row < 1)
  2044. return 0;
  2045. /* free unneeded rows */
  2046. i = 0;
  2047. if(slide > 0) {
  2048. /*
  2049. * slide screen to keep cursor where we expect it -
  2050. * tscrollup would work here, but we can optimize to
  2051. * memmove because we're freeing the earlier lines
  2052. */
  2053. for(/* i = 0 */; i < slide; i++) {
  2054. free(term.line[i]);
  2055. free(term.alt[i]);
  2056. }
  2057. memmove(term.line, term.line + slide, row * sizeof(Line));
  2058. memmove(term.alt, term.alt + slide, row * sizeof(Line));
  2059. }
  2060. for(i += row; i < term.row; i++) {
  2061. free(term.line[i]);
  2062. free(term.alt[i]);
  2063. }
  2064. /* resize to new height */
  2065. term.line = xrealloc(term.line, row * sizeof(Line));
  2066. term.alt = xrealloc(term.alt, row * sizeof(Line));
  2067. term.dirty = xrealloc(term.dirty, row * sizeof(*term.dirty));
  2068. term.tabs = xrealloc(term.tabs, col * sizeof(*term.tabs));
  2069. /* resize each row to new width, zero-pad if needed */
  2070. for(i = 0; i < minrow; i++) {
  2071. term.dirty[i] = 1;
  2072. term.line[i] = xrealloc(term.line[i], col * sizeof(Glyph));
  2073. term.alt[i] = xrealloc(term.alt[i], col * sizeof(Glyph));
  2074. for(x = mincol; x < col; x++) {
  2075. term.line[i][x].state = 0;
  2076. term.alt[i][x].state = 0;
  2077. }
  2078. }
  2079. /* allocate any new rows */
  2080. for(/* i == minrow */; i < row; i++) {
  2081. term.dirty[i] = 1;
  2082. term.line[i] = xcalloc(col, sizeof(Glyph));
  2083. term.alt [i] = xcalloc(col, sizeof(Glyph));
  2084. }
  2085. if(col > term.col) {
  2086. bp = term.tabs + term.col;
  2087. memset(bp, 0, sizeof(*term.tabs) * (col - term.col));
  2088. while(--bp > term.tabs && !*bp)
  2089. /* nothing */ ;
  2090. for(bp += tabspaces; bp < term.tabs + col; bp += tabspaces)
  2091. *bp = 1;
  2092. }
  2093. /* update terminal size */
  2094. term.col = col;
  2095. term.row = row;
  2096. /* reset scrolling region */
  2097. tsetscroll(0, row-1);
  2098. /* make use of the LIMIT in tmoveto */
  2099. tmoveto(term.c.x, term.c.y);
  2100. return (slide > 0);
  2101. }
  2102. void
  2103. xresize(int col, int row) {
  2104. xw.tw = MAX(1, col * xw.cw);
  2105. xw.th = MAX(1, row * xw.ch);
  2106. XFreePixmap(xw.dpy, xw.buf);
  2107. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  2108. DefaultDepth(xw.dpy, xw.scr));
  2109. XftDrawChange(xw.draw, xw.buf);
  2110. xclear(0, 0, xw.w, xw.h);
  2111. }
  2112. static inline ushort
  2113. sixd_to_16bit(int x) {
  2114. return x == 0 ? 0 : 0x3737 + 0x2828 * x;
  2115. }
  2116. void
  2117. xloadcols(void) {
  2118. int i, r, g, b;
  2119. XRenderColor color = { .alpha = 0xffff };
  2120. /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
  2121. for(i = 0; i < LEN(colorname); i++) {
  2122. if(!colorname[i])
  2123. continue;
  2124. if(!XftColorAllocName(xw.dpy, xw.vis, xw.cmap, colorname[i], &dc.col[i])) {
  2125. die("Could not allocate color '%s'\n", colorname[i]);
  2126. }
  2127. }
  2128. /* load colors [16-255] ; same colors as xterm */
  2129. for(i = 16, r = 0; r < 6; r++) {
  2130. for(g = 0; g < 6; g++) {
  2131. for(b = 0; b < 6; b++) {
  2132. color.red = sixd_to_16bit(r);
  2133. color.green = sixd_to_16bit(g);
  2134. color.blue = sixd_to_16bit(b);
  2135. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &dc.col[i])) {
  2136. die("Could not allocate color %d\n", i);
  2137. }
  2138. i++;
  2139. }
  2140. }
  2141. }
  2142. for(r = 0; r < 24; r++, i++) {
  2143. color.red = color.green = color.blue = 0x0808 + 0x0a0a * r;
  2144. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color,
  2145. &dc.col[i])) {
  2146. die("Could not allocate color %d\n", i);
  2147. }
  2148. }
  2149. }
  2150. int
  2151. xsetcolorname(int x, const char *name) {
  2152. XRenderColor color = { .alpha = 0xffff };
  2153. Colour colour;
  2154. if (x < 0 || x > LEN(colorname))
  2155. return -1;
  2156. if(!name) {
  2157. if(16 <= x && x < 16 + 216) {
  2158. int r = (x - 16) / 36, g = ((x - 16) % 36) / 6, b = (x - 16) % 6;
  2159. color.red = sixd_to_16bit(r);
  2160. color.green = sixd_to_16bit(g);
  2161. color.blue = sixd_to_16bit(b);
  2162. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &colour))
  2163. return 0; /* something went wrong */
  2164. dc.col[x] = colour;
  2165. return 1;
  2166. } else if (16 + 216 <= x && x < 256) {
  2167. color.red = color.green = color.blue = 0x0808 + 0x0a0a * (x - (16 + 216));
  2168. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &colour))
  2169. return 0; /* something went wrong */
  2170. dc.col[x] = colour;
  2171. return 1;
  2172. } else {
  2173. name = colorname[x];
  2174. }
  2175. }
  2176. if(!XftColorAllocName(xw.dpy, xw.vis, xw.cmap, name, &colour))
  2177. return 0;
  2178. dc.col[x] = colour;
  2179. return 1;
  2180. }
  2181. void
  2182. xtermclear(int col1, int row1, int col2, int row2) {
  2183. XftDrawRect(xw.draw,
  2184. &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
  2185. borderpx + col1 * xw.cw,
  2186. borderpx + row1 * xw.ch,
  2187. (col2-col1+1) * xw.cw,
  2188. (row2-row1+1) * xw.ch);
  2189. }
  2190. /*
  2191. * Absolute coordinates.
  2192. */
  2193. void
  2194. xclear(int x1, int y1, int x2, int y2) {
  2195. XftDrawRect(xw.draw,
  2196. &dc.col[IS_SET(MODE_REVERSE)? defaultfg : defaultbg],
  2197. x1, y1, x2-x1, y2-y1);
  2198. }
  2199. void
  2200. xhints(void) {
  2201. XClassHint class = {opt_class ? opt_class : termname, termname};
  2202. XWMHints wm = {.flags = InputHint, .input = 1};
  2203. XSizeHints *sizeh = NULL;
  2204. sizeh = XAllocSizeHints();
  2205. if(xw.isfixed == False) {
  2206. sizeh->flags = PSize | PResizeInc | PBaseSize;
  2207. sizeh->height = xw.h;
  2208. sizeh->width = xw.w;
  2209. sizeh->height_inc = xw.ch;
  2210. sizeh->width_inc = xw.cw;
  2211. sizeh->base_height = 2 * borderpx;
  2212. sizeh->base_width = 2 * borderpx;
  2213. } else {
  2214. sizeh->flags = PMaxSize | PMinSize;
  2215. sizeh->min_width = sizeh->max_width = xw.fw;
  2216. sizeh->min_height = sizeh->max_height = xw.fh;
  2217. }
  2218. XSetWMProperties(xw.dpy, xw.win, NULL, NULL, NULL, 0, sizeh, &wm, &class);
  2219. XFree(sizeh);
  2220. }
  2221. int
  2222. xloadfont(Font *f, FcPattern *pattern) {
  2223. FcPattern *match;
  2224. FcResult result;
  2225. match = FcFontMatch(NULL, pattern, &result);
  2226. if(!match)
  2227. return 1;
  2228. if(!(f->set = FcFontSort(0, match, FcTrue, 0, &result))) {
  2229. FcPatternDestroy(match);
  2230. return 1;
  2231. }
  2232. if(!(f->match = XftFontOpenPattern(xw.dpy, match))) {
  2233. FcPatternDestroy(match);
  2234. return 1;
  2235. }
  2236. f->pattern = FcPatternDuplicate(pattern);
  2237. f->ascent = f->match->ascent;
  2238. f->descent = f->match->descent;
  2239. f->lbearing = 0;
  2240. f->rbearing = f->match->max_advance_width;
  2241. f->height = f->ascent + f->descent;
  2242. f->width = f->lbearing + f->rbearing;
  2243. return 0;
  2244. }
  2245. void
  2246. xloadfonts(char *fontstr, int fontsize) {
  2247. FcPattern *pattern;
  2248. FcResult result;
  2249. double fontval;
  2250. if(fontstr[0] == '-') {
  2251. pattern = XftXlfdParse(fontstr, False, False);
  2252. } else {
  2253. pattern = FcNameParse((FcChar8 *)fontstr);
  2254. }
  2255. if(!pattern)
  2256. die("st: can't open font %s\n", fontstr);
  2257. if(fontsize > 0) {
  2258. FcPatternDel(pattern, FC_PIXEL_SIZE);
  2259. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, (double)fontsize);
  2260. usedfontsize = fontsize;
  2261. } else {
  2262. result = FcPatternGetDouble(pattern, FC_PIXEL_SIZE, 0, &fontval);
  2263. if(result == FcResultMatch) {
  2264. usedfontsize = (int)fontval;
  2265. } else {
  2266. /*
  2267. * Default font size is 12, if none given. This is to
  2268. * have a known usedfontsize value.
  2269. */
  2270. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, 12);
  2271. usedfontsize = 12;
  2272. }
  2273. }
  2274. FcConfigSubstitute(0, pattern, FcMatchPattern);
  2275. FcDefaultSubstitute(pattern);
  2276. if(xloadfont(&dc.font, pattern))
  2277. die("st: can't open font %s\n", fontstr);
  2278. /* Setting character width and height. */
  2279. xw.cw = dc.font.width;
  2280. xw.ch = dc.font.height;
  2281. FcPatternDel(pattern, FC_SLANT);
  2282. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC);
  2283. if(xloadfont(&dc.ifont, pattern))
  2284. die("st: can't open font %s\n", fontstr);
  2285. FcPatternDel(pattern, FC_WEIGHT);
  2286. FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_BOLD);
  2287. if(xloadfont(&dc.ibfont, pattern))
  2288. die("st: can't open font %s\n", fontstr);
  2289. FcPatternDel(pattern, FC_SLANT);
  2290. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN);
  2291. if(xloadfont(&dc.bfont, pattern))
  2292. die("st: can't open font %s\n", fontstr);
  2293. FcPatternDestroy(pattern);
  2294. }
  2295. void
  2296. xunloadfonts(void) {
  2297. int i, ip;
  2298. /*
  2299. * Free the loaded fonts in the font cache. This is done backwards
  2300. * from the frccur.
  2301. */
  2302. for(i = 0, ip = frccur; i < frclen; i++, ip--) {
  2303. if(ip < 0)
  2304. ip = LEN(frc) - 1;
  2305. XftFontClose(xw.dpy, frc[ip].font);
  2306. }
  2307. frccur = -1;
  2308. frclen = 0;
  2309. XftFontClose(xw.dpy, dc.font.match);
  2310. FcPatternDestroy(dc.font.pattern);
  2311. FcFontSetDestroy(dc.font.set);
  2312. XftFontClose(xw.dpy, dc.bfont.match);
  2313. FcPatternDestroy(dc.bfont.pattern);
  2314. FcFontSetDestroy(dc.bfont.set);
  2315. XftFontClose(xw.dpy, dc.ifont.match);
  2316. FcPatternDestroy(dc.ifont.pattern);
  2317. FcFontSetDestroy(dc.ifont.set);
  2318. XftFontClose(xw.dpy, dc.ibfont.match);
  2319. FcPatternDestroy(dc.ibfont.pattern);
  2320. FcFontSetDestroy(dc.ibfont.set);
  2321. }
  2322. void
  2323. xzoom(const Arg *arg) {
  2324. xunloadfonts();
  2325. xloadfonts(usedfont, usedfontsize + arg->i);
  2326. cresize(0, 0);
  2327. redraw(0);
  2328. }
  2329. void
  2330. xinit(void) {
  2331. XSetWindowAttributes attrs;
  2332. XGCValues gcvalues;
  2333. Cursor cursor;
  2334. Window parent;
  2335. int sw, sh;
  2336. if(!(xw.dpy = XOpenDisplay(NULL)))
  2337. die("Can't open display\n");
  2338. xw.scr = XDefaultScreen(xw.dpy);
  2339. xw.vis = XDefaultVisual(xw.dpy, xw.scr);
  2340. /* font */
  2341. if(!FcInit())
  2342. die("Could not init fontconfig.\n");
  2343. usedfont = (opt_font == NULL)? font : opt_font;
  2344. xloadfonts(usedfont, 0);
  2345. /* colors */
  2346. xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
  2347. xloadcols();
  2348. /* adjust fixed window geometry */
  2349. if(xw.isfixed) {
  2350. sw = DisplayWidth(xw.dpy, xw.scr);
  2351. sh = DisplayHeight(xw.dpy, xw.scr);
  2352. if(xw.fx < 0)
  2353. xw.fx = sw + xw.fx - xw.fw - 1;
  2354. if(xw.fy < 0)
  2355. xw.fy = sh + xw.fy - xw.fh - 1;
  2356. xw.h = xw.fh;
  2357. xw.w = xw.fw;
  2358. } else {
  2359. /* window - default size */
  2360. xw.h = 2 * borderpx + term.row * xw.ch;
  2361. xw.w = 2 * borderpx + term.col * xw.cw;
  2362. xw.fx = 0;
  2363. xw.fy = 0;
  2364. }
  2365. /* Events */
  2366. attrs.background_pixel = dc.col[defaultbg].pixel;
  2367. attrs.border_pixel = dc.col[defaultbg].pixel;
  2368. attrs.bit_gravity = NorthWestGravity;
  2369. attrs.event_mask = FocusChangeMask | KeyPressMask
  2370. | ExposureMask | VisibilityChangeMask | StructureNotifyMask
  2371. | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
  2372. attrs.colormap = xw.cmap;
  2373. parent = opt_embed ? strtol(opt_embed, NULL, 0) : \
  2374. XRootWindow(xw.dpy, xw.scr);
  2375. xw.win = XCreateWindow(xw.dpy, parent, xw.fx, xw.fy,
  2376. xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,
  2377. xw.vis,
  2378. CWBackPixel | CWBorderPixel | CWBitGravity | CWEventMask
  2379. | CWColormap,
  2380. &attrs);
  2381. memset(&gcvalues, 0, sizeof(gcvalues));
  2382. gcvalues.graphics_exposures = False;
  2383. dc.gc = XCreateGC(xw.dpy, parent, GCGraphicsExposures,
  2384. &gcvalues);
  2385. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  2386. DefaultDepth(xw.dpy, xw.scr));
  2387. XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
  2388. XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
  2389. /* Xft rendering context */
  2390. xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
  2391. /* input methods */
  2392. if((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  2393. XSetLocaleModifiers("@im=local");
  2394. if((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  2395. XSetLocaleModifiers("@im=");
  2396. if((xw.xim = XOpenIM(xw.dpy,
  2397. NULL, NULL, NULL)) == NULL) {
  2398. die("XOpenIM failed. Could not open input"
  2399. " device.\n");
  2400. }
  2401. }
  2402. }
  2403. xw.xic = XCreateIC(xw.xim, XNInputStyle, XIMPreeditNothing
  2404. | XIMStatusNothing, XNClientWindow, xw.win,
  2405. XNFocusWindow, xw.win, NULL);
  2406. if(xw.xic == NULL)
  2407. die("XCreateIC failed. Could not obtain input method.\n");
  2408. /* white cursor, black outline */
  2409. cursor = XCreateFontCursor(xw.dpy, XC_xterm);
  2410. XDefineCursor(xw.dpy, xw.win, cursor);
  2411. XRecolorCursor(xw.dpy, cursor,
  2412. &(XColor){.red = 0xffff, .green = 0xffff, .blue = 0xffff},
  2413. &(XColor){.red = 0x0000, .green = 0x0000, .blue = 0x0000});
  2414. xw.xembed = XInternAtom(xw.dpy, "_XEMBED", False);
  2415. xw.wmdeletewin = XInternAtom(xw.dpy, "WM_DELETE_WINDOW", False);
  2416. XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
  2417. xresettitle();
  2418. XMapWindow(xw.dpy, xw.win);
  2419. xhints();
  2420. XSync(xw.dpy, 0);
  2421. }
  2422. void
  2423. xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
  2424. int winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch,
  2425. width = charlen * xw.cw, xp, i;
  2426. int frp, frcflags;
  2427. int u8fl, u8fblen, u8cblen, doesexist;
  2428. char *u8c, *u8fs;
  2429. long u8char;
  2430. Font *font = &dc.font;
  2431. FcResult fcres;
  2432. FcPattern *fcpattern, *fontpattern;
  2433. FcFontSet *fcsets[] = { NULL };
  2434. FcCharSet *fccharset;
  2435. Colour *fg, *bg, *temp, revfg, revbg;
  2436. XRenderColor colfg, colbg;
  2437. frcflags = FRC_NORMAL;
  2438. if(base.mode & ATTR_ITALIC) {
  2439. if(base.fg == defaultfg)
  2440. base.fg = defaultitalic;
  2441. font = &dc.ifont;
  2442. frcflags = FRC_ITALIC;
  2443. } else if((base.mode & ATTR_ITALIC) && (base.mode & ATTR_BOLD)) {
  2444. if(base.fg == defaultfg)
  2445. base.fg = defaultitalic;
  2446. font = &dc.ibfont;
  2447. frcflags = FRC_ITALICBOLD;
  2448. } else if(base.mode & ATTR_UNDERLINE) {
  2449. if(base.fg == defaultfg)
  2450. base.fg = defaultunderline;
  2451. }
  2452. fg = &dc.col[base.fg];
  2453. bg = &dc.col[base.bg];
  2454. if(base.mode & ATTR_BOLD) {
  2455. if(BETWEEN(base.fg, 0, 7)) {
  2456. /* basic system colors */
  2457. fg = &dc.col[base.fg + 8];
  2458. } else if(BETWEEN(base.fg, 16, 195)) {
  2459. /* 256 colors */
  2460. fg = &dc.col[base.fg + 36];
  2461. } else if(BETWEEN(base.fg, 232, 251)) {
  2462. /* greyscale */
  2463. fg = &dc.col[base.fg + 4];
  2464. }
  2465. /*
  2466. * Those ranges will not be brightened:
  2467. * 8 - 15 – bright system colors
  2468. * 196 - 231 – highest 256 color cube
  2469. * 252 - 255 – brightest colors in greyscale
  2470. */
  2471. font = &dc.bfont;
  2472. frcflags = FRC_BOLD;
  2473. }
  2474. if(IS_SET(MODE_REVERSE)) {
  2475. if(fg == &dc.col[defaultfg]) {
  2476. fg = &dc.col[defaultbg];
  2477. } else {
  2478. colfg.red = ~fg->color.red;
  2479. colfg.green = ~fg->color.green;
  2480. colfg.blue = ~fg->color.blue;
  2481. colfg.alpha = fg->color.alpha;
  2482. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &revfg);
  2483. fg = &revfg;
  2484. }
  2485. if(bg == &dc.col[defaultbg]) {
  2486. bg = &dc.col[defaultfg];
  2487. } else {
  2488. colbg.red = ~bg->color.red;
  2489. colbg.green = ~bg->color.green;
  2490. colbg.blue = ~bg->color.blue;
  2491. colbg.alpha = bg->color.alpha;
  2492. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &revbg);
  2493. bg = &revbg;
  2494. }
  2495. }
  2496. if(base.mode & ATTR_REVERSE) {
  2497. temp = fg;
  2498. fg = bg;
  2499. bg = temp;
  2500. }
  2501. /* Intelligent cleaning up of the borders. */
  2502. if(x == 0) {
  2503. xclear(0, (y == 0)? 0 : winy, borderpx,
  2504. winy + xw.ch + ((y >= term.row-1)? xw.h : 0));
  2505. }
  2506. if(x + charlen >= term.col) {
  2507. xclear(winx + width, (y == 0)? 0 : winy, xw.w,
  2508. ((y >= term.row-1)? xw.h : (winy + xw.ch)));
  2509. }
  2510. if(y == 0)
  2511. xclear(winx, 0, winx + width, borderpx);
  2512. if(y == term.row-1)
  2513. xclear(winx, winy + xw.ch, winx + width, xw.h);
  2514. /* Clean up the region we want to draw to. */
  2515. XftDrawRect(xw.draw, bg, winx, winy, width, xw.ch);
  2516. fcsets[0] = font->set;
  2517. for(xp = winx; bytelen > 0;) {
  2518. /*
  2519. * Search for the range in the to be printed string of glyphs
  2520. * that are in the main font. Then print that range. If
  2521. * some glyph is found that is not in the font, do the
  2522. * fallback dance.
  2523. */
  2524. u8fs = s;
  2525. u8fblen = 0;
  2526. u8fl = 0;
  2527. for(;;) {
  2528. u8c = s;
  2529. u8cblen = utf8decode(s, &u8char);
  2530. s += u8cblen;
  2531. bytelen -= u8cblen;
  2532. doesexist = XftCharIndex(xw.dpy, font->match, u8char);
  2533. if(!doesexist || bytelen <= 0) {
  2534. if(bytelen <= 0) {
  2535. if(doesexist) {
  2536. u8fl++;
  2537. u8fblen += u8cblen;
  2538. }
  2539. }
  2540. if(u8fl > 0) {
  2541. XftDrawStringUtf8(xw.draw, fg,
  2542. font->match, xp,
  2543. winy + font->ascent,
  2544. (FcChar8 *)u8fs,
  2545. u8fblen);
  2546. xp += font->width * u8fl;
  2547. }
  2548. break;
  2549. }
  2550. u8fl++;
  2551. u8fblen += u8cblen;
  2552. }
  2553. if(doesexist)
  2554. break;
  2555. frp = frccur;
  2556. /* Search the font cache. */
  2557. for(i = 0; i < frclen; i++, frp--) {
  2558. if(frp <= 0)
  2559. frp = LEN(frc) - 1;
  2560. if(frc[frp].c == u8char
  2561. && frc[frp].flags == frcflags) {
  2562. break;
  2563. }
  2564. }
  2565. /* Nothing was found. */
  2566. if(i >= frclen) {
  2567. /*
  2568. * Nothing was found in the cache. Now use
  2569. * some dozen of Fontconfig calls to get the
  2570. * font for one single character.
  2571. */
  2572. fcpattern = FcPatternDuplicate(font->pattern);
  2573. fccharset = FcCharSetCreate();
  2574. FcCharSetAddChar(fccharset, u8char);
  2575. FcPatternAddCharSet(fcpattern, FC_CHARSET,
  2576. fccharset);
  2577. FcPatternAddBool(fcpattern, FC_SCALABLE,
  2578. FcTrue);
  2579. FcConfigSubstitute(0, fcpattern,
  2580. FcMatchPattern);
  2581. FcDefaultSubstitute(fcpattern);
  2582. fontpattern = FcFontSetMatch(0, fcsets,
  2583. FcTrue, fcpattern, &fcres);
  2584. /*
  2585. * Overwrite or create the new cache entry.
  2586. */
  2587. frccur++;
  2588. frclen++;
  2589. if(frccur >= LEN(frc))
  2590. frccur = 0;
  2591. if(frclen > LEN(frc)) {
  2592. frclen = LEN(frc);
  2593. XftFontClose(xw.dpy, frc[frccur].font);
  2594. }
  2595. frc[frccur].font = XftFontOpenPattern(xw.dpy,
  2596. fontpattern);
  2597. frc[frccur].c = u8char;
  2598. frc[frccur].flags = frcflags;
  2599. FcPatternDestroy(fcpattern);
  2600. FcCharSetDestroy(fccharset);
  2601. frp = frccur;
  2602. }
  2603. XftDrawStringUtf8(xw.draw, fg, frc[frp].font,
  2604. xp, winy + frc[frp].font->ascent,
  2605. (FcChar8 *)u8c, u8cblen);
  2606. xp += font->width;
  2607. }
  2608. /*
  2609. XftDrawStringUtf8(xw.draw, fg, font->set, winx,
  2610. winy + font->ascent, (FcChar8 *)s, bytelen);
  2611. */
  2612. if(base.mode & ATTR_UNDERLINE) {
  2613. XftDrawRect(xw.draw, fg, winx, winy + font->ascent + 1,
  2614. width, 1);
  2615. }
  2616. }
  2617. void
  2618. xdrawcursor(void) {
  2619. static int oldx = 0, oldy = 0;
  2620. int sl;
  2621. Glyph g = {{' '}, ATTR_NULL, defaultbg, defaultcs, 0};
  2622. LIMIT(oldx, 0, term.col-1);
  2623. LIMIT(oldy, 0, term.row-1);
  2624. if(term.line[term.c.y][term.c.x].state & GLYPH_SET)
  2625. memcpy(g.c, term.line[term.c.y][term.c.x].c, UTF_SIZ);
  2626. /* remove the old cursor */
  2627. if(term.line[oldy][oldx].state & GLYPH_SET) {
  2628. sl = utf8size(term.line[oldy][oldx].c);
  2629. xdraws(term.line[oldy][oldx].c, term.line[oldy][oldx], oldx,
  2630. oldy, 1, sl);
  2631. } else {
  2632. xtermclear(oldx, oldy, oldx, oldy);
  2633. }
  2634. /* draw the new one */
  2635. if(!(IS_SET(MODE_HIDE))) {
  2636. if(xw.state & WIN_FOCUSED) {
  2637. if(IS_SET(MODE_REVERSE)) {
  2638. g.mode |= ATTR_REVERSE;
  2639. g.fg = defaultcs;
  2640. g.bg = defaultfg;
  2641. }
  2642. sl = utf8size(g.c);
  2643. xdraws(g.c, g, term.c.x, term.c.y, 1, sl);
  2644. } else {
  2645. XftDrawRect(xw.draw, &dc.col[defaultcs],
  2646. borderpx + term.c.x * xw.cw,
  2647. borderpx + term.c.y * xw.ch,
  2648. xw.cw - 1, 1);
  2649. XftDrawRect(xw.draw, &dc.col[defaultcs],
  2650. borderpx + term.c.x * xw.cw,
  2651. borderpx + term.c.y * xw.ch,
  2652. 1, xw.ch - 1);
  2653. XftDrawRect(xw.draw, &dc.col[defaultcs],
  2654. borderpx + (term.c.x + 1) * xw.cw - 1,
  2655. borderpx + term.c.y * xw.ch,
  2656. 1, xw.ch - 1);
  2657. XftDrawRect(xw.draw, &dc.col[defaultcs],
  2658. borderpx + term.c.x * xw.cw,
  2659. borderpx + (term.c.y + 1) * xw.ch - 1,
  2660. xw.cw, 1);
  2661. }
  2662. oldx = term.c.x, oldy = term.c.y;
  2663. }
  2664. }
  2665. void
  2666. xsettitle(char *p) {
  2667. XTextProperty prop;
  2668. Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
  2669. &prop);
  2670. XSetWMName(xw.dpy, xw.win, &prop);
  2671. }
  2672. void
  2673. xresettitle(void) {
  2674. xsettitle(opt_title ? opt_title : "st");
  2675. }
  2676. void
  2677. redraw(int timeout) {
  2678. struct timespec tv = {0, timeout * 1000};
  2679. tfulldirt();
  2680. draw();
  2681. if(timeout > 0) {
  2682. nanosleep(&tv, NULL);
  2683. XSync(xw.dpy, False); /* necessary for a good tput flash */
  2684. }
  2685. }
  2686. void
  2687. draw(void) {
  2688. drawregion(0, 0, term.col, term.row);
  2689. XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.w,
  2690. xw.h, 0, 0);
  2691. XSetForeground(xw.dpy, dc.gc,
  2692. dc.col[IS_SET(MODE_REVERSE)?
  2693. defaultfg : defaultbg].pixel);
  2694. }
  2695. void
  2696. drawregion(int x1, int y1, int x2, int y2) {
  2697. int ic, ib, x, y, ox, sl;
  2698. Glyph base, new;
  2699. char buf[DRAW_BUF_SIZ];
  2700. bool ena_sel = sel.bx != -1;
  2701. if(sel.alt ^ IS_SET(MODE_ALTSCREEN))
  2702. ena_sel = 0;
  2703. if(!(xw.state & WIN_VISIBLE))
  2704. return;
  2705. for(y = y1; y < y2; y++) {
  2706. if(!term.dirty[y])
  2707. continue;
  2708. xtermclear(0, y, term.col, y);
  2709. term.dirty[y] = 0;
  2710. base = term.line[y][0];
  2711. ic = ib = ox = 0;
  2712. for(x = x1; x < x2; x++) {
  2713. new = term.line[y][x];
  2714. if(ena_sel && *(new.c) && selected(x, y))
  2715. new.mode ^= ATTR_REVERSE;
  2716. if(ib > 0 && (!(new.state & GLYPH_SET)
  2717. || ATTRCMP(base, new)
  2718. || ib >= DRAW_BUF_SIZ-UTF_SIZ)) {
  2719. xdraws(buf, base, ox, y, ic, ib);
  2720. ic = ib = 0;
  2721. }
  2722. if(new.state & GLYPH_SET) {
  2723. if(ib == 0) {
  2724. ox = x;
  2725. base = new;
  2726. }
  2727. sl = utf8size(new.c);
  2728. memcpy(buf+ib, new.c, sl);
  2729. ib += sl;
  2730. ++ic;
  2731. }
  2732. }
  2733. if(ib > 0)
  2734. xdraws(buf, base, ox, y, ic, ib);
  2735. }
  2736. xdrawcursor();
  2737. }
  2738. void
  2739. expose(XEvent *ev) {
  2740. XExposeEvent *e = &ev->xexpose;
  2741. if(xw.state & WIN_REDRAW) {
  2742. if(!e->count)
  2743. xw.state &= ~WIN_REDRAW;
  2744. }
  2745. redraw(0);
  2746. }
  2747. void
  2748. visibility(XEvent *ev) {
  2749. XVisibilityEvent *e = &ev->xvisibility;
  2750. if(e->state == VisibilityFullyObscured) {
  2751. xw.state &= ~WIN_VISIBLE;
  2752. } else if(!(xw.state & WIN_VISIBLE)) {
  2753. /* need a full redraw for next Expose, not just a buf copy */
  2754. xw.state |= WIN_VISIBLE | WIN_REDRAW;
  2755. }
  2756. }
  2757. void
  2758. unmap(XEvent *ev) {
  2759. xw.state &= ~WIN_VISIBLE;
  2760. }
  2761. void
  2762. xseturgency(int add) {
  2763. XWMHints *h = XGetWMHints(xw.dpy, xw.win);
  2764. h->flags = add ? (h->flags | XUrgencyHint) : (h->flags & ~XUrgencyHint);
  2765. XSetWMHints(xw.dpy, xw.win, h);
  2766. XFree(h);
  2767. }
  2768. void
  2769. focus(XEvent *ev) {
  2770. XFocusChangeEvent *e = &ev->xfocus;
  2771. if(e->mode == NotifyGrab)
  2772. return;
  2773. if(ev->type == FocusIn) {
  2774. XSetICFocus(xw.xic);
  2775. xw.state |= WIN_FOCUSED;
  2776. xseturgency(0);
  2777. } else {
  2778. XUnsetICFocus(xw.xic);
  2779. xw.state &= ~WIN_FOCUSED;
  2780. }
  2781. }
  2782. inline bool
  2783. match(uint mask, uint state) {
  2784. state &= ~(ignoremod);
  2785. if(mask == XK_NO_MOD && state)
  2786. return false;
  2787. if(mask != XK_ANY_MOD && mask != XK_NO_MOD && !state)
  2788. return false;
  2789. if((state & mask) != state)
  2790. return false;
  2791. return true;
  2792. }
  2793. void
  2794. numlock(const Arg *dummy) {
  2795. term.numlock ^= 1;
  2796. }
  2797. char*
  2798. kmap(KeySym k, uint state) {
  2799. uint mask;
  2800. Key *kp;
  2801. int i;
  2802. /* Check for mapped keys out of X11 function keys. */
  2803. for(i = 0; i < LEN(mappedkeys); i++) {
  2804. if(mappedkeys[i] == k)
  2805. break;
  2806. }
  2807. if(i == LEN(mappedkeys)) {
  2808. if((k & 0xFFFF) < 0xFD00)
  2809. return NULL;
  2810. }
  2811. for(kp = key; kp < key + LEN(key); kp++) {
  2812. mask = kp->mask;
  2813. if(kp->k != k)
  2814. continue;
  2815. if(!match(mask, state))
  2816. continue;
  2817. if(kp->appkey > 0) {
  2818. if(!IS_SET(MODE_APPKEYPAD))
  2819. continue;
  2820. if(term.numlock && kp->appkey == 2)
  2821. continue;
  2822. } else if(kp->appkey < 0 && IS_SET(MODE_APPKEYPAD)) {
  2823. continue;
  2824. }
  2825. if((kp->appcursor < 0 && IS_SET(MODE_APPCURSOR)) ||
  2826. (kp->appcursor > 0
  2827. && !IS_SET(MODE_APPCURSOR))) {
  2828. continue;
  2829. }
  2830. if((kp->crlf < 0 && IS_SET(MODE_CRLF)) ||
  2831. (kp->crlf > 0 && !IS_SET(MODE_CRLF))) {
  2832. continue;
  2833. }
  2834. return kp->s;
  2835. }
  2836. return NULL;
  2837. }
  2838. void
  2839. kpress(XEvent *ev) {
  2840. XKeyEvent *e = &ev->xkey;
  2841. KeySym ksym;
  2842. char xstr[31], buf[32], *customkey, *cp = buf;
  2843. int len;
  2844. Status status;
  2845. Shortcut *bp;
  2846. if(IS_SET(MODE_KBDLOCK))
  2847. return;
  2848. len = XmbLookupString(xw.xic, e, xstr, sizeof(xstr), &ksym, &status);
  2849. e->state &= ~Mod2Mask;
  2850. /* 1. shortcuts */
  2851. for(bp = shortcuts; bp < shortcuts + LEN(shortcuts); bp++) {
  2852. if(ksym == bp->keysym && match(bp->mod, e->state)) {
  2853. bp->func(&(bp->arg));
  2854. return;
  2855. }
  2856. }
  2857. /* 2. custom keys from config.h */
  2858. if((customkey = kmap(ksym, e->state))) {
  2859. len = strlen(customkey);
  2860. memcpy(buf, customkey, len);
  2861. /* 2. hardcoded (overrides X lookup) */
  2862. } else {
  2863. if(len == 0)
  2864. return;
  2865. if(len == 1 && e->state & Mod1Mask)
  2866. *cp++ = '\033';
  2867. memcpy(cp, xstr, len);
  2868. len = cp - buf + len;
  2869. }
  2870. ttywrite(buf, len);
  2871. if(IS_SET(MODE_ECHO))
  2872. techo(buf, len);
  2873. }
  2874. void
  2875. cmessage(XEvent *e) {
  2876. /*
  2877. * See xembed specs
  2878. * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
  2879. */
  2880. if(e->xclient.message_type == xw.xembed && e->xclient.format == 32) {
  2881. if(e->xclient.data.l[1] == XEMBED_FOCUS_IN) {
  2882. xw.state |= WIN_FOCUSED;
  2883. xseturgency(0);
  2884. } else if(e->xclient.data.l[1] == XEMBED_FOCUS_OUT) {
  2885. xw.state &= ~WIN_FOCUSED;
  2886. }
  2887. } else if(e->xclient.data.l[0] == xw.wmdeletewin) {
  2888. /* Send SIGHUP to shell */
  2889. kill(pid, SIGHUP);
  2890. exit(EXIT_SUCCESS);
  2891. }
  2892. }
  2893. void
  2894. cresize(int width, int height) {
  2895. int col, row;
  2896. if(width != 0)
  2897. xw.w = width;
  2898. if(height != 0)
  2899. xw.h = height;
  2900. col = (xw.w - 2 * borderpx) / xw.cw;
  2901. row = (xw.h - 2 * borderpx) / xw.ch;
  2902. tresize(col, row);
  2903. xresize(col, row);
  2904. ttyresize();
  2905. }
  2906. void
  2907. resize(XEvent *e) {
  2908. if(e->xconfigure.width == xw.w && e->xconfigure.height == xw.h)
  2909. return;
  2910. cresize(e->xconfigure.width, e->xconfigure.height);
  2911. }
  2912. void
  2913. run(void) {
  2914. XEvent ev;
  2915. fd_set rfd;
  2916. int xfd = XConnectionNumber(xw.dpy), xev;
  2917. struct timeval drawtimeout, *tv = NULL, now, last;
  2918. gettimeofday(&last, NULL);
  2919. for(xev = actionfps;;) {
  2920. FD_ZERO(&rfd);
  2921. FD_SET(cmdfd, &rfd);
  2922. FD_SET(xfd, &rfd);
  2923. if(select(MAX(xfd, cmdfd)+1, &rfd, NULL, NULL, tv) < 0) {
  2924. if(errno == EINTR)
  2925. continue;
  2926. die("select failed: %s\n", SERRNO);
  2927. }
  2928. gettimeofday(&now, NULL);
  2929. drawtimeout.tv_sec = 0;
  2930. drawtimeout.tv_usec = (1000/xfps) * 1000;
  2931. tv = &drawtimeout;
  2932. if(FD_ISSET(cmdfd, &rfd))
  2933. ttyread();
  2934. if(FD_ISSET(xfd, &rfd))
  2935. xev = actionfps;
  2936. if(TIMEDIFF(now, last) > \
  2937. (xev ? (1000/xfps) : (1000/actionfps))) {
  2938. while(XPending(xw.dpy)) {
  2939. XNextEvent(xw.dpy, &ev);
  2940. if(XFilterEvent(&ev, None))
  2941. continue;
  2942. if(handler[ev.type])
  2943. (handler[ev.type])(&ev);
  2944. }
  2945. draw();
  2946. XFlush(xw.dpy);
  2947. last = now;
  2948. if(xev && !FD_ISSET(xfd, &rfd))
  2949. xev--;
  2950. if(!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd))
  2951. tv = NULL;
  2952. }
  2953. }
  2954. }
  2955. void
  2956. usage(void) {
  2957. die("%s " VERSION " (c) 2010-2013 st engineers\n" \
  2958. "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \
  2959. " [-t title] [-w windowid] [-e command ...]\n", argv0);
  2960. }
  2961. int
  2962. main(int argc, char *argv[]) {
  2963. int bitm, xr, yr;
  2964. uint wr, hr;
  2965. xw.fw = xw.fh = xw.fx = xw.fy = 0;
  2966. xw.isfixed = False;
  2967. ARGBEGIN {
  2968. case 'a':
  2969. allowaltscreen = false;
  2970. break;
  2971. case 'c':
  2972. opt_class = EARGF(usage());
  2973. break;
  2974. case 'e':
  2975. /* eat all remaining arguments */
  2976. if(argc > 1)
  2977. opt_cmd = &argv[1];
  2978. goto run;
  2979. case 'f':
  2980. opt_font = EARGF(usage());
  2981. break;
  2982. case 'g':
  2983. bitm = XParseGeometry(EARGF(usage()), &xr, &yr, &wr, &hr);
  2984. if(bitm & XValue)
  2985. xw.fx = xr;
  2986. if(bitm & YValue)
  2987. xw.fy = yr;
  2988. if(bitm & WidthValue)
  2989. xw.fw = (int)wr;
  2990. if(bitm & HeightValue)
  2991. xw.fh = (int)hr;
  2992. if(bitm & XNegative && xw.fx == 0)
  2993. xw.fx = -1;
  2994. if(bitm & XNegative && xw.fy == 0)
  2995. xw.fy = -1;
  2996. if(xw.fh != 0 && xw.fw != 0)
  2997. xw.isfixed = True;
  2998. break;
  2999. case 'o':
  3000. opt_io = EARGF(usage());
  3001. break;
  3002. case 't':
  3003. opt_title = EARGF(usage());
  3004. break;
  3005. case 'w':
  3006. opt_embed = EARGF(usage());
  3007. break;
  3008. case 'v':
  3009. default:
  3010. usage();
  3011. } ARGEND;
  3012. run:
  3013. setlocale(LC_CTYPE, "");
  3014. XSetLocaleModifiers("");
  3015. tnew(80, 24);
  3016. xinit();
  3017. ttynew();
  3018. selinit();
  3019. if(xw.isfixed)
  3020. cresize(xw.h, xw.w);
  3021. run();
  3022. return 0;
  3023. }