diff options
author | emersion <contact@emersion.fr> | 2017-09-29 22:26:03 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-09-29 22:26:03 +0200 |
commit | 97346e7a1be87f1b98683e6f42f25a91b4813994 (patch) | |
tree | f9b9b4870d721382a3aeb4c266d96c98f986a903 /include/wlr | |
parent | 98707c16adc405d6ffaf9fe0a8f466a40f50ef85 (diff) |
xwayland: add state support
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/xwayland.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index f2484889..2a7e3240 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -44,6 +44,7 @@ struct wlr_xwayland_surface { char *class; char *instance; struct wlr_xwayland_surface *parent; + list_t *state; // list of xcb_atom_t struct { struct wl_signal destroy; @@ -53,6 +54,7 @@ struct wlr_xwayland_surface { struct wl_signal set_title; struct wl_signal set_class; struct wl_signal set_parent; + struct wl_signal set_state; } events; void *data; |