1
0
src/dmenubar/dmenu.c

325 lines
8.4 KiB
C
Raw Normal View History

2011-05-14 10:47:12 -06:00
/* See LICENSE file for copyright and license details. */
2006-08-04 01:35:27 -06:00
#include <ctype.h>
#include <locale.h>
2006-08-04 01:35:27 -06:00
#include <stdio.h>
2008-06-13 04:46:50 -06:00
#include <stdlib.h>
2006-08-04 01:35:27 -06:00
#include <string.h>
2011-05-15 14:54:26 -06:00
#include <strings.h>
#include <time.h>
#include <unistd.h>
2015-09-27 16:38:17 -06:00
2007-09-16 12:14:09 -06:00
#include <X11/Xlib.h>
2010-08-10 06:38:49 -06:00
#include <X11/Xatom.h>
2006-08-04 01:35:27 -06:00
#include <X11/Xutil.h>
#ifdef XINERAMA
#include <X11/extensions/Xinerama.h>
#endif
#include <X11/Xft/Xft.h>
#include "drw.h"
#include "util.h"
/* macros */
#define INTERSECT(x,y,w,h,r) (MAX(0, MIN((x)+(w),(r).x_org+(r).width) - MAX((x),(r).x_org)) \
* MAX(0, MIN((y)+(h),(r).y_org+(r).height) - MAX((y),(r).y_org)))
#define LENGTH(X) (sizeof X / sizeof X[0])
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
/* enums */
enum { SchemeNorm, SchemeSel, SchemeOut, SchemeLast }; /* color schemes */
2007-01-11 07:52:37 -07:00
struct item {
char *text;
struct item *left, *right;
2015-11-08 15:03:34 -07:00
int out;
2006-08-04 01:35:27 -06:00
};
2011-05-05 08:46:48 -06:00
static char text[BUFSIZ] = "";
2016-10-08 06:08:28 -06:00
static char *embed;
2010-08-18 10:33:34 -06:00
static int bh, mw, mh;
static int inputw = 0, promptw;
static int lrpad; /* sum of left and right padding */
static struct item *items = NULL;
static struct item *matches, *matchend;
static struct item *prev, *curr, *next, *sel;
static int mon = -1, screen;
static Atom clip, utf8;
static Display *dpy;
2016-10-08 06:08:28 -06:00
static Window root, parentwin, win;
2011-10-16 10:21:33 -06:00
static XIC xic;
static Drw *drw;
static Clr *scheme[SchemeLast];
#include "config.h"
2010-06-16 08:36:17 -06:00
static int (*fstrncmp)(const char *, const char *, size_t) = strncmp;
2011-07-14 13:03:08 -06:00
static char *(*fstrstr)(const char *, const char *) = strstr;
2007-09-17 12:53:14 -06:00
static void
appenditem(struct item *item, struct item **list, struct item **last)
{
if (*last)
(*last)->right = item;
2011-09-19 03:40:56 -06:00
else
*list = item;
2011-07-14 13:03:08 -06:00
item->left = *last;
item->right = NULL;
*last = item;
}
static void
calcoffsets(void)
{
2011-05-16 05:59:31 -06:00
int i, n;
2006-08-04 01:35:27 -06:00
2021-05-11 12:02:27 -06:00
n = mw - (promptw + inputw + TEXTW("<") + TEXTW(">"));
2011-10-26 06:20:14 -06:00
/* calculate which items will begin the next page and previous page */
for (i = 0, next = curr; next; next = next->right)
2021-05-11 12:02:27 -06:00
if ((i ? bh : MIN(TEXTW(next->text), n)) > n)
2010-08-10 07:14:37 -06:00
break;
for (i = 0, prev = curr; prev && prev->left; prev = prev->left)
2021-05-11 12:02:27 -06:00
if ((i ? bh : MIN(TEXTW(prev->left->text), n)) > n)
2010-08-10 07:14:37 -06:00
break;
2006-08-04 01:35:27 -06:00
}
static void
cleanup(void)
{
size_t i;
XUngrabKey(dpy, AnyKey, AnyModifier, root);
for (i = 0; i < SchemeLast; i++)
free(scheme[i]);
drw_free(drw);
XSync(dpy, False);
XCloseDisplay(dpy);
}
static int
drawitem(struct item *item, int x, int y, int w)
{
if (item == sel)
drw_setscheme(drw, scheme[SchemeSel]);
else if (item->out)
drw_setscheme(drw, scheme[SchemeOut]);
else
drw_setscheme(drw, scheme[SchemeNorm]);
return drw_text(drw, x, y, w, bh, lrpad / 2, item->text, 0);
}
static void
drawmenu(void)
{
int x = 0, y = 0, w;
2010-08-03 10:10:29 -06:00
2021-05-15 21:45:35 -06:00
drw_setscheme(drw, scheme[SchemeSel]);
drw_rect(drw, 0, 0, mw, mh, 1, 1);
2010-08-09 04:54:46 -06:00
2021-05-15 21:45:35 -06:00
if (prompt && *prompt)
x = drw_text(drw, x, 0, promptw, bh, lrpad / 2, prompt, 0);
2021-05-11 12:48:58 -06:00
drw_map(drw, win, 0, 0, mw, mh);
}
static void
readstdin(void)
{
char buf[sizeof text], *p;
size_t i, imax = 0, size = 0;
unsigned int tmpmax = 0;
2006-08-04 01:35:27 -06:00
2011-10-26 06:20:14 -06:00
/* read each line from stdin and add it to the item list */
for (i = 0; fgets(buf, sizeof buf, stdin); i++) {
if (i + 1 >= size / sizeof *items)
if (!(items = realloc(items, (size += BUFSIZ))))
die("cannot realloc %u bytes:", size);
if ((p = strchr(buf, '\n')))
*p = '\0';
if (!(items[i].text = strdup(buf)))
die("cannot strdup %u bytes:", strlen(buf) + 1);
2015-11-08 15:03:34 -07:00
items[i].out = 0;
drw_font_getexts(drw->fonts, buf, strlen(buf), &tmpmax, NULL);
if (tmpmax > inputw) {
inputw = tmpmax;
imax = i;
}
2006-08-04 01:35:27 -06:00
}
if (items)
2011-05-18 09:20:03 -06:00
items[i].text = NULL;
inputw = items ? TEXTW(items[imax].text) : 0;
2006-08-04 01:35:27 -06:00
}
static void
setup(void)
{
int x, y, i, j;
unsigned int du;
XSetWindowAttributes swa;
2011-10-16 10:21:33 -06:00
XIM xim;
Window w, dw, *dws;
XWindowAttributes wa;
XClassHint ch = {"dmenu", "dmenu"};
#ifdef XINERAMA
XineramaScreenInfo *info;
Window pw;
int a, di, n, area = 0;
#endif
/* init appearance */
for (j = 0; j < SchemeLast; j++)
scheme[j] = drw_scm_create(drw, colors[j], 2);
clip = XInternAtom(dpy, "CLIPBOARD", False);
utf8 = XInternAtom(dpy, "UTF8_STRING", False);
2011-05-15 07:13:31 -06:00
2011-10-26 06:20:14 -06:00
/* calculate menu geometry */
bh = drw->fonts->h + 2;
2021-05-11 12:02:27 -06:00
mh = bh;
#ifdef XINERAMA
i = 0;
2016-10-08 06:08:28 -06:00
if (parentwin == root && (info = XineramaQueryScreens(dpy, &n))) {
XGetInputFocus(dpy, &w, &di);
if (mon >= 0 && mon < n)
i = mon;
else if (w != root && w != PointerRoot && w != None) {
2011-10-26 06:20:14 -06:00
/* find top-level window containing current input focus */
do {
if (XQueryTree(dpy, (pw = w), &dw, &w, &dws, &du) && dws)
XFree(dws);
} while (w != root && w != pw);
2011-10-26 06:20:14 -06:00
/* find xinerama screen with which the window intersects most */
if (XGetWindowAttributes(dpy, pw, &wa))
for (j = 0; j < n; j++)
if ((a = INTERSECT(wa.x, wa.y, wa.width, wa.height, info[j])) > area) {
area = a;
i = j;
}
}
2011-10-26 06:20:14 -06:00
/* no focused window is on screen, so use pointer location instead */
if (mon < 0 && !area && XQueryPointer(dpy, root, &dw, &dw, &x, &y, &di, &di, &du))
for (i = 0; i < n; i++)
if (INTERSECT(x, y, 1, 1, info[i]))
break;
2011-10-26 06:20:14 -06:00
2011-05-12 06:17:41 -06:00
x = info[i].x_org;
y = info[i].y_org + (topbar ? 0 : info[i].height - mh);
mw = info[i].width;
XFree(info);
} else
#endif
{
2016-10-08 06:08:28 -06:00
if (!XGetWindowAttributes(dpy, parentwin, &wa))
die("could not get embedding window attributes: 0x%lx",
parentwin);
x = 0;
2016-10-08 06:08:28 -06:00
y = topbar ? 0 : wa.height - mh;
mw = wa.width;
}
promptw = (prompt && *prompt) ? TEXTW(prompt) - lrpad / 4 : 0;
2011-05-18 09:20:03 -06:00
inputw = MIN(inputw, mw/3);
2011-05-15 07:21:00 -06:00
2011-10-26 06:20:14 -06:00
/* create menu window */
swa.override_redirect = True;
swa.background_pixel = scheme[SchemeNorm][ColBg].pixel;
swa.event_mask = ExposureMask | KeyPressMask | VisibilityChangeMask;
2016-10-08 06:08:28 -06:00
win = XCreateWindow(dpy, parentwin, x, y, mw, mh, 0,
CopyFromParent, CopyFromParent, CopyFromParent,
2011-11-23 06:40:21 -07:00
CWOverrideRedirect | CWBackPixel | CWEventMask, &swa);
XSetClassHint(dpy, win, &ch);
/* input methods */
if ((xim = XOpenIM(dpy, NULL, NULL, NULL)) == NULL)
die("XOpenIM failed: could not open input device");
2011-10-16 10:21:33 -06:00
xic = XCreateIC(xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing,
2011-10-16 18:18:57 -06:00
XNClientWindow, win, XNFocusWindow, win, NULL);
2011-10-16 10:21:33 -06:00
XMapRaised(dpy, win);
2016-10-08 06:08:28 -06:00
if (embed) {
XSelectInput(dpy, parentwin, FocusChangeMask | SubstructureNotifyMask);
2016-10-08 06:08:28 -06:00
if (XQueryTree(dpy, parentwin, &dw, &w, &dws, &du) && dws) {
for (i = 0; i < du && dws[i] != win; ++i)
XSelectInput(dpy, dws[i], FocusChangeMask);
XFree(dws);
}
}
drw_resize(drw, mw, mh);
2011-05-15 07:13:31 -06:00
drawmenu();
}
2011-05-18 09:20:03 -06:00
static void
usage(void)
{
2021-05-11 12:02:27 -06:00
fputs("usage: dmenu [-bfiv] [-p prompt] [-fn font] [-m monitor]\n"
2016-10-08 06:08:28 -06:00
" [-nb color] [-nf color] [-sb color] [-sf color] [-w windowid]\n", stderr);
exit(1);
2011-05-18 09:20:03 -06:00
}
int
main(int argc, char *argv[])
{
2016-10-08 06:08:28 -06:00
XWindowAttributes wa;
2021-05-11 12:19:56 -06:00
int i;
for (i = 1; i < argc; i++)
/* these options take no arguments */
if (!strcmp(argv[i], "-v")) { /* prints version information */
puts("dmenu-"VERSION);
exit(0);
2015-09-27 16:38:17 -06:00
} else if (!strcmp(argv[i], "-b")) /* appears at the bottom of the screen */
2015-11-08 15:03:34 -07:00
topbar = 0;
2021-05-11 12:14:33 -06:00
else if (i + 1 == argc)
usage();
/* these options take one argument */
else if (!strcmp(argv[i], "-m"))
mon = atoi(argv[++i]);
else if (!strcmp(argv[i], "-p")) /* adds prompt to left of input field */
prompt = argv[++i];
else if (!strcmp(argv[i], "-fn")) /* font or font set */
fonts[0] = argv[++i];
else if (!strcmp(argv[i], "-nb")) /* normal background color */
colors[SchemeNorm][ColBg] = argv[++i];
else if (!strcmp(argv[i], "-nf")) /* normal foreground color */
colors[SchemeNorm][ColFg] = argv[++i];
else if (!strcmp(argv[i], "-sb")) /* selected background color */
colors[SchemeSel][ColBg] = argv[++i];
else if (!strcmp(argv[i], "-sf")) /* selected foreground color */
colors[SchemeSel][ColFg] = argv[++i];
2016-10-08 06:08:28 -06:00
else if (!strcmp(argv[i], "-w")) /* embedding window id */
embed = argv[++i];
else
usage();
if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
fputs("warning: no locale support\n", stderr);
if (!(dpy = XOpenDisplay(NULL)))
2016-08-12 06:39:30 -06:00
die("cannot open display");
screen = DefaultScreen(dpy);
root = RootWindow(dpy, screen);
2016-10-08 06:08:28 -06:00
if (!embed || !(parentwin = strtol(embed, NULL, 0)))
parentwin = root;
if (!XGetWindowAttributes(dpy, parentwin, &wa))
die("could not get embedding window attributes: 0x%lx",
parentwin);
drw = drw_create(dpy, screen, root, wa.width, wa.height);
if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
2016-08-12 06:39:30 -06:00
die("no fonts could be loaded.");
lrpad = drw->fonts->h;
#ifdef __OpenBSD__
if (pledge("stdio rpath", NULL) == -1)
2018-05-25 04:04:22 -06:00
die("pledge");
#endif
2018-05-25 04:04:22 -06:00
2021-05-11 12:18:07 -06:00
readstdin();
setup();
2021-05-11 12:39:51 -06:00
while(1); // bodge
return 1; /* unreachable */
}