aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop')
-rw-r--r--sway/desktop/surface.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/sway/desktop/surface.c b/sway/desktop/surface.c
new file mode 100644
index 00000000..41d4ce3f
--- /dev/null
+++ b/sway/desktop/surface.c
@@ -0,0 +1,24 @@
1#include <stdlib.h>
2#include <wlr/types/wlr_surface.h>
3#include "sway/server.h"
4#include "sway/surface.h"
5
6void handle_destroy(struct wl_listener *listener, void *data) {
7 struct sway_surface *surface = wl_container_of(listener, surface, destroy);
8
9 surface->wlr_surface->data = NULL;
10 wl_list_remove(&surface->destroy.link);
11
12 free(surface);
13}
14
15void handle_compositor_new_surface(struct wl_listener *listener, void *data) {
16 struct wlr_surface *wlr_surface = data;
17
18 struct sway_surface *surface = calloc(1, sizeof(struct sway_surface));
19 surface->wlr_surface = wlr_surface;
20 wlr_surface->data = surface;
21
22 surface->destroy.notify = handle_destroy;
23 wl_signal_add(&wlr_surface->events.destroy, &surface->destroy);
24}