diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-07-24 19:48:27 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-24 19:48:27 +1000 |
commit | 1a9179dbab91490c4a8dc45f8630ac139c96efe6 (patch) | |
tree | 429de47906f0ba1f114689c48cbabc5be8bb6e71 /include/sway/input | |
parent | 6ccf2a2c66c1264450a4b3ab3dd344e1b3b44ca3 (diff) | |
parent | e02a6718c2c7313309b45e499034d614ee6207fc (diff) | |
download | sway-1a9179dbab91490c4a8dc45f8630ac139c96efe6.tar.xz |
Merge pull request #2303 from frsfnrrg/mouse-bindings
Implement mouse bindings
Diffstat (limited to 'include/sway/input')
-rw-r--r-- | include/sway/input/cursor.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/input/cursor.h b/include/sway/input/cursor.h index b0a3a7c5..7ec45120 100644 --- a/include/sway/input/cursor.h +++ b/include/sway/input/cursor.h @@ -3,6 +3,8 @@ #include <stdint.h> #include "sway/input/seat.h" +#define SWAY_CURSOR_PRESSED_BUTTONS_CAP 32 + struct sway_cursor { struct sway_seat *seat; struct wlr_cursor *cursor; @@ -29,6 +31,10 @@ struct sway_cursor { uint32_t tool_buttons; struct wl_listener request_set_cursor; + + // Mouse binding state + uint32_t pressed_buttons[SWAY_CURSOR_PRESSED_BUTTONS_CAP]; + size_t pressed_button_count; }; void sway_cursor_destroy(struct sway_cursor *cursor); |