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.
18 lines
364 B
18 lines
364 B
#ifndef _SWAY_DECORATION_H
|
|
#define _SWAY_DECORATION_H
|
|
|
|
#include <wlr/types/wlr_server_decoration.h>
|
|
|
|
struct sway_server_decoration {
|
|
struct wlr_server_decoration *wlr_server_decoration;
|
|
struct wl_list link;
|
|
|
|
struct wl_listener destroy;
|
|
struct wl_listener mode;
|
|
};
|
|
|
|
struct sway_server_decoration *decoration_from_surface(
|
|
struct wlr_surface *surface);
|
|
|
|
#endif
|