2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* 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 "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Swap one window with another.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_swap_window_exec(struct cmd *, struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_swap_window_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "swap-window",
|
|
|
|
.alias = "swapw",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "ds:t:", 0, 0, NULL },
|
2015-12-13 21:53:57 +00:00
|
|
|
.usage = "[-d] " CMD_SRCDST_WINDOW_USAGE,
|
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.source = { 's', CMD_FIND_WINDOW, CMD_FIND_DEFAULT_MARKED },
|
|
|
|
.target = { 't', CMD_FIND_WINDOW, 0 },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_swap_window_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_swap_window_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2020-04-13 08:26:27 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct cmd_find_state *source = cmdq_get_source(item);
|
|
|
|
struct cmd_find_state *target = cmdq_get_target(item);
|
|
|
|
struct session *src = source->s, *dst = target->s;
|
2009-10-10 10:02:48 +00:00
|
|
|
struct session_group *sg_src, *sg_dst;
|
2020-04-13 10:59:58 +00:00
|
|
|
struct winlink *wl_src = source->wl, *wl_dst = target->wl;
|
2016-12-14 17:38:59 +00:00
|
|
|
struct window *w_src, *w_dst;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2017-02-09 15:04:53 +00:00
|
|
|
sg_src = session_group_contains(src);
|
|
|
|
sg_dst = session_group_contains(dst);
|
2015-12-13 14:32:38 +00:00
|
|
|
|
2020-04-13 10:59:58 +00:00
|
|
|
if (src != dst &&
|
|
|
|
sg_src != NULL &&
|
|
|
|
sg_dst != NULL &&
|
2015-12-13 14:32:38 +00:00
|
|
|
sg_src == sg_dst) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't move window, sessions are grouped");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-10-10 10:02:48 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
if (wl_dst->window == wl_src->window)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2016-12-14 17:38:59 +00:00
|
|
|
w_dst = wl_dst->window;
|
|
|
|
TAILQ_REMOVE(&w_dst->winlinks, wl_dst, wentry);
|
|
|
|
w_src = wl_src->window;
|
|
|
|
TAILQ_REMOVE(&w_src->winlinks, wl_src, wentry);
|
|
|
|
|
|
|
|
wl_dst->window = w_src;
|
|
|
|
TAILQ_INSERT_TAIL(&w_src->winlinks, wl_dst, wentry);
|
|
|
|
wl_src->window = w_dst;
|
|
|
|
TAILQ_INSERT_TAIL(&w_dst->winlinks, wl_src, wentry);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2020-04-13 08:26:27 +00:00
|
|
|
if (args_has(args, 'd')) {
|
2019-08-26 16:35:41 +00:00
|
|
|
session_select(dst, wl_dst->idx);
|
2009-06-01 22:58:49 +00:00
|
|
|
if (src != dst)
|
2019-08-26 16:35:41 +00:00
|
|
|
session_select(src, wl_src->idx);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2009-10-10 10:02:48 +00:00
|
|
|
session_group_synchronize_from(src);
|
|
|
|
server_redraw_session_group(src);
|
|
|
|
if (src != dst) {
|
|
|
|
session_group_synchronize_from(dst);
|
|
|
|
server_redraw_session_group(dst);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
recalculate_sizes();
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|