swayfx/include/sway/layers.h

29 lines
653 B
C
Raw Normal View History

2018-03-29 06:47:22 +11:00
#ifndef _SWAY_LAYERS_H
#define _SWAY_LAYERS_H
#include <stdbool.h>
#include <wlr/types/wlr_box.h>
#include <wlr/types/wlr_surface.h>
2018-09-15 03:21:44 +10:00
#include <wlr/types/wlr_layer_shell_v1.h>
2018-03-29 06:47:22 +11:00
struct sway_layer_surface {
2018-09-15 03:21:44 +10:00
struct wlr_layer_surface_v1 *layer_surface;
2018-03-29 06:47:22 +11:00
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 sway_output;
void arrange_layers(struct sway_output *output);
2018-09-15 03:21:44 +10:00
struct sway_layer_surface *layer_from_wlr_layer_surface_v1(
struct wlr_layer_surface_v1 *layer_surface);
2018-03-29 06:47:22 +11:00
#endif