56 lines
1.5 KiB
C
56 lines
1.5 KiB
C
#include <string.h>
|
|
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/tree/arrange.h"
|
|
#include "sway/tree/container.h"
|
|
#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;
|
|
}
|
|
struct sway_container *parent = config->handler_context.current_container;
|
|
|
|
if (container_is_floating(parent)) {
|
|
return cmd_results_new(CMD_FAILURE, "layout",
|
|
"Unable to change layout of floating windows");
|
|
}
|
|
|
|
while (parent->type == C_VIEW) {
|
|
parent = parent->parent;
|
|
}
|
|
|
|
if (strcasecmp(argv[0], "default") == 0) {
|
|
parent->layout = parent->prev_layout;
|
|
if (parent->layout == L_NONE) {
|
|
parent->layout = container_get_default_layout(parent);
|
|
}
|
|
} else {
|
|
if (parent->layout != L_TABBED && parent->layout != L_STACKED) {
|
|
parent->prev_layout = parent->layout;
|
|
}
|
|
|
|
if (strcasecmp(argv[0], "splith") == 0) {
|
|
parent->layout = L_HORIZ;
|
|
} else if (strcasecmp(argv[0], "splitv") == 0) {
|
|
parent->layout = L_VERT;
|
|
} else if (strcasecmp(argv[0], "tabbed") == 0) {
|
|
parent->layout = L_TABBED;
|
|
} else if (strcasecmp(argv[0], "stacking") == 0) {
|
|
parent->layout = L_STACKED;
|
|
} else if (strcasecmp(argv[0], "toggle") == 0 && argc == 2 && strcasecmp(argv[1], "split") == 0) {
|
|
if (parent->layout == L_HORIZ) {
|
|
parent->layout = L_VERT;
|
|
} else {
|
|
parent->layout = L_HORIZ;
|
|
}
|
|
}
|
|
}
|
|
|
|
container_notify_subtree_changed(parent);
|
|
arrange_children_of(parent);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
}
|