2010-01-07 20:52:18 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2012-03-03 08:31:18 +00:00
|
|
|
* Copyright (c) 2011 George Nachman <tmux@georgester.com>
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2010-01-07 20:52:18 +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 <paths.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2012-03-03 08:31:18 +00:00
|
|
|
* Join or move a pane into another (like split/swap/kill).
|
2010-01-07 20:52:18 +00:00
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_join_pane_exec(struct cmd *, struct cmdq_item *);
|
2012-03-03 08:31:18 +00:00
|
|
|
|
2010-01-07 20:52:18 +00:00
|
|
|
const struct cmd_entry cmd_join_pane_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "join-pane",
|
|
|
|
.alias = "joinp",
|
|
|
|
|
|
|
|
.args = { "bdhvp:l:s:t:", 0, 0 },
|
|
|
|
.usage = "[-bdhv] [-p percentage|-l size] " CMD_SRCDST_PANE_USAGE,
|
|
|
|
|
2015-12-14 00:31:54 +00:00
|
|
|
.sflag = CMD_PANE_MARKED,
|
|
|
|
.tflag = CMD_PANE,
|
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_join_pane_exec
|
2010-01-07 20:52:18 +00:00
|
|
|
};
|
|
|
|
|
2012-03-03 08:31:18 +00:00
|
|
|
const struct cmd_entry cmd_move_pane_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "move-pane",
|
|
|
|
.alias = "movep",
|
|
|
|
|
|
|
|
.args = { "bdhvp:l:s:t:", 0, 0 },
|
|
|
|
.usage = "[-bdhv] [-p percentage|-l size] " CMD_SRCDST_PANE_USAGE,
|
|
|
|
|
2015-12-14 00:31:54 +00:00
|
|
|
.sflag = CMD_PANE,
|
|
|
|
.tflag = CMD_PANE,
|
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_join_pane_exec
|
2012-03-03 08:31:18 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_join_pane_exec(struct cmd *self, struct cmdq_item *item)
|
2010-01-07 20:52:18 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
|
|
|
struct session *dst_s;
|
|
|
|
struct winlink *src_wl, *dst_wl;
|
|
|
|
struct window *src_w, *dst_w;
|
|
|
|
struct window_pane *src_wp, *dst_wp;
|
|
|
|
char *cause;
|
|
|
|
int size, percentage, dst_idx;
|
|
|
|
enum layout_type type;
|
|
|
|
struct layout_cell *lc;
|
2016-10-10 21:51:39 +00:00
|
|
|
int not_same_window;
|
|
|
|
|
|
|
|
if (self->entry == &cmd_join_pane_entry)
|
|
|
|
not_same_window = 1;
|
|
|
|
else
|
|
|
|
not_same_window = 0;
|
2011-01-04 00:42:46 +00:00
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
dst_s = item->state.tflag.s;
|
|
|
|
dst_wl = item->state.tflag.wl;
|
|
|
|
dst_wp = item->state.tflag.wp;
|
2010-01-07 20:52:18 +00:00
|
|
|
dst_w = dst_wl->window;
|
2010-04-17 23:14:17 +00:00
|
|
|
dst_idx = dst_wl->idx;
|
2013-03-24 09:57:59 +00:00
|
|
|
server_unzoom_window(dst_w);
|
2010-01-07 20:52:18 +00:00
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
src_wl = item->state.sflag.wl;
|
|
|
|
src_wp = item->state.sflag.wp;
|
2010-01-07 20:52:18 +00:00
|
|
|
src_w = src_wl->window;
|
2013-03-24 09:57:59 +00:00
|
|
|
server_unzoom_window(src_w);
|
2010-01-07 20:52:18 +00:00
|
|
|
|
2012-03-03 08:31:18 +00:00
|
|
|
if (not_same_window && src_w == dst_w) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "can't join a pane to its own window");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-01-07 20:52:18 +00:00
|
|
|
}
|
2012-03-03 08:31:18 +00:00
|
|
|
if (!not_same_window && src_wp == dst_wp) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "source and target panes must be different");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2012-03-03 08:31:18 +00:00
|
|
|
}
|
2010-01-07 20:52:18 +00:00
|
|
|
|
|
|
|
type = LAYOUT_TOPBOTTOM;
|
2011-01-04 00:42:46 +00:00
|
|
|
if (args_has(args, 'h'))
|
2010-01-07 20:52:18 +00:00
|
|
|
type = LAYOUT_LEFTRIGHT;
|
|
|
|
|
|
|
|
size = -1;
|
2011-01-23 15:46:49 +00:00
|
|
|
if (args_has(args, 'l')) {
|
|
|
|
size = args_strtonum(args, 'l', 0, INT_MAX, &cause);
|
2011-01-04 00:42:46 +00:00
|
|
|
if (cause != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "size %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-04 00:42:46 +00:00
|
|
|
}
|
|
|
|
} else if (args_has(args, 'p')) {
|
2011-01-23 15:49:10 +00:00
|
|
|
percentage = args_strtonum(args, 'p', 0, 100, &cause);
|
2011-01-04 00:42:46 +00:00
|
|
|
if (cause != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "percentage %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2011-01-04 00:42:46 +00:00
|
|
|
}
|
2010-01-07 20:52:18 +00:00
|
|
|
if (type == LAYOUT_TOPBOTTOM)
|
2011-01-04 00:42:46 +00:00
|
|
|
size = (dst_wp->sy * percentage) / 100;
|
2010-01-07 20:52:18 +00:00
|
|
|
else
|
2011-01-04 00:42:46 +00:00
|
|
|
size = (dst_wp->sx * percentage) / 100;
|
2010-01-07 20:52:18 +00:00
|
|
|
}
|
2016-09-04 17:37:06 +00:00
|
|
|
lc = layout_split_pane(dst_wp, type, size, args_has(args, 'b'), 0);
|
2012-03-03 08:31:18 +00:00
|
|
|
if (lc == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "create pane failed: pane too small");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2010-01-07 20:52:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
layout_close_pane(src_wp);
|
|
|
|
|
2014-04-17 09:13:13 +00:00
|
|
|
window_lost_pane(src_w, src_wp);
|
2010-01-07 20:52:18 +00:00
|
|
|
TAILQ_REMOVE(&src_w->panes, src_wp, entry);
|
|
|
|
|
|
|
|
src_wp->window = dst_w;
|
|
|
|
TAILQ_INSERT_AFTER(&dst_w->panes, dst_wp, src_wp, entry);
|
|
|
|
layout_assign_pane(lc, src_wp);
|
|
|
|
|
|
|
|
recalculate_sizes();
|
|
|
|
|
|
|
|
server_redraw_window(src_w);
|
|
|
|
server_redraw_window(dst_w);
|
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if (!args_has(args, 'd')) {
|
2010-01-07 20:52:18 +00:00
|
|
|
window_set_active_pane(dst_w, src_wp);
|
2010-04-17 23:14:17 +00:00
|
|
|
session_select(dst_s, dst_idx);
|
2010-01-07 20:52:18 +00:00
|
|
|
server_redraw_session(dst_s);
|
|
|
|
} else
|
|
|
|
server_status_session(dst_s);
|
|
|
|
|
2016-08-27 23:35:00 +00:00
|
|
|
if (window_count_panes(src_w) == 0)
|
|
|
|
server_kill_window(src_w);
|
|
|
|
else
|
2016-10-16 22:06:40 +00:00
|
|
|
notify_window("window-layout-changed", src_w);
|
|
|
|
notify_window("window-layout-changed", dst_w);
|
2016-08-27 23:35:00 +00:00
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2010-01-07 20:52:18 +00:00
|
|
|
}
|