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>
|
2011-05-15 22:54:26 +02:00
|
|
|
#include <strings.h>
|
2006-08-04 09:35:27 +02:00
|
|
|
#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>
|
2010-07-30 14:40:56 +02:00
|
|
|
#ifdef XINERAMA
|
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
#endif
|
2010-11-12 00:56:39 +01:00
|
|
|
#include "draw.h"
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
#define INRECT(x,y,rx,ry,rw,rh) ((x) >= (rx) && (x) < (rx)+(rw) && (y) >= (ry) && (y) < (ry)+(rh))
|
2010-07-30 14:40:56 +02:00
|
|
|
#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 {
|
2008-03-18 17:52:51 +01:00
|
|
|
char *text;
|
2011-05-14 18:46:20 +02:00
|
|
|
Item *left, *right;
|
2006-08-04 09:35:27 +02:00
|
|
|
};
|
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
static void appenditem(Item *item, Item **list, Item **last);
|
2010-08-03 18:10:29 +02:00
|
|
|
static void calcoffsets(void);
|
2011-07-14 21:03:08 +02:00
|
|
|
static char *cistrstr(const char *s, const char *sub);
|
2010-07-30 14:40:56 +02:00
|
|
|
static void drawmenu(void);
|
|
|
|
static void grabkeyboard(void);
|
2011-05-15 17:05:32 +02:00
|
|
|
static void insert(const char *str, ssize_t n);
|
2010-08-09 12:54:46 +02:00
|
|
|
static void keypress(XKeyEvent *ev);
|
2011-09-19 11:40:56 +02:00
|
|
|
static void match(void);
|
2011-05-17 00:35:14 +02:00
|
|
|
static size_t nextrune(int inc);
|
2010-08-12 16:35:51 +02:00
|
|
|
static void paste(void);
|
2008-06-13 12:46:50 +02:00
|
|
|
static void readstdin(void);
|
2010-07-30 14:40:56 +02:00
|
|
|
static void run(void);
|
|
|
|
static void setup(void);
|
2011-05-18 17:20:03 +02:00
|
|
|
static void usage(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;
|
2011-05-18 17:20:03 +02:00
|
|
|
static int inputw, promptw;
|
2010-08-18 18:33:34 +02:00
|
|
|
static int lines = 0;
|
2010-07-31 15:56:27 +02:00
|
|
|
static size_t cursor = 0;
|
2010-08-10 19:09:02 +02:00
|
|
|
static const char *font = NULL;
|
2010-08-02 15:22:54 +02:00
|
|
|
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";
|
2010-07-30 14:40:56 +02:00
|
|
|
static unsigned long normcol[ColLast];
|
|
|
|
static unsigned long selcol[ColLast];
|
2010-08-12 16:35:51 +02:00
|
|
|
static Atom utf8;
|
2010-07-30 14:40:56 +02:00
|
|
|
static Bool topbar = True;
|
2010-08-02 15:22:54 +02:00
|
|
|
static DC *dc;
|
2010-08-11 15:24:25 +02:00
|
|
|
static Item *items = NULL;
|
2011-05-14 19:39:27 +02:00
|
|
|
static Item *matches, *matchend;
|
|
|
|
static Item *prev, *curr, *next, *sel;
|
2011-05-15 15:13:31 +02:00
|
|
|
static Window win;
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2010-06-16 16:36:17 +02:00
|
|
|
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
|
2011-07-14 21:03:08 +02:00
|
|
|
static char *(*fstrstr)(const char *, const char *) = strstr;
|
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;
|
|
|
|
|
|
|
|
for(i = 1; i < argc; i++)
|
|
|
|
/* single flags */
|
|
|
|
if(!strcmp(argv[i], "-v")) {
|
2011-05-18 17:20:03 +02:00
|
|
|
puts("dmenu-"VERSION", © 2006-2011 dmenu engineers, see LICENSE for details");
|
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-07-14 21:03:08 +02:00
|
|
|
else if(!strcmp(argv[i], "-i")) {
|
2011-05-11 13:25:50 +02:00
|
|
|
fstrncmp = strncasecmp;
|
2011-07-14 21:03:08 +02:00
|
|
|
fstrstr = cistrstr;
|
|
|
|
}
|
2011-05-15 14:58:54 +02:00
|
|
|
else if(i+1 == argc)
|
2011-05-18 17:20:03 +02:00
|
|
|
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], "-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-18 17:20:03 +02:00
|
|
|
usage();
|
2010-11-17 05:33:34 +01:00
|
|
|
|
|
|
|
dc = initdc();
|
|
|
|
initfont(dc, font);
|
2011-05-08 16:15:24 +02:00
|
|
|
|
|
|
|
if(fast) {
|
2011-05-15 15:13:31 +02:00
|
|
|
grabkeyboard();
|
2011-05-08 16:15:24 +02:00
|
|
|
readstdin();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
readstdin();
|
2011-05-15 15:13:31 +02:00
|
|
|
grabkeyboard();
|
2011-05-08 16:15:24 +02:00
|
|
|
}
|
2011-05-15 15:13:31 +02:00
|
|
|
setup();
|
2010-11-17 05:33:34 +01:00
|
|
|
run();
|
|
|
|
|
2011-07-14 21:03:08 +02:00
|
|
|
return EXIT_FAILURE; /* unreachable */
|
2010-11-17 05:33:34 +01:00
|
|
|
}
|
|
|
|
|
2008-03-22 15:52:00 +01:00
|
|
|
void
|
2010-07-31 15:56:27 +02:00
|
|
|
appenditem(Item *item, Item **list, Item **last) {
|
2011-09-19 11:40:56 +02:00
|
|
|
if(*last)
|
2010-07-31 15:56:27 +02:00
|
|
|
(*last)->right = item;
|
2011-09-19 11:40:56 +02:00
|
|
|
else
|
|
|
|
*list = item;
|
2011-07-14 21:03:08 +02:00
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
item->left = *last;
|
|
|
|
item->right = NULL;
|
|
|
|
*last = item;
|
2007-09-23 18:26:41 +02:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
2010-08-09 12:54:46 +02:00
|
|
|
calcoffsets(void) {
|
2011-05-16 13:59:31 +02:00
|
|
|
int i, n;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2010-08-03 18:10:29 +02:00
|
|
|
if(lines > 0)
|
2010-08-11 15:24:25 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-07-14 21:03:08 +02:00
|
|
|
char *
|
|
|
|
cistrstr(const char *s, const char *sub) {
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
for(len = strlen(sub); *s; s++)
|
|
|
|
if(!strncasecmp(s, sub, len))
|
|
|
|
return (char *)s;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-11-28 13:28:15 +01:00
|
|
|
void
|
2010-07-30 14:40:56 +02:00
|
|
|
drawmenu(void) {
|
2010-08-09 12:54:46 +02:00
|
|
|
int curpos;
|
2010-08-03 18:10:29 +02:00
|
|
|
Item *item;
|
|
|
|
|
2010-08-02 15:22:54 +02:00
|
|
|
dc->x = 0;
|
|
|
|
dc->y = 0;
|
2010-08-11 15:24:25 +02:00
|
|
|
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);
|
2010-08-02 15:22:54 +02:00
|
|
|
dc->x = dc->w;
|
2006-12-13 14:14:41 +01:00
|
|
|
}
|
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);
|
2009-11-28 13:28:15 +01:00
|
|
|
}
|
2010-11-12 00:56:39 +01:00
|
|
|
mapdc(dc, win, mw, mh);
|
2010-08-11 15:24:25 +02:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
2010-07-30 14:40:56 +02:00
|
|
|
grabkeyboard(void) {
|
2010-07-31 15:56:27 +02:00
|
|
|
int i;
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
for(i = 0; i < 1000; i++) {
|
2011-05-15 15:13:31 +02:00
|
|
|
if(XGrabKeyboard(dc->dpy, DefaultRootWindow(dc->dpy), True,
|
|
|
|
GrabModeAsync, GrabModeAsync, CurrentTime) == GrabSuccess)
|
2010-07-30 14:40:56 +02:00
|
|
|
return;
|
|
|
|
usleep(1000);
|
|
|
|
}
|
2010-07-31 15:56:27 +02:00
|
|
|
eprintf("cannot grab keyboard\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-05-15 17:05:32 +02:00
|
|
|
insert(const char *str, ssize_t n) {
|
2010-08-12 16:35:51 +02:00
|
|
|
if(strlen(text) + n > sizeof text - 1)
|
|
|
|
return;
|
2011-05-15 14:58:54 +02:00
|
|
|
memmove(&text[cursor + n], &text[cursor], sizeof text - cursor - MAX(n, 0));
|
2010-07-31 15:56:27 +02:00
|
|
|
if(n > 0)
|
2011-05-15 17:05:32 +02:00
|
|
|
memcpy(&text[cursor], str, n);
|
2010-07-31 15:56:27 +02:00
|
|
|
cursor += n;
|
2011-09-19 11:40:56 +02:00
|
|
|
match();
|
2010-07-30 14:40:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-09 12:54:46 +02:00
|
|
|
keypress(XKeyEvent *ev) {
|
|
|
|
char buf[32];
|
2006-08-04 10:23:36 +02:00
|
|
|
KeySym ksym;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2010-08-09 12:54:46 +02:00
|
|
|
XLookupString(ev, buf, sizeof buf, &ksym, NULL);
|
2011-05-15 22:54:26 +02:00
|
|
|
if(ev->state & ControlMask) {
|
|
|
|
KeySym lower, upper;
|
|
|
|
|
|
|
|
XConvertCase(ksym, &lower, &upper);
|
|
|
|
switch(lower) {
|
2011-07-14 21:03:08 +02:00
|
|
|
case XK_a: ksym = XK_Home; break;
|
|
|
|
case XK_b: ksym = XK_Left; break;
|
|
|
|
case XK_c: ksym = XK_Escape; break;
|
|
|
|
case XK_d: ksym = XK_Delete; break;
|
|
|
|
case XK_e: ksym = XK_End; break;
|
|
|
|
case XK_f: ksym = XK_Right; break;
|
|
|
|
case XK_h: ksym = XK_BackSpace; break;
|
|
|
|
case XK_i: ksym = XK_Tab; break;
|
|
|
|
case XK_j: ksym = XK_Return; break;
|
|
|
|
case XK_m: ksym = XK_Return; break;
|
|
|
|
case XK_n: ksym = XK_Up; break;
|
|
|
|
case XK_p: ksym = XK_Down; break;
|
|
|
|
|
|
|
|
case XK_k: /* delete right */
|
2010-07-31 15:56:27 +02:00
|
|
|
text[cursor] = '\0';
|
2011-09-19 11:40:56 +02:00
|
|
|
match();
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
2011-07-14 21:03:08 +02:00
|
|
|
case XK_u: /* delete left */
|
2010-08-12 16:35:51 +02:00
|
|
|
insert(NULL, 0 - cursor);
|
2009-11-28 13:28:15 +01:00
|
|
|
break;
|
2011-07-14 21:03:08 +02:00
|
|
|
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);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
2011-07-14 21:03:08 +02:00
|
|
|
case XK_y: /* paste selection */
|
2010-11-12 01:00:32 +01:00
|
|
|
XConvertSelection(dc->dpy, XA_PRIMARY, utf8, utf8, win, CurrentTime);
|
|
|
|
return;
|
2011-07-14 21:03:08 +02:00
|
|
|
default:
|
|
|
|
return;
|
2006-12-14 14:40:58 +01:00
|
|
|
}
|
2011-05-15 22:54:26 +02:00
|
|
|
}
|
2006-08-04 09:35:27 +02:00
|
|
|
switch(ksym) {
|
2006-12-12 09:57:42 +01:00
|
|
|
default:
|
2010-09-13 15:22:02 +02:00
|
|
|
if(!iscntrl(*buf))
|
2010-08-12 16:35:51 +02:00
|
|
|
insert(buf, strlen(buf));
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
case XK_Delete:
|
2011-05-15 22:54:26 +02:00
|
|
|
if(text[cursor] == '\0')
|
2010-07-30 14:40:56 +02:00
|
|
|
return;
|
2010-08-12 16:35:51 +02:00
|
|
|
cursor = nextrune(+1);
|
2011-07-17 15:06:53 +02:00
|
|
|
/* fallthrough */
|
2010-08-12 16:35:51 +02:00
|
|
|
case XK_BackSpace:
|
2011-07-14 21:03:08 +02:00
|
|
|
if(cursor == 0)
|
|
|
|
return;
|
|
|
|
insert(NULL, nextrune(-1) - cursor);
|
2010-03-22 08:50:26 +01:00
|
|
|
break;
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_End:
|
2011-05-15 22:54:26 +02:00
|
|
|
if(text[cursor] != '\0') {
|
|
|
|
cursor = strlen(text);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-05-14 19:39:27 +02:00
|
|
|
if(next) {
|
|
|
|
curr = matchend;
|
2006-12-12 09:57:42 +01:00
|
|
|
calcoffsets();
|
2011-05-14 19:39:27 +02:00
|
|
|
curr = prev;
|
|
|
|
calcoffsets();
|
|
|
|
while(next && (curr = curr->right))
|
|
|
|
calcoffsets();
|
2006-12-12 09:57:42 +01:00
|
|
|
}
|
2011-05-14 19:39:27 +02:00
|
|
|
sel = matchend;
|
2006-12-12 09:57:42 +01:00
|
|
|
break;
|
|
|
|
case XK_Escape:
|
2010-07-02 04:44:01 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_Home:
|
2010-07-31 15:56:27 +02:00
|
|
|
if(sel == matches) {
|
|
|
|
cursor = 0;
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-07-31 15:56:27 +02:00
|
|
|
sel = curr = matches;
|
2006-12-12 09:57:42 +01:00
|
|
|
calcoffsets();
|
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
case XK_Left:
|
2010-07-31 15:56:27 +02:00
|
|
|
if(cursor > 0 && (!sel || !sel->left || lines > 0)) {
|
2010-08-12 16:35:51 +02:00
|
|
|
cursor = nextrune(-1);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-07-06 14:40:36 +02:00
|
|
|
/* fallthrough */
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_Up:
|
2010-08-12 16:35:51 +02:00
|
|
|
if(sel && sel->left && (sel = sel->left)->right == curr) {
|
2010-06-20 16:04:15 +02:00
|
|
|
curr = prev;
|
|
|
|
calcoffsets();
|
|
|
|
}
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
2006-12-12 09:57:42 +01:00
|
|
|
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;
|
2006-12-12 09:57:42 +01:00
|
|
|
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-07-31 15:56:27 +02:00
|
|
|
case XK_KP_Enter:
|
2011-07-14 21:03:08 +02:00
|
|
|
puts((sel && !(ev->state & ShiftMask)) ? sel->text : text);
|
2010-07-02 04:44:01 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_Right:
|
2011-05-15 22:54:26 +02:00
|
|
|
if(text[cursor] != '\0') {
|
2010-08-12 16:35:51 +02:00
|
|
|
cursor = nextrune(+1);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2011-07-06 14:40:36 +02:00
|
|
|
/* fallthrough */
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_Down:
|
2010-08-12 16:35:51 +02:00
|
|
|
if(sel && sel->right && (sel = sel->right) == next) {
|
2010-06-20 16:04:15 +02:00
|
|
|
curr = next;
|
|
|
|
calcoffsets();
|
|
|
|
}
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_Tab:
|
2010-07-30 14:40:56 +02:00
|
|
|
if(!sel)
|
|
|
|
return;
|
|
|
|
strncpy(text, sel->text, sizeof text);
|
2010-07-31 15:56:27 +02:00
|
|
|
cursor = strlen(text);
|
2011-09-19 11:40:56 +02:00
|
|
|
match();
|
2006-12-12 09:57:42 +01:00
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
2010-07-30 14:40:56 +02:00
|
|
|
drawmenu();
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
2011-09-19 11:40:56 +02:00
|
|
|
match(void) {
|
|
|
|
static char **tokv = NULL;
|
|
|
|
static int tokn = 0;
|
|
|
|
|
|
|
|
char buf[sizeof text], *s;
|
|
|
|
int i, tokc = 0;
|
|
|
|
size_t len;
|
|
|
|
Item *item, *lprefix, *lsubstr, *prefixend, *substrend;
|
|
|
|
|
|
|
|
strcpy(buf, text);
|
|
|
|
for(s = strtok(buf, " "); s; tokv[tokc-1] = s, s = strtok(NULL, " "))
|
|
|
|
if(++tokc > tokn && !(tokv = realloc(tokv, ++tokn * sizeof *tokv)))
|
|
|
|
eprintf("cannot realloc %u bytes\n", tokn * sizeof *tokv);
|
|
|
|
len = tokc ? strlen(tokv[0]) : 0;
|
|
|
|
|
|
|
|
matches = lprefix = lsubstr = matchend = prefixend = substrend = NULL;
|
|
|
|
for(item = items; item && item->text; item++) {
|
|
|
|
for(i = 0; i < tokc; i++)
|
|
|
|
if(!fstrstr(item->text, tokv[i]))
|
|
|
|
break;
|
|
|
|
if(i != tokc)
|
|
|
|
continue;
|
|
|
|
if(!tokc || !fstrncmp(tokv[0], item->text, len+1))
|
|
|
|
appenditem(item, &matches, &matchend);
|
|
|
|
else if(!fstrncmp(tokv[0], item->text, len))
|
2010-07-31 15:56:27 +02:00
|
|
|
appenditem(item, &lprefix, &prefixend);
|
2011-09-19 11:40:56 +02:00
|
|
|
else
|
2010-07-31 15:56:27 +02:00
|
|
|
appenditem(item, &lsubstr, &substrend);
|
2008-03-22 15:52:00 +01:00
|
|
|
}
|
|
|
|
if(lprefix) {
|
2011-09-20 01:09:20 +02:00
|
|
|
if(matches) {
|
2011-05-14 19:39:27 +02:00
|
|
|
matchend->right = lprefix;
|
|
|
|
lprefix->left = matchend;
|
2008-03-22 15:52:00 +01:00
|
|
|
}
|
|
|
|
else
|
2010-07-31 15:56:27 +02:00
|
|
|
matches = lprefix;
|
2011-05-14 19:39:27 +02:00
|
|
|
matchend = prefixend;
|
2008-03-22 15:52:00 +01:00
|
|
|
}
|
|
|
|
if(lsubstr) {
|
2011-09-20 01:09:20 +02:00
|
|
|
if(matches) {
|
2011-05-14 19:39:27 +02:00
|
|
|
matchend->right = lsubstr;
|
|
|
|
lsubstr->left = matchend;
|
2008-03-22 15:52:00 +01:00
|
|
|
}
|
|
|
|
else
|
2010-07-31 15:56:27 +02:00
|
|
|
matches = lsubstr;
|
2011-05-14 19:39:27 +02:00
|
|
|
matchend = substrend;
|
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
|
2011-05-17 00:35:14 +02:00
|
|
|
nextrune(int inc) {
|
|
|
|
ssize_t n;
|
2010-08-12 16:35:51 +02:00
|
|
|
|
2011-05-17 00:35:14 +02:00
|
|
|
for(n = cursor + inc; n + inc >= 0 && (text[n] & 0xc0) == 0x80; n += inc);
|
2010-08-12 16:35:51 +02:00
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
void
|
2010-08-12 16:35:51 +02:00
|
|
|
paste(void) {
|
2010-07-31 15:56:27 +02:00
|
|
|
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,
|
2010-08-02 15:22:54 +02:00
|
|
|
utf8, &da, &di, &dl, &dl, (unsigned char **)&p);
|
2011-05-16 13:59:31 +02:00
|
|
|
insert(p, (q = strchr(p, '\n')) ? q-p : (ssize_t)strlen(p));
|
2010-07-31 15:56:27 +02:00
|
|
|
XFree(p);
|
|
|
|
drawmenu();
|
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
2006-09-25 08:29:20 +02:00
|
|
|
readstdin(void) {
|
2011-05-15 14:02:33 +02:00
|
|
|
char buf[sizeof text], *p, *maxstr = NULL;
|
|
|
|
size_t i, max = 0, size = 0;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2011-05-18 17:20:03 +02:00
|
|
|
for(i = 0; fgets(buf, sizeof buf, stdin); i++) {
|
2011-05-15 14:02:33 +02:00
|
|
|
if(i+1 >= size / sizeof *items)
|
2011-05-14 18:46:20 +02:00
|
|
|
if(!(items = realloc(items, (size += BUFSIZ))))
|
|
|
|
eprintf("cannot realloc %u bytes:", size);
|
2010-08-02 15:22:54 +02:00
|
|
|
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-15 14:02:33 +02:00
|
|
|
if(strlen(items[i].text) > max)
|
|
|
|
max = strlen(maxstr = items[i].text);
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
2011-05-18 17:20:03 +02:00
|
|
|
if(items)
|
|
|
|
items[i].text = NULL;
|
2011-05-15 14:58:54 +02:00
|
|
|
inputw = maxstr ? textw(dc, maxstr) : 0;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
2010-07-30 14:40:56 +02:00
|
|
|
void
|
|
|
|
run(void) {
|
|
|
|
XEvent ev;
|
|
|
|
|
2010-08-02 15:22:54 +02:00
|
|
|
while(!XNextEvent(dc->dpy, &ev))
|
2010-07-30 14:40:56 +02:00
|
|
|
switch(ev.type) {
|
|
|
|
case Expose:
|
|
|
|
if(ev.xexpose.count == 0)
|
2011-07-14 21:03:08 +02:00
|
|
|
mapdc(dc, win, mw, mh);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
case KeyPress:
|
|
|
|
keypress(&ev.xkey);
|
|
|
|
break;
|
2010-07-31 15:56:27 +02:00
|
|
|
case SelectionNotify:
|
2010-08-12 16:35:51 +02:00
|
|
|
if(ev.xselection.property == utf8)
|
|
|
|
paste();
|
2010-07-31 15:56:27 +02:00
|
|
|
break;
|
2010-07-30 14:40:56 +02:00
|
|
|
case VisibilityNotify:
|
|
|
|
if(ev.xvisibility.state != VisibilityUnobscured)
|
2010-08-02 15:22:54 +02:00
|
|
|
XRaiseWindow(dc->dpy, win);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
setup(void) {
|
2011-05-15 15:13:31 +02:00
|
|
|
int x, y, screen = DefaultScreen(dc->dpy);
|
|
|
|
Window root = RootWindow(dc->dpy, screen);
|
2011-09-19 19:15:03 +02:00
|
|
|
XSetWindowAttributes swa;
|
2010-07-31 15:56:27 +02:00
|
|
|
#ifdef XINERAMA
|
2010-08-02 15:22:54 +02:00
|
|
|
int n;
|
2010-07-31 15:56:27 +02:00
|
|
|
XineramaScreenInfo *info;
|
2010-07-30 14:40:56 +02:00
|
|
|
#endif
|
|
|
|
|
2010-11-12 00:56:39 +01:00
|
|
|
normcol[ColBG] = getcolor(dc, normbgcolor);
|
|
|
|
normcol[ColFG] = getcolor(dc, normfgcolor);
|
2011-05-15 17:05:32 +02:00
|
|
|
selcol[ColBG] = getcolor(dc, selbgcolor);
|
|
|
|
selcol[ColFG] = getcolor(dc, selfgcolor);
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2011-05-15 15:13:31 +02:00
|
|
|
utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);
|
|
|
|
|
2010-08-05 16:41:56 +02:00
|
|
|
/* menu geometry */
|
2010-08-11 15:24:25 +02:00
|
|
|
bh = dc->font.height + 2;
|
2010-08-18 18:33:34 +02:00
|
|
|
lines = MAX(lines, 0);
|
2010-08-11 15:24:25 +02:00
|
|
|
mh = (lines + 1) * bh;
|
2010-07-31 15:56:27 +02:00
|
|
|
#ifdef XINERAMA
|
2010-08-02 15:22:54 +02:00
|
|
|
if((info = XineramaQueryScreens(dc->dpy, &n))) {
|
2011-05-12 14:17:41 +02:00
|
|
|
int i, di;
|
2010-07-31 15:56:27 +02:00
|
|
|
unsigned int du;
|
2011-09-19 19:15:03 +02:00
|
|
|
Window w, dw;
|
|
|
|
XWindowAttributes wa;
|
2010-07-31 15:56:27 +02:00
|
|
|
|
2011-09-19 19:15:03 +02:00
|
|
|
XGetInputFocus(dc->dpy, &w, &di);
|
|
|
|
if(w != root && XGetWindowAttributes(dc->dpy, w, &wa))
|
|
|
|
XTranslateCoordinates(dc->dpy, root, root, wa.x, wa.y, &x, &y, &dw);
|
|
|
|
else
|
|
|
|
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++)
|
2011-05-18 17:20:03 +02:00
|
|
|
if(INRECT(x, y, info[i].x_org, info[i].y_org, info[i].width, info[i].height))
|
2011-05-12 14:17:41 +02:00
|
|
|
break;
|
|
|
|
x = info[i].x_org;
|
|
|
|
y = info[i].y_org + (topbar ? 0 : info[i].height - mh);
|
|
|
|
mw = info[i].width;
|
2010-07-30 14:40:56 +02:00
|
|
|
XFree(info);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
x = 0;
|
2010-08-02 15:22:54 +02:00
|
|
|
y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh;
|
|
|
|
mw = DisplayWidth(dc->dpy, screen);
|
2010-07-30 14:40:56 +02:00
|
|
|
}
|
2011-05-15 15:21:00 +02:00
|
|
|
promptw = prompt ? textw(dc, prompt) : 0;
|
2011-05-18 17:20:03 +02:00
|
|
|
inputw = MIN(inputw, mw/3);
|
2011-09-19 11:40:56 +02:00
|
|
|
match();
|
2011-05-15 15:21:00 +02:00
|
|
|
|
2010-08-05 16:41:56 +02:00
|
|
|
/* menu window */
|
2011-09-19 19:15:03 +02:00
|
|
|
swa.override_redirect = True;
|
|
|
|
swa.background_pixmap = ParentRelative;
|
|
|
|
swa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
|
2010-08-02 15:22:54 +02:00
|
|
|
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),
|
2011-09-19 19:15:03 +02:00
|
|
|
CWOverrideRedirect | CWBackPixmap | CWEventMask, &swa);
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2010-08-02 15:22:54 +02:00
|
|
|
XMapRaised(dc->dpy, win);
|
2011-05-15 15:21:00 +02:00
|
|
|
resizedc(dc, mw, mh);
|
2011-05-15 15:13:31 +02:00
|
|
|
drawmenu();
|
2010-07-31 15:56:27 +02:00
|
|
|
}
|
2011-05-18 17:20:03 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
usage(void) {
|
|
|
|
fputs("usage: dmenu [-b] [-f] [-i] [-l lines] [-p prompt] [-fn font]\n"
|
|
|
|
" [-nb color] [-nf color] [-sb color] [-sf color] [-v]\n", stderr);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|