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-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-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-06-29 17:20:37 +02:00
|
|
|
/*
|
|
|
|
* Function declarations
|
|
|
|
*/
|
|
|
|
|
2020-07-23 22:37:28 +02:00
|
|
|
/* argument parser */
|
|
|
|
static void parseposition(const char *optarg);
|
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* initializers, and their helper routines */
|
|
|
|
static void ealloccolor(const char *s, XftColor *color);
|
|
|
|
static void initresources(void);
|
|
|
|
static void initdc(void);
|
2020-07-16 03:57:59 +02:00
|
|
|
static void initconfig(void);
|
2020-06-29 17:20:37 +02:00
|
|
|
static void initatoms(void);
|
|
|
|
|
|
|
|
/* structure builders, and their helper routines */
|
2020-06-01 01:29:46 +02:00
|
|
|
static struct Item *allocitem(const char *label, const char *output, char *file);
|
2020-05-16 00:02:23 +02:00
|
|
|
static struct Menu *allocmenu(struct Menu *parent, struct Item *list, unsigned level);
|
2020-06-01 01:29:46 +02:00
|
|
|
static struct Menu *buildmenutree(unsigned level, const char *label, const char *output, char *file);
|
2020-05-27 18:40:11 +02:00
|
|
|
static struct Menu *parsestdin(void);
|
2020-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/* image loader */
|
2020-07-16 03:57:59 +02:00
|
|
|
static Imlib_Image loadicon(const char *file);
|
2020-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/* structure setters, and their helper routines */
|
2020-07-16 03:57:59 +02:00
|
|
|
static void setupitems(struct Menu *menu);
|
2020-06-29 17:20:37 +02:00
|
|
|
static void setupmenupos(struct Menu *menu);
|
|
|
|
static void setupmenu(struct Menu *menu, XClassHint *classh);
|
|
|
|
|
|
|
|
/* grabbers */
|
2020-05-19 14:17:06 +02:00
|
|
|
static void grabpointer(void);
|
|
|
|
static void grabkeyboard(void);
|
2020-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/* window drawers and mappers */
|
2020-05-27 18:40:11 +02:00
|
|
|
static void mapmenu(struct Menu *currmenu);
|
|
|
|
static void drawseparator(struct Menu *menu, struct Item *item);
|
|
|
|
static void drawitem(struct Menu *menu, struct Item *item, XftColor *color);
|
|
|
|
static void drawmenu(struct Menu *currmenu);
|
2020-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/* main event loop, and its helper routines */
|
|
|
|
static struct Menu *getmenu(struct Menu *currmenu, Window win);
|
|
|
|
static struct Item *getitem(struct Menu *menu, int y);
|
2020-05-27 18:40:11 +02:00
|
|
|
static struct Item *itemcycle(struct Menu *currmenu, int direction);
|
|
|
|
static void run(struct Menu *currmenu);
|
2020-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/* cleaners */
|
|
|
|
static void cleanmenu(struct Menu *menu);
|
2020-05-30 03:52:55 +02:00
|
|
|
static void cleanup(void);
|
2020-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/* show usage */
|
2020-05-16 00:02:23 +02:00
|
|
|
static void usage(void);
|
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Variable declarations
|
|
|
|
*/
|
|
|
|
|
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-05-16 00:02:23 +02:00
|
|
|
static struct DC dc;
|
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-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-07-23 22:37:28 +02:00
|
|
|
static int pflag = 0; /* whether the user specified a position */
|
|
|
|
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-06-29 17:20:37 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Function implementations
|
|
|
|
*/
|
|
|
|
|
2020-05-30 10:45:28 +02:00
|
|
|
/* xmenu: generate menu from stdin and print selected entry to stdout */
|
2020-05-16 00:02:23 +02:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
2020-05-27 18:40:11 +02:00
|
|
|
struct Menu *rootmenu;
|
2020-06-01 03:26:33 +02:00
|
|
|
XClassHint classh;
|
2020-05-16 00:02:23 +02:00
|
|
|
int ch;
|
|
|
|
|
2020-07-23 22:37:28 +02:00
|
|
|
while ((ch = getopt(argc, argv, "ip:w")) != -1) {
|
2020-05-16 00:02:23 +02:00
|
|
|
switch (ch) {
|
2020-07-16 03:57:59 +02:00
|
|
|
case 'i':
|
|
|
|
iflag = 1;
|
|
|
|
break;
|
2020-07-23 22:37:28 +02:00
|
|
|
case 'p':
|
|
|
|
pflag = 1;
|
|
|
|
parseposition(optarg);
|
|
|
|
break;
|
2020-06-01 03:26:33 +02:00
|
|
|
case 'w':
|
|
|
|
wflag = 1;
|
|
|
|
break;
|
2020-05-16 00:02:23 +02:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
if (argc > 1)
|
2020-05-27 19:34:55 +02:00
|
|
|
usage();
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
/* open connection to server and set X variables */
|
|
|
|
if ((dpy = XOpenDisplay(NULL)) == NULL)
|
|
|
|
errx(1, "cannot open display");
|
|
|
|
screen = DefaultScreen(dpy);
|
2020-05-19 03:27:56 +02:00
|
|
|
visual = DefaultVisual(dpy, screen);
|
2020-05-16 00:02:23 +02:00
|
|
|
rootwin = RootWindow(dpy, screen);
|
|
|
|
colormap = DefaultColormap(dpy, screen);
|
2020-05-24 01:41:09 +02:00
|
|
|
|
2020-06-01 01:29:46 +02:00
|
|
|
/* imlib2 stuff */
|
2020-07-16 03:57:59 +02:00
|
|
|
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);
|
|
|
|
}
|
2020-06-01 01:29:46 +02:00
|
|
|
|
2020-06-29 17:20:37 +02:00
|
|
|
/* initializers */
|
|
|
|
initresources();
|
|
|
|
initdc();
|
2020-07-16 03:57:59 +02:00
|
|
|
initconfig();
|
2020-06-29 17:20:37 +02:00
|
|
|
initatoms();
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
/* set window class */
|
|
|
|
classh.res_class = PROGNAME;
|
|
|
|
if (argc == 1)
|
|
|
|
classh.res_name = *argv;
|
|
|
|
else
|
|
|
|
classh.res_name = PROGNAME;
|
|
|
|
|
2020-05-30 23:56:59 +02:00
|
|
|
/* generate menus and set them up */
|
2020-05-27 18:40:11 +02:00
|
|
|
rootmenu = parsestdin();
|
2020-05-16 00:02:23 +02:00
|
|
|
if (rootmenu == NULL)
|
|
|
|
errx(1, "no menu generated");
|
2020-06-29 17:20:37 +02:00
|
|
|
setupmenu(rootmenu, &classh);
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-05-19 04:05:14 +02:00
|
|
|
/* grab mouse and keyboard */
|
2020-06-01 03:26:33 +02:00
|
|
|
if (!wflag) {
|
|
|
|
grabpointer();
|
|
|
|
grabkeyboard();
|
|
|
|
}
|
2020-05-19 04:05:14 +02:00
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
/* run event loop */
|
2020-05-27 18:40:11 +02:00
|
|
|
run(rootmenu);
|
2020-05-16 00:02:23 +02:00
|
|
|
|
2020-05-30 03:52:55 +02:00
|
|
|
/* freeing stuff */
|
2020-06-29 17:20:37 +02:00
|
|
|
cleanmenu(rootmenu);
|
2020-05-30 03:52:55 +02:00
|
|
|
cleanup();
|
|
|
|
|
2020-05-24 01:41:09 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-07-23 22:37:28 +02:00
|
|
|
/* parse position string from -p, put results on config.x and config.y */
|
|
|
|
static void
|
|
|
|
parseposition(const char *optarg)
|
|
|
|
{
|
|
|
|
long n;
|
|
|
|
const char *s = optarg;
|
|
|
|
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);
|
|
|
|
if (errno == ERANGE || n > INT_MAX || n < 0 || endp == s || *endp != '\0')
|
|
|
|
goto error;
|
|
|
|
config.posy = n;
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
error:
|
|
|
|
errx(1, "improper position: %s", optarg);
|
|
|
|
}
|
|
|
|
|
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))
|
|
|
|
errx(1, "cannot allocate color: %s", s);
|
|
|
|
}
|
|
|
|
|
2020-05-17 06:22:21 +02:00
|
|
|
/* read xrdb for configuration options */
|
|
|
|
static void
|
2020-06-29 17:20:37 +02:00
|
|
|
initresources(void)
|
2020-05-17 06:22:21 +02:00
|
|
|
{
|
|
|
|
char *xrm;
|
|
|
|
long n;
|
2020-05-26 23:43:45 +02:00
|
|
|
char *type;
|
|
|
|
XrmDatabase xdb;
|
|
|
|
XrmValue xval;
|
2020-05-17 06:22:21 +02:00
|
|
|
|
|
|
|
XrmInitialize();
|
2020-05-26 23:43:45 +02:00
|
|
|
if ((xrm = XResourceManagerString(dpy)) == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
xdb = XrmGetStringDatabase(xrm);
|
|
|
|
|
|
|
|
if (XrmGetResource(xdb, "xmenu.borderWidth", "*", &type, &xval) == True)
|
|
|
|
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.border_pixels = n;
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.separatorWidth", "*", &type, &xval) == True)
|
|
|
|
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.separator_pixels = n;
|
2020-06-12 16:37:13 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.height", "*", &type, &xval) == True)
|
2020-05-26 23:43:45 +02:00
|
|
|
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.height_pixels = n;
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.width", "*", &type, &xval) == True)
|
|
|
|
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.width_pixels = n;
|
2020-06-29 17:32:02 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.gap", "*", &type, &xval) == True)
|
|
|
|
if ((n = strtol(xval.addr, NULL, 10)) > 0)
|
|
|
|
config.gap_pixels = n;
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.background", "*", &type, &xval) == True)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.background_color = strdup(xval.addr);
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.foreground", "*", &type, &xval) == True)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.foreground_color = strdup(xval.addr);
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.selbackground", "*", &type, &xval) == True)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.selbackground_color = strdup(xval.addr);
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.selforeground", "*", &type, &xval) == True)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.selforeground_color = strdup(xval.addr);
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.separator", "*", &type, &xval) == True)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.separator_color = strdup(xval.addr);
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.border", "*", &type, &xval) == True)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.border_color = strdup(xval.addr);
|
2020-05-26 23:43:45 +02:00
|
|
|
if (XrmGetResource(xdb, "xmenu.font", "*", &type, &xval) == True)
|
2020-06-29 17:20:37 +02:00
|
|
|
config.font = strdup(xval.addr);
|
2020-05-26 23:43:45 +02:00
|
|
|
|
|
|
|
XrmDestroyDatabase(xdb);
|
2020-05-17 06:22:21 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
/* try to get font */
|
2020-06-29 17:20:37 +02:00
|
|
|
if ((dc.font = XftFontOpenName(dpy, screen, config.font)) == NULL)
|
2020-05-16 00:02:23 +02:00
|
|
|
errx(1, "cannot load font");
|
|
|
|
|
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-16 03:57:59 +02:00
|
|
|
/* calculate configuration values that are not set manually */
|
2020-05-16 00:02:23 +02:00
|
|
|
static void
|
2020-07-16 03:57:59 +02:00
|
|
|
initconfig(void)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-06-29 17:20:37 +02:00
|
|
|
Window dw; /* dummy variable */
|
|
|
|
int di; /* dummy variable */
|
|
|
|
unsigned du; /* dummy variable */
|
|
|
|
|
2020-07-23 22:37:28 +02:00
|
|
|
if (!pflag) /* if the user haven't specified a position, use cursor position*/
|
|
|
|
XQueryPointer(dpy, rootwin, &dw, &dw, &config.posx, &config.posy, &di, &di, &du);
|
2020-06-29 17:20:37 +02:00
|
|
|
config.screenw = DisplayWidth(dpy, screen);
|
|
|
|
config.screenh = DisplayHeight(dpy, screen);
|
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 06:24:43 +02:00
|
|
|
if (item->label == NULL)
|
|
|
|
item->labellen = 0;
|
|
|
|
else
|
|
|
|
item->labellen = strlen(item->label);
|
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-05-30 23:56:59 +02:00
|
|
|
menu->w = 0; /* calculated by setupmenu() */
|
|
|
|
menu->h = 0; /* calculated by setupmenu() */
|
|
|
|
menu->x = 0; /* calculated by setupmenu() */
|
|
|
|
menu->y = 0; /* calculated by setupmenu() */
|
2020-05-16 00:02:23 +02:00
|
|
|
menu->level = level;
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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)
|
|
|
|
errx(1, "reached NULL menu");
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-06-01 03:26:33 +02:00
|
|
|
/* load and scale icon */
|
2020-06-01 01:29:46 +02:00
|
|
|
static Imlib_Image
|
2020-07-16 03:57:59 +02:00
|
|
|
loadicon(const char *file)
|
2020-06-01 01:29:46 +02:00
|
|
|
{
|
2020-06-01 03:26:33 +02:00
|
|
|
Imlib_Image icon;
|
2020-06-01 01:29:46 +02:00
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int imgsize;
|
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
icon = imlib_load_image(file);
|
|
|
|
if (icon == NULL)
|
|
|
|
errx(1, "cannot load icon %s", file);
|
2020-06-01 01:29:46 +02:00
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
imlib_context_set_image(icon);
|
2020-06-01 01:29:46 +02:00
|
|
|
|
|
|
|
width = imlib_image_get_width();
|
|
|
|
height = imlib_image_get_height();
|
|
|
|
imgsize = MIN(width, height);
|
|
|
|
|
2020-07-16 03:57:59 +02:00
|
|
|
icon = imlib_create_cropped_scaled_image(0, 0, imgsize, imgsize,
|
|
|
|
config.iconsize,
|
|
|
|
config.iconsize);
|
2020-06-01 01:29:46 +02:00
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
return icon;
|
2020-06-01 01:29:46 +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-19 03:27:56 +02:00
|
|
|
XGlyphInfo ext;
|
2020-05-16 03:25:05 +02:00
|
|
|
struct Item *item;
|
2020-07-16 03:57:59 +02: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-05-16 03:25:05 +02:00
|
|
|
for (item = menu->list; item != NULL; item = item->next) {
|
|
|
|
item->y = menu->h;
|
2020-05-30 10:45:28 +02:00
|
|
|
|
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-05-16 06:24:43 +02:00
|
|
|
|
2020-05-30 23:56:59 +02:00
|
|
|
/* get length of item->label rendered in the font */
|
2020-05-19 03:27:56 +02:00
|
|
|
XftTextExtentsUtf8(dpy, dc.font, (XftChar8 *)item->label,
|
|
|
|
item->labellen, &ext);
|
2020-06-12 16:37:13 +02:00
|
|
|
|
2020-07-16 03:57:59 +02:00
|
|
|
/*
|
|
|
|
* set menu width
|
|
|
|
*
|
|
|
|
* the item width depends on the size of its label (ext.xOff),
|
|
|
|
* 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
|
|
|
|
* item: before and after its icon, and before and after its triangle
|
|
|
|
* if the iflag is set (icons are disabled) then the horizontal
|
|
|
|
* padding appears before the label and around the triangle.
|
|
|
|
*/
|
|
|
|
itemwidth = ext.xOff + config.triangle_width + config.horzpadding * 3;
|
|
|
|
itemwidth += (iflag) ? 0 : config.iconsize + config.horzpadding;
|
|
|
|
menu->w = MAX(menu->w, itemwidth);
|
2020-06-01 01:29:46 +02:00
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
/* create icon */
|
2020-07-28 19:51:12 +02:00
|
|
|
if (item->file != NULL && !iflag) {
|
2020-07-16 03:57:59 +02:00
|
|
|
item->icon = loadicon(item->file);
|
2020-07-28 19:51:12 +02:00
|
|
|
|
|
|
|
item->sel = XCreatePixmap(dpy, menu->win,
|
|
|
|
config.iconsize, config.iconsize,
|
|
|
|
DefaultDepth(dpy, screen));
|
|
|
|
XSetForeground(dpy, dc.gc, dc.selected[ColorBG].pixel);
|
|
|
|
XFillRectangle(dpy, item->sel, dc.gc, 0, 0,
|
|
|
|
config.iconsize, config.iconsize);
|
|
|
|
imlib_context_set_drawable(item->sel);
|
|
|
|
imlib_context_set_image(item->icon);
|
|
|
|
imlib_render_image_on_drawable(0, 0);
|
|
|
|
|
|
|
|
item->unsel = XCreatePixmap(dpy, menu->win,
|
|
|
|
config.iconsize, config.iconsize,
|
|
|
|
DefaultDepth(dpy, screen));
|
|
|
|
XSetForeground(dpy, dc.gc, dc.normal[ColorBG].pixel);
|
|
|
|
XFillRectangle(dpy, item->unsel, dc.gc, 0, 0,
|
|
|
|
config.iconsize, config.iconsize);
|
|
|
|
imlib_context_set_drawable(item->unsel);
|
|
|
|
imlib_context_set_image(item->icon);
|
|
|
|
imlib_render_image_on_drawable(0, 0);
|
|
|
|
}
|
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-07-23 22:37:28 +02:00
|
|
|
if (pflag || config.screenw - config.posx >= menu->w)
|
|
|
|
menu->x = config.posx;
|
|
|
|
else if (config.posx > width)
|
|
|
|
menu->x = config.posx - width;
|
2020-06-29 17:20:37 +02:00
|
|
|
|
2020-07-23 22:37:28 +02:00
|
|
|
if (pflag || config.screenh - config.posy >= height)
|
|
|
|
menu->y = config.posy;
|
2020-06-29 17:20:37 +02:00
|
|
|
else if (config.screenh > height)
|
|
|
|
menu->y = config.screenh - height;
|
2020-05-16 00:02:23 +02:00
|
|
|
} else { /* else, calculate in respect to parent menu */
|
2020-06-29 17:20:37 +02:00
|
|
|
if (config.screenw - (menu->parent->x + menu->parent->w + config.border_pixels + config.gap_pixels) >= width)
|
|
|
|
menu->x = menu->parent->x + menu->parent->w + config.border_pixels + config.gap_pixels;
|
|
|
|
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-06-29 17:20:37 +02:00
|
|
|
if (config.screenh - (menu->caller->y + menu->parent->y) > height)
|
2020-05-19 18:41:11 +02:00
|
|
|
menu->y = menu->caller->y + menu->parent->y;
|
2020-06-29 17:20:37 +02:00
|
|
|
else if (config.screenh - menu->parent->y > height)
|
2020-05-16 00:02:23 +02:00
|
|
|
menu->y = menu->parent->y;
|
2020-06-29 17:20:37 +02:00
|
|
|
else if (config.screenh > height)
|
|
|
|
menu->y = config.screenh - 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-05-16 04:08:05 +02:00
|
|
|
sizeh.flags = PMaxSize | PMinSize;
|
|
|
|
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-05-19 03:27:56 +02:00
|
|
|
/* create pixmap and XftDraw */
|
2020-05-16 05:43:59 +02:00
|
|
|
menu->pixmap = XCreatePixmap(dpy, menu->win, menu->w, menu->h,
|
|
|
|
DefaultDepth(dpy, screen));
|
2020-05-19 03:27:56 +02:00
|
|
|
menu->draw = XftDrawCreate(dpy, menu->pixmap, visual, colormap);
|
2020-05-16 05:43:59 +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);
|
|
|
|
}
|
|
|
|
errx(1, "cannot grab keyboard");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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);
|
|
|
|
}
|
|
|
|
errx(1, "cannot grab keyboard");
|
|
|
|
}
|
|
|
|
|
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-05-26 23:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw separator item */
|
|
|
|
static void
|
|
|
|
drawseparator(struct Menu *menu, struct Item *item)
|
|
|
|
{
|
2020-05-30 03:37:55 +02:00
|
|
|
int y;
|
2020-05-26 23:43:45 +02:00
|
|
|
|
2020-05-30 03:37:55 +02:00
|
|
|
y = item->y + item->h/2;
|
2020-05-26 23:43:45 +02:00
|
|
|
|
|
|
|
XSetForeground(dpy, dc.gc, dc.separator.pixel);
|
2020-07-16 03:57:59 +02:00
|
|
|
XDrawLine(dpy, menu->pixmap, dc.gc, config.horzpadding, y,
|
|
|
|
menu->w - config.horzpadding, y);
|
2020-05-26 23:43:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw regular item */
|
|
|
|
static void
|
|
|
|
drawitem(struct Menu *menu, struct Item *item, XftColor *color)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
|
2020-07-16 03:57:59 +02:00
|
|
|
x = config.horzpadding;
|
|
|
|
x += (iflag) ? 0 : config.horzpadding + config.iconsize;
|
2020-06-12 16:37:13 +02:00
|
|
|
y = item->y + (item->h + dc.font->ascent) / 2;
|
2020-05-26 23:43:45 +02:00
|
|
|
XSetForeground(dpy, dc.gc, color[ColorFG].pixel);
|
|
|
|
XftDrawStringUtf8(menu->draw, &color[ColorFG], dc.font,
|
2020-07-28 19:51:12 +02:00
|
|
|
x, y, (XftChar8 *)item->label, item->labellen);
|
2020-05-26 23:43:45 +02:00
|
|
|
|
|
|
|
/* draw triangle, if item contains a submenu */
|
|
|
|
if (item->submenu != NULL) {
|
2020-07-16 03:57:59 +02:00
|
|
|
x = menu->w - config.triangle_width - config.horzpadding;
|
2020-06-29 17:20:37 +02:00
|
|
|
y = item->y + (item->h - config.triangle_height + 1) / 2;
|
2020-05-26 23:43:45 +02:00
|
|
|
|
|
|
|
XPoint triangle[] = {
|
|
|
|
{x, y},
|
2020-06-29 17:20:37 +02:00
|
|
|
{x + config.triangle_width, y + config.triangle_height/2},
|
|
|
|
{x, y + config.triangle_height},
|
2020-05-26 23:43:45 +02:00
|
|
|
{x, y}
|
|
|
|
};
|
|
|
|
|
|
|
|
XFillPolygon(dpy, menu->pixmap, dc.gc, triangle, LEN(triangle),
|
|
|
|
Convex, CoordModeOrigin);
|
2020-05-16 07:14:29 +02:00
|
|
|
}
|
2020-06-01 01:29:46 +02:00
|
|
|
|
2020-06-01 03:26:33 +02:00
|
|
|
/* draw icon */
|
2020-07-16 03:57:59 +02:00
|
|
|
if (item->icon != NULL) {
|
|
|
|
x = config.horzpadding;
|
2020-06-29 17:20:37 +02:00
|
|
|
y = item->y + config.iconpadding;
|
2020-07-28 19:51:12 +02:00
|
|
|
if (color == dc.selected)
|
|
|
|
XCopyArea(dpy, item->sel, menu->pixmap, dc.gc, 0, 0,
|
|
|
|
menu->w, menu->h, x, y);
|
|
|
|
else
|
|
|
|
XCopyArea(dpy, item->unsel, menu->pixmap, dc.gc, 0, 0,
|
|
|
|
menu->w, menu->h, x, y);
|
2020-06-01 01:29:46 +02:00
|
|
|
}
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* draw items of the current menu and of its ancestors */
|
|
|
|
static void
|
2020-05-27 18:40:11 +02:00
|
|
|
drawmenu(struct Menu *currmenu)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
|
|
|
struct Menu *menu;
|
|
|
|
struct Item *item;
|
|
|
|
|
|
|
|
for (menu = currmenu; menu != NULL; menu = menu->parent) {
|
|
|
|
for (item = menu->list; item != NULL; item = item->next) {
|
2020-05-19 03:27:56 +02:00
|
|
|
XftColor *color;
|
2020-05-16 00:02:23 +02:00
|
|
|
|
|
|
|
/* determine item color */
|
2020-05-26 23:43:45 +02:00
|
|
|
if (item == menu->selected && item->label != NULL)
|
2020-05-17 06:22:21 +02:00
|
|
|
color = dc.selected;
|
2020-05-16 00:02:23 +02:00
|
|
|
else
|
2020-05-17 06:22:21 +02:00
|
|
|
color = dc.normal;
|
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
/* draw item box */
|
2020-05-19 03:27:56 +02:00
|
|
|
XSetForeground(dpy, dc.gc, color[ColorBG].pixel);
|
2020-05-16 05:43:59 +02:00
|
|
|
XFillRectangle(dpy, menu->pixmap, dc.gc, 0, item->y,
|
2020-05-16 06:24:43 +02:00
|
|
|
menu->w, item->h);
|
2020-05-16 03:51:26 +02:00
|
|
|
|
2020-05-26 23:43:45 +02:00
|
|
|
if (item->label == NULL) /* item is a separator */
|
|
|
|
drawseparator(menu, item);
|
|
|
|
else /* item is a regular item */
|
|
|
|
drawitem(menu, item, color);
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
2020-05-26 23:43:45 +02:00
|
|
|
|
|
|
|
XCopyArea(dpy, menu->pixmap, menu->win, dc.gc, 0, 0,
|
|
|
|
menu->w, menu->h, 0, 0);
|
2020-05-16 00:02:23 +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
|
|
|
{
|
|
|
|
struct Item *item;
|
|
|
|
struct Item *lastitem;
|
|
|
|
|
|
|
|
item = NULL;
|
|
|
|
|
|
|
|
if (direction == ITEMNEXT) {
|
|
|
|
if (currmenu->selected == NULL)
|
|
|
|
item = currmenu->list;
|
|
|
|
else if (currmenu->selected->next != NULL)
|
|
|
|
item = currmenu->selected->next;
|
|
|
|
|
|
|
|
while (item != NULL && item->label == NULL)
|
|
|
|
item = item->next;
|
|
|
|
|
|
|
|
if (item == NULL)
|
|
|
|
item = currmenu->list;
|
|
|
|
} else {
|
|
|
|
for (lastitem = currmenu->list;
|
|
|
|
lastitem != NULL && lastitem->next != NULL;
|
|
|
|
lastitem = lastitem->next)
|
|
|
|
;
|
|
|
|
|
|
|
|
if (currmenu->selected == NULL)
|
|
|
|
item = lastitem;
|
|
|
|
else if (currmenu->selected->prev != NULL)
|
|
|
|
item = currmenu->selected->prev;
|
|
|
|
|
|
|
|
while (item != NULL && item->label == NULL)
|
|
|
|
item = item->prev;
|
|
|
|
|
|
|
|
if (item == NULL)
|
|
|
|
item = lastitem;
|
|
|
|
}
|
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
struct Menu *menu;
|
|
|
|
struct Item *item;
|
|
|
|
struct Item *previtem = NULL;
|
2020-05-17 22:01:46 +02:00
|
|
|
KeySym ksym;
|
2020-05-16 00:02:23 +02:00
|
|
|
XEvent ev;
|
|
|
|
|
2020-05-27 18:40:11 +02:00
|
|
|
mapmenu(currmenu);
|
2020-05-26 23:43:45 +02:00
|
|
|
|
2020-05-16 00:02:23 +02:00
|
|
|
while (!XNextEvent(dpy, &ev)) {
|
|
|
|
switch(ev.type) {
|
|
|
|
case Expose:
|
2020-05-17 22:01:46 +02:00
|
|
|
if (ev.xexpose.count == 0)
|
2020-05-27 18:40:11 +02:00
|
|
|
drawmenu(currmenu);
|
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;
|
|
|
|
menu->selected = item;
|
|
|
|
if (item->submenu != NULL) {
|
|
|
|
currmenu = item->submenu;
|
|
|
|
currmenu->selected = NULL;
|
|
|
|
} else {
|
|
|
|
currmenu = menu;
|
2020-05-16 00:02:23 +02:00
|
|
|
}
|
2020-05-27 19:34:55 +02:00
|
|
|
mapmenu(currmenu);
|
|
|
|
drawmenu(currmenu);
|
2020-05-16 00:02:23 +02:00
|
|
|
break;
|
|
|
|
case ButtonRelease:
|
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-05-26 23:43:45 +02:00
|
|
|
selectitem:
|
|
|
|
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-05-27 18:40:11 +02:00
|
|
|
mapmenu(currmenu);
|
2020-05-26 23:43:45 +02:00
|
|
|
currmenu->selected = currmenu->list;
|
2020-05-27 18:40:11 +02:00
|
|
|
drawmenu(currmenu);
|
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:
|
|
|
|
ksym = XkbKeycodeToKeysym(dpy, ev.xkey.keycode, 0, 0);
|
|
|
|
|
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;
|
|
|
|
if (ksym == XK_ISO_Left_Tab || ksym == XK_Up) {
|
2020-05-27 18:40:11 +02:00
|
|
|
item = itemcycle(currmenu, ITEMPREV);
|
2020-05-17 22:01:46 +02:00
|
|
|
} else if (ksym == XK_Tab || ksym == XK_Down) {
|
2020-05-27 18:40:11 +02:00
|
|
|
item = itemcycle(currmenu, ITEMNEXT);
|
2020-05-17 22:01:46 +02:00
|
|
|
} else if ((ksym == XK_Return || ksym == XK_Right) &&
|
|
|
|
currmenu->selected != NULL) {
|
|
|
|
item = currmenu->selected;
|
|
|
|
goto selectitem;
|
|
|
|
} else if ((ksym == XK_Escape || ksym == XK_Left) &&
|
|
|
|
currmenu->parent != NULL) {
|
|
|
|
item = currmenu->parent->selected;
|
2020-05-27 18:40:11 +02:00
|
|
|
currmenu = currmenu->parent;
|
|
|
|
mapmenu(currmenu);
|
2020-05-17 22:01:46 +02:00
|
|
|
} else
|
|
|
|
break;
|
|
|
|
currmenu->selected = item;
|
2020-05-27 18:40:11 +02:00
|
|
|
drawmenu(currmenu);
|
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-05-16 05:43:59 +02:00
|
|
|
currmenu->selected = NULL;
|
2020-05-27 18:40:11 +02:00
|
|
|
drawmenu(currmenu);
|
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;
|
|
|
|
mapmenu(currmenu);
|
|
|
|
break;
|
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-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
|
|
|
if (tmp->file != NULL) {
|
|
|
|
free(tmp->file);
|
2020-06-01 03:26:33 +02:00
|
|
|
if (tmp->icon != NULL) {
|
|
|
|
imlib_context_set_image(tmp->icon);
|
2020-06-01 01:29:46 +02:00
|
|
|
imlib_free_image();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
item = item->next;
|
2020-05-28 02:43:10 +02:00
|
|
|
free(tmp);
|
|
|
|
}
|
2020-05-16 05:43:59 +02:00
|
|
|
|
|
|
|
XFreePixmap(dpy, menu->pixmap);
|
2020-05-19 03:27:56 +02:00
|
|
|
XftDrawDestroy(menu->draw);
|
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-06-29 17:20:37 +02:00
|
|
|
/* cleanup X and exit */
|
2020-05-16 00:02:23 +02:00
|
|
|
static void
|
2020-05-30 03:52:55 +02:00
|
|
|
cleanup(void)
|
2020-05-16 00:02:23 +02:00
|
|
|
{
|
2020-05-27 18:40:11 +02:00
|
|
|
XUngrabPointer(dpy, CurrentTime);
|
|
|
|
XUngrabKeyboard(dpy, CurrentTime);
|
|
|
|
|
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-05-19 03:27:56 +02:00
|
|
|
|
2020-05-16 05:43:59 +02:00
|
|
|
XFreeGC(dpy, dc.gc);
|
2020-05-16 00:02:23 +02:00
|
|
|
XCloseDisplay(dpy);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* show usage */
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2020-07-23 22:37:28 +02:00
|
|
|
(void)fprintf(stderr, "usage: xmenu [-iw] [-p position] [title]\n");
|
2020-05-16 00:02:23 +02:00
|
|
|
exit(1);
|
|
|
|
}
|