dmenu/dmenu.c

608 lines
15 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>
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>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif
2010-11-12 00:56:39 +01:00
#include "draw.h"
#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 {
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);
2011-07-14 21:03:08 +02:00
static char *cistrstr(const char *s, const char *sub);
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);
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;
static size_t cursor = 0;
2010-08-10 19:09:02 +02:00
static const char *font = NULL;
static const char *prompt = NULL;
2011-11-14 00:46:56 +01:00
static const char *normbgcolor = "#222222";
static const char *normfgcolor = "#bbbbbb";
static const char *selbgcolor = "#005577";
static const char *selfgcolor = "#eeeeee";
2011-10-16 19:26:11 +02:00
static unsigned int lines = 0;
static unsigned long normcol[ColLast];
static unsigned long selcol[ColLast];
2011-10-26 14:28:15 +02:00
static Atom clip, utf8;
static Bool topbar = True;
static DC *dc;
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;
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 */
2012-01-01 20:33:56 +01:00
puts("dmenu-"VERSION", © 2006-2012 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]);
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
appenditem(Item *item, Item **list, Item **last) {
2011-09-19 11:40:56 +02:00
if(*last)
(*last)->right = item;
2011-09-19 11:40:56 +02:00
else
*list = item;
2011-07-14 21:03:08 +02:00
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) {
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)
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;
}
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;
}
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;
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) {
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, ">"));
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);
}
2007-09-17 20:53:14 +02:00
void
grabkeyboard(void) {
int i;
2011-10-26 14:20:14 +02:00
/* try to grab keyboard, we may have to wait for another process to ungrab */
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)
return;
usleep(1000);
}
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));
if(n > 0)
2011-05-15 17:05:32 +02:00
memcpy(&text[cursor], str, n);
cursor += n;
2011-09-19 11:40:56 +02:00
match();
}
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;
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_Down; break;
case XK_p: ksym = XK_Up; break;
2011-07-14 21:03:08 +02:00
case XK_k: /* delete right */
text[cursor] = '\0';
2011-09-19 11:40:56 +02:00
match();
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);
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);
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;
2011-07-14 21:03:08 +02:00
default:
return;
}
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) {
default:
if(!iscntrl(*buf))
2011-10-16 18:21:33 +02:00
insert(buf, len);
break;
case XK_Delete:
2011-05-15 22:54:26 +02:00
if(text[cursor] == '\0')
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;
case XK_End:
2011-05-15 22:54:26 +02:00
if(text[cursor] != '\0') {
cursor = strlen(text);
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;
calcoffsets();
2011-05-14 19:39:27 +02:00
curr = prev;
calcoffsets();
while(next && (curr = curr->right))
calcoffsets();
}
2011-05-14 19:39:27 +02:00
sel = matchend;
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;
}
2011-11-15 20:32:39 +01:00
if(lines > 0)
return;
2011-07-06 14:40:36 +02:00
/* fallthrough */
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:
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);
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);
break;
}
2011-11-15 20:32:39 +01:00
if(lines > 0)
return;
2011-07-06 14:40:36 +02:00
/* fallthrough */
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);
2011-09-19 11:40:56 +02:00
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
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))
appenditem(item, &lprefix, &prefixend);
2011-09-19 11:40:56 +02:00
else
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
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
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;
}
void
2010-08-12 16:35:51 +02:00
paste(void) {
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,
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));
XFree(p);
drawmenu();
}
2007-09-17 20:53:14 +02:00
void
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);
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;
2011-10-13 21:43:59 +02:00
lines = MIN(lines, i);
2006-08-04 09:35:27 +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;
switch(ev.type) {
case Expose:
if(ev.xexpose.count == 0)
2011-07-14 21:03:08 +02:00
mapdc(dc, win, mw, mh);
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;
}
2011-10-16 18:21:33 +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);
XSetWindowAttributes swa;
2011-10-16 18:21:33 +02:00
XIM xim;
#ifdef XINERAMA
int n;
XineramaScreenInfo *info;
#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);
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 */
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))) {
int a, j, di, i = 0, area = 0;
unsigned int du;
Window w, pw, dw, *dws;
XWindowAttributes wa;
XGetInputFocus(dc->dpy, &w, &di);
if(w != root && w != PointerRoot && w != None) {
2011-10-26 14:20:14 +02:00
/* find top-level window containing current input focus */
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 */
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 */
if(!area && XQueryPointer(dc->dpy, root, &dw, &dw, &x, &y, &di, &di, &du))
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;
XFree(info);
}
else
#endif
{
x = 0;
y = topbar ? 0 : DisplayHeight(dc->dpy, screen) - mh;
mw = DisplayWidth(dc->dpy, screen);
}
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
2011-10-26 14:20:14 +02:00
/* create menu window */
swa.override_redirect = True;
2011-11-23 14:40:21 +01:00
swa.background_pixel = normcol[ColBG];
swa.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),
2011-11-23 14:40:21 +01:00
CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
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
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();
}
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);
}