mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 04:45:58 +01:00
xwayland: add wlr_xwayland_shell_v1_destroy()
This commit is contained in:
parent
44c7e233ff
commit
d3b84463f8
2 changed files with 25 additions and 4 deletions
|
@ -27,6 +27,7 @@ struct wlr_xwayland_shell_v1 {
|
||||||
// private state
|
// private state
|
||||||
|
|
||||||
struct wl_client *client;
|
struct wl_client *client;
|
||||||
|
struct wl_list surfaces; // wlr_xwayland_surface_v1.link
|
||||||
|
|
||||||
struct wl_listener display_destroy;
|
struct wl_listener display_destroy;
|
||||||
struct wl_listener client_destroy;
|
struct wl_listener client_destroy;
|
||||||
|
@ -42,6 +43,7 @@ struct wlr_xwayland_surface_v1 {
|
||||||
// private state
|
// private state
|
||||||
|
|
||||||
struct wl_resource *resource;
|
struct wl_resource *resource;
|
||||||
|
struct wl_list link;
|
||||||
struct wlr_xwayland_shell_v1 *shell;
|
struct wlr_xwayland_shell_v1 *shell;
|
||||||
bool added;
|
bool added;
|
||||||
|
|
||||||
|
@ -57,6 +59,11 @@ struct wlr_xwayland_surface_v1 {
|
||||||
struct wlr_xwayland_shell_v1 *wlr_xwayland_shell_v1_create(
|
struct wlr_xwayland_shell_v1 *wlr_xwayland_shell_v1_create(
|
||||||
struct wl_display *display, uint32_t version);
|
struct wl_display *display, uint32_t version);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Destroy the xwayland_shell_v1 global.
|
||||||
|
*/
|
||||||
|
void wlr_xwayland_shell_v1_destroy(struct wlr_xwayland_shell_v1 *shell);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allow a client to bind to the xwayland_shell_v1 global.
|
* Allow a client to bind to the xwayland_shell_v1 global.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -161,10 +161,7 @@ static void shell_bind(struct wl_client *client, void *data, uint32_t version,
|
||||||
static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
static void handle_display_destroy(struct wl_listener *listener, void *data) {
|
||||||
struct wlr_xwayland_shell_v1 *shell =
|
struct wlr_xwayland_shell_v1 *shell =
|
||||||
wl_container_of(listener, shell, display_destroy);
|
wl_container_of(listener, shell, display_destroy);
|
||||||
wl_list_remove(&shell->display_destroy.link);
|
wlr_xwayland_shell_v1_destroy(shell);
|
||||||
wl_list_remove(&shell->client_destroy.link);
|
|
||||||
wl_global_destroy(shell->global);
|
|
||||||
free(shell);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct wlr_xwayland_shell_v1 *wlr_xwayland_shell_v1_create(
|
struct wlr_xwayland_shell_v1 *wlr_xwayland_shell_v1_create(
|
||||||
|
@ -183,6 +180,7 @@ struct wlr_xwayland_shell_v1 *wlr_xwayland_shell_v1_create(
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
wl_list_init(&shell->surfaces);
|
||||||
wl_signal_init(&shell->events.new_surface);
|
wl_signal_init(&shell->events.new_surface);
|
||||||
|
|
||||||
shell->display_destroy.notify = handle_display_destroy;
|
shell->display_destroy.notify = handle_display_destroy;
|
||||||
|
@ -193,6 +191,22 @@ struct wlr_xwayland_shell_v1 *wlr_xwayland_shell_v1_create(
|
||||||
return shell;
|
return shell;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wlr_xwayland_shell_v1_destroy(struct wlr_xwayland_shell_v1 *shell) {
|
||||||
|
if (shell == NULL) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct wlr_xwayland_surface_v1 *xwl_surface, *tmp;
|
||||||
|
wl_list_for_each_safe(xwl_surface, tmp, &shell->surfaces, link) {
|
||||||
|
wlr_surface_destroy_role_object(xwl_surface->surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
wl_list_remove(&shell->display_destroy.link);
|
||||||
|
wl_list_remove(&shell->client_destroy.link);
|
||||||
|
wl_global_destroy(shell->global);
|
||||||
|
free(shell);
|
||||||
|
}
|
||||||
|
|
||||||
static void shell_handle_client_destroy(struct wl_listener *listener, void *data) {
|
static void shell_handle_client_destroy(struct wl_listener *listener, void *data) {
|
||||||
struct wlr_xwayland_shell_v1 *shell =
|
struct wlr_xwayland_shell_v1 *shell =
|
||||||
wl_container_of(listener, shell, client_destroy);
|
wl_container_of(listener, shell, client_destroy);
|
||||||
|
|
Loading…
Reference in a new issue