aboutsummaryrefslogtreecommitdiff
path: root/include/wlr/xwayland.h
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2017-09-29 18:28:38 +0200
committeremersion <contact@emersion.fr>2017-09-29 18:28:38 +0200
commitd8c86431e0b6a72f5cccd8f9e09059aa9eff9fd3 (patch)
tree632349304f49c977bdd7bf343d1fd38d677772ae /include/wlr/xwayland.h
parentf2b03b2ec13a4b4eb940366852580ff0e6454a40 (diff)
xwayland: add signals for configure, set_{class,title}
Diffstat (limited to 'include/wlr/xwayland.h')
-rw-r--r--include/wlr/xwayland.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h
index ebb6efb7..4e59d9c5 100644
--- a/include/wlr/xwayland.h
+++ b/include/wlr/xwayland.h
@@ -47,18 +47,28 @@ struct wlr_xwayland_surface {
struct {
struct wl_signal destroy;
+
+ struct wl_signal request_configure;
+
+ struct wl_signal set_title;
+ struct wl_signal set_class;
} events;
void *data;
};
+struct wlr_xwayland_surface_configure_event {
+ struct wlr_xwayland_surface *surface;
+ int16_t x, y;
+ uint16_t width, height;
+};
+
void wlr_xwayland_destroy(struct wlr_xwayland *wlr_xwayland);
struct wlr_xwayland *wlr_xwayland_create(struct wl_display *wl_display,
struct wlr_compositor *compositor);
void wlr_xwayland_surface_activate(struct wlr_xwayland *wlr_xwayland,
struct wlr_xwayland_surface *surface);
-void wlr_xwayland_surface_configure(struct wlr_xwm *xwm,
- struct wlr_xwayland_surface *surface, uint32_t x, uint32_t y,
- uint32_t width, uint32_t height);
+void wlr_xwayland_surface_configure(struct wlr_xwayland *wlr_xwayland,
+ struct wlr_xwayland_surface *surface);
#endif