aboutsummaryrefslogtreecommitdiff
path: root/include/sway/input
diff options
context:
space:
mode:
authorRyan Dwyer <RyanDwyer@users.noreply.github.com>2018-07-24 19:48:27 +1000
committerGitHub <noreply@github.com>2018-07-24 19:48:27 +1000
commit1a9179dbab91490c4a8dc45f8630ac139c96efe6 (patch)
tree429de47906f0ba1f114689c48cbabc5be8bb6e71 /include/sway/input
parent6ccf2a2c66c1264450a4b3ab3dd344e1b3b44ca3 (diff)
parente02a6718c2c7313309b45e499034d614ee6207fc (diff)
downloadsway-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.h6
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);