aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/layers.h
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-03-28 15:47:22 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-03-28 15:47:22 -0400
commit0c8a64942e087038806b353949c900e03fd764a8 (patch)
treea427ff9d8702ad5dbc6e5ede8851930662d010ef /include/sway/layers.h
parentMerge pull request #1638 from swaywm/swaybg-layers (diff)
downloadsway-0c8a64942e087038806b353949c900e03fd764a8.tar.gz
sway-0c8a64942e087038806b353949c900e03fd764a8.tar.zst
sway-0c8a64942e087038806b353949c900e03fd764a8.zip
Add initial layer shell skeleton
Diffstat (limited to 'include/sway/layers.h')
-rw-r--r--include/sway/layers.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/sway/layers.h b/include/sway/layers.h
new file mode 100644
index 00000000..73fb7cb8
--- /dev/null
+++ b/include/sway/layers.h
@@ -0,0 +1,24 @@
1#ifndef _SWAY_LAYERS_H
2#define _SWAY_LAYERS_H
3#include <stdbool.h>
4#include <wlr/types/wlr_box.h>
5#include <wlr/types/wlr_surface.h>
6#include <wlr/types/wlr_layer_shell.h>
7
8struct sway_layer_surface {
9 struct wlr_layer_surface *layer_surface;
10 struct wl_list link;
11
12 struct wl_listener destroy;
13 struct wl_listener map;
14 struct wl_listener unmap;
15 struct wl_listener surface_commit;
16 struct wl_listener output_destroy;
17 struct wl_listener output_mode;
18 struct wl_listener output_transform;
19
20 bool configured;
21 struct wlr_box geo;
22};
23
24#endif