diff options
Diffstat (limited to '')
-rw-r--r-- | xbmc/input/KeymapEnvironment.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/xbmc/input/KeymapEnvironment.h b/xbmc/input/KeymapEnvironment.h new file mode 100644 index 0000000..64ee67a --- /dev/null +++ b/xbmc/input/KeymapEnvironment.h @@ -0,0 +1,27 @@ +/* + * Copyright (C) 2017-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 "IKeymapEnvironment.h" + +class CKeymapEnvironment : public IKeymapEnvironment +{ +public: + ~CKeymapEnvironment() override = default; + + // implementation of IKeymapEnvironment + int GetWindowID() const override { return m_windowId; } + void SetWindowID(int windowId) override { m_windowId = windowId; } + int GetFallthrough(int windowId) const override; + bool UseGlobalFallthrough() const override { return true; } + bool UseEasterEgg() const override { return true; } + +private: + int m_windowId = -1; +}; |