mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-07 14:06:00 +01:00
handle drag icon map in rootston
This commit is contained in:
parent
319ebdf476
commit
9333acd68e
2 changed files with 10 additions and 0 deletions
|
@ -58,6 +58,7 @@ struct roots_drag_icon {
|
||||||
double x, y;
|
double x, y;
|
||||||
|
|
||||||
struct wl_listener surface_commit;
|
struct wl_listener surface_commit;
|
||||||
|
struct wl_listener map;
|
||||||
struct wl_listener unmap;
|
struct wl_listener unmap;
|
||||||
struct wl_listener destroy;
|
struct wl_listener destroy;
|
||||||
};
|
};
|
||||||
|
|
|
@ -263,6 +263,13 @@ static void roots_drag_icon_handle_surface_commit(struct wl_listener *listener,
|
||||||
roots_drag_icon_damage_whole(icon);
|
roots_drag_icon_damage_whole(icon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void roots_drag_icon_handle_map(struct wl_listener *listener,
|
||||||
|
void *data) {
|
||||||
|
struct roots_drag_icon *icon =
|
||||||
|
wl_container_of(listener, icon, map);
|
||||||
|
roots_drag_icon_damage_whole(icon);
|
||||||
|
}
|
||||||
|
|
||||||
static void roots_drag_icon_handle_unmap(struct wl_listener *listener,
|
static void roots_drag_icon_handle_unmap(struct wl_listener *listener,
|
||||||
void *data) {
|
void *data) {
|
||||||
struct roots_drag_icon *icon =
|
struct roots_drag_icon *icon =
|
||||||
|
@ -299,6 +306,8 @@ static void roots_seat_handle_new_drag_icon(struct wl_listener *listener,
|
||||||
wl_signal_add(&wlr_drag_icon->surface->events.commit, &icon->surface_commit);
|
wl_signal_add(&wlr_drag_icon->surface->events.commit, &icon->surface_commit);
|
||||||
icon->unmap.notify = roots_drag_icon_handle_unmap;
|
icon->unmap.notify = roots_drag_icon_handle_unmap;
|
||||||
wl_signal_add(&wlr_drag_icon->events.unmap, &icon->unmap);
|
wl_signal_add(&wlr_drag_icon->events.unmap, &icon->unmap);
|
||||||
|
icon->map.notify = roots_drag_icon_handle_map;
|
||||||
|
wl_signal_add(&wlr_drag_icon->events.map, &icon->map);
|
||||||
icon->destroy.notify = roots_drag_icon_handle_destroy;
|
icon->destroy.notify = roots_drag_icon_handle_destroy;
|
||||||
wl_signal_add(&wlr_drag_icon->events.destroy, &icon->destroy);
|
wl_signal_add(&wlr_drag_icon->events.destroy, &icon->destroy);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue