diff options
author | David Eklov <[email protected]> | 2016-07-05 01:21:56 -0500 |
---|---|---|
committer | David Eklov <[email protected]> | 2016-07-06 01:03:04 -0500 |
commit | c8a64305fd746ab1b33367d3ffcc9fa054221717 (patch) | |
tree | eadad88c75e6cb6e252e1e807e11e9178680ff94 /wayland | |
parent | 9889b14511e95b29855aa265c19e57e9cd86cd1b (diff) |
Enable windows to register to get notified of pointer button events
Diffstat (limited to 'wayland')
-rw-r--r-- | wayland/window.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/wayland/window.c b/wayland/window.c index 7ca9e4ec..e055e244 100644 --- a/wayland/window.c +++ b/wayland/window.c @@ -30,10 +30,20 @@ static void pointer_handle_leave(void *data, struct wl_pointer *pointer, static void pointer_handle_motion(void *data, struct wl_pointer *pointer, uint32_t time, wl_fixed_t sx_w, wl_fixed_t sy_w) { + struct window *window = data; + + window->pointer_input.last_x = sx_w; + window->pointer_input.last_y = sy_w; } static void pointer_handle_button(void *data, struct wl_pointer *pointer, uint32_t serial, uint32_t time, uint32_t button, uint32_t state_w) { + struct window *window = data; + struct pointer_input *input = &window->pointer_input; + + if (window->pointer_input.notify) { + window->pointer_input.notify(window, input->last_x, input->last_y, button); + } } static void pointer_handle_axis(void *data, struct wl_pointer *pointer, |