aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDominique Martinet <asmadeus@codewreck.org>2017-08-20 14:18:29 +0200
committerDominique Martinet <asmadeus@codewreck.org>2017-08-23 22:03:49 +0200
commit1458a95e65248fede646051d2607c4553e8dcb0c (patch)
tree2905b0e6b183fec41e9ada40d78bebdf9c679776 /include
parentf912316d9b1ed39352efb07e773128b6e4f554aa (diff)
example compositor: loop through xwayland surfaces
Diffstat (limited to 'include')
-rw-r--r--include/wlr/xwayland.h22
1 files changed, 18 insertions, 4 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index 61386700..4d1a726d 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -4,20 +4,34 @@
#include <sys/types.h>
#include <stdbool.h>
#include <wlr/types/wlr_compositor.h>
+#include <xcb/xcb.h>
struct wlr_xwm;
struct wlr_xwayland {
- pid_t pid;
- int display;
- int x_fd[2], wl_fd[2], wm_fd[2];
- struct wl_client *client;
+ pid_t pid;
+ int display;
+ int x_fd[2], wl_fd[2], wm_fd[2];
+ struct wl_client *client;
struct wl_display *wl_display;
struct wlr_compositor *compositor;
time_t server_start;
struct wl_event_source *sigusr1_source;
struct wlr_xwm *xwm;
+ struct wl_list displayable_windows;
+};
+
+struct wlr_x11_window {
+ xcb_window_t window_id;
+ uint32_t surface_id;
+ struct wl_list link;
+
+ struct wl_resource *surface;
+ struct wl_listener surface_destroy_listener;
+ int16_t x, y;
+ uint16_t width, height;
+ bool override_redirect;
};
void wlr_xwayland_destroy(struct wlr_xwayland *wlr_xwayland);