2018-02-23 10:03:46 +11:00
|
|
|
#include <string.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include "sway/commands.h"
|
2018-04-28 11:26:14 +10:00
|
|
|
#include "sway/tree/arrange.h"
|
2018-03-30 14:41:33 +11:00
|
|
|
#include "sway/tree/container.h"
|
2018-02-23 10:03:46 +11:00
|
|
|
#include "log.h"
|
|
|
|
|
|
|
|
struct cmd_results *cmd_layout(int argc, char **argv) {
|
|
|
|
struct cmd_results *error = NULL;
|
|
|
|
if ((error = checkarg(argc, "layout", EXPECTED_MORE_THAN, 0))) {
|
|
|
|
return error;
|
|
|
|
}
|
2018-03-30 14:41:33 +11:00
|
|
|
struct sway_container *parent = config->handler_context.current_container;
|
2018-02-23 10:03:46 +11:00
|
|
|
|
2018-05-25 09:26:23 +10:00
|
|
|
if (container_is_floating(parent)) {
|
|
|
|
return cmd_results_new(CMD_FAILURE, "layout",
|
|
|
|
"Unable to change layout of floating windows");
|
2018-02-23 10:03:46 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
while (parent->type == C_VIEW) {
|
|
|
|
parent = parent->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "default") == 0) {
|
2018-04-26 10:14:18 +10:00
|
|
|
parent->layout = parent->prev_layout;
|
2018-02-23 10:03:46 +11:00
|
|
|
if (parent->layout == L_NONE) {
|
2018-04-26 10:14:18 +10:00
|
|
|
parent->layout = container_get_default_layout(parent);
|
2018-02-23 10:03:46 +11:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (parent->layout != L_TABBED && parent->layout != L_STACKED) {
|
|
|
|
parent->prev_layout = parent->layout;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcasecmp(argv[0], "splith") == 0) {
|
2018-04-26 10:14:18 +10:00
|
|
|
parent->layout = L_HORIZ;
|
2018-02-23 10:03:46 +11:00
|
|
|
} else if (strcasecmp(argv[0], "splitv") == 0) {
|
2018-04-26 10:14:18 +10:00
|
|
|
parent->layout = L_VERT;
|
2018-05-19 22:54:50 +10:00
|
|
|
} else if (strcasecmp(argv[0], "tabbed") == 0) {
|
|
|
|
parent->layout = L_TABBED;
|
2018-05-21 22:58:46 +10:00
|
|
|
} else if (strcasecmp(argv[0], "stacking") == 0) {
|
|
|
|
parent->layout = L_STACKED;
|
2018-02-23 10:03:46 +11:00
|
|
|
} else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) {
|
2018-04-26 10:14:18 +10:00
|
|
|
if (parent->layout == L_HORIZ) {
|
|
|
|
parent->layout = L_VERT;
|
2018-02-23 10:03:46 +11:00
|
|
|
} else {
|
2018-04-26 10:14:18 +10:00
|
|
|
parent->layout = L_HORIZ;
|
2018-02-23 10:03:46 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-25 21:07:59 +10:00
|
|
|
container_notify_subtree_changed(parent);
|
2018-07-14 23:14:55 +10:00
|
|
|
arrange_windows(parent);
|
2018-02-23 10:03:46 +11:00
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|