From 9755684fb0fd665a65be2a3cbabc5d502244c459 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 23 Mar 2021 11:31:18 +0100 Subject: Implement xdg-activation-v1 See https://github.com/swaywm/wlroots/pull/2718. --- include/sway/server.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include') diff --git a/include/sway/server.h b/include/sway/server.h index 5a2562b3..3a5670d9 100644 --- a/include/sway/server.h +++ b/include/sway/server.h @@ -87,6 +87,9 @@ struct sway_server { struct wlr_text_input_manager_v3 *text_input; struct wlr_foreign_toplevel_manager_v1 *foreign_toplevel_manager; + struct wlr_xdg_activation_v1 *xdg_activation_v1; + struct wl_listener xdg_activation_v1_request_activate; + // The timeout for transactions, after which a transaction is applied // regardless of readiness. size_t txn_timeout_ms; @@ -141,5 +144,7 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data); 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); +void xdg_activation_v1_handle_request_activate(struct wl_listener *listener, + void *data); #endif -- cgit v1.2.3-54-g00ecf