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>
|
2008-08-25 10:38:19 +02:00
|
|
|
#include <locale.h>
|
2007-09-16 20:14:09 +02:00
|
|
|
#include <stdarg.h>
|
2006-08-04 09:35:27 +02:00
|
|
|
#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>
|
2008-06-13 12:46:50 +02:00
|
|
|
#include <strings.h>
|
2006-08-04 09:35:27 +02:00
|
|
|
#include <unistd.h>
|
2008-06-13 12:46:50 +02:00
|
|
|
#include <X11/keysym.h>
|
2007-09-16 20:14:09 +02:00
|
|
|
#include <X11/Xlib.h>
|
2006-08-04 09:35:27 +02:00
|
|
|
#include <X11/Xutil.h>
|
2008-05-19 21:29:32 +02:00
|
|
|
#ifdef XINERAMA
|
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
#endif
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2007-09-16 20:14:09 +02:00
|
|
|
/* macros */
|
2008-07-16 19:38:53 +02:00
|
|
|
#define CLEANMASK(mask) (mask & ~(numlockmask | LockMask))
|
|
|
|
#define INRECT(X,Y,RX,RY,RW,RH) ((X) >= (RX) && (X) < (RX) + (RW) && (Y) >= (RY) && (Y) < (RY) + (RH))
|
2008-08-18 11:03:28 +02:00
|
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
2009-11-28 13:28:15 +01:00
|
|
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
2010-05-29 13:55:38 +02:00
|
|
|
#define IS_UTF8_1ST_CHAR(c) ((((c) & 0xc0) == 0xc0) || !((c) & 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-05-28 12:42:49 +02:00
|
|
|
Item *next; /* traverses all items */
|
|
|
|
Item *left, *right; /* traverses items matching current search pattern */
|
2006-08-04 09:35:27 +02:00
|
|
|
};
|
|
|
|
|
2007-09-16 20:14:09 +02:00
|
|
|
/* forward declarations */
|
2008-06-13 12:46:50 +02:00
|
|
|
static void appenditem(Item *i, Item **list, Item **last);
|
2009-11-28 13:28:15 +01:00
|
|
|
static void calcoffsetsh(void);
|
|
|
|
static void calcoffsetsv(void);
|
2008-06-13 12:46:50 +02:00
|
|
|
static char *cistrstr(const char *s, const char *sub);
|
|
|
|
static void cleanup(void);
|
2010-06-24 15:22:34 +02:00
|
|
|
static void dinput(void);
|
2010-03-07 09:32:16 +01:00
|
|
|
static void drawmenu(void);
|
2009-11-28 13:28:15 +01:00
|
|
|
static void drawmenuh(void);
|
|
|
|
static void drawmenuv(void);
|
2008-06-13 12:46:50 +02:00
|
|
|
static Bool grabkeyboard(void);
|
2010-06-25 05:33:41 +02:00
|
|
|
static void kpress(XKeyEvent *e);
|
2008-06-13 12:46:50 +02:00
|
|
|
static void match(char *pattern);
|
|
|
|
static void readstdin(void);
|
|
|
|
static void run(void);
|
2010-06-30 01:05:32 +02:00
|
|
|
static void setup(void);
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2007-09-16 20:14:09 +02:00
|
|
|
#include "config.h"
|
2010-06-23 14:29:15 +02:00
|
|
|
#include "draw.h"
|
2007-09-16 20:14:09 +02:00
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
/* variables */
|
2010-06-29 17:07:31 +02:00
|
|
|
static char **argp = NULL;
|
2008-06-13 12:46:50 +02:00
|
|
|
static char *maxname = NULL;
|
|
|
|
static char *prompt = NULL;
|
|
|
|
static char text[4096];
|
|
|
|
static int cmdw = 0;
|
|
|
|
static int promptw = 0;
|
|
|
|
static int ret = 0;
|
2010-06-24 17:18:18 +02:00
|
|
|
static int screen;
|
2010-06-23 14:49:24 +02:00
|
|
|
static unsigned int lines = 0;
|
2008-07-16 19:18:38 +02:00
|
|
|
static unsigned int numlockmask = 0;
|
2010-06-24 17:18:18 +02:00
|
|
|
static unsigned int mw, mh;
|
2010-06-24 17:24:04 +02:00
|
|
|
static unsigned long normcol[ColLast];
|
|
|
|
static unsigned long selcol[ColLast];
|
2008-06-13 12:46:50 +02:00
|
|
|
static Bool running = True;
|
2010-06-30 01:05:32 +02:00
|
|
|
static Bool topbar = True;
|
2010-06-24 17:18:18 +02:00
|
|
|
static DC dc;
|
|
|
|
static Display *dpy;
|
2010-05-28 12:42:49 +02:00
|
|
|
static Item *allitems = NULL; /* first of all items */
|
|
|
|
static Item *item = NULL; /* first of pattern matching items */
|
2008-06-13 12:46:50 +02:00
|
|
|
static Item *sel = NULL;
|
|
|
|
static Item *next = NULL;
|
|
|
|
static Item *prev = NULL;
|
|
|
|
static Item *curr = NULL;
|
2010-06-24 17:18:18 +02:00
|
|
|
static Window win, parent;
|
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;
|
2009-11-28 13:28:15 +01:00
|
|
|
static void (*calcoffsets)(void) = calcoffsetsh;
|
2007-09-17 20:53:14 +02:00
|
|
|
|
2008-03-22 15:52:00 +01:00
|
|
|
void
|
|
|
|
appenditem(Item *i, Item **list, Item **last) {
|
|
|
|
if(!(*last))
|
|
|
|
*list = i;
|
2007-09-23 18:26:41 +02:00
|
|
|
else
|
2008-03-22 15:52:00 +01:00
|
|
|
(*last)->right = i;
|
|
|
|
i->left = *last;
|
2007-09-23 18:26:41 +02:00
|
|
|
i->right = NULL;
|
2008-03-22 15:52:00 +01:00
|
|
|
*last = i;
|
2007-09-23 18:26:41 +02:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
2009-11-28 13:28:15 +01:00
|
|
|
calcoffsetsh(void) {
|
2008-07-16 19:18:38 +02:00
|
|
|
unsigned int w;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2010-06-24 15:22:34 +02:00
|
|
|
w = promptw + cmdw + (2 * spaceitem);
|
|
|
|
for(next = curr; next; next = next->right)
|
2010-06-24 17:18:18 +02:00
|
|
|
if((w += MIN(textw(&dc, next->text), mw / 3)) > mw)
|
2010-06-24 15:22:34 +02:00
|
|
|
break;
|
|
|
|
w = promptw + cmdw + (2 * spaceitem);
|
|
|
|
for(prev = curr; prev && prev->left; prev = prev->left)
|
2010-06-24 17:18:18 +02:00
|
|
|
if((w += MIN(textw(&dc, prev->left->text), mw / 3)) > mw)
|
2010-06-24 15:22:34 +02:00
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
2009-11-28 13:28:15 +01:00
|
|
|
void
|
|
|
|
calcoffsetsv(void) {
|
2010-06-24 15:22:34 +02:00
|
|
|
unsigned int i;
|
2009-11-28 13:28:15 +01:00
|
|
|
|
2010-06-24 15:22:34 +02:00
|
|
|
next = prev = curr;
|
|
|
|
for(i = 0; i < lines && next; i++)
|
|
|
|
next = next->right;
|
2010-06-30 01:52:14 +02:00
|
|
|
mh = (dc.font.height + 2) * (i + 1);
|
2010-06-24 15:22:34 +02:00
|
|
|
for(i = 0; i < lines && prev && prev->left; i++)
|
|
|
|
prev = prev->left;
|
2009-11-28 13:28:15 +01:00
|
|
|
}
|
|
|
|
|
2008-03-18 17:52:51 +01:00
|
|
|
char *
|
|
|
|
cistrstr(const char *s, const char *sub) {
|
|
|
|
int c, csub;
|
2008-07-16 19:18:38 +02:00
|
|
|
unsigned int len;
|
2008-03-18 17:52:51 +01:00
|
|
|
|
|
|
|
if(!sub)
|
|
|
|
return (char *)s;
|
2010-06-16 16:36:17 +02:00
|
|
|
if((c = tolower(*sub++)) != '\0') {
|
2008-03-18 17:52:51 +01:00
|
|
|
len = strlen(sub);
|
|
|
|
do {
|
|
|
|
do {
|
2010-04-07 18:15:34 +02:00
|
|
|
if((csub = *s++) == '\0')
|
2009-02-21 20:21:54 +01:00
|
|
|
return NULL;
|
2008-03-18 17:52:51 +01:00
|
|
|
}
|
|
|
|
while(tolower(csub) != c);
|
|
|
|
}
|
|
|
|
while(strncasecmp(s, sub, len) != 0);
|
|
|
|
s--;
|
|
|
|
}
|
|
|
|
return (char *)s;
|
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
|
|
|
cleanup(void) {
|
2010-06-23 14:49:24 +02:00
|
|
|
Item *itm;
|
|
|
|
|
|
|
|
while(allitems) {
|
|
|
|
itm = allitems->next;
|
|
|
|
free(allitems->text);
|
|
|
|
free(allitems);
|
|
|
|
allitems = itm;
|
|
|
|
}
|
2010-06-24 17:18:18 +02:00
|
|
|
cleanupdraw(&dc);
|
2007-09-17 20:53:14 +02:00
|
|
|
XDestroyWindow(dpy, win);
|
|
|
|
XUngrabKeyboard(dpy, CurrentTime);
|
|
|
|
}
|
|
|
|
|
2010-06-24 15:22:34 +02:00
|
|
|
void
|
|
|
|
dinput(void) {
|
|
|
|
cleanup();
|
2010-06-29 17:07:31 +02:00
|
|
|
argp[0] = "dinput";
|
|
|
|
argp[1] = text;
|
|
|
|
execvp("dinput", argp);
|
2010-06-24 15:22:34 +02:00
|
|
|
eprint("cannot exec dinput\n");
|
|
|
|
}
|
|
|
|
|
2009-11-28 13:28:15 +01:00
|
|
|
void
|
2010-03-07 09:32:16 +01:00
|
|
|
drawmenu(void) {
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.x = 0;
|
|
|
|
dc.y = 0;
|
|
|
|
dc.w = mw;
|
|
|
|
dc.h = mh;
|
2010-06-28 07:09:34 +02:00
|
|
|
drawtext(&dc, NULL, normcol, False);
|
2010-06-30 01:52:14 +02:00
|
|
|
dc.h = dc.font.height + 2;
|
|
|
|
dc.y = topbar ? 0 : mh - dc.h;
|
2006-12-13 14:14:41 +01:00
|
|
|
/* print prompt? */
|
2010-05-03 00:17:02 +02:00
|
|
|
if(prompt) {
|
2006-12-13 14:14:41 +01:00
|
|
|
dc.w = promptw;
|
2010-06-28 07:09:34 +02:00
|
|
|
drawtext(&dc, prompt, selcol, False);
|
2010-05-03 00:17:02 +02:00
|
|
|
dc.x += dc.w;
|
2006-12-13 14:14:41 +01:00
|
|
|
}
|
2010-05-03 00:17:02 +02:00
|
|
|
dc.w = mw - dc.x;
|
2006-08-04 10:23:36 +02:00
|
|
|
/* print command */
|
2010-04-14 19:35:19 +02:00
|
|
|
if(cmdw && item && lines == 0)
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.w = cmdw;
|
2010-06-28 07:09:34 +02:00
|
|
|
drawtext(&dc, *text ? text : NULL, normcol, False);
|
2010-06-30 01:52:14 +02:00
|
|
|
if(lines > 0)
|
|
|
|
drawmenuv();
|
|
|
|
else
|
|
|
|
drawmenuh();
|
2006-08-04 10:23:36 +02:00
|
|
|
XCopyArea(dpy, dc.drawable, win, dc.gc, 0, 0, mw, mh, 0, 0);
|
|
|
|
XFlush(dpy);
|
|
|
|
}
|
|
|
|
|
2010-03-07 09:32:16 +01:00
|
|
|
void
|
|
|
|
drawmenuh(void) {
|
|
|
|
Item *i;
|
|
|
|
|
2010-04-14 19:35:19 +02:00
|
|
|
dc.x += cmdw;
|
2010-03-07 09:32:16 +01:00
|
|
|
dc.w = spaceitem;
|
2010-06-30 01:52:14 +02:00
|
|
|
drawtext(&dc, curr && curr->left ? "<" : NULL, normcol, False);
|
2010-03-07 09:32:16 +01:00
|
|
|
dc.x += dc.w;
|
2010-06-25 05:33:41 +02:00
|
|
|
for(i = curr; i != next; i = i->right) {
|
2010-06-24 17:18:18 +02:00
|
|
|
dc.w = MIN(textw(&dc, i->text), mw / 3);
|
2010-06-28 07:09:34 +02:00
|
|
|
drawtext(&dc, i->text, (sel == i) ? selcol : normcol, False);
|
2010-03-07 09:32:16 +01:00
|
|
|
dc.x += dc.w;
|
|
|
|
}
|
|
|
|
dc.w = spaceitem;
|
2010-05-03 00:17:02 +02:00
|
|
|
dc.x = mw - dc.w;
|
2010-06-28 07:09:34 +02:00
|
|
|
drawtext(&dc, next ? ">" : NULL, normcol, False);
|
2010-03-07 09:32:16 +01:00
|
|
|
}
|
|
|
|
|
2009-11-28 13:28:15 +01:00
|
|
|
void
|
|
|
|
drawmenuv(void) {
|
|
|
|
Item *i;
|
2010-06-30 01:52:14 +02:00
|
|
|
XWindowAttributes wa;
|
2009-11-28 13:28:15 +01:00
|
|
|
|
2010-06-30 01:52:14 +02:00
|
|
|
dc.y = topbar ? dc.h : 0;
|
2010-05-05 12:42:39 +02:00
|
|
|
dc.w = mw - dc.x;
|
2010-06-25 05:33:41 +02:00
|
|
|
for(i = curr; i != next; i = i->right) {
|
2010-06-28 07:09:34 +02:00
|
|
|
drawtext(&dc, i->text, (sel == i) ? selcol : normcol, False);
|
2010-06-11 10:24:33 +02:00
|
|
|
dc.y += dc.h;
|
2009-11-28 13:28:15 +01:00
|
|
|
}
|
2010-06-30 01:52:14 +02:00
|
|
|
if(!XGetWindowAttributes(dpy, win, &wa))
|
|
|
|
eprint("cannot get window attributes");
|
|
|
|
XMoveResizeWindow(dpy, win, wa.x, wa.y + (topbar ? 0 : wa.height - mh), mw, mh);
|
2009-11-28 13:28:15 +01:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
Bool
|
|
|
|
grabkeyboard(void) {
|
2008-07-16 19:18:38 +02:00
|
|
|
unsigned int len;
|
2007-09-17 20:53:14 +02:00
|
|
|
|
|
|
|
for(len = 1000; len; len--) {
|
2010-04-14 19:35:19 +02:00
|
|
|
if(XGrabKeyboard(dpy, parent, True, GrabModeAsync, GrabModeAsync, CurrentTime)
|
2008-03-23 21:11:42 +01:00
|
|
|
== GrabSuccess)
|
2007-09-17 20:53:14 +02:00
|
|
|
break;
|
|
|
|
usleep(1000);
|
|
|
|
}
|
|
|
|
return len > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-06-25 05:33:41 +02:00
|
|
|
kpress(XKeyEvent *e) {
|
2010-03-22 08:50:26 +01:00
|
|
|
char buf[sizeof text];
|
2010-06-20 01:44:26 +02:00
|
|
|
int num;
|
|
|
|
unsigned int i, 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);
|
2009-02-21 20:21:54 +01:00
|
|
|
num = XLookupString(e, buf, sizeof buf, &ksym, NULL);
|
2010-06-16 16:36:17 +02:00
|
|
|
if(ksym == XK_KP_Enter)
|
|
|
|
ksym = XK_Return;
|
|
|
|
else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
|
|
|
|
ksym = (ksym - XK_KP_0) + XK_0;
|
|
|
|
else if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
|
|
|
|
|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
|
|
|
|
|| IsPrivateKeypadKey(ksym))
|
2006-08-04 09:35:27 +02:00
|
|
|
return;
|
|
|
|
/* first check if a control mask is omitted */
|
|
|
|
if(e->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-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:
|
2010-06-25 05:33:41 +02:00
|
|
|
case XK_m:
|
2007-01-10 23:07:03 +01:00
|
|
|
ksym = XK_Return;
|
|
|
|
break;
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_n:
|
|
|
|
ksym = XK_Down;
|
|
|
|
break;
|
|
|
|
case XK_p:
|
|
|
|
ksym = XK_Up;
|
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
case XK_u:
|
2010-06-23 13:04:54 +02:00
|
|
|
text[0] = '\0';
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2009-11-28 13:28:15 +01:00
|
|
|
break;
|
2007-02-19 15:49:50 +01:00
|
|
|
case XK_w:
|
2010-06-23 13:04:54 +02:00
|
|
|
if(len == 0)
|
|
|
|
return;
|
|
|
|
i = len;
|
|
|
|
while(i-- > 0 && text[i] == ' ');
|
|
|
|
while(i-- > 0 && text[i] != ' ');
|
|
|
|
text[++i] = '\0';
|
|
|
|
match(text);
|
2009-11-28 13:28:15 +01:00
|
|
|
break;
|
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-06-23 13:04:54 +02:00
|
|
|
num = MIN(num, sizeof text);
|
2006-12-12 09:57:42 +01:00
|
|
|
if(num && !iscntrl((int) buf[0])) {
|
2010-06-23 13:04:54 +02:00
|
|
|
memcpy(text + len, buf, num + 1);
|
|
|
|
len += num;
|
2006-12-12 09:57:42 +01:00
|
|
|
match(text);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_BackSpace:
|
2010-06-23 13:04:54 +02:00
|
|
|
if(len == 0)
|
2010-06-20 01:44:26 +02:00
|
|
|
return;
|
2010-06-23 13:04:54 +02:00
|
|
|
for(i = 1; len - i > 0 && !IS_UTF8_1ST_CHAR(text[len - i]); i++);
|
|
|
|
len -= i;
|
|
|
|
text[len] = '\0';
|
2010-03-22 08:50:26 +01:00
|
|
|
match(text);
|
|
|
|
break;
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_End:
|
|
|
|
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:
|
|
|
|
ret = 1;
|
|
|
|
running = False;
|
2010-06-20 01:44:26 +02:00
|
|
|
return;
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_Home:
|
|
|
|
sel = curr = item;
|
|
|
|
calcoffsets();
|
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
case XK_Left:
|
2010-06-20 16:04:15 +02:00
|
|
|
case XK_Up:
|
|
|
|
if(!sel || !sel->left)
|
|
|
|
return;
|
|
|
|
sel = sel->left;
|
|
|
|
if(sel->right == curr) {
|
|
|
|
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-06-30 01:52:14 +02:00
|
|
|
if(e->state & ShiftMask)
|
|
|
|
dinput();
|
|
|
|
fprintf(stdout, "%s", sel ? sel->text : text);
|
2006-08-04 09:35:27 +02:00
|
|
|
fflush(stdout);
|
2006-08-16 19:25:04 +02:00
|
|
|
running = False;
|
2010-06-20 01:44:26 +02:00
|
|
|
return;
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_Right:
|
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-06-20 16:04:15 +02:00
|
|
|
sel = sel->right;
|
|
|
|
if(sel == next) {
|
|
|
|
curr = next;
|
|
|
|
calcoffsets();
|
|
|
|
}
|
2006-08-04 09:35:27 +02:00
|
|
|
break;
|
2006-12-12 09:57:42 +01:00
|
|
|
case XK_Tab:
|
2010-06-24 15:22:34 +02:00
|
|
|
if(sel)
|
|
|
|
strncpy(text, sel->text, sizeof text);
|
|
|
|
dinput();
|
2006-12-12 09:57:42 +01:00
|
|
|
break;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
2006-08-04 10:23:36 +02:00
|
|
|
drawmenu();
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
|
|
|
match(char *pattern) {
|
2008-07-16 19:18:38 +02:00
|
|
|
unsigned int plen;
|
2008-03-22 15:52:00 +01:00
|
|
|
Item *i, *itemend, *lexact, *lprefix, *lsubstr, *exactend, *prefixend, *substrend;
|
2007-09-17 20:53:14 +02:00
|
|
|
|
|
|
|
if(!pattern)
|
|
|
|
return;
|
|
|
|
plen = strlen(pattern);
|
2008-03-22 15:52:00 +01:00
|
|
|
item = lexact = lprefix = lsubstr = itemend = exactend = prefixend = substrend = NULL;
|
2007-09-23 18:26:41 +02:00
|
|
|
for(i = allitems; i; i = i->next)
|
2008-03-23 12:09:29 +01:00
|
|
|
if(!fstrncmp(pattern, i->text, plen + 1))
|
2008-03-22 15:52:00 +01:00
|
|
|
appenditem(i, &lexact, &exactend);
|
2008-03-23 12:09:29 +01:00
|
|
|
else if(!fstrncmp(pattern, i->text, plen))
|
2008-03-22 15:52:00 +01:00
|
|
|
appenditem(i, &lprefix, &prefixend);
|
2008-03-23 12:09:29 +01:00
|
|
|
else if(fstrstr(i->text, pattern))
|
2008-03-22 15:52:00 +01:00
|
|
|
appenditem(i, &lsubstr, &substrend);
|
|
|
|
if(lexact) {
|
|
|
|
item = lexact;
|
|
|
|
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
|
|
|
|
item = lprefix;
|
|
|
|
itemend = prefixend;
|
|
|
|
}
|
|
|
|
if(lsubstr) {
|
|
|
|
if(itemend) {
|
|
|
|
itemend->right = lsubstr;
|
|
|
|
lsubstr->left = itemend;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
item = lsubstr;
|
|
|
|
}
|
2007-09-17 20:53:14 +02:00
|
|
|
curr = prev = next = sel = item;
|
|
|
|
calcoffsets();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-25 08:29:20 +02:00
|
|
|
readstdin(void) {
|
2010-04-01 22:31:09 +02:00
|
|
|
char *p, buf[sizeof text];
|
|
|
|
unsigned int len = 0, max = 0;
|
2006-08-04 09:35:27 +02:00
|
|
|
Item *i, *new;
|
|
|
|
|
2010-04-01 22:31:09 +02:00
|
|
|
i = NULL;
|
2006-11-26 15:49:33 +01:00
|
|
|
while(fgets(buf, sizeof buf, stdin)) {
|
2010-04-01 22:31:09 +02:00
|
|
|
len = strlen(buf);
|
|
|
|
if(buf[len-1] == '\n')
|
|
|
|
buf[--len] = '\0';
|
|
|
|
if(!(p = strdup(buf)))
|
2010-06-24 15:22:34 +02:00
|
|
|
eprint("cannot strdup %u bytes\n", len);
|
2010-06-16 16:36:17 +02:00
|
|
|
if((max = MAX(max, len)) == len)
|
2006-08-04 09:35:27 +02:00
|
|
|
maxname = p;
|
2010-06-11 10:24:33 +02:00
|
|
|
if(!(new = malloc(sizeof *new)))
|
2010-06-24 15:22:34 +02:00
|
|
|
eprint("cannot malloc %u bytes\n", sizeof *new);
|
2006-08-04 09:35:27 +02:00
|
|
|
new->next = new->left = new->right = NULL;
|
|
|
|
new->text = p;
|
|
|
|
if(!i)
|
2006-08-04 10:23:36 +02:00
|
|
|
allitems = new;
|
2006-08-04 09:35:27 +02:00
|
|
|
else
|
|
|
|
i->next = new;
|
|
|
|
i = new;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
|
|
|
run(void) {
|
|
|
|
XEvent ev;
|
|
|
|
|
|
|
|
/* main event loop */
|
|
|
|
while(running && !XNextEvent(dpy, &ev))
|
2010-06-28 07:09:34 +02:00
|
|
|
switch(ev.type) {
|
2007-09-17 20:53:14 +02:00
|
|
|
case KeyPress:
|
|
|
|
kpress(&ev.xkey);
|
|
|
|
break;
|
|
|
|
case Expose:
|
|
|
|
if(ev.xexpose.count == 0)
|
|
|
|
drawmenu();
|
|
|
|
break;
|
2010-04-01 22:40:11 +02:00
|
|
|
case VisibilityNotify:
|
|
|
|
if (ev.xvisibility.state != VisibilityUnobscured)
|
|
|
|
XRaiseWindow(dpy, win);
|
|
|
|
break;
|
2007-09-17 20:53:14 +02:00
|
|
|
}
|
2007-02-19 21:18:36 +01:00
|
|
|
}
|
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
void
|
2010-06-30 01:05:32 +02:00
|
|
|
setup(void) {
|
2008-07-17 18:40:42 +02:00
|
|
|
int i, j, x, y;
|
2008-05-19 21:29:32 +02:00
|
|
|
#if XINERAMA
|
2008-07-18 21:20:19 +02:00
|
|
|
int n;
|
2008-05-19 21:29:32 +02:00
|
|
|
XineramaScreenInfo *info = NULL;
|
|
|
|
#endif
|
2008-07-18 21:20:19 +02:00
|
|
|
XModifierKeymap *modmap;
|
|
|
|
XSetWindowAttributes wa;
|
2010-04-14 19:35:19 +02:00
|
|
|
XWindowAttributes pwa;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2007-03-07 10:54:21 +01:00
|
|
|
/* init modifier map */
|
|
|
|
modmap = XGetModifierMapping(dpy);
|
2007-09-17 20:53:14 +02:00
|
|
|
for(i = 0; i < 8; i++)
|
|
|
|
for(j = 0; j < modmap->max_keypermod; j++) {
|
2007-03-07 10:54:21 +01:00
|
|
|
if(modmap->modifiermap[i * modmap->max_keypermod + j]
|
|
|
|
== XKeysymToKeycode(dpy, XK_Num_Lock))
|
|
|
|
numlockmask = (1 << i);
|
|
|
|
}
|
|
|
|
XFreeModifiermap(modmap);
|
2007-09-17 20:53:14 +02:00
|
|
|
|
2010-06-24 17:18:18 +02:00
|
|
|
dc.dpy = dpy;
|
2010-06-24 17:24:04 +02:00
|
|
|
normcol[ColBG] = getcolor(&dc, normbgcolor);
|
|
|
|
normcol[ColFG] = getcolor(&dc, normfgcolor);
|
|
|
|
selcol[ColBG] = getcolor(&dc, selbgcolor);
|
|
|
|
selcol[ColFG] = getcolor(&dc, selfgcolor);
|
2010-06-24 17:18:18 +02:00
|
|
|
initfont(&dc, font);
|
2007-09-17 20:53:14 +02:00
|
|
|
|
2006-10-06 11:52:57 +02:00
|
|
|
/* menu window */
|
2009-02-21 20:21:54 +01:00
|
|
|
wa.override_redirect = True;
|
2006-08-04 09:35:27 +02:00
|
|
|
wa.background_pixmap = ParentRelative;
|
2010-06-25 05:33:41 +02:00
|
|
|
wa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
|
2008-05-19 21:29:32 +02:00
|
|
|
|
|
|
|
/* menu window geometry */
|
2010-04-14 19:35:19 +02:00
|
|
|
mh = (dc.font.height + 2) * (lines + 1);
|
2008-05-19 21:29:32 +02:00
|
|
|
#if XINERAMA
|
2010-04-14 19:35:19 +02:00
|
|
|
if(parent == RootWindow(dpy, screen) && XineramaIsActive(dpy) && (info = XineramaQueryScreens(dpy, &n))) {
|
2008-07-16 19:38:53 +02:00
|
|
|
i = 0;
|
|
|
|
if(n > 1) {
|
|
|
|
int di;
|
|
|
|
unsigned int dui;
|
|
|
|
Window dummy;
|
2010-04-14 19:35:19 +02:00
|
|
|
if(XQueryPointer(dpy, parent, &dummy, &dummy, &x, &y, &di, &di, &dui))
|
2008-07-16 19:38:53 +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;
|
|
|
|
}
|
|
|
|
x = info[i].x_org;
|
|
|
|
y = topbar ? info[i].y_org : info[i].y_org + info[i].height - mh;
|
|
|
|
mw = info[i].width;
|
2008-05-19 21:29:32 +02:00
|
|
|
XFree(info);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2010-06-30 01:05:32 +02:00
|
|
|
if(!XGetWindowAttributes(dpy, parent, &pwa))
|
|
|
|
eprint("cannot get window attributes");
|
2008-05-19 21:29:32 +02:00
|
|
|
x = 0;
|
2010-04-14 19:35:19 +02:00
|
|
|
y = topbar ? 0 : pwa.height - mh;
|
|
|
|
mw = pwa.width;
|
2008-03-18 17:52:51 +01:00
|
|
|
}
|
2008-05-19 21:29:32 +02:00
|
|
|
|
2010-04-14 19:35:19 +02:00
|
|
|
win = XCreateWindow(dpy, parent, x, y, mw, mh, 0,
|
2006-08-04 09:35:27 +02:00
|
|
|
DefaultDepth(dpy, screen), CopyFromParent,
|
|
|
|
DefaultVisual(dpy, screen),
|
|
|
|
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
|
2007-09-17 20:53:14 +02:00
|
|
|
|
2010-06-24 17:18:18 +02:00
|
|
|
setupdraw(&dc, win);
|
2006-08-04 09:35:27 +02:00
|
|
|
if(maxname)
|
2010-06-24 17:18:18 +02:00
|
|
|
cmdw = MIN(textw(&dc, maxname), mw / 3);
|
2006-12-13 14:14:41 +01:00
|
|
|
if(prompt)
|
2010-06-24 17:18:18 +02:00
|
|
|
promptw = MIN(textw(&dc, prompt), mw / 5);
|
2010-04-07 18:15:34 +02:00
|
|
|
text[0] = '\0';
|
2006-08-07 07:39:31 +02:00
|
|
|
match(text);
|
2007-03-07 10:54:21 +01:00
|
|
|
XMapRaised(dpy, win);
|
2007-09-17 20:53:14 +02:00
|
|
|
}
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2007-09-17 20:53:14 +02:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[]) {
|
2008-07-16 19:18:38 +02:00
|
|
|
unsigned int i;
|
2007-09-17 20:53:14 +02:00
|
|
|
|
|
|
|
/* command line args */
|
2010-06-24 15:22:34 +02:00
|
|
|
progname = argv[0];
|
2007-09-17 20:53:14 +02:00
|
|
|
for(i = 1; i < argc; i++)
|
2008-03-12 22:37:43 +01:00
|
|
|
if(!strcmp(argv[i], "-i")) {
|
|
|
|
fstrncmp = strncasecmp;
|
2008-03-12 16:41:19 +01:00
|
|
|
fstrstr = cistrstr;
|
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-03-31 23:43:49 +02:00
|
|
|
else if(!strcmp(argv[i], "-e")) {
|
2010-04-14 19:35:19 +02:00
|
|
|
if(++i < argc) parent = atoi(argv[i]);
|
2010-03-31 23:43:49 +02:00
|
|
|
}
|
2009-11-28 13:28:15 +01:00
|
|
|
else if(!strcmp(argv[i], "-l")) {
|
2010-03-07 09:32:16 +01:00
|
|
|
if(++i < argc) lines = atoi(argv[i]);
|
2010-06-11 10:24:33 +02:00
|
|
|
if(lines > 0)
|
|
|
|
calcoffsets = calcoffsetsv;
|
2009-11-28 13:28:15 +01:00
|
|
|
}
|
2007-09-17 20:53:14 +02:00
|
|
|
else if(!strcmp(argv[i], "-fn")) {
|
|
|
|
if(++i < argc) font = argv[i];
|
|
|
|
}
|
|
|
|
else if(!strcmp(argv[i], "-nb")) {
|
2008-06-14 11:55:13 +02:00
|
|
|
if(++i < argc) normbgcolor = argv[i];
|
2007-09-17 20:53:14 +02:00
|
|
|
}
|
|
|
|
else if(!strcmp(argv[i], "-nf")) {
|
2008-06-14 11:55:13 +02:00
|
|
|
if(++i < argc) normfgcolor = argv[i];
|
2007-09-17 20:53:14 +02:00
|
|
|
}
|
|
|
|
else if(!strcmp(argv[i], "-p")) {
|
|
|
|
if(++i < argc) prompt = argv[i];
|
|
|
|
}
|
|
|
|
else if(!strcmp(argv[i], "-sb")) {
|
2008-06-14 11:55:13 +02:00
|
|
|
if(++i < argc) selbgcolor = argv[i];
|
2007-09-17 20:53:14 +02:00
|
|
|
}
|
|
|
|
else if(!strcmp(argv[i], "-sf")) {
|
2008-06-14 11:55:13 +02:00
|
|
|
if(++i < argc) selfgcolor = argv[i];
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|
2010-06-29 17:07:31 +02:00
|
|
|
else if(!strcmp(argv[i], "-v")) {
|
|
|
|
printf("dmenu-"VERSION", © 2006-2010 dmenu engineers, see LICENSE for details\n");
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fputs("usage: dmenu [-i] [-b] [-e <xid>] [-l <lines>] [-fn <font>] [-nb <color>]\n"
|
|
|
|
" [-nf <color>] [-p <prompt>] [-sb <color>] [-sf <color>] [-v]\n", stderr);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
2008-08-25 10:38:19 +02:00
|
|
|
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
|
2010-06-11 10:24:33 +02:00
|
|
|
fprintf(stderr, "dmenu: warning: no locale support\n");
|
2009-02-21 20:21:54 +01:00
|
|
|
if(!(dpy = XOpenDisplay(NULL)))
|
2010-06-24 15:22:34 +02:00
|
|
|
eprint("cannot open display\n");
|
2007-09-17 20:53:14 +02:00
|
|
|
screen = DefaultScreen(dpy);
|
2010-04-14 19:35:19 +02:00
|
|
|
if(!parent)
|
|
|
|
parent = RootWindow(dpy, screen);
|
2010-06-29 17:07:31 +02:00
|
|
|
if(!(argp = malloc(sizeof *argp * (argc+2))))
|
|
|
|
eprint("cannot malloc %u bytes\n", sizeof *argp * (argc+2));
|
|
|
|
memcpy(argp + 2, argv + 1, sizeof *argp * argc);
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2010-04-01 22:31:09 +02:00
|
|
|
readstdin();
|
|
|
|
running = grabkeyboard();
|
2007-09-17 20:53:14 +02:00
|
|
|
|
2010-06-30 01:05:32 +02:00
|
|
|
setup();
|
2007-09-17 20:53:14 +02:00
|
|
|
drawmenu();
|
|
|
|
XSync(dpy, False);
|
|
|
|
run();
|
|
|
|
cleanup();
|
2006-08-04 09:35:27 +02:00
|
|
|
XCloseDisplay(dpy);
|
|
|
|
return ret;
|
|
|
|
}
|