aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ronan Pigott <ronan@rjp.ie>2022-11-30 11:54:50 -0700
committerLibravatar Ronan Pigott <ronan@rjp.ie>2023-02-05 00:53:47 -0700
commit4cda9ee3a3aa122f3f1a6f570d8befa78083c1b5 (patch)
treedbb1675b116264d102847d929dec5a9c76c3c88d /include
parentlauncher: make launcher context seat aware (diff)
downloadsway-4cda9ee3a3aa122f3f1a6f570d8befa78083c1b5.tar.gz
sway-4cda9ee3a3aa122f3f1a6f570d8befa78083c1b5.tar.zst
sway-4cda9ee3a3aa122f3f1a6f570d8befa78083c1b5.zip
launcher: support external launcher tokens
Diffstat (limited to 'include')
-rw-r--r--include/sway/server.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/server.h b/include/sway/server.h
index 309d9d3e..a65843ce 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -114,6 +114,7 @@ struct sway_server {
114 114
115 struct wlr_xdg_activation_v1 *xdg_activation_v1; 115 struct wlr_xdg_activation_v1 *xdg_activation_v1;
116 struct wl_listener xdg_activation_v1_request_activate; 116 struct wl_listener xdg_activation_v1_request_activate;
117 struct wl_listener xdg_activation_v1_new_token;
117 118
118 struct wl_list pending_launcher_ctxs; // launcher_ctx::link 119 struct wl_list pending_launcher_ctxs; // launcher_ctx::link
119 120
@@ -175,6 +176,8 @@ void handle_xdg_decoration(struct wl_listener *listener, void *data);
175void handle_pointer_constraint(struct wl_listener *listener, void *data); 176void handle_pointer_constraint(struct wl_listener *listener, void *data);
176void xdg_activation_v1_handle_request_activate(struct wl_listener *listener, 177void xdg_activation_v1_handle_request_activate(struct wl_listener *listener,
177 void *data); 178 void *data);
179void xdg_activation_v1_handle_new_token(struct wl_listener *listener,
180 void *data);
178 181
179void set_rr_scheduling(void); 182void set_rr_scheduling(void);
180 183