You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
425 B
20 lines
425 B
7 years ago
|
#ifndef ROOTSTON_LAYERS_H
|
||
|
#define ROOTSTON_LAYERS_H
|
||
|
#include <stdbool.h>
|
||
|
#include <wlr/config.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;
|
||
|
};
|
||
|
|
||
|
#endif
|