2019-05-10 18:04:06 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Nicholas Marriott <nicholas.marriott@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 MIND, 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
struct menu_data {
|
|
|
|
struct cmdq_item *item;
|
|
|
|
int flags;
|
|
|
|
|
|
|
|
struct cmd_find_state fs;
|
|
|
|
struct screen s;
|
|
|
|
|
|
|
|
u_int px;
|
|
|
|
u_int py;
|
|
|
|
|
|
|
|
struct menu *menu;
|
|
|
|
int choice;
|
|
|
|
|
|
|
|
menu_choice_cb cb;
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
2019-05-28 07:18:42 +00:00
|
|
|
void
|
|
|
|
menu_add_items(struct menu *menu, const struct menu_item *items,
|
|
|
|
struct cmdq_item *qitem, struct client *c, struct cmd_find_state *fs)
|
|
|
|
{
|
|
|
|
const struct menu_item *loop;
|
|
|
|
|
|
|
|
for (loop = items; loop->name != NULL; loop++)
|
|
|
|
menu_add_item(menu, loop, qitem, c, fs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
menu_add_item(struct menu *menu, const struct menu_item *item,
|
2019-05-26 17:34:45 +00:00
|
|
|
struct cmdq_item *qitem, struct client *c, struct cmd_find_state *fs)
|
2019-05-10 18:04:06 +00:00
|
|
|
{
|
|
|
|
struct menu_item *new_item;
|
2019-05-28 07:18:42 +00:00
|
|
|
const char *key, *cmd;
|
|
|
|
char *s, *name;
|
2019-05-10 18:04:06 +00:00
|
|
|
u_int width;
|
2019-05-28 07:18:42 +00:00
|
|
|
int line;
|
|
|
|
|
|
|
|
line = (item == NULL || item->name == NULL || *item->name == '\0');
|
|
|
|
if (line && menu->count == 0)
|
|
|
|
return;
|
2019-05-10 18:04:06 +00:00
|
|
|
|
|
|
|
menu->items = xreallocarray(menu->items, menu->count + 1,
|
|
|
|
sizeof *menu->items);
|
|
|
|
new_item = &menu->items[menu->count++];
|
|
|
|
memset(new_item, 0, sizeof *new_item);
|
|
|
|
|
2019-05-28 07:18:42 +00:00
|
|
|
if (line)
|
2019-05-10 18:04:06 +00:00
|
|
|
return;
|
2019-05-28 07:18:42 +00:00
|
|
|
|
|
|
|
if (fs != NULL)
|
2020-05-16 14:53:23 +00:00
|
|
|
s = format_single_from_state(qitem, item->name, c, fs);
|
2019-05-28 07:18:42 +00:00
|
|
|
else
|
|
|
|
s = format_single(qitem, item->name, c, NULL, NULL, NULL);
|
|
|
|
if (*s == '\0') { /* no item if empty after format expanded */
|
2019-05-10 18:04:06 +00:00
|
|
|
menu->count--;
|
|
|
|
return;
|
|
|
|
}
|
2019-05-28 09:50:54 +00:00
|
|
|
if (*s != '-' && item->key != KEYC_UNKNOWN && item->key != KEYC_NONE) {
|
2020-05-16 16:35:13 +00:00
|
|
|
key = key_string_lookup_key(item->key, 0);
|
2019-05-28 07:18:42 +00:00
|
|
|
xasprintf(&name, "%s#[default] #[align=right](%s)", s, key);
|
2019-05-10 18:04:06 +00:00
|
|
|
} else
|
2019-05-28 07:18:42 +00:00
|
|
|
xasprintf(&name, "%s", s);
|
|
|
|
new_item->name = name;
|
|
|
|
free(s);
|
|
|
|
|
|
|
|
cmd = item->command;
|
|
|
|
if (cmd != NULL) {
|
|
|
|
if (fs != NULL)
|
2020-05-16 14:53:23 +00:00
|
|
|
s = format_single_from_state(qitem, cmd, c, fs);
|
2019-05-28 07:18:42 +00:00
|
|
|
else
|
|
|
|
s = format_single(qitem, cmd, c, NULL, NULL, NULL);
|
2019-05-26 17:34:45 +00:00
|
|
|
} else
|
2019-05-28 07:18:42 +00:00
|
|
|
s = NULL;
|
|
|
|
new_item->command = s;
|
2019-05-10 18:04:06 +00:00
|
|
|
new_item->key = item->key;
|
|
|
|
|
|
|
|
width = format_width(new_item->name);
|
|
|
|
if (width > menu->width)
|
|
|
|
menu->width = width;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct menu *
|
2019-05-28 07:18:42 +00:00
|
|
|
menu_create(const char *title)
|
2019-05-10 18:04:06 +00:00
|
|
|
{
|
|
|
|
struct menu *menu;
|
|
|
|
|
|
|
|
menu = xcalloc(1, sizeof *menu);
|
|
|
|
menu->title = xstrdup(title);
|
2020-05-25 11:59:50 +00:00
|
|
|
menu->width = format_width(title);
|
2019-05-10 18:04:06 +00:00
|
|
|
|
|
|
|
return (menu);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
menu_free(struct menu *menu)
|
|
|
|
{
|
|
|
|
u_int i;
|
|
|
|
|
|
|
|
for (i = 0; i < menu->count; i++) {
|
2019-05-28 07:18:42 +00:00
|
|
|
free((void *)menu->items[i].name);
|
|
|
|
free((void *)menu->items[i].command);
|
2019-05-10 18:04:06 +00:00
|
|
|
}
|
|
|
|
free(menu->items);
|
|
|
|
|
2019-05-28 07:18:42 +00:00
|
|
|
free((void *)menu->title);
|
2019-05-10 18:04:06 +00:00
|
|
|
free(menu);
|
|
|
|
}
|
|
|
|
|
2020-05-16 15:34:08 +00:00
|
|
|
static struct screen *
|
2020-03-24 08:09:43 +00:00
|
|
|
menu_mode_cb(struct client *c, __unused u_int *cx, __unused u_int *cy)
|
|
|
|
{
|
|
|
|
struct menu_data *md = c->overlay_data;
|
|
|
|
|
2020-05-16 15:34:08 +00:00
|
|
|
return (&md->s);
|
2020-03-24 08:09:43 +00:00
|
|
|
}
|
|
|
|
|
2019-05-10 18:04:06 +00:00
|
|
|
static void
|
|
|
|
menu_draw_cb(struct client *c, __unused struct screen_redraw_ctx *ctx0)
|
|
|
|
{
|
|
|
|
struct menu_data *md = c->overlay_data;
|
|
|
|
struct tty *tty = &c->tty;
|
|
|
|
struct screen *s = &md->s;
|
|
|
|
struct menu *menu = md->menu;
|
|
|
|
struct screen_write_ctx ctx;
|
2020-03-19 14:23:58 +00:00
|
|
|
u_int i, px = md->px, py = md->py;
|
2020-04-15 16:11:23 +00:00
|
|
|
struct grid_cell gc;
|
|
|
|
|
2020-05-16 15:01:30 +00:00
|
|
|
style_apply(&gc, c->session->curw->window->options, "mode-style", NULL);
|
2019-05-10 18:04:06 +00:00
|
|
|
|
2020-05-16 15:34:08 +00:00
|
|
|
screen_write_start(&ctx, s);
|
2019-05-10 18:04:06 +00:00
|
|
|
screen_write_clearscreen(&ctx, 8);
|
2020-04-15 16:11:23 +00:00
|
|
|
screen_write_menu(&ctx, menu, md->choice, &gc);
|
2019-05-10 18:04:06 +00:00
|
|
|
screen_write_stop(&ctx);
|
|
|
|
|
2020-05-16 15:34:08 +00:00
|
|
|
for (i = 0; i < screen_size_y(&md->s); i++) {
|
|
|
|
tty_draw_line(tty, s, 0, i, menu->width + 4, px, py + i,
|
|
|
|
&grid_default_cell, NULL);
|
|
|
|
}
|
2019-05-10 18:04:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
menu_free_cb(struct client *c)
|
|
|
|
{
|
|
|
|
struct menu_data *md = c->overlay_data;
|
|
|
|
|
|
|
|
if (md->item != NULL)
|
2019-06-18 11:08:42 +00:00
|
|
|
cmdq_continue(md->item);
|
2019-05-10 18:04:06 +00:00
|
|
|
|
2019-05-12 08:58:09 +00:00
|
|
|
if (md->cb != NULL)
|
|
|
|
md->cb(md->menu, UINT_MAX, KEYC_NONE, md->data);
|
|
|
|
|
2019-05-10 18:04:06 +00:00
|
|
|
screen_free(&md->s);
|
|
|
|
menu_free(md->menu);
|
|
|
|
free(md);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
menu_key_cb(struct client *c, struct key_event *event)
|
|
|
|
{
|
|
|
|
struct menu_data *md = c->overlay_data;
|
|
|
|
struct menu *menu = md->menu;
|
|
|
|
struct mouse_event *m = &event->m;
|
|
|
|
u_int i;
|
|
|
|
int count = menu->count, old = md->choice;
|
2020-09-16 18:37:55 +00:00
|
|
|
const char *name = NULL;
|
2020-04-13 18:59:41 +00:00
|
|
|
const struct menu_item *item;
|
|
|
|
struct cmdq_state *state;
|
|
|
|
enum cmd_parse_status status;
|
|
|
|
char *error;
|
2019-05-10 18:04:06 +00:00
|
|
|
|
|
|
|
if (KEYC_IS_MOUSE(event->key)) {
|
2019-09-16 13:27:14 +00:00
|
|
|
if (md->flags & MENU_NOMOUSE) {
|
|
|
|
if (MOUSE_BUTTONS(m->b) != 0)
|
|
|
|
return (1);
|
2019-05-10 18:04:06 +00:00
|
|
|
return (0);
|
2019-09-16 13:27:14 +00:00
|
|
|
}
|
2019-05-10 18:04:06 +00:00
|
|
|
if (m->x < md->px ||
|
|
|
|
m->x > md->px + 4 + menu->width ||
|
|
|
|
m->y < md->py + 1 ||
|
|
|
|
m->y > md->py + 1 + count - 1) {
|
2020-10-30 08:55:56 +00:00
|
|
|
if (~md->flags & MENU_STAYOPEN) {
|
|
|
|
if (MOUSE_RELEASE(m->b))
|
|
|
|
return (1);
|
|
|
|
} else {
|
|
|
|
if (!MOUSE_RELEASE(m->b) &&
|
|
|
|
MOUSE_WHEEL(m->b) == 0 &&
|
|
|
|
!MOUSE_DRAG(m->b))
|
|
|
|
return (1);
|
|
|
|
}
|
2019-05-10 18:04:06 +00:00
|
|
|
if (md->choice != -1) {
|
|
|
|
md->choice = -1;
|
|
|
|
c->flags |= CLIENT_REDRAWOVERLAY;
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
}
|
2020-10-30 08:55:56 +00:00
|
|
|
if (~md->flags & MENU_STAYOPEN) {
|
|
|
|
if (MOUSE_RELEASE(m->b))
|
|
|
|
goto chosen;
|
|
|
|
} else {
|
|
|
|
if (MOUSE_WHEEL(m->b) == 0 && !MOUSE_DRAG(m->b))
|
|
|
|
goto chosen;
|
|
|
|
}
|
2019-05-26 18:19:52 +00:00
|
|
|
md->choice = m->y - (md->py + 1);
|
2019-05-10 18:04:06 +00:00
|
|
|
if (md->choice != old)
|
|
|
|
c->flags |= CLIENT_REDRAWOVERLAY;
|
|
|
|
return (0);
|
|
|
|
}
|
2019-07-09 12:44:47 +00:00
|
|
|
for (i = 0; i < (u_int)count; i++) {
|
|
|
|
name = menu->items[i].name;
|
|
|
|
if (name == NULL || *name == '-')
|
|
|
|
continue;
|
|
|
|
if (event->key == menu->items[i].key) {
|
|
|
|
md->choice = i;
|
|
|
|
goto chosen;
|
|
|
|
}
|
|
|
|
}
|
2020-05-16 16:35:13 +00:00
|
|
|
switch (event->key & ~KEYC_MASK_FLAGS) {
|
2019-05-10 18:04:06 +00:00
|
|
|
case KEYC_UP:
|
2019-07-09 12:44:47 +00:00
|
|
|
case 'k':
|
2019-05-28 09:50:54 +00:00
|
|
|
if (old == -1)
|
|
|
|
old = 0;
|
2019-05-10 18:04:06 +00:00
|
|
|
do {
|
|
|
|
if (md->choice == -1 || md->choice == 0)
|
|
|
|
md->choice = count - 1;
|
|
|
|
else
|
|
|
|
md->choice--;
|
2019-05-28 09:50:54 +00:00
|
|
|
name = menu->items[md->choice].name;
|
|
|
|
} while ((name == NULL || *name == '-') && md->choice != old);
|
2019-05-10 18:04:06 +00:00
|
|
|
c->flags |= CLIENT_REDRAWOVERLAY;
|
|
|
|
return (0);
|
2020-05-16 15:06:03 +00:00
|
|
|
case KEYC_BSPACE:
|
|
|
|
if (~md->flags & MENU_TAB)
|
|
|
|
break;
|
|
|
|
return (1);
|
|
|
|
case '\011': /* Tab */
|
|
|
|
if (~md->flags & MENU_TAB)
|
|
|
|
break;
|
|
|
|
if (md->choice == count - 1)
|
|
|
|
return (1);
|
|
|
|
/* FALLTHROUGH */
|
2019-05-10 18:04:06 +00:00
|
|
|
case KEYC_DOWN:
|
2019-07-09 12:44:47 +00:00
|
|
|
case 'j':
|
2019-05-28 09:50:54 +00:00
|
|
|
if (old == -1)
|
|
|
|
old = 0;
|
2019-05-10 18:04:06 +00:00
|
|
|
do {
|
|
|
|
if (md->choice == -1 || md->choice == count - 1)
|
|
|
|
md->choice = 0;
|
2019-05-28 09:50:54 +00:00
|
|
|
else
|
|
|
|
md->choice++;
|
|
|
|
name = menu->items[md->choice].name;
|
|
|
|
} while ((name == NULL || *name == '-') && md->choice != old);
|
2019-05-10 18:04:06 +00:00
|
|
|
c->flags |= CLIENT_REDRAWOVERLAY;
|
|
|
|
return (0);
|
2020-05-16 15:06:03 +00:00
|
|
|
case 'g':
|
|
|
|
case KEYC_PPAGE:
|
|
|
|
case '\002': /* C-b */
|
|
|
|
if (md->choice > 5)
|
|
|
|
md->choice -= 5;
|
|
|
|
else
|
|
|
|
md->choice = 0;
|
|
|
|
while (md->choice != count && (name == NULL || *name == '-'))
|
|
|
|
md->choice++;
|
|
|
|
if (md->choice == count)
|
|
|
|
md->choice = -1;
|
|
|
|
c->flags |= CLIENT_REDRAWOVERLAY;
|
|
|
|
break;
|
|
|
|
case 'G':
|
|
|
|
case KEYC_NPAGE:
|
|
|
|
if (md->choice > count - 6)
|
|
|
|
md->choice = count - 1;
|
|
|
|
else
|
|
|
|
md->choice += 5;
|
|
|
|
while (md->choice != -1 && (name == NULL || *name == '-'))
|
|
|
|
md->choice--;
|
|
|
|
c->flags |= CLIENT_REDRAWOVERLAY;
|
|
|
|
break;
|
|
|
|
case '\006': /* C-f */
|
|
|
|
break;
|
2019-05-10 18:04:06 +00:00
|
|
|
case '\r':
|
|
|
|
goto chosen;
|
|
|
|
case '\033': /* Escape */
|
|
|
|
case '\003': /* C-c */
|
|
|
|
case '\007': /* C-g */
|
|
|
|
case 'q':
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
chosen:
|
|
|
|
if (md->choice == -1)
|
|
|
|
return (1);
|
|
|
|
item = &menu->items[md->choice];
|
2020-10-30 12:00:01 +00:00
|
|
|
if (item->name == NULL || *item->name == '-') {
|
|
|
|
if (md->flags & MENU_STAYOPEN)
|
|
|
|
return (0);
|
2019-05-10 18:04:06 +00:00
|
|
|
return (1);
|
2020-10-30 12:00:01 +00:00
|
|
|
}
|
2019-05-10 18:04:06 +00:00
|
|
|
if (md->cb != NULL) {
|
|
|
|
md->cb(md->menu, md->choice, item->key, md->data);
|
2019-05-12 08:58:09 +00:00
|
|
|
md->cb = NULL;
|
2019-05-10 18:04:06 +00:00
|
|
|
return (1);
|
|
|
|
}
|
2019-05-23 11:13:30 +00:00
|
|
|
|
2020-04-13 18:59:41 +00:00
|
|
|
if (md->item != NULL)
|
|
|
|
event = cmdq_get_event(md->item);
|
|
|
|
else
|
|
|
|
event = NULL;
|
|
|
|
state = cmdq_new_state(&md->fs, event, 0);
|
|
|
|
|
|
|
|
status = cmd_parse_and_append(item->command, NULL, c, state, &error);
|
|
|
|
if (status == CMD_PARSE_ERROR) {
|
|
|
|
cmdq_append(c, cmdq_get_error(error));
|
|
|
|
free(error);
|
2019-05-10 18:04:06 +00:00
|
|
|
}
|
2020-04-13 18:59:41 +00:00
|
|
|
cmdq_free_state(state);
|
|
|
|
|
2019-05-10 18:04:06 +00:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
menu_display(struct menu *menu, int flags, struct cmdq_item *item, u_int px,
|
|
|
|
u_int py, struct client *c, struct cmd_find_state *fs, menu_choice_cb cb,
|
|
|
|
void *data)
|
|
|
|
{
|
|
|
|
struct menu_data *md;
|
2020-04-16 17:20:23 +00:00
|
|
|
u_int i;
|
|
|
|
const char *name;
|
2019-05-10 18:04:06 +00:00
|
|
|
|
|
|
|
if (c->tty.sx < menu->width + 4 || c->tty.sy < menu->count + 2)
|
|
|
|
return (-1);
|
2020-03-20 17:26:14 +00:00
|
|
|
if (px + menu->width + 4 > c->tty.sx)
|
|
|
|
px = c->tty.sx - menu->width - 4;
|
|
|
|
if (py + menu->count + 2 > c->tty.sy)
|
|
|
|
py = c->tty.sy - menu->count - 2;
|
2019-05-10 18:04:06 +00:00
|
|
|
|
|
|
|
md = xcalloc(1, sizeof *md);
|
|
|
|
md->item = item;
|
|
|
|
md->flags = flags;
|
|
|
|
|
2019-05-12 08:58:09 +00:00
|
|
|
if (fs != NULL)
|
|
|
|
cmd_find_copy_state(&md->fs, fs);
|
2019-05-10 18:04:06 +00:00
|
|
|
screen_init(&md->s, menu->width + 4, menu->count + 2, 0);
|
2020-05-16 15:34:08 +00:00
|
|
|
if (~md->flags & MENU_NOMOUSE)
|
|
|
|
md->s.mode |= MODE_MOUSE_ALL;
|
2020-05-16 15:38:14 +00:00
|
|
|
md->s.mode &= ~MODE_CURSOR;
|
2019-05-10 18:04:06 +00:00
|
|
|
|
|
|
|
md->px = px;
|
|
|
|
md->py = py;
|
|
|
|
|
|
|
|
md->menu = menu;
|
2020-04-16 17:20:23 +00:00
|
|
|
if (md->flags & MENU_NOMOUSE) {
|
|
|
|
for (i = 0; i < menu->count; i++) {
|
|
|
|
name = menu->items[i].name;
|
|
|
|
if (name != NULL && *name != '-')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i != menu->count)
|
|
|
|
md->choice = i;
|
|
|
|
else
|
|
|
|
md->choice = -1;
|
|
|
|
} else
|
|
|
|
md->choice = -1;
|
2019-05-10 18:04:06 +00:00
|
|
|
|
|
|
|
md->cb = cb;
|
|
|
|
md->data = data;
|
|
|
|
|
2020-03-24 08:09:43 +00:00
|
|
|
server_client_set_overlay(c, 0, NULL, menu_mode_cb, menu_draw_cb,
|
|
|
|
menu_key_cb, menu_free_cb, md);
|
2019-05-10 18:04:06 +00:00
|
|
|
return (0);
|
|
|
|
}
|