-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpinyininputmethod.cpp
104 lines (95 loc) · 2.43 KB
/
pinyininputmethod.cpp
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include "pinyininputmethod.h"
#include <QDateTime>
#include <QSettings>
#include <QDebug>
#include "pinyinime.h"
using namespace ime_pinyin;
CPinyinInputMethod::CPinyinInputMethod()
{
HanziModel.clear();
QSettings setter(":/dict/pinyinEx.ini", QSettings::IniFormat);
lstEN = setter.value("pyEn", lstEN).toStringList();
if (lstEN.size() <= 1)
{
qDebug() << "Can't load pyEn!";
return;
}
bool ret = im_open_decoder("./dict/dict_pinyin.dat", "./dict/user.dat");
if (!ret)
{
qDebug() << "open dict faild";
return;
}
}
CPinyinInputMethod::~CPinyinInputMethod()
{
lstEN.clear();
HanziModel.clear();
im_close_decoder();
}
void CPinyinInputMethod::SearchCN(const QString &gemfield)
{
HanziModel.clear();
if (gemfield == "")
{
emit pinyinTextChanged("");
return;
}
im_reset_search();
int num = im_search(gemfield.toLatin1().data(), gemfield.size());
const uint16 *pos;
int size = im_get_spl_start_pos(pos);
QString py = gemfield;
for (int i = size-1; i > 0; i--)
py.insert(pos[i], "'");
py.replace("''", "'");
emit pinyinTextChanged(py);
if (num > 50) num = 50;
char16 buf[20]={0};
for (int i = 0; i < num; i++)
{
im_get_candidate(i, buf, 20);
HanziModel << QString::fromUtf16(buf);
}
}
void CPinyinInputMethod::BinarySearchEN(const QString &gemfield)
{
emit pinyinTextChanged(gemfield);
int min = 0;
int max = lstEN.size();
int idx = max / 2;
while (true)
{
if (lstEN[idx].startsWith(gemfield, Qt::CaseInsensitive))
break;
if (max == min + 1 || max <= min || max == idx + 1 || max == idx || min == idx + 1 || min == idx )
break;
if (lstEN[idx].toLower() > gemfield)
max = idx;
else
min = idx;
idx = (max + min) / 2;
}
do{
if (--idx < 0)
break;
}while(lstEN[idx].startsWith(gemfield, Qt::CaseInsensitive));
++idx;
int cnt = 0;
while(++cnt < 50)
{
if (idx >= lstEN.size())
break;
if (lstEN[idx].startsWith(gemfield, Qt::CaseInsensitive))
HanziModel.append(lstEN[idx]);
else
break;
idx++;
}
}
void CPinyinInputMethod::Matching(const QString &gemfield, bool isEn)
{
HanziModel.clear();
if (!isEn) SearchCN(gemfield);
else BinarySearchEN(gemfield);
}