]> git.armaanb.net Git - st.git/blob - x.c
Fix title initialization
[st.git] / x.c
1 /* See LICENSE for license details. */
2 #include <errno.h>
3 #include <math.h>
4 #include <limits.h>
5 #include <locale.h>
6 #include <signal.h>
7 #include <sys/select.h>
8 #include <time.h>
9 #include <unistd.h>
10 #include <libgen.h>
11 #include <X11/Xatom.h>
12 #include <X11/Xlib.h>
13 #include <X11/cursorfont.h>
14 #include <X11/keysym.h>
15 #include <X11/Xft/Xft.h>
16 #include <X11/XKBlib.h>
17
18 static char *argv0;
19 #include "arg.h"
20 #include "st.h"
21 #include "win.h"
22
23 /* types used in config.h */
24 typedef struct {
25         uint mod;
26         KeySym keysym;
27         void (*func)(const Arg *);
28         const Arg arg;
29 } Shortcut;
30
31 typedef struct {
32         uint b;
33         uint mask;
34         char *s;
35 } MouseShortcut;
36
37 typedef struct {
38         KeySym k;
39         uint mask;
40         char *s;
41         /* three-valued logic variables: 0 indifferent, 1 on, -1 off */
42         signed char appkey;    /* application keypad */
43         signed char appcursor; /* application cursor */
44 } Key;
45
46 /* X modifiers */
47 #define XK_ANY_MOD    UINT_MAX
48 #define XK_NO_MOD     0
49 #define XK_SWITCH_MOD (1<<13)
50
51 /* function definitions used in config.h */
52 static void clipcopy(const Arg *);
53 static void clippaste(const Arg *);
54 static void numlock(const Arg *);
55 static void selpaste(const Arg *);
56 static void zoom(const Arg *);
57 static void zoomabs(const Arg *);
58 static void zoomreset(const Arg *);
59
60 /* config.h for applying patches and the configuration. */
61 #include "config.h"
62
63 /* XEMBED messages */
64 #define XEMBED_FOCUS_IN  4
65 #define XEMBED_FOCUS_OUT 5
66
67 /* macros */
68 #define IS_SET(flag)            ((win.mode & (flag)) != 0)
69 #define TRUERED(x)              (((x) & 0xff0000) >> 8)
70 #define TRUEGREEN(x)            (((x) & 0xff00))
71 #define TRUEBLUE(x)             (((x) & 0xff) << 8)
72
73 typedef XftDraw *Draw;
74 typedef XftColor Color;
75 typedef XftGlyphFontSpec GlyphFontSpec;
76
77 /* Purely graphic info */
78 typedef struct {
79         int tw, th; /* tty width and height */
80         int w, h; /* window width and height */
81         int ch; /* char height */
82         int cw; /* char width  */
83         int mode; /* window state/mode flags */
84         int cursor; /* cursor style */
85 } TermWindow;
86
87 typedef struct {
88         Display *dpy;
89         Colormap cmap;
90         Window win;
91         Drawable buf;
92         GlyphFontSpec *specbuf; /* font spec buffer used for rendering */
93         Atom xembed, wmdeletewin, netwmname, netwmpid;
94         XIM xim;
95         XIC xic;
96         Draw draw;
97         Visual *vis;
98         XSetWindowAttributes attrs;
99         int scr;
100         int isfixed; /* is fixed geometry? */
101         int l, t; /* left and top offset */
102         int gm; /* geometry mask */
103 } XWindow;
104
105 typedef struct {
106         Atom xtarget;
107         char *primary, *clipboard;
108         struct timespec tclick1;
109         struct timespec tclick2;
110 } XSelection;
111
112 /* Font structure */
113 #define Font Font_
114 typedef struct {
115         int height;
116         int width;
117         int ascent;
118         int descent;
119         int badslant;
120         int badweight;
121         short lbearing;
122         short rbearing;
123         XftFont *match;
124         FcFontSet *set;
125         FcPattern *pattern;
126 } Font;
127
128 /* Drawing Context */
129 typedef struct {
130         Color *col;
131         size_t collen;
132         Font font, bfont, ifont, ibfont;
133         GC gc;
134 } DC;
135
136 static inline ushort sixd_to_16bit(int);
137 static int xmakeglyphfontspecs(XftGlyphFontSpec *, const Glyph *, int, int, int);
138 static void xdrawglyphfontspecs(const XftGlyphFontSpec *, Glyph, int, int, int);
139 static void xdrawglyph(Glyph, int, int);
140 static void xclear(int, int, int, int);
141 static int xgeommasktogravity(int);
142 static void xinit(int, int);
143 static void cresize(int, int);
144 static void xresize(int, int);
145 static void xhints(void);
146 static int xloadcolor(int, const char *, Color *);
147 static int xloadfont(Font *, FcPattern *);
148 static void xloadfonts(char *, double);
149 static void xunloadfont(Font *);
150 static void xunloadfonts(void);
151 static void xsetenv(void);
152 static void xseturgency(int);
153 static int evcol(XEvent *);
154 static int evrow(XEvent *);
155
156 static void expose(XEvent *);
157 static void visibility(XEvent *);
158 static void unmap(XEvent *);
159 static void kpress(XEvent *);
160 static void cmessage(XEvent *);
161 static void resize(XEvent *);
162 static void focus(XEvent *);
163 static void brelease(XEvent *);
164 static void bpress(XEvent *);
165 static void bmotion(XEvent *);
166 static void propnotify(XEvent *);
167 static void selnotify(XEvent *);
168 static void selclear_(XEvent *);
169 static void selrequest(XEvent *);
170 static void setsel(char *, Time);
171 static void mousesel(XEvent *, int);
172 static void mousereport(XEvent *);
173 static char *kmap(KeySym, uint);
174 static int match(uint, uint);
175
176 static void run(void);
177 static void usage(void);
178
179 static void (*handler[LASTEvent])(XEvent *) = {
180         [KeyPress] = kpress,
181         [ClientMessage] = cmessage,
182         [ConfigureNotify] = resize,
183         [VisibilityNotify] = visibility,
184         [UnmapNotify] = unmap,
185         [Expose] = expose,
186         [FocusIn] = focus,
187         [FocusOut] = focus,
188         [MotionNotify] = bmotion,
189         [ButtonPress] = bpress,
190         [ButtonRelease] = brelease,
191 /*
192  * Uncomment if you want the selection to disappear when you select something
193  * different in another window.
194  */
195 /*      [SelectionClear] = selclear_, */
196         [SelectionNotify] = selnotify,
197 /*
198  * PropertyNotify is only turned on when there is some INCR transfer happening
199  * for the selection retrieval.
200  */
201         [PropertyNotify] = propnotify,
202         [SelectionRequest] = selrequest,
203 };
204
205 /* Globals */
206 static DC dc;
207 static XWindow xw;
208 static XSelection xsel;
209 static TermWindow win;
210
211 /* Font Ring Cache */
212 enum {
213         FRC_NORMAL,
214         FRC_ITALIC,
215         FRC_BOLD,
216         FRC_ITALICBOLD
217 };
218
219 typedef struct {
220         XftFont *font;
221         int flags;
222         Rune unicodep;
223 } Fontcache;
224
225 /* Fontcache is an array now. A new font will be appended to the array. */
226 static Fontcache frc[16];
227 static int frclen = 0;
228 static char *usedfont = NULL;
229 static double usedfontsize = 0;
230 static double defaultfontsize = 0;
231
232 static char *opt_class = NULL;
233 static char **opt_cmd  = NULL;
234 static char *opt_embed = NULL;
235 static char *opt_font  = NULL;
236 static char *opt_io    = NULL;
237 static char *opt_line  = NULL;
238 static char *opt_name  = NULL;
239 static char *opt_title = NULL;
240
241 static int oldbutton = 3; /* button event on startup: 3 = release */
242
243 void
244 clipcopy(const Arg *dummy)
245 {
246         Atom clipboard;
247
248         if (xsel.clipboard != NULL)
249                 free(xsel.clipboard);
250
251         if (xsel.primary != NULL) {
252                 xsel.clipboard = xstrdup(xsel.primary);
253                 clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
254                 XSetSelectionOwner(xw.dpy, clipboard, xw.win, CurrentTime);
255         }
256 }
257
258 void
259 clippaste(const Arg *dummy)
260 {
261         Atom clipboard;
262
263         clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
264         XConvertSelection(xw.dpy, clipboard, xsel.xtarget, clipboard,
265                         xw.win, CurrentTime);
266 }
267
268 void
269 selpaste(const Arg *dummy)
270 {
271         XConvertSelection(xw.dpy, XA_PRIMARY, xsel.xtarget, XA_PRIMARY,
272                         xw.win, CurrentTime);
273 }
274
275 void
276 numlock(const Arg *dummy)
277 {
278         win.mode ^= MODE_NUMLOCK;
279 }
280
281 void
282 zoom(const Arg *arg)
283 {
284         Arg larg;
285
286         larg.f = usedfontsize + arg->f;
287         zoomabs(&larg);
288 }
289
290 void
291 zoomabs(const Arg *arg)
292 {
293         xunloadfonts();
294         xloadfonts(usedfont, arg->f);
295         cresize(0, 0);
296         redraw();
297         xhints();
298 }
299
300 void
301 zoomreset(const Arg *arg)
302 {
303         Arg larg;
304
305         if (defaultfontsize > 0) {
306                 larg.f = defaultfontsize;
307                 zoomabs(&larg);
308         }
309 }
310
311 int
312 evcol(XEvent *e)
313 {
314         int x = e->xbutton.x - borderpx;
315         LIMIT(x, 0, win.tw - 1);
316         return x / win.cw;
317 }
318
319 int
320 evrow(XEvent *e)
321 {
322         int y = e->xbutton.y - borderpx;
323         LIMIT(y, 0, win.th - 1);
324         return y / win.ch;
325 }
326
327 void
328 mousesel(XEvent *e, int done)
329 {
330         int type, seltype = SEL_REGULAR;
331         uint state = e->xbutton.state & ~(Button1Mask | forceselmod);
332
333         for (type = 1; type < LEN(selmasks); ++type) {
334                 if (match(selmasks[type], state)) {
335                         seltype = type;
336                         break;
337                 }
338         }
339         selextend(evcol(e), evrow(e), seltype, done);
340         if (done)
341                 setsel(getsel(), e->xbutton.time);
342 }
343
344 void
345 mousereport(XEvent *e)
346 {
347         int len, x = evcol(e), y = evrow(e),
348             button = e->xbutton.button, state = e->xbutton.state;
349         char buf[40];
350         static int ox, oy;
351
352         /* from urxvt */
353         if (e->xbutton.type == MotionNotify) {
354                 if (x == ox && y == oy)
355                         return;
356                 if (!IS_SET(MODE_MOUSEMOTION) && !IS_SET(MODE_MOUSEMANY))
357                         return;
358                 /* MOUSE_MOTION: no reporting if no button is pressed */
359                 if (IS_SET(MODE_MOUSEMOTION) && oldbutton == 3)
360                         return;
361
362                 button = oldbutton + 32;
363                 ox = x;
364                 oy = y;
365         } else {
366                 if (!IS_SET(MODE_MOUSESGR) && e->xbutton.type == ButtonRelease) {
367                         button = 3;
368                 } else {
369                         button -= Button1;
370                         if (button >= 3)
371                                 button += 64 - 3;
372                 }
373                 if (e->xbutton.type == ButtonPress) {
374                         oldbutton = button;
375                         ox = x;
376                         oy = y;
377                 } else if (e->xbutton.type == ButtonRelease) {
378                         oldbutton = 3;
379                         /* MODE_MOUSEX10: no button release reporting */
380                         if (IS_SET(MODE_MOUSEX10))
381                                 return;
382                         if (button == 64 || button == 65)
383                                 return;
384                 }
385         }
386
387         if (!IS_SET(MODE_MOUSEX10)) {
388                 button += ((state & ShiftMask  ) ? 4  : 0)
389                         + ((state & Mod4Mask   ) ? 8  : 0)
390                         + ((state & ControlMask) ? 16 : 0);
391         }
392
393         if (IS_SET(MODE_MOUSESGR)) {
394                 len = snprintf(buf, sizeof(buf), "\033[<%d;%d;%d%c",
395                                 button, x+1, y+1,
396                                 e->xbutton.type == ButtonRelease ? 'm' : 'M');
397         } else if (x < 223 && y < 223) {
398                 len = snprintf(buf, sizeof(buf), "\033[M%c%c%c",
399                                 32+button, 32+x+1, 32+y+1);
400         } else {
401                 return;
402         }
403
404         ttywrite(buf, len, 0);
405 }
406
407 void
408 bpress(XEvent *e)
409 {
410         struct timespec now;
411         MouseShortcut *ms;
412         int snap;
413
414         if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
415                 mousereport(e);
416                 return;
417         }
418
419         for (ms = mshortcuts; ms < mshortcuts + LEN(mshortcuts); ms++) {
420                 if (e->xbutton.button == ms->b
421                                 && match(ms->mask, e->xbutton.state)) {
422                         ttywrite(ms->s, strlen(ms->s), 1);
423                         return;
424                 }
425         }
426
427         if (e->xbutton.button == Button1) {
428                 /*
429                  * If the user clicks below predefined timeouts specific
430                  * snapping behaviour is exposed.
431                  */
432                 clock_gettime(CLOCK_MONOTONIC, &now);
433                 if (TIMEDIFF(now, xsel.tclick2) <= tripleclicktimeout) {
434                         snap = SNAP_LINE;
435                 } else if (TIMEDIFF(now, xsel.tclick1) <= doubleclicktimeout) {
436                         snap = SNAP_WORD;
437                 } else {
438                         snap = 0;
439                 }
440                 xsel.tclick2 = xsel.tclick1;
441                 xsel.tclick1 = now;
442
443                 selstart(evcol(e), evrow(e), snap);
444         }
445 }
446
447 void
448 propnotify(XEvent *e)
449 {
450         XPropertyEvent *xpev;
451         Atom clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
452
453         xpev = &e->xproperty;
454         if (xpev->state == PropertyNewValue &&
455                         (xpev->atom == XA_PRIMARY ||
456                          xpev->atom == clipboard)) {
457                 selnotify(e);
458         }
459 }
460
461 void
462 selnotify(XEvent *e)
463 {
464         ulong nitems, ofs, rem;
465         int format;
466         uchar *data, *last, *repl;
467         Atom type, incratom, property = None;
468
469         incratom = XInternAtom(xw.dpy, "INCR", 0);
470
471         ofs = 0;
472         if (e->type == SelectionNotify)
473                 property = e->xselection.property;
474         else if (e->type == PropertyNotify)
475                 property = e->xproperty.atom;
476
477         if (property == None)
478                 return;
479
480         do {
481                 if (XGetWindowProperty(xw.dpy, xw.win, property, ofs,
482                                         BUFSIZ/4, False, AnyPropertyType,
483                                         &type, &format, &nitems, &rem,
484                                         &data)) {
485                         fprintf(stderr, "Clipboard allocation failed\n");
486                         return;
487                 }
488
489                 if (e->type == PropertyNotify && nitems == 0 && rem == 0) {
490                         /*
491                          * If there is some PropertyNotify with no data, then
492                          * this is the signal of the selection owner that all
493                          * data has been transferred. We won't need to receive
494                          * PropertyNotify events anymore.
495                          */
496                         MODBIT(xw.attrs.event_mask, 0, PropertyChangeMask);
497                         XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask,
498                                         &xw.attrs);
499                 }
500
501                 if (type == incratom) {
502                         /*
503                          * Activate the PropertyNotify events so we receive
504                          * when the selection owner does send us the next
505                          * chunk of data.
506                          */
507                         MODBIT(xw.attrs.event_mask, 1, PropertyChangeMask);
508                         XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask,
509                                         &xw.attrs);
510
511                         /*
512                          * Deleting the property is the transfer start signal.
513                          */
514                         XDeleteProperty(xw.dpy, xw.win, (int)property);
515                         continue;
516                 }
517
518                 /*
519                  * As seen in getsel:
520                  * Line endings are inconsistent in the terminal and GUI world
521                  * copy and pasting. When receiving some selection data,
522                  * replace all '\n' with '\r'.
523                  * FIXME: Fix the computer world.
524                  */
525                 repl = data;
526                 last = data + nitems * format / 8;
527                 while ((repl = memchr(repl, '\n', last - repl))) {
528                         *repl++ = '\r';
529                 }
530
531                 if (IS_SET(MODE_BRCKTPASTE) && ofs == 0)
532                         ttywrite("\033[200~", 6, 0);
533                 ttywrite((char *)data, nitems * format / 8, 1);
534                 if (IS_SET(MODE_BRCKTPASTE) && rem == 0)
535                         ttywrite("\033[201~", 6, 0);
536                 XFree(data);
537                 /* number of 32-bit chunks returned */
538                 ofs += nitems * format / 32;
539         } while (rem > 0);
540
541         /*
542          * Deleting the property again tells the selection owner to send the
543          * next data chunk in the property.
544          */
545         XDeleteProperty(xw.dpy, xw.win, (int)property);
546 }
547
548 void
549 xclipcopy(void)
550 {
551         clipcopy(NULL);
552 }
553
554 void
555 selclear_(XEvent *e)
556 {
557         selclear();
558 }
559
560 void
561 selrequest(XEvent *e)
562 {
563         XSelectionRequestEvent *xsre;
564         XSelectionEvent xev;
565         Atom xa_targets, string, clipboard;
566         char *seltext;
567
568         xsre = (XSelectionRequestEvent *) e;
569         xev.type = SelectionNotify;
570         xev.requestor = xsre->requestor;
571         xev.selection = xsre->selection;
572         xev.target = xsre->target;
573         xev.time = xsre->time;
574         if (xsre->property == None)
575                 xsre->property = xsre->target;
576
577         /* reject */
578         xev.property = None;
579
580         xa_targets = XInternAtom(xw.dpy, "TARGETS", 0);
581         if (xsre->target == xa_targets) {
582                 /* respond with the supported type */
583                 string = xsel.xtarget;
584                 XChangeProperty(xsre->display, xsre->requestor, xsre->property,
585                                 XA_ATOM, 32, PropModeReplace,
586                                 (uchar *) &string, 1);
587                 xev.property = xsre->property;
588         } else if (xsre->target == xsel.xtarget || xsre->target == XA_STRING) {
589                 /*
590                  * xith XA_STRING non ascii characters may be incorrect in the
591                  * requestor. It is not our problem, use utf8.
592                  */
593                 clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
594                 if (xsre->selection == XA_PRIMARY) {
595                         seltext = xsel.primary;
596                 } else if (xsre->selection == clipboard) {
597                         seltext = xsel.clipboard;
598                 } else {
599                         fprintf(stderr,
600                                 "Unhandled clipboard selection 0x%lx\n",
601                                 xsre->selection);
602                         return;
603                 }
604                 if (seltext != NULL) {
605                         XChangeProperty(xsre->display, xsre->requestor,
606                                         xsre->property, xsre->target,
607                                         8, PropModeReplace,
608                                         (uchar *)seltext, strlen(seltext));
609                         xev.property = xsre->property;
610                 }
611         }
612
613         /* all done, send a notification to the listener */
614         if (!XSendEvent(xsre->display, xsre->requestor, 1, 0, (XEvent *) &xev))
615                 fprintf(stderr, "Error sending SelectionNotify event\n");
616 }
617
618 void
619 setsel(char *str, Time t)
620 {
621         free(xsel.primary);
622         xsel.primary = str;
623
624         XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
625         if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
626                 selclear();
627 }
628
629 void
630 xsetsel(char *str)
631 {
632         setsel(str, CurrentTime);
633 }
634
635 void
636 brelease(XEvent *e)
637 {
638         if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
639                 mousereport(e);
640                 return;
641         }
642
643         if (e->xbutton.button == Button2)
644                 selpaste(NULL);
645         else if (e->xbutton.button == Button1)
646                 mousesel(e, 1);
647 }
648
649 void
650 bmotion(XEvent *e)
651 {
652         if (IS_SET(MODE_MOUSE) && !(e->xbutton.state & forceselmod)) {
653                 mousereport(e);
654                 return;
655         }
656
657         mousesel(e, 0);
658 }
659
660 void
661 cresize(int width, int height)
662 {
663         int col, row;
664
665         if (width != 0)
666                 win.w = width;
667         if (height != 0)
668                 win.h = height;
669
670         col = (win.w - 2 * borderpx) / win.cw;
671         row = (win.h - 2 * borderpx) / win.ch;
672
673         tresize(col, row);
674         xresize(col, row);
675         ttyresize(win.tw, win.th);
676 }
677
678 void
679 xresize(int col, int row)
680 {
681         win.tw = MAX(1, col * win.cw);
682         win.th = MAX(1, row * win.ch);
683
684         XFreePixmap(xw.dpy, xw.buf);
685         xw.buf = XCreatePixmap(xw.dpy, xw.win, win.w, win.h,
686                         DefaultDepth(xw.dpy, xw.scr));
687         XftDrawChange(xw.draw, xw.buf);
688         xclear(0, 0, win.w, win.h);
689
690         /* resize to new width */
691         xw.specbuf = xrealloc(xw.specbuf, col * sizeof(GlyphFontSpec));
692 }
693
694 ushort
695 sixd_to_16bit(int x)
696 {
697         return x == 0 ? 0 : 0x3737 + 0x2828 * x;
698 }
699
700 int
701 xloadcolor(int i, const char *name, Color *ncolor)
702 {
703         XRenderColor color = { .alpha = 0xffff };
704
705         if (!name) {
706                 if (BETWEEN(i, 16, 255)) { /* 256 color */
707                         if (i < 6*6*6+16) { /* same colors as xterm */
708                                 color.red   = sixd_to_16bit( ((i-16)/36)%6 );
709                                 color.green = sixd_to_16bit( ((i-16)/6) %6 );
710                                 color.blue  = sixd_to_16bit( ((i-16)/1) %6 );
711                         } else { /* greyscale */
712                                 color.red = 0x0808 + 0x0a0a * (i - (6*6*6+16));
713                                 color.green = color.blue = color.red;
714                         }
715                         return XftColorAllocValue(xw.dpy, xw.vis,
716                                                   xw.cmap, &color, ncolor);
717                 } else
718                         name = colorname[i];
719         }
720
721         return XftColorAllocName(xw.dpy, xw.vis, xw.cmap, name, ncolor);
722 }
723
724 void
725 xloadcols(void)
726 {
727         int i;
728         static int loaded;
729         Color *cp;
730
731         dc.collen = MAX(LEN(colorname), 256);
732         dc.col = xmalloc(dc.collen * sizeof(Color));
733
734         if (loaded) {
735                 for (cp = dc.col; cp < &dc.col[dc.collen]; ++cp)
736                         XftColorFree(xw.dpy, xw.vis, xw.cmap, cp);
737         }
738
739         for (i = 0; i < dc.collen; i++)
740                 if (!xloadcolor(i, NULL, &dc.col[i])) {
741                         if (colorname[i])
742                                 die("Could not allocate color '%s'\n", colorname[i]);
743                         else
744                                 die("Could not allocate color %d\n", i);
745                 }
746         loaded = 1;
747 }
748
749 int
750 xsetcolorname(int x, const char *name)
751 {
752         Color ncolor;
753
754         if (!BETWEEN(x, 0, dc.collen))
755                 return 1;
756
757
758         if (!xloadcolor(x, name, &ncolor))
759                 return 1;
760
761         XftColorFree(xw.dpy, xw.vis, xw.cmap, &dc.col[x]);
762         dc.col[x] = ncolor;
763
764         return 0;
765 }
766
767 /*
768  * Absolute coordinates.
769  */
770 void
771 xclear(int x1, int y1, int x2, int y2)
772 {
773         XftDrawRect(xw.draw,
774                         &dc.col[IS_SET(MODE_REVERSE)? defaultfg : defaultbg],
775                         x1, y1, x2-x1, y2-y1);
776 }
777
778 void
779 xhints(void)
780 {
781         XClassHint class = {opt_name ? opt_name : termname,
782                             opt_class ? opt_class : termname};
783         XWMHints wm = {.flags = InputHint, .input = 1};
784         XSizeHints *sizeh;
785
786         sizeh = XAllocSizeHints();
787
788         sizeh->flags = PSize | PResizeInc | PBaseSize;
789         sizeh->height = win.h;
790         sizeh->width = win.w;
791         sizeh->height_inc = win.ch;
792         sizeh->width_inc = win.cw;
793         sizeh->base_height = 2 * borderpx;
794         sizeh->base_width = 2 * borderpx;
795         if (xw.isfixed) {
796                 sizeh->flags |= PMaxSize | PMinSize;
797                 sizeh->min_width = sizeh->max_width = win.w;
798                 sizeh->min_height = sizeh->max_height = win.h;
799         }
800         if (xw.gm & (XValue|YValue)) {
801                 sizeh->flags |= USPosition | PWinGravity;
802                 sizeh->x = xw.l;
803                 sizeh->y = xw.t;
804                 sizeh->win_gravity = xgeommasktogravity(xw.gm);
805         }
806
807         XSetWMProperties(xw.dpy, xw.win, NULL, NULL, NULL, 0, sizeh, &wm,
808                         &class);
809         XFree(sizeh);
810 }
811
812 int
813 xgeommasktogravity(int mask)
814 {
815         switch (mask & (XNegative|YNegative)) {
816         case 0:
817                 return NorthWestGravity;
818         case XNegative:
819                 return NorthEastGravity;
820         case YNegative:
821                 return SouthWestGravity;
822         }
823
824         return SouthEastGravity;
825 }
826
827 int
828 xloadfont(Font *f, FcPattern *pattern)
829 {
830         FcPattern *configured;
831         FcPattern *match;
832         FcResult result;
833         XGlyphInfo extents;
834         int wantattr, haveattr;
835
836         /*
837          * Manually configure instead of calling XftMatchFont
838          * so that we can use the configured pattern for
839          * "missing glyph" lookups.
840          */
841         configured = FcPatternDuplicate(pattern);
842         if (!configured)
843                 return 1;
844
845         FcConfigSubstitute(NULL, configured, FcMatchPattern);
846         XftDefaultSubstitute(xw.dpy, xw.scr, configured);
847
848         match = FcFontMatch(NULL, configured, &result);
849         if (!match) {
850                 FcPatternDestroy(configured);
851                 return 1;
852         }
853
854         if (!(f->match = XftFontOpenPattern(xw.dpy, match))) {
855                 FcPatternDestroy(configured);
856                 FcPatternDestroy(match);
857                 return 1;
858         }
859
860         if ((XftPatternGetInteger(pattern, "slant", 0, &wantattr) ==
861             XftResultMatch)) {
862                 /*
863                  * Check if xft was unable to find a font with the appropriate
864                  * slant but gave us one anyway. Try to mitigate.
865                  */
866                 if ((XftPatternGetInteger(f->match->pattern, "slant", 0,
867                     &haveattr) != XftResultMatch) || haveattr < wantattr) {
868                         f->badslant = 1;
869                         fputs("st: font slant does not match\n", stderr);
870                 }
871         }
872
873         if ((XftPatternGetInteger(pattern, "weight", 0, &wantattr) ==
874             XftResultMatch)) {
875                 if ((XftPatternGetInteger(f->match->pattern, "weight", 0,
876                     &haveattr) != XftResultMatch) || haveattr != wantattr) {
877                         f->badweight = 1;
878                         fputs("st: font weight does not match\n", stderr);
879                 }
880         }
881
882         XftTextExtentsUtf8(xw.dpy, f->match,
883                 (const FcChar8 *) ascii_printable,
884                 strlen(ascii_printable), &extents);
885
886         f->set = NULL;
887         f->pattern = configured;
888
889         f->ascent = f->match->ascent;
890         f->descent = f->match->descent;
891         f->lbearing = 0;
892         f->rbearing = f->match->max_advance_width;
893
894         f->height = f->ascent + f->descent;
895         f->width = DIVCEIL(extents.xOff, strlen(ascii_printable));
896
897         return 0;
898 }
899
900 void
901 xloadfonts(char *fontstr, double fontsize)
902 {
903         FcPattern *pattern;
904         double fontval;
905
906         if (fontstr[0] == '-') {
907                 pattern = XftXlfdParse(fontstr, False, False);
908         } else {
909                 pattern = FcNameParse((FcChar8 *)fontstr);
910         }
911
912         if (!pattern)
913                 die("st: can't open font %s\n", fontstr);
914
915         if (fontsize > 1) {
916                 FcPatternDel(pattern, FC_PIXEL_SIZE);
917                 FcPatternDel(pattern, FC_SIZE);
918                 FcPatternAddDouble(pattern, FC_PIXEL_SIZE, (double)fontsize);
919                 usedfontsize = fontsize;
920         } else {
921                 if (FcPatternGetDouble(pattern, FC_PIXEL_SIZE, 0, &fontval) ==
922                                 FcResultMatch) {
923                         usedfontsize = fontval;
924                 } else if (FcPatternGetDouble(pattern, FC_SIZE, 0, &fontval) ==
925                                 FcResultMatch) {
926                         usedfontsize = -1;
927                 } else {
928                         /*
929                          * Default font size is 12, if none given. This is to
930                          * have a known usedfontsize value.
931                          */
932                         FcPatternAddDouble(pattern, FC_PIXEL_SIZE, 12);
933                         usedfontsize = 12;
934                 }
935                 defaultfontsize = usedfontsize;
936         }
937
938         if (xloadfont(&dc.font, pattern))
939                 die("st: can't open font %s\n", fontstr);
940
941         if (usedfontsize < 0) {
942                 FcPatternGetDouble(dc.font.match->pattern,
943                                    FC_PIXEL_SIZE, 0, &fontval);
944                 usedfontsize = fontval;
945                 if (fontsize == 0)
946                         defaultfontsize = fontval;
947         }
948
949         /* Setting character width and height. */
950         win.cw = ceilf(dc.font.width * cwscale);
951         win.ch = ceilf(dc.font.height * chscale);
952
953         FcPatternDel(pattern, FC_SLANT);
954         FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC);
955         if (xloadfont(&dc.ifont, pattern))
956                 die("st: can't open font %s\n", fontstr);
957
958         FcPatternDel(pattern, FC_WEIGHT);
959         FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_BOLD);
960         if (xloadfont(&dc.ibfont, pattern))
961                 die("st: can't open font %s\n", fontstr);
962
963         FcPatternDel(pattern, FC_SLANT);
964         FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN);
965         if (xloadfont(&dc.bfont, pattern))
966                 die("st: can't open font %s\n", fontstr);
967
968         FcPatternDestroy(pattern);
969 }
970
971 void
972 xunloadfont(Font *f)
973 {
974         XftFontClose(xw.dpy, f->match);
975         FcPatternDestroy(f->pattern);
976         if (f->set)
977                 FcFontSetDestroy(f->set);
978 }
979
980 void
981 xunloadfonts(void)
982 {
983         /* Free the loaded fonts in the font cache.  */
984         while (frclen > 0)
985                 XftFontClose(xw.dpy, frc[--frclen].font);
986
987         xunloadfont(&dc.font);
988         xunloadfont(&dc.bfont);
989         xunloadfont(&dc.ifont);
990         xunloadfont(&dc.ibfont);
991 }
992
993 void
994 xinit(int cols, int rows)
995 {
996         XGCValues gcvalues;
997         Cursor cursor;
998         Window parent;
999         pid_t thispid = getpid();
1000         XColor xmousefg, xmousebg;
1001
1002         if (!(xw.dpy = XOpenDisplay(NULL)))
1003                 die("Can't open display\n");
1004         xw.scr = XDefaultScreen(xw.dpy);
1005         xw.vis = XDefaultVisual(xw.dpy, xw.scr);
1006
1007         /* font */
1008         if (!FcInit())
1009                 die("Could not init fontconfig.\n");
1010
1011         usedfont = (opt_font == NULL)? font : opt_font;
1012         xloadfonts(usedfont, 0);
1013
1014         /* colors */
1015         xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
1016         xloadcols();
1017
1018         /* adjust fixed window geometry */
1019         win.w = 2 * borderpx + cols * win.cw;
1020         win.h = 2 * borderpx + rows * win.ch;
1021         if (xw.gm & XNegative)
1022                 xw.l += DisplayWidth(xw.dpy, xw.scr) - win.w - 2;
1023         if (xw.gm & YNegative)
1024                 xw.t += DisplayHeight(xw.dpy, xw.scr) - win.h - 2;
1025
1026         /* Events */
1027         xw.attrs.background_pixel = dc.col[defaultbg].pixel;
1028         xw.attrs.border_pixel = dc.col[defaultbg].pixel;
1029         xw.attrs.bit_gravity = NorthWestGravity;
1030         xw.attrs.event_mask = FocusChangeMask | KeyPressMask
1031                 | ExposureMask | VisibilityChangeMask | StructureNotifyMask
1032                 | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
1033         xw.attrs.colormap = xw.cmap;
1034
1035         if (!(opt_embed && (parent = strtol(opt_embed, NULL, 0))))
1036                 parent = XRootWindow(xw.dpy, xw.scr);
1037         xw.win = XCreateWindow(xw.dpy, parent, xw.l, xw.t,
1038                         win.w, win.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,
1039                         xw.vis, CWBackPixel | CWBorderPixel | CWBitGravity
1040                         | CWEventMask | CWColormap, &xw.attrs);
1041
1042         memset(&gcvalues, 0, sizeof(gcvalues));
1043         gcvalues.graphics_exposures = False;
1044         dc.gc = XCreateGC(xw.dpy, parent, GCGraphicsExposures,
1045                         &gcvalues);
1046         xw.buf = XCreatePixmap(xw.dpy, xw.win, win.w, win.h,
1047                         DefaultDepth(xw.dpy, xw.scr));
1048         XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
1049         XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, win.w, win.h);
1050
1051         /* font spec buffer */
1052         xw.specbuf = xmalloc(cols * sizeof(GlyphFontSpec));
1053
1054         /* Xft rendering context */
1055         xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
1056
1057         /* input methods */
1058         if ((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
1059                 XSetLocaleModifiers("@im=local");
1060                 if ((xw.xim =  XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
1061                         XSetLocaleModifiers("@im=");
1062                         if ((xw.xim = XOpenIM(xw.dpy,
1063                                         NULL, NULL, NULL)) == NULL) {
1064                                 die("XOpenIM failed. Could not open input"
1065                                         " device.\n");
1066                         }
1067                 }
1068         }
1069         xw.xic = XCreateIC(xw.xim, XNInputStyle, XIMPreeditNothing
1070                                            | XIMStatusNothing, XNClientWindow, xw.win,
1071                                            XNFocusWindow, xw.win, NULL);
1072         if (xw.xic == NULL)
1073                 die("XCreateIC failed. Could not obtain input method.\n");
1074
1075         /* white cursor, black outline */
1076         cursor = XCreateFontCursor(xw.dpy, mouseshape);
1077         XDefineCursor(xw.dpy, xw.win, cursor);
1078
1079         if (XParseColor(xw.dpy, xw.cmap, colorname[mousefg], &xmousefg) == 0) {
1080                 xmousefg.red   = 0xffff;
1081                 xmousefg.green = 0xffff;
1082                 xmousefg.blue  = 0xffff;
1083         }
1084
1085         if (XParseColor(xw.dpy, xw.cmap, colorname[mousebg], &xmousebg) == 0) {
1086                 xmousebg.red   = 0x0000;
1087                 xmousebg.green = 0x0000;
1088                 xmousebg.blue  = 0x0000;
1089         }
1090
1091         XRecolorCursor(xw.dpy, cursor, &xmousefg, &xmousebg);
1092
1093         xw.xembed = XInternAtom(xw.dpy, "_XEMBED", False);
1094         xw.wmdeletewin = XInternAtom(xw.dpy, "WM_DELETE_WINDOW", False);
1095         xw.netwmname = XInternAtom(xw.dpy, "_NET_WM_NAME", False);
1096         XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
1097
1098         xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
1099         XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
1100                         PropModeReplace, (uchar *)&thispid, 1);
1101
1102         win.mode = MODE_NUMLOCK;
1103         resettitle();
1104         XMapWindow(xw.dpy, xw.win);
1105         xhints();
1106         XSync(xw.dpy, False);
1107
1108         clock_gettime(CLOCK_MONOTONIC, &xsel.tclick1);
1109         clock_gettime(CLOCK_MONOTONIC, &xsel.tclick2);
1110         xsel.primary = NULL;
1111         xsel.clipboard = NULL;
1112         xsel.xtarget = XInternAtom(xw.dpy, "UTF8_STRING", 0);
1113         if (xsel.xtarget == None)
1114                 xsel.xtarget = XA_STRING;
1115 }
1116
1117 int
1118 xmakeglyphfontspecs(XftGlyphFontSpec *specs, const Glyph *glyphs, int len, int x, int y)
1119 {
1120         float winx = borderpx + x * win.cw, winy = borderpx + y * win.ch, xp, yp;
1121         ushort mode, prevmode = USHRT_MAX;
1122         Font *font = &dc.font;
1123         int frcflags = FRC_NORMAL;
1124         float runewidth = win.cw;
1125         Rune rune;
1126         FT_UInt glyphidx;
1127         FcResult fcres;
1128         FcPattern *fcpattern, *fontpattern;
1129         FcFontSet *fcsets[] = { NULL };
1130         FcCharSet *fccharset;
1131         int i, f, numspecs = 0;
1132
1133         for (i = 0, xp = winx, yp = winy + font->ascent; i < len; ++i) {
1134                 /* Fetch rune and mode for current glyph. */
1135                 rune = glyphs[i].u;
1136                 mode = glyphs[i].mode;
1137
1138                 /* Skip dummy wide-character spacing. */
1139                 if (mode == ATTR_WDUMMY)
1140                         continue;
1141
1142                 /* Determine font for glyph if different from previous glyph. */
1143                 if (prevmode != mode) {
1144                         prevmode = mode;
1145                         font = &dc.font;
1146                         frcflags = FRC_NORMAL;
1147                         runewidth = win.cw * ((mode & ATTR_WIDE) ? 2.0f : 1.0f);
1148                         if ((mode & ATTR_ITALIC) && (mode & ATTR_BOLD)) {
1149                                 font = &dc.ibfont;
1150                                 frcflags = FRC_ITALICBOLD;
1151                         } else if (mode & ATTR_ITALIC) {
1152                                 font = &dc.ifont;
1153                                 frcflags = FRC_ITALIC;
1154                         } else if (mode & ATTR_BOLD) {
1155                                 font = &dc.bfont;
1156                                 frcflags = FRC_BOLD;
1157                         }
1158                         yp = winy + font->ascent;
1159                 }
1160
1161                 /* Lookup character index with default font. */
1162                 glyphidx = XftCharIndex(xw.dpy, font->match, rune);
1163                 if (glyphidx) {
1164                         specs[numspecs].font = font->match;
1165                         specs[numspecs].glyph = glyphidx;
1166                         specs[numspecs].x = (short)xp;
1167                         specs[numspecs].y = (short)yp;
1168                         xp += runewidth;
1169                         numspecs++;
1170                         continue;
1171                 }
1172
1173                 /* Fallback on font cache, search the font cache for match. */
1174                 for (f = 0; f < frclen; f++) {
1175                         glyphidx = XftCharIndex(xw.dpy, frc[f].font, rune);
1176                         /* Everything correct. */
1177                         if (glyphidx && frc[f].flags == frcflags)
1178                                 break;
1179                         /* We got a default font for a not found glyph. */
1180                         if (!glyphidx && frc[f].flags == frcflags
1181                                         && frc[f].unicodep == rune) {
1182                                 break;
1183                         }
1184                 }
1185
1186                 /* Nothing was found. Use fontconfig to find matching font. */
1187                 if (f >= frclen) {
1188                         if (!font->set)
1189                                 font->set = FcFontSort(0, font->pattern,
1190                                                        1, 0, &fcres);
1191                         fcsets[0] = font->set;
1192
1193                         /*
1194                          * Nothing was found in the cache. Now use
1195                          * some dozen of Fontconfig calls to get the
1196                          * font for one single character.
1197                          *
1198                          * Xft and fontconfig are design failures.
1199                          */
1200                         fcpattern = FcPatternDuplicate(font->pattern);
1201                         fccharset = FcCharSetCreate();
1202
1203                         FcCharSetAddChar(fccharset, rune);
1204                         FcPatternAddCharSet(fcpattern, FC_CHARSET,
1205                                         fccharset);
1206                         FcPatternAddBool(fcpattern, FC_SCALABLE, 1);
1207
1208                         FcConfigSubstitute(0, fcpattern,
1209                                         FcMatchPattern);
1210                         FcDefaultSubstitute(fcpattern);
1211
1212                         fontpattern = FcFontSetMatch(0, fcsets, 1,
1213                                         fcpattern, &fcres);
1214
1215                         /*
1216                          * Overwrite or create the new cache entry.
1217                          */
1218                         if (frclen >= LEN(frc)) {
1219                                 frclen = LEN(frc) - 1;
1220                                 XftFontClose(xw.dpy, frc[frclen].font);
1221                                 frc[frclen].unicodep = 0;
1222                         }
1223
1224                         frc[frclen].font = XftFontOpenPattern(xw.dpy,
1225                                         fontpattern);
1226                         if (!frc[frclen].font)
1227                                 die("XftFontOpenPattern failed seeking fallback font: %s\n",
1228                                         strerror(errno));
1229                         frc[frclen].flags = frcflags;
1230                         frc[frclen].unicodep = rune;
1231
1232                         glyphidx = XftCharIndex(xw.dpy, frc[frclen].font, rune);
1233
1234                         f = frclen;
1235                         frclen++;
1236
1237                         FcPatternDestroy(fcpattern);
1238                         FcCharSetDestroy(fccharset);
1239                 }
1240
1241                 specs[numspecs].font = frc[f].font;
1242                 specs[numspecs].glyph = glyphidx;
1243                 specs[numspecs].x = (short)xp;
1244                 specs[numspecs].y = (short)yp;
1245                 xp += runewidth;
1246                 numspecs++;
1247         }
1248
1249         return numspecs;
1250 }
1251
1252 void
1253 xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, int y)
1254 {
1255         int charlen = len * ((base.mode & ATTR_WIDE) ? 2 : 1);
1256         int winx = borderpx + x * win.cw, winy = borderpx + y * win.ch,
1257             width = charlen * win.cw;
1258         Color *fg, *bg, *temp, revfg, revbg, truefg, truebg;
1259         XRenderColor colfg, colbg;
1260         XRectangle r;
1261
1262         /* Fallback on color display for attributes not supported by the font */
1263         if (base.mode & ATTR_ITALIC && base.mode & ATTR_BOLD) {
1264                 if (dc.ibfont.badslant || dc.ibfont.badweight)
1265                         base.fg = defaultattr;
1266         } else if ((base.mode & ATTR_ITALIC && dc.ifont.badslant) ||
1267             (base.mode & ATTR_BOLD && dc.bfont.badweight)) {
1268                 base.fg = defaultattr;
1269         }
1270
1271         if (IS_TRUECOL(base.fg)) {
1272                 colfg.alpha = 0xffff;
1273                 colfg.red = TRUERED(base.fg);
1274                 colfg.green = TRUEGREEN(base.fg);
1275                 colfg.blue = TRUEBLUE(base.fg);
1276                 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &truefg);
1277                 fg = &truefg;
1278         } else {
1279                 fg = &dc.col[base.fg];
1280         }
1281
1282         if (IS_TRUECOL(base.bg)) {
1283                 colbg.alpha = 0xffff;
1284                 colbg.green = TRUEGREEN(base.bg);
1285                 colbg.red = TRUERED(base.bg);
1286                 colbg.blue = TRUEBLUE(base.bg);
1287                 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &truebg);
1288                 bg = &truebg;
1289         } else {
1290                 bg = &dc.col[base.bg];
1291         }
1292
1293         /* Change basic system colors [0-7] to bright system colors [8-15] */
1294         if ((base.mode & ATTR_BOLD_FAINT) == ATTR_BOLD && BETWEEN(base.fg, 0, 7))
1295                 fg = &dc.col[base.fg + 8];
1296
1297         if (IS_SET(MODE_REVERSE)) {
1298                 if (fg == &dc.col[defaultfg]) {
1299                         fg = &dc.col[defaultbg];
1300                 } else {
1301                         colfg.red = ~fg->color.red;
1302                         colfg.green = ~fg->color.green;
1303                         colfg.blue = ~fg->color.blue;
1304                         colfg.alpha = fg->color.alpha;
1305                         XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg,
1306                                         &revfg);
1307                         fg = &revfg;
1308                 }
1309
1310                 if (bg == &dc.col[defaultbg]) {
1311                         bg = &dc.col[defaultfg];
1312                 } else {
1313                         colbg.red = ~bg->color.red;
1314                         colbg.green = ~bg->color.green;
1315                         colbg.blue = ~bg->color.blue;
1316                         colbg.alpha = bg->color.alpha;
1317                         XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg,
1318                                         &revbg);
1319                         bg = &revbg;
1320                 }
1321         }
1322
1323         if ((base.mode & ATTR_BOLD_FAINT) == ATTR_FAINT) {
1324                 colfg.red = fg->color.red / 2;
1325                 colfg.green = fg->color.green / 2;
1326                 colfg.blue = fg->color.blue / 2;
1327                 colfg.alpha = fg->color.alpha;
1328                 XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &revfg);
1329                 fg = &revfg;
1330         }
1331
1332         if (base.mode & ATTR_REVERSE) {
1333                 temp = fg;
1334                 fg = bg;
1335                 bg = temp;
1336         }
1337
1338         if (base.mode & ATTR_BLINK && win.mode & MODE_BLINK)
1339                 fg = bg;
1340
1341         if (base.mode & ATTR_INVISIBLE)
1342                 fg = bg;
1343
1344         /* Intelligent cleaning up of the borders. */
1345         if (x == 0) {
1346                 xclear(0, (y == 0)? 0 : winy, borderpx,
1347                         winy + win.ch +
1348                         ((winy + win.ch >= borderpx + win.th)? win.h : 0));
1349         }
1350         if (winx + width >= borderpx + win.tw) {
1351                 xclear(winx + width, (y == 0)? 0 : winy, win.w,
1352                         ((winy + win.ch >= borderpx + win.th)? win.h : (winy + win.ch)));
1353         }
1354         if (y == 0)
1355                 xclear(winx, 0, winx + width, borderpx);
1356         if (winy + win.ch >= borderpx + win.th)
1357                 xclear(winx, winy + win.ch, winx + width, win.h);
1358
1359         /* Clean up the region we want to draw to. */
1360         XftDrawRect(xw.draw, bg, winx, winy, width, win.ch);
1361
1362         /* Set the clip region because Xft is sometimes dirty. */
1363         r.x = 0;
1364         r.y = 0;
1365         r.height = win.ch;
1366         r.width = width;
1367         XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
1368
1369         /* Render the glyphs. */
1370         XftDrawGlyphFontSpec(xw.draw, fg, specs, len);
1371
1372         /* Render underline and strikethrough. */
1373         if (base.mode & ATTR_UNDERLINE) {
1374                 XftDrawRect(xw.draw, fg, winx, winy + dc.font.ascent + 1,
1375                                 width, 1);
1376         }
1377
1378         if (base.mode & ATTR_STRUCK) {
1379                 XftDrawRect(xw.draw, fg, winx, winy + 2 * dc.font.ascent / 3,
1380                                 width, 1);
1381         }
1382
1383         /* Reset clip to none. */
1384         XftDrawSetClip(xw.draw, 0);
1385 }
1386
1387 void
1388 xdrawglyph(Glyph g, int x, int y)
1389 {
1390         int numspecs;
1391         XftGlyphFontSpec spec;
1392
1393         numspecs = xmakeglyphfontspecs(&spec, &g, 1, x, y);
1394         xdrawglyphfontspecs(&spec, g, numspecs, x, y);
1395 }
1396
1397 void
1398 xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og)
1399 {
1400         Color drawcol;
1401
1402         /* remove the old cursor */
1403         if (selected(ox, oy))
1404                 og.mode ^= ATTR_REVERSE;
1405         xdrawglyph(og, ox, oy);
1406
1407         if (IS_SET(MODE_HIDE))
1408                 return;
1409
1410         /*
1411          * Select the right color for the right mode.
1412          */
1413         g.mode &= ATTR_BOLD|ATTR_ITALIC|ATTR_UNDERLINE|ATTR_STRUCK|ATTR_WIDE;
1414
1415         if (IS_SET(MODE_REVERSE)) {
1416                 g.mode |= ATTR_REVERSE;
1417                 g.bg = defaultfg;
1418                 if (selected(cx, cy)) {
1419                         drawcol = dc.col[defaultcs];
1420                         g.fg = defaultrcs;
1421                 } else {
1422                         drawcol = dc.col[defaultrcs];
1423                         g.fg = defaultcs;
1424                 }
1425         } else {
1426                 if (selected(cx, cy)) {
1427                         g.fg = defaultfg;
1428                         g.bg = defaultrcs;
1429                 } else {
1430                         g.fg = defaultbg;
1431                         g.bg = defaultcs;
1432                 }
1433                 drawcol = dc.col[g.bg];
1434         }
1435
1436         /* draw the new one */
1437         if (IS_SET(MODE_FOCUSED)) {
1438                 switch (win.cursor) {
1439                 case 7: /* st extension: snowman (U+2603) */
1440                         g.u = 0x2603;
1441                 case 0: /* Blinking Block */
1442                 case 1: /* Blinking Block (Default) */
1443                 case 2: /* Steady Block */
1444                         xdrawglyph(g, cx, cy);
1445                         break;
1446                 case 3: /* Blinking Underline */
1447                 case 4: /* Steady Underline */
1448                         XftDrawRect(xw.draw, &drawcol,
1449                                         borderpx + cx * win.cw,
1450                                         borderpx + (cy + 1) * win.ch - \
1451                                                 cursorthickness,
1452                                         win.cw, cursorthickness);
1453                         break;
1454                 case 5: /* Blinking bar */
1455                 case 6: /* Steady bar */
1456                         XftDrawRect(xw.draw, &drawcol,
1457                                         borderpx + cx * win.cw,
1458                                         borderpx + cy * win.ch,
1459                                         cursorthickness, win.ch);
1460                         break;
1461                 }
1462         } else {
1463                 XftDrawRect(xw.draw, &drawcol,
1464                                 borderpx + cx * win.cw,
1465                                 borderpx + cy * win.ch,
1466                                 win.cw - 1, 1);
1467                 XftDrawRect(xw.draw, &drawcol,
1468                                 borderpx + cx * win.cw,
1469                                 borderpx + cy * win.ch,
1470                                 1, win.ch - 1);
1471                 XftDrawRect(xw.draw, &drawcol,
1472                                 borderpx + (cx + 1) * win.cw - 1,
1473                                 borderpx + cy * win.ch,
1474                                 1, win.ch - 1);
1475                 XftDrawRect(xw.draw, &drawcol,
1476                                 borderpx + cx * win.cw,
1477                                 borderpx + (cy + 1) * win.ch - 1,
1478                                 win.cw, 1);
1479         }
1480 }
1481
1482 void
1483 xsetenv(void)
1484 {
1485         char buf[sizeof(long) * 8 + 1];
1486
1487         snprintf(buf, sizeof(buf), "%lu", xw.win);
1488         setenv("WINDOWID", buf, 1);
1489 }
1490
1491 void
1492 xsettitle(char *p)
1493 {
1494         XTextProperty prop;
1495         DEFAULT(p, opt_title);
1496
1497         Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
1498                         &prop);
1499         XSetWMName(xw.dpy, xw.win, &prop);
1500         XSetTextProperty(xw.dpy, xw.win, &prop, xw.netwmname);
1501         XFree(prop.value);
1502 }
1503
1504 int
1505 xstartdraw(void)
1506 {
1507         return IS_SET(MODE_VISIBLE);
1508 }
1509
1510 void
1511 xdrawline(Line line, int x1, int y1, int x2)
1512 {
1513         int i, x, ox, numspecs;
1514         Glyph base, new;
1515         XftGlyphFontSpec *specs = xw.specbuf;
1516
1517         numspecs = xmakeglyphfontspecs(specs, &line[x1], x2 - x1, x1, y1);
1518         i = ox = 0;
1519         for (x = x1; x < x2 && i < numspecs; x++) {
1520                 new = line[x];
1521                 if (new.mode == ATTR_WDUMMY)
1522                         continue;
1523                 if (selected(x, y1))
1524                         new.mode ^= ATTR_REVERSE;
1525                 if (i > 0 && ATTRCMP(base, new)) {
1526                         xdrawglyphfontspecs(specs, base, i, ox, y1);
1527                         specs += i;
1528                         numspecs -= i;
1529                         i = 0;
1530                 }
1531                 if (i == 0) {
1532                         ox = x;
1533                         base = new;
1534                 }
1535                 i++;
1536         }
1537         if (i > 0)
1538                 xdrawglyphfontspecs(specs, base, i, ox, y1);
1539 }
1540
1541 void
1542 xfinishdraw(void)
1543 {
1544         XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, win.w,
1545                         win.h, 0, 0);
1546         XSetForeground(xw.dpy, dc.gc,
1547                         dc.col[IS_SET(MODE_REVERSE)?
1548                                 defaultfg : defaultbg].pixel);
1549 }
1550
1551 void
1552 expose(XEvent *ev)
1553 {
1554         redraw();
1555 }
1556
1557 void
1558 visibility(XEvent *ev)
1559 {
1560         XVisibilityEvent *e = &ev->xvisibility;
1561
1562         MODBIT(win.mode, e->state != VisibilityFullyObscured, MODE_VISIBLE);
1563 }
1564
1565 void
1566 unmap(XEvent *ev)
1567 {
1568         win.mode &= ~MODE_VISIBLE;
1569 }
1570
1571 void
1572 xsetpointermotion(int set)
1573 {
1574         MODBIT(xw.attrs.event_mask, set, PointerMotionMask);
1575         XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask, &xw.attrs);
1576 }
1577
1578 void
1579 xsetmode(int set, unsigned int flags)
1580 {
1581         int mode = win.mode;
1582         MODBIT(win.mode, set, flags);
1583         if ((win.mode & MODE_REVERSE) != (mode & MODE_REVERSE))
1584                 redraw();
1585 }
1586
1587 int
1588 xsetcursor(int cursor)
1589 {
1590         DEFAULT(cursor, 1);
1591         if (!BETWEEN(cursor, 0, 6))
1592                 return 1;
1593         win.cursor = cursor;
1594         return 0;
1595 }
1596
1597 void
1598 xseturgency(int add)
1599 {
1600         XWMHints *h = XGetWMHints(xw.dpy, xw.win);
1601
1602         MODBIT(h->flags, add, XUrgencyHint);
1603         XSetWMHints(xw.dpy, xw.win, h);
1604         XFree(h);
1605 }
1606
1607 void
1608 xbell(void)
1609 {
1610         if (!(IS_SET(MODE_FOCUSED)))
1611                 xseturgency(1);
1612         if (bellvolume)
1613                 XkbBell(xw.dpy, xw.win, bellvolume, (Atom)NULL);
1614 }
1615
1616 void
1617 focus(XEvent *ev)
1618 {
1619         XFocusChangeEvent *e = &ev->xfocus;
1620
1621         if (e->mode == NotifyGrab)
1622                 return;
1623
1624         if (ev->type == FocusIn) {
1625                 XSetICFocus(xw.xic);
1626                 win.mode |= MODE_FOCUSED;
1627                 xseturgency(0);
1628                 if (IS_SET(MODE_FOCUS))
1629                         ttywrite("\033[I", 3, 0);
1630         } else {
1631                 XUnsetICFocus(xw.xic);
1632                 win.mode &= ~MODE_FOCUSED;
1633                 if (IS_SET(MODE_FOCUS))
1634                         ttywrite("\033[O", 3, 0);
1635         }
1636 }
1637
1638 int
1639 match(uint mask, uint state)
1640 {
1641         return mask == XK_ANY_MOD || mask == (state & ~ignoremod);
1642 }
1643
1644 char*
1645 kmap(KeySym k, uint state)
1646 {
1647         Key *kp;
1648         int i;
1649
1650         /* Check for mapped keys out of X11 function keys. */
1651         for (i = 0; i < LEN(mappedkeys); i++) {
1652                 if (mappedkeys[i] == k)
1653                         break;
1654         }
1655         if (i == LEN(mappedkeys)) {
1656                 if ((k & 0xFFFF) < 0xFD00)
1657                         return NULL;
1658         }
1659
1660         for (kp = key; kp < key + LEN(key); kp++) {
1661                 if (kp->k != k)
1662                         continue;
1663
1664                 if (!match(kp->mask, state))
1665                         continue;
1666
1667                 if (IS_SET(MODE_APPKEYPAD) ? kp->appkey < 0 : kp->appkey > 0)
1668                         continue;
1669                 if (IS_SET(MODE_NUMLOCK) && kp->appkey == 2)
1670                         continue;
1671
1672                 if (IS_SET(MODE_APPCURSOR) ? kp->appcursor < 0 : kp->appcursor > 0)
1673                         continue;
1674
1675                 return kp->s;
1676         }
1677
1678         return NULL;
1679 }
1680
1681 void
1682 kpress(XEvent *ev)
1683 {
1684         XKeyEvent *e = &ev->xkey;
1685         KeySym ksym;
1686         char buf[32], *customkey;
1687         int len;
1688         Rune c;
1689         Status status;
1690         Shortcut *bp;
1691
1692         if (IS_SET(MODE_KBDLOCK))
1693                 return;
1694
1695         len = XmbLookupString(xw.xic, e, buf, sizeof buf, &ksym, &status);
1696         /* 1. shortcuts */
1697         for (bp = shortcuts; bp < shortcuts + LEN(shortcuts); bp++) {
1698                 if (ksym == bp->keysym && match(bp->mod, e->state)) {
1699                         bp->func(&(bp->arg));
1700                         return;
1701                 }
1702         }
1703
1704         /* 2. custom keys from config.h */
1705         if ((customkey = kmap(ksym, e->state))) {
1706                 ttywrite(customkey, strlen(customkey), 1);
1707                 return;
1708         }
1709
1710         /* 3. composed string from input method */
1711         if (len == 0)
1712                 return;
1713         if (len == 1 && e->state & Mod1Mask) {
1714                 if (IS_SET(MODE_8BIT)) {
1715                         if (*buf < 0177) {
1716                                 c = *buf | 0x80;
1717                                 len = utf8encode(c, buf);
1718                         }
1719                 } else {
1720                         buf[1] = buf[0];
1721                         buf[0] = '\033';
1722                         len = 2;
1723                 }
1724         }
1725         ttywrite(buf, len, 1);
1726 }
1727
1728
1729 void
1730 cmessage(XEvent *e)
1731 {
1732         /*
1733          * See xembed specs
1734          *  http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
1735          */
1736         if (e->xclient.message_type == xw.xembed && e->xclient.format == 32) {
1737                 if (e->xclient.data.l[1] == XEMBED_FOCUS_IN) {
1738                         win.mode |= MODE_FOCUSED;
1739                         xseturgency(0);
1740                 } else if (e->xclient.data.l[1] == XEMBED_FOCUS_OUT) {
1741                         win.mode &= ~MODE_FOCUSED;
1742                 }
1743         } else if (e->xclient.data.l[0] == xw.wmdeletewin) {
1744                 ttyhangup();
1745                 exit(0);
1746         }
1747 }
1748
1749 void
1750 resize(XEvent *e)
1751 {
1752         if (e->xconfigure.width == win.w && e->xconfigure.height == win.h)
1753                 return;
1754
1755         cresize(e->xconfigure.width, e->xconfigure.height);
1756 }
1757
1758 void
1759 run(void)
1760 {
1761         XEvent ev;
1762         int w = win.w, h = win.h;
1763         fd_set rfd;
1764         int xfd = XConnectionNumber(xw.dpy), xev, blinkset = 0, dodraw = 0;
1765         int ttyfd;
1766         struct timespec drawtimeout, *tv = NULL, now, last, lastblink;
1767         long deltatime;
1768
1769         /* Waiting for window mapping */
1770         do {
1771                 XNextEvent(xw.dpy, &ev);
1772                 /*
1773                  * This XFilterEvent call is required because of XOpenIM. It
1774                  * does filter out the key event and some client message for
1775                  * the input method too.
1776                  */
1777                 if (XFilterEvent(&ev, None))
1778                         continue;
1779                 if (ev.type == ConfigureNotify) {
1780                         w = ev.xconfigure.width;
1781                         h = ev.xconfigure.height;
1782                 }
1783         } while (ev.type != MapNotify);
1784
1785         ttyfd = ttynew(opt_line, shell, opt_io, opt_cmd);
1786         cresize(w, h);
1787
1788         clock_gettime(CLOCK_MONOTONIC, &last);
1789         lastblink = last;
1790
1791         for (xev = actionfps;;) {
1792                 FD_ZERO(&rfd);
1793                 FD_SET(ttyfd, &rfd);
1794                 FD_SET(xfd, &rfd);
1795
1796                 if (pselect(MAX(xfd, ttyfd)+1, &rfd, NULL, NULL, tv, NULL) < 0) {
1797                         if (errno == EINTR)
1798                                 continue;
1799                         die("select failed: %s\n", strerror(errno));
1800                 }
1801                 if (FD_ISSET(ttyfd, &rfd)) {
1802                         ttyread();
1803                         if (blinktimeout) {
1804                                 blinkset = tattrset(ATTR_BLINK);
1805                                 if (!blinkset)
1806                                         MODBIT(win.mode, 0, MODE_BLINK);
1807                         }
1808                 }
1809
1810                 if (FD_ISSET(xfd, &rfd))
1811                         xev = actionfps;
1812
1813                 clock_gettime(CLOCK_MONOTONIC, &now);
1814                 drawtimeout.tv_sec = 0;
1815                 drawtimeout.tv_nsec =  (1000 * 1E6)/ xfps;
1816                 tv = &drawtimeout;
1817
1818                 dodraw = 0;
1819                 if (blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) {
1820                         tsetdirtattr(ATTR_BLINK);
1821                         win.mode ^= MODE_BLINK;
1822                         lastblink = now;
1823                         dodraw = 1;
1824                 }
1825                 deltatime = TIMEDIFF(now, last);
1826                 if (deltatime > 1000 / (xev ? xfps : actionfps)) {
1827                         dodraw = 1;
1828                         last = now;
1829                 }
1830
1831                 if (dodraw) {
1832                         while (XPending(xw.dpy)) {
1833                                 XNextEvent(xw.dpy, &ev);
1834                                 if (XFilterEvent(&ev, None))
1835                                         continue;
1836                                 if (handler[ev.type])
1837                                         (handler[ev.type])(&ev);
1838                         }
1839
1840                         draw();
1841                         XFlush(xw.dpy);
1842
1843                         if (xev && !FD_ISSET(xfd, &rfd))
1844                                 xev--;
1845                         if (!FD_ISSET(ttyfd, &rfd) && !FD_ISSET(xfd, &rfd)) {
1846                                 if (blinkset) {
1847                                         if (TIMEDIFF(now, lastblink) \
1848                                                         > blinktimeout) {
1849                                                 drawtimeout.tv_nsec = 1000;
1850                                         } else {
1851                                                 drawtimeout.tv_nsec = (1E6 * \
1852                                                         (blinktimeout - \
1853                                                         TIMEDIFF(now,
1854                                                                 lastblink)));
1855                                         }
1856                                         drawtimeout.tv_sec = \
1857                                             drawtimeout.tv_nsec / 1E9;
1858                                         drawtimeout.tv_nsec %= (long)1E9;
1859                                 } else {
1860                                         tv = NULL;
1861                                 }
1862                         }
1863                 }
1864         }
1865 }
1866
1867 void
1868 usage(void)
1869 {
1870         die("usage: %s [-aiv] [-c class] [-f font] [-g geometry]"
1871             " [-n name] [-o file]\n"
1872             "          [-T title] [-t title] [-w windowid]"
1873             " [[-e] command [args ...]]\n"
1874             "       %s [-aiv] [-c class] [-f font] [-g geometry]"
1875             " [-n name] [-o file]\n"
1876             "          [-T title] [-t title] [-w windowid] -l line"
1877             " [stty_args ...]\n", argv0, argv0);
1878 }
1879
1880 int
1881 main(int argc, char *argv[])
1882 {
1883         xw.l = xw.t = 0;
1884         xw.isfixed = False;
1885         win.cursor = cursorshape;
1886
1887         ARGBEGIN {
1888         case 'a':
1889                 allowaltscreen = 0;
1890                 break;
1891         case 'c':
1892                 opt_class = EARGF(usage());
1893                 break;
1894         case 'e':
1895                 if (argc > 0)
1896                         --argc, ++argv;
1897                 goto run;
1898         case 'f':
1899                 opt_font = EARGF(usage());
1900                 break;
1901         case 'g':
1902                 xw.gm = XParseGeometry(EARGF(usage()),
1903                                 &xw.l, &xw.t, &cols, &rows);
1904                 break;
1905         case 'i':
1906                 xw.isfixed = 1;
1907                 break;
1908         case 'o':
1909                 opt_io = EARGF(usage());
1910                 break;
1911         case 'l':
1912                 opt_line = EARGF(usage());
1913                 break;
1914         case 'n':
1915                 opt_name = EARGF(usage());
1916                 break;
1917         case 't':
1918         case 'T':
1919                 opt_title = EARGF(usage());
1920                 break;
1921         case 'w':
1922                 opt_embed = EARGF(usage());
1923                 break;
1924         case 'v':
1925                 die("%s " VERSION " (c) 2010-2016 st engineers\n", argv0);
1926                 break;
1927         default:
1928                 usage();
1929         } ARGEND;
1930
1931 run:
1932         if (argc > 0) /* eat all remaining arguments */
1933                 opt_cmd = argv;
1934
1935         if (!opt_title)
1936                 opt_title = (opt_line || !opt_cmd) ? "st" : opt_cmd[0];
1937
1938         setlocale(LC_CTYPE, "");
1939         XSetLocaleModifiers("");
1940         cols = MAX(cols, 1);
1941         rows = MAX(rows, 1);
1942         tnew(cols, rows);
1943         xinit(cols, rows);
1944         xsetenv();
1945         selinit();
1946         run();
1947
1948         return 0;
1949 }