blob: a071356784b7a1efde819b82f940db5f8a701eff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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;
|