mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-20 06:59:42 -05:00
xwayland: send DND_DROP
This commit is contained in:
parent
73394deb76
commit
2a34b154e6
5 changed files with 123 additions and 4 deletions
|
|
@ -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.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue