aboutsummaryrefslogtreecommitdiff
path: root/include/CursorTracker.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/CursorTracker.hpp
parent44f35f8f3b39892def66a2a0f15d3a261f0be778 (diff)
Add option to capture the focused monitor
Diffstat (limited to 'include/CursorTracker.hpp')
-rw-r--r--include/CursorTracker.hpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/CursorTracker.hpp b/include/CursorTracker.hpp
new file mode 100644
index 0000000..ff7374f
--- /dev/null
+++ b/include/CursorTracker.hpp
@@ -0,0 +1,23 @@
+#pragma once
+
+#include <optional>
+#include <string>
+#include <mglpp/system/vec.hpp>
+
+namespace gsr {
+ struct CursorInfo {
+ mgl::vec2i position;
+ std::string monitor_name;
+ };
+
+ class CursorTracker {
+ public:
+ CursorTracker() = default;
+ CursorTracker(const CursorTracker&) = delete;
+ CursorTracker& operator=(const CursorTracker&) = delete;
+ virtual ~CursorTracker() = default;
+
+ virtual void update() = 0;
+ virtual std::optional<CursorInfo> get_latest_cursor_info() = 0;
+ };
+} \ No newline at end of file