2018-03-18 20:09:37 +01:00
|
|
|
#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;
|
2018-03-21 02:41:18 +01:00
|
|
|
struct wl_listener output_destroy;
|
2018-04-19 18:25:19 +02:00
|
|
|
struct wl_listener new_popup;
|
2018-03-20 04:11:37 +01:00
|
|
|
|
|
|
|
bool configured;
|
|
|
|
struct wlr_box geo;
|
2018-03-18 20:09:37 +01:00
|
|
|
};
|
|
|
|
|
2018-04-19 18:25:19 +02:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
2018-03-29 18:18:13 +02:00
|
|
|
struct roots_output;
|
|
|
|
void arrange_layers(struct roots_output *output);
|
|
|
|
|
2018-03-18 20:09:37 +01:00
|
|
|
#endif
|