diff options
author | emersion <contact@emersion.fr> | 2018-03-28 14:16:14 -0400 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-28 14:16:14 -0400 |
commit | 73394deb761232ff6a5a12400fe9e9fc5ab51114 (patch) | |
tree | 56c0d05a3d22dde8fcaf1f8faa425b65061a8930 /include/wlr | |
parent | 0d7a81ccdfda7d21ece47e0715a25bd301363cc2 (diff) |
xwayland: send DND_POSITION
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_data_device.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_data_device.h b/include/wlr/types/wlr_data_device.h index cefcc979..cd266795 100644 --- a/include/wlr/types/wlr_data_device.h +++ b/include/wlr/types/wlr_data_device.h @@ -107,10 +107,17 @@ struct wlr_drag { struct { struct wl_signal focus; + struct wl_signal motion; struct wl_signal destroy; } events; }; +struct wlr_drag_motion_event { + struct wlr_drag *drag; + uint32_t time; + double sx, sy; +}; + /** * Create a wl data device manager global for this display. */ |