diff options
author | german77 <juangerman-13@hotmail.com> | 2021-03-06 20:27:02 +0100 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2021-03-06 20:27:02 +0100 |
commit | 41e94b7b99f83a45633d555160b31b50f021c350 (patch) | |
tree | 3383b74713144712144eeb5cb6a247ba4be9da42 /src/input_common/mouse/mouse_input.h | |
parent | Add toggle button option for normal buttons (diff) | |
download | yuzu-41e94b7b99f83a45633d555160b31b50f021c350.tar yuzu-41e94b7b99f83a45633d555160b31b50f021c350.tar.gz yuzu-41e94b7b99f83a45633d555160b31b50f021c350.tar.bz2 yuzu-41e94b7b99f83a45633d555160b31b50f021c350.tar.lz yuzu-41e94b7b99f83a45633d555160b31b50f021c350.tar.xz yuzu-41e94b7b99f83a45633d555160b31b50f021c350.tar.zst yuzu-41e94b7b99f83a45633d555160b31b50f021c350.zip |
Diffstat (limited to '')
-rw-r--r-- | src/input_common/mouse/mouse_input.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/input_common/mouse/mouse_input.h b/src/input_common/mouse/mouse_input.h index 46aa676c1..a75f0ecb5 100644 --- a/src/input_common/mouse/mouse_input.h +++ b/src/input_common/mouse/mouse_input.h @@ -67,6 +67,9 @@ public: */ void ReleaseButton(int button_); + [[nodiscard]] bool ToggleButton(std::size_t button_); + [[nodiscard]] bool UnlockButton(std::size_t button_); + [[nodiscard]] Common::SPSCQueue<MouseStatus>& GetMouseQueue(); [[nodiscard]] const Common::SPSCQueue<MouseStatus>& GetMouseQueue() const; @@ -92,6 +95,8 @@ private: }; u16 buttons{}; + u16 toggle_buttons{}; + u16 lock_buttons{}; std::thread update_thread; MouseButton last_button{MouseButton::Undefined}; std::array<MouseInfo, 5> mouse_info; |