1 /* See LICENSE for license details. */
15 #include <sys/ioctl.h>
16 #include <sys/select.h>
19 #include <sys/types.h>
24 #include <X11/Xatom.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>
43 #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
45 #elif defined(__FreeBSD__) || defined(__DragonFly__)
51 #define XEMBED_FOCUS_IN 4
52 #define XEMBED_FOCUS_OUT 5
55 #define UTF_INVALID 0xFFFD
57 #define ESC_BUF_SIZ (128*UTF_SIZ)
58 #define ESC_ARG_SIZ 16
59 #define STR_BUF_SIZ ESC_BUF_SIZ
60 #define STR_ARG_SIZ ESC_ARG_SIZ
61 #define DRAW_BUF_SIZ 20*1024
62 #define XK_ANY_MOD UINT_MAX
64 #define XK_SWITCH_MOD (1<<13)
67 #define MIN(a, b) ((a) < (b) ? (a) : (b))
68 #define MAX(a, b) ((a) < (b) ? (b) : (a))
69 #define LEN(a) (sizeof(a) / sizeof(a)[0])
70 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
71 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
72 #define ISCONTROLC0(c) (BETWEEN(c, 0, 0x1f) || (c) == '\177')
73 #define ISCONTROLC1(c) (BETWEEN(c, 0x80, 0x9f))
74 #define ISCONTROL(c) (ISCONTROLC0(c) || ISCONTROLC1(c))
75 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
76 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
77 #define IS_SET(flag) ((term.mode & (flag)) != 0)
78 #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_nsec-t2.tv_nsec)/1E6)
79 #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
81 #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
82 #define IS_TRUECOL(x) (1 << 24 & (x))
83 #define TRUERED(x) (((x) & 0xff0000) >> 8)
84 #define TRUEGREEN(x) (((x) & 0xff00))
85 #define TRUEBLUE(x) (((x) & 0xff) << 8)
88 enum glyph_attribute {
93 ATTR_UNDERLINE = 1 << 3,
95 ATTR_REVERSE = 1 << 5,
96 ATTR_INVISIBLE = 1 << 6,
100 ATTR_WDUMMY = 1 << 10,
103 enum cursor_movement {
116 MODE_INSERT = 1 << 1,
117 MODE_APPKEYPAD = 1 << 2,
118 MODE_ALTSCREEN = 1 << 3,
120 MODE_MOUSEBTN = 1 << 5,
121 MODE_MOUSEMOTION = 1 << 6,
122 MODE_REVERSE = 1 << 7,
123 MODE_KBDLOCK = 1 << 8,
126 MODE_APPCURSOR = 1 << 11,
127 MODE_MOUSESGR = 1 << 12,
129 MODE_BLINK = 1 << 14,
130 MODE_FBLINK = 1 << 15,
131 MODE_FOCUS = 1 << 16,
132 MODE_MOUSEX10 = 1 << 17,
133 MODE_MOUSEMANY = 1 << 18,
134 MODE_BRCKTPASTE = 1 << 19,
135 MODE_PRINT = 1 << 20,
136 MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
153 ESC_STR = 4, /* DCS, OSC, PM, APC */
155 ESC_STR_END = 16, /* a final string was encountered */
156 ESC_TEST = 32, /* Enter in test mode */
164 enum selection_type {
169 enum selection_snap {
174 typedef unsigned char uchar;
175 typedef unsigned int uint;
176 typedef unsigned long ulong;
177 typedef unsigned short ushort;
179 typedef XftDraw *Draw;
180 typedef XftColor Color;
183 char c[UTF_SIZ]; /* character code */
184 ushort mode; /* attribute flags */
185 uint32_t fg; /* foreground */
186 uint32_t bg; /* background */
192 Glyph attr; /* current char attributes */
198 /* CSI Escape sequence structs */
199 /* ESC '[' [[ [<priv>] <arg> [;]] <mode> [<mode>]] */
201 char buf[ESC_BUF_SIZ]; /* raw string */
202 int len; /* raw string length */
204 int arg[ESC_ARG_SIZ];
205 int narg; /* nb of args */
209 /* STR Escape sequence structs */
210 /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
212 char type; /* ESC type ... */
213 char buf[STR_BUF_SIZ]; /* raw string */
214 int len; /* raw string length */
215 char *args[STR_ARG_SIZ];
216 int narg; /* nb of args */
219 /* Internal representation of the screen */
221 int row; /* nb row */
222 int col; /* nb col */
223 Line *line; /* screen */
224 Line *alt; /* alternate screen */
225 bool *dirty; /* dirtyness of lines */
226 TCursor c; /* cursor */
227 int top; /* top scroll limit */
228 int bot; /* bottom scroll limit */
229 int mode; /* terminal mode flags */
230 int esc; /* escape state flags */
231 char trantbl[4]; /* charset table translation */
232 int charset; /* current charset */
233 int icharset; /* selected charset for sequence */
234 bool numlock; /* lock numbers in keyboard */
238 /* Purely graphic info */
244 Atom xembed, wmdeletewin, netwmname, netwmpid;
249 XSetWindowAttributes attrs;
251 bool isfixed; /* is fixed geometry? */
252 int l, t; /* left and top offset */
253 int gm; /* geometry mask */
254 int tw, th; /* tty width and height */
255 int w, h; /* window width and height */
256 int ch; /* char height */
257 int cw; /* char width */
258 char state; /* focus, redraw, visible */
259 int cursor; /* cursor style */
272 /* three valued logic variables: 0 indifferent, 1 on, -1 off */
273 signed char appkey; /* application keypad */
274 signed char appcursor; /* application cursor */
275 signed char crlf; /* crlf mode */
283 * Selection variables:
284 * nb – normalized coordinates of the beginning of the selection
285 * ne – normalized coordinates of the end of the selection
286 * ob – original coordinates of the beginning of the selection
287 * oe – original coordinates of the end of the selection
293 char *primary, *clipboard;
296 struct timespec tclick1;
297 struct timespec tclick2;
310 void (*func)(const Arg *);
314 /* function definitions used in config.h */
315 static void clipcopy(const Arg *);
316 static void clippaste(const Arg *);
317 static void numlock(const Arg *);
318 static void selpaste(const Arg *);
319 static void xzoom(const Arg *);
320 static void xzoomabs(const Arg *);
321 static void xzoomreset(const Arg *);
322 static void printsel(const Arg *);
323 static void printscreen(const Arg *) ;
324 static void toggleprinter(const Arg *);
326 /* Config.h for applying patches and the configuration. */
342 /* Drawing Context */
344 Color col[MAX(LEN(colorname), 256)];
345 Font font, bfont, ifont, ibfont;
349 static void die(const char *, ...);
350 static void draw(void);
351 static void redraw(void);
352 static void drawregion(int, int, int, int);
353 static void execsh(void);
354 static void stty(void);
355 static void sigchld(int);
356 static void run(void);
358 static void csidump(void);
359 static void csihandle(void);
360 static void csiparse(void);
361 static void csireset(void);
362 static int eschandle(uchar);
363 static void strdump(void);
364 static void strhandle(void);
365 static void strparse(void);
366 static void strreset(void);
368 static int tattrset(int);
369 static void tprinter(char *, size_t);
370 static void tdumpsel(void);
371 static void tdumpline(int);
372 static void tdump(void);
373 static void tclearregion(int, int, int, int);
374 static void tcursor(int);
375 static void tdeletechar(int);
376 static void tdeleteline(int);
377 static void tinsertblank(int);
378 static void tinsertblankline(int);
379 static int tlinelen(int);
380 static void tmoveto(int, int);
381 static void tmoveato(int, int);
382 static void tnew(int, int);
383 static void tnewline(int);
384 static void tputtab(int);
385 static void tputc(char *, int);
386 static void treset(void);
387 static void tresize(int, int);
388 static void tscrollup(int, int);
389 static void tscrolldown(int, int);
390 static void tsetattr(int *, int);
391 static void tsetchar(char *, Glyph *, int, int);
392 static void tsetscroll(int, int);
393 static void tswapscreen(void);
394 static void tsetdirt(int, int);
395 static void tsetdirtattr(int);
396 static void tsetmode(bool, bool, int *, int);
397 static void tfulldirt(void);
398 static void techo(char *, int);
399 static void tcontrolcode(uchar );
400 static void tdectest(char );
401 static int32_t tdefcolor(int *, int *, int);
402 static void tdeftran(char);
403 static inline bool match(uint, uint);
404 static void ttynew(void);
405 static void ttyread(void);
406 static void ttyresize(void);
407 static void ttysend(char *, size_t);
408 static void ttywrite(const char *, size_t);
409 static void tstrsequence(uchar);
411 static inline ushort sixd_to_16bit(int);
412 static void xdraws(char *, Glyph, int, int, int, int);
413 static void xhints(void);
414 static void xclear(int, int, int, int);
415 static void xdrawcursor(void);
416 static void xinit(void);
417 static void xloadcols(void);
418 static int xsetcolorname(int, const char *);
419 static int xgeommasktogravity(int);
420 static int xloadfont(Font *, FcPattern *);
421 static void xloadfonts(char *, double);
422 static void xsettitle(char *);
423 static void xresettitle(void);
424 static void xsetpointermotion(int);
425 static void xseturgency(int);
426 static void xsetsel(char *, Time);
427 static void xtermclear(int, int, int, int);
428 static void xunloadfont(Font *);
429 static void xunloadfonts(void);
430 static void xresize(int, int);
432 static void expose(XEvent *);
433 static void visibility(XEvent *);
434 static void unmap(XEvent *);
435 static char *kmap(KeySym, uint);
436 static void kpress(XEvent *);
437 static void cmessage(XEvent *);
438 static void cresize(int, int);
439 static void resize(XEvent *);
440 static void focus(XEvent *);
441 static void brelease(XEvent *);
442 static void bpress(XEvent *);
443 static void bmotion(XEvent *);
444 static void selnotify(XEvent *);
445 static void selclear(XEvent *);
446 static void selrequest(XEvent *);
448 static void selinit(void);
449 static void selnormalize(void);
450 static inline bool selected(int, int);
451 static char *getsel(void);
452 static void selcopy(Time);
453 static void selscroll(int, int);
454 static void selsnap(int, int *, int *, int);
455 static int x2col(int);
456 static int y2row(int);
457 static void getbuttoninfo(XEvent *);
458 static void mousereport(XEvent *);
460 static size_t utf8decode(char *, long *, size_t);
461 static long utf8decodebyte(char, size_t *);
462 static size_t utf8encode(long, char *);
463 static char utf8encodebyte(long, size_t);
464 static size_t utf8len(char *);
465 static size_t utf8validate(long *, size_t);
467 static ssize_t xwrite(int, const char *, size_t);
468 static void *xmalloc(size_t);
469 static void *xrealloc(void *, size_t);
470 static char *xstrdup(char *);
472 static void usage(void);
474 static void (*handler[LASTEvent])(XEvent *) = {
476 [ClientMessage] = cmessage,
477 [ConfigureNotify] = resize,
478 [VisibilityNotify] = visibility,
479 [UnmapNotify] = unmap,
483 [MotionNotify] = bmotion,
484 [ButtonPress] = bpress,
485 [ButtonRelease] = brelease,
487 * Uncomment if you want the selection to disappear when you select something
488 * different in another window.
490 /* [SelectionClear] = selclear, */
491 [SelectionNotify] = selnotify,
492 [SelectionRequest] = selrequest,
499 static CSIEscape csiescseq;
500 static STREscape strescseq;
503 static Selection sel;
504 static int iofd = STDOUT_FILENO;
505 static char **opt_cmd = NULL;
506 static char *opt_io = NULL;
507 static char *opt_title = NULL;
508 static char *opt_embed = NULL;
509 static char *opt_class = NULL;
510 static char *opt_font = NULL;
511 static char *opt_line = NULL;
512 static int oldbutton = 3; /* button event on startup: 3 = release */
514 static char *usedfont = NULL;
515 static double usedfontsize = 0;
516 static double defaultfontsize = 0;
518 static uchar utfbyte[UTF_SIZ + 1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
519 static uchar utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
520 static long utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000};
521 static long utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
523 /* Font Ring Cache */
537 /* Fontcache is an array now. A new font will be appended to the array. */
538 static Fontcache frc[16];
539 static int frclen = 0;
542 xwrite(int fd, const char *s, size_t len) {
546 ssize_t r = write(fd, s, len);
556 xmalloc(size_t len) {
557 void *p = malloc(len);
560 die("Out of memory\n");
566 xrealloc(void *p, size_t len) {
567 if((p = realloc(p, len)) == NULL)
568 die("Out of memory\n");
575 if((s = strdup(s)) == NULL)
576 die("Out of memory\n");
582 utf8decode(char *c, long *u, size_t clen) {
583 size_t i, j, len, type;
589 udecoded = utf8decodebyte(c[0], &len);
590 if(!BETWEEN(len, 1, UTF_SIZ))
592 for(i = 1, j = 1; i < clen && j < len; ++i, ++j) {
593 udecoded = (udecoded << 6) | utf8decodebyte(c[i], &type);
600 utf8validate(u, len);
605 utf8decodebyte(char c, size_t *i) {
606 for(*i = 0; *i < LEN(utfmask); ++(*i))
607 if(((uchar)c & utfmask[*i]) == utfbyte[*i])
608 return (uchar)c & ~utfmask[*i];
613 utf8encode(long u, char *c) {
616 len = utf8validate(&u, 0);
619 for(i = len - 1; i != 0; --i) {
620 c[i] = utf8encodebyte(u, 0);
623 c[0] = utf8encodebyte(u, len);
628 utf8encodebyte(long u, size_t i) {
629 return utfbyte[i] | (u & ~utfmask[i]);
634 return utf8decode(c, &(long){0}, UTF_SIZ);
638 utf8validate(long *u, size_t i) {
639 if(!BETWEEN(*u, utfmin[i], utfmax[i]) || BETWEEN(*u, 0xD800, 0xDFFF))
641 for(i = 1; *u > utfmax[i]; ++i)
648 memset(&sel.tclick1, 0, sizeof(sel.tclick1));
649 memset(&sel.tclick2, 0, sizeof(sel.tclick2));
653 sel.clipboard = NULL;
654 sel.xtarget = XInternAtom(xw.dpy, "UTF8_STRING", 0);
655 if(sel.xtarget == None)
656 sel.xtarget = XA_STRING;
664 return LIMIT(x, 0, term.col-1);
672 return LIMIT(y, 0, term.row-1);
679 if(term.line[y][i - 1].mode & ATTR_WRAP)
682 while(i > 0 && term.line[y][i - 1].c[0] == ' ')
692 if(sel.ob.y == sel.oe.y || sel.type == SEL_RECTANGULAR) {
693 sel.nb.x = MIN(sel.ob.x, sel.oe.x);
694 sel.ne.x = MAX(sel.ob.x, sel.oe.x);
696 sel.nb.x = sel.ob.y < sel.oe.y ? sel.ob.x : sel.oe.x;
697 sel.ne.x = sel.ob.y < sel.oe.y ? sel.oe.x : sel.ob.x;
699 sel.nb.y = MIN(sel.ob.y, sel.oe.y);
700 sel.ne.y = MAX(sel.ob.y, sel.oe.y);
702 selsnap(sel.snap, &sel.nb.x, &sel.nb.y, -1);
703 selsnap(sel.snap, &sel.ne.x, &sel.ne.y, +1);
705 /* expand selection over line breaks */
706 if (sel.type == SEL_RECTANGULAR)
708 i = tlinelen(sel.nb.y);
711 if (tlinelen(sel.ne.y) <= sel.ne.x)
712 sel.ne.x = term.col - 1;
716 selected(int x, int y) {
717 if(sel.type == SEL_RECTANGULAR)
718 return BETWEEN(y, sel.nb.y, sel.ne.y)
719 && BETWEEN(x, sel.nb.x, sel.ne.x);
721 return BETWEEN(y, sel.nb.y, sel.ne.y)
722 && (y != sel.nb.y || x >= sel.nb.x)
723 && (y != sel.ne.y || x <= sel.ne.x);
727 selsnap(int mode, int *x, int *y, int direction) {
728 int newx, newy, xt, yt;
729 bool delim, prevdelim;
735 * Snap around if the word wraps around at the end or
736 * beginning of a line.
738 prevgp = &term.line[*y][*x];
739 prevdelim = strchr(worddelimiters, prevgp->c[0]) != NULL;
741 newx = *x + direction;
743 if(!BETWEEN(newx, 0, term.col - 1)) {
745 newx = (newx + term.col) % term.col;
746 if (!BETWEEN(newy, 0, term.row - 1))
752 yt = newy, xt = newx;
753 if(!(term.line[yt][xt].mode & ATTR_WRAP))
757 if (newx >= tlinelen(newy))
760 gp = &term.line[newy][newx];
761 delim = strchr(worddelimiters, gp->c[0]) != NULL;
762 if(!(gp->mode & ATTR_WDUMMY) && (delim != prevdelim
763 || (delim && gp->c[0] != prevgp->c[0])))
774 * Snap around if the the previous line or the current one
775 * has set ATTR_WRAP at its end. Then the whole next or
776 * previous line will be selected.
778 *x = (direction < 0) ? 0 : term.col - 1;
779 if(direction < 0 && *y > 0) {
780 for(; *y > 0; *y += direction) {
781 if(!(term.line[*y-1][term.col-1].mode
786 } else if(direction > 0 && *y < term.row-1) {
787 for(; *y < term.row; *y += direction) {
788 if(!(term.line[*y][term.col-1].mode
799 getbuttoninfo(XEvent *e) {
801 uint state = e->xbutton.state & ~(Button1Mask | forceselmod);
803 sel.alt = IS_SET(MODE_ALTSCREEN);
805 sel.oe.x = x2col(e->xbutton.x);
806 sel.oe.y = y2row(e->xbutton.y);
809 sel.type = SEL_REGULAR;
810 for(type = 1; type < LEN(selmasks); ++type) {
811 if(match(selmasks[type], state)) {
819 mousereport(XEvent *e) {
820 int x = x2col(e->xbutton.x), y = y2row(e->xbutton.y),
821 button = e->xbutton.button, state = e->xbutton.state,
827 if(e->xbutton.type == MotionNotify) {
828 if(x == ox && y == oy)
830 if(!IS_SET(MODE_MOUSEMOTION) && !IS_SET(MODE_MOUSEMANY))
832 /* MOUSE_MOTION: no reporting if no button is pressed */
833 if(IS_SET(MODE_MOUSEMOTION) && oldbutton == 3)
836 button = oldbutton + 32;
840 if(!IS_SET(MODE_MOUSESGR) && e->xbutton.type == ButtonRelease) {
847 if(e->xbutton.type == ButtonPress) {
851 } else if(e->xbutton.type == ButtonRelease) {
853 /* MODE_MOUSEX10: no button release reporting */
854 if(IS_SET(MODE_MOUSEX10))
856 if (button == 64 || button == 65)
861 if(!IS_SET(MODE_MOUSEX10)) {
862 button += (state & ShiftMask ? 4 : 0)
863 + (state & Mod4Mask ? 8 : 0)
864 + (state & ControlMask ? 16 : 0);
868 if(IS_SET(MODE_MOUSESGR)) {
869 len = snprintf(buf, sizeof(buf), "\033[<%d;%d;%d%c",
871 e->xbutton.type == ButtonRelease ? 'm' : 'M');
872 } else if(x < 223 && y < 223) {
873 len = snprintf(buf, sizeof(buf), "\033[M%c%c%c",
874 32+button, 32+x+1, 32+y+1);
887 if(IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
892 for(mk = mshortcuts; mk < mshortcuts + LEN(mshortcuts); mk++) {
893 if(e->xbutton.button == mk->b
894 && match(mk->mask, e->xbutton.state)) {
895 ttysend(mk->s, strlen(mk->s));
900 if(e->xbutton.button == Button1) {
901 clock_gettime(CLOCK_MONOTONIC, &now);
903 /* Clear previous selection, logically and visually. */
906 sel.type = SEL_REGULAR;
907 sel.oe.x = sel.ob.x = x2col(e->xbutton.x);
908 sel.oe.y = sel.ob.y = y2row(e->xbutton.y);
911 * If the user clicks below predefined timeouts specific
912 * snapping behaviour is exposed.
914 if(TIMEDIFF(now, sel.tclick2) <= tripleclicktimeout) {
915 sel.snap = SNAP_LINE;
916 } else if(TIMEDIFF(now, sel.tclick1) <= doubleclicktimeout) {
917 sel.snap = SNAP_WORD;
924 * Draw selection, unless it's regular and we don't want to
925 * make clicks visible
929 tsetdirt(sel.nb.y, sel.ne.y);
931 sel.tclick2 = sel.tclick1;
939 int y, bufsize, size, lastx, linelen;
945 bufsize = (term.col+1) * (sel.ne.y-sel.nb.y+1) * UTF_SIZ;
946 ptr = str = xmalloc(bufsize);
948 /* append every set & selected glyph to the selection */
949 for(y = sel.nb.y; y <= sel.ne.y; y++) {
950 linelen = tlinelen(y);
952 if(sel.type == SEL_RECTANGULAR) {
953 gp = &term.line[y][sel.nb.x];
956 gp = &term.line[y][sel.nb.y == y ? sel.nb.x : 0];
957 lastx = (sel.ne.y == y) ? sel.ne.x : term.col-1;
959 last = &term.line[y][MIN(lastx, linelen-1)];
960 while(last >= gp && last->c[0] == ' ')
963 for( ; gp <= last; ++gp) {
964 if(gp->mode & ATTR_WDUMMY)
967 size = utf8len(gp->c);
968 memcpy(ptr, gp->c, size);
973 * Copy and pasting of line endings is inconsistent
974 * in the inconsistent terminal and GUI world.
975 * The best solution seems like to produce '\n' when
976 * something is copied from st and convert '\n' to
977 * '\r', when something to be pasted is received by
979 * FIXME: Fix the computer world.
981 if((y < sel.ne.y || lastx >= linelen) && !(last->mode & ATTR_WRAP))
990 xsetsel(getsel(), t);
994 selnotify(XEvent *e) {
995 ulong nitems, ofs, rem;
997 uchar *data, *last, *repl;
999 XSelectionEvent *xsev;
1002 xsev = &e->xselection;
1003 if (xsev->property == None)
1006 if(XGetWindowProperty(xw.dpy, xw.win, xsev->property, ofs,
1007 BUFSIZ/4, False, AnyPropertyType,
1008 &type, &format, &nitems, &rem,
1010 fprintf(stderr, "Clipboard allocation failed\n");
1015 * As seen in getsel:
1016 * Line endings are inconsistent in the terminal and GUI world
1017 * copy and pasting. When receiving some selection data,
1018 * replace all '\n' with '\r'.
1019 * FIXME: Fix the computer world.
1022 last = data + nitems * format / 8;
1023 while((repl = memchr(repl, '\n', last - repl))) {
1027 if(IS_SET(MODE_BRCKTPASTE))
1028 ttywrite("\033[200~", 6);
1029 ttysend((char *)data, nitems * format / 8);
1030 if(IS_SET(MODE_BRCKTPASTE))
1031 ttywrite("\033[201~", 6);
1033 /* number of 32-bit chunks returned */
1034 ofs += nitems * format / 32;
1039 selpaste(const Arg *dummy) {
1040 XConvertSelection(xw.dpy, XA_PRIMARY, sel.xtarget, XA_PRIMARY,
1041 xw.win, CurrentTime);
1045 clipcopy(const Arg *dummy) {
1048 if(sel.clipboard != NULL)
1049 free(sel.clipboard);
1051 if(sel.primary != NULL) {
1052 sel.clipboard = xstrdup(sel.primary);
1053 clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
1054 XSetSelectionOwner(xw.dpy, clipboard, xw.win, CurrentTime);
1059 clippaste(const Arg *dummy) {
1062 clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
1063 XConvertSelection(xw.dpy, clipboard, sel.xtarget, clipboard,
1064 xw.win, CurrentTime);
1068 selclear(XEvent *e) {
1072 tsetdirt(sel.nb.y, sel.ne.y);
1076 selrequest(XEvent *e) {
1077 XSelectionRequestEvent *xsre;
1078 XSelectionEvent xev;
1079 Atom xa_targets, string, clipboard;
1082 xsre = (XSelectionRequestEvent *) e;
1083 xev.type = SelectionNotify;
1084 xev.requestor = xsre->requestor;
1085 xev.selection = xsre->selection;
1086 xev.target = xsre->target;
1087 xev.time = xsre->time;
1088 if (xsre->property == None)
1089 xsre->property = xsre->target;
1092 xev.property = None;
1094 xa_targets = XInternAtom(xw.dpy, "TARGETS", 0);
1095 if(xsre->target == xa_targets) {
1096 /* respond with the supported type */
1097 string = sel.xtarget;
1098 XChangeProperty(xsre->display, xsre->requestor, xsre->property,
1099 XA_ATOM, 32, PropModeReplace,
1100 (uchar *) &string, 1);
1101 xev.property = xsre->property;
1102 } else if(xsre->target == sel.xtarget || xsre->target == XA_STRING) {
1104 * xith XA_STRING non ascii characters may be incorrect in the
1105 * requestor. It is not our problem, use utf8.
1107 clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
1108 if(xsre->selection == XA_PRIMARY) {
1109 seltext = sel.primary;
1110 } else if(xsre->selection == clipboard) {
1111 seltext = sel.clipboard;
1114 "Unhandled clipboard selection 0x%lx\n",
1118 if(seltext != NULL) {
1119 XChangeProperty(xsre->display, xsre->requestor,
1120 xsre->property, xsre->target,
1122 (uchar *)seltext, strlen(seltext));
1123 xev.property = xsre->property;
1127 /* all done, send a notification to the listener */
1128 if(!XSendEvent(xsre->display, xsre->requestor, True, 0, (XEvent *) &xev))
1129 fprintf(stderr, "Error sending SelectionNotify event\n");
1133 xsetsel(char *str, Time t) {
1137 XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
1138 if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
1143 brelease(XEvent *e) {
1144 if(IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
1149 if(e->xbutton.button == Button2) {
1151 } else if(e->xbutton.button == Button1) {
1156 selcopy(e->xbutton.time);
1159 tsetdirt(sel.nb.y, sel.ne.y);
1164 bmotion(XEvent *e) {
1165 int oldey, oldex, oldsby, oldsey;
1167 if(IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
1182 if(oldey != sel.oe.y || oldex != sel.oe.x)
1183 tsetdirt(MIN(sel.nb.y, oldsby), MAX(sel.ne.y, oldsey));
1187 die(const char *errstr, ...) {
1190 va_start(ap, errstr);
1191 vfprintf(stderr, errstr, ap);
1198 char **args, *sh, *prog;
1199 const struct passwd *pw;
1200 char buf[sizeof(long) * 8 + 1];
1203 if((pw = getpwuid(getuid())) == NULL) {
1205 die("getpwuid:%s\n", strerror(errno));
1207 die("who are you?\n");
1210 if (!(sh = getenv("SHELL"))) {
1211 sh = (pw->pw_shell[0]) ? pw->pw_shell : shell;
1220 args = (opt_cmd) ? opt_cmd : (char *[]) {prog, NULL};
1222 snprintf(buf, sizeof(buf), "%lu", xw.win);
1224 unsetenv("COLUMNS");
1226 unsetenv("TERMCAP");
1227 setenv("LOGNAME", pw->pw_name, 1);
1228 setenv("USER", pw->pw_name, 1);
1229 setenv("SHELL", sh, 1);
1230 setenv("HOME", pw->pw_dir, 1);
1231 setenv("TERM", termname, 1);
1232 setenv("WINDOWID", buf, 1);
1234 signal(SIGCHLD, SIG_DFL);
1235 signal(SIGHUP, SIG_DFL);
1236 signal(SIGINT, SIG_DFL);
1237 signal(SIGQUIT, SIG_DFL);
1238 signal(SIGTERM, SIG_DFL);
1239 signal(SIGALRM, SIG_DFL);
1242 _exit(EXIT_FAILURE);
1249 if(waitpid(pid, &stat, 0) < 0)
1250 die("Waiting for pid %hd failed: %s\n", pid, strerror(errno));
1252 ret = WIFEXITED(stat) ? WEXITSTATUS(stat) : EXIT_FAILURE;
1253 if (ret != EXIT_SUCCESS)
1254 die("child finished with error '%d'\n", stat);
1262 char cmd[_POSIX_ARG_MAX], **p, *q, *s;
1265 if((n = strlen(stty_args)) > sizeof(cmd)-1)
1266 die("incorrect stty parameters\n");
1267 memcpy(cmd, stty_args, n);
1269 siz = sizeof(cmd) - n;
1270 for(p = opt_cmd; p && (s = *p); ++p) {
1271 if((n = strlen(s)) > siz-1)
1272 die("stty parameter length too long\n");
1274 q = memcpy(q, s, n);
1279 if (system(cmd) != 0)
1280 perror("Couldn't call stty");
1286 struct winsize w = {term.row, term.col, 0, 0};
1289 term.mode |= MODE_PRINT;
1290 iofd = (!strcmp(opt_io, "-")) ?
1292 open(opt_io, O_WRONLY | O_CREAT, 0666);
1294 fprintf(stderr, "Error opening %s:%s\n",
1295 opt_io, strerror(errno));
1300 if((cmdfd = open(opt_line, O_RDWR)) < 0)
1301 die("open line failed: %s\n", strerror(errno));
1302 close(STDIN_FILENO);
1308 /* seems to work fine on linux, openbsd and freebsd */
1309 if(openpty(&m, &s, NULL, NULL, &w) < 0)
1310 die("openpty failed: %s\n", strerror(errno));
1312 switch(pid = fork()) {
1314 die("fork failed\n");
1318 setsid(); /* create a new process group */
1319 dup2(s, STDIN_FILENO);
1320 dup2(s, STDOUT_FILENO);
1321 dup2(s, STDERR_FILENO);
1322 if(ioctl(s, TIOCSCTTY, NULL) < 0)
1323 die("ioctl TIOCSCTTY failed: %s\n", strerror(errno));
1331 signal(SIGCHLD, sigchld);
1338 static char buf[BUFSIZ];
1339 static int buflen = 0;
1342 int charsize; /* size of utf8 char in bytes */
1346 /* append read bytes to unprocessed bytes */
1347 if((ret = read(cmdfd, buf+buflen, LEN(buf)-buflen)) < 0)
1348 die("Couldn't read from shell: %s\n", strerror(errno));
1350 /* process every complete utf8 char */
1353 while((charsize = utf8decode(ptr, &unicodep, buflen))) {
1354 utf8encode(unicodep, s);
1360 /* keep any uncomplete utf8 char for the next call */
1361 memmove(buf, ptr, buflen);
1365 ttywrite(const char *s, size_t n) {
1366 if(xwrite(cmdfd, s, n) == -1)
1367 die("write error on tty: %s\n", strerror(errno));
1371 ttysend(char *s, size_t n) {
1373 if(IS_SET(MODE_ECHO))
1381 w.ws_row = term.row;
1382 w.ws_col = term.col;
1383 w.ws_xpixel = xw.tw;
1384 w.ws_ypixel = xw.th;
1385 if(ioctl(cmdfd, TIOCSWINSZ, &w) < 0)
1386 fprintf(stderr, "Couldn't set window size: %s\n", strerror(errno));
1390 tattrset(int attr) {
1393 for(i = 0; i < term.row-1; i++) {
1394 for(j = 0; j < term.col-1; j++) {
1395 if(term.line[i][j].mode & attr)
1404 tsetdirt(int top, int bot) {
1407 LIMIT(top, 0, term.row-1);
1408 LIMIT(bot, 0, term.row-1);
1410 for(i = top; i <= bot; i++)
1415 tsetdirtattr(int attr) {
1418 for(i = 0; i < term.row-1; i++) {
1419 for(j = 0; j < term.col-1; j++) {
1420 if(term.line[i][j].mode & attr) {
1430 tsetdirt(0, term.row-1);
1435 static TCursor c[2];
1436 bool alt = IS_SET(MODE_ALTSCREEN);
1438 if(mode == CURSOR_SAVE) {
1440 } else if(mode == CURSOR_LOAD) {
1442 tmoveto(c[alt].x, c[alt].y);
1450 term.c = (TCursor){{
1454 }, .x = 0, .y = 0, .state = CURSOR_DEFAULT};
1456 memset(term.tabs, 0, term.col * sizeof(*term.tabs));
1457 for(i = tabspaces; i < term.col; i += tabspaces)
1460 term.bot = term.row - 1;
1461 term.mode = MODE_WRAP;
1462 memset(term.trantbl, CS_USA, sizeof(term.trantbl));
1465 for(i = 0; i < 2; i++) {
1467 tcursor(CURSOR_SAVE);
1468 tclearregion(0, 0, term.col-1, term.row-1);
1474 tnew(int col, int row) {
1475 term = (Term){ .c = { .attr = { .fg = defaultfg, .bg = defaultbg } } };
1484 Line *tmp = term.line;
1486 term.line = term.alt;
1488 term.mode ^= MODE_ALTSCREEN;
1493 tscrolldown(int orig, int n) {
1497 LIMIT(n, 0, term.bot-orig+1);
1499 tsetdirt(orig, term.bot-n);
1500 tclearregion(0, term.bot-n+1, term.col-1, term.bot);
1502 for(i = term.bot; i >= orig+n; i--) {
1503 temp = term.line[i];
1504 term.line[i] = term.line[i-n];
1505 term.line[i-n] = temp;
1512 tscrollup(int orig, int n) {
1516 LIMIT(n, 0, term.bot-orig+1);
1518 tclearregion(0, orig, term.col-1, orig+n-1);
1519 tsetdirt(orig+n, term.bot);
1521 for(i = orig; i <= term.bot-n; i++) {
1522 temp = term.line[i];
1523 term.line[i] = term.line[i+n];
1524 term.line[i+n] = temp;
1527 selscroll(orig, -n);
1531 selscroll(int orig, int n) {
1535 if(BETWEEN(sel.ob.y, orig, term.bot) || BETWEEN(sel.oe.y, orig, term.bot)) {
1536 if((sel.ob.y += n) > term.bot || (sel.oe.y += n) < term.top) {
1540 if(sel.type == SEL_RECTANGULAR) {
1541 if(sel.ob.y < term.top)
1542 sel.ob.y = term.top;
1543 if(sel.oe.y > term.bot)
1544 sel.oe.y = term.bot;
1546 if(sel.ob.y < term.top) {
1547 sel.ob.y = term.top;
1550 if(sel.oe.y > term.bot) {
1551 sel.oe.y = term.bot;
1552 sel.oe.x = term.col;
1560 tnewline(int first_col) {
1564 tscrollup(term.top, 1);
1568 tmoveto(first_col ? 0 : term.c.x, y);
1573 char *p = csiescseq.buf, *np;
1582 csiescseq.buf[csiescseq.len] = '\0';
1583 while(p < csiescseq.buf+csiescseq.len) {
1585 v = strtol(p, &np, 10);
1588 if(v == LONG_MAX || v == LONG_MIN)
1590 csiescseq.arg[csiescseq.narg++] = v;
1592 if(*p != ';' || csiescseq.narg == ESC_ARG_SIZ)
1596 csiescseq.mode[0] = *p++;
1597 csiescseq.mode[1] = (p < csiescseq.buf+csiescseq.len) ? *p : '\0';
1600 /* for absolute user moves, when decom is set */
1602 tmoveato(int x, int y) {
1603 tmoveto(x, y + ((term.c.state & CURSOR_ORIGIN) ? term.top: 0));
1607 tmoveto(int x, int y) {
1610 if(term.c.state & CURSOR_ORIGIN) {
1615 maxy = term.row - 1;
1617 term.c.state &= ~CURSOR_WRAPNEXT;
1618 term.c.x = LIMIT(x, 0, term.col-1);
1619 term.c.y = LIMIT(y, miny, maxy);
1623 tsetchar(char *c, Glyph *attr, int x, int y) {
1624 static char *vt100_0[62] = { /* 0x41 - 0x7e */
1625 "↑", "↓", "→", "←", "█", "▚", "☃", /* A - G */
1626 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
1627 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
1628 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
1629 "◆", "▒", "␉", "␌", "␍", "␊", "°", "±", /* ` - g */
1630 "", "␋", "┘", "┐", "┌", "└", "┼", "⎺", /* h - o */
1631 "⎻", "─", "⎼", "⎽", "├", "┤", "┴", "┬", /* p - w */
1632 "│", "≤", "≥", "π", "≠", "£", "·", /* x - ~ */
1636 * The table is proudly stolen from rxvt.
1638 if(term.trantbl[term.charset] == CS_GRAPHIC0) {
1639 if(BETWEEN(c[0], 0x41, 0x7e) && vt100_0[c[0] - 0x41]) {
1640 c = vt100_0[c[0] - 0x41];
1644 if(term.line[y][x].mode & ATTR_WIDE) {
1645 if(x+1 < term.col) {
1646 term.line[y][x+1].c[0] = ' ';
1647 term.line[y][x+1].mode &= ~ATTR_WDUMMY;
1649 } else if(term.line[y][x].mode & ATTR_WDUMMY) {
1650 term.line[y][x-1].c[0] = ' ';
1651 term.line[y][x-1].mode &= ~ATTR_WIDE;
1655 term.line[y][x] = *attr;
1656 memcpy(term.line[y][x].c, c, UTF_SIZ);
1660 tclearregion(int x1, int y1, int x2, int y2) {
1665 temp = x1, x1 = x2, x2 = temp;
1667 temp = y1, y1 = y2, y2 = temp;
1669 LIMIT(x1, 0, term.col-1);
1670 LIMIT(x2, 0, term.col-1);
1671 LIMIT(y1, 0, term.row-1);
1672 LIMIT(y2, 0, term.row-1);
1674 for(y = y1; y <= y2; y++) {
1676 for(x = x1; x <= x2; x++) {
1677 gp = &term.line[y][x];
1680 gp->fg = term.c.attr.fg;
1681 gp->bg = term.c.attr.bg;
1683 memcpy(gp->c, " ", 2);
1689 tdeletechar(int n) {
1693 LIMIT(n, 0, term.col - term.c.x);
1697 size = term.col - src;
1698 line = term.line[term.c.y];
1700 memmove(&line[dst], &line[src], size * sizeof(Glyph));
1701 tclearregion(term.col-n, term.c.y, term.col-1, term.c.y);
1705 tinsertblank(int n) {
1709 LIMIT(n, 0, term.col - term.c.x);
1713 size = term.col - dst;
1714 line = term.line[term.c.y];
1716 memmove(&line[dst], &line[src], size * sizeof(Glyph));
1717 tclearregion(src, term.c.y, dst - 1, term.c.y);
1721 tinsertblankline(int n) {
1722 if(BETWEEN(term.c.y, term.top, term.bot))
1723 tscrolldown(term.c.y, n);
1727 tdeleteline(int n) {
1728 if(BETWEEN(term.c.y, term.top, term.bot))
1729 tscrollup(term.c.y, n);
1733 tdefcolor(int *attr, int *npar, int l) {
1737 switch (attr[*npar + 1]) {
1738 case 2: /* direct color in RGB space */
1739 if (*npar + 4 >= l) {
1741 "erresc(38): Incorrect number of parameters (%d)\n",
1745 r = attr[*npar + 2];
1746 g = attr[*npar + 3];
1747 b = attr[*npar + 4];
1749 if(!BETWEEN(r, 0, 255) || !BETWEEN(g, 0, 255) || !BETWEEN(b, 0, 255))
1750 fprintf(stderr, "erresc: bad rgb color (%d,%d,%d)\n",
1753 idx = TRUECOLOR(r, g, b);
1755 case 5: /* indexed color */
1756 if (*npar + 2 >= l) {
1758 "erresc(38): Incorrect number of parameters (%d)\n",
1763 if(!BETWEEN(attr[*npar], 0, 255))
1764 fprintf(stderr, "erresc: bad fgcolor %d\n", attr[*npar]);
1768 case 0: /* implemented defined (only foreground) */
1769 case 1: /* transparent */
1770 case 3: /* direct color in CMY space */
1771 case 4: /* direct color in CMYK space */
1774 "erresc(38): gfx attr %d unknown\n", attr[*npar]);
1782 tsetattr(int *attr, int l) {
1786 for(i = 0; i < l; i++) {
1789 term.c.attr.mode &= ~(
1798 term.c.attr.fg = defaultfg;
1799 term.c.attr.bg = defaultbg;
1802 term.c.attr.mode |= ATTR_BOLD;
1805 term.c.attr.mode |= ATTR_FAINT;
1808 term.c.attr.mode |= ATTR_ITALIC;
1811 term.c.attr.mode |= ATTR_UNDERLINE;
1813 case 5: /* slow blink */
1815 case 6: /* rapid blink */
1816 term.c.attr.mode |= ATTR_BLINK;
1819 term.c.attr.mode |= ATTR_REVERSE;
1822 term.c.attr.mode |= ATTR_INVISIBLE;
1825 term.c.attr.mode |= ATTR_STRUCK;
1828 term.c.attr.mode &= ~(ATTR_BOLD | ATTR_FAINT);
1831 term.c.attr.mode &= ~ATTR_ITALIC;
1834 term.c.attr.mode &= ~ATTR_UNDERLINE;
1837 term.c.attr.mode &= ~ATTR_BLINK;
1840 term.c.attr.mode &= ~ATTR_REVERSE;
1843 term.c.attr.mode &= ~ATTR_INVISIBLE;
1846 term.c.attr.mode &= ~ATTR_STRUCK;
1849 if ((idx = tdefcolor(attr, &i, l)) >= 0)
1850 term.c.attr.fg = idx;
1853 term.c.attr.fg = defaultfg;
1856 if ((idx = tdefcolor(attr, &i, l)) >= 0)
1857 term.c.attr.bg = idx;
1860 term.c.attr.bg = defaultbg;
1863 if(BETWEEN(attr[i], 30, 37)) {
1864 term.c.attr.fg = attr[i] - 30;
1865 } else if(BETWEEN(attr[i], 40, 47)) {
1866 term.c.attr.bg = attr[i] - 40;
1867 } else if(BETWEEN(attr[i], 90, 97)) {
1868 term.c.attr.fg = attr[i] - 90 + 8;
1869 } else if(BETWEEN(attr[i], 100, 107)) {
1870 term.c.attr.bg = attr[i] - 100 + 8;
1873 "erresc(default): gfx attr %d unknown\n",
1874 attr[i]), csidump();
1882 tsetscroll(int t, int b) {
1885 LIMIT(t, 0, term.row-1);
1886 LIMIT(b, 0, term.row-1);
1897 tsetmode(bool priv, bool set, int *args, int narg) {
1901 for(lim = args + narg; args < lim; ++args) {
1904 case 1: /* DECCKM -- Cursor key */
1905 MODBIT(term.mode, set, MODE_APPCURSOR);
1907 case 5: /* DECSCNM -- Reverse video */
1909 MODBIT(term.mode, set, MODE_REVERSE);
1910 if(mode != term.mode)
1913 case 6: /* DECOM -- Origin */
1914 MODBIT(term.c.state, set, CURSOR_ORIGIN);
1917 case 7: /* DECAWM -- Auto wrap */
1918 MODBIT(term.mode, set, MODE_WRAP);
1920 case 0: /* Error (IGNORED) */
1921 case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
1922 case 3: /* DECCOLM -- Column (IGNORED) */
1923 case 4: /* DECSCLM -- Scroll (IGNORED) */
1924 case 8: /* DECARM -- Auto repeat (IGNORED) */
1925 case 18: /* DECPFF -- Printer feed (IGNORED) */
1926 case 19: /* DECPEX -- Printer extent (IGNORED) */
1927 case 42: /* DECNRCM -- National characters (IGNORED) */
1928 case 12: /* att610 -- Start blinking cursor (IGNORED) */
1930 case 25: /* DECTCEM -- Text Cursor Enable Mode */
1931 MODBIT(term.mode, !set, MODE_HIDE);
1933 case 9: /* X10 mouse compatibility mode */
1934 xsetpointermotion(0);
1935 MODBIT(term.mode, 0, MODE_MOUSE);
1936 MODBIT(term.mode, set, MODE_MOUSEX10);
1938 case 1000: /* 1000: report button press */
1939 xsetpointermotion(0);
1940 MODBIT(term.mode, 0, MODE_MOUSE);
1941 MODBIT(term.mode, set, MODE_MOUSEBTN);
1943 case 1002: /* 1002: report motion on button press */
1944 xsetpointermotion(0);
1945 MODBIT(term.mode, 0, MODE_MOUSE);
1946 MODBIT(term.mode, set, MODE_MOUSEMOTION);
1948 case 1003: /* 1003: enable all mouse motions */
1949 xsetpointermotion(set);
1950 MODBIT(term.mode, 0, MODE_MOUSE);
1951 MODBIT(term.mode, set, MODE_MOUSEMANY);
1953 case 1004: /* 1004: send focus events to tty */
1954 MODBIT(term.mode, set, MODE_FOCUS);
1956 case 1006: /* 1006: extended reporting mode */
1957 MODBIT(term.mode, set, MODE_MOUSESGR);
1960 MODBIT(term.mode, set, MODE_8BIT);
1962 case 1049: /* swap screen & set/restore cursor as xterm */
1963 if (!allowaltscreen)
1965 tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
1967 case 47: /* swap screen */
1969 if (!allowaltscreen)
1971 alt = IS_SET(MODE_ALTSCREEN);
1973 tclearregion(0, 0, term.col-1,
1976 if(set ^ alt) /* set is always 1 or 0 */
1982 tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
1984 case 2004: /* 2004: bracketed paste mode */
1985 MODBIT(term.mode, set, MODE_BRCKTPASTE);
1987 /* Not implemented mouse modes. See comments there. */
1988 case 1001: /* mouse highlight mode; can hang the
1989 terminal by design when implemented. */
1990 case 1005: /* UTF-8 mouse mode; will confuse
1991 applications not supporting UTF-8
1993 case 1015: /* urxvt mangled mouse mode; incompatible
1994 and can be mistaken for other control
1998 "erresc: unknown private set/reset mode %d\n",
2004 case 0: /* Error (IGNORED) */
2006 case 2: /* KAM -- keyboard action */
2007 MODBIT(term.mode, set, MODE_KBDLOCK);
2009 case 4: /* IRM -- Insertion-replacement */
2010 MODBIT(term.mode, set, MODE_INSERT);
2012 case 12: /* SRM -- Send/Receive */
2013 MODBIT(term.mode, !set, MODE_ECHO);
2015 case 20: /* LNM -- Linefeed/new line */
2016 MODBIT(term.mode, set, MODE_CRLF);
2020 "erresc: unknown set/reset mode %d\n",
2033 switch(csiescseq.mode[0]) {
2036 fprintf(stderr, "erresc: unknown csi ");
2040 case '@': /* ICH -- Insert <n> blank char */
2041 DEFAULT(csiescseq.arg[0], 1);
2042 tinsertblank(csiescseq.arg[0]);
2044 case 'A': /* CUU -- Cursor <n> Up */
2045 DEFAULT(csiescseq.arg[0], 1);
2046 tmoveto(term.c.x, term.c.y-csiescseq.arg[0]);
2048 case 'B': /* CUD -- Cursor <n> Down */
2049 case 'e': /* VPR --Cursor <n> Down */
2050 DEFAULT(csiescseq.arg[0], 1);
2051 tmoveto(term.c.x, term.c.y+csiescseq.arg[0]);
2053 case 'i': /* MC -- Media Copy */
2054 switch(csiescseq.arg[0]) {
2059 tdumpline(term.c.y);
2065 term.mode &= ~MODE_PRINT;
2068 term.mode |= MODE_PRINT;
2072 case 'c': /* DA -- Device Attributes */
2073 if(csiescseq.arg[0] == 0)
2074 ttywrite(vtiden, sizeof(vtiden) - 1);
2076 case 'C': /* CUF -- Cursor <n> Forward */
2077 case 'a': /* HPR -- Cursor <n> Forward */
2078 DEFAULT(csiescseq.arg[0], 1);
2079 tmoveto(term.c.x+csiescseq.arg[0], term.c.y);
2081 case 'D': /* CUB -- Cursor <n> Backward */
2082 DEFAULT(csiescseq.arg[0], 1);
2083 tmoveto(term.c.x-csiescseq.arg[0], term.c.y);
2085 case 'E': /* CNL -- Cursor <n> Down and first col */
2086 DEFAULT(csiescseq.arg[0], 1);
2087 tmoveto(0, term.c.y+csiescseq.arg[0]);
2089 case 'F': /* CPL -- Cursor <n> Up and first col */
2090 DEFAULT(csiescseq.arg[0], 1);
2091 tmoveto(0, term.c.y-csiescseq.arg[0]);
2093 case 'g': /* TBC -- Tabulation clear */
2094 switch(csiescseq.arg[0]) {
2095 case 0: /* clear current tab stop */
2096 term.tabs[term.c.x] = 0;
2098 case 3: /* clear all the tabs */
2099 memset(term.tabs, 0, term.col * sizeof(*term.tabs));
2105 case 'G': /* CHA -- Move to <col> */
2107 DEFAULT(csiescseq.arg[0], 1);
2108 tmoveto(csiescseq.arg[0]-1, term.c.y);
2110 case 'H': /* CUP -- Move to <row> <col> */
2112 DEFAULT(csiescseq.arg[0], 1);
2113 DEFAULT(csiescseq.arg[1], 1);
2114 tmoveato(csiescseq.arg[1]-1, csiescseq.arg[0]-1);
2116 case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
2117 DEFAULT(csiescseq.arg[0], 1);
2118 tputtab(csiescseq.arg[0]);
2120 case 'J': /* ED -- Clear screen */
2122 switch(csiescseq.arg[0]) {
2124 tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
2125 if(term.c.y < term.row-1) {
2126 tclearregion(0, term.c.y+1, term.col-1,
2132 tclearregion(0, 0, term.col-1, term.c.y-1);
2133 tclearregion(0, term.c.y, term.c.x, term.c.y);
2136 tclearregion(0, 0, term.col-1, term.row-1);
2142 case 'K': /* EL -- Clear line */
2143 switch(csiescseq.arg[0]) {
2145 tclearregion(term.c.x, term.c.y, term.col-1,
2149 tclearregion(0, term.c.y, term.c.x, term.c.y);
2152 tclearregion(0, term.c.y, term.col-1, term.c.y);
2156 case 'S': /* SU -- Scroll <n> line up */
2157 DEFAULT(csiescseq.arg[0], 1);
2158 tscrollup(term.top, csiescseq.arg[0]);
2160 case 'T': /* SD -- Scroll <n> line down */
2161 DEFAULT(csiescseq.arg[0], 1);
2162 tscrolldown(term.top, csiescseq.arg[0]);
2164 case 'L': /* IL -- Insert <n> blank lines */
2165 DEFAULT(csiescseq.arg[0], 1);
2166 tinsertblankline(csiescseq.arg[0]);
2168 case 'l': /* RM -- Reset Mode */
2169 tsetmode(csiescseq.priv, 0, csiescseq.arg, csiescseq.narg);
2171 case 'M': /* DL -- Delete <n> lines */
2172 DEFAULT(csiescseq.arg[0], 1);
2173 tdeleteline(csiescseq.arg[0]);
2175 case 'X': /* ECH -- Erase <n> char */
2176 DEFAULT(csiescseq.arg[0], 1);
2177 tclearregion(term.c.x, term.c.y,
2178 term.c.x + csiescseq.arg[0] - 1, term.c.y);
2180 case 'P': /* DCH -- Delete <n> char */
2181 DEFAULT(csiescseq.arg[0], 1);
2182 tdeletechar(csiescseq.arg[0]);
2184 case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
2185 DEFAULT(csiescseq.arg[0], 1);
2186 tputtab(-csiescseq.arg[0]);
2188 case 'd': /* VPA -- Move to <row> */
2189 DEFAULT(csiescseq.arg[0], 1);
2190 tmoveato(term.c.x, csiescseq.arg[0]-1);
2192 case 'h': /* SM -- Set terminal mode */
2193 tsetmode(csiescseq.priv, 1, csiescseq.arg, csiescseq.narg);
2195 case 'm': /* SGR -- Terminal attribute (color) */
2196 tsetattr(csiescseq.arg, csiescseq.narg);
2198 case 'n': /* DSR – Device Status Report (cursor position) */
2199 if (csiescseq.arg[0] == 6) {
2200 len = snprintf(buf, sizeof(buf),"\033[%i;%iR",
2201 term.c.y+1, term.c.x+1);
2205 case 'r': /* DECSTBM -- Set Scrolling Region */
2206 if(csiescseq.priv) {
2209 DEFAULT(csiescseq.arg[0], 1);
2210 DEFAULT(csiescseq.arg[1], term.row);
2211 tsetscroll(csiescseq.arg[0]-1, csiescseq.arg[1]-1);
2215 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
2216 tcursor(CURSOR_SAVE);
2218 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
2219 tcursor(CURSOR_LOAD);
2222 switch (csiescseq.mode[1]) {
2223 case 'q': /* DECSCUSR -- Set Cursor Style */
2224 DEFAULT(csiescseq.arg[0], 1);
2225 if (!BETWEEN(csiescseq.arg[0], 0, 6)) {
2228 xw.cursor = csiescseq.arg[0];
2243 for(i = 0; i < csiescseq.len; i++) {
2244 c = csiescseq.buf[i] & 0xff;
2247 } else if(c == '\n') {
2249 } else if(c == '\r') {
2251 } else if(c == 0x1b) {
2254 printf("(%02x)", c);
2262 memset(&csiescseq, 0, sizeof(csiescseq));
2270 term.esc &= ~(ESC_STR_END|ESC_STR);
2272 par = (narg = strescseq.narg) ? atoi(strescseq.args[0]) : 0;
2274 switch(strescseq.type) {
2275 case ']': /* OSC -- Operating System Command */
2281 xsettitle(strescseq.args[1]);
2283 case 4: /* color set */
2286 p = strescseq.args[2];
2288 case 104: /* color reset, here p = NULL */
2289 j = (narg > 1) ? atoi(strescseq.args[1]) : -1;
2290 if(xsetcolorname(j, p)) {
2291 fprintf(stderr, "erresc: invalid color %s\n", p);
2294 * TODO if defaultbg color is changed, borders
2302 case 'k': /* old title set compatibility */
2303 xsettitle(strescseq.args[0]);
2305 case 'P': /* DCS -- Device Control String */
2306 case '_': /* APC -- Application Program Command */
2307 case '^': /* PM -- Privacy Message */
2311 fprintf(stderr, "erresc: unknown str ");
2318 char *p = strescseq.buf;
2321 strescseq.buf[strescseq.len] = '\0';
2326 while(strescseq.narg < STR_ARG_SIZ) {
2327 strescseq.args[strescseq.narg++] = p;
2328 while((c = *p) != ';' && c != '\0')
2341 printf("ESC%c", strescseq.type);
2342 for(i = 0; i < strescseq.len; i++) {
2343 c = strescseq.buf[i] & 0xff;
2346 } else if(isprint(c)) {
2348 } else if(c == '\n') {
2350 } else if(c == '\r') {
2352 } else if(c == 0x1b) {
2355 printf("(%02x)", c);
2363 memset(&strescseq, 0, sizeof(strescseq));
2367 tprinter(char *s, size_t len) {
2368 if(iofd != -1 && xwrite(iofd, s, len) < 0) {
2369 fprintf(stderr, "Error writing in %s:%s\n",
2370 opt_io, strerror(errno));
2377 toggleprinter(const Arg *arg) {
2378 term.mode ^= MODE_PRINT;
2382 printscreen(const Arg *arg) {
2387 printsel(const Arg *arg) {
2395 if((ptr = getsel())) {
2396 tprinter(ptr, strlen(ptr));
2405 bp = &term.line[n][0];
2406 end = &bp[MIN(tlinelen(n), term.col) - 1];
2407 if(bp != end || bp->c[0] != ' ') {
2408 for( ;bp <= end; ++bp)
2409 tprinter(bp->c, utf8len(bp->c));
2418 for(i = 0; i < term.row; ++i)
2427 while(x < term.col && n--)
2428 for(++x; x < term.col && !term.tabs[x]; ++x)
2432 for(--x; x > 0 && !term.tabs[x]; --x)
2435 term.c.x = LIMIT(x, 0, term.col-1);
2439 techo(char *buf, int len) {
2440 for(; len > 0; buf++, len--) {
2443 if(ISCONTROL((uchar) c)) { /* control code */
2448 } else if(c != '\n' && c != '\r' && c != '\t') {
2462 tdeftran(char ascii) {
2463 static char cs[] = "0B";
2464 static int vcs[] = {CS_GRAPHIC0, CS_USA};
2467 if((p = strchr(cs, ascii)) == NULL) {
2468 fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
2470 term.trantbl[term.icharset] = vcs[p - cs];
2476 static char E[UTF_SIZ] = "E";
2479 if(c == '8') { /* DEC screen alignment test. */
2480 for(x = 0; x < term.col; ++x) {
2481 for(y = 0; y < term.row; ++y)
2482 tsetchar(E, &term.c.attr, x, y);
2488 tstrsequence(uchar c) {
2490 case 0x90: /* DCS -- Device Control String */
2493 case 0x9f: /* APC -- Application Program Command */
2496 case 0x9e: /* PM -- Privacy Message */
2499 case 0x9d: /* OSC -- Operating System Command */
2505 term.esc |= ESC_STR;
2509 tcontrolcode(uchar ascii) {
2510 static char question[UTF_SIZ] = "?";
2517 tmoveto(term.c.x-1, term.c.y);
2520 tmoveto(0, term.c.y);
2525 /* go to first col if the mode is set */
2526 tnewline(IS_SET(MODE_CRLF));
2528 case '\a': /* BEL */
2529 if(term.esc & ESC_STR_END) {
2530 /* backwards compatibility to xterm */
2533 if(!(xw.state & WIN_FOCUSED))
2536 XkbBell(xw.dpy, xw.win, bellvolume, (Atom)NULL);
2539 case '\033': /* ESC */
2541 term.esc &= ~(ESC_CSI|ESC_ALTCHARSET|ESC_TEST);
2542 term.esc |= ESC_START;
2544 case '\016': /* SO (LS1 -- Locking shift 1) */
2545 case '\017': /* SI (LS0 -- Locking shift 0) */
2546 term.charset = 1 - (ascii - '\016');
2548 case '\032': /* SUB */
2549 tsetchar(question, &term.c.attr, term.c.x, term.c.y);
2550 case '\030': /* CAN */
2553 case '\005': /* ENQ (IGNORED) */
2554 case '\000': /* NUL (IGNORED) */
2555 case '\021': /* XON (IGNORED) */
2556 case '\023': /* XOFF (IGNORED) */
2557 case 0177: /* DEL (IGNORED) */
2559 case 0x84: /* TODO: IND */
2561 case 0x85: /* NEL -- Next line */
2562 tnewline(1); /* always go to first col */
2564 case 0x88: /* HTS -- Horizontal tab stop */
2565 term.tabs[term.c.x] = 1;
2567 case 0x8d: /* TODO: RI */
2568 case 0x8e: /* TODO: SS2 */
2569 case 0x8f: /* TODO: SS3 */
2570 case 0x98: /* TODO: SOS */
2572 case 0x9a: /* DECID -- Identify Terminal */
2573 ttywrite(vtiden, sizeof(vtiden) - 1);
2575 case 0x9b: /* TODO: CSI */
2576 case 0x9c: /* TODO: ST */
2578 case 0x90: /* DCS -- Device Control String */
2579 case 0x9f: /* APC -- Application Program Command */
2580 case 0x9e: /* PM -- Privacy Message */
2581 case 0x9d: /* OSC -- Operating System Command */
2582 tstrsequence(ascii);
2585 /* only CAN, SUB, \a and C1 chars interrupt a sequence */
2586 term.esc &= ~(ESC_STR_END|ESC_STR);
2590 * returns 1 when the sequence is finished and it hasn't to read
2591 * more characters for this sequence, otherwise 0
2594 eschandle(uchar ascii) {
2597 term.esc |= ESC_CSI;
2600 term.esc |= ESC_TEST;
2602 case 'P': /* DCS -- Device Control String */
2603 case '_': /* APC -- Application Program Command */
2604 case '^': /* PM -- Privacy Message */
2605 case ']': /* OSC -- Operating System Command */
2606 case 'k': /* old title set compatibility */
2607 tstrsequence(ascii);
2609 case 'n': /* LS2 -- Locking shift 2 */
2610 case 'o': /* LS3 -- Locking shift 3 */
2611 term.charset = 2 + (ascii - 'n');
2613 case '(': /* GZD4 -- set primary charset G0 */
2614 case ')': /* G1D4 -- set secondary charset G1 */
2615 case '*': /* G2D4 -- set tertiary charset G2 */
2616 case '+': /* G3D4 -- set quaternary charset G3 */
2617 term.icharset = ascii - '(';
2618 term.esc |= ESC_ALTCHARSET;
2620 case 'D': /* IND -- Linefeed */
2621 if(term.c.y == term.bot) {
2622 tscrollup(term.top, 1);
2624 tmoveto(term.c.x, term.c.y+1);
2627 case 'E': /* NEL -- Next line */
2628 tnewline(1); /* always go to first col */
2630 case 'H': /* HTS -- Horizontal tab stop */
2631 term.tabs[term.c.x] = 1;
2633 case 'M': /* RI -- Reverse index */
2634 if(term.c.y == term.top) {
2635 tscrolldown(term.top, 1);
2637 tmoveto(term.c.x, term.c.y-1);
2640 case 'Z': /* DECID -- Identify Terminal */
2641 ttywrite(vtiden, sizeof(vtiden) - 1);
2643 case 'c': /* RIS -- Reset to inital state */
2648 case '=': /* DECPAM -- Application keypad */
2649 term.mode |= MODE_APPKEYPAD;
2651 case '>': /* DECPNM -- Normal keypad */
2652 term.mode &= ~MODE_APPKEYPAD;
2654 case '7': /* DECSC -- Save Cursor */
2655 tcursor(CURSOR_SAVE);
2657 case '8': /* DECRC -- Restore Cursor */
2658 tcursor(CURSOR_LOAD);
2660 case '\\': /* ST -- String Terminator */
2661 if(term.esc & ESC_STR_END)
2665 fprintf(stderr, "erresc: unknown sequence ESC 0x%02X '%c'\n",
2666 (uchar) ascii, isprint(ascii)? ascii:'.');
2673 tputc(char *c, int len) {
2682 unicodep = ascii = *c;
2684 utf8decode(c, &unicodep, UTF_SIZ);
2685 if ((width = wcwidth(unicodep)) == -1) {
2686 c = "\357\277\275"; /* UTF_INVALID */
2692 if(IS_SET(MODE_PRINT))
2694 control = ISCONTROL(unicodep);
2697 * STR sequence must be checked before anything else
2698 * because it uses all following characters until it
2699 * receives a ESC, a SUB, a ST or any other C1 control
2702 if(term.esc & ESC_STR) {
2704 (ascii == '\a' || ascii == 030 ||
2705 ascii == 032 || ascii == 033 ||
2706 ISCONTROLC1(unicodep))) {
2707 term.esc &= ~(ESC_START|ESC_STR);
2708 term.esc |= ESC_STR_END;
2709 } else if(strescseq.len + len < sizeof(strescseq.buf) - 1) {
2710 memmove(&strescseq.buf[strescseq.len], c, len);
2711 strescseq.len += len;
2715 * Here is a bug in terminals. If the user never sends
2716 * some code to stop the str or esc command, then st
2717 * will stop responding. But this is better than
2718 * silently failing with unknown characters. At least
2719 * then users will report back.
2721 * In the case users ever get fixed, here is the code:
2732 * Actions of control codes must be performed as soon they arrive
2733 * because they can be embedded inside a control sequence, and
2734 * they must not cause conflicts with sequences.
2737 tcontrolcode(ascii);
2739 * control codes are not shown ever
2742 } else if(term.esc & ESC_START) {
2743 if(term.esc & ESC_CSI) {
2744 csiescseq.buf[csiescseq.len++] = ascii;
2745 if(BETWEEN(ascii, 0x40, 0x7E)
2746 || csiescseq.len >= \
2747 sizeof(csiescseq.buf)-1) {
2753 } else if(term.esc & ESC_ALTCHARSET) {
2755 } else if(term.esc & ESC_TEST) {
2758 if (!eschandle(ascii))
2760 /* sequence already finished */
2764 * All characters which form part of a sequence are not
2769 if(sel.ob.x != -1 && BETWEEN(term.c.y, sel.ob.y, sel.oe.y))
2772 gp = &term.line[term.c.y][term.c.x];
2773 if(IS_SET(MODE_WRAP) && (term.c.state & CURSOR_WRAPNEXT)) {
2774 gp->mode |= ATTR_WRAP;
2776 gp = &term.line[term.c.y][term.c.x];
2779 if(IS_SET(MODE_INSERT) && term.c.x+width < term.col)
2780 memmove(gp+width, gp, (term.col - term.c.x - width) * sizeof(Glyph));
2782 if(term.c.x+width > term.col) {
2784 gp = &term.line[term.c.y][term.c.x];
2787 tsetchar(c, &term.c.attr, term.c.x, term.c.y);
2790 gp->mode |= ATTR_WIDE;
2791 if(term.c.x+1 < term.col) {
2793 gp[1].mode = ATTR_WDUMMY;
2796 if(term.c.x+width < term.col) {
2797 tmoveto(term.c.x+width, term.c.y);
2799 term.c.state |= CURSOR_WRAPNEXT;
2804 tresize(int col, int row) {
2806 int minrow = MIN(row, term.row);
2807 int mincol = MIN(col, term.col);
2811 if(col < 1 || row < 1) {
2813 "tresize: error resizing to %dx%d\n", col, row);
2818 * slide screen to keep cursor where we expect it -
2819 * tscrollup would work here, but we can optimize to
2820 * memmove because we're freeing the earlier lines
2822 for(i = 0; i <= term.c.y - row; i++) {
2826 /* ensure that both src and dst are not NULL */
2828 memmove(term.line, term.line + i, row * sizeof(Line));
2829 memmove(term.alt, term.alt + i, row * sizeof(Line));
2831 for(i += row; i < term.row; i++) {
2836 /* resize to new height */
2837 term.line = xrealloc(term.line, row * sizeof(Line));
2838 term.alt = xrealloc(term.alt, row * sizeof(Line));
2839 term.dirty = xrealloc(term.dirty, row * sizeof(*term.dirty));
2840 term.tabs = xrealloc(term.tabs, col * sizeof(*term.tabs));
2842 /* resize each row to new width, zero-pad if needed */
2843 for(i = 0; i < minrow; i++) {
2844 term.line[i] = xrealloc(term.line[i], col * sizeof(Glyph));
2845 term.alt[i] = xrealloc(term.alt[i], col * sizeof(Glyph));
2848 /* allocate any new rows */
2849 for(/* i == minrow */; i < row; i++) {
2850 term.line[i] = xmalloc(col * sizeof(Glyph));
2851 term.alt[i] = xmalloc(col * sizeof(Glyph));
2853 if(col > term.col) {
2854 bp = term.tabs + term.col;
2856 memset(bp, 0, sizeof(*term.tabs) * (col - term.col));
2857 while(--bp > term.tabs && !*bp)
2859 for(bp += tabspaces; bp < term.tabs + col; bp += tabspaces)
2862 /* update terminal size */
2865 /* reset scrolling region */
2866 tsetscroll(0, row-1);
2867 /* make use of the LIMIT in tmoveto */
2868 tmoveto(term.c.x, term.c.y);
2869 /* Clearing both screens (it makes dirty all lines) */
2871 for(i = 0; i < 2; i++) {
2872 if(mincol < col && 0 < minrow) {
2873 tclearregion(mincol, 0, col - 1, minrow - 1);
2875 if(0 < col && minrow < row) {
2876 tclearregion(0, minrow, col - 1, row - 1);
2879 tcursor(CURSOR_LOAD);
2885 xresize(int col, int row) {
2886 xw.tw = MAX(1, col * xw.cw);
2887 xw.th = MAX(1, row * xw.ch);
2889 XFreePixmap(xw.dpy, xw.buf);
2890 xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
2891 DefaultDepth(xw.dpy, xw.scr));
2892 XftDrawChange(xw.draw, xw.buf);
2893 xclear(0, 0, xw.w, xw.h);
2897 sixd_to_16bit(int x) {
2898 return x == 0 ? 0 : 0x3737 + 0x2828 * x;
2902 xloadcolor(int i, const char *name, Color *ncolor) {
2903 XRenderColor color = { .alpha = 0xffff };
2906 if(BETWEEN(i, 16, 255)) { /* 256 color */
2907 if(i < 6*6*6+16) { /* same colors as xterm */
2908 color.red = sixd_to_16bit( ((i-16)/36)%6 );
2909 color.green = sixd_to_16bit( ((i-16)/6) %6 );
2910 color.blue = sixd_to_16bit( ((i-16)/1) %6 );
2911 } else { /* greyscale */
2912 color.red = 0x0808 + 0x0a0a * (i - (6*6*6+16));
2913 color.green = color.blue = color.red;
2915 return XftColorAllocValue(xw.dpy, xw.vis,
2916 xw.cmap, &color, ncolor);
2918 name = colorname[i];
2920 return XftColorAllocName(xw.dpy, xw.vis, xw.cmap, name, ncolor);
2930 for (cp = dc.col; cp < &dc.col[LEN(dc.col)]; ++cp)
2931 XftColorFree(xw.dpy, xw.vis, xw.cmap, cp);
2934 for(i = 0; i < LEN(dc.col); i++)
2935 if(!xloadcolor(i, NULL, &dc.col[i])) {
2937 die("Could not allocate color '%s'\n", colorname[i]);
2939 die("Could not allocate color %d\n", i);
2945 xsetcolorname(int x, const char *name) {
2948 if(!BETWEEN(x, 0, LEN(dc.col)))
2952 if(!xloadcolor(x, name, &ncolor))
2955 XftColorFree(xw.dpy, xw.vis, xw.cmap, &dc.col[x]);
2961 xtermclear(int col1, int row1, int col2, int row2) {
2962 XftDrawRect(xw.draw,
2963 &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
2964 borderpx + col1 * xw.cw,
2965 borderpx + row1 * xw.ch,
2966 (col2-col1+1) * xw.cw,
2967 (row2-row1+1) * xw.ch);
2971 * Absolute coordinates.
2974 xclear(int x1, int y1, int x2, int y2) {
2975 XftDrawRect(xw.draw,
2976 &dc.col[IS_SET(MODE_REVERSE)? defaultfg : defaultbg],
2977 x1, y1, x2-x1, y2-y1);
2982 XClassHint class = {opt_class ? opt_class : termname, termname};
2983 XWMHints wm = {.flags = InputHint, .input = 1};
2984 XSizeHints *sizeh = NULL;
2986 sizeh = XAllocSizeHints();
2988 sizeh->flags = PSize | PResizeInc | PBaseSize;
2989 sizeh->height = xw.h;
2990 sizeh->width = xw.w;
2991 sizeh->height_inc = xw.ch;
2992 sizeh->width_inc = xw.cw;
2993 sizeh->base_height = 2 * borderpx;
2994 sizeh->base_width = 2 * borderpx;
2995 if(xw.isfixed == True) {
2996 sizeh->flags |= PMaxSize | PMinSize;
2997 sizeh->min_width = sizeh->max_width = xw.w;
2998 sizeh->min_height = sizeh->max_height = xw.h;
3000 if(xw.gm & (XValue|YValue)) {
3001 sizeh->flags |= USPosition | PWinGravity;
3004 sizeh->win_gravity = xgeommasktogravity(xw.gm);
3007 XSetWMProperties(xw.dpy, xw.win, NULL, NULL, NULL, 0, sizeh, &wm,
3013 xgeommasktogravity(int mask) {
3014 switch(mask & (XNegative|YNegative)) {
3016 return NorthWestGravity;
3018 return NorthEastGravity;
3020 return SouthWestGravity;
3022 return SouthEastGravity;
3026 xloadfont(Font *f, FcPattern *pattern) {
3030 match = FcFontMatch(NULL, pattern, &result);
3034 if(!(f->match = XftFontOpenPattern(xw.dpy, match))) {
3035 FcPatternDestroy(match);
3040 f->pattern = FcPatternDuplicate(pattern);
3042 f->ascent = f->match->ascent;
3043 f->descent = f->match->descent;
3045 f->rbearing = f->match->max_advance_width;
3047 f->height = f->ascent + f->descent;
3048 f->width = f->lbearing + f->rbearing;
3054 xloadfonts(char *fontstr, double fontsize) {
3056 FcResult r_sz, r_psz;
3060 if(fontstr[0] == '-') {
3061 pattern = XftXlfdParse(fontstr, False, False);
3063 pattern = FcNameParse((FcChar8 *)fontstr);
3067 die("st: can't open font %s\n", fontstr);
3070 FcPatternDel(pattern, FC_PIXEL_SIZE);
3071 FcPatternDel(pattern, FC_SIZE);
3072 FcPatternAddDouble(pattern, FC_PIXEL_SIZE, (double)fontsize);
3073 usedfontsize = fontsize;
3075 r_psz = FcPatternGetDouble(pattern, FC_PIXEL_SIZE, 0, &fontval);
3076 r_sz = FcPatternGetDouble(pattern, FC_SIZE, 0, &fontval);
3077 if(r_psz == FcResultMatch) {
3078 usedfontsize = fontval;
3079 } else if(r_sz == FcResultMatch) {
3083 * Default font size is 12, if none given. This is to
3084 * have a known usedfontsize value.
3086 FcPatternAddDouble(pattern, FC_PIXEL_SIZE, 12);
3089 defaultfontsize = usedfontsize;
3092 FcConfigSubstitute(0, pattern, FcMatchPattern);
3093 FcDefaultSubstitute(pattern);
3095 if(xloadfont(&dc.font, pattern))
3096 die("st: can't open font %s\n", fontstr);
3098 if(usedfontsize < 0) {
3099 FcPatternGetDouble(dc.font.match->pattern,
3100 FC_PIXEL_SIZE, 0, &fontval);
3101 usedfontsize = fontval;
3103 defaultfontsize = fontval;
3106 /* Setting character width and height. */
3107 xw.cw = ceilf(dc.font.width * cwscale);
3108 xw.ch = ceilf(dc.font.height * chscale);
3110 FcPatternDel(pattern, FC_SLANT);
3111 FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC);
3112 if(xloadfont(&dc.ifont, pattern))
3113 die("st: can't open font %s\n", fontstr);
3115 FcPatternDel(pattern, FC_WEIGHT);
3116 FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_BOLD);
3117 if(xloadfont(&dc.ibfont, pattern))
3118 die("st: can't open font %s\n", fontstr);
3120 FcPatternDel(pattern, FC_SLANT);
3121 FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN);
3122 if(xloadfont(&dc.bfont, pattern))
3123 die("st: can't open font %s\n", fontstr);
3125 FcPatternDestroy(pattern);
3129 xunloadfont(Font *f) {
3130 XftFontClose(xw.dpy, f->match);
3131 FcPatternDestroy(f->pattern);
3133 FcFontSetDestroy(f->set);
3137 xunloadfonts(void) {
3138 /* Free the loaded fonts in the font cache. */
3140 XftFontClose(xw.dpy, frc[--frclen].font);
3142 xunloadfont(&dc.font);
3143 xunloadfont(&dc.bfont);
3144 xunloadfont(&dc.ifont);
3145 xunloadfont(&dc.ibfont);
3149 xzoom(const Arg *arg) {
3152 larg.i = usedfontsize + arg->i;
3157 xzoomabs(const Arg *arg) {
3159 xloadfonts(usedfont, arg->i);
3166 xzoomreset(const Arg *arg) {
3169 if(defaultfontsize > 0) {
3170 larg.i = defaultfontsize;
3180 pid_t thispid = getpid();
3182 if(!(xw.dpy = XOpenDisplay(NULL)))
3183 die("Can't open display\n");
3184 xw.scr = XDefaultScreen(xw.dpy);
3185 xw.vis = XDefaultVisual(xw.dpy, xw.scr);
3189 die("Could not init fontconfig.\n");
3191 usedfont = (opt_font == NULL)? font : opt_font;
3192 xloadfonts(usedfont, 0);
3195 xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
3198 /* adjust fixed window geometry */
3199 xw.w = 2 * borderpx + term.col * xw.cw;
3200 xw.h = 2 * borderpx + term.row * xw.ch;
3201 if(xw.gm & XNegative)
3202 xw.l += DisplayWidth(xw.dpy, xw.scr) - xw.w - 2;
3203 if(xw.gm & YNegative)
3204 xw.t += DisplayWidth(xw.dpy, xw.scr) - xw.h - 2;
3207 xw.attrs.background_pixel = dc.col[defaultbg].pixel;
3208 xw.attrs.border_pixel = dc.col[defaultbg].pixel;
3209 xw.attrs.bit_gravity = NorthWestGravity;
3210 xw.attrs.event_mask = FocusChangeMask | KeyPressMask
3211 | ExposureMask | VisibilityChangeMask | StructureNotifyMask
3212 | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
3213 xw.attrs.colormap = xw.cmap;
3215 if (!(opt_embed && (parent = strtol(opt_embed, NULL, 0))))
3216 parent = XRootWindow(xw.dpy, xw.scr);
3217 xw.win = XCreateWindow(xw.dpy, parent, xw.l, xw.t,
3218 xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,
3219 xw.vis, CWBackPixel | CWBorderPixel | CWBitGravity
3220 | CWEventMask | CWColormap, &xw.attrs);
3222 memset(&gcvalues, 0, sizeof(gcvalues));
3223 gcvalues.graphics_exposures = False;
3224 dc.gc = XCreateGC(xw.dpy, parent, GCGraphicsExposures,
3226 xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
3227 DefaultDepth(xw.dpy, xw.scr));
3228 XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
3229 XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
3231 /* Xft rendering context */
3232 xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
3235 if((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
3236 XSetLocaleModifiers("@im=local");
3237 if((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
3238 XSetLocaleModifiers("@im=");
3239 if((xw.xim = XOpenIM(xw.dpy,
3240 NULL, NULL, NULL)) == NULL) {
3241 die("XOpenIM failed. Could not open input"
3246 xw.xic = XCreateIC(xw.xim, XNInputStyle, XIMPreeditNothing
3247 | XIMStatusNothing, XNClientWindow, xw.win,
3248 XNFocusWindow, xw.win, NULL);
3250 die("XCreateIC failed. Could not obtain input method.\n");
3252 /* white cursor, black outline */
3253 cursor = XCreateFontCursor(xw.dpy, XC_xterm);
3254 XDefineCursor(xw.dpy, xw.win, cursor);
3255 XRecolorCursor(xw.dpy, cursor,
3256 &(XColor){.red = 0xffff, .green = 0xffff, .blue = 0xffff},
3257 &(XColor){.red = 0x0000, .green = 0x0000, .blue = 0x0000});
3259 xw.xembed = XInternAtom(xw.dpy, "_XEMBED", False);
3260 xw.wmdeletewin = XInternAtom(xw.dpy, "WM_DELETE_WINDOW", False);
3261 xw.netwmname = XInternAtom(xw.dpy, "_NET_WM_NAME", False);
3262 XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
3264 xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
3265 XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
3266 PropModeReplace, (uchar *)&thispid, 1);
3269 XMapWindow(xw.dpy, xw.win);
3271 XSync(xw.dpy, False);
3275 xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
3276 int winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch,
3277 width = charlen * xw.cw, xp, i;
3278 int frcflags, charexists;
3279 int u8fl, u8fblen, u8cblen, doesexist;
3282 Font *font = &dc.font;
3284 FcPattern *fcpattern, *fontpattern;
3285 FcFontSet *fcsets[] = { NULL };
3286 FcCharSet *fccharset;
3287 Color *fg, *bg, *temp, revfg, revbg, truefg, truebg;
3288 XRenderColor colfg, colbg;
3292 frcflags = FRC_NORMAL;
3294 if(base.mode & ATTR_ITALIC) {
3295 if(base.fg == defaultfg)
3296 base.fg = defaultitalic;
3298 frcflags = FRC_ITALIC;
3299 } else if((base.mode & ATTR_ITALIC) && (base.mode & ATTR_BOLD)) {
3300 if(base.fg == defaultfg)
3301 base.fg = defaultitalic;
3303 frcflags = FRC_ITALICBOLD;
3304 } else if(base.mode & ATTR_UNDERLINE) {
3305 if(base.fg == defaultfg)
3306 base.fg = defaultunderline;
3309 if(IS_TRUECOL(base.fg)) {
3310 colfg.alpha = 0xffff;
3311 colfg.red = TRUERED(base.fg);
3312 colfg.green = TRUEGREEN(base.fg);
3313 colfg.blue = TRUEBLUE(base.fg);
3314 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &truefg);
3317 fg = &dc.col[base.fg];
3320 if(IS_TRUECOL(base.bg)) {
3321 colbg.alpha = 0xffff;
3322 colbg.green = TRUEGREEN(base.bg);
3323 colbg.red = TRUERED(base.bg);
3324 colbg.blue = TRUEBLUE(base.bg);
3325 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &truebg);
3328 bg = &dc.col[base.bg];
3331 if(base.mode & ATTR_BOLD) {
3333 * change basic system colors [0-7]
3334 * to bright system colors [8-15]
3336 if(BETWEEN(base.fg, 0, 7) && !(base.mode & ATTR_FAINT))
3337 fg = &dc.col[base.fg + 8];
3339 if(base.mode & ATTR_ITALIC) {
3341 frcflags = FRC_ITALICBOLD;
3344 frcflags = FRC_BOLD;
3348 if(IS_SET(MODE_REVERSE)) {
3349 if(fg == &dc.col[defaultfg]) {
3350 fg = &dc.col[defaultbg];
3352 colfg.red = ~fg->color.red;
3353 colfg.green = ~fg->color.green;
3354 colfg.blue = ~fg->color.blue;
3355 colfg.alpha = fg->color.alpha;
3356 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg,
3361 if(bg == &dc.col[defaultbg]) {
3362 bg = &dc.col[defaultfg];
3364 colbg.red = ~bg->color.red;
3365 colbg.green = ~bg->color.green;
3366 colbg.blue = ~bg->color.blue;
3367 colbg.alpha = bg->color.alpha;
3368 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg,
3374 if(base.mode & ATTR_REVERSE) {
3380 if(base.mode & ATTR_FAINT && !(base.mode & ATTR_BOLD)) {
3381 colfg.red = fg->color.red / 2;
3382 colfg.green = fg->color.green / 2;
3383 colfg.blue = fg->color.blue / 2;
3384 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &revfg);
3388 if(base.mode & ATTR_BLINK && term.mode & MODE_BLINK)
3391 if(base.mode & ATTR_INVISIBLE)
3394 /* Intelligent cleaning up of the borders. */
3396 xclear(0, (y == 0)? 0 : winy, borderpx,
3397 winy + xw.ch + ((y >= term.row-1)? xw.h : 0));
3399 if(x + charlen >= term.col) {
3400 xclear(winx + width, (y == 0)? 0 : winy, xw.w,
3401 ((y >= term.row-1)? xw.h : (winy + xw.ch)));
3404 xclear(winx, 0, winx + width, borderpx);
3406 xclear(winx, winy + xw.ch, winx + width, xw.h);
3408 /* Clean up the region we want to draw to. */
3409 XftDrawRect(xw.draw, bg, winx, winy, width, xw.ch);
3411 /* Set the clip region because Xft is sometimes dirty. */
3416 XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
3418 for(xp = winx; bytelen > 0;) {
3420 * Search for the range in the to be printed string of glyphs
3421 * that are in the main font. Then print that range. If
3422 * some glyph is found that is not in the font, do the
3428 oneatatime = font->width != xw.cw;
3431 u8cblen = utf8decode(s, &unicodep, UTF_SIZ);
3435 doesexist = XftCharExists(xw.dpy, font->match, unicodep);
3439 if(!oneatatime && bytelen > 0)
3444 XftDrawStringUtf8(xw.draw, fg,
3446 winy + font->ascent,
3459 /* Search the font cache. */
3460 for(i = 0; i < frclen; i++) {
3461 charexists = XftCharExists(xw.dpy, frc[i].font, unicodep);
3462 /* Everything correct. */
3463 if(charexists && frc[i].flags == frcflags)
3465 /* We got a default font for a not found glyph. */
3466 if(!charexists && frc[i].flags == frcflags \
3467 && frc[i].unicodep == unicodep) {
3472 /* Nothing was found. */
3475 font->set = FcFontSort(0, font->pattern,
3477 fcsets[0] = font->set;
3480 * Nothing was found in the cache. Now use
3481 * some dozen of Fontconfig calls to get the
3482 * font for one single character.
3484 * Xft and fontconfig are design failures.
3486 fcpattern = FcPatternDuplicate(font->pattern);
3487 fccharset = FcCharSetCreate();
3489 FcCharSetAddChar(fccharset, unicodep);
3490 FcPatternAddCharSet(fcpattern, FC_CHARSET,
3492 FcPatternAddBool(fcpattern, FC_SCALABLE,
3495 FcConfigSubstitute(0, fcpattern,
3497 FcDefaultSubstitute(fcpattern);
3499 fontpattern = FcFontSetMatch(0, fcsets, 1,
3503 * Overwrite or create the new cache entry.
3505 if(frclen >= LEN(frc)) {
3506 frclen = LEN(frc) - 1;
3507 XftFontClose(xw.dpy, frc[frclen].font);
3508 frc[frclen].unicodep = 0;
3511 frc[frclen].font = XftFontOpenPattern(xw.dpy,
3513 frc[frclen].flags = frcflags;
3514 frc[frclen].unicodep = unicodep;
3519 FcPatternDestroy(fcpattern);
3520 FcCharSetDestroy(fccharset);
3523 XftDrawStringUtf8(xw.draw, fg, frc[i].font,
3524 xp, winy + frc[i].font->ascent,
3525 (FcChar8 *)u8c, u8cblen);
3527 xp += xw.cw * wcwidth(unicodep);
3531 * This is how the loop above actually should be. Why does the
3532 * application have to care about font details?
3534 * I have to repeat: Xft and Fontconfig are design failures.
3537 XftDrawStringUtf8(xw.draw, fg, font->set, winx,
3538 winy + font->ascent, (FcChar8 *)s, bytelen);
3541 if(base.mode & ATTR_UNDERLINE) {
3542 XftDrawRect(xw.draw, fg, winx, winy + font->ascent + 1,
3546 if(base.mode & ATTR_STRUCK) {
3547 XftDrawRect(xw.draw, fg, winx, winy + 2 * font->ascent / 3,
3551 /* Reset clip to none. */
3552 XftDrawSetClip(xw.draw, 0);
3557 static int oldx = 0, oldy = 0;
3558 int sl, width, curx;
3559 Glyph g = {{' '}, ATTR_NULL, defaultbg, defaultcs};
3561 LIMIT(oldx, 0, term.col-1);
3562 LIMIT(oldy, 0, term.row-1);
3566 /* adjust position if in dummy */
3567 if(term.line[oldy][oldx].mode & ATTR_WDUMMY)
3569 if(term.line[term.c.y][curx].mode & ATTR_WDUMMY)
3572 memcpy(g.c, term.line[term.c.y][term.c.x].c, UTF_SIZ);
3574 /* remove the old cursor */
3575 sl = utf8len(term.line[oldy][oldx].c);
3576 width = (term.line[oldy][oldx].mode & ATTR_WIDE)? 2 : 1;
3577 xdraws(term.line[oldy][oldx].c, term.line[oldy][oldx], oldx,
3580 if(IS_SET(MODE_HIDE))
3583 /* draw the new one */
3584 if(xw.state & WIN_FOCUSED) {
3585 switch (xw.cursor) {
3586 case 0: /* Blinking Block */
3587 case 1: /* Blinking Block (Default) */
3588 case 2: /* Steady Block */
3589 if(IS_SET(MODE_REVERSE)) {
3590 g.mode |= ATTR_REVERSE;
3596 width = (term.line[term.c.y][curx].mode & ATTR_WIDE)\
3598 xdraws(g.c, g, term.c.x, term.c.y, width, sl);
3600 case 3: /* Blinking Underline */
3601 case 4: /* Steady Underline */
3602 XftDrawRect(xw.draw, &dc.col[defaultcs],
3603 borderpx + curx * xw.cw,
3604 borderpx + (term.c.y + 1) * xw.ch - cursorthickness,
3605 xw.cw, cursorthickness);
3607 case 5: /* Blinking bar */
3608 case 6: /* Steady bar */
3609 XftDrawRect(xw.draw, &dc.col[defaultcs],
3610 borderpx + curx * xw.cw,
3611 borderpx + term.c.y * xw.ch,
3612 cursorthickness, xw.ch);
3616 XftDrawRect(xw.draw, &dc.col[defaultcs],
3617 borderpx + curx * xw.cw,
3618 borderpx + term.c.y * xw.ch,
3620 XftDrawRect(xw.draw, &dc.col[defaultcs],
3621 borderpx + curx * xw.cw,
3622 borderpx + term.c.y * xw.ch,
3624 XftDrawRect(xw.draw, &dc.col[defaultcs],
3625 borderpx + (curx + 1) * xw.cw - 1,
3626 borderpx + term.c.y * xw.ch,
3628 XftDrawRect(xw.draw, &dc.col[defaultcs],
3629 borderpx + curx * xw.cw,
3630 borderpx + (term.c.y + 1) * xw.ch - 1,
3633 oldx = curx, oldy = term.c.y;
3638 xsettitle(char *p) {
3641 Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
3643 XSetWMName(xw.dpy, xw.win, &prop);
3644 XSetTextProperty(xw.dpy, xw.win, &prop, xw.netwmname);
3650 xsettitle(opt_title ? opt_title : "st");
3661 drawregion(0, 0, term.col, term.row);
3662 XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.w,
3664 XSetForeground(xw.dpy, dc.gc,
3665 dc.col[IS_SET(MODE_REVERSE)?
3666 defaultfg : defaultbg].pixel);
3670 drawregion(int x1, int y1, int x2, int y2) {
3671 int ic, ib, x, y, ox, sl;
3673 char buf[DRAW_BUF_SIZ];
3674 bool ena_sel = sel.ob.x != -1 && sel.alt == IS_SET(MODE_ALTSCREEN);
3676 if(!(xw.state & WIN_VISIBLE))
3679 for(y = y1; y < y2; y++) {
3683 xtermclear(0, y, term.col, y);
3685 base = term.line[y][0];
3687 for(x = x1; x < x2; x++) {
3688 new = term.line[y][x];
3689 if(new.mode == ATTR_WDUMMY)
3691 if(ena_sel && selected(x, y))
3692 new.mode ^= ATTR_REVERSE;
3693 if(ib > 0 && (ATTRCMP(base, new)
3694 || ib >= DRAW_BUF_SIZ-UTF_SIZ)) {
3695 xdraws(buf, base, ox, y, ic, ib);
3703 sl = utf8len(new.c);
3704 memcpy(buf+ib, new.c, sl);
3706 ic += (new.mode & ATTR_WIDE)? 2 : 1;
3709 xdraws(buf, base, ox, y, ic, ib);
3715 expose(XEvent *ev) {
3720 visibility(XEvent *ev) {
3721 XVisibilityEvent *e = &ev->xvisibility;
3723 MODBIT(xw.state, e->state != VisibilityFullyObscured, WIN_VISIBLE);
3728 xw.state &= ~WIN_VISIBLE;
3732 xsetpointermotion(int set) {
3733 MODBIT(xw.attrs.event_mask, set, PointerMotionMask);
3734 XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask, &xw.attrs);
3738 xseturgency(int add) {
3739 XWMHints *h = XGetWMHints(xw.dpy, xw.win);
3741 MODBIT(h->flags, add, XUrgencyHint);
3742 XSetWMHints(xw.dpy, xw.win, h);
3748 XFocusChangeEvent *e = &ev->xfocus;
3750 if(e->mode == NotifyGrab)
3753 if(ev->type == FocusIn) {
3754 XSetICFocus(xw.xic);
3755 xw.state |= WIN_FOCUSED;
3757 if(IS_SET(MODE_FOCUS))
3758 ttywrite("\033[I", 3);
3760 XUnsetICFocus(xw.xic);
3761 xw.state &= ~WIN_FOCUSED;
3762 if(IS_SET(MODE_FOCUS))
3763 ttywrite("\033[O", 3);
3768 match(uint mask, uint state) {
3769 return mask == XK_ANY_MOD || mask == (state & ~ignoremod);
3773 numlock(const Arg *dummy) {
3778 kmap(KeySym k, uint state) {
3782 /* Check for mapped keys out of X11 function keys. */
3783 for(i = 0; i < LEN(mappedkeys); i++) {
3784 if(mappedkeys[i] == k)
3787 if(i == LEN(mappedkeys)) {
3788 if((k & 0xFFFF) < 0xFD00)
3792 for(kp = key; kp < key + LEN(key); kp++) {
3796 if(!match(kp->mask, state))
3799 if(IS_SET(MODE_APPKEYPAD) ? kp->appkey < 0 : kp->appkey > 0)
3801 if(term.numlock && kp->appkey == 2)
3804 if(IS_SET(MODE_APPCURSOR) ? kp->appcursor < 0 : kp->appcursor > 0)
3807 if(IS_SET(MODE_CRLF) ? kp->crlf < 0 : kp->crlf > 0)
3817 kpress(XEvent *ev) {
3818 XKeyEvent *e = &ev->xkey;
3820 char buf[32], *customkey;
3826 if(IS_SET(MODE_KBDLOCK))
3829 len = XmbLookupString(xw.xic, e, buf, sizeof buf, &ksym, &status);
3831 for(bp = shortcuts; bp < shortcuts + LEN(shortcuts); bp++) {
3832 if(ksym == bp->keysym && match(bp->mod, e->state)) {
3833 bp->func(&(bp->arg));
3838 /* 2. custom keys from config.h */
3839 if((customkey = kmap(ksym, e->state))) {
3840 ttysend(customkey, strlen(customkey));
3844 /* 3. composed string from input method */
3847 if(len == 1 && e->state & Mod1Mask) {
3848 if(IS_SET(MODE_8BIT)) {
3851 len = utf8encode(c, buf);
3864 cmessage(XEvent *e) {
3867 * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
3869 if(e->xclient.message_type == xw.xembed && e->xclient.format == 32) {
3870 if(e->xclient.data.l[1] == XEMBED_FOCUS_IN) {
3871 xw.state |= WIN_FOCUSED;
3873 } else if(e->xclient.data.l[1] == XEMBED_FOCUS_OUT) {
3874 xw.state &= ~WIN_FOCUSED;
3876 } else if(e->xclient.data.l[0] == xw.wmdeletewin) {
3877 /* Send SIGHUP to shell */
3884 cresize(int width, int height) {
3892 col = (xw.w - 2 * borderpx) / xw.cw;
3893 row = (xw.h - 2 * borderpx) / xw.ch;
3902 if(e->xconfigure.width == xw.w && e->xconfigure.height == xw.h)
3905 cresize(e->xconfigure.width, e->xconfigure.height);
3911 int w = xw.w, h = xw.h;
3913 int xfd = XConnectionNumber(xw.dpy), xev, blinkset = 0, dodraw = 0;
3914 struct timespec drawtimeout, *tv = NULL, now, last, lastblink;
3917 /* Waiting for window mapping */
3919 XNextEvent(xw.dpy, &ev);
3920 if(ev.type == ConfigureNotify) {
3921 w = ev.xconfigure.width;
3922 h = ev.xconfigure.height;
3924 } while(ev.type != MapNotify);
3929 clock_gettime(CLOCK_MONOTONIC, &last);
3932 for(xev = actionfps;;) {
3934 FD_SET(cmdfd, &rfd);
3937 if(pselect(MAX(xfd, cmdfd)+1, &rfd, NULL, NULL, tv, NULL) < 0) {
3940 die("select failed: %s\n", strerror(errno));
3942 if(FD_ISSET(cmdfd, &rfd)) {
3945 blinkset = tattrset(ATTR_BLINK);
3947 MODBIT(term.mode, 0, MODE_BLINK);
3951 if(FD_ISSET(xfd, &rfd))
3954 clock_gettime(CLOCK_MONOTONIC, &now);
3955 drawtimeout.tv_sec = 0;
3956 drawtimeout.tv_nsec = (1000 * 1E6)/ xfps;
3960 if(blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) {
3961 tsetdirtattr(ATTR_BLINK);
3962 term.mode ^= MODE_BLINK;
3966 deltatime = TIMEDIFF(now, last);
3967 if(deltatime > 1000 / (xev ? xfps : actionfps)) {
3973 while(XPending(xw.dpy)) {
3974 XNextEvent(xw.dpy, &ev);
3975 if(XFilterEvent(&ev, None))
3977 if(handler[ev.type])
3978 (handler[ev.type])(&ev);
3984 if(xev && !FD_ISSET(xfd, &rfd))
3986 if(!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd)) {
3988 if(TIMEDIFF(now, lastblink) \
3990 drawtimeout.tv_nsec = 1000;
3992 drawtimeout.tv_nsec = (1E6 * \
3997 drawtimeout.tv_sec = \
3998 drawtimeout.tv_nsec / 1E9;
3999 drawtimeout.tv_nsec %= (long)1E9;
4010 die("%s " VERSION " (c) 2010-2015 st engineers\n"
4011 "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
4012 " [-i] [-t title] [-w windowid] [-e command ...] [command ...]\n"
4013 " st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]\n"
4014 " [-i] [-t title] [-w windowid] [-l line] [stty_args ...]\n",
4019 main(int argc, char *argv[]) {
4020 uint cols = 80, rows = 24;
4028 allowaltscreen = false;
4031 opt_class = EARGF(usage());
4038 opt_font = EARGF(usage());
4041 xw.gm = XParseGeometry(EARGF(usage()),
4042 &xw.l, &xw.t, &cols, &rows);
4048 opt_io = EARGF(usage());
4051 opt_line = EARGF(usage());
4054 opt_title = EARGF(usage());
4057 opt_embed = EARGF(usage());
4066 /* eat all remaining arguments */
4068 if(!opt_title && !opt_line)
4069 opt_title = basename(xstrdup(argv[0]));
4071 setlocale(LC_CTYPE, "");
4072 XSetLocaleModifiers("");
4073 tnew(MAX(cols, 1), MAX(rows, 1));