forked from EasyIME/libIME
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CandidateWindow.cpp
434 lines (385 loc) · 10.7 KB
/
CandidateWindow.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
//
// Copyright (C) 2013 Hong Jen Yee (PCMan) <[email protected]>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the
// Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
// Boston, MA 02110-1301, USA.
//
#include "CandidateWindow.h"
#include "DrawUtils.h"
#include "TextService.h"
#include "EditSession.h"
#include <algorithm>
#include <cassert>
#include <tchar.h>
#include <windows.h>
using namespace std;
namespace Ime {
CandidateWindow::CandidateWindow(TextService* service, EditSession* session):
ImeWindow(service),
refCount_(1),
shown_(false),
candPerRow_(1),
textWidth_(0),
itemHeight_(0),
currentSel_(0),
hasResult_(false),
useCursor_(true),
selKeyWidth_(0) {
if(service->isImmersive()) { // windows 8 app mode
margin_ = 10;
rowSpacing_ = 8;
colSpacing_ = 12;
}
else { // desktop mode
margin_ = 5;
rowSpacing_ = 4;
colSpacing_ = 8;
}
HWND parent = service->compositionWindow(session);
create(parent, WS_POPUP|WS_CLIPCHILDREN, WS_EX_TOOLWINDOW|WS_EX_TOPMOST);
}
CandidateWindow::~CandidateWindow(void) {
}
// IUnknown
STDMETHODIMP CandidateWindow::QueryInterface(REFIID riid, void **ppvObj) {
if (!ppvObj)
return E_INVALIDARG;
if (IsEqualIID(riid, IID_IUnknown) || IsEqualIID(riid, IID_ITfCandidateListUIElement)) {
*ppvObj = (ITfCandidateListUIElement*)this;
}
else {
*ppvObj = NULL;
}
if (!*ppvObj) {
return E_NOINTERFACE;
}
AddRef();
return S_OK;
}
STDMETHODIMP_(ULONG) CandidateWindow::AddRef(void) {
return ++refCount_;
}
STDMETHODIMP_(ULONG) CandidateWindow::Release(void) {
assert(refCount_ > 0);
const ULONG newCount = --refCount_;
if (refCount_ == 0)
delete this;
return newCount;
}
// ITfUIElement
STDMETHODIMP CandidateWindow::GetDescription(BSTR *pbstrDescription) {
if (!pbstrDescription)
return E_INVALIDARG;
*pbstrDescription = SysAllocString(L"Candidate window~");
return S_OK;
}
// {BD7CCC94-57CD-41D3-A789-AF47890CEB29}
STDMETHODIMP CandidateWindow::GetGUID(GUID *pguid) {
if (!pguid)
return E_INVALIDARG;
*pguid = { 0xbd7ccc94, 0x57cd, 0x41d3, { 0xa7, 0x89, 0xaf, 0x47, 0x89, 0xc, 0xeb, 0x29 } };
return S_OK;
}
STDMETHODIMP CandidateWindow::Show(BOOL bShow) {
shown_ = bShow;
if (shown_)
show();
else
hide();
return S_OK;
}
STDMETHODIMP CandidateWindow::IsShown(BOOL *pbShow) {
if (!pbShow)
return E_INVALIDARG;
*pbShow = shown_;
return S_OK;
}
// ITfCandidateListUIElement
STDMETHODIMP CandidateWindow::GetUpdatedFlags(DWORD *pdwFlags) {
if (!pdwFlags)
return E_INVALIDARG;
/// XXX update all!!!
*pdwFlags = TF_CLUIE_DOCUMENTMGR | TF_CLUIE_COUNT | TF_CLUIE_SELECTION | TF_CLUIE_STRING | TF_CLUIE_PAGEINDEX | TF_CLUIE_CURRENTPAGE;
return S_OK;
}
STDMETHODIMP CandidateWindow::GetDocumentMgr(ITfDocumentMgr **ppdim) {
if (!textService_)
return E_FAIL;
return textService_->currentContext()->GetDocumentMgr(ppdim);
}
STDMETHODIMP CandidateWindow::GetCount(UINT *puCount) {
if (!puCount)
return E_INVALIDARG;
*puCount = std::min<UINT>(10, items_.size());
return S_OK;
}
STDMETHODIMP CandidateWindow::GetSelection(UINT *puIndex) {
assert(currentSel_ >= 0);
if (!puIndex)
return E_INVALIDARG;
*puIndex = static_cast<UINT>(currentSel_);
return S_OK;
}
STDMETHODIMP CandidateWindow::GetString(UINT uIndex, BSTR *pbstr) {
if (!pbstr)
return E_INVALIDARG;
if (uIndex >= items_.size())
return E_INVALIDARG;
*pbstr = SysAllocString(items_[uIndex].c_str());
return S_OK;
}
STDMETHODIMP CandidateWindow::GetPageIndex(UINT *puIndex, UINT uSize, UINT *puPageCnt) {
/// XXX Always return the same single page index.
if (!puPageCnt)
return E_INVALIDARG;
*puPageCnt = 1;
if (puIndex) {
if (uSize < *puPageCnt) {
return E_INVALIDARG;
}
puIndex[0] = 0;
}
return S_OK;
}
STDMETHODIMP CandidateWindow::SetPageIndex(UINT *puIndex, UINT uPageCnt) {
/// XXX Do not let app set page indices.
if (!puIndex)
return E_INVALIDARG;
return S_OK;
}
STDMETHODIMP CandidateWindow::GetCurrentPage(UINT *puPage) {
if (!puPage)
return E_INVALIDARG;
*puPage = 0;
return S_OK;
}
LRESULT CandidateWindow::wndProc(UINT msg, WPARAM wp , LPARAM lp) {
switch (msg) {
case WM_PAINT:
onPaint(wp, lp);
break;
case WM_ERASEBKGND:
return TRUE;
break;
case WM_LBUTTONDOWN:
onLButtonDown(wp, lp);
break;
case WM_MOUSEMOVE:
onMouseMove(wp, lp);
break;
case WM_LBUTTONUP:
onLButtonUp(wp, lp);
break;
case WM_MOUSEACTIVATE:
return MA_NOACTIVATE;
default:
return Window::wndProc(msg, wp, lp);
}
return 0;
}
void CandidateWindow::onPaint(WPARAM wp, LPARAM lp) {
// TODO: check isImmersive_, and draw the window differently
// in Windows 8 app immersive mode to follow windows 8 UX guidelines
PAINTSTRUCT ps;
BeginPaint(hwnd_, &ps);
HDC hDC = ps.hdc;
HFONT oldFont;
RECT rc;
oldFont = (HFONT)SelectObject(hDC, font_);
GetClientRect(hwnd_,&rc);
SetTextColor(hDC, GetSysColor(COLOR_WINDOWTEXT));
SetBkColor(hDC, GetSysColor(COLOR_WINDOW));
// paint window background and border
// draw a flat black border in Windows 8 app immersive mode
// draw a 3d border in desktop mode
if(isImmersive()) {
HPEN pen = ::CreatePen(PS_SOLID, 3, RGB(0, 0, 0));
HGDIOBJ oldPen = ::SelectObject(hDC, pen);
::Rectangle(hDC, rc.left, rc.top, rc.right, rc.bottom);
::SelectObject(hDC, oldPen);
::DeleteObject(pen);
}
else {
// draw a 3d border in desktop mode
::FillSolidRect(ps.hdc, rc.left, rc.top, rc.right - rc.left, rc.bottom - rc.top, GetSysColor(COLOR_WINDOW));
::Draw3DBorder(hDC, &rc, GetSysColor(COLOR_3DFACE), 0);
}
// paint items
int col = 0;
int x = margin_, y = margin_;
for(int i = 0, n = items_.size(); i < n; ++i) {
paintItem(hDC, i, x, y);
++col; // go to next column
if(col >= candPerRow_) {
col = 0;
x = margin_;
y += itemHeight_ + rowSpacing_;
}
else {
x += colSpacing_ + selKeyWidth_ + textWidth_;
}
}
SelectObject(hDC, oldFont);
EndPaint(hwnd_, &ps);
}
void CandidateWindow::recalculateSize() {
if(items_.empty()) {
resize(margin_ * 2, margin_ * 2);
}
HDC hDC = ::GetWindowDC(hwnd());
int height = 0;
int width = 0;
selKeyWidth_ = 0;
textWidth_ = 0;
itemHeight_ = 0;
HGDIOBJ oldFont = ::SelectObject(hDC, font_);
vector<wstring>::const_iterator it;
for(int i = 0, n = items_.size(); i < n; ++i) {
SIZE selKeySize;
int lineHeight = 0;
// the selection key string
wchar_t selKey[] = L"?. ";
selKey[0] = selKeys_[i];
::GetTextExtentPoint32W(hDC, selKey, 3, &selKeySize);
if(selKeySize.cx > selKeyWidth_)
selKeyWidth_ = selKeySize.cx;
// the candidate string
SIZE candidateSize;
wstring& item = items_.at(i);
::GetTextExtentPoint32W(hDC, item.c_str(), item.length(), &candidateSize);
if(candidateSize.cx > textWidth_)
textWidth_ = candidateSize.cx;
int itemHeight = max(candidateSize.cy, selKeySize.cy);
if(itemHeight > itemHeight_)
itemHeight_ = itemHeight;
}
::SelectObject(hDC, oldFont);
::ReleaseDC(hwnd(), hDC);
if(items_.size() <= candPerRow_) {
width = items_.size() * (selKeyWidth_ + textWidth_);
width += colSpacing_ * (items_.size() - 1);
width += margin_ * 2;
height = itemHeight_ + margin_ * 2;
}
else {
width = candPerRow_ * (selKeyWidth_ + textWidth_);
width += colSpacing_ * (candPerRow_ - 1);
width += margin_ * 2;
int rowCount = items_.size() / candPerRow_;
if(items_.size() % candPerRow_)
++rowCount;
height = itemHeight_ * rowCount + rowSpacing_ * (rowCount - 1) + margin_ * 2;
}
resize(width, height);
}
void CandidateWindow::setCandPerRow(int n) {
if(n != candPerRow_) {
candPerRow_ = n;
recalculateSize();
}
}
bool CandidateWindow::filterKeyEvent(KeyEvent& keyEvent) {
// select item with arrow keys
int oldSel = currentSel_;
switch(keyEvent.keyCode()) {
case VK_UP:
if(currentSel_ - candPerRow_ >=0)
currentSel_ -= candPerRow_;
break;
case VK_DOWN:
if(currentSel_ + candPerRow_ < items_.size())
currentSel_ += candPerRow_;
break;
case VK_LEFT:
if(currentSel_ - 1 >=0)
--currentSel_;
break;
case VK_RIGHT:
if(currentSel_ + 1 < items_.size())
++currentSel_;
break;
case VK_RETURN:
hasResult_ = true;
return true;
default:
return false;
}
// if currently selected item is changed, redraw
if(currentSel_ != oldSel) {
// repaint the old and new items
RECT rect;
itemRect(oldSel, rect);
::InvalidateRect(hwnd_, &rect, TRUE);
itemRect(currentSel_, rect);
::InvalidateRect(hwnd_, &rect, TRUE);
return true;
}
return false;
}
void CandidateWindow::setCurrentSel(int sel) {
if(sel >= items_.size())
sel = 0;
if (currentSel_ != sel) {
currentSel_ = sel;
if (isVisible())
::InvalidateRect(hwnd_, NULL, TRUE);
}
}
void CandidateWindow::clear() {
items_.clear();
selKeys_.clear();
currentSel_ = 0;
hasResult_ = false;
}
void CandidateWindow::setUseCursor(bool use) {
useCursor_ = use;
if(isVisible())
::InvalidateRect(hwnd_, NULL, TRUE);
}
void CandidateWindow::paintItem(HDC hDC, int i, int x, int y) {
RECT textRect = {x, y, 0, y + itemHeight_};
wchar_t selKey[] = L"?. ";
selKey[0] = selKeys_[i];
textRect.right = textRect.left + selKeyWidth_;
// FIXME: make the color of strings configurable.
COLORREF selKeyColor = RGB(0, 0, 255);
COLORREF oldColor = ::SetTextColor(hDC, selKeyColor);
// paint the selection key
::ExtTextOut(hDC, textRect.left, textRect.top, ETO_OPAQUE, &textRect, selKey, 3, NULL);
::SetTextColor(hDC, oldColor); // restore text color
// paint the candidate string
wstring& item = items_.at(i);
textRect.left += selKeyWidth_;
textRect.right = textRect.left + textWidth_;
// paint the candidate string
::ExtTextOut(hDC, textRect.left, textRect.top, ETO_OPAQUE, &textRect, item.c_str(), item.length(), NULL);
if(useCursor_ && i == currentSel_) { // invert the selected item
int left = textRect.left; // - selKeyWidth_;
int top = textRect.top;
int width = textRect.right - left;
int height = itemHeight_;
::BitBlt(hDC, left, top, width, itemHeight_, hDC, left, top, NOTSRCCOPY);
}
}
void CandidateWindow::itemRect(int i, RECT& rect) {
int row, col;
row = i / candPerRow_;
col = i % candPerRow_;
rect.left = margin_ + col * (selKeyWidth_ + textWidth_ + colSpacing_);
rect.top = margin_ + row * (itemHeight_ + rowSpacing_);
rect.right = rect.left + (selKeyWidth_ + textWidth_);
rect.bottom = rect.top + itemHeight_;
}
} // namespace Ime