xwayland: send DND_POSITION

This commit is contained in:
emersion 2018-03-28 14:16:14 -04:00
parent 0d7a81ccdf
commit 73394deb76
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
4 changed files with 93 additions and 17 deletions

View file

@ -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.
*/