aboutsummaryrefslogtreecommitdiff
path: root/include/CursorTrackerX11.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-04-04 20:51:28 +0200
committerdec05eba <dec05eba@protonmail.com>2025-04-04 20:51:28 +0200
commit2e3adfc5100c4c273529d7e0ed1cba42f184395f (patch)
tree1342ecd7e0910c739739948d31114419ce22f1bd /include/CursorTrackerX11.hpp
parent44f35f8f3b39892def66a2a0f15d3a261f0be778 (diff)
Add option to capture the focused monitor
Diffstat (limited to 'include/CursorTrackerX11.hpp')
-rw-r--r--include/CursorTrackerX11.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/CursorTrackerX11.hpp b/include/CursorTrackerX11.hpp
new file mode 100644
index 0000000..66618c4
--- /dev/null
+++ b/include/CursorTrackerX11.hpp
@@ -0,0 +1,20 @@
+#pragma once
+
+#include "CursorTracker.hpp"
+
+typedef struct _XDisplay Display;
+
+namespace gsr {
+ class CursorTrackerX11 : public CursorTracker {
+ public:
+ CursorTrackerX11(Display *dpy);
+ CursorTrackerX11(const CursorTrackerX11&) = delete;
+ CursorTrackerX11& operator=(const CursorTrackerX11&) = delete;
+ ~CursorTrackerX11() = default;
+
+ void update() override {}
+ std::optional<CursorInfo> get_latest_cursor_info() override;
+ private:
+ Display *dpy = nullptr;
+ };
+} \ No newline at end of file