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
|
|
|
|
2011-10-26 13:14:50 +02:00
|
|
|
#define INTERSECT(x,y,w,h,r) (MAX(0, MIN((x)+(w),(r).x_org+(r).width) - MAX((x),(r).x_org)) \
|
|
|
|
* MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org)))
|
|
|
|
#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;
|
2013-04-17 20:56:54 +02:00
|
|
|
Bool out;
|
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-07-31 15:56:27 +02:00
|
|
|
static size_t cursor = 0;
|
2010-07-30 14:40:56 +02:00
|
|
|
static unsigned long normcol[ColLast];
|
|
|
|
static unsigned long selcol[ColLast];
|
2013-04-17 20:56:54 +02:00
|
|
|
static unsigned long outcol[ColLast];
|
2011-10-26 14:28:15 +02:00
|
|
|
static Atom clip, utf8;
|
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;
|
2011-10-16 18:21:33 +02:00
|
|
|
static XIC xic;
|
2013-08-02 22:30:20 +02:00
|
|
|
static int mon = -1;
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2013-04-17 21:04:05 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
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++)
|
2011-10-26 14:20:14 +02:00
|
|
|
/* these options take no arguments */
|
|
|
|
if(!strcmp(argv[i], "-v")) { /* prints version information */
|
2014-05-29 18:03:53 +02:00
|
|
|
puts("dmenu-"VERSION", © 2006-2014 dmenu engineers, see LICENSE for details");
|
2010-11-17 05:33:34 +01:00
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-b")) /* appears at the bottom of the screen */
|
2010-11-17 05:33:34 +01:00
|
|
|
topbar = False;
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-f")) /* grabs keyboard before reading stdin */
|
2011-05-08 16:15:24 +02:00
|
|
|
fast = True;
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-i")) { /* case-insensitive item matching */
|
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();
|
2011-10-26 14:20:14 +02:00
|
|
|
/* these options take one argument */
|
|
|
|
else if(!strcmp(argv[i], "-l")) /* number of lines in vertical list */
|
2010-11-17 05:33:34 +01:00
|
|
|
lines = atoi(argv[++i]);
|
2013-08-02 22:30:20 +02:00
|
|
|
else if(!strcmp(argv[i], "-m"))
|
|
|
|
mon = atoi(argv[++i]);
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-p")) /* adds prompt to left of input field */
|
2010-11-17 05:33:34 +01:00
|
|
|
prompt = argv[++i];
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-fn")) /* font or font set */
|
2010-11-17 05:33:34 +01:00
|
|
|
font = argv[++i];
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-nb")) /* normal background color */
|
2010-11-17 05:33:34 +01:00
|
|
|
normbgcolor = argv[++i];
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-nf")) /* normal foreground color */
|
2010-11-17 05:33:34 +01:00
|
|
|
normfgcolor = argv[++i];
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-sb")) /* selected background color */
|
2010-11-17 05:33:34 +01:00
|
|
|
selbgcolor = argv[++i];
|
2011-10-26 14:20:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-sf")) /* selected foreground color */
|
2010-11-17 05:33:34 +01:00
|
|
|
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-11-19 21:24:07 +01:00
|
|
|
return 1; /* 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, ">"));
|
2011-10-26 14:20:14 +02:00
|
|
|
/* calculate which items will begin the next page and previous page */
|
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
|
|
|
|
2012-05-15 11:47:54 +02:00
|
|
|
if(prompt && *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
|
|
|
}
|
2011-10-26 14:20:14 +02:00
|
|
|
/* draw input field */
|
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) {
|
2011-10-26 14:20:14 +02:00
|
|
|
/* draw vertical list */
|
2010-08-03 18:10:29 +02:00
|
|
|
dc->w = mw - dc->x;
|
|
|
|
for(item = curr; item != next; item = item->right) {
|
|
|
|
dc->y += dc->h;
|
2013-04-17 20:56:54 +02:00
|
|
|
drawtext(dc, item->text, (item == sel) ? selcol :
|
|
|
|
(item->out) ? outcol : 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) {
|
2011-10-26 14:20:14 +02:00
|
|
|
/* draw horizontal list */
|
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, ">"));
|
2013-04-17 20:56:54 +02:00
|
|
|
drawtext(dc, item->text, (item == sel) ? selcol :
|
|
|
|
(item->out) ? outcol : 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
|
|
|
|
2011-10-26 14:20:14 +02:00
|
|
|
/* try to grab keyboard, we may have to wait for another process to ungrab */
|
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-10-26 14:20:14 +02:00
|
|
|
/* move existing text out of the way, insert new text, and update cursor */
|
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];
|
2011-10-16 18:21:33 +02:00
|
|
|
int len;
|
2011-10-17 02:18:57 +02:00
|
|
|
KeySym ksym = NoSymbol;
|
2011-10-16 18:21:33 +02:00
|
|
|
Status status;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2011-10-17 02:18:57 +02:00
|
|
|
len = XmbLookupString(xic, ev, buf, sizeof buf, &ksym, &status);
|
|
|
|
if(status == XBufferOverflow)
|
|
|
|
return;
|
2012-01-01 20:32:40 +01:00
|
|
|
if(ev->state & ControlMask)
|
|
|
|
switch(ksym) {
|
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;
|
2012-01-19 23:52:17 +01:00
|
|
|
case XK_g: ksym = XK_Escape; break;
|
2011-07-14 21:03:08 +02:00
|
|
|
case XK_h: ksym = XK_BackSpace; break;
|
|
|
|
case XK_i: ksym = XK_Tab; break;
|
2012-02-10 01:37:42 +01:00
|
|
|
case XK_j: /* fallthrough */
|
2014-09-17 13:40:11 +02:00
|
|
|
case XK_J: /* fallthrough */
|
2012-02-10 01:37:42 +01:00
|
|
|
case XK_m: /* fallthrough */
|
2014-09-17 13:40:11 +02:00
|
|
|
case XK_M: ksym = XK_Return; ev->state &= ~ControlMask; break;
|
2011-11-14 20:02:16 +01:00
|
|
|
case XK_n: ksym = XK_Down; break;
|
|
|
|
case XK_p: ksym = XK_Up; break;
|
2011-07-14 21:03:08 +02:00
|
|
|
|
|
|
|
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 */
|
2011-10-26 14:28:15 +02:00
|
|
|
XConvertSelection(dc->dpy, (ev->state & ShiftMask) ? clip : XA_PRIMARY,
|
|
|
|
utf8, utf8, win, CurrentTime);
|
2010-11-12 01:00:32 +01:00
|
|
|
return;
|
2013-04-17 20:56:54 +02:00
|
|
|
case XK_Return:
|
|
|
|
case XK_KP_Enter:
|
|
|
|
break;
|
2013-06-28 22:06:02 +02:00
|
|
|
case XK_bracketleft:
|
|
|
|
exit(EXIT_FAILURE);
|
2011-07-14 21:03:08 +02:00
|
|
|
default:
|
|
|
|
return;
|
2006-12-14 14:40:58 +01:00
|
|
|
}
|
2012-01-01 20:32:40 +01:00
|
|
|
else if(ev->state & Mod1Mask)
|
|
|
|
switch(ksym) {
|
|
|
|
case XK_g: ksym = XK_Home; break;
|
|
|
|
case XK_G: ksym = XK_End; break;
|
2012-01-02 19:48:11 +01:00
|
|
|
case XK_h: ksym = XK_Up; break;
|
|
|
|
case XK_j: ksym = XK_Next; break;
|
|
|
|
case XK_k: ksym = XK_Prior; break;
|
|
|
|
case XK_l: ksym = XK_Down; break;
|
2012-01-01 20:32:40 +01:00
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
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))
|
2011-10-16 18:21:33 +02:00
|
|
|
insert(buf, len);
|
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) {
|
2011-10-26 14:20:14 +02:00
|
|
|
/* jump to end of list and position items in reverse */
|
2011-05-14 19:39:27 +02:00
|
|
|
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-11-15 20:32:39 +01:00
|
|
|
if(lines > 0)
|
|
|
|
return;
|
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);
|
2013-04-17 20:56:54 +02:00
|
|
|
if(!(ev->state & ControlMask))
|
|
|
|
exit(EXIT_SUCCESS);
|
2014-07-24 21:10:23 +02:00
|
|
|
if(sel)
|
|
|
|
sel->out = True;
|
2013-04-17 20:56:54 +02:00
|
|
|
break;
|
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-11-15 20:32:39 +01:00
|
|
|
if(lines > 0)
|
|
|
|
return;
|
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;
|
2013-04-17 20:59:12 +02:00
|
|
|
strncpy(text, sel->text, sizeof text - 1);
|
|
|
|
text[sizeof text - 1] = '\0';
|
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);
|
2011-10-26 14:20:14 +02:00
|
|
|
/* separate input text into tokens to be matched individually */
|
2011-09-19 11:40:56 +02:00
|
|
|
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;
|
2011-10-26 14:20:14 +02:00
|
|
|
if(i != tokc) /* not all tokens match */
|
2011-09-19 11:40:56 +02:00
|
|
|
continue;
|
2011-10-26 14:20:14 +02:00
|
|
|
/* exact matches go first, then prefixes, then substrings */
|
2011-09-19 11:40:56 +02:00
|
|
|
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-10-26 14:20:14 +02:00
|
|
|
/* return location of next utf8 rune in the given direction (+1 or -1) */
|
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;
|
|
|
|
|
2011-10-26 14:20:14 +02:00
|
|
|
/* we have been given the current selection, now insert it into input */
|
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-10-26 14:20:14 +02:00
|
|
|
/* read each line from stdin and add it to the item list */
|
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);
|
2013-04-17 20:56:54 +02:00
|
|
|
items[i].out = False;
|
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;
|
2011-10-13 21:43:59 +02:00
|
|
|
lines = MIN(lines, i);
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
2010-07-30 14:40:56 +02:00
|
|
|
void
|
|
|
|
run(void) {
|
|
|
|
XEvent ev;
|
|
|
|
|
2011-10-16 18:21:33 +02:00
|
|
|
while(!XNextEvent(dc->dpy, &ev)) {
|
|
|
|
if(XFilterEvent(&ev, win))
|
|
|
|
continue;
|
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;
|
|
|
|
}
|
2011-10-16 18:21:33 +02:00
|
|
|
}
|
2010-07-30 14:40:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
2011-10-16 18:21:33 +02:00
|
|
|
XIM xim;
|
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);
|
2013-04-17 20:56:54 +02:00
|
|
|
outcol[ColBG] = getcolor(dc, outbgcolor);
|
|
|
|
outcol[ColFG] = getcolor(dc, outfgcolor);
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2011-10-26 14:28:15 +02:00
|
|
|
clip = XInternAtom(dc->dpy, "CLIPBOARD", False);
|
2011-05-15 15:13:31 +02:00
|
|
|
utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);
|
|
|
|
|
2011-10-26 14:20:14 +02:00
|
|
|
/* calculate 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-10-26 13:14:50 +02:00
|
|
|
int a, j, di, i = 0, area = 0;
|
2010-07-31 15:56:27 +02:00
|
|
|
unsigned int du;
|
2011-10-26 13:14:50 +02:00
|
|
|
Window w, pw, dw, *dws;
|
2011-09-19 19:15:03 +02:00
|
|
|
XWindowAttributes wa;
|
2010-07-31 15:56:27 +02:00
|
|
|
|
2011-09-19 19:15:03 +02:00
|
|
|
XGetInputFocus(dc->dpy, &w, &di);
|
2013-08-02 22:30:20 +02:00
|
|
|
if(mon != -1 && mon < n)
|
|
|
|
i = mon;
|
|
|
|
if(!i && w != root && w != PointerRoot && w != None) {
|
2011-10-26 14:20:14 +02:00
|
|
|
/* find top-level window containing current input focus */
|
2011-10-26 13:14:50 +02:00
|
|
|
do {
|
|
|
|
if(XQueryTree(dc->dpy, (pw = w), &dw, &w, &dws, &du) && dws)
|
|
|
|
XFree(dws);
|
|
|
|
} while(w != root && w != pw);
|
2011-10-26 14:20:14 +02:00
|
|
|
/* find xinerama screen with which the window intersects most */
|
2011-10-26 13:14:50 +02:00
|
|
|
if(XGetWindowAttributes(dc->dpy, pw, &wa))
|
|
|
|
for(j = 0; j < n; j++)
|
|
|
|
if((a = INTERSECT(wa.x, wa.y, wa.width, wa.height, info[j])) > area) {
|
|
|
|
area = a;
|
|
|
|
i = j;
|
|
|
|
}
|
|
|
|
}
|
2011-10-26 14:20:14 +02:00
|
|
|
/* no focused window is on screen, so use pointer location instead */
|
2013-08-02 22:30:20 +02:00
|
|
|
if(mon == -1 && !area && XQueryPointer(dc->dpy, root, &dw, &dw, &x, &y, &di, &di, &du))
|
2011-10-26 13:14:50 +02:00
|
|
|
for(i = 0; i < n; i++)
|
|
|
|
if(INTERSECT(x, y, 1, 1, info[i]))
|
|
|
|
break;
|
2011-10-26 14:20:14 +02:00
|
|
|
|
2011-05-12 14:17:41 +02:00
|
|
|
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
|
|
|
}
|
2012-05-15 11:47:54 +02:00
|
|
|
promptw = (prompt && *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
|
|
|
|
2011-10-26 14:20:14 +02:00
|
|
|
/* create menu window */
|
2011-09-19 19:15:03 +02:00
|
|
|
swa.override_redirect = True;
|
2011-11-23 14:40:21 +01:00
|
|
|
swa.background_pixel = normcol[ColBG];
|
2011-09-19 19:15:03 +02:00
|
|
|
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-11-23 14:40:21 +01:00
|
|
|
CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2011-10-26 14:20:14 +02:00
|
|
|
/* open input methods */
|
2011-10-16 18:21:33 +02:00
|
|
|
xim = XOpenIM(dc->dpy, NULL, NULL, NULL);
|
|
|
|
xic = XCreateIC(xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing,
|
2011-10-17 02:18:57 +02:00
|
|
|
XNClientWindow, win, XNFocusWindow, win, NULL);
|
2011-10-16 18:21:33 +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) {
|
2013-08-02 22:30:20 +02:00
|
|
|
fputs("usage: dmenu [-b] [-f] [-i] [-l lines] [-p prompt] [-fn font] [-m monitor]\n"
|
2011-05-18 17:20:03 +02:00
|
|
|
" [-nb color] [-nf color] [-sb color] [-sf color] [-v]\n", stderr);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|