summaryrefslogtreecommitdiffstats
path: root/xbmc/input/InputCodingTable.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 18:07:22 +0000
commitc04dcc2e7d834218ef2d4194331e383402495ae1 (patch)
tree7333e38d10d75386e60f336b80c2443c1166031d /xbmc/input/InputCodingTable.h
parentInitial commit. (diff)
downloadkodi-c04dcc2e7d834218ef2d4194331e383402495ae1.tar.xz
kodi-c04dcc2e7d834218ef2d4194331e383402495ae1.zip
Adding upstream version 2:20.4+dfsg.upstream/2%20.4+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xbmc/input/InputCodingTable.h')
-rw-r--r--xbmc/input/InputCodingTable.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/xbmc/input/InputCodingTable.h b/xbmc/input/InputCodingTable.h
new file mode 100644
index 0000000..a071356
--- /dev/null
+++ b/xbmc/input/InputCodingTable.h
@@ -0,0 +1,57 @@
+/*
+ * Copyright (C) 2005-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 <memory>
+#include <string>
+#include <vector>
+
+class IInputCodingTable
+{
+public:
+ enum
+ {
+ TYPE_WORD_LIST,
+ TYPE_CONVERT_STRING
+ };
+ virtual int GetType() { return TYPE_WORD_LIST; }
+
+ virtual ~IInputCodingTable() = default;
+ /*! \brief Called for the active keyboard layout when it's loaded, stick any initialization here
+
+ This won't be needed for most implementations so we don't set it =0 but provide a default
+ implementation.
+ */
+ virtual void Initialize() {}
+
+ /*! \brief Called for the active keyboard layout when it's unloaded, stick any cleanup here
+
+ This won't be needed for most implementations so we don't set it =0 but provide a default
+ implementation.
+ */
+ virtual void Deinitialize() {}
+
+ /*! \brief Can be overridden if initialization is expensive to avoid calling initialize more than
+ needed
+
+ \return true if initialization has been done and was successful, false otherwise.
+ */
+ virtual bool IsInitialized() const { return true; }
+ virtual bool GetWordListPage(const std::string& strCode, bool isFirstPage) = 0;
+ virtual std::vector<std::wstring> GetResponse(int response) = 0;
+ const std::string& GetCodeChars() const { return m_codechars; }
+
+ virtual void SetTextPrev(const std::string& strTextPrev) {}
+ virtual std::string ConvertString(const std::string& strCode) { return std::string(""); }
+
+protected:
+ std::string m_codechars;
+};
+
+typedef std::shared_ptr<IInputCodingTable> IInputCodingTablePtr;