mirror of
https://github.com/swaywm/sway.git
synced 2024-11-18 22:19:14 +00:00
d6cd79c342
This introduces the following `for_each` functions: * root_for_each_workspace * root_for_each_container * output_for_each_workspace * output_for_each_container * workspace_for_each_container And introduces the following `find` functions: * root_find_output * root_find_workspace * root_find_container * output_find_workspace * output_find_container * workspace_find_container * container_find_child And removes the following functions: * container_descendants * container_for_each_descendant * container_find This change is preparing the way for demoting sway_container. Eventually these functions will accept and return sway_outputs, sway_workspaces and sway_containers (meaning a C_CONTAINER or C_VIEW). This change also makes it easy to handle abnormalities like the workspace floating list, root's scratchpad list and (once implemented) root's saved workspaces list for when there's no connected outputs.
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/tree/container.h"
|
|
#include "sway/tree/view.h"
|
|
|
|
static void _configure_view(struct sway_container *con, void *data) {
|
|
if (con->type == C_VIEW) {
|
|
view_autoconfigure(con->sway_view);
|
|
}
|
|
}
|
|
|
|
struct cmd_results *cmd_hide_edge_borders(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "hide_edge_borders", EXPECTED_EQUAL_TO, 1))) {
|
|
return error;
|
|
}
|
|
|
|
if (strcmp(argv[0], "none") == 0) {
|
|
config->hide_edge_borders = E_NONE;
|
|
} else if (strcmp(argv[0], "vertical") == 0) {
|
|
config->hide_edge_borders = E_VERTICAL;
|
|
} else if (strcmp(argv[0], "horizontal") == 0) {
|
|
config->hide_edge_borders = E_HORIZONTAL;
|
|
} else if (strcmp(argv[0], "both") == 0) {
|
|
config->hide_edge_borders = E_BOTH;
|
|
} else if (strcmp(argv[0], "smart") == 0) {
|
|
config->hide_edge_borders = E_SMART;
|
|
} else {
|
|
return cmd_results_new(CMD_INVALID, "hide_edge_borders",
|
|
"Expected 'hide_edge_borders "
|
|
"<none|vertical|horizontal|both|smart>'");
|
|
}
|
|
|
|
root_for_each_container(_configure_view, NULL);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
}
|