diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-04-04 20:51:28 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-04-04 20:51:28 +0200 |
commit | 2e3adfc5100c4c273529d7e0ed1cba42f184395f (patch) | |
tree | 1342ecd7e0910c739739948d31114419ce22f1bd /include/Overlay.hpp | |
parent | 44f35f8f3b39892def66a2a0f15d3a261f0be778 (diff) |
Add option to capture the focused monitor
Diffstat (limited to 'include/Overlay.hpp')
-rw-r--r-- | include/Overlay.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/Overlay.hpp b/include/Overlay.hpp index d7b8af1..4a9ef98 100644 --- a/include/Overlay.hpp +++ b/include/Overlay.hpp @@ -9,6 +9,7 @@ #include "GlobalHotkeysJoystick.hpp" #include "AudioPlayer.hpp" #include "RegionSelector.hpp" +#include "CursorTracker.hpp" #include <mglpp/window/Window.hpp> #include <mglpp/window/Event.hpp> @@ -115,6 +116,8 @@ namespace gsr { void on_press_take_screenshot(bool finished_region_selection, bool force_region_capture); bool update_compositor_texture(const Monitor &monitor); + std::string get_capture_target(const std::string &capture_target, const SupportedCaptureOptions &capture_options); + void force_window_on_top(); private: using KeyBindingCallback = std::function<void()>; @@ -205,5 +208,7 @@ namespace gsr { RegionSelector region_selector; bool start_region_capture = false; std::function<void()> on_region_selected; + + std::unique_ptr<CursorTracker> cursor_tracker; }; }
\ No newline at end of file |