4 * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
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>
27 * Switch client to a different session.
30 void cmd_switch_client_key_binding(struct cmd
*, int);
31 int cmd_switch_client_exec(struct cmd
*, struct cmd_ctx
*);
33 const struct cmd_entry cmd_switch_client_entry
= {
34 "switch-client", "switchc",
36 "[-lnp] [-c target-client] [-t target-session]",
38 cmd_switch_client_key_binding
,
40 cmd_switch_client_exec
44 cmd_switch_client_key_binding(struct cmd
*self
, int key
)
46 self
->args
= args_create(0);
49 args_set(self
->args
, 'p', NULL
);
52 args_set(self
->args
, 'n', NULL
);
55 args_set(self
->args
, 'l', NULL
);
61 cmd_switch_client_exec(struct cmd
*self
, struct cmd_ctx
*ctx
)
63 struct args
*args
= self
->args
;
67 if ((c
= cmd_find_client(ctx
, args_get(args
, 'c'))) == NULL
)
71 if (args_has(args
, 'n')) {
72 if ((s
= session_next_session(c
->session
)) == NULL
) {
73 ctx
->error(ctx
, "can't find next session");
76 } else if (args_has(args
, 'p')) {
77 if ((s
= session_previous_session(c
->session
)) == NULL
) {
78 ctx
->error(ctx
, "can't find previous session");
81 } else if (args_has(args
, 'l')) {
82 if (c
->last_session
!= NULL
&& session_alive(c
->last_session
))
85 ctx
->error(ctx
, "can't find last session");
89 s
= cmd_find_session(ctx
, args_get(args
, 't'), 0);
93 if (c
->session
!= NULL
)
94 c
->last_session
= c
->session
;
96 session_update_activity(s
);
99 server_check_unattached();
100 server_redraw_client(c
);