aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/util/array.h15
-rw-r--r--include/wlr/types/wlr_seat.h5
2 files changed, 19 insertions, 1 deletions
diff --git a/include/util/array.h b/include/util/array.h
index 1c046e1d..32bc059f 100644
--- a/include/util/array.h
+++ b/include/util/array.h
@@ -3,7 +3,22 @@
#include <stdint.h>
#include <stdlib.h>
+#include <stdbool.h>
size_t push_zeroes_to_end(uint32_t arr[], size_t n);
+/**
+ * Add `target` to `values` if it doesn't exist
+ * "set"s should only be modified with set_* functions
+ * Values MUST be greater than 0
+ */
+bool set_add(uint32_t values[], size_t *len, size_t cap, uint32_t target);
+
+/**
+ * Remove `target` from `values` if it exists
+ * "set"s should only be modified with set_* functions
+ * Values MUST be greater than 0
+ */
+bool set_remove(uint32_t values[], size_t *len, size_t cap, uint32_t target);
+
#endif
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h
index 0724136b..bfd3625d 100644
--- a/include/wlr/types/wlr_seat.h
+++ b/include/wlr/types/wlr_seat.h
@@ -131,6 +131,8 @@ struct wlr_seat_pointer_grab {
void *data;
};
+#define WLR_POINTER_BUTTONS_CAP 16
+
struct wlr_seat_pointer_state {
struct wlr_seat *seat;
struct wlr_seat_client *focused_client;
@@ -140,7 +142,8 @@ struct wlr_seat_pointer_state {
struct wlr_seat_pointer_grab *grab;
struct wlr_seat_pointer_grab *default_grab;
- uint32_t button_count;
+ uint32_t buttons[WLR_POINTER_BUTTONS_CAP];
+ size_t button_count;
uint32_t grab_button;
uint32_t grab_serial;
uint32_t grab_time;