dmenu/dmenu.c

545 lines
12 KiB
C
Raw Normal View History

2011-05-14 18:47:12 +02:00
/* See LICENSE file for copyright and license details. */
2006-08-04 09:35:27 +02:00
#include <ctype.h>
#include <stdio.h>
2008-06-13 12:46:50 +02:00
#include <stdlib.h>
2006-08-04 09:35:27 +02:00
#include <string.h>
#include <unistd.h>
2007-09-16 20:14:09 +02:00
#include <X11/Xlib.h>
2010-08-10 14:38:49 +02:00
#include <X11/Xatom.h>
2006-08-04 09:35:27 +02:00
#include <X11/Xutil.h>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif
2010-11-12 00:56:39 +01:00
#include "draw.h"
#define INRECT(x,y,rx,ry,rw,rh) ((x) >= (rx) && (x) < (rx)+(rw) && (y) >= (ry) && (y) < (ry)+(rh))
#define MIN(a,b) ((a) < (b) ? (a) : (b))
#define MAX(a,b) ((a) > (b) ? (a) : (b))
2007-01-11 15:52:37 +01:00
2006-08-04 09:35:27 +02:00
typedef struct Item Item;
struct Item {
char *text;
2011-05-14 18:46:20 +02:00
Item *left, *right;
2006-08-04 09:35:27 +02:00
};
static void appenditem(Item *item, Item **list, Item **last);
2010-08-03 18:10:29 +02:00
static void calcoffsets(void);
static void drawmenu(void);
static char *fstrstr(const char *s, const char *sub);
static void grabkeyboard(void);
static void insert(const char *s, ssize_t n);
2010-08-09 12:54:46 +02:00
static void keypress(XKeyEvent *ev);
2010-07-02 07:49:05 +02:00
static void match(void);
2010-08-12 16:35:51 +02:00
static size_t nextrune(int incr);
static void paste(void);
2008-06-13 12:46:50 +02:00
static void readstdin(void);
static void run(void);
static void setup(void);
2007-09-16 20:14:09 +02:00
2011-05-05 16:46:48 +02:00
static char text[BUFSIZ] = "";
2010-08-18 18:33:34 +02:00
static int bh, mw, mh;
static int inputw = 0;
static int lines = 0;
2010-11-02 13:15:15 +01:00
static int monitor = -1;
2010-08-18 18:35:23 +02:00
static int promptw;
static size_t cursor = 0;
2010-08-10 19:09:02 +02:00
static const char *font = NULL;
static const char *prompt = NULL;
static const char *normbgcolor = "#cccccc";
static const char *normfgcolor = "#000000";
static const char *selbgcolor = "#0066ff";
static const char *selfgcolor = "#ffffff";
static unsigned long normcol[ColLast];
static unsigned long selcol[ColLast];
2010-08-12 16:35:51 +02:00
static Atom utf8;
static Bool topbar = True;
static DC *dc;
static Item *items = NULL;
static Item *matches, *sel;
static Item *prev, *curr, *next;
static Window root, win;
2010-06-16 16:36:17 +02:00
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
2007-09-17 20:53:14 +02:00
2010-11-17 05:33:34 +01:00
int
main(int argc, char *argv[]) {
2011-05-08 16:15:24 +02:00
Bool fast = False;
2010-11-17 05:33:34 +01:00
int i;
progname = "dmenu";
for(i = 1; i < argc; i++)
/* single flags */
if(!strcmp(argv[i], "-v")) {
2011-01-07 19:55:00 +01:00
fputs("dmenu-"VERSION", © 2006-2011 dmenu engineers, see LICENSE for details\n", stdout);
2010-11-17 05:33:34 +01:00
exit(EXIT_SUCCESS);
}
else if(!strcmp(argv[i], "-b"))
topbar = False;
2011-05-08 16:15:24 +02:00
else if(!strcmp(argv[i], "-f"))
fast = True;
2011-05-11 13:25:50 +02:00
else if(!strcmp(argv[i], "-i"))
fstrncmp = strncasecmp;
2010-11-17 05:33:34 +01:00
else if(i == argc-1)
2011-05-05 16:46:48 +02:00
goto usage;
2010-11-17 05:33:34 +01:00
/* double flags */
else if(!strcmp(argv[i], "-l"))
lines = atoi(argv[++i]);
else if(!strcmp(argv[i], "-m"))
monitor = atoi(argv[++i]);
else if(!strcmp(argv[i], "-p"))
prompt = argv[++i];
else if(!strcmp(argv[i], "-fn"))
font = argv[++i];
else if(!strcmp(argv[i], "-nb"))
normbgcolor = argv[++i];
else if(!strcmp(argv[i], "-nf"))
normfgcolor = argv[++i];
else if(!strcmp(argv[i], "-sb"))
selbgcolor = argv[++i];
else if(!strcmp(argv[i], "-sf"))
selfgcolor = argv[++i];
else
2011-05-05 16:46:48 +02:00
goto usage;
2010-11-17 05:33:34 +01:00
dc = initdc();
initfont(dc, font);
2011-05-08 16:15:24 +02:00
if(fast) {
setup();
readstdin();
}
else {
readstdin();
setup();
}
match();
2010-11-17 05:33:34 +01:00
run();
2011-05-05 16:46:48 +02:00
return EXIT_FAILURE;
2010-11-17 05:33:34 +01:00
2011-05-05 16:46:48 +02:00
usage:
2011-05-08 16:15:24 +02:00
fputs("usage: dmenu [-b] [-f] [-i] [-l lines] [-m monitor] [-p prompt] [-fn font]\n"
2011-05-05 16:46:48 +02:00
" [-nb color] [-nf color] [-sb color] [-sf color] [-v]\n", stderr);
return EXIT_FAILURE;
2010-11-17 05:33:34 +01:00
}
2008-03-22 15:52:00 +01:00
void
appenditem(Item *item, Item **list, Item **last) {
if(!*last)
*list = item;
else
(*last)->right = item;
item->left = *last;
item->right = NULL;
*last = item;
}
2007-09-17 20:53:14 +02:00
void
2010-08-09 12:54:46 +02:00
calcoffsets(void) {
2010-08-10 14:38:49 +02:00
unsigned int i, n;
2006-08-04 09:35:27 +02:00
2010-08-03 18:10:29 +02:00
if(lines > 0)
n = lines * bh;
2010-08-03 18:10:29 +02:00
else
2010-11-12 00:56:39 +01:00
n = mw - (promptw + inputw + textw(dc, "<") + textw(dc, ">"));
2010-08-03 18:10:29 +02:00
2010-08-10 15:14:37 +02:00
for(i = 0, next = curr; next; next = next->right)
2010-11-12 00:56:39 +01:00
if((i += (lines > 0) ? bh : MIN(textw(dc, next->text), n)) > n)
2010-08-10 15:14:37 +02:00
break;
for(i = 0, prev = curr; prev && prev->left; prev = prev->left)
2010-11-12 00:56:39 +01:00
if((i += (lines > 0) ? bh : MIN(textw(dc, prev->left->text), n)) > n)
2010-08-10 15:14:37 +02:00
break;
2006-08-04 09:35:27 +02:00
}
void
drawmenu(void) {
2010-08-09 12:54:46 +02:00
int curpos;
2010-08-03 18:10:29 +02:00
Item *item;
dc->x = 0;
dc->y = 0;
dc->h = bh;
2010-11-12 00:56:39 +01:00
drawrect(dc, 0, 0, mw, mh, True, BG(dc, normcol));
2010-08-09 12:54:46 +02:00
2010-05-03 00:17:02 +02:00
if(prompt) {
2010-08-02 15:49:14 +02:00
dc->w = promptw;
2010-11-12 00:56:39 +01:00
drawtext(dc, prompt, selcol);
dc->x = dc->w;
}
2010-08-09 12:54:46 +02:00
dc->w = (lines > 0 || !matches) ? mw - dc->x : inputw;
2010-11-12 00:56:39 +01:00
drawtext(dc, text, normcol);
if((curpos = textnw(dc, text, cursor) + dc->h/2 - 2) < dc->w)
drawrect(dc, curpos, 2, 1, dc->h - 4, True, FG(dc, normcol));
2010-03-07 09:32:16 +01:00
2010-08-03 18:10:29 +02:00
if(lines > 0) {
dc->w = mw - dc->x;
for(item = curr; item != next; item = item->right) {
dc->y += dc->h;
2010-11-12 00:56:39 +01:00
drawtext(dc, item->text, (item == sel) ? selcol : normcol);
2010-08-03 18:10:29 +02:00
}
2010-03-07 09:32:16 +01:00
}
2010-08-09 12:54:46 +02:00
else if(matches) {
2010-08-03 18:10:29 +02:00
dc->x += inputw;
2010-11-12 00:56:39 +01:00
dc->w = textw(dc, "<");
2010-08-03 18:29:53 +02:00
if(curr->left)
2010-11-12 00:56:39 +01:00
drawtext(dc, "<", normcol);
2010-08-03 18:10:29 +02:00
for(item = curr; item != next; item = item->right) {
dc->x += dc->w;
2010-11-12 00:56:39 +01:00
dc->w = MIN(textw(dc, item->text), mw - dc->x - textw(dc, ">"));
drawtext(dc, item->text, (item == sel) ? selcol : normcol);
2010-08-03 18:10:29 +02:00
}
2010-11-12 00:56:39 +01:00
dc->w = textw(dc, ">");
2010-08-03 18:10:29 +02:00
dc->x = mw - dc->w;
if(next)
2010-11-12 00:56:39 +01:00
drawtext(dc, ">", normcol);
}
2010-11-12 00:56:39 +01:00
mapdc(dc, win, mw, mh);
}
char *
fstrstr(const char *s, const char *sub) {
size_t len;
for(len = strlen(sub); *s; s++)
if(!fstrncmp(s, sub, len))
return (char *)s;
return NULL;
}
2007-09-17 20:53:14 +02:00
void
grabkeyboard(void) {
int i;
for(i = 0; i < 1000; i++) {
if(!XGrabKeyboard(dc->dpy, root, True, GrabModeAsync, GrabModeAsync, CurrentTime))
return;
usleep(1000);
}
eprintf("cannot grab keyboard\n");
}
void
insert(const char *s, ssize_t n) {
2010-08-12 16:35:51 +02:00
if(strlen(text) + n > sizeof text - 1)
return;
memmove(text + cursor + n, text + cursor, sizeof text - cursor - MAX(n, 0));
if(n > 0)
memcpy(text + cursor, s, n);
cursor += n;
match();
}
void
2010-08-09 12:54:46 +02:00
keypress(XKeyEvent *ev) {
char buf[32];
size_t len;
2006-08-04 10:23:36 +02:00
KeySym ksym;
2006-08-04 09:35:27 +02:00
2006-08-04 10:23:36 +02:00
len = strlen(text);
2010-08-09 12:54:46 +02:00
XLookupString(ev, buf, sizeof buf, &ksym, NULL);
2011-05-05 16:46:48 +02:00
if(ev->state & ControlMask)
2010-06-20 02:19:17 +02:00
switch(tolower(ksym)) {
default:
2006-08-04 09:35:27 +02:00
return;
2010-04-01 19:10:41 +02:00
case XK_a:
2010-04-01 22:31:09 +02:00
ksym = XK_Home;
2010-04-01 19:10:41 +02:00
break;
case XK_b:
ksym = XK_Left;
break;
case XK_c:
2007-01-10 18:06:16 +01:00
ksym = XK_Escape;
2006-08-04 09:35:27 +02:00
break;
2010-08-06 15:16:08 +02:00
case XK_d:
ksym = XK_Delete;
break;
2010-04-01 22:31:09 +02:00
case XK_e:
ksym = XK_End;
break;
case XK_f:
ksym = XK_Right;
break;
2006-08-04 09:35:27 +02:00
case XK_h:
ksym = XK_BackSpace;
break;
case XK_i:
ksym = XK_Tab;
break;
case XK_j:
ksym = XK_Return;
break;
case XK_k: /* delete right */
text[cursor] = '\0';
match();
break;
case XK_n:
ksym = XK_Down;
break;
case XK_p:
ksym = XK_Up;
break;
case XK_u: /* delete left */
2010-08-12 16:35:51 +02:00
insert(NULL, 0 - cursor);
break;
case XK_w: /* delete word */
2010-08-12 16:35:51 +02:00
while(cursor > 0 && text[nextrune(-1)] == ' ')
insert(NULL, nextrune(-1) - cursor);
while(cursor > 0 && text[nextrune(-1)] != ' ')
insert(NULL, nextrune(-1) - cursor);
break;
2010-11-12 01:00:32 +01:00
case XK_y: /* paste selection */
XConvertSelection(dc->dpy, XA_PRIMARY, utf8, utf8, win, CurrentTime);
return;
}
2006-08-04 09:35:27 +02:00
switch(ksym) {
default:
if(!iscntrl(*buf))
2010-08-12 16:35:51 +02:00
insert(buf, strlen(buf));
break;
case XK_Delete:
if(cursor == len)
return;
2010-08-12 16:35:51 +02:00
cursor = nextrune(+1);
case XK_BackSpace:
if(cursor > 0)
insert(NULL, nextrune(-1) - cursor);
2010-03-22 08:50:26 +01:00
break;
case XK_End:
if(cursor < len) {
cursor = len;
break;
}
while(next) {
sel = curr = next;
calcoffsets();
}
2006-12-14 09:30:23 +01:00
while(sel && sel->right)
sel = sel->right;
break;
case XK_Escape:
2010-07-02 04:44:01 +02:00
exit(EXIT_FAILURE);
case XK_Home:
if(sel == matches) {
cursor = 0;
break;
}
sel = curr = matches;
calcoffsets();
break;
2006-08-04 09:35:27 +02:00
case XK_Left:
if(cursor > 0 && (!sel || !sel->left || lines > 0)) {
2010-08-12 16:35:51 +02:00
cursor = nextrune(-1);
break;
}
else if(lines > 0)
return;
case XK_Up:
2010-08-12 16:35:51 +02:00
if(sel && sel->left && (sel = sel->left)->right == curr) {
curr = prev;
calcoffsets();
}
2006-08-04 09:35:27 +02:00
break;
case XK_Next:
2006-12-14 09:30:23 +01:00
if(!next)
return;
sel = curr = next;
calcoffsets();
2006-08-04 09:35:27 +02:00
break;
case XK_Prior:
2006-12-14 09:30:23 +01:00
if(!prev)
return;
sel = curr = prev;
calcoffsets();
2006-08-04 09:35:27 +02:00
break;
case XK_Return:
case XK_KP_Enter:
2010-08-09 12:54:46 +02:00
fputs((sel && !(ev->state & ShiftMask)) ? sel->text : text, stdout);
2010-07-02 04:44:01 +02:00
exit(EXIT_SUCCESS);
case XK_Right:
if(cursor < len) {
2010-08-12 16:35:51 +02:00
cursor = nextrune(+1);
break;
}
else if(lines > 0)
return;
case XK_Down:
2010-08-12 16:35:51 +02:00
if(sel && sel->right && (sel = sel->right) == next) {
curr = next;
calcoffsets();
}
2006-08-04 09:35:27 +02:00
break;
case XK_Tab:
if(!sel)
return;
strncpy(text, sel->text, sizeof text);
cursor = strlen(text);
match();
break;
2006-08-04 09:35:27 +02:00
}
drawmenu();
2006-08-04 09:35:27 +02:00
}
2007-09-17 20:53:14 +02:00
void
2010-07-02 07:49:05 +02:00
match(void) {
2010-08-05 16:41:56 +02:00
size_t len;
Item *item, *itemend, *lexact, *lprefix, *lsubstr, *exactend, *prefixend, *substrend;
2007-09-17 20:53:14 +02:00
2010-07-02 07:49:05 +02:00
len = strlen(text);
matches = lexact = lprefix = lsubstr = itemend = exactend = prefixend = substrend = NULL;
2011-05-14 18:46:20 +02:00
for(item = items; item && item->text; item++)
if(!fstrncmp(text, item->text, len + 1))
appenditem(item, &lexact, &exactend);
else if(!fstrncmp(text, item->text, len))
appenditem(item, &lprefix, &prefixend);
else if(fstrstr(item->text, text))
appenditem(item, &lsubstr, &substrend);
2008-03-22 15:52:00 +01:00
if(lexact) {
matches = lexact;
2008-03-22 15:52:00 +01:00
itemend = exactend;
}
if(lprefix) {
if(itemend) {
2008-03-24 16:56:41 +01:00
itemend->right = lprefix;
2008-03-22 15:52:00 +01:00
lprefix->left = itemend;
}
else
matches = lprefix;
2008-03-22 15:52:00 +01:00
itemend = prefixend;
}
if(lsubstr) {
if(itemend) {
itemend->right = lsubstr;
lsubstr->left = itemend;
}
else
matches = lsubstr;
2008-03-22 15:52:00 +01:00
}
2011-05-05 16:46:48 +02:00
curr = sel = matches;
2007-09-17 20:53:14 +02:00
calcoffsets();
}
2010-08-12 16:35:51 +02:00
size_t
nextrune(int incr) {
size_t n, len;
len = strlen(text);
for(n = cursor + incr; n >= 0 && n < len && (text[n] & 0xc0) == 0x80; n += incr);
return n;
}
void
2010-08-12 16:35:51 +02:00
paste(void) {
char *p, *q;
int di;
unsigned long dl;
Atom da;
2010-08-12 16:35:51 +02:00
XGetWindowProperty(dc->dpy, win, utf8, 0, (sizeof text / 4) + 1, False,
utf8, &da, &di, &dl, &dl, (unsigned char **)&p);
insert(p, (q = strchr(p, '\n')) ? q-p : strlen(p));
XFree(p);
drawmenu();
}
2007-09-17 20:53:14 +02:00
void
readstdin(void) {
char buf[sizeof text], *p;
2011-05-14 18:46:20 +02:00
size_t i, size = 0;
2006-08-04 09:35:27 +02:00
2011-05-14 18:46:20 +02:00
for(i = 0; fgets(buf, sizeof buf, stdin); items[++i].text = NULL) {
if(i+1 == size / sizeof *items || !items)
if(!(items = realloc(items, (size += BUFSIZ))))
eprintf("cannot realloc %u bytes:", size);
if((p = strchr(buf, '\n')))
*p = '\0';
2011-05-14 18:46:20 +02:00
if(!(items[i].text = strdup(buf)))
2011-05-06 22:13:02 +02:00
eprintf("cannot strdup %u bytes:", strlen(buf)+1);
2011-05-14 18:46:20 +02:00
inputw = MAX(inputw, textw(dc, items[i].text));
2006-08-04 09:35:27 +02:00
}
}
void
run(void) {
XEvent ev;
while(!XNextEvent(dc->dpy, &ev))
switch(ev.type) {
case Expose:
if(ev.xexpose.count == 0)
drawmenu();
break;
case KeyPress:
keypress(&ev.xkey);
break;
case SelectionNotify:
2010-08-12 16:35:51 +02:00
if(ev.xselection.property == utf8)
paste();
break;
case VisibilityNotify:
if(ev.xvisibility.state != VisibilityUnobscured)
XRaiseWindow(dc->dpy, win);
break;
}
}
void
setup(void) {
int x, y, screen;
XSetWindowAttributes wa;
#ifdef XINERAMA
int n;
XineramaScreenInfo *info;
#endif
screen = DefaultScreen(dc->dpy);
root = RootWindow(dc->dpy, screen);
utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);
2010-11-12 00:56:39 +01:00
normcol[ColBG] = getcolor(dc, normbgcolor);
normcol[ColFG] = getcolor(dc, normfgcolor);
selcol[ColBG] = getcolor(dc, selbgcolor);
selcol[ColFG] = getcolor(dc, selfgcolor);
2010-08-05 16:41:56 +02:00
/* menu geometry */
bh = dc->font.height + 2;
2010-08-18 18:33:34 +02:00
lines = MAX(lines, 0);
mh = (lines + 1) * bh;
#ifdef XINERAMA
if((info = XineramaQueryScreens(dc->dpy, &n))) {
2011-05-12 14:17:41 +02:00
int i, di;
unsigned int du;
Window dw;
XQueryPointer(dc->dpy, root, &dw, &dw, &x, &y, &di, &di, &du);
2011-05-12 14:17:41 +02:00
for(i = 0; i < n-1; i++)
2010-11-02 13:15:15 +01:00
if((monitor == info[i].screen_number)
2011-05-12 14:17:41 +02:00
|| (monitor < 0 && INRECT(x, y, info[i].x_org, info[i].y_org, info[i].width, info[i].height)))
break;
x = info[i].x_org;
y = info[i].y_org + (topbar ? 0 : info[i].height - mh);
mw = info[i].width;
XFree(info);
}
else
#endif
{
x = 0;
y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh;
mw = DisplayWidth(dc->dpy, screen);
}
2010-08-05 16:41:56 +02:00
/* menu window */
wa.override_redirect = True;
wa.background_pixmap = ParentRelative;
wa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
win = XCreateWindow(dc->dpy, root, x, y, mw, mh, 0,
2010-08-09 12:54:46 +02:00
DefaultDepth(dc->dpy, screen), CopyFromParent,
DefaultVisual(dc->dpy, screen),
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
grabkeyboard();
2010-11-12 00:56:39 +01:00
resizedc(dc, mw, mh);
inputw = MIN(inputw, mw/3);
2010-11-12 00:56:39 +01:00
promptw = prompt ? textw(dc, prompt) : 0;
XMapRaised(dc->dpy, win);
}