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>
|
|
|
|
#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>
|
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
|
|
|
|
#include <draw.h>
|
|
|
|
|
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-08-10 14:38:49 +02:00
|
|
|
#define LINEH (dc->font.height + 2)
|
2010-07-30 14:40:56 +02:00
|
|
|
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#define MAX(a,b) ((a) > (b) ? (a) : (b))
|
2010-07-31 15:56:27 +02:00
|
|
|
#define UTF8_CODEPOINT(c) (((c) & 0xc0) != 0x80)
|
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;
|
2010-07-31 15:56:27 +02:00
|
|
|
Item *next; /* traverses all items */
|
|
|
|
Item *left, *right; /* traverses matching items */
|
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);
|
2008-06-13 12:46:50 +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);
|
2010-07-31 15:56:27 +02:00
|
|
|
static void insert(const char *s, ssize_t n);
|
2010-08-09 12:54:46 +02:00
|
|
|
static void keypress(XKeyEvent *ev);
|
2010-07-02 07:49:05 +02:00
|
|
|
static void match(void);
|
2010-08-02 15:22:54 +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);
|
2010-07-31 15:56:27 +02:00
|
|
|
static void usage(void);
|
2007-09-16 20:14:09 +02:00
|
|
|
|
2010-08-10 14:38:49 +02:00
|
|
|
static char text[BUFSIZ];
|
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-31 15:56:27 +02:00
|
|
|
static unsigned int inputw = 0;
|
2010-06-23 14:49:24 +02:00
|
|
|
static unsigned int lines = 0;
|
2010-07-30 14:40:56 +02:00
|
|
|
static unsigned int mw, mh;
|
2010-08-02 16:13:33 +02:00
|
|
|
static unsigned int promptw;
|
2010-07-30 14:40:56 +02:00
|
|
|
static unsigned long normcol[ColLast];
|
|
|
|
static unsigned long selcol[ColLast];
|
2010-07-31 15:56:27 +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-07-31 15:56:27 +02:00
|
|
|
static Item *allitems, *matches;
|
|
|
|
static Item *curr, *prev, *next, *sel;
|
|
|
|
static Window root, 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;
|
2008-06-13 12:46:50 +02:00
|
|
|
static char *(*fstrstr)(const char *, const char *) = strstr;
|
2007-09-17 20:53:14 +02: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) {
|
2010-08-02 15:22:54 +02:00
|
|
|
if(!*last)
|
2010-07-31 15:56:27 +02:00
|
|
|
*list = item;
|
2007-09-23 18:26:41 +02:00
|
|
|
else
|
2010-07-31 15:56:27 +02:00
|
|
|
(*last)->right = item;
|
|
|
|
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) {
|
2010-08-10 14:38:49 +02:00
|
|
|
unsigned int i, n;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2010-08-03 18:10:29 +02:00
|
|
|
if(lines > 0)
|
2010-08-10 14:38:49 +02:00
|
|
|
n = lines * LINEH;
|
2010-08-03 18:10:29 +02:00
|
|
|
else
|
|
|
|
n = mw - (promptw + inputw + textw(dc, "<") + textw(dc, ">"));
|
|
|
|
|
2010-08-10 15:14:37 +02:00
|
|
|
for(i = 0, next = curr; next; next = next->right)
|
|
|
|
if((i += (lines > 0) ? LINEH : MIN(textw(dc, next->text), mw/3)) > n)
|
|
|
|
break;
|
|
|
|
for(i = 0, prev = curr; prev && prev->left; prev = prev->left)
|
|
|
|
if((i += (lines > 0) ? LINEH : MIN(textw(dc, prev->left->text), mw/3)) > n)
|
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
2008-03-18 17:52:51 +01:00
|
|
|
char *
|
|
|
|
cistrstr(const char *s, const char *sub) {
|
2010-08-02 15:22:54 +02:00
|
|
|
size_t len;
|
2008-03-18 17:52:51 +01:00
|
|
|
|
2010-08-02 15:22:54 +02:00
|
|
|
for(len = strlen(sub); *s; s++)
|
|
|
|
if(!strncasecmp(s, sub, len))
|
|
|
|
return (char *)s;
|
|
|
|
return NULL;
|
2008-03-18 17:52:51 +01:00
|
|
|
}
|
|
|
|
|
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-10 14:38:49 +02:00
|
|
|
dc->h = LINEH;
|
2010-08-02 15:22:54 +02:00
|
|
|
drawrect(dc, 0, 0, mw, mh, 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-08-02 15:22:54 +02:00
|
|
|
drawtext(dc, prompt, selcol);
|
|
|
|
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-08-02 15:22:54 +02:00
|
|
|
drawtext(dc, text, normcol);
|
2010-08-09 12:54:46 +02:00
|
|
|
if((curpos = textnw(dc, text, cursor) + dc->h/2 - 2) < dc->w)
|
|
|
|
drawrect(dc, curpos, 2, 1, dc->h - 4, 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-08-10 14:38:49 +02: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;
|
|
|
|
dc->w = textw(dc, "<");
|
2010-08-03 18:29:53 +02:00
|
|
|
if(curr->left)
|
2010-08-03 18:10:29 +02:00
|
|
|
drawtext(dc, "<", normcol);
|
|
|
|
for(item = curr; item != next; item = item->right) {
|
|
|
|
dc->x += dc->w;
|
|
|
|
dc->w = MIN(textw(dc, item->text), mw/3);
|
|
|
|
drawtext(dc, item->text, (item == sel) ? selcol : normcol);
|
|
|
|
}
|
|
|
|
dc->w = textw(dc, ">");
|
|
|
|
dc->x = mw - dc->w;
|
|
|
|
if(next)
|
|
|
|
drawtext(dc, ">", normcol);
|
2009-11-28 13:28:15 +01:00
|
|
|
}
|
2010-08-03 18:10:29 +02:00
|
|
|
commitdraw(dc, win);
|
2009-11-28 13:28:15 +01: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++) {
|
2010-08-02 15:22:54 +02:00
|
|
|
if(!XGrabKeyboard(dc->dpy, root, True, GrabModeAsync, GrabModeAsync, CurrentTime))
|
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
|
|
|
|
insert(const char *s, ssize_t n) {
|
|
|
|
memmove(text + cursor + n, text + cursor, sizeof text - cursor - n);
|
|
|
|
if(n > 0)
|
|
|
|
memcpy(text + cursor, s, n);
|
|
|
|
cursor += n;
|
|
|
|
match();
|
2010-07-30 14:40:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-08-09 12:54:46 +02:00
|
|
|
keypress(XKeyEvent *ev) {
|
|
|
|
char buf[32];
|
2010-07-31 15:56:27 +02:00
|
|
|
int n;
|
|
|
|
size_t 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);
|
2010-08-09 12:54:46 +02:00
|
|
|
XLookupString(ev, buf, sizeof buf, &ksym, NULL);
|
|
|
|
if(ev->state & ControlMask) {
|
2010-06-20 02:19:17 +02:00
|
|
|
switch(tolower(ksym)) {
|
2010-06-20 16:04:15 +02:00
|
|
|
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;
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_b:
|
|
|
|
ksym = XK_Left;
|
|
|
|
break;
|
2010-03-31 23:37:41 +02:00
|
|
|
case XK_c:
|
2007-01-10 18:06:16 +01:00
|
|
|
ksym = XK_Escape;
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
2010-08-06 15:16:08 +02:00
|
|
|
case XK_d:
|
|
|
|
ksym = XK_Delete;
|
|
|
|
break;
|
2010-04-01 22:31:09 +02:00
|
|
|
case XK_e:
|
|
|
|
ksym = XK_End;
|
|
|
|
break;
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_f:
|
|
|
|
ksym = XK_Right;
|
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
case XK_h:
|
|
|
|
ksym = XK_BackSpace;
|
|
|
|
break;
|
2007-01-10 23:07:03 +01:00
|
|
|
case XK_i:
|
|
|
|
ksym = XK_Tab;
|
|
|
|
break;
|
|
|
|
case XK_j:
|
|
|
|
ksym = XK_Return;
|
|
|
|
break;
|
2010-07-31 15:56:27 +02:00
|
|
|
case XK_k: /* delete right */
|
|
|
|
text[cursor] = '\0';
|
2010-08-02 15:22:54 +02:00
|
|
|
match();
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_n:
|
|
|
|
ksym = XK_Down;
|
|
|
|
break;
|
|
|
|
case XK_p:
|
|
|
|
ksym = XK_Up;
|
|
|
|
break;
|
2010-07-31 15:56:27 +02:00
|
|
|
case XK_u: /* delete left */
|
|
|
|
insert(NULL, -cursor);
|
2009-11-28 13:28:15 +01:00
|
|
|
break;
|
2010-07-31 15:56:27 +02:00
|
|
|
case XK_w: /* delete word */
|
|
|
|
if(cursor == 0)
|
2010-06-23 13:04:54 +02:00
|
|
|
return;
|
2010-07-31 15:56:27 +02:00
|
|
|
n = 0;
|
|
|
|
while(cursor - n++ > 0 && text[cursor - n] == ' ');
|
|
|
|
while(cursor - n++ > 0 && text[cursor - n] != ' ');
|
2010-08-02 15:22:54 +02:00
|
|
|
insert(NULL, 1-n);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
2010-07-31 15:56:27 +02:00
|
|
|
case XK_y: /* paste selection */
|
2010-08-02 15:22:54 +02:00
|
|
|
XConvertSelection(dc->dpy, XA_PRIMARY, utf8, None, win, CurrentTime);
|
2010-07-31 15:56:27 +02:00
|
|
|
return;
|
2006-12-14 14:40:58 +01:00
|
|
|
}
|
|
|
|
}
|
2006-08-04 09:35:27 +02:00
|
|
|
switch(ksym) {
|
2006-12-12 09:57:42 +01:00
|
|
|
default:
|
2010-08-10 14:38:49 +02:00
|
|
|
if(isprint(*buf))
|
2010-07-31 15:56:27 +02:00
|
|
|
insert(buf, MIN(strlen(buf), sizeof text - cursor));
|
2006-12-12 09:57:42 +01:00
|
|
|
break;
|
|
|
|
case XK_BackSpace:
|
2010-07-31 15:56:27 +02:00
|
|
|
if(cursor == 0)
|
2010-06-20 01:44:26 +02:00
|
|
|
return;
|
2010-07-31 15:56:27 +02:00
|
|
|
for(n = 1; cursor - n > 0 && !UTF8_CODEPOINT(text[cursor - n]); n++);
|
|
|
|
insert(NULL, -n);
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
case XK_Delete:
|
2010-07-31 15:56:27 +02:00
|
|
|
if(cursor == len)
|
2010-07-30 14:40:56 +02:00
|
|
|
return;
|
2010-07-31 15:56:27 +02:00
|
|
|
for(n = 1; cursor + n < len && !UTF8_CODEPOINT(text[cursor + n]); n++);
|
|
|
|
cursor += n;
|
|
|
|
insert(NULL, -n);
|
2010-03-22 08:50:26 +01:00
|
|
|
break;
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_End:
|
2010-07-31 15:56:27 +02:00
|
|
|
if(cursor < len) {
|
|
|
|
cursor = len;
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2006-12-12 09:57:42 +01:00
|
|
|
while(next) {
|
|
|
|
sel = curr = next;
|
|
|
|
calcoffsets();
|
|
|
|
}
|
2006-12-14 09:30:23 +01:00
|
|
|
while(sel && sel->right)
|
2006-12-12 09:57:42 +01:00
|
|
|
sel = sel->right;
|
|
|
|
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)) {
|
|
|
|
while(cursor-- > 0 && !UTF8_CODEPOINT(text[cursor]));
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-07-31 15:56:27 +02:00
|
|
|
else if(lines > 0)
|
2010-07-30 14:40:56 +02:00
|
|
|
return;
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_Up:
|
|
|
|
if(!sel || !sel->left)
|
|
|
|
return;
|
2010-08-09 12:54:46 +02:00
|
|
|
if((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:
|
2010-08-09 12:54:46 +02:00
|
|
|
fputs((sel && !(ev->state & ShiftMask)) ? sel->text : text, stdout);
|
2006-08-04 09:35:27 +02:00
|
|
|
fflush(stdout);
|
2010-07-02 04:44:01 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_Right:
|
2010-07-31 15:56:27 +02:00
|
|
|
if(cursor < len) {
|
|
|
|
while(cursor++ < len && !UTF8_CODEPOINT(text[cursor]));
|
2010-07-30 14:40:56 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-07-31 15:56:27 +02:00
|
|
|
else if(lines > 0)
|
2010-07-30 14:40:56 +02:00
|
|
|
return;
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_Down:
|
|
|
|
if(!sel || !sel->right)
|
2009-11-28 13:28:15 +01:00
|
|
|
return;
|
2010-08-09 12:54:46 +02:00
|
|
|
if((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);
|
2010-07-30 14: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
|
2010-07-02 07:49:05 +02:00
|
|
|
match(void) {
|
2010-08-05 16:41:56 +02:00
|
|
|
size_t len;
|
2010-07-31 15:56:27 +02:00
|
|
|
Item *item, *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);
|
2010-07-31 15:56:27 +02:00
|
|
|
matches = lexact = lprefix = lsubstr = itemend = exactend = prefixend = substrend = NULL;
|
|
|
|
for(item = allitems; item; item = item->next)
|
|
|
|
if(!fstrncmp(text, item->text, len + 1))
|
|
|
|
appenditem(item, &lexact, &exactend);
|
|
|
|
else if(!fstrncmp(text, item->text, len))
|
|
|
|
appenditem(item, &lprefix, &prefixend);
|
|
|
|
else if(fstrstr(item->text, text))
|
|
|
|
appenditem(item, &lsubstr, &substrend);
|
2008-03-22 15:52:00 +01:00
|
|
|
if(lexact) {
|
2010-07-31 15:56:27 +02:00
|
|
|
matches = lexact;
|
2008-03-22 15:52:00 +01:00
|
|
|
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
|
2010-07-31 15:56:27 +02:00
|
|
|
matches = lprefix;
|
2008-03-22 15:52:00 +01:00
|
|
|
itemend = prefixend;
|
|
|
|
}
|
|
|
|
if(lsubstr) {
|
|
|
|
if(itemend) {
|
|
|
|
itemend->right = lsubstr;
|
|
|
|
lsubstr->left = itemend;
|
|
|
|
}
|
|
|
|
else
|
2010-07-31 15:56:27 +02:00
|
|
|
matches = lsubstr;
|
2008-03-22 15:52:00 +01:00
|
|
|
}
|
2010-07-31 15:56:27 +02:00
|
|
|
curr = prev = next = sel = matches;
|
2007-09-17 20:53:14 +02:00
|
|
|
calcoffsets();
|
|
|
|
}
|
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
void
|
2010-08-02 15:22:54 +02:00
|
|
|
paste(void) {
|
2010-07-31 15:56:27 +02:00
|
|
|
char *p, *q;
|
|
|
|
int di;
|
|
|
|
unsigned long dl;
|
|
|
|
Atom da;
|
|
|
|
|
2010-08-02 15:22:54 +02:00
|
|
|
XGetWindowProperty(dc->dpy, win, utf8, 0, sizeof text - cursor, True,
|
|
|
|
utf8, &da, &di, &dl, &dl, (unsigned char **)&p);
|
2010-07-31 15:56:27 +02:00
|
|
|
insert(p, (q = strchr(p, '\n')) ? q-p : strlen(p));
|
|
|
|
XFree(p);
|
|
|
|
drawmenu();
|
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
2006-09-25 08:29:20 +02:00
|
|
|
readstdin(void) {
|
2010-08-02 15:22:54 +02:00
|
|
|
char buf[sizeof text], *p;
|
2010-07-31 15:56:27 +02:00
|
|
|
Item *item, *new;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
allitems = NULL;
|
|
|
|
for(item = NULL; fgets(buf, sizeof buf, stdin); item = new) {
|
2010-08-02 15:22:54 +02:00
|
|
|
if((p = strchr(buf, '\n')))
|
|
|
|
*p = '\0';
|
2010-06-11 10:24:33 +02:00
|
|
|
if(!(new = malloc(sizeof *new)))
|
2010-07-31 15:56:27 +02:00
|
|
|
eprintf("cannot malloc %u bytes\n", sizeof *new);
|
|
|
|
if(!(new->text = strdup(buf)))
|
2010-08-09 12:54:46 +02:00
|
|
|
eprintf("cannot strdup %u bytes\n", strlen(buf)+1);
|
2010-08-02 15:22:54 +02:00
|
|
|
inputw = MAX(inputw, textw(dc, new->text));
|
2006-08-04 09:35:27 +02:00
|
|
|
new->next = new->left = new->right = NULL;
|
2010-07-31 15:56:27 +02:00
|
|
|
if(item)
|
|
|
|
item->next = new;
|
2010-08-02 15:22:54 +02:00
|
|
|
else
|
2010-07-31 15:56:27 +02:00
|
|
|
allitems = new;
|
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)
|
|
|
|
drawmenu();
|
|
|
|
break;
|
|
|
|
case KeyPress:
|
|
|
|
keypress(&ev.xkey);
|
|
|
|
break;
|
2010-07-31 15:56:27 +02:00
|
|
|
case SelectionNotify:
|
2010-08-02 15:22:54 +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) {
|
2010-08-02 15:22:54 +02:00
|
|
|
int x, y, screen;
|
|
|
|
XSetWindowAttributes wa;
|
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-08-02 15:22:54 +02:00
|
|
|
screen = DefaultScreen(dc->dpy);
|
|
|
|
root = RootWindow(dc->dpy, screen);
|
|
|
|
utf8 = XInternAtom(dc->dpy, "UTF8_STRING", False);
|
|
|
|
|
|
|
|
normcol[ColBG] = getcolor(dc, normbgcolor);
|
|
|
|
normcol[ColFG] = getcolor(dc, normfgcolor);
|
|
|
|
selcol[ColBG] = getcolor(dc, selbgcolor);
|
|
|
|
selcol[ColFG] = getcolor(dc, selfgcolor);
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2010-08-05 16:41:56 +02:00
|
|
|
/* menu geometry */
|
2010-08-10 14:38:49 +02:00
|
|
|
mh = (lines + 1) * LINEH;
|
2010-07-31 15:56:27 +02:00
|
|
|
#ifdef XINERAMA
|
2010-08-02 15:22:54 +02:00
|
|
|
if((info = XineramaQueryScreens(dc->dpy, &n))) {
|
|
|
|
int i, di;
|
2010-07-31 15:56:27 +02:00
|
|
|
unsigned int du;
|
|
|
|
Window dw;
|
|
|
|
|
2010-08-02 15:22:54 +02:00
|
|
|
XQueryPointer(dc->dpy, root, &dw, &dw, &x, &y, &di, &di, &du);
|
2010-07-31 15:56:27 +02:00
|
|
|
for(i = 0; i < n; i++)
|
|
|
|
if(INRECT(x, y, info[i].x_org, info[i].y_org, info[i].width, info[i].height))
|
|
|
|
break;
|
2010-07-30 14:40:56 +02:00
|
|
|
x = info[i].x_org;
|
2010-07-31 15:56:27 +02:00
|
|
|
y = info[i].y_org + (topbar ? 0 : info[i].height - mh);
|
2010-07-30 14:40:56 +02:00
|
|
|
mw = info[i].width;
|
|
|
|
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
|
|
|
}
|
2010-08-05 16:41:56 +02:00
|
|
|
/* menu window */
|
2010-07-31 15:56:27 +02:00
|
|
|
wa.override_redirect = True;
|
|
|
|
wa.background_pixmap = ParentRelative;
|
|
|
|
wa.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),
|
|
|
|
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
|
2010-07-30 14:40:56 +02:00
|
|
|
|
2010-07-31 15:56:27 +02:00
|
|
|
grabkeyboard();
|
2010-08-05 16:41:56 +02:00
|
|
|
setcanvas(dc, mw, mh);
|
2010-08-02 15:22:54 +02:00
|
|
|
inputw = MIN(inputw, mw/3);
|
2010-08-02 15:49:14 +02:00
|
|
|
promptw = prompt ? MIN(textw(dc, prompt), mw/5) : 0;
|
2010-08-02 15:22:54 +02:00
|
|
|
XMapRaised(dc->dpy, win);
|
2010-08-02 15:49:14 +02:00
|
|
|
text[0] = '\0';
|
2010-08-02 15:22:54 +02:00
|
|
|
match();
|
2010-07-31 15:56:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
usage(void) {
|
2010-08-02 15:22:54 +02:00
|
|
|
fputs("usage: dmenu [-b] [-i] [-l lines] [-p prompt] [-fn font] [-nb color]\n"
|
|
|
|
" [-nf color] [-sb color] [-sf color] [-v]\n", stderr);
|
2010-07-31 15:56:27 +02:00
|
|
|
exit(EXIT_FAILURE);
|
2010-07-30 14:40:56 +02:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[]) {
|
2010-07-31 15:56:27 +02:00
|
|
|
int i;
|
2007-09-17 20:53:14 +02:00
|
|
|
|
2010-06-30 23:42:15 +02:00
|
|
|
progname = "dmenu";
|
2007-09-17 20:53:14 +02:00
|
|
|
for(i = 1; i < argc; i++)
|
2010-08-02 15:22:54 +02:00
|
|
|
/* single flags */
|
2010-07-31 15:56:27 +02:00
|
|
|
if(!strcmp(argv[i], "-v")) {
|
|
|
|
fputs("dmenu-"VERSION", © 2006-2010 dmenu engineers, see LICENSE for details\n", stdout);
|
|
|
|
exit(EXIT_SUCCESS);
|
2008-03-12 22:37:43 +01:00
|
|
|
}
|
2008-05-19 21:29:32 +02:00
|
|
|
else if(!strcmp(argv[i], "-b"))
|
|
|
|
topbar = False;
|
2010-07-31 15:56:27 +02:00
|
|
|
else if(!strcmp(argv[i], "-i")) {
|
|
|
|
fstrncmp = strncasecmp;
|
|
|
|
fstrstr = cistrstr;
|
|
|
|
}
|
|
|
|
else if(i == argc-1)
|
|
|
|
usage();
|
2010-08-02 15:22:54 +02:00
|
|
|
/* double flags */
|
2010-08-03 18:18:24 +02:00
|
|
|
else if(!strcmp(argv[i], "-l"))
|
2010-08-03 18:10:29 +02:00
|
|
|
lines = atoi(argv[++i]);
|
2010-08-02 15:22:54 +02:00
|
|
|
else if(!strcmp(argv[i], "-p"))
|
2010-07-31 15:56:27 +02:00
|
|
|
prompt = argv[++i];
|
|
|
|
else if(!strcmp(argv[i], "-fn"))
|
2010-08-10 19:09:02 +02:00
|
|
|
font = argv[++i];
|
2010-07-31 15:56:27 +02:00
|
|
|
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
|
|
|
|
usage();
|
|
|
|
|
2010-08-10 19:09:02 +02:00
|
|
|
dc = initdraw();
|
|
|
|
initfont(dc, font);
|
2010-04-01 22:31:09 +02:00
|
|
|
readstdin();
|
2010-07-30 14:40:56 +02:00
|
|
|
setup();
|
2007-09-17 20:53:14 +02:00
|
|
|
run();
|
2010-07-31 15:56:27 +02:00
|
|
|
|
|
|
|
return EXIT_FAILURE; /* should not reach */
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|