-
Notifications
You must be signed in to change notification settings - Fork 21
/
NotifyWindow.cpp
553 lines (434 loc) · 13 KB
/
NotifyWindow.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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
//
//
// Jeremy '13,7,17
//
//
#include "Private.h"
#include "Globals.h"
#include "BaseWindow.h"
#include "NotifyWindow.h"
//+---------------------------------------------------------------------------
//
// ctor
//
//----------------------------------------------------------------------------
CNotifyWindow::CNotifyWindow(_In_ NOTIFYWNDCALLBACK pfnCallback, _In_ void *pv)
{
_SetTextColor(CANDWND_ITEM_COLOR, GetSysColor(COLOR_WINDOW)); // text color is black
_SetFillColor((HBRUSH)(COLOR_WINDOW+1));
_pfnCallback = pfnCallback;
_pObj = pv;
_pShadowWnd = nullptr;
_cxTitle = 0;
_wndWidth = 0;
}
//+---------------------------------------------------------------------------
//
// dtor
//
//----------------------------------------------------------------------------
CNotifyWindow::~CNotifyWindow()
{
_DeleteShadowWnd();
}
//+---------------------------------------------------------------------------
//
// _Create
//
// CandidateWinow is the top window
//----------------------------------------------------------------------------
BOOL CNotifyWindow::_Create(ATOM atom, _In_ UINT wndWidth, _In_opt_ HWND parentWndHandle)
{
BOOL ret = FALSE;
_wndWidth = wndWidth;
ret = _CreateMainWindow(atom, parentWndHandle);
if (FALSE == ret)
{
goto Exit;
}
ret = _CreateBackGroundShadowWindow();
if (FALSE == ret)
{
goto Exit;
}
_ResizeWindow();
Exit:
return TRUE;
}
BOOL CNotifyWindow::_CreateMainWindow(ATOM atom, _In_opt_ HWND parentWndHandle)
{
_SetUIWnd(this);
if (!CBaseWindow::_Create(atom,
WS_EX_TOPMOST |
WS_EX_TOOLWINDOW,
WS_BORDER | WS_POPUP,
NULL, 0, 0, parentWndHandle))
{
return FALSE;
}
return TRUE;
}
BOOL CNotifyWindow::_CreateBackGroundShadowWindow()
{
_pShadowWnd = new (std::nothrow) CShadowWindow(this);
if (_pShadowWnd == nullptr)
{
return FALSE;
}
if (!_pShadowWnd->_Create(Global::AtomShadowWindow,
WS_EX_TOPMOST |
WS_EX_TOOLWINDOW | WS_EX_LAYERED,
WS_DISABLED | WS_POPUP, this))
{
_DeleteShadowWnd();
return FALSE;
}
return TRUE;
}
void CNotifyWindow::_ResizeWindow()
{
SIZE size = {0, 0};
_cxTitle = max(_cxTitle, size.cx + 2 * GetSystemMetrics(SM_CXFRAME));
CBaseWindow::_Resize(0, 0, _cxTitle, _wndWidth); //x, y, cx, cy
}
//+---------------------------------------------------------------------------
//
// _Move
//
//----------------------------------------------------------------------------
void CNotifyWindow::_Move(int x, int y)
{
CBaseWindow::_Move(x, y);
}
//+---------------------------------------------------------------------------
//
// _Show
//
//----------------------------------------------------------------------------
void CNotifyWindow::_Show(BOOL isShowWnd)
{
if (_pShadowWnd)
{
_pShadowWnd->_Show(isShowWnd);
}
CBaseWindow::_Show(isShowWnd);
}
//+---------------------------------------------------------------------------
//
// _SetTextColor
// _SetFillColor
//
//----------------------------------------------------------------------------
VOID CNotifyWindow::_SetTextColor(_In_ COLORREF crColor, _In_ COLORREF crBkColor)
{
_crTextColor = _AdjustTextColor(crColor, crBkColor);
_crBkColor = crBkColor;
}
VOID CNotifyWindow::_SetFillColor(_In_ HBRUSH hBrush)
{
_brshBkColor = hBrush;
}
//+---------------------------------------------------------------------------
//
// _WindowProcCallback
//
// Cand window proc.
//----------------------------------------------------------------------------
LRESULT CALLBACK CNotifyWindow::_WindowProcCallback(_In_ HWND wndHandle, UINT uMsg, _In_ WPARAM wParam, _In_ LPARAM lParam)
{
switch (uMsg)
{
case WM_CREATE:
{
HDC dcHandle = nullptr;
dcHandle = GetDC(wndHandle);
if (dcHandle)
{
HFONT hFontOld = (HFONT)SelectObject(dcHandle, Global::defaultlFontHandle);
GetTextMetrics(dcHandle, &_TextMetric);
_cxTitle = _TextMetric.tmMaxCharWidth * _wndWidth;
SelectObject(dcHandle, hFontOld);
ReleaseDC(wndHandle, dcHandle);
}
}
return 0;
case WM_DESTROY:
_DeleteShadowWnd();
return 0;
case WM_WINDOWPOSCHANGED:
{
WINDOWPOS* pWndPos = (WINDOWPOS*)lParam;
// move shadow
if (_pShadowWnd)
{
_pShadowWnd->_OnOwnerWndMoved((pWndPos->flags & SWP_NOSIZE) == 0);
}
_FireMessageToLightDismiss(wndHandle, pWndPos);
}
break;
case WM_WINDOWPOSCHANGING:
{
WINDOWPOS* pWndPos = (WINDOWPOS*)lParam;
// show/hide shadow
if (_pShadowWnd)
{
if ((pWndPos->flags & SWP_HIDEWINDOW) != 0)
{
_pShadowWnd->_Show(FALSE);
}
// don't go behaind of shadow
if (((pWndPos->flags & SWP_NOZORDER) == 0) && (pWndPos->hwndInsertAfter == _pShadowWnd->_GetWnd()))
{
pWndPos->flags |= SWP_NOZORDER;
}
_pShadowWnd->_OnOwnerWndMoved((pWndPos->flags & SWP_NOSIZE) == 0);
}
}
break;
case WM_SHOWWINDOW:
// show/hide shadow
if (_pShadowWnd)
{
_pShadowWnd->_Show((BOOL)wParam);
}
break;
case WM_PAINT:
{
HDC dcHandle = nullptr;
PAINTSTRUCT ps;
dcHandle = BeginPaint(wndHandle, &ps);
_OnPaint(dcHandle, &ps);
_DrawBorder(wndHandle, NOTIFYWND_BORDER_WIDTH*2);
EndPaint(wndHandle, &ps);
}
return 0;
case WM_SETCURSOR:
{
POINT cursorPoint;
GetCursorPos(&cursorPoint);
MapWindowPoints(NULL, wndHandle, &cursorPoint, 1);
// handle mouse message
_HandleMouseMsg(HIWORD(lParam), cursorPoint);
}
return 1;
case WM_MOUSEMOVE:
case WM_LBUTTONDOWN:
case WM_MBUTTONDOWN:
case WM_RBUTTONDOWN:
case WM_LBUTTONUP:
case WM_MBUTTONUP:
case WM_RBUTTONUP:
{
POINT point;
POINTSTOPOINT(point, MAKEPOINTS(lParam));
// handle mouse message
_HandleMouseMsg(uMsg, point);
}
// we processes this message, it should return zero.
return 0;
case WM_MOUSEACTIVATE:
{
WORD mouseEvent = HIWORD(lParam);
if (mouseEvent == WM_LBUTTONDOWN ||
mouseEvent == WM_RBUTTONDOWN ||
mouseEvent == WM_MBUTTONDOWN)
{
return MA_NOACTIVATE;
}
}
break;
case WM_POINTERACTIVATE:
return PA_NOACTIVATE;
}
return DefWindowProc(wndHandle, uMsg, wParam, lParam);
}
//+---------------------------------------------------------------------------
//
// _HandleMouseMsg
//
//----------------------------------------------------------------------------
void CNotifyWindow::_HandleMouseMsg(_In_ UINT mouseMsg, _In_ POINT point)
{
switch (mouseMsg)
{
case WM_MOUSEMOVE:
_OnMouseMove(point);
break;
case WM_LBUTTONDOWN:
_OnLButtonDown(point);
break;
case WM_LBUTTONUP:
_OnLButtonUp(point);
break;
}
}
//+---------------------------------------------------------------------------
//
// _OnPaint
//
//----------------------------------------------------------------------------
void CNotifyWindow::_OnPaint(_In_ HDC dcHandle, _In_ PAINTSTRUCT *pPaintStruct)
{
SetBkMode(dcHandle, TRANSPARENT);
HFONT hFontOld = (HFONT)SelectObject(dcHandle, Global::defaultlFontHandle);
FillRect(dcHandle, &pPaintStruct->rcPaint, _brshBkColor);
_DrawText(dcHandle, &pPaintStruct->rcPaint);
//cleanup:
SelectObject(dcHandle, hFontOld);
}
/*
//+---------------------------------------------------------------------------
//
// _OnLButtonDown
//
//----------------------------------------------------------------------------
void CNotifyWindow::_OnLButtonDown(POINT pt)
{
return;
}
//+---------------------------------------------------------------------------
//
// _OnLButtonUp
//
//----------------------------------------------------------------------------
void CNotifyWindow::_OnLButtonUp(POINT pt)
{
return;
}
//+---------------------------------------------------------------------------
//
// _OnMouseMove
//
//----------------------------------------------------------------------------
void CNotifyWindow::_OnMouseMove(POINT pt)
{
return;
}
*/
//+---------------------------------------------------------------------------
//
// _DrawText
//
//----------------------------------------------------------------------------
void CNotifyWindow::_DrawText(_In_ HDC dcHandle, _In_ RECT *prc)
{
int cxLine = _TextMetric.tmAveCharWidth;
int cyLine = _TextMetric.tmHeight;
// int cyOffset = (cyLine-_TextMetric.tmHeight)/2;
RECT rc;
rc.top = prc->top + cyLine;
rc.bottom = rc.top + cyLine;
rc.left = prc->left + cxLine;
rc.right = prc->left +(LONG) notifyText.GetLength()* cxLine;
SetTextColor(dcHandle, NOTIFYWND_TEXT_COLOR);
SetBkColor(dcHandle, NOTIFYWND_TEXT_BK_COLOR);
ExtTextOut(dcHandle, 0, 0, ETO_OPAQUE, &rc,
notifyText.Get(), (DWORD)notifyText.GetLength(), NULL);
}
//+---------------------------------------------------------------------------
//
// _DrawBorder
//
//----------------------------------------------------------------------------
void CNotifyWindow::_DrawBorder(_In_ HWND wndHandle, _In_ int cx)
{
RECT rcWnd;
HDC dcHandle = GetWindowDC(wndHandle);
GetWindowRect(wndHandle, &rcWnd);
// zero based
OffsetRect(&rcWnd, -rcWnd.left, -rcWnd.top);
HPEN hPen = CreatePen(PS_DOT, cx, NOTIFYWND_BORDER_COLOR);
HPEN hPenOld = (HPEN)SelectObject(dcHandle, hPen);
HBRUSH hBorderBrush = (HBRUSH)GetStockObject(NULL_BRUSH);
HBRUSH hBorderBrushOld = (HBRUSH)SelectObject(dcHandle, hBorderBrush);
Rectangle(dcHandle, rcWnd.left, rcWnd.top, rcWnd.right, rcWnd.bottom);
SelectObject(dcHandle, hPenOld);
SelectObject(dcHandle, hBorderBrushOld);
DeleteObject(hPen);
DeleteObject(hBorderBrush);
ReleaseDC(wndHandle, dcHandle);
}
//+---------------------------------------------------------------------------
//
// _AddString
//
//----------------------------------------------------------------------------
void CNotifyWindow::_AddString(_Inout_ const WCHAR *pNotifyText)
{
size_t notifyTextLen = wcslen(pNotifyText);
WCHAR* pwchString = nullptr;
if (notifyTextLen)
{
pwchString = new (std::nothrow) WCHAR[ notifyText.GetLength() + notifyTextLen + 2];
if (!pwchString)
{
return;
}
StringCchCopyN(pwchString, notifyText.GetLength() + notifyTextLen + 2, notifyText.Get(),notifyText.GetLength());
StringCchCatN(pwchString,notifyText.GetLength() + notifyTextLen + 2, pNotifyText, notifyTextLen);
notifyText.Set(pwchString, notifyText.GetLength() + notifyTextLen);
}
}
//+---------------------------------------------------------------------------
//
// _SetString
//
//----------------------------------------------------------------------------
void CNotifyWindow::_SetString(_Inout_ const WCHAR *pNotifyText)
{
size_t notifyTextLen = wcslen(pNotifyText);
WCHAR* pwchString = nullptr;
if (notifyTextLen)
{
pwchString = new (std::nothrow) WCHAR[ notifyTextLen + 1];
if (!pwchString)
{
return;
}
memcpy((void*)pwchString, notifyText.Get(), notifyTextLen * sizeof(WCHAR)+1);
}
}
//+---------------------------------------------------------------------------
//
// _Clear
//
//----------------------------------------------------------------------------
void CNotifyWindow::_Clear()
{
notifyText.Set(L'\0',1);
}
void CNotifyWindow::_FireMessageToLightDismiss(_In_ HWND wndHandle, _In_ WINDOWPOS *pWndPos)
{
if (nullptr == pWndPos)
{
return;
}
BOOL isShowWnd = ((pWndPos->flags & SWP_SHOWWINDOW) != 0);
BOOL isHide = ((pWndPos->flags & SWP_HIDEWINDOW) != 0);
BOOL needResize = ((pWndPos->flags & SWP_NOSIZE) == 0);
BOOL needMove = ((pWndPos->flags & SWP_NOMOVE) == 0);
BOOL needRedraw = ((pWndPos->flags & SWP_NOREDRAW) == 0);
if (isShowWnd)
{
NotifyWinEvent(EVENT_OBJECT_IME_SHOW, wndHandle, OBJID_CLIENT, CHILDID_SELF);
}
else if (isHide)
{
NotifyWinEvent(EVENT_OBJECT_IME_HIDE, wndHandle, OBJID_CLIENT, CHILDID_SELF);
}
else if (needResize || needMove || needRedraw)
{
if (IsWindowVisible(wndHandle))
{
NotifyWinEvent(EVENT_OBJECT_IME_CHANGE, wndHandle, OBJID_CLIENT, CHILDID_SELF);
}
}
}
void CNotifyWindow::_DeleteShadowWnd()
{
if (nullptr != _pShadowWnd)
{
delete _pShadowWnd;
_pShadowWnd = nullptr;
}
}