aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/layers.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-03-18 15:09:37 -0400
committerDrew DeVault <sir@cmpwn.com>2018-03-27 18:50:09 -0400
commitb31ce4220cea6acede2ae2af1b19a3a7d4b81fc6 (patch)
tree53d07ebecc27cbe9c521b5f3843d656bce330045 /include/rootston/layers.h
parent88eec637a44ede8b521c2aa44d0196c99dd5a0e3 (diff)
Add broken test client and rootston stubs
Diffstat (limited to 'include/rootston/layers.h')
-rw-r--r--include/rootston/layers.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/rootston/layers.h b/include/rootston/layers.h
new file mode 100644
index 00000000..269056ea
--- /dev/null
+++ b/include/rootston/layers.h
@@ -0,0 +1,19 @@
+#ifndef ROOTSTON_LAYERS_H
+#define ROOTSTON_LAYERS_H
+#include <stdbool.h>
+#include <wlr/config.h>
+#include <wlr/types/wlr_box.h>
+#include <wlr/types/wlr_surface.h>
+#include <wlr/types/wlr_layer_shell.h>
+
+struct roots_layer_surface {
+ struct wlr_layer_surface *layer_surface;
+ struct wl_list link;
+
+ struct wl_listener destroy;
+ struct wl_listener map;
+ struct wl_listener unmap;
+ struct wl_listener surface_commit;
+};
+
+#endif