aboutsummaryrefslogtreecommitdiff
path: root/include/GlobalHotkeys.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/GlobalHotkeys.hpp')
-rw-r--r--include/GlobalHotkeys.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/GlobalHotkeys.hpp b/include/GlobalHotkeys.hpp
new file mode 100644
index 0000000..020f5a5
--- /dev/null
+++ b/include/GlobalHotkeys.hpp
@@ -0,0 +1,27 @@
+#pragma once
+
+#include <stdint.h>
+#include <functional>
+#include <string>
+
+namespace gsr {
+ struct Hotkey {
+ uint64_t key = 0;
+ uint32_t modifiers = 0;
+ };
+
+ using GlobalHotkeyCallback = std::function<void(const std::string &id)>;
+
+ class GlobalHotkeys {
+ public:
+ GlobalHotkeys() = default;
+ GlobalHotkeys(const GlobalHotkeys&) = delete;
+ GlobalHotkeys& operator=(const GlobalHotkeys&) = delete;
+ virtual ~GlobalHotkeys() = default;
+
+ virtual bool bind_key_press(Hotkey hotkey, const std::string &id, GlobalHotkeyCallback callback) = 0;
+ virtual void unbind_key_press(const std::string &id) = 0;
+ virtual void unbind_all_keys() = 0;
+ virtual void poll_events() = 0;
+ };
+} \ No newline at end of file