2a684cad5f
Patch tested by compiling with `__attribute__ ((format (printf, 2, 3)))` applied to `cmd_results_new`. String usage constants have been converted from pointers to arrays when encountered. General handler format strings were sometimes modified to include the old input string, especially for unknown command errors.
52 lines
1.6 KiB
C
52 lines
1.6 KiB
C
#include <string.h>
|
|
#include <strings.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/input/seat.h"
|
|
#include "sway/ipc-server.h"
|
|
#include "sway/output.h"
|
|
#include "sway/tree/arrange.h"
|
|
#include "sway/tree/container.h"
|
|
#include "sway/tree/view.h"
|
|
#include "sway/tree/workspace.h"
|
|
#include "list.h"
|
|
#include "util.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;
|
|
}
|
|
if (!root->outputs->length) {
|
|
return cmd_results_new(CMD_INVALID,
|
|
"Can't run this command while there's no outputs connected.");
|
|
}
|
|
struct sway_container *container = config->handler_context.container;
|
|
struct sway_workspace *workspace = config->handler_context.workspace;
|
|
if (!container && workspace->tiling->length == 0) {
|
|
return cmd_results_new(CMD_INVALID, "Can't float an empty workspace");
|
|
}
|
|
if (!container) {
|
|
// Wrap the workspace's children in a container so we can float it
|
|
container = workspace_wrap_children(workspace);
|
|
workspace->layout = L_HORIZ;
|
|
seat_set_focus_container(config->handler_context.seat, container);
|
|
}
|
|
|
|
// If the container is in a floating split container,
|
|
// operate on the split container instead of the child.
|
|
if (container_is_floating_or_child(container)) {
|
|
while (container->parent) {
|
|
container = container->parent;
|
|
}
|
|
}
|
|
|
|
bool wants_floating =
|
|
parse_boolean(argv[0], container_is_floating(container));
|
|
|
|
container_set_floating(container, wants_floating);
|
|
|
|
arrange_workspace(container->workspace);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|