621 lines
14 KiB
C
621 lines
14 KiB
C
/*
|
|
* calmwm - the calm window manager
|
|
*
|
|
* Copyright (c) 2008 Owain G. Ainsworth <oga@openbsd.org>
|
|
* Copyright (c) 2004 Marius Aamodt Eriksen <marius@monkey.org>
|
|
*
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
* copyright notice and this permission notice appear in all copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*
|
|
* $OpenBSD: menu.c,v 1.65 2013/05/20 21:32:00 okan Exp $
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/queue.h>
|
|
|
|
#include <ctype.h>
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include "calmwm.h"
|
|
|
|
#define PROMPT_SCHAR "\xc2\xbb"
|
|
#define PROMPT_ECHAR "\xc2\xab"
|
|
|
|
enum ctltype {
|
|
CTL_NONE = -1,
|
|
CTL_ERASEONE = 0, CTL_WIPE, CTL_UP, CTL_DOWN, CTL_RETURN,
|
|
CTL_TAB, CTL_ABORT, CTL_ALL
|
|
};
|
|
|
|
struct menu_ctx {
|
|
struct screen_ctx *sc;
|
|
char searchstr[MENU_MAXENTRY + 1];
|
|
char dispstr[MENU_MAXENTRY*2 + 1];
|
|
char promptstr[MENU_MAXENTRY + 1];
|
|
int hasprompt;
|
|
int list;
|
|
int listing;
|
|
int changed;
|
|
int noresult;
|
|
int prev;
|
|
int entry;
|
|
int height;
|
|
int width;
|
|
int num;
|
|
int flags;
|
|
int x;
|
|
int y;
|
|
void (*match)(struct menu_q *, struct menu_q *, char *);
|
|
void (*print)(struct menu *, int);
|
|
};
|
|
static struct menu *menu_handle_key(XEvent *, struct menu_ctx *,
|
|
struct menu_q *, struct menu_q *);
|
|
static void menu_handle_move(XEvent *, struct menu_ctx *,
|
|
struct menu_q *);
|
|
static struct menu *menu_handle_release(XEvent *, struct menu_ctx *,
|
|
struct menu_q *);
|
|
static void menu_draw(struct menu_ctx *, struct menu_q *,
|
|
struct menu_q *);
|
|
static void menu_draw_entry(struct menu_ctx *, struct menu_q *,
|
|
int, int);
|
|
static int menu_calc_entry(struct menu_ctx *, int, int);
|
|
static struct menu *menu_complete_path(struct menu_ctx *);
|
|
static int menu_keycode(XKeyEvent *, enum ctltype *, char *);
|
|
|
|
struct menu *
|
|
menu_filter(struct screen_ctx *sc, struct menu_q *menuq, char *prompt,
|
|
char *initial, int flags,
|
|
void (*match)(struct menu_q *, struct menu_q *, char *),
|
|
void (*print)(struct menu *, int))
|
|
{
|
|
struct menu_ctx mc;
|
|
struct menu_q resultq;
|
|
struct menu *mi = NULL;
|
|
XEvent e;
|
|
Window focuswin;
|
|
int evmask, focusrevert;
|
|
int xsave, ysave, xcur, ycur;
|
|
|
|
TAILQ_INIT(&resultq);
|
|
|
|
bzero(&mc, sizeof(mc));
|
|
|
|
xu_ptr_getpos(sc->rootwin, &mc.x, &mc.y);
|
|
|
|
xsave = mc.x;
|
|
ysave = mc.y;
|
|
|
|
mc.sc = sc;
|
|
mc.flags = flags;
|
|
if (prompt != NULL) {
|
|
evmask = MENUMASK | KEYMASK; /* accept keys as well */
|
|
(void)strlcpy(mc.promptstr, prompt, sizeof(mc.promptstr));
|
|
mc.hasprompt = 1;
|
|
} else {
|
|
evmask = MENUMASK;
|
|
mc.list = 1;
|
|
}
|
|
|
|
if (initial != NULL)
|
|
(void)strlcpy(mc.searchstr, initial, sizeof(mc.searchstr));
|
|
else
|
|
mc.searchstr[0] = '\0';
|
|
|
|
mc.match = match;
|
|
mc.print = print;
|
|
mc.entry = mc.prev = -1;
|
|
|
|
XSelectInput(X_Dpy, sc->menuwin, evmask);
|
|
XMapRaised(X_Dpy, sc->menuwin);
|
|
|
|
if (xu_ptr_grab(sc->menuwin, MENUGRABMASK, Cursor_question) < 0) {
|
|
XUnmapWindow(X_Dpy, sc->menuwin);
|
|
return (NULL);
|
|
}
|
|
|
|
XGetInputFocus(X_Dpy, &focuswin, &focusrevert);
|
|
XSetInputFocus(X_Dpy, sc->menuwin, RevertToPointerRoot, CurrentTime);
|
|
|
|
/* make sure keybindings don't remove keys from the menu stream */
|
|
XGrabKeyboard(X_Dpy, sc->menuwin, True,
|
|
GrabModeAsync, GrabModeAsync, CurrentTime);
|
|
|
|
for (;;) {
|
|
mc.changed = 0;
|
|
|
|
XWindowEvent(X_Dpy, sc->menuwin, evmask, &e);
|
|
|
|
switch (e.type) {
|
|
case KeyPress:
|
|
if ((mi = menu_handle_key(&e, &mc, menuq, &resultq))
|
|
!= NULL)
|
|
goto out;
|
|
/* FALLTHROUGH */
|
|
case Expose:
|
|
menu_draw(&mc, menuq, &resultq);
|
|
break;
|
|
case MotionNotify:
|
|
menu_handle_move(&e, &mc, &resultq);
|
|
break;
|
|
case ButtonRelease:
|
|
if ((mi = menu_handle_release(&e, &mc, &resultq))
|
|
!= NULL)
|
|
goto out;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
out:
|
|
if ((mc.flags & CWM_MENU_DUMMY) == 0 && mi->dummy) {
|
|
/* no mouse based match */
|
|
free(mi);
|
|
mi = NULL;
|
|
}
|
|
|
|
XSetInputFocus(X_Dpy, focuswin, focusrevert, CurrentTime);
|
|
/* restore if user didn't move */
|
|
xu_ptr_getpos(sc->rootwin, &xcur, &ycur);
|
|
if (xcur == mc.x && ycur == mc.y)
|
|
xu_ptr_setpos(sc->rootwin, xsave, ysave);
|
|
xu_ptr_ungrab();
|
|
|
|
XMoveResizeWindow(X_Dpy, sc->menuwin, 0, 0, 1, 1);
|
|
XUnmapWindow(X_Dpy, sc->menuwin);
|
|
XUngrabKeyboard(X_Dpy, CurrentTime);
|
|
|
|
return (mi);
|
|
}
|
|
|
|
static struct menu *
|
|
menu_complete_path(struct menu_ctx *mc)
|
|
{
|
|
struct menu *mi, *mr;
|
|
struct menu_q menuq;
|
|
char *path = NULL;
|
|
|
|
path = xcalloc(1, sizeof(mr->text));
|
|
mr = xcalloc(1, sizeof(*mr));
|
|
|
|
TAILQ_INIT(&menuq);
|
|
|
|
if ((mi = menu_filter(mc->sc, &menuq, mc->searchstr, NULL,
|
|
CWM_MENU_DUMMY, search_match_path_any, NULL)) != NULL) {
|
|
mr->abort = mi->abort;
|
|
mr->dummy = mi->dummy;
|
|
strlcpy(path, mi->text, sizeof(mi->text));
|
|
}
|
|
|
|
menuq_clear(&menuq);
|
|
|
|
if (path[0] != '\0')
|
|
snprintf(mr->text, sizeof(mr->text), "%s \"%s\"",
|
|
mc->searchstr, path);
|
|
else if (!mr->abort)
|
|
strlcpy(mr->text, mc->searchstr, sizeof(mr->text));
|
|
free(path);
|
|
return (mr);
|
|
}
|
|
|
|
static struct menu *
|
|
menu_handle_key(XEvent *e, struct menu_ctx *mc, struct menu_q *menuq,
|
|
struct menu_q *resultq)
|
|
{
|
|
struct menu *mi;
|
|
enum ctltype ctl;
|
|
char chr[32];
|
|
size_t len;
|
|
int clen, i;
|
|
wchar_t wc;
|
|
|
|
if (menu_keycode(&e->xkey, &ctl, chr) < 0)
|
|
return (NULL);
|
|
|
|
switch (ctl) {
|
|
case CTL_ERASEONE:
|
|
if ((len = strlen(mc->searchstr)) > 0) {
|
|
clen = 1;
|
|
while (mbtowc(&wc, &mc->searchstr[len-clen], MB_CUR_MAX) == -1)
|
|
clen++;
|
|
for (i = 1; i <= clen; i++)
|
|
mc->searchstr[len - i] = '\0';
|
|
mc->changed = 1;
|
|
}
|
|
break;
|
|
case CTL_UP:
|
|
mi = TAILQ_LAST(resultq, menu_q);
|
|
if (mi == NULL)
|
|
break;
|
|
|
|
TAILQ_REMOVE(resultq, mi, resultentry);
|
|
TAILQ_INSERT_HEAD(resultq, mi, resultentry);
|
|
break;
|
|
case CTL_DOWN:
|
|
mi = TAILQ_FIRST(resultq);
|
|
if (mi == NULL)
|
|
break;
|
|
|
|
TAILQ_REMOVE(resultq, mi, resultentry);
|
|
TAILQ_INSERT_TAIL(resultq, mi, resultentry);
|
|
break;
|
|
case CTL_RETURN:
|
|
/*
|
|
* Return whatever the cursor is currently on. Else
|
|
* even if dummy is zero, we need to return something.
|
|
*/
|
|
if ((mi = TAILQ_FIRST(resultq)) == NULL) {
|
|
mi = xmalloc(sizeof *mi);
|
|
(void)strlcpy(mi->text,
|
|
mc->searchstr, sizeof(mi->text));
|
|
mi->dummy = 1;
|
|
}
|
|
mi->abort = 0;
|
|
return (mi);
|
|
case CTL_WIPE:
|
|
mc->searchstr[0] = '\0';
|
|
mc->changed = 1;
|
|
break;
|
|
case CTL_TAB:
|
|
if ((mi = TAILQ_FIRST(resultq)) != NULL) {
|
|
/*
|
|
* - We are in exec_path menu mode
|
|
* - It is equal to the input
|
|
* We got a command, launch the file menu
|
|
*/
|
|
if ((mc->flags & CWM_MENU_FILE) &&
|
|
(strncmp(mc->searchstr, mi->text,
|
|
strlen(mi->text))) == 0)
|
|
return (menu_complete_path(mc));
|
|
|
|
/*
|
|
* Put common prefix of the results into searchstr
|
|
*/
|
|
(void)strlcpy(mc->searchstr,
|
|
mi->text, sizeof(mc->searchstr));
|
|
while ((mi = TAILQ_NEXT(mi, resultentry)) != NULL) {
|
|
i = 0;
|
|
while (tolower(mc->searchstr[i]) ==
|
|
tolower(mi->text[i]))
|
|
i++;
|
|
mc->searchstr[i] = '\0';
|
|
}
|
|
mc->changed = 1;
|
|
}
|
|
break;
|
|
case CTL_ALL:
|
|
mc->list = !mc->list;
|
|
break;
|
|
case CTL_ABORT:
|
|
mi = xmalloc(sizeof *mi);
|
|
mi->text[0] = '\0';
|
|
mi->dummy = 1;
|
|
mi->abort = 1;
|
|
return (mi);
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (chr[0] != '\0') {
|
|
mc->changed = 1;
|
|
(void)strlcat(mc->searchstr, chr, sizeof(mc->searchstr));
|
|
}
|
|
|
|
mc->noresult = 0;
|
|
if (mc->changed && mc->searchstr[0] != '\0') {
|
|
(*mc->match)(menuq, resultq, mc->searchstr);
|
|
/* If menuq is empty, never show we've failed */
|
|
mc->noresult = TAILQ_EMPTY(resultq) && !TAILQ_EMPTY(menuq);
|
|
} else if (mc->changed)
|
|
TAILQ_INIT(resultq);
|
|
|
|
if (!mc->list && mc->listing && !mc->changed) {
|
|
TAILQ_INIT(resultq);
|
|
mc->listing = 0;
|
|
}
|
|
|
|
return (NULL);
|
|
}
|
|
|
|
static void
|
|
menu_draw(struct menu_ctx *mc, struct menu_q *menuq, struct menu_q *resultq)
|
|
{
|
|
struct screen_ctx *sc = mc->sc;
|
|
struct menu *mi;
|
|
struct geom xine;
|
|
int n, xsave, ysave;
|
|
|
|
if (mc->list) {
|
|
if (TAILQ_EMPTY(resultq) && mc->list) {
|
|
/* Copy them all over. */
|
|
TAILQ_FOREACH(mi, menuq, entry)
|
|
TAILQ_INSERT_TAIL(resultq, mi,
|
|
resultentry);
|
|
|
|
mc->listing = 1;
|
|
} else if (mc->changed)
|
|
mc->listing = 0;
|
|
}
|
|
|
|
mc->num = 0;
|
|
mc->width = 0;
|
|
mc->height = 0;
|
|
if (mc->hasprompt) {
|
|
(void)snprintf(mc->dispstr, sizeof(mc->dispstr), "%s%s%s%s",
|
|
mc->promptstr, PROMPT_SCHAR, mc->searchstr, PROMPT_ECHAR);
|
|
mc->width = xu_xft_width(sc->xftfont, mc->dispstr,
|
|
strlen(mc->dispstr));
|
|
mc->height = sc->xftfont->height + 1;
|
|
mc->num = 1;
|
|
}
|
|
|
|
TAILQ_FOREACH(mi, resultq, resultentry) {
|
|
char *text;
|
|
|
|
if (mc->print != NULL) {
|
|
(*mc->print)(mi, mc->listing);
|
|
text = mi->print;
|
|
} else {
|
|
mi->print[0] = '\0';
|
|
text = mi->text;
|
|
}
|
|
|
|
mc->width = MAX(mc->width, xu_xft_width(sc->xftfont, text,
|
|
MIN(strlen(text), MENU_MAXENTRY)));
|
|
mc->height += sc->xftfont->height + 1;
|
|
mc->num++;
|
|
}
|
|
|
|
xine = screen_find_xinerama(sc, mc->x, mc->y);
|
|
xine.w += xine.x;
|
|
xine.h += xine.y;
|
|
|
|
xsave = mc->x;
|
|
ysave = mc->y;
|
|
|
|
/* Never hide the top, or left side, of the menu. */
|
|
if (mc->x + mc->width >= xine.w)
|
|
mc->x = xine.w - mc->width;
|
|
if (mc->x < xine.x) {
|
|
mc->x = xine.x;
|
|
mc->width = xine.w - xine.x;
|
|
}
|
|
if (mc->y + mc->height >= xine.h)
|
|
mc->y = xine.h - mc->height;
|
|
if (mc->y < xine.y) {
|
|
mc->y = xine.y;
|
|
mc->height = xine.h - xine.y;
|
|
}
|
|
|
|
if (mc->x != xsave || mc->y != ysave)
|
|
xu_ptr_setpos(sc->rootwin, mc->x, mc->y);
|
|
|
|
XClearWindow(X_Dpy, sc->menuwin);
|
|
XMoveResizeWindow(X_Dpy, sc->menuwin, mc->x, mc->y,
|
|
mc->width, mc->height);
|
|
|
|
if (mc->hasprompt) {
|
|
xu_xft_draw(sc, mc->dispstr, CWM_COLOR_MENU_FONT,
|
|
0, sc->xftfont->ascent);
|
|
n = 1;
|
|
} else
|
|
n = 0;
|
|
|
|
TAILQ_FOREACH(mi, resultq, resultentry) {
|
|
char *text = mi->print[0] != '\0' ?
|
|
mi->print : mi->text;
|
|
int y = n * (sc->xftfont->height + 1) + sc->xftfont->ascent + 1;
|
|
|
|
/* Stop drawing when menu doesn't fit inside the screen. */
|
|
if (mc->y + y > xine.h)
|
|
break;
|
|
|
|
xu_xft_draw(sc, text, CWM_COLOR_MENU_FONT, 0, y);
|
|
n++;
|
|
}
|
|
if (mc->hasprompt && n > 1 && (mc->searchstr[0] != '\0')) {
|
|
mc->entry = 1;
|
|
menu_draw_entry(mc, resultq, mc->entry, 1);
|
|
}
|
|
}
|
|
|
|
static void
|
|
menu_draw_entry(struct menu_ctx *mc, struct menu_q *resultq,
|
|
int entry, int active)
|
|
{
|
|
struct screen_ctx *sc = mc->sc;
|
|
struct menu *mi;
|
|
char *text;
|
|
int color, i = 0;
|
|
|
|
if (mc->hasprompt)
|
|
i = 1;
|
|
|
|
TAILQ_FOREACH(mi, resultq, resultentry)
|
|
if (entry == i++)
|
|
break;
|
|
if (mi == NULL)
|
|
return;
|
|
|
|
color = active ? CWM_COLOR_MENU_FG : CWM_COLOR_MENU_BG;
|
|
text = mi->print[0] != '\0' ? mi->print : mi->text;
|
|
XftDrawRect(sc->xftdraw, &sc->xftcolor[color], 0,
|
|
(sc->xftfont->height + 1) * entry, mc->width,
|
|
(sc->xftfont->height + 1) + sc->xftfont->descent);
|
|
color = active ? CWM_COLOR_MENU_FONT_SEL : CWM_COLOR_MENU_FONT;
|
|
xu_xft_draw(sc, text, color,
|
|
0, (sc->xftfont->height + 1) * entry + sc->xftfont->ascent + 1);
|
|
}
|
|
|
|
static void
|
|
menu_handle_move(XEvent *e, struct menu_ctx *mc, struct menu_q *resultq)
|
|
{
|
|
mc->prev = mc->entry;
|
|
mc->entry = menu_calc_entry(mc, e->xbutton.x, e->xbutton.y);
|
|
|
|
if (mc->prev == mc->entry)
|
|
return;
|
|
|
|
if (mc->prev != -1)
|
|
menu_draw_entry(mc, resultq, mc->prev, 0);
|
|
if (mc->entry != -1) {
|
|
(void)xu_ptr_regrab(MENUGRABMASK, Cursor_normal);
|
|
menu_draw_entry(mc, resultq, mc->entry, 1);
|
|
} else
|
|
(void)xu_ptr_regrab(MENUGRABMASK, Cursor_default);
|
|
|
|
if (mc->hasprompt)
|
|
menu_draw_entry(mc, resultq, 1, 1);
|
|
}
|
|
|
|
static struct menu *
|
|
menu_handle_release(XEvent *e, struct menu_ctx *mc, struct menu_q *resultq)
|
|
{
|
|
struct menu *mi;
|
|
int entry, i = 0;
|
|
|
|
entry = menu_calc_entry(mc, e->xbutton.x, e->xbutton.y);
|
|
|
|
if (mc->hasprompt)
|
|
i = 1;
|
|
|
|
TAILQ_FOREACH(mi, resultq, resultentry)
|
|
if (entry == i++)
|
|
break;
|
|
if (mi == NULL) {
|
|
mi = xmalloc(sizeof(*mi));
|
|
mi->text[0] = '\0';
|
|
mi->dummy = 1;
|
|
}
|
|
return (mi);
|
|
}
|
|
|
|
static int
|
|
menu_calc_entry(struct menu_ctx *mc, int x, int y)
|
|
{
|
|
struct screen_ctx *sc = mc->sc;
|
|
int entry;
|
|
|
|
entry = y / (sc->xftfont->height + 1);
|
|
|
|
/* in bounds? */
|
|
if (x < 0 || x > mc->width || y < 0 ||
|
|
y > (sc->xftfont->height + 1) * mc->num ||
|
|
entry < 0 || entry >= mc->num)
|
|
entry = -1;
|
|
|
|
if (mc->hasprompt && entry == 0)
|
|
entry = -1;
|
|
|
|
return (entry);
|
|
}
|
|
|
|
static int
|
|
menu_keycode(XKeyEvent *ev, enum ctltype *ctl, char *chr)
|
|
{
|
|
KeySym ks;
|
|
u_int state = ev->state;
|
|
|
|
*ctl = CTL_NONE;
|
|
chr[0] = '\0';
|
|
|
|
ks = XkbKeycodeToKeysym(X_Dpy, ev->keycode, 0,
|
|
(state & ShiftMask) ? 1 : 0);
|
|
|
|
/* Look for control characters. */
|
|
switch (ks) {
|
|
case XK_BackSpace:
|
|
*ctl = CTL_ERASEONE;
|
|
break;
|
|
case XK_Return:
|
|
*ctl = CTL_RETURN;
|
|
break;
|
|
case XK_Tab:
|
|
*ctl = CTL_TAB;
|
|
break;
|
|
case XK_Up:
|
|
*ctl = CTL_UP;
|
|
break;
|
|
case XK_Down:
|
|
*ctl = CTL_DOWN;
|
|
break;
|
|
case XK_Escape:
|
|
*ctl = CTL_ABORT;
|
|
break;
|
|
}
|
|
|
|
if (*ctl == CTL_NONE && (state & ControlMask)) {
|
|
switch (ks) {
|
|
case XK_s:
|
|
case XK_S:
|
|
/* Emacs "next" */
|
|
*ctl = CTL_DOWN;
|
|
break;
|
|
case XK_r:
|
|
case XK_R:
|
|
/* Emacs "previous" */
|
|
*ctl = CTL_UP;
|
|
break;
|
|
case XK_u:
|
|
case XK_U:
|
|
*ctl = CTL_WIPE;
|
|
break;
|
|
case XK_h:
|
|
case XK_H:
|
|
*ctl = CTL_ERASEONE;
|
|
break;
|
|
case XK_a:
|
|
case XK_A:
|
|
*ctl = CTL_ALL;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (*ctl == CTL_NONE && (state & Mod1Mask)) {
|
|
switch (ks) {
|
|
case XK_j:
|
|
case XK_J:
|
|
/* Vi "down" */
|
|
*ctl = CTL_DOWN;
|
|
break;
|
|
case XK_k:
|
|
case XK_K:
|
|
/* Vi "up" */
|
|
*ctl = CTL_UP;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (*ctl != CTL_NONE)
|
|
return (0);
|
|
|
|
if (XLookupString(ev, chr, 32, &ks, NULL) < 0)
|
|
return (-1);
|
|
|
|
return (0);
|
|
}
|
|
|
|
void
|
|
menuq_clear(struct menu_q *mq)
|
|
{
|
|
struct menu *mi;
|
|
|
|
while ((mi = TAILQ_FIRST(mq)) != NULL) {
|
|
TAILQ_REMOVE(mq, mi, entry);
|
|
free(mi);
|
|
}
|
|
}
|