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 CANGJIETABLE_H
23#define CANGJIETABLE_H
24
25#include <QChar>
26#include <QString>
27
28namespace tcime {
29
30/**
31 * Defines cangjie letters and calculates the index of the given cangjie code.
32 */
33class CangjieTable
34{
35 Q_DISABLE_COPY(CangjieTable)
36 CangjieTable() {}
37
38public:
39
40 // Cangjie codes contain at most five letters. A cangjie code can be
41 // converted to a numerical code by the number-index of each letter.
42 // The absent letter will be indexed as 0 if the cangjie code contains less
43 // than five-letters.
44 static const int MAX_CODE_LENGTH;
45 static const int MAX_SIMPLIFIED_CODE_LENGTH;
46
47 /**
48 * Returns {@code true} only if the given character is a valid cangjie letter.
49 */
50 static bool isLetter(QChar c) noexcept;
51
52 /**
53 * Returns the primary index calculated by the first and last letter of
54 * the given cangjie code.
55 *
56 * @param code should not be null.
57 * @return -1 for invalid code.
58 */
59 static int getPrimaryIndex(QStringView code) noexcept;
60
61 /**
62 * Returns the secondary index calculated by letters between the first and
63 * last letter of the given cangjie code.
64 *
65 * @param code should not be null.
66 * @return -1 for invalid code.
67 */
68 static int getSecondaryIndex(QStringView code) noexcept;
69};
70
71}
72
73#endif // CANGJIETABLE_H
74

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