2023-03-23 20:55:14 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
|
#ifndef __LAB_DECORATIONS_H
|
|
|
|
|
#define __LAB_DECORATIONS_H
|
|
|
|
|
|
|
|
|
|
struct server;
|
2023-03-22 19:56:59 +00:00
|
|
|
struct view;
|
|
|
|
|
struct wlr_surface;
|
2023-03-23 20:55:14 +01:00
|
|
|
|
2023-03-22 19:56:59 +00:00
|
|
|
void kde_server_decoration_init(struct server *server);
|
2023-03-23 20:55:14 +01:00
|
|
|
void xdg_server_decoration_init(struct server *server);
|
|
|
|
|
|
2023-03-22 19:56:59 +00:00
|
|
|
void kde_server_decoration_update_default(void);
|
|
|
|
|
void kde_server_decoration_set_view(struct view *view, struct wlr_surface *surface);
|
|
|
|
|
|
2023-03-23 20:55:14 +01:00
|
|
|
#endif /* __LAB_DECORATIONS_H */
|