From 920f1f010284d59bad86f78355ed90ac2f3e1d2c Mon Sep 17 00:00:00 2001 From: Benji Dial Date: Mon, 8 Mar 2021 16:46:22 -0500 Subject: mouse movement in raleigh, with colorpicker dragging example --- src/user/raleigh/window.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/user/raleigh/window.cpp') diff --git a/src/user/raleigh/window.cpp b/src/user/raleigh/window.cpp index 5d1a3de..cb9f363 100644 --- a/src/user/raleigh/window.cpp +++ b/src/user/raleigh/window.cpp @@ -57,6 +57,8 @@ namespace raleigh { focussed->on_focus(); else if (wa.action_type == wa.FOCUS_LEAVE) focussed->on_unfocus(); + else if (wa.action_type == wa.MOUSE_MOVE) + root.on_mouse_move(coord(wa.moved_to.x, wa.moved_to.y)); } } @@ -78,6 +80,7 @@ namespace raleigh { if (handle) return; handle = _new_window(size.x, size.y, pixbuf); + _wants_mouse_moves(handle); if (!handle) show_error_and_quitf("Failed to get window handle for requested window."); open_windows.add_front(*this); -- cgit v1.2.3