dmenu/dmenu.c

482 lines
10 KiB
C
Raw Normal View History

2007-05-30 12:19:06 +02:00
/* See LICENSE file for copyright and license details. */
2006-08-04 09:35:27 +02:00
#include <ctype.h>
2008-08-25 10:38:19 +02:00
#include <locale.h>
2006-08-04 09:35:27 +02:00
#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>
2008-06-13 12:46:50 +02:00
#include <X11/keysym.h>
2007-09-16 20:14:09 +02:00
#include <X11/Xlib.h>
2006-08-04 09:35:27 +02:00
#include <X11/Xutil.h>
2010-07-02 07:49:05 +02:00
#include "dmenu.h"
2007-01-11 15:52:37 +01:00
2006-08-04 09:35:27 +02:00
typedef struct Item Item;
struct Item {
char *text;
2010-05-28 12:42:49 +02:00
Item *next; /* traverses all items */
Item *left, *right; /* traverses items matching current search pattern */
2006-08-04 09:35:27 +02:00
};
2007-09-16 20:14:09 +02:00
/* forward declarations */
2008-06-13 12:46:50 +02:00
static void appenditem(Item *i, Item **list, Item **last);
static void calcoffsetsh(void);
static void calcoffsetsv(void);
2008-06-13 12:46:50 +02:00
static char *cistrstr(const char *s, const char *sub);
static void cleanup(void);
static void dinput(void);
2010-07-30 11:25:55 +02:00
static void drawitem(const char *s, unsigned long col[ColLast]);
static void drawmenuh(void);
static void drawmenuv(void);
2010-07-02 07:49:05 +02:00
static void match(void);
2008-06-13 12:46:50 +02:00
static void readstdin(void);
2007-09-16 20:14:09 +02:00
2007-09-17 20:53:14 +02:00
/* variables */
static char **argp = NULL;
2008-06-13 12:46:50 +02:00
static char *maxname = NULL;
2010-07-02 07:49:05 +02:00
static unsigned int cmdw = 0;
2010-06-23 14:49:24 +02:00
static unsigned int lines = 0;
2010-05-28 12:42:49 +02:00
static Item *allitems = NULL; /* first of all items */
static Item *item = NULL; /* first of pattern matching items */
2008-06-13 12:46:50 +02:00
static Item *sel = NULL;
static Item *next = NULL;
static Item *prev = NULL;
static Item *curr = NULL;
2010-06-16 16:36:17 +02:00
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
2008-06-13 12:46:50 +02:00
static char *(*fstrstr)(const char *, const char *) = strstr;
static void (*calcoffsets)(void) = calcoffsetsh;
2007-09-17 20:53:14 +02:00
2008-03-22 15:52:00 +01:00
void
appenditem(Item *i, Item **list, Item **last) {
if(!(*last))
*list = i;
else
2008-03-22 15:52:00 +01:00
(*last)->right = i;
i->left = *last;
i->right = NULL;
2008-03-22 15:52:00 +01:00
*last = i;
}
2007-09-17 20:53:14 +02:00
void
calcoffsetsh(void) {
2010-07-02 07:49:05 +02:00
unsigned int w, x;
2006-08-04 09:35:27 +02:00
2010-07-02 07:49:05 +02:00
w = promptw + cmdw + textw(&dc, "<") + textw(&dc, ">");
for(x = w, next = curr; next; next = next->right)
2010-07-02 04:44:01 +02:00
if((x += MIN(textw(&dc, next->text), mw / 3)) > mw)
break;
2010-07-02 07:49:05 +02:00
for(x = w, prev = curr; prev && prev->left; prev = prev->left)
2010-07-02 04:44:01 +02:00
if((x += MIN(textw(&dc, prev->left->text), mw / 3)) > mw)
break;
2006-08-04 09:35:27 +02:00
}
void
calcoffsetsv(void) {
unsigned int i;
next = prev = curr;
for(i = 0; i < lines && next; i++)
next = next->right;
2010-06-30 01:52:14 +02:00
mh = (dc.font.height + 2) * (i + 1);
for(i = 0; i < lines && prev && prev->left; i++)
prev = prev->left;
}
char *
cistrstr(const char *s, const char *sub) {
int c, csub;
2008-07-16 19:18:38 +02:00
unsigned int len;
if(!sub)
return (char *)s;
2010-06-16 16:36:17 +02:00
if((c = tolower(*sub++)) != '\0') {
len = strlen(sub);
do {
do {
2010-04-07 18:15:34 +02:00
if((csub = *s++) == '\0')
return NULL;
}
while(tolower(csub) != c);
}
while(strncasecmp(s, sub, len) != 0);
s--;
}
return (char *)s;
}
2007-09-17 20:53:14 +02:00
void
cleanup(void) {
2010-06-23 14:49:24 +02:00
Item *itm;
while(allitems) {
itm = allitems->next;
free(allitems->text);
free(allitems);
allitems = itm;
}
2010-06-24 17:18:18 +02:00
cleanupdraw(&dc);
2007-09-17 20:53:14 +02:00
XDestroyWindow(dpy, win);
XUngrabKeyboard(dpy, CurrentTime);
2010-07-02 04:44:01 +02:00
XCloseDisplay(dpy);
2007-09-17 20:53:14 +02:00
}
void
dinput(void) {
cleanup();
argp[0] = "dinput";
argp[1] = text;
execvp("dinput", argp);
eprint("cannot exec dinput\n");
}
void
2010-07-02 07:49:05 +02:00
drawbar(void) {
2006-08-04 10:23:36 +02:00
dc.x = 0;
dc.y = 0;
dc.w = mw;
dc.h = mh;
2010-07-27 14:40:32 +02:00
drawbox(&dc, normcol);
2010-06-30 01:52:14 +02:00
dc.h = dc.font.height + 2;
dc.y = topbar ? 0 : mh - dc.h;
/* print prompt? */
2010-05-03 00:17:02 +02:00
if(prompt) {
dc.w = promptw;
2010-07-30 11:25:55 +02:00
drawbox(&dc, selcol);
2010-07-02 06:50:19 +02:00
drawtext(&dc, prompt, selcol);
2010-05-03 00:17:02 +02:00
dc.x += dc.w;
}
2010-05-03 00:17:02 +02:00
dc.w = mw - dc.x;
2006-08-04 10:23:36 +02:00
/* print command */
2010-04-14 19:35:19 +02:00
if(cmdw && item && lines == 0)
2006-08-04 10:23:36 +02:00
dc.w = cmdw;
2010-07-02 06:50:19 +02:00
drawtext(&dc, text, normcol);
2010-06-30 01:52:14 +02:00
if(lines > 0)
drawmenuv();
2010-06-30 11:45:24 +02:00
else if(curr)
2010-06-30 01:52:14 +02:00
drawmenuh();
2010-07-02 06:50:19 +02:00
commitdraw(&dc, win);
2006-08-04 10:23:36 +02:00
}
2010-07-30 10:18:35 +02:00
void
2010-07-30 11:25:55 +02:00
drawitem(const char *s, unsigned long col[ColLast]) {
2010-07-30 11:26:12 +02:00
const char *p;
unsigned int w = textnw(&dc, text, strlen(text));
2010-07-30 10:18:35 +02:00
drawbox(&dc, col);
drawtext(&dc, s, col);
2010-07-30 11:26:12 +02:00
for(p = fstrstr(s, text); *text && (p = fstrstr(p, text)); p++)
drawline(&dc, textnw(&dc, s, p-s) + dc.h/2 - 1, dc.h-2, w, 1, col);
2010-07-30 10:18:35 +02:00
}
2010-03-07 09:32:16 +01:00
void
drawmenuh(void) {
Item *i;
2010-04-14 19:35:19 +02:00
dc.x += cmdw;
2010-07-02 07:49:05 +02:00
dc.w = textw(&dc, "<");
2010-07-02 06:50:19 +02:00
drawtext(&dc, curr->left ? "<" : NULL, normcol);
2010-03-07 09:32:16 +01:00
dc.x += dc.w;
2010-06-25 05:33:41 +02:00
for(i = curr; i != next; i = i->right) {
2010-06-24 17:18:18 +02:00
dc.w = MIN(textw(&dc, i->text), mw / 3);
2010-07-30 10:18:35 +02:00
drawitem(i->text, (sel == i) ? selcol : normcol);
2010-03-07 09:32:16 +01:00
dc.x += dc.w;
}
2010-07-02 07:49:05 +02:00
dc.w = textw(&dc, ">");
2010-05-03 00:17:02 +02:00
dc.x = mw - dc.w;
2010-07-02 06:50:19 +02:00
drawtext(&dc, next ? ">" : NULL, normcol);
2010-03-07 09:32:16 +01:00
}
void
drawmenuv(void) {
Item *i;
2010-06-30 01:52:14 +02:00
XWindowAttributes wa;
2010-06-30 01:52:14 +02:00
dc.y = topbar ? dc.h : 0;
2010-05-05 12:42:39 +02:00
dc.w = mw - dc.x;
2010-06-25 05:33:41 +02:00
for(i = curr; i != next; i = i->right) {
2010-07-30 10:18:35 +02:00
drawitem(i->text, (sel == i) ? selcol : normcol);
2010-06-11 10:24:33 +02:00
dc.y += dc.h;
}
2010-06-30 01:52:14 +02:00
if(!XGetWindowAttributes(dpy, win, &wa))
eprint("cannot get window attributes");
XMoveResizeWindow(dpy, win, wa.x, wa.y + (topbar ? 0 : wa.height - mh), mw, mh);
}
2007-09-17 20:53:14 +02:00
void
2010-06-25 05:33:41 +02:00
kpress(XKeyEvent *e) {
2010-03-22 08:50:26 +01:00
char buf[sizeof text];
2010-06-20 01:44:26 +02:00
int num;
unsigned int i, 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);
num = XLookupString(e, buf, sizeof buf, &ksym, NULL);
2010-06-16 16:36:17 +02:00
if(ksym == XK_KP_Enter)
ksym = XK_Return;
else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
ksym = (ksym - XK_KP_0) + XK_0;
else if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
|| IsPrivateKeypadKey(ksym))
2006-08-04 09:35:27 +02:00
return;
/* first check if a control mask is omitted */
if(e->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-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:
2010-06-25 05:33:41 +02:00
case XK_m:
ksym = XK_Return;
break;
case XK_n:
ksym = XK_Down;
break;
case XK_p:
ksym = XK_Up;
break;
2006-08-04 09:35:27 +02:00
case XK_u:
2010-06-23 13:04:54 +02:00
text[0] = '\0';
2010-07-02 07:49:05 +02:00
match();
break;
case XK_w:
2010-06-23 13:04:54 +02:00
if(len == 0)
return;
i = len;
while(i-- > 0 && text[i] == ' ');
while(i-- > 0 && text[i] != ' ');
text[++i] = '\0';
2010-07-02 07:49:05 +02:00
match();
break;
}
}
2006-08-04 09:35:27 +02:00
switch(ksym) {
default:
2010-06-23 13:04:54 +02:00
num = MIN(num, sizeof text);
if(num && !iscntrl((int) buf[0])) {
2010-06-23 13:04:54 +02:00
memcpy(text + len, buf, num + 1);
len += num;
2010-07-02 07:49:05 +02:00
match();
}
break;
case XK_BackSpace:
2010-06-23 13:04:54 +02:00
if(len == 0)
2010-06-20 01:44:26 +02:00
return;
2010-06-23 13:04:54 +02:00
for(i = 1; len - i > 0 && !IS_UTF8_1ST_CHAR(text[len - i]); i++);
len -= i;
text[len] = '\0';
2010-07-02 07:49:05 +02:00
match();
2010-03-22 08:50:26 +01:00
break;
case XK_End:
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:
sel = curr = item;
calcoffsets();
break;
2006-08-04 09:35:27 +02:00
case XK_Left:
case XK_Up:
if(!sel || !sel->left)
return;
sel = sel->left;
if(sel->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:
2010-06-30 01:52:14 +02:00
if(e->state & ShiftMask)
dinput();
fprintf(stdout, "%s", sel ? sel->text : text);
2006-08-04 09:35:27 +02:00
fflush(stdout);
2010-07-02 04:44:01 +02:00
exit(EXIT_SUCCESS);
case XK_Right:
case XK_Down:
if(!sel || !sel->right)
return;
sel = sel->right;
if(sel == next) {
curr = next;
calcoffsets();
}
2006-08-04 09:35:27 +02:00
break;
case XK_Tab:
if(sel)
strncpy(text, sel->text, sizeof text);
dinput();
break;
2006-08-04 09:35:27 +02:00
}
2010-07-02 07:49:05 +02:00
drawbar();
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) {
unsigned int len;
2008-03-22 15:52:00 +01:00
Item *i, *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);
2008-03-22 15:52:00 +01:00
item = lexact = lprefix = lsubstr = itemend = exactend = prefixend = substrend = NULL;
for(i = allitems; i; i = i->next)
2010-07-02 07:49:05 +02:00
if(!fstrncmp(text, i->text, len + 1))
2008-03-22 15:52:00 +01:00
appenditem(i, &lexact, &exactend);
2010-07-02 07:49:05 +02:00
else if(!fstrncmp(text, i->text, len))
2008-03-22 15:52:00 +01:00
appenditem(i, &lprefix, &prefixend);
2010-07-02 07:49:05 +02:00
else if(fstrstr(i->text, text))
2008-03-22 15:52:00 +01:00
appenditem(i, &lsubstr, &substrend);
if(lexact) {
item = lexact;
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
item = lprefix;
itemend = prefixend;
}
if(lsubstr) {
if(itemend) {
itemend->right = lsubstr;
lsubstr->left = itemend;
}
else
item = lsubstr;
}
2007-09-17 20:53:14 +02:00
curr = prev = next = sel = item;
calcoffsets();
}
void
readstdin(void) {
2010-04-01 22:31:09 +02:00
char *p, buf[sizeof text];
unsigned int len = 0, max = 0;
2006-08-04 09:35:27 +02:00
Item *i, *new;
2010-04-01 22:31:09 +02:00
i = NULL;
2006-11-26 15:49:33 +01:00
while(fgets(buf, sizeof buf, stdin)) {
2010-04-01 22:31:09 +02:00
len = strlen(buf);
if(buf[len-1] == '\n')
buf[--len] = '\0';
if(!(p = strdup(buf)))
eprint("cannot strdup %u bytes\n", len);
2010-06-16 16:36:17 +02:00
if((max = MAX(max, len)) == len)
2006-08-04 09:35:27 +02:00
maxname = p;
2010-06-11 10:24:33 +02:00
if(!(new = malloc(sizeof *new)))
eprint("cannot malloc %u bytes\n", sizeof *new);
2006-08-04 09:35:27 +02:00
new->next = new->left = new->right = NULL;
new->text = p;
if(!i)
2006-08-04 10:23:36 +02:00
allitems = new;
2006-08-04 09:35:27 +02:00
else
i->next = new;
i = new;
}
}
2007-09-17 20:53:14 +02:00
int
main(int argc, char *argv[]) {
2008-07-16 19:18:38 +02:00
unsigned int i;
2007-09-17 20:53:14 +02:00
/* command line args */
progname = "dmenu";
2007-09-17 20:53:14 +02:00
for(i = 1; i < argc; i++)
2008-03-12 22:37:43 +01:00
if(!strcmp(argv[i], "-i")) {
fstrncmp = strncasecmp;
fstrstr = cistrstr;
2008-03-12 22:37:43 +01:00
}
else if(!strcmp(argv[i], "-b"))
topbar = False;
else if(!strcmp(argv[i], "-l")) {
2010-03-07 09:32:16 +01:00
if(++i < argc) lines = atoi(argv[i]);
2010-06-11 10:24:33 +02:00
if(lines > 0)
calcoffsets = calcoffsetsv;
}
2007-09-17 20:53:14 +02:00
else if(!strcmp(argv[i], "-fn")) {
if(++i < argc) font = argv[i];
}
else if(!strcmp(argv[i], "-nb")) {
if(++i < argc) normbgcolor = argv[i];
2007-09-17 20:53:14 +02:00
}
else if(!strcmp(argv[i], "-nf")) {
if(++i < argc) normfgcolor = argv[i];
2007-09-17 20:53:14 +02:00
}
else if(!strcmp(argv[i], "-p")) {
if(++i < argc) prompt = argv[i];
}
else if(!strcmp(argv[i], "-sb")) {
if(++i < argc) selbgcolor = argv[i];
2007-09-17 20:53:14 +02:00
}
else if(!strcmp(argv[i], "-sf")) {
if(++i < argc) selfgcolor = argv[i];
2006-08-04 09:35:27 +02:00
}
else if(!strcmp(argv[i], "-v")) {
printf("dmenu-"VERSION", © 2006-2010 dmenu engineers, see LICENSE for details\n");
exit(EXIT_SUCCESS);
}
else {
fputs("usage: dmenu [-i] [-b] [-l <lines>] [-fn <font>] [-nb <color>]\n"
2010-07-02 04:44:01 +02:00
" [-nf <color>] [-p <prompt>] [-sb <color>] [-sf <color>] [-v]\n", stderr);
exit(EXIT_FAILURE);
}
2008-08-25 10:38:19 +02:00
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
2010-06-11 10:24:33 +02:00
fprintf(stderr, "dmenu: warning: no locale support\n");
if(!(dpy = XOpenDisplay(NULL)))
eprint("cannot open display\n");
2010-07-02 04:44:01 +02:00
if(atexit(&cleanup) != 0)
eprint("cannot register cleanup\n");
2007-09-17 20:53:14 +02:00
screen = DefaultScreen(dpy);
root = RootWindow(dpy, screen);
if(!(argp = malloc(sizeof *argp * (argc+2))))
eprint("cannot malloc %u bytes\n", sizeof *argp * (argc+2));
memcpy(argp + 2, argv + 1, sizeof *argp * argc);
2006-08-04 09:35:27 +02:00
2010-04-01 22:31:09 +02:00
readstdin();
2010-07-02 04:44:01 +02:00
grabkeyboard();
2010-07-02 07:49:05 +02:00
setup(lines);
if(maxname)
cmdw = MIN(textw(&dc, maxname), mw / 3);
match();
2007-09-17 20:53:14 +02:00
run();
2010-07-02 04:44:01 +02:00
return 0;
2006-08-04 09:35:27 +02:00
}