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>
|
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>
|
|
|
|
#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>
|
2010-07-02 07:49:05 +02:00
|
|
|
#include "dmenu.h"
|
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-07-30 11:25:55 +02:00
|
|
|
static void drawitem(const char *s, unsigned long col[ColLast]);
|
2009-11-28 13:28:15 +01:00
|
|
|
static void drawmenuh(void);
|
|
|
|
static void drawmenuv(void);
|
2010-07-02 07:49:05 +02:00
|
|
|
static void match(void);
|
2008-06-13 12:46:50 +02:00
|
|
|
static void readstdin(void);
|
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;
|
2010-07-02 07:49:05 +02:00
|
|
|
static unsigned int cmdw = 0;
|
2010-06-23 14:49:24 +02:00
|
|
|
static unsigned int lines = 0;
|
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-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) {
|
2010-07-02 07:49:05 +02:00
|
|
|
unsigned int w, x;
|
2006-08-04 09:35:27 +02:00
|
|
|
|
2010-07-02 07:49:05 +02:00
|
|
|
w = promptw + cmdw + textw(&dc, "<") + textw(&dc, ">");
|
|
|
|
for(x = w, next = curr; next; next = next->right)
|
2010-07-02 04:44:01 +02:00
|
|
|
if((x += MIN(textw(&dc, next->text), mw / 3)) > mw)
|
2010-06-24 15:22:34 +02:00
|
|
|
break;
|
2010-07-02 07:49:05 +02:00
|
|
|
for(x = w, prev = curr; prev && prev->left; prev = prev->left)
|
2010-07-02 04:44:01 +02:00
|
|
|
if((x += 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-07-02 04:44:01 +02:00
|
|
|
XCloseDisplay(dpy);
|
2007-09-17 20:53:14 +02:00
|
|
|
}
|
|
|
|
|
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-07-02 07:49:05 +02:00
|
|
|
drawbar(void) {
|
2006-08-04 10:23:36 +02:00
|
|
|
dc.x = 0;
|
|
|
|
dc.y = 0;
|
|
|
|
dc.w = mw;
|
|
|
|
dc.h = mh;
|
2010-07-27 14:40:32 +02:00
|
|
|
drawbox(&dc, normcol);
|
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-07-30 11:25:55 +02:00
|
|
|
drawbox(&dc, selcol);
|
2010-07-02 06:50:19 +02:00
|
|
|
drawtext(&dc, prompt, selcol);
|
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-07-02 06:50:19 +02:00
|
|
|
drawtext(&dc, text, normcol);
|
2010-06-30 01:52:14 +02:00
|
|
|
if(lines > 0)
|
|
|
|
drawmenuv();
|
2010-06-30 11:45:24 +02:00
|
|
|
else if(curr)
|
2010-06-30 01:52:14 +02:00
|
|
|
drawmenuh();
|
2010-07-02 06:50:19 +02:00
|
|
|
commitdraw(&dc, win);
|
2006-08-04 10:23:36 +02:00
|
|
|
}
|
|
|
|
|
2010-07-30 10:18:35 +02:00
|
|
|
void
|
2010-07-30 11:25:55 +02:00
|
|
|
drawitem(const char *s, unsigned long col[ColLast]) {
|
2010-07-30 11:26:12 +02:00
|
|
|
const char *p;
|
|
|
|
unsigned int w = textnw(&dc, text, strlen(text));
|
|
|
|
|
2010-07-30 10:18:35 +02:00
|
|
|
drawbox(&dc, col);
|
|
|
|
drawtext(&dc, s, col);
|
2010-07-30 11:26:12 +02:00
|
|
|
for(p = fstrstr(s, text); *text && (p = fstrstr(p, text)); p++)
|
|
|
|
drawline(&dc, textnw(&dc, s, p-s) + dc.h/2 - 1, dc.h-2, w, 1, col);
|
2010-07-30 10:18:35 +02:00
|
|
|
}
|
|
|
|
|
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-07-02 07:49:05 +02:00
|
|
|
dc.w = textw(&dc, "<");
|
2010-07-02 06:50:19 +02:00
|
|
|
drawtext(&dc, curr->left ? "<" : NULL, normcol);
|
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-07-30 10:18:35 +02:00
|
|
|
drawitem(i->text, (sel == i) ? selcol : normcol);
|
2010-03-07 09:32:16 +01:00
|
|
|
dc.x += dc.w;
|
|
|
|
}
|
2010-07-02 07:49:05 +02:00
|
|
|
dc.w = textw(&dc, ">");
|
2010-05-03 00:17:02 +02:00
|
|
|
dc.x = mw - dc.w;
|
2010-07-02 06:50:19 +02:00
|
|
|
drawtext(&dc, next ? ">" : NULL, normcol);
|
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-07-30 10:18:35 +02:00
|
|
|
drawitem(i->text, (sel == i) ? selcol : normcol);
|
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
|
|
|
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';
|
2010-07-02 07:49:05 +02:00
|
|
|
match();
|
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';
|
2010-07-02 07:49:05 +02:00
|
|
|
match();
|
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;
|
2010-07-02 07:49:05 +02:00
|
|
|
match();
|
2006-12-12 09:57:42 +01:00
|
|
|
}
|
|
|
|
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-07-02 07:49:05 +02:00
|
|
|
match();
|
2010-03-22 08:50:26 +01:00
|
|
|
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:
|
2010-07-02 04:44:01 +02:00
|
|
|
exit(EXIT_FAILURE);
|
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);
|
2010-07-02 04:44:01 +02:00
|
|
|
exit(EXIT_SUCCESS);
|
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
|
|
|
}
|
2010-07-02 07:49:05 +02:00
|
|
|
drawbar();
|
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) {
|
|
|
|
unsigned int len;
|
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
|
|
|
|
2010-07-02 07:49:05 +02:00
|
|
|
len = strlen(text);
|
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)
|
2010-07-02 07:49:05 +02:00
|
|
|
if(!fstrncmp(text, i->text, len + 1))
|
2008-03-22 15:52:00 +01:00
|
|
|
appenditem(i, &lexact, &exactend);
|
2010-07-02 07:49:05 +02:00
|
|
|
else if(!fstrncmp(text, i->text, len))
|
2008-03-22 15:52:00 +01:00
|
|
|
appenditem(i, &lprefix, &prefixend);
|
2010-07-02 07:49:05 +02:00
|
|
|
else if(fstrstr(i->text, text))
|
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
|
|
|
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-30 23:42:15 +02:00
|
|
|
progname = "dmenu";
|
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;
|
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 {
|
2010-06-30 23:42:15 +02:00
|
|
|
fputs("usage: dmenu [-i] [-b] [-l <lines>] [-fn <font>] [-nb <color>]\n"
|
2010-07-02 04:44:01 +02:00
|
|
|
" [-nf <color>] [-p <prompt>] [-sb <color>] [-sf <color>] [-v]\n", stderr);
|
2010-06-29 17:07:31 +02:00
|
|
|
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");
|
2010-07-02 04:44:01 +02:00
|
|
|
if(atexit(&cleanup) != 0)
|
|
|
|
eprint("cannot register cleanup\n");
|
2007-09-17 20:53:14 +02:00
|
|
|
screen = DefaultScreen(dpy);
|
2010-06-30 23:42:15 +02:00
|
|
|
root = 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();
|
2010-07-02 04:44:01 +02:00
|
|
|
grabkeyboard();
|
2010-07-02 07:49:05 +02:00
|
|
|
setup(lines);
|
|
|
|
if(maxname)
|
|
|
|
cmdw = MIN(textw(&dc, maxname), mw / 3);
|
|
|
|
match();
|
2007-09-17 20:53:14 +02:00
|
|
|
run();
|
2010-07-02 04:44:01 +02:00
|
|
|
return 0;
|
2006-08-04 09:35:27 +02:00
|
|
|
}
|