Simple Terminal from SuckLess
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4080 lines
90 KiB

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