]> git.armaanb.net Git - dmenu.git/blob - dmenu.c
adopted Alex Sedov's config.h revival patch to tip
[dmenu.git] / dmenu.c
1 /* See LICENSE file for copyright and license details. */
2 #include <ctype.h>
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include <strings.h>
7 #include <unistd.h>
8 #include <X11/Xlib.h>
9 #include <X11/Xatom.h>
10 #include <X11/Xutil.h>
11 #ifdef XINERAMA
12 #include <X11/extensions/Xinerama.h>
13 #endif
14 #include "draw.h"
15
16 #define INTERSECT(x,y,w,h,r)  (MAX(0, MIN((x)+(w),(r).x_org+(r).width)  - MAX((x),(r).x_org)) \
17                              * MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org)))
18 #define MIN(a,b)              ((a) < (b) ? (a) : (b))
19 #define MAX(a,b)              ((a) > (b) ? (a) : (b))
20
21 typedef struct Item Item;
22 struct Item {
23         char *text;
24         Item *left, *right;
25         Bool out;
26 };
27
28 static void appenditem(Item *item, Item **list, Item **last);
29 static void calcoffsets(void);
30 static char *cistrstr(const char *s, const char *sub);
31 static void drawmenu(void);
32 static void grabkeyboard(void);
33 static void insert(const char *str, ssize_t n);
34 static void keypress(XKeyEvent *ev);
35 static void match(void);
36 static size_t nextrune(int inc);
37 static void paste(void);
38 static void readstdin(void);
39 static void run(void);
40 static void setup(void);
41 static void usage(void);
42
43 static char text[BUFSIZ] = "";
44 static int bh, mw, mh;
45 static int inputw, promptw;
46 static size_t cursor = 0;
47 static unsigned long normcol[ColLast];
48 static unsigned long selcol[ColLast];
49 static unsigned long outcol[ColLast];
50 static Atom clip, utf8;
51 static DC *dc;
52 static Item *items = NULL;
53 static Item *matches, *matchend;
54 static Item *prev, *curr, *next, *sel;
55 static Window win;
56 static XIC xic;
57
58 #include "config.h"
59
60 static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
61 static char *(*fstrstr)(const char *, const char *) = strstr;
62
63 int
64 main(int argc, char *argv[]) {
65         Bool fast = False;
66         int i;
67
68         for(i = 1; i < argc; i++)
69                 /* these options take no arguments */
70                 if(!strcmp(argv[i], "-v")) {      /* prints version information */
71                         puts("dmenu-"VERSION", © 2006-2012 dmenu engineers, see LICENSE for details");
72                         exit(EXIT_SUCCESS);
73                 }
74                 else if(!strcmp(argv[i], "-b"))   /* appears at the bottom of the screen */
75                         topbar = False;
76                 else if(!strcmp(argv[i], "-f"))   /* grabs keyboard before reading stdin */
77                         fast = True;
78                 else if(!strcmp(argv[i], "-i")) { /* case-insensitive item matching */
79                         fstrncmp = strncasecmp;
80                         fstrstr = cistrstr;
81                 }
82                 else if(i+1 == argc)
83                         usage();
84                 /* these options take one argument */
85                 else if(!strcmp(argv[i], "-l"))   /* number of lines in vertical list */
86                         lines = atoi(argv[++i]);
87                 else if(!strcmp(argv[i], "-p"))   /* adds prompt to left of input field */
88                         prompt = argv[++i];
89                 else if(!strcmp(argv[i], "-fn"))  /* font or font set */
90                         font = argv[++i];
91                 else if(!strcmp(argv[i], "-nb"))  /* normal background color */
92                         normbgcolor = argv[++i];
93                 else if(!strcmp(argv[i], "-nf"))  /* normal foreground color */
94                         normfgcolor = argv[++i];
95                 else if(!strcmp(argv[i], "-sb"))  /* selected background color */
96                         selbgcolor = argv[++i];
97                 else if(!strcmp(argv[i], "-sf"))  /* selected foreground color */
98                         selfgcolor = argv[++i];
99                 else
100                         usage();
101
102         dc = initdc();
103         initfont(dc, font);
104
105         if(fast) {
106                 grabkeyboard();
107                 readstdin();
108         }
109         else {
110                 readstdin();
111                 grabkeyboard();
112         }
113         setup();
114         run();
115
116         return 1; /* unreachable */
117 }
118
119 void
120 appenditem(Item *item, Item **list, Item **last) {
121         if(*last)
122                 (*last)->right = item;
123         else
124                 *list = item;
125
126         item->left = *last;
127         item->right = NULL;
128         *last = item;
129 }
130
131 void
132 calcoffsets(void) {
133         int i, n;
134
135         if(lines > 0)
136                 n = lines * bh;
137         else
138                 n = mw - (promptw + inputw + textw(dc, "<") + textw(dc, ">"));
139         /* calculate which items will begin the next page and previous page */
140         for(i = 0, next = curr; next; next = next->right)
141                 if((i += (lines > 0) ? bh : MIN(textw(dc, next->text), n)) > n)
142                         break;
143         for(i = 0, prev = curr; prev && prev->left; prev = prev->left)
144                 if((i += (lines > 0) ? bh : MIN(textw(dc, prev->left->text), n)) > n)
145                         break;
146 }
147
148 char *
149 cistrstr(const char *s, const char *sub) {
150         size_t len;
151
152         for(len = strlen(sub); *s; s++)
153                 if(!strncasecmp(s, sub, len))
154                         return (char *)s;
155         return NULL;
156 }
157
158 void
159 drawmenu(void) {
160         int curpos;
161         Item *item;
162
163         dc->x = 0;
164         dc->y = 0;
165         dc->h = bh;
166         drawrect(dc, 0, 0, mw, mh, True, BG(dc, normcol));
167
168         if(prompt && *prompt) {
169                 dc->w = promptw;
170                 drawtext(dc, prompt, selcol);
171                 dc->x = dc->w;
172         }
173         /* draw input field */
174         dc->w = (lines > 0 || !matches) ? mw - dc->x : inputw;
175         drawtext(dc, text, normcol);
176         if((curpos = textnw(dc, text, cursor) + dc->h/2 - 2) < dc->w)
177                 drawrect(dc, curpos, 2, 1, dc->h - 4, True, FG(dc, normcol));
178
179         if(lines > 0) {
180                 /* draw vertical list */
181                 dc->w = mw - dc->x;
182                 for(item = curr; item != next; item = item->right) {
183                         dc->y += dc->h;
184                         drawtext(dc, item->text, (item == sel) ? selcol :
185                                                  (item->out)   ? outcol : normcol);
186                 }
187         }
188         else if(matches) {
189                 /* draw horizontal list */
190                 dc->x += inputw;
191                 dc->w = textw(dc, "<");
192                 if(curr->left)
193                         drawtext(dc, "<", normcol);
194                 for(item = curr; item != next; item = item->right) {
195                         dc->x += dc->w;
196                         dc->w = MIN(textw(dc, item->text), mw - dc->x - textw(dc, ">"));
197                         drawtext(dc, item->text, (item == sel) ? selcol :
198                                                  (item->out)   ? outcol : normcol);
199                 }
200                 dc->w = textw(dc, ">");
201                 dc->x = mw - dc->w;
202                 if(next)
203                         drawtext(dc, ">", normcol);
204         }
205         mapdc(dc, win, mw, mh);
206 }
207
208 void
209 grabkeyboard(void) {
210         int i;
211
212         /* try to grab keyboard, we may have to wait for another process to ungrab */
213         for(i = 0; i < 1000; i++) {
214                 if(XGrabKeyboard(dc->dpy, DefaultRootWindow(dc->dpy), True,
215                                  GrabModeAsync, GrabModeAsync, CurrentTime) == GrabSuccess)
216                         return;
217                 usleep(1000);
218         }
219         eprintf("cannot grab keyboard\n");
220 }
221
222 void
223 insert(const char *str, ssize_t n) {
224         if(strlen(text) + n > sizeof text - 1)
225                 return;
226         /* move existing text out of the way, insert new text, and update cursor */
227         memmove(&text[cursor + n], &text[cursor], sizeof text - cursor - MAX(n, 0));
228         if(n > 0)
229                 memcpy(&text[cursor], str, n);
230         cursor += n;
231         match();
232 }
233
234 void
235 keypress(XKeyEvent *ev) {
236         char buf[32];
237         int len;
238         KeySym ksym = NoSymbol;
239         Status status;
240
241         len = XmbLookupString(xic, ev, buf, sizeof buf, &ksym, &status);
242         if(status == XBufferOverflow)
243                 return;
244         if(ev->state & ControlMask)
245                 switch(ksym) {
246                 case XK_a: ksym = XK_Home;      break;
247                 case XK_b: ksym = XK_Left;      break;
248                 case XK_c: ksym = XK_Escape;    break;
249                 case XK_d: ksym = XK_Delete;    break;
250                 case XK_e: ksym = XK_End;       break;
251                 case XK_f: ksym = XK_Right;     break;
252                 case XK_g: ksym = XK_Escape;    break;
253                 case XK_h: ksym = XK_BackSpace; break;
254                 case XK_i: ksym = XK_Tab;       break;
255                 case XK_j: /* fallthrough */
256                 case XK_J: ksym = XK_Return;    break;
257                 case XK_m: /* fallthrough */
258                 case XK_M: ksym = XK_Return;    break;
259                 case XK_n: ksym = XK_Down;      break;
260                 case XK_p: ksym = XK_Up;        break;
261
262                 case XK_k: /* delete right */
263                         text[cursor] = '\0';
264                         match();
265                         break;
266                 case XK_u: /* delete left */
267                         insert(NULL, 0 - cursor);
268                         break;
269                 case XK_w: /* delete word */
270                         while(cursor > 0 && text[nextrune(-1)] == ' ')
271                                 insert(NULL, nextrune(-1) - cursor);
272                         while(cursor > 0 && text[nextrune(-1)] != ' ')
273                                 insert(NULL, nextrune(-1) - cursor);
274                         break;
275                 case XK_y: /* paste selection */
276                         XConvertSelection(dc->dpy, (ev->state & ShiftMask) ? clip : XA_PRIMARY,
277                                           utf8, utf8, win, CurrentTime);
278                         return;
279                 case XK_Return:
280                 case XK_KP_Enter:
281                         break;
282                 default:
283                         return;
284                 }
285         else if(ev->state & Mod1Mask)
286                 switch(ksym) {
287                 case XK_g: ksym = XK_Home;  break;
288                 case XK_G: ksym = XK_End;   break;
289                 case XK_h: ksym = XK_Up;    break;
290                 case XK_j: ksym = XK_Next;  break;
291                 case XK_k: ksym = XK_Prior; break;
292                 case XK_l: ksym = XK_Down;  break;
293                 default:
294                         return;
295                 }
296         switch(ksym) {
297         default:
298                 if(!iscntrl(*buf))
299                         insert(buf, len);
300                 break;
301         case XK_Delete:
302                 if(text[cursor] == '\0')
303                         return;
304                 cursor = nextrune(+1);
305                 /* fallthrough */
306         case XK_BackSpace:
307                 if(cursor == 0)
308                         return;
309                 insert(NULL, nextrune(-1) - cursor);
310                 break;
311         case XK_End:
312                 if(text[cursor] != '\0') {
313                         cursor = strlen(text);
314                         break;
315                 }
316                 if(next) {
317                         /* jump to end of list and position items in reverse */
318                         curr = matchend;
319                         calcoffsets();
320                         curr = prev;
321                         calcoffsets();
322                         while(next && (curr = curr->right))
323                                 calcoffsets();
324                 }
325                 sel = matchend;
326                 break;
327         case XK_Escape:
328                 exit(EXIT_FAILURE);
329         case XK_Home:
330                 if(sel == matches) {
331                         cursor = 0;
332                         break;
333                 }
334                 sel = curr = matches;
335                 calcoffsets();
336                 break;
337         case XK_Left:
338                 if(cursor > 0 && (!sel || !sel->left || lines > 0)) {
339                         cursor = nextrune(-1);
340                         break;
341                 }
342                 if(lines > 0)
343                         return;
344                 /* fallthrough */
345         case XK_Up:
346                 if(sel && sel->left && (sel = sel->left)->right == curr) {
347                         curr = prev;
348                         calcoffsets();
349                 }
350                 break;
351         case XK_Next:
352                 if(!next)
353                         return;
354                 sel = curr = next;
355                 calcoffsets();
356                 break;
357         case XK_Prior:
358                 if(!prev)
359                         return;
360                 sel = curr = prev;
361                 calcoffsets();
362                 break;
363         case XK_Return:
364         case XK_KP_Enter:
365                 puts((sel && !(ev->state & ShiftMask)) ? sel->text : text);
366                 if(!(ev->state & ControlMask))
367                         exit(EXIT_SUCCESS);
368                 sel->out = True;
369                 break;
370         case XK_Right:
371                 if(text[cursor] != '\0') {
372                         cursor = nextrune(+1);
373                         break;
374                 }
375                 if(lines > 0)
376                         return;
377                 /* fallthrough */
378         case XK_Down:
379                 if(sel && sel->right && (sel = sel->right) == next) {
380                         curr = next;
381                         calcoffsets();
382                 }
383                 break;
384         case XK_Tab:
385                 if(!sel)
386                         return;
387                 strncpy(text, sel->text, sizeof text - 1);
388                 text[sizeof text - 1] = '\0';
389                 cursor = strlen(text);
390                 match();
391                 break;
392         }
393         drawmenu();
394 }
395
396 void
397 match(void) {
398         static char **tokv = NULL;
399         static int tokn = 0;
400
401         char buf[sizeof text], *s;
402         int i, tokc = 0;
403         size_t len;
404         Item *item, *lprefix, *lsubstr, *prefixend, *substrend;
405
406         strcpy(buf, text);
407         /* separate input text into tokens to be matched individually */
408         for(s = strtok(buf, " "); s; tokv[tokc-1] = s, s = strtok(NULL, " "))
409                 if(++tokc > tokn && !(tokv = realloc(tokv, ++tokn * sizeof *tokv)))
410                         eprintf("cannot realloc %u bytes\n", tokn * sizeof *tokv);
411         len = tokc ? strlen(tokv[0]) : 0;
412
413         matches = lprefix = lsubstr = matchend = prefixend = substrend = NULL;
414         for(item = items; item && item->text; item++) {
415                 for(i = 0; i < tokc; i++)
416                         if(!fstrstr(item->text, tokv[i]))
417                                 break;
418                 if(i != tokc) /* not all tokens match */
419                         continue;
420                 /* exact matches go first, then prefixes, then substrings */
421                 if(!tokc || !fstrncmp(tokv[0], item->text, len+1))
422                         appenditem(item, &matches, &matchend);
423                 else if(!fstrncmp(tokv[0], item->text, len))
424                         appenditem(item, &lprefix, &prefixend);
425                 else
426                         appenditem(item, &lsubstr, &substrend);
427         }
428         if(lprefix) {
429                 if(matches) {
430                         matchend->right = lprefix;
431                         lprefix->left = matchend;
432                 }
433                 else
434                         matches = lprefix;
435                 matchend = prefixend;
436         }
437         if(lsubstr) {
438                 if(matches) {
439                         matchend->right = lsubstr;
440                         lsubstr->left = matchend;
441                 }
442                 else
443                         matches = lsubstr;
444                 matchend = substrend;
445         }
446         curr = sel = matches;
447         calcoffsets();
448 }
449
450 size_t
451 nextrune(int inc) {
452         ssize_t n;
453
454         /* return location of next utf8 rune in the given direction (+1 or -1) */
455         for(n = cursor + inc; n + inc >= 0 && (text[n] & 0xc0) == 0x80; n += inc);
456         return n;
457 }
458
459 void
460 paste(void) {
461         char *p, *q;
462         int di;
463         unsigned long dl;
464         Atom da;
465
466         /* we have been given the current selection, now insert it into input */
467         XGetWindowProperty(dc->dpy, win, utf8, 0, (sizeof text / 4) + 1, False,
468                            utf8, &da, &di, &dl, &dl, (unsigned char **)&p);
469         insert(p, (q = strchr(p, '\n')) ? q-p : (ssize_t)strlen(p));
470         XFree(p);
471         drawmenu();
472 }
473
474 void
475 readstdin(void) {
476         char buf[sizeof text], *p, *maxstr = NULL;
477         size_t i, max = 0, size = 0;
478
479         /* read each line from stdin and add it to the item list */
480         for(i = 0; fgets(buf, sizeof buf, stdin); i++) {
481                 if(i+1 >= size / sizeof *items)
482                         if(!(items = realloc(items, (size += BUFSIZ))))
483                                 eprintf("cannot realloc %u bytes:", size);
484                 if((p = strchr(buf, '\n')))
485                         *p = '\0';
486                 if(!(items[i].text = strdup(buf)))
487                         eprintf("cannot strdup %u bytes:", strlen(buf)+1);
488                 items[i].out = False;
489                 if(strlen(items[i].text) > max)
490                         max = strlen(maxstr = items[i].text);
491         }
492         if(items)
493                 items[i].text = NULL;
494         inputw = maxstr ? textw(dc, maxstr) : 0;
495         lines = MIN(lines, i);
496 }
497
498 void
499 run(void) {
500         XEvent ev;
501
502         while(!XNextEvent(dc->dpy, &ev)) {
503                 if(XFilterEvent(&ev, win))
504                         continue;
505                 switch(ev.type) {
506                 case Expose:
507                         if(ev.xexpose.count == 0)
508                                 mapdc(dc, win, mw, mh);
509                         break;
510                 case KeyPress:
511                         keypress(&ev.xkey);
512                         break;
513                 case SelectionNotify:
514                         if(ev.xselection.property == utf8)
515                                 paste();
516                         break;
517                 case VisibilityNotify:
518                         if(ev.xvisibility.state != VisibilityUnobscured)
519                                 XRaiseWindow(dc->dpy, win);
520                         break;
521                 }
522         }
523 }
524
525 void
526 setup(void) {
527         int x, y, screen = DefaultScreen(dc->dpy);
528         Window root = RootWindow(dc->dpy, screen);
529         XSetWindowAttributes swa;
530         XIM xim;
531 #ifdef XINERAMA
532         int n;
533         XineramaScreenInfo *info;
534 #endif
535
536         normcol[ColBG] = getcolor(dc, normbgcolor);
537         normcol[ColFG] = getcolor(dc, normfgcolor);
538         selcol[ColBG]  = getcolor(dc, selbgcolor);
539         selcol[ColFG]  = getcolor(dc, selfgcolor);
540         outcol[ColBG]  = getcolor(dc, outbgcolor);
541         outcol[ColFG]  = getcolor(dc, outfgcolor);
542
543         clip = XInternAtom(dc->dpy, "CLIPBOARD",   False);
544         utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);
545
546         /* calculate menu geometry */
547         bh = dc->font.height + 2;
548         lines = MAX(lines, 0);
549         mh = (lines + 1) * bh;
550 #ifdef XINERAMA
551         if((info = XineramaQueryScreens(dc->dpy, &n))) {
552                 int a, j, di, i = 0, area = 0;
553                 unsigned int du;
554                 Window w, pw, dw, *dws;
555                 XWindowAttributes wa;
556
557                 XGetInputFocus(dc->dpy, &w, &di);
558                 if(w != root && w != PointerRoot && w != None) {
559                         /* find top-level window containing current input focus */
560                         do {
561                                 if(XQueryTree(dc->dpy, (pw = w), &dw, &w, &dws, &du) && dws)
562                                         XFree(dws);
563                         } while(w != root && w != pw);
564                         /* find xinerama screen with which the window intersects most */
565                         if(XGetWindowAttributes(dc->dpy, pw, &wa))
566                                 for(j = 0; j < n; j++)
567                                         if((a = INTERSECT(wa.x, wa.y, wa.width, wa.height, info[j])) > area) {
568                                                 area = a;
569                                                 i = j;
570                                         }
571                 }
572                 /* no focused window is on screen, so use pointer location instead */
573                 if(!area && XQueryPointer(dc->dpy, root, &dw, &dw, &x, &y, &di, &di, &du))
574                         for(i = 0; i < n; i++)
575                                 if(INTERSECT(x, y, 1, 1, info[i]))
576                                         break;
577
578                 x = info[i].x_org;
579                 y = info[i].y_org + (topbar ? 0 : info[i].height - mh);
580                 mw = info[i].width;
581                 XFree(info);
582         }
583         else
584 #endif
585         {
586                 x = 0;
587                 y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh;
588                 mw = DisplayWidth(dc->dpy, screen);
589         }
590         promptw = (prompt && *prompt) ? textw(dc, prompt) : 0;
591         inputw = MIN(inputw, mw/3);
592         match();
593
594         /* create menu window */
595         swa.override_redirect = True;
596         swa.background_pixel = normcol[ColBG];
597         swa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
598         win = XCreateWindow(dc->dpy, root, x, y, mw, mh, 0,
599                             DefaultDepth(dc->dpy, screen), CopyFromParent,
600                             DefaultVisual(dc->dpy, screen),
601                             CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
602
603         /* open input methods */
604         xim = XOpenIM(dc->dpy, NULL, NULL, NULL);
605         xic = XCreateIC(xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing,
606                         XNClientWindow, win, XNFocusWindow, win, NULL);
607
608         XMapRaised(dc->dpy, win);
609         resizedc(dc, mw, mh);
610         drawmenu();
611 }
612
613 void
614 usage(void) {
615         fputs("usage: dmenu [-b] [-f] [-i] [-l lines] [-p prompt] [-fn font]\n"
616               "             [-nb color] [-nf color] [-sb color] [-sf color] [-v]\n", stderr);
617         exit(EXIT_FAILURE);
618 }