mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
b887af9a60
If there were no layer surfaces the usable area of the output would be an empty box.
25 lines
549 B
C
25 lines
549 B
C
#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.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;
|
|
struct wl_listener output_destroy;
|
|
|
|
bool configured;
|
|
struct wlr_box geo;
|
|
};
|
|
|
|
struct roots_output;
|
|
void arrange_layers(struct roots_output *output);
|
|
|
|
#endif
|