2023-03-23 20:55:14 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2023-05-13 16:10:33 +03:00
|
|
|
#ifndef LABWC_DECORATIONS_H
|
|
|
|
|
#define LABWC_DECORATIONS_H
|
2023-03-23 20:55:14 +01:00
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
2025-02-08 15:48:50 +01:00
|
|
|
void kde_server_decoration_finish(struct server *server);
|
|
|
|
|
void xdg_server_decoration_finish(struct server *server);
|
|
|
|
|
|
2023-05-13 16:10:33 +03:00
|
|
|
#endif /* LABWC_DECORATIONS_H */
|