summaryrefslogtreecommitdiffstats
path: root/sway/commands/fullscreen.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/fullscreen.c')
-rw-r--r--sway/commands/fullscreen.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/sway/commands/fullscreen.c b/sway/commands/fullscreen.c
new file mode 100644
index 00000000..8692e92d
--- /dev/null
+++ b/sway/commands/fullscreen.c
@@ -0,0 +1,37 @@
1#include <wlr/types/wlr_wl_shell.h>
2#include "log.h"
3#include "sway/commands.h"
4#include "sway/config.h"
5#include "sway/tree/container.h"
6#include "sway/tree/view.h"
7#include "sway/tree/layout.h"
8
9struct cmd_results *cmd_fullscreen(int argc, char **argv) {
10 struct cmd_results *error = NULL;
11 if ((error = checkarg(argc, "fullscreen", EXPECTED_LESS_THAN, 2))) {
12 return error;
13 }
14 struct sway_container *container =
15 config->handler_context.current_container;
16 if (container->type != C_VIEW) {
17 return cmd_results_new(CMD_INVALID, "fullscreen",
18 "Only views can fullscreen");
19 }
20 struct sway_view *view = container->sway_view;
21 bool wants_fullscreen;
22
23 if (argc == 0 || strcmp(argv[0], "toggle") == 0) {
24 wants_fullscreen = !view->is_fullscreen;
25 } else if (strcmp(argv[0], "enable") == 0) {
26 wants_fullscreen = true;
27 } else if (strcmp(argv[0], "disable") == 0) {
28 wants_fullscreen = false;
29 } else {
30 return cmd_results_new(CMD_INVALID, "fullscreen",
31 "Expected 'fullscreen' or 'fullscreen <enable|disable|toggle>'");
32 }
33
34 view_set_fullscreen(view, wants_fullscreen);
35
36 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
37}