summaryrefslogtreecommitdiffstats
path: root/xbmc/input/Keymap.h
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/input/Keymap.h')
-rw-r--r--xbmc/input/Keymap.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/xbmc/input/Keymap.h b/xbmc/input/Keymap.h
new file mode 100644
index 0000000..822ed67
--- /dev/null
+++ b/xbmc/input/Keymap.h
@@ -0,0 +1,31 @@
+/*
+ * 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 "IKeymap.h"
+
+#include <memory>
+
+class IKeymapEnvironment;
+
+class CKeymap : public IKeymap
+{
+public:
+ CKeymap(std::shared_ptr<const IWindowKeymap> keymap, const IKeymapEnvironment* environment);
+
+ // implementation of IKeymap
+ std::string ControllerID() const override;
+ const IKeymapEnvironment* Environment() const override { return m_environment; }
+ const KODI::JOYSTICK::KeymapActionGroup& GetActions(const std::string& keyName) const override;
+
+private:
+ // Construction parameters
+ const std::shared_ptr<const IWindowKeymap> m_keymap;
+ const IKeymapEnvironment* const m_environment;
+};