2020-07-29 05:51:08 +02:00
|
|
|
#include <ctype.h>
|
2020-05-16 00:02:23 +02:00
|
|
|
#include <err.h>
|
2020-07-23 22:37:28 +02:00
|
|
|
#include <errno.h>
|
2020-05-16 00:02:23 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2020-07-23 22:37:28 +02:00
|
|
|
#include <limits.h>
|
2020-12-29 23:22:50 +01:00
|
|
|
#include <locale.h>
|
2020-06-29 17:20:37 +02:00
|
|
|
#include <time.h>
|
2020-05-16 00:02:23 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <X11/Xlib.h>
|
2020-06-29 17:20:37 +02:00
|
|
|
#include <X11/Xatom.h>
|
2020-05-16 00:02:23 +02:00
|
|
|
#include <X11/Xutil.h>
|
2020-05-17 06:22:21 +02:00
|
|
|
#include <X11/Xresource.h>
|
2020-05-17 22:01:46 +02:00
|
|
|
#include <X11/XKBlib.h>
|
2020-05-19 03:27:56 +02:00
|
|
|
#include <X11/Xft/Xft.h>
|
2020-07-29 22:55:20 +02:00
|
|
|
#include <X11/extensions/Xinerama.h>
|
2020-06-01 01:29:46 +02:00
|
|
|
#include <Imlib2.h>
|
2020-06-29 17:20:37 +02:00
|
|
|
#include "xmenu.h"
|
2020-05-17 22:01:46 +02:00
|
|
|
|
2020-05-30 12:31:46 +02:00
|
|
|
/* X stuff */
|
2020-05-16 00:02:23 +02:00
|
|
|
static Display *dpy;
|
2020-05-27 19:34:55 +02:00
|
|
|
static int screen;
|
2020-05-19 03:27:56 +02:00
|
|
|
static Visual *visual;
|
2020-05-16 00:02:23 +02:00
|
|
|
static Window rootwin;
|
2020-05-27 19:34:55 +02:00
|
|
|
static Colormap colormap;
|
2020-12-29 22:56:50 +01:00
|
|
|
static XrmDatabase xdb;
|
|
|
|
static char *xrm;
|
2020-05-16 00:02:23 +02:00
|
|
|
static struct DC dc;
|
2020-07-29 22:55:20 +02:00
|
|
|
static struct Monitor mon;
|
2020-06-29 17:20:37 +02:00
|
|
|
static Atom utf8string;
|
2020-06-01 03:26:33 +02:00
|
|
|
static Atom wmdelete;
|
2020-06-29 17:20:37 +02:00
|
|
|
static Atom netatom[NetLast];
|
2020-12-29 23:22:50 +01:00
|
|
|
static XIM xim;
|
2020-06-01 03:26:33 +02:00
|
|
|
|
|
|
|
/* flags */
|
2020-07-16 03:57:59 +02:00
|
|
|
static int iflag = 0; /* whether to disable icons */
|
2020-11-09 20:46:25 +01:00
|
|
|
static int rflag = 0; /* whether to disable right-click */
|
2020-07-29 22:55:20 +02:00
|
|
|
static int mflag = 0; /* whether the user specified a monitor with -p */
|
|
|
|
static int pflag = 0; /* whether the user specified a position with -p */
|
2020-07-23 22:37:28 +02:00
|
|
|
static int wflag = 0; /* whether to let the window manager control XMenu */
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* include config variable */
|
2020-05-16 00:02:23 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2020-09-28 00:01:13 +02:00
|
|
|
/* show usage */
|
|
|
|
static void
|
|
|
|
usage(void)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-11-09 20:46:25 +01:00
|
|
|
(void)fprintf(stderr, "usage: xmenu [-irw] [-p position] [title]\n");
|
2020-09-28 00:01:13 +02:00
|
|
|
exit(1);
|
2020-05-24 01:41:09 +02:00
|
|
|
}
|
|
|
|
|
2020-07-29 22:55:20 +02:00
|
|
|
/* parse position string from -p,
|
|
|
|
* put results on config.posx, config.posy, and config.monitor */
|
2020-07-23 22:37:28 +02:00
|
|
|
static void
|
2020-07-29 22:55:20 +02:00
|
|
|
parseposition(char *optarg)
|
2020-07-23 22:37:28 +02:00
|
|
|
{
|
|
|
|
long n;
|
2020-07-29 22:55:20 +02:00
|
|
|
char *s = optarg;
|
2020-07-23 22:37:28 +02:00
|
|
|
char *endp;
|
|
|
|
|
|
|
|
n = strtol(s, &endp, 10);
|
|
|
|
if (errno == ERANGE || n > INT_MAX || n < 0 || endp == s || *endp != 'x')
|
|
|
|
goto error;
|
|
|
|
config.posx = n;
|
|
|
|
s = endp+1;
|
|
|
|
n = strtol(s, &endp, 10);
|
2020-07-29 22:55:20 +02:00
|
|
|
if (errno == ERANGE || n > INT_MAX || n < 0 || endp == s)
|
2020-07-23 22:37:28 +02:00
|
|
|
goto error;
|
|
|
|
config.posy = n;
|
2020-07-29 22:55:20 +02:00
|
|
|
if (*endp == ':') {
|
|
|
|
s = endp+1;
|
|
|
|
mflag = 1;
|
|
|
|
if (strncasecmp(s, "CUR", 3) == 0) {
|
|
|
|
config.monitor = -1;
|
|
|
|
endp = s+3;
|
|
|
|
} else {
|
|
|
|
n = strtol(s, &endp, 10);
|
|
|
|
if (errno == ERANGE || n > INT_MAX || n < 0 || endp == s || *endp != '\0')
|
|
|
|
goto error;
|
|
|
|
config.monitor = n;
|
|
|
|
}
|
|
|
|
} else if (*endp != '\0') {
|
|
|
|
goto error;
|
|
|
|
}
|
2020-07-23 22:37:28 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
errx(1, "improper position: %s", optarg);
|
|
|
|
}
|
|
|
|
|
2020-12-29 22:56:50 +01:00
|
|
|
/* get configuration from X resources */
|
|
|
|
static void
|
|
|
|
getresources(void)
|
|
|
|
{
|
|
|
|
char *type;
|
|
|
|
XrmValue xval;
|
|
|
|
|
|
|
|
if (xrm == NULL || xdb == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (XrmGetResource(xdb, "xmenu.borderWidth", "*", &type, &xval) == True)
|
|
|
|
GETNUM(config.border_pixels, xval.addr)
|
|
|
|
if (XrmGetResource(xdb, "xmenu.separatorWidth", "*", &type, &xval) == True)
|
|
|
|
GETNUM(config.separator_pixels, xval.addr)
|
|
|
|
if (XrmGetResource(xdb, "xmenu.height", "*", &type, &xval) == True)
|
|
|
|
GETNUM(config.height_pixels, xval.addr)
|
|
|
|
if (XrmGetResource(xdb, "xmenu.width", "*", &type, &xval) == True)
|
|
|
|
GETNUM(config.width_pixels, xval.addr)
|
|
|
|
if (XrmGetResource(xdb, "xmenu.gap", "*", &type, &xval) == True)
|
|
|
|
GETNUM(config.gap_pixels, xval.addr)
|
|
|
|
if (XrmGetResource(xdb, "xmenu.background", "*", &type, &xval) == True)
|
|
|
|
config.background_color = xval.addr;
|
|
|
|
if (XrmGetResource(xdb, "xmenu.foreground", "*", &type, &xval) == True)
|
|
|
|
config.foreground_color = xval.addr;
|
|
|
|
if (XrmGetResource(xdb, "xmenu.selbackground", "*", &type, &xval) == True)
|
|
|
|
config.selbackground_color = xval.addr;
|
|
|
|
if (XrmGetResource(xdb, "xmenu.selforeground", "*", &type, &xval) == True)
|
|
|
|
config.selforeground_color = xval.addr;
|
|
|
|
if (XrmGetResource(xdb, "xmenu.separator", "*", &type, &xval) == True)
|
|
|
|
config.separator_color = xval.addr;
|
|
|
|
if (XrmGetResource(xdb, "xmenu.border", "*", &type, &xval) == True)
|
|
|
|
config.border_color = xval.addr;
|
|
|
|
if (XrmGetResource(xdb, "xmenu.font", "*", &type, &xval) == True)
|
|
|
|
config.font = xval.addr;
|
|
|
|
if (XrmGetResource(xdb, "xmenu.alignment", "*", &type, &xval) == True) {
|
|
|
|
if (strcasecmp(xval.addr, "center") == 0)
|
|
|
|
config.alignment = CenterAlignment;
|
|
|
|
else if (strcasecmp(xval.addr, "left") == 0)
|
|
|
|
config.alignment = LeftAlignment;
|
|
|
|
else if (strcasecmp(xval.addr, "right") == 0)
|
|
|
|
config.alignment = RightAlignment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get configuration from command-line options */
|
|
|
|
static char *
|
|
|
|
getoptions(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int ch;
|
|
|
|
|
2021-01-08 23:01:46 +01:00
|
|
|
while ((ch = getopt(argc, argv, "ip:rw")) != -1) {
|
2020-12-29 22:56:50 +01:00
|
|
|
switch (ch) {
|
|
|
|
case 'i':
|
|
|
|
iflag = 1;
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
pflag = 1;
|
|
|
|
parseposition(optarg);
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
rflag = 1;
|
|
|
|
break;
|
|
|
|
case 'w':
|
|
|
|
wflag = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (argc > 1)
|
|
|
|
usage();
|
|
|
|
else if (argc == 1)
|
|
|
|
return *argv;
|
|
|
|
return PROGNAME;
|
|
|
|
}
|
|
|
|
|
2020-09-23 00:30:31 +02:00
|
|
|
/* parse font string */
|
2020-07-29 05:51:08 +02:00
|
|
|
static void
|
|
|
|
parsefonts(const char *s)
|
|
|
|
{
|
|
|
|
const char *p;
|
|
|
|
char buf[1024];
|
|
|
|
size_t nfont = 0;
|
|
|
|
|
|
|
|
dc.nfonts = 1;
|
|
|
|
for (p = s; *p; p++)
|
|
|
|
if (*p == ',')
|
|
|
|
dc.nfonts++;
|
|
|
|
|
|
|
|
if ((dc.fonts = calloc(dc.nfonts, sizeof *dc.fonts)) == NULL)
|
|
|
|
err(1, "calloc");
|
|
|
|
|
|
|
|
p = s;
|
|
|
|
while (*p != '\0') {
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
while (isspace(*p))
|
|
|
|
p++;
|
2020-08-05 14:30:08 +02:00
|
|
|
while (i < sizeof buf && *p != '\0' && *p != ',')
|
2020-07-29 05:51:08 +02:00
|
|
|
buf[i++] = *p++;
|
2020-08-01 20:12:57 +02:00
|
|
|
if (i >= sizeof buf)
|
|
|
|
errx(1, "font name too long");
|
2020-07-29 05:51:08 +02:00
|
|
|
if (*p == ',')
|
|
|
|
p++;
|
|
|
|
buf[i] = '\0';
|
2020-08-01 20:12:57 +02:00
|
|
|
if (nfont == 0)
|
|
|
|
if ((dc.pattern = FcNameParse((FcChar8 *)buf)) == NULL)
|
|
|
|
errx(1, "the first font in the cache must be loaded from a font string");
|
2020-07-29 05:51:08 +02:00
|
|
|
if ((dc.fonts[nfont++] = XftFontOpenName(dpy, screen, buf)) == NULL)
|
2020-08-13 01:01:05 +02:00
|
|
|
errx(1, "could not load font");
|
2020-07-29 05:51:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* get color from color string */
|
|
|
|
static void
|
|
|
|
ealloccolor(const char *s, XftColor *color)
|
|
|
|
{
|
|
|
|
if(!XftColorAllocName(dpy, visual, colormap, s, color))
|
2020-08-13 01:01:05 +02:00
|
|
|
errx(1, "could not allocate color: %s", s);
|
2020-06-29 17:20:37 +02:00
|
|
|
}
|
|
|
|
|
2020-07-29 22:55:20 +02:00
|
|
|
/* query monitor information and cursor position */
|
|
|
|
static void
|
|
|
|
initmonitor(void)
|
|
|
|
{
|
|
|
|
XineramaScreenInfo *info = NULL;
|
|
|
|
Window dw; /* dummy variable */
|
|
|
|
int di; /* dummy variable */
|
|
|
|
unsigned du; /* dummy variable */
|
|
|
|
int cursx, cursy; /* cursor position */
|
|
|
|
int nmons;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
XQueryPointer(dpy, rootwin, &dw, &dw, &cursx, &cursy, &di, &di, &du);
|
|
|
|
|
|
|
|
mon.x = mon.y = 0;
|
|
|
|
mon.w = DisplayWidth(dpy, screen);
|
|
|
|
mon.h = DisplayHeight(dpy, screen);
|
|
|
|
|
|
|
|
if ((info = XineramaQueryScreens(dpy, &nmons)) != NULL) {
|
|
|
|
int selmon = 0;
|
|
|
|
|
2020-08-05 14:30:08 +02:00
|
|
|
if (!mflag || config.monitor < 0 || config.monitor >= nmons) {
|
2020-07-29 22:55:20 +02:00
|
|
|
for (i = 0; i < nmons; i++) {
|
2020-07-31 14:22:13 +02:00
|
|
|
if (BETWEEN(cursx, info[i].x_org, info[i].x_org + info[i].width) &&
|
|
|
|
BETWEEN(cursy, info[i].y_org, info[i].y_org + info[i].height)) {
|
2020-07-29 22:55:20 +02:00
|
|
|
selmon = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
selmon = config.monitor;
|
|
|
|
}
|
|
|
|
|
|
|
|
mon.x = info[selmon].x_org;
|
|
|
|
mon.y = info[selmon].y_org;
|
|
|
|
mon.w = info[selmon].width;
|
|
|
|
mon.h = info[selmon].height;
|
2020-08-24 03:26:23 +02:00
|
|
|
|
|
|
|
XFree(info);
|
2020-07-29 22:55:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!pflag) {
|
|
|
|
config.posx = cursx;
|
|
|
|
config.posy = cursy;
|
|
|
|
} else if (mflag) {
|
|
|
|
config.posx += mon.x;
|
|
|
|
config.posy += mon.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
/* init draw context */
|
|
|
|
static void
|
2020-06-29 17:20:37 +02:00
|
|
|
initdc(void)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
|
|
|
/* get color pixels */
|
2020-06-29 17:20:37 +02:00
|
|
|
ealloccolor(config.background_color, &dc.normal[ColorBG]);
|
|
|
|
ealloccolor(config.foreground_color, &dc.normal[ColorFG]);
|
|
|
|
ealloccolor(config.selbackground_color, &dc.selected[ColorBG]);
|
|
|
|
ealloccolor(config.selforeground_color, &dc.selected[ColorFG]);
|
|
|
|
ealloccolor(config.separator_color, &dc.separator);
|
|
|
|
ealloccolor(config.border_color, &dc.border);
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-07-29 05:51:08 +02:00
|
|
|
/* parse fonts */
|
|
|
|
parsefonts(config.font);
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-05-26 23:43:45 +02:00
|
|
|
/* create common GC */
|
2020-05-16 00:02:23 +02:00
|
|
|
dc.gc = XCreateGC(dpy, rootwin, 0, NULL);
|
|
|
|
}
|
|
|
|
|
2020-07-30 05:25:55 +02:00
|
|
|
/* calculate icon size */
|
2020-05-16 00:02:23 +02:00
|
|
|
static void
|
2020-07-30 05:25:55 +02:00
|
|
|
initiconsize(void)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-07-16 03:57:59 +02:00
|
|
|
config.iconsize = config.height_pixels - config.iconpadding * 2;
|
2020-06-29 17:20:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* intern atoms */
|
|
|
|
static void
|
|
|
|
initatoms(void)
|
|
|
|
{
|
|
|
|
utf8string = XInternAtom(dpy, "UTF8_STRING", False);
|
|
|
|
wmdelete = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
|
|
|
|
netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
|
|
|
|
netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
|
|
|
|
netatom[NetWMWindowTypePopupMenu] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_POPUP_MENU", False);
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* allocate an item */
|
|
|
|
static struct Item *
|
2020-06-01 01:29:46 +02:00
|
|
|
allocitem(const char *label, const char *output, char *file)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
|
|
|
struct Item *item;
|
|
|
|
|
|
|
|
if ((item = malloc(sizeof *item)) == NULL)
|
|
|
|
err(1, "malloc");
|
2020-05-30 04:48:49 +02:00
|
|
|
if (label == NULL) {
|
2020-05-16 03:51:26 +02:00
|
|
|
item->label = NULL;
|
|
|
|
item->output = NULL;
|
|
|
|
} else {
|
|
|
|
if ((item->label = strdup(label)) == NULL)
|
|
|
|
err(1, "strdup");
|
2020-05-30 03:52:55 +02:00
|
|
|
if (label == output) {
|
|
|
|
item->output = item->label;
|
|
|
|
} else {
|
|
|
|
if ((item->output = strdup(output)) == NULL)
|
|
|
|
err(1, "strdup");
|
|
|
|
}
|
2020-05-16 03:51:26 +02:00
|
|
|
}
|
2020-06-01 01:29:46 +02:00
|
|
|
if (file == NULL) {
|
|
|
|
item->file = NULL;
|
|
|
|
} else {
|
|
|
|
if ((item->file = strdup(file)) == NULL)
|
|
|
|
err(1, "strdup");
|
|
|
|
}
|
2020-05-16 03:25:05 +02:00
|
|
|
item->y = 0;
|
2020-05-30 10:45:28 +02:00
|
|
|
item->h = 0;
|
2020-05-16 00:02:23 +02:00
|
|
|
item->next = NULL;
|
|
|
|
item->submenu = NULL;
|
2020-06-01 03:26:33 +02:00
|
|
|
item->icon = NULL;
|
2020-05-16 00:02:23 +02:00
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2020-06-29 17:25:59 +02:00
|
|
|
/* allocate a menu and create its window */
|
2020-05-16 00:02:23 +02:00
|
|
|
static struct Menu *
|
|
|
|
allocmenu(struct Menu *parent, struct Item *list, unsigned level)
|
|
|
|
{
|
|
|
|
XSetWindowAttributes swa;
|
|
|
|
struct Menu *menu;
|
|
|
|
|
|
|
|
if ((menu = malloc(sizeof *menu)) == NULL)
|
|
|
|
err(1, "malloc");
|
|
|
|
menu->parent = parent;
|
|
|
|
menu->list = list;
|
2020-05-16 07:14:29 +02:00
|
|
|
menu->caller = NULL;
|
2020-05-16 00:02:23 +02:00
|
|
|
menu->selected = NULL;
|
2020-07-31 14:22:13 +02:00
|
|
|
menu->w = 0; /* recalculated by setupmenu() */
|
|
|
|
menu->h = 0; /* recalculated by setupmenu() */
|
|
|
|
menu->x = mon.x; /* recalculated by setupmenu() */
|
|
|
|
menu->y = mon.y; /* recalculated by setupmenu() */
|
2020-05-16 00:02:23 +02:00
|
|
|
menu->level = level;
|
2020-07-29 16:37:38 +02:00
|
|
|
menu->drawn = 0;
|
2020-07-30 22:04:04 +02:00
|
|
|
menu->hasicon = 0;
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
swa.override_redirect = (wflag) ? False : True;
|
2020-05-26 23:43:45 +02:00
|
|
|
swa.background_pixel = dc.normal[ColorBG].pixel;
|
|
|
|
swa.border_pixel = dc.border.pixel;
|
|
|
|
swa.save_under = True; /* pop-up windows should save_under*/
|
2020-05-16 00:02:23 +02:00
|
|
|
swa.event_mask = ExposureMask | KeyPressMask | ButtonPressMask | ButtonReleaseMask
|
2020-05-16 05:43:59 +02:00
|
|
|
| PointerMotionMask | LeaveWindowMask;
|
2020-06-01 03:26:33 +02:00
|
|
|
if (wflag)
|
|
|
|
swa.event_mask |= StructureNotifyMask;
|
2020-05-30 10:45:28 +02:00
|
|
|
menu->win = XCreateWindow(dpy, rootwin, 0, 0, 1, 1, 0,
|
2020-05-16 00:02:23 +02:00
|
|
|
CopyFromParent, CopyFromParent, CopyFromParent,
|
2020-05-26 23:43:45 +02:00
|
|
|
CWOverrideRedirect | CWBackPixel |
|
|
|
|
CWBorderPixel | CWEventMask | CWSaveUnder,
|
2020-05-16 00:02:23 +02:00
|
|
|
&swa);
|
|
|
|
|
2020-12-29 23:22:50 +01:00
|
|
|
menu->xic = XCreateIC(xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing,
|
|
|
|
XNClientWindow, menu->win, XNFocusWindow, menu->win, NULL);
|
|
|
|
if (menu->xic == NULL)
|
|
|
|
errx(1, "XCreateIC: could not obtain input method");
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
return menu;
|
|
|
|
}
|
|
|
|
|
2020-05-30 04:48:49 +02:00
|
|
|
/* build the menu tree */
|
|
|
|
static struct Menu *
|
2020-06-01 01:29:46 +02:00
|
|
|
buildmenutree(unsigned level, const char *label, const char *output, char *file)
|
2020-05-30 04:48:49 +02:00
|
|
|
{
|
|
|
|
static struct Menu *prevmenu = NULL; /* menu the previous item was added to */
|
|
|
|
static struct Menu *rootmenu = NULL; /* menu to be returned */
|
|
|
|
struct Item *curritem = NULL; /* item currently being read */
|
|
|
|
struct Item *item; /* dummy item for loops */
|
|
|
|
struct Menu *menu; /* dummy menu for loops */
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
/* create the item */
|
2020-06-01 01:29:46 +02:00
|
|
|
curritem = allocitem(label, output, file);
|
2020-05-30 04:48:49 +02:00
|
|
|
|
|
|
|
/* put the item in the menu tree */
|
|
|
|
if (prevmenu == NULL) { /* there is no menu yet */
|
2020-06-12 16:37:13 +02:00
|
|
|
menu = allocmenu(NULL, curritem, level);
|
|
|
|
rootmenu = menu;
|
|
|
|
prevmenu = menu;
|
|
|
|
curritem->prev = NULL;
|
2020-05-30 04:48:49 +02:00
|
|
|
} else if (level < prevmenu->level) { /* item is continuation of a parent menu */
|
|
|
|
/* go up the menu tree until find the menu this item continues */
|
|
|
|
for (menu = prevmenu, i = level;
|
|
|
|
menu != NULL && i != prevmenu->level;
|
|
|
|
menu = menu->parent, i++)
|
|
|
|
;
|
|
|
|
if (menu == NULL)
|
2020-08-13 01:05:09 +02:00
|
|
|
errx(1, "improper indentation detected");
|
2020-05-30 04:48:49 +02:00
|
|
|
|
|
|
|
/* find last item in the new menu */
|
|
|
|
for (item = menu->list; item->next != NULL; item = item->next)
|
|
|
|
;
|
|
|
|
|
|
|
|
prevmenu = menu;
|
|
|
|
item->next = curritem;
|
|
|
|
curritem->prev = item;
|
|
|
|
} else if (level == prevmenu->level) { /* item is a continuation of current menu */
|
|
|
|
/* find last item in the previous menu */
|
|
|
|
for (item = prevmenu->list; item->next != NULL; item = item->next)
|
|
|
|
;
|
|
|
|
|
|
|
|
item->next = curritem;
|
|
|
|
curritem->prev = item;
|
|
|
|
} else if (level > prevmenu->level) { /* item begins a new menu */
|
|
|
|
menu = allocmenu(prevmenu, curritem, level);
|
|
|
|
|
|
|
|
/* find last item in the previous menu */
|
|
|
|
for (item = prevmenu->list; item->next != NULL; item = item->next)
|
|
|
|
;
|
|
|
|
|
|
|
|
prevmenu = menu;
|
|
|
|
menu->caller = item;
|
|
|
|
item->submenu = menu;
|
|
|
|
curritem->prev = NULL;
|
|
|
|
}
|
|
|
|
|
2020-07-30 22:04:04 +02:00
|
|
|
if (curritem->file)
|
|
|
|
prevmenu->hasicon = 1;
|
|
|
|
|
2020-05-30 04:48:49 +02:00
|
|
|
return rootmenu;
|
|
|
|
}
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
/* create menus and items from the stdin */
|
2020-05-27 18:40:11 +02:00
|
|
|
static struct Menu *
|
2020-05-16 00:02:23 +02:00
|
|
|
parsestdin(void)
|
|
|
|
{
|
2020-05-30 04:48:49 +02:00
|
|
|
struct Menu *rootmenu;
|
2020-05-16 00:02:23 +02:00
|
|
|
char *s, buf[BUFSIZ];
|
2020-06-01 01:29:46 +02:00
|
|
|
char *file, *label, *output;
|
2020-05-16 00:02:23 +02:00
|
|
|
unsigned level = 0;
|
2020-05-27 18:40:11 +02:00
|
|
|
|
2020-05-30 04:55:37 +02:00
|
|
|
rootmenu = NULL;
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
while (fgets(buf, BUFSIZ, stdin) != NULL) {
|
2020-05-30 04:48:49 +02:00
|
|
|
/* get the indentation level */
|
|
|
|
level = strspn(buf, "\t");
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-05-30 04:48:49 +02:00
|
|
|
/* get the label */
|
|
|
|
s = level + buf;
|
|
|
|
label = strtok(s, "\t\n");
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-06-01 01:29:46 +02:00
|
|
|
/* get the filename */
|
|
|
|
file = NULL;
|
|
|
|
if (label != NULL && strncmp(label, "IMG:", 4) == 0) {
|
|
|
|
file = label + 4;
|
|
|
|
label = strtok(NULL, "\t\n");
|
|
|
|
}
|
|
|
|
|
2020-05-30 04:48:49 +02:00
|
|
|
/* get the output */
|
|
|
|
output = strtok(NULL, "\n");
|
|
|
|
if (output == NULL) {
|
|
|
|
output = label;
|
|
|
|
} else {
|
|
|
|
while (*output == '\t')
|
|
|
|
output++;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
2020-05-30 04:48:49 +02:00
|
|
|
|
2020-06-01 01:29:46 +02:00
|
|
|
rootmenu = buildmenutree(level, label, output, file);
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
|
|
|
|
2020-05-27 18:40:11 +02:00
|
|
|
return rootmenu;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
|
|
|
|
2020-07-29 16:37:38 +02:00
|
|
|
/* get next utf8 char from s return its codepoint and set next_ret to pointer to end of character */
|
2020-07-29 05:51:08 +02:00
|
|
|
static FcChar32
|
|
|
|
getnextutf8char(const char *s, const char **next_ret)
|
|
|
|
{
|
|
|
|
static const unsigned char utfbyte[] = {0x80, 0x00, 0xC0, 0xE0, 0xF0};
|
|
|
|
static const unsigned char utfmask[] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
|
|
|
|
static const FcChar32 utfmin[] = {0, 0x00, 0x80, 0x800, 0x10000};
|
|
|
|
static const FcChar32 utfmax[] = {0, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
|
2020-07-29 16:37:38 +02:00
|
|
|
/* 0xFFFD is the replacement character, used to represent unknown characters */
|
2020-07-29 05:51:08 +02:00
|
|
|
static const FcChar32 unknown = 0xFFFD;
|
|
|
|
FcChar32 ucode; /* FcChar32 type holds 32 bits */
|
|
|
|
size_t usize = 0; /* n' of bytes of the utf8 character */
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
*next_ret = s+1;
|
|
|
|
|
|
|
|
/* get code of first byte of utf8 character */
|
|
|
|
for (i = 0; i < sizeof utfmask; i++) {
|
|
|
|
if (((unsigned char)*s & utfmask[i]) == utfbyte[i]) {
|
|
|
|
usize = i;
|
|
|
|
ucode = (unsigned char)*s & ~utfmask[i];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if first byte is a continuation byte or is not allowed, return unknown */
|
|
|
|
if (i == sizeof utfmask || usize == 0)
|
|
|
|
return unknown;
|
|
|
|
|
|
|
|
/* check the other usize-1 bytes */
|
|
|
|
s++;
|
|
|
|
for (i = 1; i < usize; i++) {
|
|
|
|
*next_ret = s+1;
|
2020-07-29 22:55:20 +02:00
|
|
|
/* if byte is nul or is not a continuation byte, return unknown */
|
2020-07-29 05:51:08 +02:00
|
|
|
if (*s == '\0' || ((unsigned char)*s & utfmask[0]) != utfbyte[0])
|
|
|
|
return unknown;
|
|
|
|
/* 6 is the number of relevant bits in the continuation byte */
|
|
|
|
ucode = (ucode << 6) | ((unsigned char)*s & ~utfmask[0]);
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check if ucode is invalid or in utf-16 surrogate halves */
|
|
|
|
if (!BETWEEN(ucode, utfmin[usize], utfmax[usize])
|
|
|
|
|| BETWEEN (ucode, 0xD800, 0xDFFF))
|
|
|
|
return unknown;
|
|
|
|
|
|
|
|
return ucode;
|
|
|
|
}
|
|
|
|
|
2020-08-01 00:50:50 +02:00
|
|
|
/* get which font contains a given code point */
|
|
|
|
static XftFont *
|
|
|
|
getfontucode(FcChar32 ucode)
|
|
|
|
{
|
2020-08-01 20:38:26 +02:00
|
|
|
FcCharSet *fccharset = NULL;
|
|
|
|
FcPattern *fcpattern = NULL;
|
|
|
|
FcPattern *match = NULL;
|
|
|
|
XftFont *retfont = NULL;
|
2020-08-01 20:12:57 +02:00
|
|
|
XftResult result;
|
2020-08-01 00:50:50 +02:00
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < dc.nfonts; i++)
|
|
|
|
if (XftCharExists(dpy, dc.fonts[i], ucode) == FcTrue)
|
|
|
|
return dc.fonts[i];
|
2020-08-01 20:12:57 +02:00
|
|
|
|
|
|
|
/* create a charset containing our code point */
|
|
|
|
fccharset = FcCharSetCreate();
|
|
|
|
FcCharSetAddChar(fccharset, ucode);
|
|
|
|
|
2020-08-01 20:38:26 +02:00
|
|
|
/* create a pattern akin to the dc.pattern but containing our charset */
|
|
|
|
if (fccharset) {
|
|
|
|
fcpattern = FcPatternDuplicate(dc.pattern);
|
|
|
|
FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset);
|
|
|
|
}
|
2020-08-01 20:12:57 +02:00
|
|
|
|
|
|
|
/* find pattern matching fcpattern */
|
2020-08-01 20:38:26 +02:00
|
|
|
if (fcpattern) {
|
|
|
|
FcConfigSubstitute(NULL, fcpattern, FcMatchPattern);
|
|
|
|
FcDefaultSubstitute(fcpattern);
|
|
|
|
match = XftFontMatch(dpy, screen, fcpattern, &result);
|
|
|
|
}
|
2020-08-01 20:12:57 +02:00
|
|
|
|
|
|
|
/* if found a pattern, open its font */
|
|
|
|
if (match) {
|
|
|
|
retfont = XftFontOpenPattern(dpy, match);
|
|
|
|
if (retfont && XftCharExists(dpy, retfont, ucode) == FcTrue) {
|
|
|
|
if ((dc.fonts = realloc(dc.fonts, dc.nfonts+1)) == NULL)
|
|
|
|
err(1, "realloc");
|
2020-08-01 20:38:26 +02:00
|
|
|
dc.fonts[dc.nfonts] = retfont;
|
|
|
|
return dc.fonts[dc.nfonts++];
|
2020-08-01 20:12:57 +02:00
|
|
|
} else {
|
|
|
|
XftFontClose(dpy, retfont);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* in case no fount was found, return the first one */
|
|
|
|
return dc.fonts[0];
|
2020-08-01 00:50:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw text into XftDraw, return width of text glyphs */
|
2020-07-29 05:51:08 +02:00
|
|
|
static int
|
|
|
|
drawtext(XftDraw *draw, XftColor *color, int x, int y, unsigned h, const char *text)
|
|
|
|
{
|
2020-08-01 00:50:50 +02:00
|
|
|
int textwidth = 0;
|
2020-07-29 05:51:08 +02:00
|
|
|
|
2020-08-01 00:50:50 +02:00
|
|
|
while (*text) {
|
|
|
|
XftFont *currfont;
|
2020-07-29 05:51:08 +02:00
|
|
|
XGlyphInfo ext;
|
2020-08-01 00:50:50 +02:00
|
|
|
FcChar32 ucode;
|
|
|
|
const char *next;
|
2020-07-29 05:51:08 +02:00
|
|
|
size_t len;
|
|
|
|
|
2020-08-01 00:50:50 +02:00
|
|
|
ucode = getnextutf8char(text, &next);
|
2020-08-01 20:12:57 +02:00
|
|
|
currfont = getfontucode(ucode);
|
2020-07-29 05:51:08 +02:00
|
|
|
|
2020-08-01 00:50:50 +02:00
|
|
|
len = next - text;
|
|
|
|
XftTextExtentsUtf8(dpy, currfont, (XftChar8 *)text, len, &ext);
|
|
|
|
textwidth += ext.xOff;
|
2020-07-29 05:51:08 +02:00
|
|
|
|
|
|
|
if (draw) {
|
2020-08-01 20:38:26 +02:00
|
|
|
int texty;
|
|
|
|
|
|
|
|
texty = y + (h - (currfont->ascent + currfont->descent))/2 + currfont->ascent;
|
2020-08-01 00:50:50 +02:00
|
|
|
XftDrawStringUtf8(draw, color, currfont, x, texty, (XftChar8 *)text, len);
|
2020-07-29 05:51:08 +02:00
|
|
|
x += ext.xOff;
|
|
|
|
}
|
|
|
|
|
2020-08-01 00:50:50 +02:00
|
|
|
text = next;
|
2020-07-29 05:51:08 +02:00
|
|
|
}
|
|
|
|
|
2020-08-01 00:50:50 +02:00
|
|
|
return textwidth;
|
2020-07-29 05:51:08 +02:00
|
|
|
}
|
|
|
|
|
2020-07-16 03:57:59 +02:00
|
|
|
/* setup the height, width and icon of the items of a menu */
|
2020-05-16 00:02:23 +02:00
|
|
|
static void
|
2020-07-16 03:57:59 +02:00
|
|
|
setupitems(struct Menu *menu)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-05-16 03:25:05 +02:00
|
|
|
struct Item *item;
|
2020-12-15 17:14:57 +01:00
|
|
|
int itemwidth;
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
menu->w = config.width_pixels;
|
2020-12-15 17:14:57 +01:00
|
|
|
menu->maxtextw = 0;
|
2020-05-16 03:25:05 +02:00
|
|
|
for (item = menu->list; item != NULL; item = item->next) {
|
|
|
|
item->y = menu->h;
|
2020-05-16 03:51:26 +02:00
|
|
|
if (item->label == NULL) /* height for separator item */
|
2020-06-29 17:20:37 +02:00
|
|
|
item->h = config.separator_pixels;
|
2020-05-16 03:25:05 +02:00
|
|
|
else
|
2020-06-29 17:20:37 +02:00
|
|
|
item->h = config.height_pixels;
|
2020-05-30 10:45:28 +02:00
|
|
|
menu->h += item->h;
|
2020-07-29 06:19:45 +02:00
|
|
|
if (item->label)
|
2020-12-15 17:14:57 +01:00
|
|
|
item->textw = drawtext(NULL, NULL, 0, 0, 0, item->label);
|
2020-07-29 06:19:45 +02:00
|
|
|
else
|
2020-12-15 17:14:57 +01:00
|
|
|
item->textw = 0;
|
2020-06-12 16:37:13 +02:00
|
|
|
|
2020-07-16 03:57:59 +02:00
|
|
|
/*
|
|
|
|
* set menu width
|
|
|
|
*
|
2020-12-15 17:14:57 +01:00
|
|
|
* the item width depends on the size of its label (item->textw),
|
2020-07-16 03:57:59 +02:00
|
|
|
* and it is only used to calculate the width of the menu (which
|
|
|
|
* is equal to the width of the largest item).
|
|
|
|
*
|
|
|
|
* the horizontal padding appears 4 times through the width of a
|
2020-07-29 06:19:45 +02:00
|
|
|
* item: before and after its icon, and before and after its triangle.
|
2020-07-16 03:57:59 +02:00
|
|
|
* if the iflag is set (icons are disabled) then the horizontal
|
2020-07-29 06:19:45 +02:00
|
|
|
* padding appears 3 times: before the label and around the triangle.
|
2020-07-16 03:57:59 +02:00
|
|
|
*/
|
2020-12-15 17:14:57 +01:00
|
|
|
itemwidth = item->textw + config.triangle_width + config.horzpadding * 3;
|
2020-07-30 22:04:04 +02:00
|
|
|
itemwidth += (iflag || !menu->hasicon) ? 0 : config.iconsize + config.horzpadding;
|
2020-07-16 03:57:59 +02:00
|
|
|
menu->w = MAX(menu->w, itemwidth);
|
2020-12-15 17:14:57 +01:00
|
|
|
menu->maxtextw = MAX(menu->maxtextw, item->textw);
|
2020-05-16 03:25:05 +02:00
|
|
|
}
|
2020-05-30 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* setup the position of a menu */
|
|
|
|
static void
|
2020-06-29 17:20:37 +02:00
|
|
|
setupmenupos(struct Menu *menu)
|
2020-05-30 23:56:59 +02:00
|
|
|
{
|
|
|
|
int width, height;
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
width = menu->w + config.border_pixels * 2;
|
|
|
|
height = menu->h + config.border_pixels * 2;
|
2020-05-16 00:02:23 +02:00
|
|
|
if (menu->parent == NULL) { /* if root menu, calculate in respect to cursor */
|
2020-10-18 17:17:46 +02:00
|
|
|
if (pflag || (config.posx >= mon.x && mon.x + mon.w - config.posx >= width))
|
2020-07-23 22:37:28 +02:00
|
|
|
menu->x = config.posx;
|
|
|
|
else if (config.posx > width)
|
|
|
|
menu->x = config.posx - width;
|
2020-06-29 17:20:37 +02:00
|
|
|
|
2020-10-18 17:17:46 +02:00
|
|
|
if (pflag || (config.posy >= mon.y && mon.y + mon.h - config.posy >= height))
|
2020-07-23 22:37:28 +02:00
|
|
|
menu->y = config.posy;
|
2020-07-30 05:25:55 +02:00
|
|
|
else if (mon.y + mon.h > height)
|
2020-07-29 22:55:20 +02:00
|
|
|
menu->y = mon.y + mon.h - height;
|
2020-05-16 00:02:23 +02:00
|
|
|
} else { /* else, calculate in respect to parent menu */
|
2020-07-29 22:55:20 +02:00
|
|
|
int parentwidth;
|
|
|
|
|
|
|
|
parentwidth = menu->parent->x + menu->parent->w + config.border_pixels + config.gap_pixels;
|
|
|
|
|
|
|
|
if (mon.x + mon.w - parentwidth >= width)
|
|
|
|
menu->x = parentwidth;
|
2020-06-29 17:20:37 +02:00
|
|
|
else if (menu->parent->x > menu->w + config.border_pixels + config.gap_pixels)
|
|
|
|
menu->x = menu->parent->x - menu->w - config.border_pixels - config.gap_pixels;
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-07-30 22:24:58 +02:00
|
|
|
if (mon.y + mon.h - (menu->caller->y + menu->parent->y) >= height)
|
2020-05-19 18:41:11 +02:00
|
|
|
menu->y = menu->caller->y + menu->parent->y;
|
2020-07-29 22:55:20 +02:00
|
|
|
else if (mon.y + mon.h > height)
|
|
|
|
menu->y = mon.y + mon.h - height;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
2020-05-30 23:56:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* recursivelly setup menu configuration and its pixmap */
|
|
|
|
static void
|
2020-06-29 17:20:37 +02:00
|
|
|
setupmenu(struct Menu *menu, XClassHint *classh)
|
2020-05-30 23:56:59 +02:00
|
|
|
{
|
2020-06-29 17:20:37 +02:00
|
|
|
char *title;
|
2020-05-30 23:56:59 +02:00
|
|
|
struct Item *item;
|
|
|
|
XWindowChanges changes;
|
|
|
|
XSizeHints sizeh;
|
2020-06-01 03:26:33 +02:00
|
|
|
XTextProperty wintitle;
|
2020-05-30 23:56:59 +02:00
|
|
|
|
|
|
|
/* setup size and position of menus */
|
2020-07-16 03:57:59 +02:00
|
|
|
setupitems(menu);
|
2020-06-29 17:20:37 +02:00
|
|
|
setupmenupos(menu);
|
2020-05-16 00:02:23 +02:00
|
|
|
|
|
|
|
/* update menu geometry */
|
2020-06-29 17:20:37 +02:00
|
|
|
changes.border_width = config.border_pixels;
|
2020-05-16 00:02:23 +02:00
|
|
|
changes.height = menu->h;
|
2020-05-16 06:24:43 +02:00
|
|
|
changes.width = menu->w;
|
2020-05-16 00:02:23 +02:00
|
|
|
changes.x = menu->x;
|
|
|
|
changes.y = menu->y;
|
2020-05-30 10:45:28 +02:00
|
|
|
XConfigureWindow(dpy, menu->win, CWBorderWidth | CWWidth | CWHeight | CWX | CWY, &changes);
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
/* set window title (used if wflag is on) */
|
|
|
|
if (menu->parent == NULL) {
|
2020-06-29 17:20:37 +02:00
|
|
|
title = classh->res_name;
|
2020-06-01 03:26:33 +02:00
|
|
|
} else {
|
2020-06-29 17:20:37 +02:00
|
|
|
title = menu->caller->output;
|
2020-06-01 03:26:33 +02:00
|
|
|
}
|
2020-06-29 17:20:37 +02:00
|
|
|
XStringListToTextProperty(&title, 1, &wintitle);
|
2020-06-01 03:26:33 +02:00
|
|
|
|
2020-05-19 10:51:21 +02:00
|
|
|
/* set window manager hints */
|
2020-07-30 21:51:29 +02:00
|
|
|
sizeh.flags = USPosition | PMaxSize | PMinSize;
|
2020-05-16 04:08:05 +02:00
|
|
|
sizeh.min_width = sizeh.max_width = menu->w;
|
|
|
|
sizeh.min_height = sizeh.max_height = menu->h;
|
2020-06-01 03:26:33 +02:00
|
|
|
XSetWMProperties(dpy, menu->win, &wintitle, NULL, NULL, 0, &sizeh, NULL, classh);
|
2020-05-16 04:08:05 +02:00
|
|
|
|
2020-06-29 17:25:59 +02:00
|
|
|
/* set WM protocols and ewmh window properties */
|
|
|
|
XSetWMProtocols(dpy, menu->win, &wmdelete, 1);
|
2020-06-29 17:20:37 +02:00
|
|
|
XChangeProperty(dpy, menu->win, netatom[NetWMName], utf8string, 8,
|
2020-06-29 17:25:59 +02:00
|
|
|
PropModeReplace, (unsigned char *)title, strlen(title));
|
2020-06-29 17:20:37 +02:00
|
|
|
XChangeProperty(dpy, menu->win, netatom[NetWMWindowType], XA_ATOM, 32,
|
|
|
|
PropModeReplace,
|
|
|
|
(unsigned char *)&netatom[NetWMWindowTypePopupMenu], 1);
|
|
|
|
|
2020-05-16 03:25:05 +02:00
|
|
|
/* calculate positions of submenus */
|
2020-05-16 00:02:23 +02:00
|
|
|
for (item = menu->list; item != NULL; item = item->next) {
|
|
|
|
if (item->submenu != NULL)
|
2020-06-29 17:20:37 +02:00
|
|
|
setupmenu(item->submenu, classh);
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 14:17:06 +02:00
|
|
|
/* try to grab pointer, we may have to wait for another process to ungrab */
|
|
|
|
static void
|
|
|
|
grabpointer(void)
|
|
|
|
{
|
|
|
|
struct timespec ts = { .tv_sec = 0, .tv_nsec = 1000000 };
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 1000; i++) {
|
|
|
|
if (XGrabPointer(dpy, rootwin, True, ButtonPressMask,
|
|
|
|
GrabModeAsync, GrabModeAsync, None,
|
|
|
|
None, CurrentTime) == GrabSuccess)
|
|
|
|
return;
|
|
|
|
nanosleep(&ts, NULL);
|
|
|
|
}
|
2020-08-13 01:05:09 +02:00
|
|
|
errx(1, "could not grab pointer");
|
2020-05-19 14:17:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* try to grab keyboard, we may have to wait for another process to ungrab */
|
|
|
|
static void
|
|
|
|
grabkeyboard(void)
|
|
|
|
{
|
|
|
|
struct timespec ts = { .tv_sec = 0, .tv_nsec = 1000000 };
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 1000; i++) {
|
|
|
|
if (XGrabKeyboard(dpy, rootwin, True, GrabModeAsync,
|
|
|
|
GrabModeAsync, CurrentTime) == GrabSuccess)
|
|
|
|
return;
|
|
|
|
nanosleep(&ts, NULL);
|
|
|
|
}
|
2020-08-13 01:01:05 +02:00
|
|
|
errx(1, "could not grab keyboard");
|
2020-05-19 14:17:06 +02:00
|
|
|
}
|
|
|
|
|
2020-12-29 23:22:50 +01:00
|
|
|
/* try to grab focus, we may have to wait for another process to ungrab */
|
|
|
|
static void
|
|
|
|
grabfocus(Window win)
|
|
|
|
{
|
|
|
|
struct timespec ts = { .tv_sec = 0, .tv_nsec = 10000000 };
|
|
|
|
Window focuswin;
|
|
|
|
int i, revertwin;
|
|
|
|
|
|
|
|
for (i = 0; i < 100; ++i) {
|
|
|
|
XGetInputFocus(dpy, &focuswin, &revertwin);
|
|
|
|
if (focuswin == win)
|
|
|
|
return;
|
|
|
|
XSetInputFocus(dpy, win, RevertToParent, CurrentTime);
|
|
|
|
nanosleep(&ts, NULL);
|
|
|
|
}
|
|
|
|
errx(1, "cannot grab focus");
|
|
|
|
}
|
|
|
|
|
2020-12-29 22:56:50 +01:00
|
|
|
/* ungrab pointer and keyboard */
|
|
|
|
static void
|
|
|
|
ungrab(void)
|
|
|
|
{
|
|
|
|
XUngrabPointer(dpy, CurrentTime);
|
|
|
|
XUngrabKeyboard(dpy, CurrentTime);
|
|
|
|
}
|
|
|
|
|
2020-07-29 16:37:38 +02:00
|
|
|
/* load and scale icon */
|
|
|
|
static Imlib_Image
|
|
|
|
loadicon(const char *file)
|
|
|
|
{
|
|
|
|
Imlib_Image icon;
|
2020-08-13 01:29:33 +02:00
|
|
|
Imlib_Load_Error errcode;
|
|
|
|
const char *errstr;
|
2020-07-29 16:37:38 +02:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int imgsize;
|
|
|
|
|
2020-08-13 01:29:33 +02:00
|
|
|
icon = imlib_load_image_with_error_return(file, &errcode);
|
2020-08-13 01:49:55 +02:00
|
|
|
if (*file == '\0') {
|
|
|
|
warnx("could not load icon (file name is blank)");
|
|
|
|
return NULL;
|
|
|
|
} else if (icon == NULL) {
|
2020-08-13 01:29:33 +02:00
|
|
|
switch (errcode) {
|
|
|
|
case IMLIB_LOAD_ERROR_FILE_DOES_NOT_EXIST:
|
|
|
|
errstr = "file does not exist";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_FILE_IS_DIRECTORY:
|
|
|
|
errstr = "file is directory";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_READ:
|
|
|
|
case IMLIB_LOAD_ERROR_PERMISSION_DENIED_TO_WRITE:
|
|
|
|
errstr = "permission denied";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_NO_LOADER_FOR_FILE_FORMAT:
|
|
|
|
errstr = "unknown file format";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_TOO_LONG:
|
|
|
|
errstr = "path too long";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_COMPONENT_NON_EXISTANT:
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_COMPONENT_NOT_DIRECTORY:
|
|
|
|
case IMLIB_LOAD_ERROR_PATH_POINTS_OUTSIDE_ADDRESS_SPACE:
|
|
|
|
errstr = "improper path";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_TOO_MANY_SYMBOLIC_LINKS:
|
|
|
|
errstr = "too many symbolic links";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_OUT_OF_MEMORY:
|
|
|
|
errstr = "out of memory";
|
|
|
|
break;
|
|
|
|
case IMLIB_LOAD_ERROR_OUT_OF_FILE_DESCRIPTORS:
|
|
|
|
errstr = "out of file descriptors";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
errstr = "unknown error";
|
|
|
|
break;
|
|
|
|
}
|
2020-08-13 01:49:55 +02:00
|
|
|
warnx("could not load icon (%s): %s", errstr, file);
|
|
|
|
return NULL;
|
2020-08-13 01:29:33 +02:00
|
|
|
}
|
2020-07-29 16:37:38 +02:00
|
|
|
|
|
|
|
imlib_context_set_image(icon);
|
|
|
|
|
|
|
|
width = imlib_image_get_width();
|
|
|
|
height = imlib_image_get_height();
|
|
|
|
imgsize = MIN(width, height);
|
|
|
|
|
|
|
|
icon = imlib_create_cropped_scaled_image(0, 0, imgsize, imgsize,
|
|
|
|
config.iconsize,
|
|
|
|
config.iconsize);
|
|
|
|
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* draw pixmap for the selected and unselected version of each item on menu */
|
|
|
|
static void
|
|
|
|
drawitems(struct Menu *menu)
|
|
|
|
{
|
2020-12-15 17:14:57 +01:00
|
|
|
XftDraw *dsel, *dunsel;
|
2020-07-29 16:37:38 +02:00
|
|
|
struct Item *item;
|
2020-12-15 17:14:57 +01:00
|
|
|
int textx;
|
|
|
|
int x, y;
|
2020-07-29 16:37:38 +02:00
|
|
|
|
|
|
|
for (item = menu->list; item != NULL; item = item->next) {
|
|
|
|
item->unsel = XCreatePixmap(dpy, menu->win, menu->w, item->h,
|
|
|
|
DefaultDepth(dpy, screen));
|
|
|
|
|
|
|
|
XSetForeground(dpy, dc.gc, dc.normal[ColorBG].pixel);
|
|
|
|
XFillRectangle(dpy, item->unsel, dc.gc, 0, 0, menu->w, item->h);
|
|
|
|
|
|
|
|
if (item->label == NULL) { /* item is separator */
|
|
|
|
y = item->h/2;
|
|
|
|
XSetForeground(dpy, dc.gc, dc.separator.pixel);
|
|
|
|
XDrawLine(dpy, item->unsel, dc.gc, config.horzpadding, y,
|
|
|
|
menu->w - config.horzpadding, y);
|
|
|
|
|
|
|
|
item->sel = item->unsel;
|
|
|
|
} else {
|
|
|
|
item->sel = XCreatePixmap(dpy, menu->win, menu->w, item->h,
|
|
|
|
DefaultDepth(dpy, screen));
|
|
|
|
XSetForeground(dpy, dc.gc, dc.selected[ColorBG].pixel);
|
|
|
|
XFillRectangle(dpy, item->sel, dc.gc, 0, 0, menu->w, item->h);
|
|
|
|
|
|
|
|
/* draw text */
|
2020-12-15 17:14:57 +01:00
|
|
|
textx = config.horzpadding;
|
|
|
|
textx += (iflag || !menu->hasicon) ? 0 : config.horzpadding + config.iconsize;
|
|
|
|
switch (config.alignment) {
|
|
|
|
case CenterAlignment:
|
|
|
|
textx += (menu->maxtextw - item->textw) / 2;
|
|
|
|
break;
|
|
|
|
case RightAlignment:
|
|
|
|
textx += menu->maxtextw - item->textw;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2020-07-29 16:37:38 +02:00
|
|
|
dsel = XftDrawCreate(dpy, item->sel, visual, colormap);
|
|
|
|
dunsel = XftDrawCreate(dpy, item->unsel, visual, colormap);
|
|
|
|
XSetForeground(dpy, dc.gc, dc.selected[ColorFG].pixel);
|
2020-12-15 17:14:57 +01:00
|
|
|
drawtext(dsel, &dc.selected[ColorFG], textx, 0, item->h, item->label);
|
2020-07-29 16:37:38 +02:00
|
|
|
XSetForeground(dpy, dc.gc, dc.normal[ColorFG].pixel);
|
2020-12-15 17:14:57 +01:00
|
|
|
drawtext(dunsel, &dc.normal[ColorFG], textx, 0, item->h, item->label);
|
2020-07-29 16:37:38 +02:00
|
|
|
XftDrawDestroy(dsel);
|
|
|
|
XftDrawDestroy(dunsel);
|
|
|
|
|
|
|
|
/* draw triangle */
|
|
|
|
if (item->submenu != NULL) {
|
|
|
|
x = menu->w - config.triangle_width - config.horzpadding;
|
|
|
|
y = (item->h - config.triangle_height + 1) / 2;
|
|
|
|
|
|
|
|
XPoint triangle[] = {
|
|
|
|
{x, y},
|
|
|
|
{x + config.triangle_width, y + config.triangle_height/2},
|
|
|
|
{x, y + config.triangle_height},
|
|
|
|
{x, y}
|
|
|
|
};
|
|
|
|
|
|
|
|
XSetForeground(dpy, dc.gc, dc.selected[ColorFG].pixel);
|
|
|
|
XFillPolygon(dpy, item->sel, dc.gc, triangle, LEN(triangle),
|
|
|
|
Convex, CoordModeOrigin);
|
|
|
|
XSetForeground(dpy, dc.gc, dc.normal[ColorFG].pixel);
|
|
|
|
XFillPolygon(dpy, item->unsel, dc.gc, triangle, LEN(triangle),
|
|
|
|
Convex, CoordModeOrigin);
|
|
|
|
}
|
|
|
|
|
2020-09-17 02:04:43 +02:00
|
|
|
/* try to load icon */
|
|
|
|
if (item->file && !iflag) {
|
2020-07-29 16:37:38 +02:00
|
|
|
item->icon = loadicon(item->file);
|
2020-09-17 02:04:43 +02:00
|
|
|
free(item->file);
|
|
|
|
}
|
2020-07-29 16:37:38 +02:00
|
|
|
|
2020-09-17 02:04:43 +02:00
|
|
|
/* draw icon if properly loaded */
|
2020-08-13 01:49:55 +02:00
|
|
|
if (item->icon) {
|
2020-07-29 16:37:38 +02:00
|
|
|
imlib_context_set_image(item->icon);
|
2020-07-29 22:55:20 +02:00
|
|
|
imlib_context_set_drawable(item->sel);
|
2020-07-29 16:37:38 +02:00
|
|
|
imlib_render_image_on_drawable(config.horzpadding, config.iconpadding);
|
|
|
|
imlib_context_set_drawable(item->unsel);
|
|
|
|
imlib_render_image_on_drawable(config.horzpadding, config.iconpadding);
|
2020-09-17 02:04:43 +02:00
|
|
|
imlib_context_set_image(item->icon);
|
|
|
|
imlib_free_image();
|
2020-07-29 16:37:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* copy pixmaps of items of the current menu and of its ancestors into menu window */
|
|
|
|
static void
|
|
|
|
drawmenus(struct Menu *currmenu)
|
|
|
|
{
|
|
|
|
struct Menu *menu;
|
|
|
|
struct Item *item;
|
|
|
|
|
|
|
|
for (menu = currmenu; menu != NULL; menu = menu->parent) {
|
|
|
|
if (!menu->drawn) {
|
|
|
|
drawitems(menu);
|
|
|
|
menu->drawn = 1;
|
|
|
|
}
|
|
|
|
for (item = menu->list; item != NULL; item = item->next) {
|
|
|
|
if (item == menu->selected)
|
|
|
|
XCopyArea(dpy, item->sel, menu->win, dc.gc, 0, 0,
|
|
|
|
menu->w, item->h, 0, item->y);
|
|
|
|
else
|
|
|
|
XCopyArea(dpy, item->unsel, menu->win, dc.gc, 0, 0,
|
|
|
|
menu->w, item->h, 0, item->y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-27 18:40:11 +02:00
|
|
|
/* umap previous menus and map current menu and its parents */
|
2020-05-16 00:02:23 +02:00
|
|
|
static void
|
2020-05-27 18:40:11 +02:00
|
|
|
mapmenu(struct Menu *currmenu)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-05-27 18:40:11 +02:00
|
|
|
static struct Menu *prevmenu = NULL;
|
2020-05-16 19:43:07 +02:00
|
|
|
struct Menu *menu, *menu_;
|
|
|
|
struct Menu *lcamenu; /* lowest common ancestor menu */
|
|
|
|
unsigned minlevel; /* level of the closest to root menu */
|
|
|
|
unsigned maxlevel; /* level of the closest to root menu */
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-05-27 18:40:11 +02:00
|
|
|
/* do not remap current menu if it wasn't updated*/
|
|
|
|
if (prevmenu == currmenu)
|
2020-05-16 00:02:23 +02:00
|
|
|
return;
|
|
|
|
|
2020-05-27 18:40:11 +02:00
|
|
|
/* if this is the first time mapping, skip calculations */
|
|
|
|
if (prevmenu == NULL) {
|
2020-05-26 23:43:45 +02:00
|
|
|
XMapWindow(dpy, currmenu->win);
|
2020-05-27 20:10:53 +02:00
|
|
|
prevmenu = currmenu;
|
|
|
|
return;
|
2020-05-24 03:06:21 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 19:43:07 +02:00
|
|
|
/* find lowest common ancestor menu */
|
2020-05-27 18:40:11 +02:00
|
|
|
minlevel = MIN(currmenu->level, prevmenu->level);
|
|
|
|
maxlevel = MAX(currmenu->level, prevmenu->level);
|
|
|
|
if (currmenu->level == maxlevel) {
|
2020-05-24 03:06:21 +02:00
|
|
|
menu = currmenu;
|
2020-05-27 18:40:11 +02:00
|
|
|
menu_ = prevmenu;
|
|
|
|
} else {
|
|
|
|
menu = prevmenu;
|
|
|
|
menu_ = currmenu;
|
2020-05-24 03:06:21 +02:00
|
|
|
}
|
|
|
|
while (menu->level > minlevel)
|
|
|
|
menu = menu->parent;
|
|
|
|
while (menu != menu_) {
|
|
|
|
menu = menu->parent;
|
|
|
|
menu_ = menu_->parent;
|
2020-05-16 19:43:07 +02:00
|
|
|
}
|
2020-05-24 03:06:21 +02:00
|
|
|
lcamenu = menu;
|
2020-05-16 19:43:07 +02:00
|
|
|
|
2020-05-16 23:01:14 +02:00
|
|
|
/* unmap menus from currmenu (inclusive) until lcamenu (exclusive) */
|
2020-05-27 18:40:11 +02:00
|
|
|
for (menu = prevmenu; menu != lcamenu; menu = menu->parent) {
|
2020-05-19 18:41:11 +02:00
|
|
|
menu->selected = NULL;
|
2020-05-16 00:02:23 +02:00
|
|
|
XUnmapWindow(dpy, menu->win);
|
|
|
|
}
|
|
|
|
|
2020-05-16 23:01:14 +02:00
|
|
|
/* map menus from currmenu (inclusive) until lcamenu (exclusive) */
|
2020-05-16 19:43:07 +02:00
|
|
|
for (menu = currmenu; menu != lcamenu; menu = menu->parent) {
|
2020-06-01 03:26:33 +02:00
|
|
|
|
|
|
|
if (wflag) {
|
2020-06-29 17:20:37 +02:00
|
|
|
setupmenupos(menu);
|
2020-06-01 03:26:33 +02:00
|
|
|
XMoveWindow(dpy, menu->win, menu->x, menu->y);
|
|
|
|
}
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
XMapWindow(dpy, menu->win);
|
2020-05-26 23:43:45 +02:00
|
|
|
}
|
2020-05-27 18:40:11 +02:00
|
|
|
|
|
|
|
prevmenu = currmenu;
|
2020-12-29 23:22:50 +01:00
|
|
|
grabfocus(currmenu->win);
|
2020-05-26 23:43:45 +02:00
|
|
|
}
|
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* get menu of given window */
|
|
|
|
static struct Menu *
|
|
|
|
getmenu(struct Menu *currmenu, Window win)
|
|
|
|
{
|
|
|
|
struct Menu *menu;
|
|
|
|
|
|
|
|
for (menu = currmenu; menu != NULL; menu = menu->parent)
|
|
|
|
if (menu->win == win)
|
|
|
|
return menu;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get item of given menu and position */
|
|
|
|
static struct Item *
|
|
|
|
getitem(struct Menu *menu, int y)
|
|
|
|
{
|
|
|
|
struct Item *item;
|
|
|
|
|
|
|
|
if (menu == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (item = menu->list; item != NULL; item = item->next)
|
|
|
|
if (y >= item->y && y <= item->y + item->h)
|
|
|
|
return item;
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-05-17 22:01:46 +02:00
|
|
|
/* cycle through the items; non-zero direction is next, zero is prev */
|
|
|
|
static struct Item *
|
2020-05-27 18:40:11 +02:00
|
|
|
itemcycle(struct Menu *currmenu, int direction)
|
2020-05-17 22:01:46 +02:00
|
|
|
{
|
2020-09-17 02:48:46 +02:00
|
|
|
struct Item *item = NULL;
|
2020-05-17 22:01:46 +02:00
|
|
|
struct Item *lastitem;
|
|
|
|
|
2020-09-17 02:48:46 +02:00
|
|
|
for (lastitem = currmenu->list; lastitem && lastitem->next; lastitem = lastitem->next)
|
|
|
|
;
|
2020-05-17 22:01:46 +02:00
|
|
|
|
2020-09-17 02:48:46 +02:00
|
|
|
/* select item (either separator or labeled item) in given direction */
|
|
|
|
switch (direction) {
|
|
|
|
case ITEMNEXT:
|
2020-05-17 22:01:46 +02:00
|
|
|
if (currmenu->selected == NULL)
|
|
|
|
item = currmenu->list;
|
|
|
|
else if (currmenu->selected->next != NULL)
|
|
|
|
item = currmenu->selected->next;
|
2020-09-17 02:48:46 +02:00
|
|
|
break;
|
|
|
|
case ITEMPREV:
|
2020-05-17 22:01:46 +02:00
|
|
|
if (currmenu->selected == NULL)
|
|
|
|
item = lastitem;
|
|
|
|
else if (currmenu->selected->prev != NULL)
|
|
|
|
item = currmenu->selected->prev;
|
2020-09-17 02:48:46 +02:00
|
|
|
break;
|
|
|
|
case ITEMFIRST:
|
|
|
|
item = currmenu->list;
|
|
|
|
break;
|
|
|
|
case ITEMLAST:
|
|
|
|
item = lastitem;
|
|
|
|
break;
|
|
|
|
}
|
2020-05-17 22:01:46 +02:00
|
|
|
|
2020-09-17 02:48:46 +02:00
|
|
|
/*
|
|
|
|
* the selected item can be a separator
|
|
|
|
* let's select the closest labeled item (ie., one that isn't a separator)
|
|
|
|
*/
|
|
|
|
switch (direction) {
|
|
|
|
case ITEMNEXT:
|
|
|
|
case ITEMFIRST:
|
|
|
|
while (item != NULL && item->label == NULL)
|
|
|
|
item = item->next;
|
|
|
|
if (item == NULL)
|
|
|
|
item = currmenu->list;
|
|
|
|
break;
|
|
|
|
case ITEMPREV:
|
|
|
|
case ITEMLAST:
|
2020-05-17 22:01:46 +02:00
|
|
|
while (item != NULL && item->label == NULL)
|
|
|
|
item = item->prev;
|
|
|
|
if (item == NULL)
|
|
|
|
item = lastitem;
|
2020-09-17 02:48:46 +02:00
|
|
|
break;
|
2020-05-17 22:01:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
2020-11-09 20:46:25 +01:00
|
|
|
/* check if button is used to open a item on click */
|
|
|
|
static int
|
|
|
|
isclickbutton(unsigned int button)
|
|
|
|
{
|
|
|
|
if (button == Button1)
|
|
|
|
return 1;
|
|
|
|
if (!rflag && button == Button3)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-12-30 02:26:48 +01:00
|
|
|
/* append buf into text */
|
|
|
|
static int
|
|
|
|
append(char *text, char *buf, size_t textsize, size_t buflen)
|
|
|
|
{
|
|
|
|
size_t textlen;
|
|
|
|
|
|
|
|
textlen = strlen(text);
|
|
|
|
if (iscntrl(*buf))
|
|
|
|
return 0;
|
|
|
|
if (textlen + buflen > textsize - 1)
|
|
|
|
return 0;
|
|
|
|
if (buflen < 1)
|
|
|
|
return 0;
|
|
|
|
memcpy(text + textlen, buf, buflen);
|
|
|
|
text[textlen + buflen] = '\0';
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-12-31 08:58:05 +01:00
|
|
|
/* get item in menu matching text from given direction (or from beginning, if dir = 0) */
|
2020-12-30 02:26:48 +01:00
|
|
|
static struct Item *
|
2020-12-31 08:58:05 +01:00
|
|
|
matchitem(struct Menu *menu, char *text, int dir)
|
2020-12-30 02:26:48 +01:00
|
|
|
{
|
2020-12-31 08:58:05 +01:00
|
|
|
struct Item *item, *lastitem;
|
2020-12-30 02:26:48 +01:00
|
|
|
char *s;
|
|
|
|
size_t textlen;
|
|
|
|
|
2020-12-31 08:58:05 +01:00
|
|
|
for (lastitem = menu->list; lastitem && lastitem->next; lastitem = lastitem->next)
|
|
|
|
;
|
2020-12-30 02:26:48 +01:00
|
|
|
textlen = strlen(text);
|
2020-12-31 08:58:05 +01:00
|
|
|
if (dir < 0) {
|
|
|
|
if (menu->selected && menu->selected->prev)
|
|
|
|
item = menu->selected->prev;
|
|
|
|
else
|
|
|
|
item = lastitem;
|
|
|
|
} else if (dir > 0) {
|
|
|
|
if (menu->selected && menu->selected->next)
|
|
|
|
item = menu->selected->next;
|
|
|
|
else
|
|
|
|
item = menu->list;
|
|
|
|
} else {
|
|
|
|
item = menu->list;
|
|
|
|
}
|
|
|
|
/* find next item from selected item */
|
|
|
|
for ( ; item; item = (dir < 0) ? item->prev : item->next)
|
2020-12-30 02:26:48 +01:00
|
|
|
for (s = item->label; s && *s; s++)
|
|
|
|
if (strncasecmp(s, text, textlen) == 0)
|
|
|
|
return item;
|
2020-12-31 08:58:05 +01:00
|
|
|
/* if not found, try to find from the beginning/end of list */
|
|
|
|
if (dir > 0) {
|
|
|
|
for (item = menu->list ; item; item = item->next) {
|
|
|
|
for (s = item->label; s && *s; s++) {
|
|
|
|
if (strncasecmp(s, text, textlen) == 0) {
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (item = lastitem ; item; item = item->prev) {
|
|
|
|
for (s = item->label; s && *s; s++) {
|
|
|
|
if (strncasecmp(s, text, textlen) == 0) {
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-30 02:26:48 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2020-12-31 09:35:15 +01:00
|
|
|
/* check keysyms defined on config.h */
|
|
|
|
static KeySym
|
|
|
|
normalizeksym(KeySym ksym)
|
|
|
|
{
|
|
|
|
if (ksym == KSYMFIRST)
|
|
|
|
return XK_Home;
|
|
|
|
if (ksym == KSYMLAST)
|
|
|
|
return XK_End;
|
|
|
|
if (ksym == KSYMUP)
|
|
|
|
return XK_Up;
|
|
|
|
if (ksym == KSYMDOWN)
|
|
|
|
return XK_Down;
|
|
|
|
if (ksym == KSYMLEFT)
|
|
|
|
return XK_Left;
|
|
|
|
if (ksym == KSYMRIGHT)
|
|
|
|
return XK_Right;
|
|
|
|
return ksym;
|
|
|
|
}
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
/* run event loop */
|
|
|
|
static void
|
2020-05-27 18:40:11 +02:00
|
|
|
run(struct Menu *currmenu)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-12-30 02:26:48 +01:00
|
|
|
char text[BUFSIZ];
|
|
|
|
char buf[32];
|
2020-05-16 00:02:23 +02:00
|
|
|
struct Menu *menu;
|
|
|
|
struct Item *item;
|
|
|
|
struct Item *previtem = NULL;
|
2020-12-30 02:26:48 +01:00
|
|
|
struct Item *lastitem, *select;
|
2020-05-17 22:01:46 +02:00
|
|
|
KeySym ksym;
|
2020-12-30 02:26:48 +01:00
|
|
|
Status status;
|
2020-05-16 00:02:23 +02:00
|
|
|
XEvent ev;
|
2020-12-29 23:40:17 +01:00
|
|
|
int action;
|
2020-12-30 02:26:48 +01:00
|
|
|
int len;
|
2020-12-31 09:35:15 +01:00
|
|
|
int i;
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-12-30 02:26:48 +01:00
|
|
|
text[0] = '\0';
|
2020-05-27 18:40:11 +02:00
|
|
|
mapmenu(currmenu);
|
2020-05-16 00:02:23 +02:00
|
|
|
while (!XNextEvent(dpy, &ev)) {
|
2020-12-30 02:26:48 +01:00
|
|
|
if (XFilterEvent(&ev, None))
|
|
|
|
continue;
|
2020-12-29 23:40:17 +01:00
|
|
|
action = ACTION_NOP;
|
2020-05-16 00:02:23 +02:00
|
|
|
switch(ev.type) {
|
|
|
|
case Expose:
|
2020-05-17 22:01:46 +02:00
|
|
|
if (ev.xexpose.count == 0)
|
2020-12-29 23:40:17 +01:00
|
|
|
action = ACTION_DRAW;
|
2020-05-16 00:02:23 +02:00
|
|
|
break;
|
|
|
|
case MotionNotify:
|
2020-05-27 18:40:11 +02:00
|
|
|
menu = getmenu(currmenu, ev.xbutton.window);
|
2020-05-27 05:15:10 +02:00
|
|
|
item = getitem(menu, ev.xbutton.y);
|
2020-05-27 19:34:55 +02:00
|
|
|
if (menu == NULL || item == NULL || previtem == item)
|
2020-05-26 23:43:45 +02:00
|
|
|
break;
|
2020-05-27 19:34:55 +02:00
|
|
|
previtem = item;
|
2020-12-30 02:26:48 +01:00
|
|
|
select = menu->selected = item;
|
2020-05-27 19:34:55 +02:00
|
|
|
if (item->submenu != NULL) {
|
|
|
|
currmenu = item->submenu;
|
2020-12-30 02:26:48 +01:00
|
|
|
select = NULL;
|
2020-05-27 19:34:55 +02:00
|
|
|
} else {
|
|
|
|
currmenu = menu;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
2020-12-31 08:58:05 +01:00
|
|
|
action = ACTION_CLEAR | ACTION_SELECT | ACTION_MAP | ACTION_DRAW;
|
2020-05-16 00:02:23 +02:00
|
|
|
break;
|
|
|
|
case ButtonRelease:
|
2020-11-09 20:46:25 +01:00
|
|
|
if (!isclickbutton(ev.xbutton.button))
|
|
|
|
break;
|
2020-05-27 18:40:11 +02:00
|
|
|
menu = getmenu(currmenu, ev.xbutton.window);
|
2020-05-27 05:15:10 +02:00
|
|
|
item = getitem(menu, ev.xbutton.y);
|
2020-05-26 23:43:45 +02:00
|
|
|
if (menu == NULL || item == NULL)
|
2020-05-17 22:01:46 +02:00
|
|
|
break;
|
2020-12-30 02:26:48 +01:00
|
|
|
enteritem:
|
2020-05-26 23:43:45 +02:00
|
|
|
if (item->label == NULL)
|
|
|
|
break; /* ignore separators */
|
|
|
|
if (item->submenu != NULL) {
|
2020-05-27 18:40:11 +02:00
|
|
|
currmenu = item->submenu;
|
2020-05-16 00:02:23 +02:00
|
|
|
} else {
|
2020-05-26 23:43:45 +02:00
|
|
|
printf("%s\n", item->output);
|
2020-05-17 05:08:23 +02:00
|
|
|
return;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
2020-12-30 02:26:48 +01:00
|
|
|
select = currmenu->list;
|
2020-12-31 08:58:05 +01:00
|
|
|
action = ACTION_CLEAR | ACTION_SELECT | ACTION_MAP | ACTION_DRAW;
|
2020-05-26 23:43:45 +02:00
|
|
|
break;
|
2020-05-17 22:01:46 +02:00
|
|
|
case ButtonPress:
|
2020-05-27 18:40:11 +02:00
|
|
|
menu = getmenu(currmenu, ev.xbutton.window);
|
2020-05-27 05:15:10 +02:00
|
|
|
if (menu == NULL)
|
2020-05-17 22:01:46 +02:00
|
|
|
return;
|
|
|
|
break;
|
|
|
|
case KeyPress:
|
2020-12-30 02:26:48 +01:00
|
|
|
len = XmbLookupString(currmenu->xic, &ev.xkey, buf, sizeof buf, &ksym, &status);
|
|
|
|
switch(status) {
|
|
|
|
default: /* XLookupNone, XBufferOverflow */
|
|
|
|
continue;
|
|
|
|
case XLookupChars:
|
|
|
|
goto append;
|
|
|
|
case XLookupKeySym: /* FALLTHROUGH */
|
|
|
|
case XLookupBoth:
|
|
|
|
break;
|
|
|
|
}
|
2020-05-17 22:01:46 +02:00
|
|
|
|
2020-05-27 05:15:10 +02:00
|
|
|
/* esc closes xmenu when current menu is the root menu */
|
2020-05-27 18:40:11 +02:00
|
|
|
if (ksym == XK_Escape && currmenu->parent == NULL)
|
2020-05-17 22:01:46 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Shift-Tab = ISO_Left_Tab */
|
|
|
|
if (ksym == XK_Tab && (ev.xkey.state & ShiftMask))
|
|
|
|
ksym = XK_ISO_Left_Tab;
|
|
|
|
|
|
|
|
/* cycle through menu */
|
|
|
|
item = NULL;
|
2020-12-31 09:35:15 +01:00
|
|
|
ksym = normalizeksym(ksym);
|
|
|
|
switch (ksym) {
|
|
|
|
case XK_Home:
|
2020-09-17 02:48:46 +02:00
|
|
|
item = itemcycle(currmenu, ITEMFIRST);
|
2020-12-31 08:58:05 +01:00
|
|
|
action = ACTION_CLEAR;
|
2020-12-31 09:35:15 +01:00
|
|
|
break;
|
|
|
|
case XK_End:
|
2020-09-17 02:48:46 +02:00
|
|
|
item = itemcycle(currmenu, ITEMLAST);
|
2020-12-31 08:58:05 +01:00
|
|
|
action = ACTION_CLEAR;
|
2020-12-31 09:35:15 +01:00
|
|
|
break;
|
|
|
|
case XK_ISO_Left_Tab:
|
2020-12-31 08:58:05 +01:00
|
|
|
if (*text) {
|
|
|
|
item = matchitem(currmenu, text, -1);
|
2020-12-31 09:35:15 +01:00
|
|
|
break;
|
2020-12-31 08:58:05 +01:00
|
|
|
}
|
2020-12-31 09:35:15 +01:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case XK_Up:
|
|
|
|
item = itemcycle(currmenu, ITEMPREV);
|
|
|
|
action = ACTION_CLEAR;
|
|
|
|
break;
|
|
|
|
case XK_Tab:
|
2020-12-31 08:58:05 +01:00
|
|
|
if (*text) {
|
|
|
|
item = matchitem(currmenu, text, 1);
|
2020-12-31 09:35:15 +01:00
|
|
|
break;
|
2020-12-31 08:58:05 +01:00
|
|
|
}
|
2020-12-31 09:35:15 +01:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case XK_Down:
|
|
|
|
item = itemcycle(currmenu, ITEMNEXT);
|
|
|
|
action = ACTION_CLEAR;
|
|
|
|
break;
|
|
|
|
case XK_1: case XK_2: case XK_3: case XK_4: case XK_5: case XK_6: case XK_7: case XK_8: case XK_9:
|
2020-09-22 23:41:16 +02:00
|
|
|
item = itemcycle(currmenu, ITEMFIRST);
|
2020-09-23 00:18:15 +02:00
|
|
|
lastitem = itemcycle(currmenu, ITEMLAST);
|
|
|
|
for (int i = ksym - XK_1; i > 0 && item != lastitem; i--) {
|
2020-09-22 23:41:16 +02:00
|
|
|
currmenu->selected = item;
|
|
|
|
item = itemcycle(currmenu, ITEMNEXT);
|
|
|
|
}
|
2020-12-31 08:58:05 +01:00
|
|
|
action = ACTION_CLEAR;
|
2020-12-31 09:35:15 +01:00
|
|
|
break;
|
|
|
|
case XK_Return: case XK_Right:
|
|
|
|
if (currmenu->selected) {
|
|
|
|
item = currmenu->selected;
|
|
|
|
goto enteritem;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_Escape: case XK_Left:
|
|
|
|
if (currmenu->parent) {
|
|
|
|
item = currmenu->parent->selected;
|
|
|
|
currmenu = currmenu->parent;
|
|
|
|
action = ACTION_CLEAR | ACTION_MAP;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XK_BackSpace: case XK_Clear: case XK_Delete:
|
2020-12-31 08:58:05 +01:00
|
|
|
action = ACTION_CLEAR;
|
|
|
|
break;
|
2020-12-31 09:35:15 +01:00
|
|
|
default:
|
2020-12-30 02:26:48 +01:00
|
|
|
append:
|
2020-12-31 09:35:15 +01:00
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
append(text, buf, sizeof text, len);
|
|
|
|
if ((item = matchitem(currmenu, text, 0)))
|
|
|
|
break;
|
|
|
|
text[0] = '\0';
|
2020-12-30 02:26:48 +01:00
|
|
|
}
|
2020-12-31 09:35:15 +01:00
|
|
|
break;
|
2020-12-30 02:26:48 +01:00
|
|
|
}
|
|
|
|
select = item;
|
|
|
|
action |= ACTION_SELECT | ACTION_DRAW;
|
2020-05-16 00:02:23 +02:00
|
|
|
break;
|
2020-05-16 05:43:59 +02:00
|
|
|
case LeaveNotify:
|
2020-05-26 23:43:45 +02:00
|
|
|
previtem = NULL;
|
2020-12-30 02:26:48 +01:00
|
|
|
select = NULL;
|
2020-12-31 08:58:05 +01:00
|
|
|
action = ACTION_CLEAR | ACTION_SELECT | ACTION_DRAW;
|
2020-05-16 05:43:59 +02:00
|
|
|
break;
|
2020-06-01 03:26:33 +02:00
|
|
|
case ConfigureNotify:
|
|
|
|
menu = getmenu(currmenu, ev.xconfigure.window);
|
|
|
|
if (menu == NULL)
|
|
|
|
break;
|
|
|
|
menu->x = ev.xconfigure.x;
|
|
|
|
menu->y = ev.xconfigure.y;
|
|
|
|
break;
|
|
|
|
case ClientMessage:
|
2020-06-29 17:20:37 +02:00
|
|
|
if ((unsigned long) ev.xclient.data.l[0] != wmdelete)
|
|
|
|
break;
|
2020-06-01 03:26:33 +02:00
|
|
|
/* user closed window */
|
|
|
|
menu = getmenu(currmenu, ev.xclient.window);
|
|
|
|
if (menu->parent == NULL)
|
|
|
|
return; /* closing the root menu closes the program */
|
|
|
|
currmenu = menu->parent;
|
2020-12-29 23:40:17 +01:00
|
|
|
action = ACTION_MAP;
|
2020-06-01 03:26:33 +02:00
|
|
|
break;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
2020-12-31 08:58:05 +01:00
|
|
|
if (action & ACTION_CLEAR)
|
2020-12-30 02:26:48 +01:00
|
|
|
text[0] = '\0';
|
2020-12-31 08:58:05 +01:00
|
|
|
if (action & ACTION_SELECT)
|
|
|
|
currmenu->selected = select;
|
2020-12-29 23:40:17 +01:00
|
|
|
if (action & ACTION_MAP)
|
|
|
|
mapmenu(currmenu);
|
|
|
|
if (action & ACTION_DRAW)
|
|
|
|
drawmenus(currmenu);
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-26 23:43:45 +02:00
|
|
|
/* recursivelly free pixmaps and destroy windows */
|
2020-05-16 05:43:59 +02:00
|
|
|
static void
|
2020-06-29 17:20:37 +02:00
|
|
|
cleanmenu(struct Menu *menu)
|
2020-05-16 05:43:59 +02:00
|
|
|
{
|
|
|
|
struct Item *item;
|
2020-05-28 02:43:10 +02:00
|
|
|
struct Item *tmp;
|
2020-05-16 05:43:59 +02:00
|
|
|
|
2020-05-28 02:43:10 +02:00
|
|
|
item = menu->list;
|
|
|
|
while (item != NULL) {
|
2020-05-16 05:43:59 +02:00
|
|
|
if (item->submenu != NULL)
|
2020-06-29 17:20:37 +02:00
|
|
|
cleanmenu(item->submenu);
|
2020-05-28 02:43:10 +02:00
|
|
|
tmp = item;
|
2020-07-29 16:37:38 +02:00
|
|
|
if (menu->drawn) {
|
|
|
|
XFreePixmap(dpy, item->unsel);
|
|
|
|
if (tmp->label != NULL)
|
|
|
|
XFreePixmap(dpy, item->sel);
|
|
|
|
}
|
2020-05-30 03:52:55 +02:00
|
|
|
if (tmp->label != tmp->output)
|
|
|
|
free(tmp->label);
|
2020-05-30 03:37:55 +02:00
|
|
|
free(tmp->output);
|
2020-06-01 01:29:46 +02:00
|
|
|
item = item->next;
|
2020-05-28 02:43:10 +02:00
|
|
|
free(tmp);
|
|
|
|
}
|
2020-05-16 05:43:59 +02:00
|
|
|
|
|
|
|
XDestroyWindow(dpy, menu->win);
|
2020-05-28 02:43:10 +02:00
|
|
|
free(menu);
|
2020-05-16 05:43:59 +02:00
|
|
|
}
|
|
|
|
|
2020-12-29 22:56:50 +01:00
|
|
|
/* cleanup draw context */
|
2020-05-16 00:02:23 +02:00
|
|
|
static void
|
2020-12-29 22:56:50 +01:00
|
|
|
cleandc(void)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-07-31 15:09:26 +02:00
|
|
|
size_t i;
|
|
|
|
|
2020-05-19 03:27:56 +02:00
|
|
|
XftColorFree(dpy, visual, colormap, &dc.normal[ColorBG]);
|
|
|
|
XftColorFree(dpy, visual, colormap, &dc.normal[ColorFG]);
|
|
|
|
XftColorFree(dpy, visual, colormap, &dc.selected[ColorBG]);
|
|
|
|
XftColorFree(dpy, visual, colormap, &dc.selected[ColorFG]);
|
2020-05-26 23:43:45 +02:00
|
|
|
XftColorFree(dpy, visual, colormap, &dc.separator);
|
|
|
|
XftColorFree(dpy, visual, colormap, &dc.border);
|
2020-07-31 15:09:26 +02:00
|
|
|
for (i = 0; i < dc.nfonts; i++)
|
|
|
|
XftFontClose(dpy, dc.fonts[i]);
|
2020-05-16 05:43:59 +02:00
|
|
|
XFreeGC(dpy, dc.gc);
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
|
|
|
|
2020-09-28 00:01:13 +02:00
|
|
|
/* xmenu: generate menu from stdin and print selected entry to stdout */
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-09-28 00:01:13 +02:00
|
|
|
struct Menu *rootmenu;
|
|
|
|
XClassHint classh;
|
|
|
|
|
|
|
|
/* open connection to server and set X variables */
|
2020-12-29 23:22:50 +01:00
|
|
|
if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
|
|
|
|
warnx("warning: no locale support");
|
2020-09-28 00:01:13 +02:00
|
|
|
if ((dpy = XOpenDisplay(NULL)) == NULL)
|
|
|
|
errx(1, "could not open display");
|
|
|
|
screen = DefaultScreen(dpy);
|
|
|
|
visual = DefaultVisual(dpy, screen);
|
|
|
|
rootwin = RootWindow(dpy, screen);
|
|
|
|
colormap = DefaultColormap(dpy, screen);
|
2020-12-29 22:56:50 +01:00
|
|
|
XrmInitialize();
|
|
|
|
if ((xrm = XResourceManagerString(dpy)) != NULL)
|
|
|
|
xdb = XrmGetStringDatabase(xrm);
|
2020-12-29 23:22:50 +01:00
|
|
|
if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL)
|
|
|
|
errx(1, "XOpenIM: could not open input device");
|
2020-12-29 22:56:50 +01:00
|
|
|
|
2021-01-08 23:01:46 +01:00
|
|
|
/* process configuration and window class */
|
2020-12-29 22:56:50 +01:00
|
|
|
getresources();
|
|
|
|
classh.res_class = PROGNAME;
|
|
|
|
classh.res_name = getoptions(argc, argv);
|
2020-09-28 00:01:13 +02:00
|
|
|
|
|
|
|
/* imlib2 stuff */
|
|
|
|
if (!iflag) {
|
|
|
|
imlib_set_cache_size(2048 * 1024);
|
|
|
|
imlib_context_set_dither(1);
|
|
|
|
imlib_context_set_display(dpy);
|
|
|
|
imlib_context_set_visual(visual);
|
|
|
|
imlib_context_set_colormap(colormap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initializers */
|
|
|
|
initmonitor();
|
|
|
|
initdc();
|
|
|
|
initiconsize();
|
|
|
|
initatoms();
|
|
|
|
|
|
|
|
/* generate menus and set them up */
|
|
|
|
rootmenu = parsestdin();
|
|
|
|
if (rootmenu == NULL)
|
|
|
|
errx(1, "no menu generated");
|
|
|
|
setupmenu(rootmenu, &classh);
|
|
|
|
|
|
|
|
/* grab mouse and keyboard */
|
|
|
|
if (!wflag) {
|
|
|
|
grabpointer();
|
|
|
|
grabkeyboard();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* run event loop */
|
|
|
|
run(rootmenu);
|
|
|
|
|
2020-12-29 22:56:50 +01:00
|
|
|
/* clean stuff */
|
|
|
|
ungrab();
|
2020-09-28 00:01:13 +02:00
|
|
|
cleanmenu(rootmenu);
|
2020-12-29 22:56:50 +01:00
|
|
|
cleandc();
|
|
|
|
XrmDestroyDatabase(xdb);
|
|
|
|
XCloseDisplay(dpy);
|
2020-09-28 00:01:13 +02:00
|
|
|
|
|
|
|
return 0;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|