aboutsummaryrefslogtreecommitdiff
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-12-09 14:06:00 -0500
committerTony Crisci <tony@dubstepdish.com>2017-12-09 14:06:00 -0500
commit9333a7eb5329073aecfaf776c8ee0572c7dff67c (patch)
tree1438a16a31d2df9ec035e856fd4c89abe6c34e38 /sway/input/cursor.c
parent7c67bea942d44b93cf03c3223067d2668905a3c0 (diff)
working xcursor
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 85b7865d..4f0344be 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -1,5 +1,6 @@
#define _XOPEN_SOURCE 700
#include <wlr/types/wlr_cursor.h>
+#include <wlr/types/wlr_xcursor_manager.h>
#include "sway/input/cursor.h"
#include "log.h"
@@ -7,7 +8,10 @@ static void handle_cursor_motion(struct wl_listener *listener, void *data) {
struct sway_cursor *cursor =
wl_container_of(listener, cursor, motion);
struct wlr_event_pointer_motion *event = data;
- sway_log(L_DEBUG, "TODO: handle event: %p", event);
+ sway_log(L_DEBUG, "TODO: handle cursor motion event: dx=%f, dy=%f", event->delta_x, event->delta_y);
+ wlr_cursor_move(cursor->cursor, event->device, event->delta_x, event->delta_y);
+ sway_log(L_DEBUG, "TODO: new x=%f, y=%f", cursor->cursor->x, cursor->cursor->y);
+ wlr_xcursor_manager_set_cursor_image(cursor->xcursor_manager, "left_ptr", cursor->cursor);
}
static void handle_cursor_motion_absolute(struct wl_listener *listener,
@@ -87,6 +91,8 @@ struct sway_cursor *sway_cursor_create(struct sway_seat *seat) {
return NULL;
}
+ wlr_cursor_attach_output_layout(wlr_cursor, root_container.output_layout);
+
// input events
wl_signal_add(&wlr_cursor->events.motion, &cursor->motion);
cursor->motion.notify = handle_cursor_motion;