aboutsummaryrefslogtreecommitdiffstats
path: root/include/sway/server.h
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-04 06:19:36 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2017-12-04 07:28:47 -0500
commit1870f116ba355fd02c8cc235fe262ccb0a03976b (patch)
tree65c502a9dd4142b66765b8e0e5b39cd0da91be84 /include/sway/server.h
parentMerge pull request #1491 from acrisci/refactor/dimension-to-size (diff)
downloadsway-1870f116ba355fd02c8cc235fe262ccb0a03976b.tar.gz
sway-1870f116ba355fd02c8cc235fe262ccb0a03976b.tar.zst
sway-1870f116ba355fd02c8cc235fe262ccb0a03976b.zip
xwayland shell
Diffstat (limited to 'include/sway/server.h')
-rw-r--r--include/sway/server.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/sway/server.h b/include/sway/server.h
index b0684d15..30b15e75 100644
--- a/include/sway/server.h
+++ b/include/sway/server.h
@@ -30,6 +30,9 @@ struct sway_server {
30 30
31 struct wlr_xdg_shell_v6 *xdg_shell_v6; 31 struct wlr_xdg_shell_v6 *xdg_shell_v6;
32 struct wl_listener xdg_shell_v6_surface; 32 struct wl_listener xdg_shell_v6_surface;
33
34 struct wlr_xwayland *xwayland;
35 struct wl_listener xwayland_surface;
33}; 36};
34 37
35struct sway_server server; 38struct sway_server server;
@@ -42,5 +45,6 @@ void output_add_notify(struct wl_listener *listener, void *data);
42void output_remove_notify(struct wl_listener *listener, void *data); 45void output_remove_notify(struct wl_listener *listener, void *data);
43 46
44void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data); 47void handle_xdg_shell_v6_surface(struct wl_listener *listener, void *data);
48void handle_xwayland_surface(struct wl_listener *listener, void *data);
45 49
46#endif 50#endif