2006-07-10 16:49:43 +02:00
|
|
|
/*
|
|
|
|
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* (C)opyright MMVI Sander van Dijk <a dot h dot vandijk at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
#include "config.h"
|
|
|
|
#include "draw.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2006-07-10 16:49:43 +02:00
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <X11/cursorfont.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
|
|
|
|
typedef struct Item Item;
|
|
|
|
|
|
|
|
struct Item {
|
|
|
|
Item *next; /* traverses all items */
|
|
|
|
Item *left, *right; /* traverses items matching current search pattern */
|
|
|
|
char *text;
|
|
|
|
};
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
static Display *dpy;
|
|
|
|
static Window root;
|
|
|
|
static Window win;
|
|
|
|
static XRectangle rect;
|
2006-07-10 16:49:43 +02:00
|
|
|
static Bool done = False;
|
2006-07-10 19:46:24 +02:00
|
|
|
|
2006-07-11 11:27:56 +02:00
|
|
|
static Item *allitem = NULL; /* first of all items */
|
|
|
|
static Item *item = NULL; /* first of pattern matching items */
|
|
|
|
static Item *sel = NULL;
|
|
|
|
static Item *nextoff = NULL;
|
|
|
|
static Item *prevoff = NULL;
|
|
|
|
static Item *curroff = NULL;
|
2006-07-10 19:46:24 +02:00
|
|
|
|
|
|
|
static int screen;
|
2006-07-11 11:27:56 +02:00
|
|
|
static char *title = NULL;
|
2006-07-10 16:49:43 +02:00
|
|
|
static char text[4096];
|
2006-07-10 19:46:24 +02:00
|
|
|
static int ret = 0;
|
2006-07-10 16:49:43 +02:00
|
|
|
static int nitem = 0;
|
|
|
|
static unsigned int cmdw = 0;
|
|
|
|
static unsigned int twidth = 0;
|
|
|
|
static unsigned int cwidth = 0;
|
|
|
|
static const int seek = 30; /* 30px */
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
static Brush brush = {0};
|
|
|
|
|
2006-07-10 22:16:48 +02:00
|
|
|
static void draw_menu();
|
2006-07-10 19:46:24 +02:00
|
|
|
static void kpress(XKeyEvent * e);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
static char version[] = "gridmenu - " VERSION ", (C)opyright MMVI Anselm R. Garbe\n";
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage()
|
|
|
|
{
|
2006-07-10 19:46:24 +02:00
|
|
|
fprintf(stderr, "%s", "usage: gridmenu [-v] [-t <title>]\n");
|
2006-07-10 16:49:43 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_offsets()
|
|
|
|
{
|
|
|
|
unsigned int tw, w = cmdw + 2 * seek;
|
|
|
|
|
|
|
|
if(!curroff)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for(nextoff = curroff; nextoff; nextoff=nextoff->right) {
|
2006-07-10 19:46:24 +02:00
|
|
|
tw = textwidth(&brush.font, nextoff->text);
|
|
|
|
if(tw > rect.width / 3)
|
|
|
|
tw = rect.width / 3;
|
|
|
|
w += tw + brush.font.height;
|
|
|
|
if(w > rect.width)
|
2006-07-10 16:49:43 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
w = cmdw + 2 * seek;
|
|
|
|
for(prevoff = curroff; prevoff && prevoff->left; prevoff=prevoff->left) {
|
2006-07-10 19:46:24 +02:00
|
|
|
tw = textwidth(&brush.font, prevoff->left->text);
|
|
|
|
if(tw > rect.width / 3)
|
|
|
|
tw = rect.width / 3;
|
|
|
|
w += tw + brush.font.height;
|
|
|
|
if(w > rect.width)
|
2006-07-10 16:49:43 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
update_items(char *pattern)
|
|
|
|
{
|
|
|
|
unsigned int plen = strlen(pattern);
|
|
|
|
Item *i, *j;
|
|
|
|
|
|
|
|
if(!pattern)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if(!title || *pattern)
|
|
|
|
cmdw = cwidth;
|
|
|
|
else
|
|
|
|
cmdw = twidth;
|
|
|
|
|
2006-07-11 11:27:56 +02:00
|
|
|
item = j = NULL;
|
2006-07-10 16:49:43 +02:00
|
|
|
nitem = 0;
|
|
|
|
|
|
|
|
for(i = allitem; i; i=i->next)
|
|
|
|
if(!plen || !strncmp(pattern, i->text, plen)) {
|
|
|
|
if(!j)
|
|
|
|
item = i;
|
|
|
|
else
|
|
|
|
j->right = i;
|
|
|
|
i->left = j;
|
2006-07-11 11:27:56 +02:00
|
|
|
i->right = NULL;
|
2006-07-10 16:49:43 +02:00
|
|
|
j = i;
|
|
|
|
nitem++;
|
|
|
|
}
|
|
|
|
for(i = allitem; i; i=i->next)
|
|
|
|
if(plen && strncmp(pattern, i->text, plen)
|
|
|
|
&& strstr(i->text, pattern)) {
|
|
|
|
if(!j)
|
|
|
|
item = i;
|
|
|
|
else
|
|
|
|
j->right = i;
|
|
|
|
i->left = j;
|
2006-07-11 11:27:56 +02:00
|
|
|
i->right = NULL;
|
2006-07-10 16:49:43 +02:00
|
|
|
j = i;
|
|
|
|
nitem++;
|
|
|
|
}
|
|
|
|
|
|
|
|
curroff = prevoff = nextoff = sel = item;
|
|
|
|
|
|
|
|
update_offsets();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* creates brush structs for brush mode drawing */
|
|
|
|
static void
|
|
|
|
draw_menu()
|
|
|
|
{
|
|
|
|
unsigned int offx = 0;
|
|
|
|
Item *i;
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
brush.rect = rect;
|
2006-07-10 16:49:43 +02:00
|
|
|
brush.rect.x = 0;
|
|
|
|
brush.rect.y = 0;
|
2006-07-10 19:46:24 +02:00
|
|
|
draw(dpy, &brush, False, 0);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
/* print command */
|
|
|
|
if(!title || text[0]) {
|
|
|
|
cmdw = cwidth;
|
|
|
|
if(cmdw && item)
|
|
|
|
brush.rect.width = cmdw;
|
2006-07-10 19:46:24 +02:00
|
|
|
draw(dpy, &brush, False, text);
|
2006-07-10 16:49:43 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
cmdw = twidth;
|
|
|
|
brush.rect.width = cmdw;
|
2006-07-10 19:46:24 +02:00
|
|
|
draw(dpy, &brush, False, title);
|
2006-07-10 16:49:43 +02:00
|
|
|
}
|
|
|
|
offx += brush.rect.width;
|
|
|
|
|
|
|
|
if(curroff) {
|
|
|
|
brush.rect.x = offx;
|
|
|
|
brush.rect.width = seek;
|
|
|
|
offx += brush.rect.width;
|
2006-07-10 19:46:24 +02:00
|
|
|
draw(dpy, &brush, False, (curroff && curroff->left) ? "<" : 0);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
/* determine maximum items */
|
|
|
|
for(i = curroff; i != nextoff; i=i->right) {
|
|
|
|
brush.border = False;
|
|
|
|
brush.rect.x = offx;
|
2006-07-10 19:46:24 +02:00
|
|
|
brush.rect.width = textwidth(&brush.font, i->text);
|
|
|
|
if(brush.rect.width > rect.width / 3)
|
|
|
|
brush.rect.width = rect.width / 3;
|
|
|
|
brush.rect.width += brush.font.height;
|
2006-07-10 16:49:43 +02:00
|
|
|
if(sel == i) {
|
2006-07-10 19:46:24 +02:00
|
|
|
swap((void **)&brush.fg, (void **)&brush.bg);
|
|
|
|
draw(dpy, &brush, True, i->text);
|
|
|
|
swap((void **)&brush.fg, (void **)&brush.bg);
|
2006-07-10 16:49:43 +02:00
|
|
|
}
|
2006-07-10 19:46:24 +02:00
|
|
|
else
|
|
|
|
draw(dpy, &brush, False, i->text);
|
2006-07-10 16:49:43 +02:00
|
|
|
offx += brush.rect.width;
|
|
|
|
}
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
brush.rect.x = rect.width - seek;
|
2006-07-10 16:49:43 +02:00
|
|
|
brush.rect.width = seek;
|
2006-07-10 19:46:24 +02:00
|
|
|
draw(dpy, &brush, False, nextoff ? ">" : 0);
|
2006-07-10 16:49:43 +02:00
|
|
|
}
|
2006-07-10 19:46:24 +02:00
|
|
|
XCopyArea(dpy, brush.drawable, win, brush.gc, 0, 0, rect.width,
|
|
|
|
rect.height, 0, 0);
|
|
|
|
XFlush(dpy);
|
2006-07-10 16:49:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-07-10 19:46:24 +02:00
|
|
|
kpress(XKeyEvent * e)
|
2006-07-10 16:49:43 +02:00
|
|
|
{
|
|
|
|
KeySym ksym;
|
|
|
|
char buf[32];
|
|
|
|
int num, prev_nitem;
|
|
|
|
unsigned int i, len = strlen(text);
|
|
|
|
|
|
|
|
buf[0] = 0;
|
|
|
|
num = XLookupString(e, buf, sizeof(buf), &ksym, 0);
|
|
|
|
|
|
|
|
if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
|
|
|
|
|| IsMiscFunctionKey(ksym) || IsPFKey(ksym)
|
|
|
|
|| IsPrivateKeypadKey(ksym))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* first check if a control mask is omitted */
|
|
|
|
if(e->state & ControlMask) {
|
|
|
|
switch (ksym) {
|
|
|
|
case XK_H:
|
|
|
|
case XK_h:
|
|
|
|
ksym = XK_BackSpace;
|
|
|
|
break;
|
|
|
|
case XK_I:
|
|
|
|
case XK_i:
|
|
|
|
ksym = XK_Tab;
|
|
|
|
break;
|
|
|
|
case XK_J:
|
|
|
|
case XK_j:
|
|
|
|
ksym = XK_Return;
|
|
|
|
break;
|
|
|
|
case XK_N:
|
|
|
|
case XK_n:
|
|
|
|
ksym = XK_Right;
|
|
|
|
break;
|
|
|
|
case XK_P:
|
|
|
|
case XK_p:
|
|
|
|
ksym = XK_Left;
|
|
|
|
break;
|
|
|
|
case XK_U:
|
|
|
|
case XK_u:
|
|
|
|
text[0] = 0;
|
|
|
|
update_items(text);
|
|
|
|
draw_menu();
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case XK_bracketleft:
|
|
|
|
ksym = XK_Escape;
|
|
|
|
break;
|
|
|
|
default: /* ignore other control sequences */
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch (ksym) {
|
|
|
|
case XK_Left:
|
|
|
|
if(!(sel && sel->left))
|
|
|
|
return;
|
|
|
|
sel=sel->left;
|
|
|
|
if(sel->right == curroff) {
|
|
|
|
curroff = prevoff;
|
|
|
|
update_offsets();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_Tab:
|
|
|
|
if(!sel)
|
|
|
|
return;
|
2006-07-10 19:46:24 +02:00
|
|
|
strncpy(text, sel->text, sizeof(text));
|
2006-07-10 16:49:43 +02:00
|
|
|
update_items(text);
|
|
|
|
break;
|
|
|
|
case XK_Right:
|
|
|
|
if(!(sel && sel->right))
|
|
|
|
return;
|
|
|
|
sel=sel->right;
|
|
|
|
if(sel == nextoff) {
|
|
|
|
curroff = nextoff;
|
|
|
|
update_offsets();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_Return:
|
|
|
|
if(e->state & ShiftMask) {
|
|
|
|
if(text)
|
|
|
|
fprintf(stdout, "%s", text);
|
|
|
|
}
|
|
|
|
else if(sel)
|
|
|
|
fprintf(stdout, "%s", sel->text);
|
|
|
|
else if(text)
|
|
|
|
fprintf(stdout, "%s", text);
|
|
|
|
fflush(stdout);
|
|
|
|
done = True;
|
|
|
|
break;
|
|
|
|
case XK_Escape:
|
|
|
|
ret = 1;
|
|
|
|
done = True;
|
|
|
|
break;
|
|
|
|
case XK_BackSpace:
|
|
|
|
if((i = len)) {
|
|
|
|
prev_nitem = nitem;
|
|
|
|
do {
|
|
|
|
text[--i] = 0;
|
|
|
|
update_items(text);
|
|
|
|
} while(i && nitem && prev_nitem == nitem);
|
|
|
|
update_items(text);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if((num == 1) && !iscntrl((int) buf[0])) {
|
|
|
|
buf[num] = 0;
|
|
|
|
if(len > 0)
|
2006-07-10 19:46:24 +02:00
|
|
|
strncat(text, buf, sizeof(text));
|
2006-07-10 16:49:43 +02:00
|
|
|
else
|
2006-07-10 19:46:24 +02:00
|
|
|
strncpy(text, buf, sizeof(text));
|
2006-07-10 16:49:43 +02:00
|
|
|
update_items(text);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
draw_menu();
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
read_allitems()
|
|
|
|
{
|
2006-07-11 11:27:56 +02:00
|
|
|
static char *maxname = NULL;
|
2006-07-10 16:49:43 +02:00
|
|
|
char *p, buf[1024];
|
|
|
|
unsigned int len = 0, max = 0;
|
|
|
|
Item *i, *new;
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
i = 0;
|
2006-07-10 16:49:43 +02:00
|
|
|
while(fgets(buf, sizeof(buf), stdin)) {
|
|
|
|
len = strlen(buf);
|
|
|
|
if (buf[len - 1] == '\n')
|
|
|
|
buf[len - 1] = 0;
|
2006-07-10 19:46:24 +02:00
|
|
|
p = estrdup(buf);
|
2006-07-10 16:49:43 +02:00
|
|
|
if(max < len) {
|
|
|
|
maxname = p;
|
|
|
|
max = len;
|
|
|
|
}
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
new = emalloc(sizeof(Item));
|
2006-07-11 11:27:56 +02:00
|
|
|
new->next = new->left = new->right = NULL;
|
2006-07-10 16:49:43 +02:00
|
|
|
new->text = p;
|
|
|
|
if(!i)
|
|
|
|
allitem = new;
|
|
|
|
else
|
|
|
|
i->next = new;
|
|
|
|
i = new;
|
|
|
|
}
|
|
|
|
|
|
|
|
return maxname;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
XSetWindowAttributes wa;
|
2006-07-10 19:46:24 +02:00
|
|
|
char *maxname;
|
2006-07-10 16:49:43 +02:00
|
|
|
XEvent ev;
|
|
|
|
|
|
|
|
/* command line args */
|
|
|
|
for(i = 1; i < argc; i++) {
|
|
|
|
if (argv[i][0] == '-')
|
|
|
|
switch (argv[i][1]) {
|
|
|
|
case 'v':
|
|
|
|
fprintf(stdout, "%s", version);
|
|
|
|
exit(0);
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
if(++i < argc)
|
|
|
|
title = argv[i];
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
dpy = XOpenDisplay(0);
|
|
|
|
if(!dpy)
|
|
|
|
error("gridmenu: cannot open dpy\n");
|
|
|
|
screen = DefaultScreen(dpy);
|
|
|
|
root = RootWindow(dpy, screen);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
maxname = read_allitems();
|
|
|
|
|
|
|
|
/* grab as early as possible, but after reading all items!!! */
|
2006-07-10 19:46:24 +02:00
|
|
|
while(XGrabKeyboard(dpy, root, True, GrabModeAsync,
|
2006-07-10 16:49:43 +02:00
|
|
|
GrabModeAsync, CurrentTime) != GrabSuccess)
|
|
|
|
usleep(1000);
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
/* style */
|
|
|
|
loadcolors(dpy, screen, &brush, BGCOLOR, FGCOLOR, BORDERCOLOR);
|
|
|
|
loadfont(dpy, &brush.font, FONT);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
wa.override_redirect = 1;
|
|
|
|
wa.background_pixmap = ParentRelative;
|
2006-07-10 22:16:48 +02:00
|
|
|
wa.event_mask = ExposureMask | ButtonPressMask | KeyPressMask;
|
2006-07-10 16:49:43 +02:00
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
rect.width = DisplayWidth(dpy, screen);
|
2006-07-10 22:16:48 +02:00
|
|
|
rect.height = labelheight(&brush.font);
|
2006-07-10 19:46:24 +02:00
|
|
|
rect.y = DisplayHeight(dpy, screen) - rect.height;
|
|
|
|
rect.x = 0;
|
2006-07-10 16:49:43 +02:00
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
win = XCreateWindow(dpy, root, rect.x, rect.y,
|
|
|
|
rect.width, rect.height, 0, DefaultDepth(dpy, screen),
|
|
|
|
CopyFromParent, DefaultVisual(dpy, screen),
|
2006-07-10 16:49:43 +02:00
|
|
|
CWOverrideRedirect | CWBackPixmap | CWEventMask, &wa);
|
2006-07-10 19:46:24 +02:00
|
|
|
XDefineCursor(dpy, win, XCreateFontCursor(dpy, XC_xterm));
|
|
|
|
XFlush(dpy);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
/* pixmap */
|
2006-07-10 22:16:48 +02:00
|
|
|
brush.gc = XCreateGC(dpy, root, 0, 0);
|
2006-07-10 19:46:24 +02:00
|
|
|
brush.drawable = XCreatePixmap(dpy, win, rect.width, rect.height,
|
|
|
|
DefaultDepth(dpy, screen));
|
|
|
|
XFlush(dpy);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
if(maxname)
|
2006-07-10 19:46:24 +02:00
|
|
|
cwidth = textwidth(&brush.font, maxname) + brush.font.height;
|
|
|
|
if(cwidth > rect.width / 3)
|
|
|
|
cwidth = rect.width / 3;
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
if(title) {
|
2006-07-10 19:46:24 +02:00
|
|
|
twidth = textwidth(&brush.font, title) + brush.font.height;
|
|
|
|
if(twidth > rect.width / 3)
|
|
|
|
twidth = rect.width / 3;
|
2006-07-10 16:49:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
cmdw = title ? twidth : cwidth;
|
|
|
|
|
|
|
|
text[0] = 0;
|
|
|
|
update_items(text);
|
2006-07-10 19:46:24 +02:00
|
|
|
XMapRaised(dpy, win);
|
2006-07-10 16:49:43 +02:00
|
|
|
draw_menu();
|
2006-07-10 19:46:24 +02:00
|
|
|
XFlush(dpy);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
/* main event loop */
|
2006-07-10 19:46:24 +02:00
|
|
|
while(!XNextEvent(dpy, &ev)) {
|
2006-07-10 16:49:43 +02:00
|
|
|
switch (ev.type) {
|
|
|
|
case KeyPress:
|
2006-07-10 19:46:24 +02:00
|
|
|
kpress(&ev.xkey);
|
2006-07-10 16:49:43 +02:00
|
|
|
break;
|
|
|
|
case Expose:
|
|
|
|
if(ev.xexpose.count == 0) {
|
|
|
|
draw_menu();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if(done)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-07-10 19:46:24 +02:00
|
|
|
XUngrabKeyboard(dpy, CurrentTime);
|
|
|
|
XFreePixmap(dpy, brush.drawable);
|
|
|
|
XFreeGC(dpy, brush.gc);
|
|
|
|
XDestroyWindow(dpy, win);
|
|
|
|
XCloseDisplay(dpy);
|
2006-07-10 16:49:43 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|