Implement xdg-decoration

This commit adds a commandline switch (-d) to disable client side
decorations, if possible. In this case, Cage will not draw any
decorations of its own, in order to maximize screen real estate.

The default behavior remains the same, i.e., if -d is not passed,
clients will draw their client side decorations, if any.

Fixes #32
This commit is contained in:
Jente Hidskes 2019-02-17 22:17:11 +01:00
parent 996f641cf0
commit 2166fbdcfb
4 changed files with 76 additions and 6 deletions

View file

@ -2,6 +2,7 @@
#define CG_XDG_SHELL_H
#include <wayland-server.h>
#include <wlr/types/wlr_xdg_decoration_v1.h>
#include <wlr/types/wlr_xdg_shell.h>
#include "view.h"
@ -28,6 +29,15 @@ struct cg_xdg_popup {
struct wl_listener new_popup;
};
struct cg_xdg_decoration {
struct wlr_xdg_toplevel_decoration_v1 *wlr_decoration;
struct cg_server *server;
struct wl_listener destroy;
struct wl_listener request_mode;
};
void handle_xdg_shell_surface_new(struct wl_listener *listener, void *data);
void handle_xdg_toplevel_decoration(struct wl_listener *listener, void *data);
#endif