From baa958eaf2a727c1f8e72aa2606b4b975087939f Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Tue, 26 Jan 2016 18:38:05 -0500 Subject: Remove pointer from swaylock surface --- wayland/window.c | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) (limited to 'wayland') diff --git a/wayland/window.c b/wayland/window.c index 916e3b57..ba64cb60 100644 --- a/wayland/window.c +++ b/wayland/window.c @@ -18,8 +18,10 @@ static void pointer_handle_enter(void *data, struct wl_pointer *pointer, uint32_t serial, struct wl_surface *surface, wl_fixed_t sx_w, wl_fixed_t sy_w) { struct window *window = data; - struct wl_cursor_image *image = window->cursor.cursor->images[0]; - wl_pointer_set_cursor(pointer, serial, window->cursor.surface, image->hotspot_x, image->hotspot_y); + if (window->registry->pointer) { + struct wl_cursor_image *image = window->cursor.cursor->images[0]; + wl_pointer_set_cursor(pointer, serial, window->cursor.surface, image->hotspot_x, image->hotspot_y); + } } static void pointer_handle_leave(void *data, struct wl_pointer *pointer, @@ -77,15 +79,17 @@ struct window *window_setup(struct registry *registry, uint32_t width, uint32_t get_next_buffer(window); - window->cursor.cursor_theme = wl_cursor_theme_load("default", 32, registry->shm); // TODO: let you customize this - window->cursor.cursor = wl_cursor_theme_get_cursor(window->cursor.cursor_theme, "left_ptr"); - window->cursor.surface = wl_compositor_create_surface(registry->compositor); - - struct wl_cursor_image *image = window->cursor.cursor->images[0]; - struct wl_buffer *cursor_buf = wl_cursor_image_get_buffer(image); - wl_surface_attach(window->cursor.surface, cursor_buf, 0, 0); - wl_surface_damage(window->cursor.surface, 0, 0, image->width, image->height); - wl_surface_commit(window->cursor.surface); + if (registry->pointer) { + window->cursor.cursor_theme = wl_cursor_theme_load("default", 32, registry->shm); // TODO: let you customize this + window->cursor.cursor = wl_cursor_theme_get_cursor(window->cursor.cursor_theme, "left_ptr"); + window->cursor.surface = wl_compositor_create_surface(registry->compositor); + + struct wl_cursor_image *image = window->cursor.cursor->images[0]; + struct wl_buffer *cursor_buf = wl_cursor_image_get_buffer(image); + wl_surface_attach(window->cursor.surface, cursor_buf, 0, 0); + wl_surface_damage(window->cursor.surface, 0, 0, image->width, image->height); + wl_surface_commit(window->cursor.surface); + } return window; } -- cgit v1.2.3-54-g00ecf