diff options
Diffstat (limited to '')
-rw-r--r-- | xbmc/input/keyboard/KeyboardEasterEgg.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/xbmc/input/keyboard/KeyboardEasterEgg.h b/xbmc/input/keyboard/KeyboardEasterEgg.h new file mode 100644 index 0000000..00c1791 --- /dev/null +++ b/xbmc/input/keyboard/KeyboardEasterEgg.h @@ -0,0 +1,38 @@ +/* + * Copyright (C) 2016-2018 Team Kodi + * This file is part of Kodi - https://kodi.tv + * + * SPDX-License-Identifier: GPL-2.0-or-later + * See LICENSES/README.md for more information. + */ + +#pragma once + +#include "input/XBMC_vkeys.h" +#include "input/keyboard/interfaces/IKeyboardDriverHandler.h" + +#include <vector> + +namespace KODI +{ +namespace KEYBOARD +{ +/*! + * \brief Hush!!! + */ +class CKeyboardEasterEgg : public IKeyboardDriverHandler +{ +public: + ~CKeyboardEasterEgg() override = default; + + // implementation of IKeyboardDriverHandler + bool OnKeyPress(const CKey& key) override; + void OnKeyRelease(const CKey& key) override {} + +private: + static std::vector<XBMCVKey> m_sequence; + + unsigned int m_state = 0; +}; +} // namespace KEYBOARD +} // namespace KODI |