summaryrefslogtreecommitdiff
path: root/include/sway/tree/workspace.h
diff options
context:
space:
mode:
authorRyan Dwyer <[email protected]>2018-04-17 09:31:34 +1000
committerRyan Dwyer <[email protected]>2018-04-17 09:31:34 +1000
commitc685ef081f090d1e15428f55426e02f2274312d0 (patch)
treee4997c84099e962a0c00a8fea22be30964cecda3 /include/sway/tree/workspace.h
parentbfd5834f4c1046c234ceaae212e65e045cd51460 (diff)
Create sway_workspace struct.
Diffstat (limited to 'include/sway/tree/workspace.h')
-rw-r--r--include/sway/tree/workspace.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/sway/tree/workspace.h b/include/sway/tree/workspace.h
index 8d49fefb..35e1df3b 100644
--- a/include/sway/tree/workspace.h
+++ b/include/sway/tree/workspace.h
@@ -3,6 +3,13 @@
#include "sway/tree/container.h"
+struct sway_view;
+
+struct sway_workspace {
+ struct sway_container *swayc;
+ struct sway_view *fullscreen;
+};
+
extern char *prev_workspace_name;
char *workspace_next_name(const char *output_name);