Merge branch 'obsd-master'
[tmux.git] / cmd-display-menu.c
bloba75dbba4aeefd13a9f9727d955b84a50612e81a9
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2019 Nicholas Marriott <nicholas.marriott@gmail.com>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
21 #include <stdlib.h>
22 #include <string.h>
24 #include "tmux.h"
27 * Display a menu on a client.
30 static enum args_parse_type cmd_display_menu_args_parse(struct args *,
31 u_int, char **);
32 static enum cmd_retval cmd_display_menu_exec(struct cmd *,
33 struct cmdq_item *);
34 static enum cmd_retval cmd_display_popup_exec(struct cmd *,
35 struct cmdq_item *);
37 const struct cmd_entry cmd_display_menu_entry = {
38 .name = "display-menu",
39 .alias = "menu",
41 .args = { "c:t:S:OT:x:y:", 1, -1, cmd_display_menu_args_parse },
42 .usage = "[-O] [-c target-client] [-S starting-choice] "
43 CMD_TARGET_PANE_USAGE " [-T title] [-x position] "
44 "[-y position] name key command ...",
46 .target = { 't', CMD_FIND_PANE, 0 },
48 .flags = CMD_AFTERHOOK|CMD_CLIENT_CFLAG,
49 .exec = cmd_display_menu_exec
52 const struct cmd_entry cmd_display_popup_entry = {
53 .name = "display-popup",
54 .alias = "popup",
56 .args = { "Bb:Cc:d:e:Eh:s:S:t:T:w:x:y:", 0, -1, NULL },
57 .usage = "[-BCE] [-b border-lines] [-c target-client] "
58 "[-d start-directory] [-e environment] [-h height] "
59 "[-s style] [-S border-style] " CMD_TARGET_PANE_USAGE
60 "[-T title] [-w width] [-x position] [-y position] "
61 "[shell-command]",
63 .target = { 't', CMD_FIND_PANE, 0 },
65 .flags = CMD_AFTERHOOK|CMD_CLIENT_CFLAG,
66 .exec = cmd_display_popup_exec
69 static enum args_parse_type
70 cmd_display_menu_args_parse(struct args *args, u_int idx, __unused char **cause)
72 u_int i = 0;
73 enum args_parse_type type = ARGS_PARSE_STRING;
75 for (;;) {
76 type = ARGS_PARSE_STRING;
77 if (i == idx)
78 break;
79 if (*args_string(args, i++) == '\0')
80 continue;
82 type = ARGS_PARSE_STRING;
83 if (i++ == idx)
84 break;
86 type = ARGS_PARSE_COMMANDS_OR_STRING;
87 if (i++ == idx)
88 break;
90 return (type);
93 static int
94 cmd_display_menu_get_position(struct client *tc, struct cmdq_item *item,
95 struct args *args, u_int *px, u_int *py, u_int w, u_int h)
97 struct tty *tty = &tc->tty;
98 struct cmd_find_state *target = cmdq_get_target(item);
99 struct key_event *event = cmdq_get_event(item);
100 struct session *s = tc->session;
101 struct winlink *wl = target->wl;
102 struct window_pane *wp = target->wp;
103 struct style_ranges *ranges = NULL;
104 struct style_range *sr = NULL;
105 const char *xp, *yp;
106 char *p;
107 int top;
108 u_int line, ox, oy, sx, sy, lines, position;
109 long n;
110 struct format_tree *ft;
113 * Work out the position from the -x and -y arguments. This is the
114 * bottom-left position.
117 /* If the popup is too big, stop now. */
118 if (w > tty->sx || h > tty->sy)
119 return (0);
121 /* Create format with mouse position if any. */
122 ft = format_create_from_target(item);
123 if (event->m.valid) {
124 format_add(ft, "popup_mouse_x", "%u", event->m.x);
125 format_add(ft, "popup_mouse_y", "%u", event->m.y);
129 * If there are any status lines, add this window position and the
130 * status line position.
132 top = status_at_line(tc);
133 if (top != -1) {
134 lines = status_line_size(tc);
135 if (top == 0)
136 top = lines;
137 else
138 top = 0;
139 position = options_get_number(s->options, "status-position");
141 for (line = 0; line < lines; line++) {
142 ranges = &tc->status.entries[line].ranges;
143 TAILQ_FOREACH(sr, ranges, entry) {
144 if (sr->type != STYLE_RANGE_WINDOW)
145 continue;
146 if (sr->argument == (u_int)wl->idx)
147 break;
149 if (sr != NULL)
150 break;
153 if (sr != NULL) {
154 format_add(ft, "popup_window_status_line_x", "%u",
155 sr->start);
156 if (position == 0) {
157 format_add(ft, "popup_window_status_line_y",
158 "%u", line + 1 + h);
159 } else {
160 format_add(ft, "popup_window_status_line_y",
161 "%u", tty->sy - lines + line);
165 if (position == 0)
166 format_add(ft, "popup_status_line_y", "%u", lines + h);
167 else {
168 format_add(ft, "popup_status_line_y", "%u",
169 tty->sy - lines);
171 } else
172 top = 0;
174 /* Popup width and height. */
175 format_add(ft, "popup_width", "%u", w);
176 format_add(ft, "popup_height", "%u", h);
178 /* Position so popup is in the centre. */
179 n = (long)(tty->sx - 1) / 2 - w / 2;
180 if (n < 0)
181 format_add(ft, "popup_centre_x", "%u", 0);
182 else
183 format_add(ft, "popup_centre_x", "%ld", n);
184 n = (tty->sy - 1) / 2 + h / 2;
185 if (n >= tty->sy)
186 format_add(ft, "popup_centre_y", "%u", tty->sy - h);
187 else
188 format_add(ft, "popup_centre_y", "%ld", n);
190 /* Position of popup relative to mouse. */
191 if (event->m.valid) {
192 n = (long)event->m.x - w / 2;
193 if (n < 0)
194 format_add(ft, "popup_mouse_centre_x", "%u", 0);
195 else
196 format_add(ft, "popup_mouse_centre_x", "%ld", n);
197 n = event->m.y - h / 2;
198 if (n + h >= tty->sy) {
199 format_add(ft, "popup_mouse_centre_y", "%u",
200 tty->sy - h);
201 } else
202 format_add(ft, "popup_mouse_centre_y", "%ld", n);
203 n = (long)event->m.y + h;
204 if (n >= tty->sy)
205 format_add(ft, "popup_mouse_top", "%u", tty->sy - 1);
206 else
207 format_add(ft, "popup_mouse_top", "%ld", n);
208 n = event->m.y - h;
209 if (n < 0)
210 format_add(ft, "popup_mouse_bottom", "%u", 0);
211 else
212 format_add(ft, "popup_mouse_bottom", "%ld", n);
215 /* Position in pane. */
216 tty_window_offset(&tc->tty, &ox, &oy, &sx, &sy);
217 n = top + wp->yoff - oy + h;
218 if (n >= tty->sy)
219 format_add(ft, "popup_pane_top", "%u", tty->sy - h);
220 else
221 format_add(ft, "popup_pane_top", "%ld", n);
222 format_add(ft, "popup_pane_bottom", "%u", top + wp->yoff + wp->sy - oy);
223 format_add(ft, "popup_pane_left", "%u", wp->xoff - ox);
224 n = (long)wp->xoff + wp->sx - ox - w;
225 if (n < 0)
226 format_add(ft, "popup_pane_right", "%u", 0);
227 else
228 format_add(ft, "popup_pane_right", "%ld", n);
230 /* Expand horizontal position. */
231 xp = args_get(args, 'x');
232 if (xp == NULL || strcmp(xp, "C") == 0)
233 xp = "#{popup_centre_x}";
234 else if (strcmp(xp, "R") == 0)
235 xp = "#{popup_pane_right}";
236 else if (strcmp(xp, "P") == 0)
237 xp = "#{popup_pane_left}";
238 else if (strcmp(xp, "M") == 0)
239 xp = "#{popup_mouse_centre_x}";
240 else if (strcmp(xp, "W") == 0)
241 xp = "#{popup_window_status_line_x}";
242 p = format_expand(ft, xp);
243 n = strtol(p, NULL, 10);
244 if (n + w >= tty->sx)
245 n = tty->sx - w;
246 else if (n < 0)
247 n = 0;
248 *px = n;
249 log_debug("%s: -x: %s = %s = %u (-w %u)", __func__, xp, p, *px, w);
250 free(p);
252 /* Expand vertical position */
253 yp = args_get(args, 'y');
254 if (yp == NULL || strcmp(yp, "C") == 0)
255 yp = "#{popup_centre_y}";
256 else if (strcmp(yp, "P") == 0)
257 yp = "#{popup_pane_bottom}";
258 else if (strcmp(yp, "M") == 0)
259 yp = "#{popup_mouse_top}";
260 else if (strcmp(yp, "S") == 0)
261 yp = "#{popup_status_line_y}";
262 else if (strcmp(yp, "W") == 0)
263 yp = "#{popup_window_status_line_y}";
264 p = format_expand(ft, yp);
265 n = strtol(p, NULL, 10);
266 if (n < h)
267 n = 0;
268 else
269 n -= h;
270 if (n + h >= tty->sy)
271 n = tty->sy - h;
272 else if (n < 0)
273 n = 0;
274 *py = n;
275 log_debug("%s: -y: %s = %s = %u (-h %u)", __func__, yp, p, *py, h);
276 free(p);
278 format_free(ft);
279 return (1);
282 static enum cmd_retval
283 cmd_display_menu_exec(struct cmd *self, struct cmdq_item *item)
285 struct args *args = cmd_get_args(self);
286 struct cmd_find_state *target = cmdq_get_target(item);
287 struct key_event *event = cmdq_get_event(item);
288 struct client *tc = cmdq_get_target_client(item);
289 struct menu *menu = NULL;
290 struct menu_item menu_item;
291 const char *key, *name;
292 char *title, *cause;
293 int flags = 0, starting_choice = 0;
294 u_int px, py, i, count = args_count(args);
296 if (tc->overlay_draw != NULL)
297 return (CMD_RETURN_NORMAL);
299 if (args_has(args, 'S')) {
300 if (strcmp(args_get(args, 'S'), "-") == 0)
301 starting_choice = -1;
302 else {
303 starting_choice = args_strtonum(args, 'S', 0, UINT_MAX,
304 &cause);
305 if (cause != NULL) {
306 cmdq_error(item, "starting choice %s", cause);
307 free(cause);
308 return (CMD_RETURN_ERROR);
313 if (args_has(args, 'T'))
314 title = format_single_from_target(item, args_get(args, 'T'));
315 else
316 title = xstrdup("");
317 menu = menu_create(title);
318 free(title);
320 for (i = 0; i != count; /* nothing */) {
321 name = args_string(args, i++);
322 if (*name == '\0') {
323 menu_add_item(menu, NULL, item, tc, target);
324 continue;
327 if (count - i < 2) {
328 cmdq_error(item, "not enough arguments");
329 menu_free(menu);
330 return (CMD_RETURN_ERROR);
332 key = args_string(args, i++);
334 menu_item.name = name;
335 menu_item.key = key_string_lookup_string(key);
336 menu_item.command = args_string(args, i++);
338 menu_add_item(menu, &menu_item, item, tc, target);
340 if (menu == NULL) {
341 cmdq_error(item, "invalid menu arguments");
342 return (CMD_RETURN_ERROR);
344 if (menu->count == 0) {
345 menu_free(menu);
346 return (CMD_RETURN_NORMAL);
348 if (!cmd_display_menu_get_position(tc, item, args, &px, &py,
349 menu->width + 4, menu->count + 2)) {
350 menu_free(menu);
351 return (CMD_RETURN_NORMAL);
354 if (args_has(args, 'O'))
355 flags |= MENU_STAYOPEN;
356 if (!event->m.valid)
357 flags |= MENU_NOMOUSE;
358 if (menu_display(menu, flags, starting_choice, item, px, py, tc, target,
359 NULL, NULL) != 0)
360 return (CMD_RETURN_NORMAL);
361 return (CMD_RETURN_WAIT);
364 static enum cmd_retval
365 cmd_display_popup_exec(struct cmd *self, struct cmdq_item *item)
367 struct args *args = cmd_get_args(self);
368 struct cmd_find_state *target = cmdq_get_target(item);
369 struct session *s = target->s;
370 struct client *tc = cmdq_get_target_client(item);
371 struct tty *tty = &tc->tty;
372 const char *value, *shell, *shellcmd = NULL;
373 const char *style = args_get(args, 's');
374 const char *border_style = args_get(args, 'S');
375 char *cwd, *cause = NULL, **argv = NULL, *title;
376 int flags = 0, argc = 0;
377 enum box_lines lines = BOX_LINES_DEFAULT;
378 u_int px, py, w, h, count = args_count(args);
379 struct args_value *av;
380 struct environ *env = NULL;
381 struct options *o = s->curw->window->options;
382 struct options_entry *oe;
384 if (args_has(args, 'C')) {
385 server_client_clear_overlay(tc);
386 return (CMD_RETURN_NORMAL);
388 if (tc->overlay_draw != NULL)
389 return (CMD_RETURN_NORMAL);
391 h = tty->sy / 2;
392 if (args_has(args, 'h')) {
393 h = args_percentage(args, 'h', 1, tty->sy, tty->sy, &cause);
394 if (cause != NULL) {
395 cmdq_error(item, "height %s", cause);
396 free(cause);
397 return (CMD_RETURN_ERROR);
401 w = tty->sx / 2;
402 if (args_has(args, 'w')) {
403 w = args_percentage(args, 'w', 1, tty->sx, tty->sx, &cause);
404 if (cause != NULL) {
405 cmdq_error(item, "width %s", cause);
406 free(cause);
407 return (CMD_RETURN_ERROR);
411 if (w > tty->sx)
412 w = tty->sx;
413 if (h > tty->sy)
414 h = tty->sy;
415 if (!cmd_display_menu_get_position(tc, item, args, &px, &py, w, h))
416 return (CMD_RETURN_NORMAL);
418 value = args_get(args, 'b');
419 if (args_has(args, 'B'))
420 lines = BOX_LINES_NONE;
421 else if (value != NULL) {
422 oe = options_get(o, "popup-border-lines");
423 lines = options_find_choice(options_table_entry(oe), value,
424 &cause);
425 if (cause != NULL) {
426 cmdq_error(item, "popup-border-lines %s", cause);
427 free(cause);
428 return (CMD_RETURN_ERROR);
432 value = args_get(args, 'd');
433 if (value != NULL)
434 cwd = format_single_from_target(item, value);
435 else
436 cwd = xstrdup(server_client_get_cwd(tc, s));
437 if (count == 0)
438 shellcmd = options_get_string(s->options, "default-command");
439 else if (count == 1)
440 shellcmd = args_string(args, 0);
441 if (count <= 1 && (shellcmd == NULL || *shellcmd == '\0')) {
442 shellcmd = NULL;
443 shell = options_get_string(s->options, "default-shell");
444 if (!checkshell(shell))
445 shell = _PATH_BSHELL;
446 cmd_append_argv(&argc, &argv, shell);
447 } else
448 args_to_vector(args, &argc, &argv);
450 if (args_has(args, 'e') >= 1) {
451 env = environ_create();
452 av = args_first_value(args, 'e');
453 while (av != NULL) {
454 environ_put(env, av->string, 0);
455 av = args_next_value(av);
459 if (args_has(args, 'T'))
460 title = format_single_from_target(item, args_get(args, 'T'));
461 else
462 title = xstrdup("");
463 if (args_has(args, 'E') > 1)
464 flags |= POPUP_CLOSEEXITZERO;
465 else if (args_has(args, 'E'))
466 flags |= POPUP_CLOSEEXIT;
467 if (popup_display(flags, lines, item, px, py, w, h, env, shellcmd, argc,
468 argv, cwd, title, tc, s, style, border_style, NULL, NULL) != 0) {
469 cmd_free_argv(argc, argv);
470 if (env != NULL)
471 environ_free(env);
472 free(cwd);
473 free(title);
474 return (CMD_RETURN_NORMAL);
476 if (env != NULL)
477 environ_free(env);
478 free(cwd);
479 free(title);
480 cmd_free_argv(argc, argv);
481 return (CMD_RETURN_WAIT);