[BACK]Return to cmd-select-pane.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Annotation of src/usr.bin/tmux/cmd-select-pane.c, Revision 1.25

1.25    ! nicm        1: /* $OpenBSD: cmd-select-pane.c,v 1.24 2015/06/04 11:43:51 nicm Exp $ */
1.1       nicm        2:
                      3: /*
                      4:  * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
                      5:  *
                      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.
                      9:  *
                     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.
                     17:  */
                     18:
                     19: #include <sys/types.h>
                     20:
                     21: #include "tmux.h"
                     22:
                     23: /*
                     24:  * Select pane.
                     25:  */
                     26:
1.15      nicm       27: enum cmd_retval         cmd_select_pane_exec(struct cmd *, struct cmd_q *);
1.1       nicm       28:
                     29: const struct cmd_entry cmd_select_pane_entry = {
                     30:        "select-pane", "selectp",
1.24      nicm       31:        "DdegLlMmP:Rt:U", 0, 0,
                     32:        "[-DdegLlMmRU] [-P style] " CMD_TARGET_PANE_USAGE,
1.11      nicm       33:        0,
                     34:        cmd_select_pane_exec
1.1       nicm       35: };
                     36:
1.12      nicm       37: const struct cmd_entry cmd_last_pane_entry = {
                     38:        "last-pane", "lastp",
1.18      nicm       39:        "det:", 0, 0,
                     40:        "[-de] " CMD_TARGET_WINDOW_USAGE,
1.12      nicm       41:        0,
                     42:        cmd_select_pane_exec
                     43: };
1.10      nicm       44:
1.14      nicm       45: enum cmd_retval
1.15      nicm       46: cmd_select_pane_exec(struct cmd *self, struct cmd_q *cmdq)
1.1       nicm       47: {
1.11      nicm       48:        struct args             *args = self->args;
1.1       nicm       49:        struct winlink          *wl;
1.25    ! nicm       50:        struct window           *w;
1.24      nicm       51:        struct session          *s;
                     52:        struct window_pane      *wp, *lastwp, *markedwp;
1.21      nicm       53:        const char              *style;
1.12      nicm       54:
                     55:        if (self->entry == &cmd_last_pane_entry || args_has(args, 'l')) {
1.15      nicm       56:                wl = cmd_find_window(cmdq, args_get(args, 't'), NULL);
1.12      nicm       57:                if (wl == NULL)
1.14      nicm       58:                        return (CMD_RETURN_ERROR);
1.25    ! nicm       59:                w = wl->window;
1.12      nicm       60:
1.25    ! nicm       61:                if (w->last == NULL) {
1.15      nicm       62:                        cmdq_error(cmdq, "no last pane");
1.14      nicm       63:                        return (CMD_RETURN_ERROR);
1.12      nicm       64:                }
1.13      nicm       65:
1.18      nicm       66:                if (args_has(self->args, 'e'))
1.25    ! nicm       67:                        w->last->flags &= ~PANE_INPUTOFF;
1.18      nicm       68:                else if (args_has(self->args, 'd'))
1.25    ! nicm       69:                        w->last->flags |= PANE_INPUTOFF;
1.18      nicm       70:                else {
1.25    ! nicm       71:                        server_unzoom_window(w);
        !            72:                        window_redraw_active_switch(w, w->last);
        !            73:                        if (window_set_active_pane(w, w->last)) {
        !            74:                                server_status_window(w);
        !            75:                                server_redraw_window_borders(w);
        !            76:                        }
1.18      nicm       77:                }
1.13      nicm       78:
1.14      nicm       79:                return (CMD_RETURN_NORMAL);
1.12      nicm       80:        }
1.1       nicm       81:
1.24      nicm       82:        if ((wl = cmd_find_pane(cmdq, args_get(args, 't'), &s, &wp)) == NULL)
1.14      nicm       83:                return (CMD_RETURN_ERROR);
1.25    ! nicm       84:        w = wl->window;
1.24      nicm       85:
                     86:        if (args_has(args, 'm') || args_has(args, 'M')) {
                     87:                if (args_has(args, 'm') && !window_pane_visible(wp))
                     88:                        return (CMD_RETURN_NORMAL);
                     89:                lastwp = marked_window_pane;
                     90:
                     91:                if (args_has(args, 'M') || server_is_marked(s, wl, wp))
                     92:                        server_clear_marked();
                     93:                else
                     94:                        server_set_marked(s, wl, wp);
                     95:                markedwp = marked_window_pane;
                     96:
                     97:                if (lastwp != NULL) {
                     98:                        server_redraw_window_borders(lastwp->window);
                     99:                        server_status_window(lastwp->window);
                    100:                }
                    101:                if (markedwp != NULL) {
                    102:                        server_redraw_window_borders(markedwp->window);
                    103:                        server_status_window(markedwp->window);
                    104:                }
                    105:                return (CMD_RETURN_NORMAL);
                    106:        }
1.1       nicm      107:
1.21      nicm      108:        if (args_has(self->args, 'P') || args_has(self->args, 'g')) {
                    109:                if (args_has(args, 'P')) {
                    110:                        style = args_get(args, 'P');
                    111:                        if (style_parse(&grid_default_cell, &wp->colgc,
                    112:                            style) == -1) {
                    113:                                cmdq_error(cmdq, "bad style: %s", style);
                    114:                                return (CMD_RETURN_ERROR);
                    115:                        }
                    116:                        wp->flags |= PANE_REDRAW;
                    117:                }
                    118:                if (args_has(self->args, 'g'))
                    119:                        cmdq_print(cmdq, "%s", style_tostring(&wp->colgc));
                    120:                return (CMD_RETURN_NORMAL);
1.1       nicm      121:        }
1.10      nicm      122:
1.11      nicm      123:        if (args_has(self->args, 'L'))
1.10      nicm      124:                wp = window_pane_find_left(wp);
1.11      nicm      125:        else if (args_has(self->args, 'R'))
1.10      nicm      126:                wp = window_pane_find_right(wp);
1.11      nicm      127:        else if (args_has(self->args, 'U'))
1.10      nicm      128:                wp = window_pane_find_up(wp);
1.11      nicm      129:        else if (args_has(self->args, 'D'))
1.10      nicm      130:                wp = window_pane_find_down(wp);
1.23      nicm      131:        if (wp == NULL)
                    132:                return (CMD_RETURN_NORMAL);
1.10      nicm      133:
1.22      nicm      134:        if (args_has(self->args, 'e')) {
1.18      nicm      135:                wp->flags &= ~PANE_INPUTOFF;
1.22      nicm      136:                return (CMD_RETURN_NORMAL);
                    137:        }
                    138:        if (args_has(self->args, 'd')) {
1.18      nicm      139:                wp->flags |= PANE_INPUTOFF;
1.22      nicm      140:                return (CMD_RETURN_NORMAL);
                    141:        }
                    142:
1.25    ! nicm      143:        if (wp == w->active)
1.22      nicm      144:                return (CMD_RETURN_NORMAL);
                    145:        server_unzoom_window(wp->window);
                    146:        if (!window_pane_visible(wp)) {
                    147:                cmdq_error(cmdq, "pane not visible");
                    148:                return (CMD_RETURN_ERROR);
                    149:        }
1.25    ! nicm      150:        window_redraw_active_switch(w, wp);
        !           151:        if (window_set_active_pane(w, wp)) {
        !           152:                server_status_window(w);
        !           153:                server_redraw_window_borders(w);
1.18      nicm      154:        }
1.1       nicm      155:
1.14      nicm      156:        return (CMD_RETURN_NORMAL);
1.1       nicm      157: }