mirror of
https://repo.dec05eba.com/gpu-screen-recorder-ui
synced 2026-03-31 17:27:05 +09:00
27 lines
760 B
C++
27 lines
760 B
C++
#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;
|
|
};
|
|
} |