mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Stacking and tabbed layouts effectively override the titlebar control of the border command, always showing the titlebar to allow navigation. Allow users to also hide the titlebar of stacking/tabbed layouts, through new commands that specify whether titlebars for these layouts should always be visible (the default) or if they should follow the active container's border configuration.
64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
#include "log.h"
|
|
#include "sway/commands.h"
|
|
#include "sway/config.h"
|
|
#include "sway/tree/arrange.h"
|
|
#include "sway/tree/container.h"
|
|
#include "sway/tree/view.h"
|
|
|
|
struct cmd_results *cmd_stacking_titlebar(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "border", EXPECTED_EQUAL_TO, 1))) {
|
|
return error;
|
|
}
|
|
|
|
struct sway_container *container = config->handler_context.container;
|
|
if (!container) {
|
|
return cmd_results_new(CMD_INVALID, "No container to set");
|
|
}
|
|
|
|
if (strcmp(argv[0], "always_visible") == 0) {
|
|
container->pending.stacking_titlebar_follows_border = false;
|
|
} else if (strcmp(argv[0], "follows_border") == 0) {
|
|
container->pending.stacking_titlebar_follows_border = true;
|
|
} else {
|
|
return cmd_results_new(CMD_INVALID,
|
|
"Expected 'stacking_titlebar <always_visible|follows_border>");
|
|
}
|
|
|
|
if (container_is_floating(container)) {
|
|
container_set_geometry_from_content(container);
|
|
}
|
|
|
|
arrange_container(container);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|
|
|
|
struct cmd_results *cmd_tabbed_titlebar(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "border", EXPECTED_EQUAL_TO, 1))) {
|
|
return error;
|
|
}
|
|
|
|
struct sway_container *container = config->handler_context.container;
|
|
if (!container) {
|
|
return cmd_results_new(CMD_INVALID, "No container to set");
|
|
}
|
|
|
|
if (strcmp(argv[0], "always_visible") == 0) {
|
|
container->pending.tabbed_titlebar_follows_border = false;
|
|
} else if (strcmp(argv[0], "follows_border") == 0) {
|
|
container->pending.tabbed_titlebar_follows_border = true;
|
|
} else {
|
|
return cmd_results_new(CMD_INVALID,
|
|
"Expected 'tabbed_titlebar <always_visible|follows_border>");
|
|
}
|
|
|
|
if (container_is_floating(container)) {
|
|
container_set_geometry_from_content(container);
|
|
}
|
|
|
|
arrange_container(container);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|