diff options
Diffstat (limited to 'src/managers/input/InputManager.hpp')
-rw-r--r-- | src/managers/input/InputManager.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/managers/input/InputManager.hpp b/src/managers/input/InputManager.hpp index 4885277b..f570efcb 100644 --- a/src/managers/input/InputManager.hpp +++ b/src/managers/input/InputManager.hpp @@ -125,8 +125,14 @@ public: // for virtual keyboards: whether we should respect them as normal ones bool shouldIgnoreVirtualKeyboard(SKeyboard*); + // for special cursors that we choose + void setCursorImageUntilUnset(std::string); + void unsetCursorImage(); + private: + bool m_bCursorImageOverriden = false; + // for click behavior override eClickBehaviorMode m_ecbClickBehavior = CLICKMODE_DEFAULT; bool m_bEmptyFocusCursorSet = false; |