2006-08-04 09:35:27 +02:00
|
|
|
/*
|
|
|
|
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* (C)opyright MMVI Sander van Dijk <a dot h dot vandijk at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dmenu.h"
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <X11/cursorfont.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
|
|
|
|
typedef struct Item Item;
|
|
|
|
struct Item {
|
|
|
|
Item *next; /* traverses all items */
|
|
|
|
Item *left, *right; /* traverses items matching current search pattern */
|
|
|
|
char *text;
|
|
|
|
};
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
/* static */
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2006-08-07 07:30:13 +02:00
|
|
|
static char text[4096];
|
2006-08-04 10:23:36 +02:00
|
|
|
static int mx, my, mw, mh;
|
2006-08-04 09:35:27 +02:00
|
|
|
static int ret = 0;
|
|
|
|
static int nitem = 0;
|
|
|
|
static unsigned int cmdw = 0;
|
2006-08-16 19:25:04 +02:00
|
|
|
static Bool running = True;
|
2006-08-04 10:23:36 +02:00
|
|
|
static Item *allitems = NULL; /* first of all items */
|
|
|
|
static Item *item = NULL; /* first of pattern matching items */
|
|
|
|
static Item *sel = NULL;
|
|
|
|
static Item *next = NULL;
|
|
|
|
static Item *prev = NULL;
|
|
|
|
static Item *curr = NULL;
|
|
|
|
static Window root;
|
|
|
|
static Window win;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
static void
|
2006-08-04 10:23:36 +02:00
|
|
|
calcoffsets()
|
2006-08-04 09:35:27 +02:00
|
|
|
{
|
2006-08-04 10:23:36 +02:00
|
|
|
unsigned int tw, w;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
if(!curr)
|
2006-08-04 09:35:27 +02:00
|
|
|
return;
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
w = cmdw + 2 * SPACE;
|
|
|
|
for(next = curr; next; next=next->right) {
|
|
|
|
tw = textw(next->text);
|
2006-08-04 09:35:27 +02:00
|
|
|
if(tw > mw / 3)
|
|
|
|
tw = mw / 3;
|
2006-08-04 10:23:36 +02:00
|
|
|
w += tw;
|
2006-08-04 09:35:27 +02:00
|
|
|
if(w > mw)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
w = cmdw + 2 * SPACE;
|
|
|
|
for(prev = curr; prev && prev->left; prev=prev->left) {
|
|
|
|
tw = textw(prev->left->text);
|
2006-08-04 09:35:27 +02:00
|
|
|
if(tw > mw / 3)
|
|
|
|
tw = mw / 3;
|
2006-08-04 10:23:36 +02:00
|
|
|
w += tw;
|
2006-08-04 09:35:27 +02:00
|
|
|
if(w > mw)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-08-04 10:23:36 +02:00
|
|
|
drawmenu()
|
|
|
|
{
|
|
|
|
Item *i;
|
|
|
|
|
|
|
|
dc.x = 0;
|
|
|
|
dc.y = 0;
|
|
|
|
dc.w = mw;
|
|
|
|
dc.h = mh;
|
2006-08-10 11:13:21 +02:00
|
|
|
drawtext(NULL, False, False);
|
2006-08-04 10:23:36 +02:00
|
|
|
|
|
|
|
/* print command */
|
2006-08-07 07:30:13 +02:00
|
|
|
if(cmdw && item)
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.w = cmdw;
|
2006-08-10 11:13:21 +02:00
|
|
|
drawtext(text[0] ? text : NULL, False, False);
|
2006-08-07 07:30:13 +02:00
|
|
|
dc.x += cmdw;
|
2006-08-04 10:23:36 +02:00
|
|
|
|
|
|
|
if(curr) {
|
|
|
|
dc.w = SPACE;
|
2006-08-10 11:13:21 +02:00
|
|
|
drawtext((curr && curr->left) ? "<" : NULL, False, False);
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.x += dc.w;
|
|
|
|
|
|
|
|
/* determine maximum items */
|
|
|
|
for(i = curr; i != next; i=i->right) {
|
|
|
|
dc.w = textw(i->text);
|
|
|
|
if(dc.w > mw / 3)
|
|
|
|
dc.w = mw / 3;
|
2006-08-10 11:13:21 +02:00
|
|
|
drawtext(i->text, sel == i, sel == i);
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.x += dc.w;
|
|
|
|
}
|
|
|
|
|
|
|
|
dc.x = mw - SPACE;
|
|
|
|
dc.w = SPACE;
|
2006-08-10 11:13:21 +02:00
|
|
|
drawtext(next ? ">" : NULL, False, False);
|
2006-08-04 10:23:36 +02:00
|
|
|
}
|
|
|
|
XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0);
|
|
|
|
XFlush(dpy);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-08-07 07:39:31 +02:00
|
|
|
match(char *pattern)
|
2006-08-04 09:35:27 +02:00
|
|
|
{
|
2006-08-04 10:23:36 +02:00
|
|
|
unsigned int plen;
|
2006-08-04 09:35:27 +02:00
|
|
|
Item *i, *j;
|
|
|
|
|
|
|
|
if(!pattern)
|
|
|
|
return;
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
plen = strlen(pattern);
|
2006-08-04 09:35:27 +02:00
|
|
|
item = j = NULL;
|
|
|
|
nitem = 0;
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
for(i = allitems; i; i=i->next)
|
2006-08-04 09:35:27 +02:00
|
|
|
if(!plen || !strncmp(pattern, i->text, plen)) {
|
|
|
|
if(!j)
|
|
|
|
item = i;
|
|
|
|
else
|
|
|
|
j->right = i;
|
|
|
|
i->left = j;
|
|
|
|
i->right = NULL;
|
|
|
|
j = i;
|
|
|
|
nitem++;
|
|
|
|
}
|
2006-08-04 10:23:36 +02:00
|
|
|
for(i = allitems; i; i=i->next)
|
2006-08-04 09:35:27 +02:00
|
|
|
if(plen && strncmp(pattern, i->text, plen)
|
|
|
|
&& strstr(i->text, pattern)) {
|
|
|
|
if(!j)
|
|
|
|
item = i;
|
|
|
|
else
|
|
|
|
j->right = i;
|
|
|
|
i->left = j;
|
|
|
|
i->right = NULL;
|
|
|
|
j = i;
|
|
|
|
nitem++;
|
|
|
|
}
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
curr = prev = next = sel = item;
|
|
|
|
calcoffsets();
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
kpress(XKeyEvent * e)
|
|
|
|
{
|
|
|
|
char buf[32];
|
|
|
|
int num, prev_nitem;
|
2006-08-04 10:23:36 +02:00
|
|
|
unsigned int i, len;
|
|
|
|
KeySym ksym;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
len = strlen(text);
|
2006-08-04 09:35:27 +02:00
|
|
|
buf[0] = 0;
|
|
|
|
num = XLookupString(e, buf, sizeof(buf), &ksym, 0);
|
|
|
|
|
|
|
|
if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
|
|
|
|
|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
|
|
|
|
|| IsPrivateKeypadKey(ksym))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* first check if a control mask is omitted */
|
|
|
|
if(e->state & ControlMask) {
|
|
|
|
switch (ksym) {
|
|
|
|
default: /* ignore other control sequences */
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case XK_h:
|
2006-08-10 10:10:32 +02:00
|
|
|
case XK_H:
|
2006-08-04 09:35:27 +02:00
|
|
|
ksym = XK_BackSpace;
|
|
|
|
break;
|
|
|
|
case XK_u:
|
2006-08-10 10:10:32 +02:00
|
|
|
case XK_U:
|
2006-08-04 09:35:27 +02:00
|
|
|
text[0] = 0;
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2006-08-04 10:23:36 +02:00
|
|
|
drawmenu();
|
2006-08-04 09:35:27 +02:00
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch(ksym) {
|
|
|
|
case XK_Left:
|
|
|
|
if(!(sel && sel->left))
|
|
|
|
return;
|
|
|
|
sel=sel->left;
|
2006-08-04 10:23:36 +02:00
|
|
|
if(sel->right == curr) {
|
|
|
|
curr = prev;
|
|
|
|
calcoffsets();
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_Tab:
|
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
strncpy(text, sel->text, sizeof(text));
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
|
|
|
case XK_Right:
|
|
|
|
if(!(sel && sel->right))
|
|
|
|
return;
|
|
|
|
sel=sel->right;
|
2006-08-04 10:23:36 +02:00
|
|
|
if(sel == next) {
|
|
|
|
curr = next;
|
|
|
|
calcoffsets();
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_Return:
|
|
|
|
if(e->state & ShiftMask) {
|
|
|
|
if(text)
|
|
|
|
fprintf(stdout, "%s", text);
|
|
|
|
}
|
|
|
|
else if(sel)
|
|
|
|
fprintf(stdout, "%s", sel->text);
|
|
|
|
else if(text)
|
|
|
|
fprintf(stdout, "%s", text);
|
|
|
|
fflush(stdout);
|
2006-08-16 19:25:04 +02:00
|
|
|
running = False;
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
|
|
|
case XK_Escape:
|
|
|
|
ret = 1;
|
2006-08-16 19:25:04 +02:00
|
|
|
running = False;
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
|
|
|
case XK_BackSpace:
|
|
|
|
if((i = len)) {
|
|
|
|
prev_nitem = nitem;
|
|
|
|
do {
|
|
|
|
text[--i] = 0;
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2006-08-04 09:35:27 +02:00
|
|
|
} while(i && nitem && prev_nitem == nitem);
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if(num && !iscntrl((int) buf[0])) {
|
|
|
|
buf[num] = 0;
|
|
|
|
if(len > 0)
|
|
|
|
strncat(text, buf, sizeof(text));
|
|
|
|
else
|
|
|
|
strncpy(text, buf, sizeof(text));
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
}
|
2006-08-04 10:23:36 +02:00
|
|
|
drawmenu();
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2006-08-07 07:39:31 +02:00
|
|
|
readstdin()
|
2006-08-04 09:35:27 +02:00
|
|
|
{
|
|
|
|
static char *maxname = NULL;
|
|
|
|
char *p, buf[1024];
|
|
|
|
unsigned int len = 0, max = 0;
|
|
|
|
Item *i, *new;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while(fgets(buf, sizeof(buf), stdin)) {
|
|
|
|
len = strlen(buf);
|
|
|
|
if (buf[len - 1] == '\n')
|
|
|
|
buf[len - 1] = 0;
|
|
|
|
p = estrdup(buf);
|
|
|
|
if(max < len) {
|
|
|
|
maxname = p;
|
|
|
|
max = len;
|
|
|
|
}
|
|
|
|
|
|
|
|
new = emalloc(sizeof(Item));
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
return maxname;
|
|
|
|
}
|
|
|
|
|
2006-08-04 10:23:36 +02:00
|
|
|
/* extern */
|
|
|
|
|
|
|
|
int screen;
|
|
|
|
Display *dpy;
|
|
|
|
DC dc = {0};
|
|
|
|
|
2006-08-04 09:35:27 +02:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
char *maxname;
|
2006-08-16 19:25:04 +02:00
|
|
|
Item *i;
|
2006-08-04 09:35:27 +02:00
|
|
|
XEvent ev;
|
2006-08-04 10:23:36 +02:00
|
|
|
XSetWindowAttributes wa;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2006-08-07 07:30:13 +02:00
|
|
|
if(argc == 2 && !strncmp("-v", argv[1], 3)) {
|
|
|
|
fputs("dmenu-"VERSION", (C)opyright MMVI Anselm R. Garbe\n", stdout);
|
|
|
|
exit(EXIT_SUCCESS);
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
2006-08-07 07:30:13 +02:00
|
|
|
else if(argc != 1)
|
|
|
|
eprint("usage: dmenu [-v]\n");
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
dpy = XOpenDisplay(0);
|
|
|
|
if(!dpy)
|
2006-08-05 14:05:04 +02:00
|
|
|
eprint("dmenu: cannot open display\n");
|
2006-08-04 09:35:27 +02:00
|
|
|
screen = DefaultScreen(dpy);
|
|
|
|
root = RootWindow(dpy, screen);
|
|
|
|
|
2006-08-07 07:39:31 +02:00
|
|
|
maxname = readstdin();
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
/* grab as early as possible, but after reading all items!!! */
|
|
|
|
while(XGrabKeyboard(dpy, root, True, GrabModeAsync,
|
|
|
|
GrabModeAsync, CurrentTime) != GrabSuccess)
|
|
|
|
usleep(1000);
|
|
|
|
|
|
|
|
/* style */
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.bg = getcolor(BGCOLOR);
|
|
|
|
dc.fg = getcolor(FGCOLOR);
|
2006-08-10 11:13:21 +02:00
|
|
|
dc.border = getcolor(BORDERCOLOR);
|
2006-08-04 10:23:36 +02:00
|
|
|
setfont(FONT);
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
wa.override_redirect = 1;
|
|
|
|
wa.background_pixmap = ParentRelative;
|
|
|
|
wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask;
|
|
|
|
|
|
|
|
mx = my = 0;
|
|
|
|
mw = DisplayWidth(dpy, screen);
|
2006-08-04 10:23:36 +02:00
|
|
|
mh = dc.font.height + 4;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
win = XCreateWindow(dpy, root, mx, my, mw, mh, 0,
|
|
|
|
DefaultDepth(dpy, screen), CopyFromParent,
|
|
|
|
DefaultVisual(dpy, screen),
|
|
|
|
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
|
|
|
|
XDefineCursor(dpy, win, XCreateFontCursor(dpy, XC_xterm));
|
|
|
|
|
|
|
|
/* pixmap */
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.drawable = XCreatePixmap(dpy, root, mw, mh, DefaultDepth(dpy, screen));
|
|
|
|
dc.gc = XCreateGC(dpy, root, 0, 0);
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
if(maxname)
|
2006-08-07 07:30:13 +02:00
|
|
|
cmdw = textw(maxname);
|
|
|
|
if(cmdw > mw / 3)
|
|
|
|
cmdw = mw / 3;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
text[0] = 0;
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2006-08-04 09:35:27 +02:00
|
|
|
XMapRaised(dpy, win);
|
2006-08-04 10:23:36 +02:00
|
|
|
drawmenu();
|
|
|
|
XSync(dpy, False);
|
2006-08-04 09:35:27 +02:00
|
|
|
|
|
|
|
/* main event loop */
|
2006-08-16 19:25:04 +02:00
|
|
|
while(running && !XNextEvent(dpy, &ev)) {
|
2006-08-04 09:35:27 +02:00
|
|
|
switch (ev.type) {
|
|
|
|
case KeyPress:
|
|
|
|
kpress(&ev.xkey);
|
|
|
|
break;
|
|
|
|
case Expose:
|
|
|
|
if(ev.xexpose.count == 0)
|
2006-08-04 10:23:36 +02:00
|
|
|
drawmenu();
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XUngrabKeyboard(dpy, CurrentTime);
|
2006-08-16 19:25:04 +02:00
|
|
|
while(allitems) {
|
|
|
|
i = allitems->next;
|
|
|
|
free(allitems->text);
|
|
|
|
free(allitems);
|
|
|
|
allitems = i;
|
|
|
|
}
|
|
|
|
if(dc.font.set)
|
|
|
|
XFreeFontSet(dpy, dc.font.set);
|
|
|
|
else
|
|
|
|
XFreeFont(dpy, dc.font.xfont);
|
2006-08-04 10:23:36 +02:00
|
|
|
XFreePixmap(dpy, dc.drawable);
|
|
|
|
XFreeGC(dpy, dc.gc);
|
2006-08-04 09:35:27 +02:00
|
|
|
XDestroyWindow(dpy, win);
|
|
|
|
XCloseDisplay(dpy);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|