aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/layers.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rootston/layers.h')
-rw-r--r--include/rootston/layers.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/include/rootston/layers.h b/include/rootston/layers.h
deleted file mode 100644
index 0dacf20f..00000000
--- a/include/rootston/layers.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef ROOTSTON_LAYERS_H
-#define ROOTSTON_LAYERS_H
-#include <stdbool.h>
-#include <wlr/types/wlr_box.h>
-#include <wlr/types/wlr_surface.h>
-#include <wlr/types/wlr_layer_shell_v1.h>
-
-struct roots_layer_surface {
- struct wlr_layer_surface_v1 *layer_surface;
- struct wl_list link;
-
- struct wl_listener destroy;
- struct wl_listener map;
- struct wl_listener unmap;
- struct wl_listener surface_commit;
- struct wl_listener output_destroy;
- struct wl_listener new_popup;
-
- bool configured;
- struct wlr_box geo;
-};
-
-struct roots_layer_popup {
- struct roots_layer_surface *parent;
- struct wlr_xdg_popup *wlr_popup;
- struct wl_listener map;
- struct wl_listener unmap;
- struct wl_listener destroy;
- struct wl_listener commit;
-};
-
-struct roots_output;
-void arrange_layers(struct roots_output *output);
-
-#endif