aboutsummaryrefslogtreecommitdiff
path: root/sway/input
diff options
context:
space:
mode:
authorBrian Ashworth <bosrsf04@gmail.com>2018-12-19 18:22:56 -0500
committeremersion <contact@emersion.fr>2018-12-25 13:31:56 +0100
commit3248c823ed1f3bc95b8401a32a2dc12144a88f7d (patch)
treee57f23bb5d371791e2b1b513f5246e7f3ddda3db /sway/input
parent5fca74a1f1704281e86114b567707486875c4e05 (diff)
Split image_surface handling into own function
Diffstat (limited to 'sway/input')
-rw-r--r--sway/input/cursor.c54
1 files changed, 40 insertions, 14 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 53ff3a22..efc00754 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -603,7 +603,15 @@ static void handle_activity(struct sway_cursor *cursor) {
wlr_idle_notify_activity(server.idle, cursor->seat->wlr_seat);
if (cursor->hidden) {
cursor->hidden = false;
- cursor_set_image(cursor, NULL, cursor->image_client);
+ if (cursor->image_surface) {
+ cursor_set_image_surface(cursor, cursor->image_surface,
+ cursor->hotspot_x, cursor->hotspot_y,
+ cursor->image_client);
+ } else {
+ const char *image = cursor->image;
+ cursor->image = NULL;
+ cursor_set_image(cursor, image, cursor->image_client);
+ }
}
}
@@ -1297,12 +1305,8 @@ static void handle_request_set_cursor(struct wl_listener *listener,
return;
}
- cursor->image = NULL;
- cursor->image_client = focused_client;
- cursor->image_surface = event->surface;
- cursor->hotspot_x = event->hotspot_x;
- cursor->hotspot_y = event->hotspot_y;
- cursor_set_image(cursor, NULL, cursor->image_client);
+ cursor_set_image_surface(cursor, event->surface, event->hotspot_x,
+ event->hotspot_y, focused_client);
}
void cursor_set_image(struct sway_cursor *cursor, const char *image,
@@ -1310,21 +1314,43 @@ void cursor_set_image(struct sway_cursor *cursor, const char *image,
if (!(cursor->seat->wlr_seat->capabilities & WL_SEAT_CAPABILITY_POINTER)) {
return;
}
+
+ const char *current_image = cursor->image;
+ cursor->image = image;
+ cursor->image_surface = NULL;
+ cursor->hotspot_x = cursor->hotspot_y = 0;
+ cursor->image_client = client;
+
if (cursor->hidden) {
return;
}
- if (!image && cursor->image_surface) {
- wlr_cursor_set_surface(cursor->cursor, cursor->image_surface,
- cursor->hotspot_x, cursor->hotspot_y);
- } else if (!image) {
+
+ if (!image) {
wlr_cursor_set_image(cursor->cursor, NULL, 0, 0, 0, 0, 0, 0);
- } else if (!cursor->image || strcmp(cursor->image, image) != 0) {
- cursor->image_surface = NULL;
+ } else if (!current_image || strcmp(current_image, image) != 0) {
wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager, image,
cursor->cursor);
}
- cursor->image = image;
+}
+
+void cursor_set_image_surface(struct sway_cursor *cursor,
+ struct wlr_surface *surface, int32_t hotspot_x, int32_t hotspot_y,
+ struct wl_client *client) {
+ if (!(cursor->seat->wlr_seat->capabilities & WL_SEAT_CAPABILITY_POINTER)) {
+ return;
+ }
+
+ cursor->image = NULL;
+ cursor->image_surface = surface;
+ cursor->hotspot_x = hotspot_x;
+ cursor->hotspot_y = hotspot_y;
cursor->image_client = client;
+
+ if (cursor->hidden) {
+ return;
+ }
+
+ wlr_cursor_set_surface(cursor->cursor, surface, hotspot_x, hotspot_y);
}
void sway_cursor_destroy(struct sway_cursor *cursor) {