aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorIsaac Freund <ifreund@ifreund.xyz>2020-11-11 14:16:41 +0100
committerSimon Ser <contact@emersion.fr>2020-11-11 15:40:47 +0100
commite06c9e43afd8d2067c2c28bc25ed0830e43e5c78 (patch)
tree547939dfa46a72c85c771c615ab0f94cb1be6977 /include/wlr
parent0724b3c453e45b59aecdaecd6b654e1febb68dc7 (diff)
Remove unneeded includes from wlr_input_device.h
This uncovered many places where we were using things without directly including them.
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/types/wlr_input_device.h10
-rw-r--r--include/wlr/types/wlr_pointer.h1
-rw-r--r--include/wlr/types/wlr_seat.h1
3 files changed, 4 insertions, 8 deletions
diff --git a/include/wlr/types/wlr_input_device.h b/include/wlr/types/wlr_input_device.h
index 21462023..8ed9b465 100644
--- a/include/wlr/types/wlr_input_device.h
+++ b/include/wlr/types/wlr_input_device.h
@@ -9,6 +9,8 @@
#ifndef WLR_TYPES_WLR_INPUT_DEVICE_H
#define WLR_TYPES_WLR_INPUT_DEVICE_H
+#include <wayland-server-core.h>
+
enum wlr_button_state {
WLR_BUTTON_RELEASED,
WLR_BUTTON_PRESSED,
@@ -23,14 +25,6 @@ enum wlr_input_device_type {
WLR_INPUT_DEVICE_SWITCH,
};
-/* Note: these are circular dependencies */
-#include <wlr/types/wlr_keyboard.h>
-#include <wlr/types/wlr_pointer.h>
-#include <wlr/types/wlr_touch.h>
-#include <wlr/types/wlr_tablet_tool.h>
-#include <wlr/types/wlr_tablet_pad.h>
-#include <wlr/types/wlr_switch.h>
-
struct wlr_input_device_impl;
struct wlr_input_device {
diff --git a/include/wlr/types/wlr_pointer.h b/include/wlr/types/wlr_pointer.h
index 69699042..ac168d60 100644
--- a/include/wlr/types/wlr_pointer.h
+++ b/include/wlr/types/wlr_pointer.h
@@ -11,6 +11,7 @@
#include <stdint.h>
#include <wayland-server-core.h>
+#include <wayland-server-protocol.h>
#include <wlr/types/wlr_input_device.h>
struct wlr_pointer_impl;
diff --git a/include/wlr/types/wlr_seat.h b/include/wlr/types/wlr_seat.h
index 332ab0d3..5094874c 100644
--- a/include/wlr/types/wlr_seat.h
+++ b/include/wlr/types/wlr_seat.h
@@ -13,6 +13,7 @@
#include <wayland-server-core.h>
#include <wlr/types/wlr_input_device.h>
#include <wlr/types/wlr_keyboard.h>
+#include <wlr/types/wlr_pointer.h>
#include <wlr/types/wlr_surface.h>
#define WLR_SERIAL_RINGSET_SIZE 128