2018-03-28 19:47:22 +00:00
|
|
|
#ifndef _SWAY_LAYERS_H
|
|
|
|
#define _SWAY_LAYERS_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <wlr/types/wlr_box.h>
|
|
|
|
#include <wlr/types/wlr_surface.h>
|
|
|
|
#include <wlr/types/wlr_layer_shell.h>
|
|
|
|
|
|
|
|
struct sway_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;
|
|
|
|
struct wl_listener output_destroy;
|
|
|
|
|
|
|
|
bool configured;
|
|
|
|
struct wlr_box geo;
|
|
|
|
};
|
|
|
|
|
2018-03-28 20:38:11 +00:00
|
|
|
struct sway_output;
|
|
|
|
void arrange_layers(struct sway_output *output);
|
|
|
|
|
2018-06-30 05:00:24 +00:00
|
|
|
struct sway_layer_surface *layer_from_wlr_layer_surface(
|
|
|
|
struct wlr_layer_surface *layer_surface);
|
|
|
|
|
2018-03-28 19:47:22 +00:00
|
|
|
#endif
|