diff options
author | emersion <contact@emersion.fr> | 2018-03-28 15:33:23 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-28 15:33:23 -0400 |
commit | 2a34b154e683bb962aed354c1d980a7c10c66824 (patch) | |
tree | 8382ae43ef8acaa74544be610571e983d9c13fde /include/wlr | |
parent | 73394deb761232ff6a5a12400fe9e9fc5ab51114 (diff) |
xwayland: send DND_DROP
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_data_device.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_data_device.h b/include/wlr/types/wlr_data_device.h index cd266795..6733980a 100644 --- a/include/wlr/types/wlr_data_device.h +++ b/include/wlr/types/wlr_data_device.h @@ -108,6 +108,7 @@ struct wlr_drag { struct { struct wl_signal focus; struct wl_signal motion; + struct wl_signal drop; struct wl_signal destroy; } events; }; @@ -118,6 +119,11 @@ struct wlr_drag_motion_event { double sx, sy; }; +struct wlr_drag_drop_event { + struct wlr_drag *drag; + uint32_t time; +}; + /** * Create a wl data device manager global for this display. */ |