4 * Copyright (c) 2011 George Nachman <tmux@georgester.com>
5 * Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
16 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
17 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/types.h>
30 * Join or move a pane into another (like split/swap/kill).
33 static enum cmd_retval
cmd_join_pane_exec(struct cmd
*, struct cmdq_item
*);
35 const struct cmd_entry cmd_join_pane_entry
= {
39 .args
= { "bdfhvp:l:s:t:", 0, 0, NULL
},
40 .usage
= "[-bdfhv] [-l size] " CMD_SRCDST_PANE_USAGE
,
42 .source
= { 's', CMD_FIND_PANE
, CMD_FIND_DEFAULT_MARKED
},
43 .target
= { 't', CMD_FIND_PANE
, 0 },
46 .exec
= cmd_join_pane_exec
49 const struct cmd_entry cmd_move_pane_entry
= {
53 .args
= { "bdfhvp:l:s:t:", 0, 0, NULL
},
54 .usage
= "[-bdfhv] [-l size] " CMD_SRCDST_PANE_USAGE
,
56 .source
= { 's', CMD_FIND_PANE
, CMD_FIND_DEFAULT_MARKED
},
57 .target
= { 't', CMD_FIND_PANE
, 0 },
60 .exec
= cmd_join_pane_exec
63 static enum cmd_retval
64 cmd_join_pane_exec(struct cmd
*self
, struct cmdq_item
*item
)
66 struct args
*args
= cmd_get_args(self
);
67 struct cmd_find_state
*current
= cmdq_get_current(item
);
68 struct cmd_find_state
*target
= cmdq_get_target(item
);
69 struct cmd_find_state
*source
= cmdq_get_source(item
);
70 struct session
*dst_s
;
71 struct winlink
*src_wl
, *dst_wl
;
72 struct window
*src_w
, *dst_w
;
73 struct window_pane
*src_wp
, *dst_wp
;
77 enum layout_type type
;
78 struct layout_cell
*lc
;
84 dst_w
= dst_wl
->window
;
85 dst_idx
= dst_wl
->idx
;
86 server_unzoom_window(dst_w
);
90 src_w
= src_wl
->window
;
91 server_unzoom_window(src_w
);
93 if (src_wp
== dst_wp
) {
94 cmdq_error(item
, "source and target panes must be different");
95 return (CMD_RETURN_ERROR
);
98 type
= LAYOUT_TOPBOTTOM
;
99 if (args_has(args
, 'h'))
100 type
= LAYOUT_LEFTRIGHT
;
102 /* If the 'p' flag is dropped then this bit can be moved into 'l'. */
103 if (args_has(args
, 'l') || args_has(args
, 'p')) {
104 if (args_has(args
, 'f')) {
105 if (type
== LAYOUT_TOPBOTTOM
)
110 if (type
== LAYOUT_TOPBOTTOM
)
118 if (args_has(args
, 'l')) {
119 size
= args_percentage_and_expand(args
, 'l', 0, INT_MAX
, curval
,
121 } else if (args_has(args
, 'p')) {
122 size
= args_strtonum_and_expand(args
, 'l', 0, 100, item
,
125 size
= curval
* size
/ 100;
128 cmdq_error(item
, "size %s", cause
);
130 return (CMD_RETURN_ERROR
);
134 if (args_has(args
, 'b'))
135 flags
|= SPAWN_BEFORE
;
136 if (args_has(args
, 'f'))
137 flags
|= SPAWN_FULLSIZE
;
139 lc
= layout_split_pane(dst_wp
, type
, size
, flags
);
141 cmdq_error(item
, "create pane failed: pane too small");
142 return (CMD_RETURN_ERROR
);
145 layout_close_pane(src_wp
);
147 server_client_remove_pane(src_wp
);
148 window_lost_pane(src_w
, src_wp
);
149 TAILQ_REMOVE(&src_w
->panes
, src_wp
, entry
);
151 src_wp
->window
= dst_w
;
152 options_set_parent(src_wp
->options
, dst_w
->options
);
153 src_wp
->flags
|= PANE_STYLECHANGED
;
154 if (flags
& SPAWN_BEFORE
)
155 TAILQ_INSERT_BEFORE(dst_wp
, src_wp
, entry
);
157 TAILQ_INSERT_AFTER(&dst_w
->panes
, dst_wp
, src_wp
, entry
);
158 layout_assign_pane(lc
, src_wp
, 0);
162 server_redraw_window(src_w
);
163 server_redraw_window(dst_w
);
165 if (!args_has(args
, 'd')) {
166 window_set_active_pane(dst_w
, src_wp
, 1);
167 session_select(dst_s
, dst_idx
);
168 cmd_find_from_session(current
, dst_s
, 0);
169 server_redraw_session(dst_s
);
171 server_status_session(dst_s
);
173 if (window_count_panes(src_w
) == 0)
174 server_kill_window(src_w
, 1);
176 notify_window("window-layout-changed", src_w
);
177 notify_window("window-layout-changed", dst_w
);
179 return (CMD_RETURN_NORMAL
);