From c04dcc2e7d834218ef2d4194331e383402495ae1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 20:07:22 +0200 Subject: Adding upstream version 2:20.4+dfsg. Signed-off-by: Daniel Baumann --- xbmc/input/InputCodingTable.h | 57 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 xbmc/input/InputCodingTable.h (limited to 'xbmc/input/InputCodingTable.h') 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 +#include +#include + +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 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 IInputCodingTablePtr; -- cgit v1.2.3