From 2df47ffbfff02fb6b64d19e404adc41a93677afe Mon Sep 17 00:00:00 2001 From: crupest Date: Wed, 28 Oct 2020 16:58:56 +0800 Subject: ... --- include/cru/ui/ShortcutHub.hpp | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'include/cru/ui/ShortcutHub.hpp') diff --git a/include/cru/ui/ShortcutHub.hpp b/include/cru/ui/ShortcutHub.hpp index a1dfcb7d..5382f63e 100644 --- a/include/cru/ui/ShortcutHub.hpp +++ b/include/cru/ui/ShortcutHub.hpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include @@ -71,6 +72,15 @@ struct hash { } // namespace std namespace cru::ui { +struct Shortcut { + // Just for debug. + std::u16string name; + ShortcutKeyBind key_bind; + // Return true if it consumes the shortcut. Or return false if it does not + // handle the shortcut. + std::function handler; +}; + struct ShortcutInfo { int id; std::u16string name; @@ -87,11 +97,13 @@ class ShortcutHub : public Object { ~ShortcutHub() override = default; - // Handler return true if it consumes the shortcut. Or return false if it does - // not handle the shortcut. Name is just for debug. Return an id used for - // unregistering. int RegisterShortcut(std::u16string name, ShortcutKeyBind bind, - std::function handler); + std::function handler) { + return RegisterShortcut({std::move(name), bind, std::move(handler)}); + } + + // Return an id used for unregistering. + int RegisterShortcut(Shortcut shortcut); void UnregisterShortcut(int id); -- cgit v1.2.3