Implement pointer-constraints-unstable-v1

This commit is contained in:
Las 2019-01-26 00:45:06 +01:00 committed by emersion
parent 5cb3d4769c
commit cedde21c96
8 changed files with 262 additions and 25 deletions

View file

@ -61,6 +61,9 @@ struct sway_server {
struct wlr_presentation *presentation;
struct wlr_pointer_constraints_v1 *pointer_constraints;
struct wl_listener pointer_constraint;
size_t txn_timeout_ms;
list_t *transactions;
list_t *dirty_nodes;
@ -86,5 +89,6 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data);
#endif
void handle_server_decoration(struct wl_listener *listener, void *data);
void handle_xdg_decoration(struct wl_listener *listener, void *data);
void handle_pointer_constraint(struct wl_listener *listener, void *data);
#endif