1/*
2 * Qt implementation of TCIME library
3 * This file is part of the Qt Virtual Keyboard module.
4 * Contact: http://www.qt.io/licensing/
5 *
6 * Copyright (C) 2015 The Qt Company
7 * Copyright 2010 Google Inc.
8 *
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 */
21
22#ifndef WORDDICTIONARY_H
23#define WORDDICTIONARY_H
24
25#include <QVector>
26#include <QString>
27#include <QStringList>
28
29namespace tcime {
30
31/**
32 * Reads a word-dictionary and provides word-suggestions as a list of characters
33 * for the specified input.
34 */
35class WordDictionary
36{
37 Q_DISABLE_COPY(WordDictionary)
38
39protected:
40 typedef QChar DictionaryWord;
41 typedef QVector<DictionaryWord> DictionaryEntry;
42 typedef QVector<DictionaryEntry> Dictionary;
43
44 const Dictionary &dictionary() const { return _dictionary; }
45
46public:
47 WordDictionary() {}
48 virtual ~WordDictionary() {}
49
50 bool isEmpty() const { return _dictionary.isEmpty(); }
51
52 virtual bool load(const QString &fileName, bool littleEndian = false);
53 virtual QStringList getWords(const QString &input) const = 0;
54
55private:
56 Dictionary _dictionary;
57};
58
59}
60
61#endif // WORDDICTIONARY_H
62

source code of qtvirtualkeyboard/src/plugins/tcime/3rdparty/tcime/worddictionary.h