swayfx/sway/commands/floating.c

51 lines
1.6 KiB
C
Raw Normal View History

2018-05-04 22:24:25 +10:00
#include <string.h>
#include <strings.h>
#include "sway/commands.h"
#include "sway/input/seat.h"
#include "sway/ipc-server.h"
#include "sway/output.h"
2018-05-04 22:24:25 +10:00
#include "sway/tree/arrange.h"
#include "sway/tree/container.h"
#include "sway/tree/layout.h"
#include "sway/tree/view.h"
2018-05-04 22:24:25 +10:00
#include "list.h"
struct cmd_results *cmd_floating(int argc, char **argv) {
struct cmd_results *error = NULL;
if ((error = checkarg(argc, "floating", EXPECTED_EQUAL_TO, 1))) {
return error;
}
struct sway_container *container =
config->handler_context.current_container;
if (container->type == C_WORKSPACE && container->children->length == 0) {
return cmd_results_new(CMD_INVALID, "floating",
"Can't float an empty workspace");
}
if (container->type == C_WORKSPACE) {
// Wrap the workspace's children in a container so we can float it
struct sway_container *workspace = container;
container = container_wrap_children(container);
workspace->layout = L_HORIZ;
seat_set_focus(config->handler_context.seat, container);
2018-05-04 22:24:25 +10:00
}
bool wants_floating;
if (strcasecmp(argv[0], "enable") == 0) {
wants_floating = true;
} else if (strcasecmp(argv[0], "disable") == 0) {
wants_floating = false;
} else if (strcasecmp(argv[0], "toggle") == 0) {
wants_floating = !container_is_floating(container);
2018-05-04 22:24:25 +10:00
} else {
return cmd_results_new(CMD_FAILURE, "floating",
2018-05-24 22:30:44 +10:00
"Expected 'floating <enable|disable|toggle>'");
2018-05-04 22:24:25 +10:00
}
2018-05-24 22:30:44 +10:00
container_set_floating(container, wants_floating);
2018-05-04 22:24:25 +10:00
struct sway_container *workspace = container_parent(container, C_WORKSPACE);
arrange_windows(workspace);
2018-05-04 22:24:25 +10:00
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
}