Feedback for fullscreen.

This commit is contained in:
Ryan Dwyer 2018-04-17 08:11:50 +10:00
parent 52420cc24d
commit bfd5834f4c
7 changed files with 13 additions and 41 deletions

View file

@ -8,12 +8,6 @@
// fullscreen toggle|enable|disable
struct cmd_results *cmd_fullscreen(int argc, char **argv) {
struct cmd_results *error = NULL;
if (config->reading) return cmd_results_new(CMD_FAILURE, "fullscreen", "Can't be used in config file.");
if (!config->active) return cmd_results_new(CMD_FAILURE, "fullscreen", "Can only be used when sway is running.");
if ((error = checkarg(argc, "fullscreen", EXPECTED_AT_LEAST, 1))) {
return error;
}
struct sway_container *container =
config->handler_context.current_container;
if (container->type != C_VIEW) {
@ -23,15 +17,15 @@ struct cmd_results *cmd_fullscreen(int argc, char **argv) {
struct sway_view *view = container->sway_view;
bool wants_fullscreen;
if (strcmp(argv[0], "enable") == 0) {
if (argc == 0 || strcmp(argv[0], "toggle") == 0) {
wants_fullscreen = !view->is_fullscreen;
} else if (strcmp(argv[0], "enable") == 0) {
wants_fullscreen = true;
} else if (strcmp(argv[0], "disable") == 0) {
wants_fullscreen = false;
} else if (strcmp(argv[0], "toggle") == 0) {
wants_fullscreen = !view->is_fullscreen;
} else {
return cmd_results_new(CMD_INVALID, "fullscreen",
"Expected 'fullscreen <enable|disable|toggle>'");
"Expected 'fullscreen' or fullscreen <enable|disable|toggle>'");
}
view_set_fullscreen(view, wants_fullscreen);