aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-11-18 08:27:40 -0500
committerDrew DeVault <sir@cmpwn.com>2015-11-18 08:27:40 -0500
commit49388eb88b1004005e8f2efff2b6e46f9ca2f88a (patch)
treed1339f3e2613b085fcb382a6f5869db3fa859185
parent399220f14bc60581490936d9f1a0fd353bfc9ef5 (diff)
Support resizing in wayland client implementation
-rw-r--r--wayland/client.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/wayland/client.c b/wayland/client.c
index 4d4a6bbb..116538cf 100644
--- a/wayland/client.c
+++ b/wayland/client.c
@@ -74,6 +74,17 @@ static const struct wl_registry_listener registry_listener = {
.global_remove = registry_global_remove
};
+void shell_surface_configure(void *data, struct wl_shell_surface *wl_shell_surface,
+ uint32_t edges, int32_t width, int32_t height) {
+ struct client_state *state = data;
+ state->width = width;
+ state->height = height;
+}
+
+static const struct wl_shell_surface_listener surface_listener = {
+ .configure = shell_surface_configure
+};
+
struct client_state *client_setup(uint32_t width, uint32_t height) {
struct client_state *state = malloc(sizeof(struct client_state));
memset(state, 0, sizeof(struct client_state));
@@ -96,6 +107,7 @@ struct client_state *client_setup(uint32_t width, uint32_t height) {
state->surface = wl_compositor_create_surface(state->compositor);
state->shell_surface = wl_shell_get_shell_surface(state->shell, state->surface);
+ wl_shell_surface_add_listener(state->shell_surface, &surface_listener, state);
wl_shell_surface_set_toplevel(state->shell_surface);
return state;