From 56cdea96f067782b69e90573c7ec0dec3a9eb166 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Wed, 23 Nov 2011 16:14:12 +0200 Subject: shell: add private surface struct Add a pointer to wlsc_surface for shell-private data. This is a temporary solution. Add struct shell_surface, where you can add any shell-private data members related to a wlsc_surface. The getter function takes care of creating the private data if it does not exist yet. Not used anywhere yet. Signed-off-by: Pekka Paalanen --- compositor/compositor.c | 2 +- compositor/compositor.h | 2 ++ compositor/shell.c | 41 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 1 deletion(-) diff --git a/compositor/compositor.c b/compositor/compositor.c index fe123f8..0ae71b6 100644 --- a/compositor/compositor.c +++ b/compositor/compositor.c @@ -248,7 +248,7 @@ wlsc_surface_create(struct wlsc_compositor *compositor, { struct wlsc_surface *surface; - surface = malloc(sizeof *surface); + surface = calloc(1, sizeof *surface); if (surface == NULL) return NULL; diff --git a/compositor/compositor.h b/compositor/compositor.h index b66903a..4163d04 100644 --- a/compositor/compositor.h +++ b/compositor/compositor.h @@ -276,6 +276,8 @@ struct wlsc_surface { struct wl_buffer *buffer; struct wl_listener buffer_destroy_listener; + + void *shell_priv; }; void diff --git a/compositor/shell.c b/compositor/shell.c index f8305db..edef868 100644 --- a/compositor/shell.c +++ b/compositor/shell.c @@ -58,12 +58,53 @@ struct wl_shell { struct wl_list hidden_surface_list; }; +struct shell_surface { + struct wl_listener destroy_listener; +}; + struct wlsc_move_grab { struct wl_grab grab; struct wlsc_surface *surface; int32_t dx, dy; }; +static void +destroy_shell_surface(struct shell_surface *priv) +{ + wl_list_remove(&priv->destroy_listener.link); + free(priv); +} + +static void +handle_shell_surface_destroy(struct wl_listener *listener, + struct wl_resource *resource, uint32_t time) +{ + struct shell_surface *priv = + container_of(listener, struct shell_surface, destroy_listener); + destroy_shell_surface(priv); +} + +static struct shell_surface * +get_shell_surface(struct wlsc_surface *surface) +{ + struct shell_surface *priv; + + if (surface->shell_priv) + return surface->shell_priv; + + priv = calloc(1, sizeof *priv); + if (!priv) + return NULL; + + priv->destroy_listener.func = handle_shell_surface_destroy; + wl_list_insert(surface->surface.resource.destroy_listener_list.prev, + &priv->destroy_listener.link); + + surface->shell_priv = priv; + + return priv; +} + static void move_grab_motion(struct wl_grab *grab, uint32_t time, int32_t x, int32_t y) -- cgit v1.2.3