-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyToolBar.cpp
530 lines (424 loc) · 13.1 KB
/
MyToolBar.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
// WinDjView
// Copyright (C) 2004-2015 Andrew Zhezherun
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
// http://www.gnu.org/copyleft/gpl.html
#include "stdafx.h"
#include "WinDjView.h"
#include "MyToolBar.h"
#include "Drawing.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMyToolBar
IMPLEMENT_DYNAMIC(CMyToolBar, CControlBar)
CMyToolBar::CMyToolBar()
{
m_cxLeftBorder = m_cxRightBorder = m_cyBottomBorder = m_cyTopBorder = 0;
}
CMyToolBar::~CMyToolBar()
{
}
BEGIN_MESSAGE_MAP(CMyToolBar, CControlBar)
ON_WM_CREATE()
ON_WM_DESTROY()
ON_WM_NCPAINT()
ON_WM_PAINT()
ON_NOTIFY(NM_CUSTOMDRAW, 1, OnCustomDraw)
ON_WM_WINDOWPOSCHANGING()
END_MESSAGE_MAP()
// CMyToolBar message handlers
BOOL CMyToolBar::Create(CWnd* pParentWnd, DWORD dwStyle, UINT nID)
{
VERIFY(AfxDeferRegisterClass(AFX_WNDCONTROLBAR_REG));
DWORD dwNewStyle = (dwStyle & CBRS_ALIGN_ANY) | (dwStyle & CBRS_BORDER_ANY)
| WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
// Save the style
m_dwStyle = (dwNewStyle & CBRS_ALL);
if (!CControlBar::Create(_afxWndControlBar, NULL,
dwNewStyle, CRect(0, 0, 0, 0), pParentWnd, nID))
return false;
DWORD dwToolBarStyle = dwStyle | WS_VISIBLE | WS_CLIPCHILDREN;
if (!m_toolBar.Create(this, dwToolBarStyle, 1))
return false;
m_toolBar.GetToolBarCtrl().SetExtendedStyle(TBSTYLE_EX_DOUBLEBUFFER);
return true;
}
BOOL CMyToolBar::CreateEx(CWnd* pParentWnd, DWORD dwCtrlStyle,
DWORD dwStyle, CRect rcBorders, UINT nID)
{
VERIFY(AfxDeferRegisterClass(AFX_WNDCONTROLBAR_REG));
DWORD dwNewStyle = (dwStyle & CBRS_ALIGN_ANY) | (dwStyle & CBRS_BORDER_ANY)
| WS_CHILD | WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
// Save the style
m_dwStyle = (dwNewStyle & CBRS_ALL);
if (!CControlBar::Create(_afxWndControlBar, NULL,
dwNewStyle, CRect(0, 0, 0, 0), pParentWnd, nID))
return false;
DWORD dwToolBarStyle = dwStyle | WS_VISIBLE | WS_CLIPCHILDREN;
if (!m_toolBar.CreateEx(this, dwCtrlStyle, dwToolBarStyle, rcBorders, 1))
return false;
m_toolBar.GetToolBarCtrl().SetExtendedStyle(TBSTYLE_EX_DOUBLEBUFFER);
return true;
}
int CMyToolBar::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CControlBar::OnCreate(lpCreateStruct) == -1)
return -1;
theApp.AddObserver(this);
return 0;
}
void CMyToolBar::OnDestroy()
{
theApp.RemoveObserver(this);
CControlBar::OnDestroy();
}
void CMyToolBar::OnNcPaint()
{
CWindowDC dc(this);
CRect rcClient = ::GetClientRect(this);
CRect rcWindow;
GetWindowRect(rcWindow);
ScreenToClient(rcWindow);
CRect rcToolBar = ::GetClientRect(m_toolBar);
m_toolBar.ClientToScreen(rcToolBar);
ScreenToClient(rcToolBar);
dc.ExcludeClipRect(rcToolBar - rcWindow.TopLeft());
dc.FillSolidRect(rcClient - rcWindow.TopLeft(), ::GetSysColor(COLOR_BTNFACE));
}
void CMyToolBar::OnPaint()
{
// Do nothing, but we still must create a paint DC in this handler,
// otherwise Windows goes crazy.
CPaintDC paintDC(this);
}
void CMyToolBar::OnCustomDraw(NMHDR* pNMHDR, LRESULT* pResult)
{
LPNMTBCUSTOMDRAW pTBCD = (LPNMTBCUSTOMDRAW) pNMHDR;
if (pTBCD->nmcd.dwDrawStage == CDDS_PREPAINT)
{
*pResult = CDRF_NOTIFYITEMDRAW;
return;
}
if (pTBCD->nmcd.dwDrawStage == CDDS_ITEMPREPAINT)
{
if (m_controls.find(pTBCD->nmcd.dwItemSpec) != m_controls.end())
{
*pResult = CDRF_SKIPDEFAULT;
return;
}
for (size_t nLabel = 0; nLabel < m_labels.size(); ++nLabel)
{
if (pTBCD->nmcd.dwItemSpec == m_labels[nLabel].nID)
{
Label& label = m_labels[nLabel];
CDC dc;
dc.Attach(pTBCD->nmcd.hdc);
CFont* pOldFont = dc.SelectObject(label.pFont);
COLORREF crTextColor = dc.SetTextColor(::GetSysColor(COLOR_WINDOWTEXT));
int nBkMode = dc.SetBkMode(TRANSPARENT);
UINT nFlags = DT_LEFT | DT_NOPREFIX | DT_VCENTER | DT_SINGLELINE;
CRect rect(pTBCD->nmcd.rc);
rect.left += 3;
dc.DrawText(label.strText, rect, nFlags);
dc.SetTextColor(crTextColor);
dc.SetBkMode(nBkMode);
dc.SelectObject(pOldFont);
dc.Detach();
*pResult = CDRF_SKIPDEFAULT;
return;
}
}
}
*pResult = 0;
}
void CMyToolBar::InsertLabel(int nPos, UINT nID, CFont* pFont)
{
Label label;
label.nID = nID;
label.strText = LoadString(nID);
label.pFont = pFont;
m_labels.push_back(label);
CScreenDC dcScreen;
CFont* pOldFont = dcScreen.SelectObject(pFont);
int nWidth = dcScreen.GetTextExtent(label.strText).cx + 3;
dcScreen.SelectObject(pOldFont);
TBBUTTON btn;
ZeroMemory(&btn, sizeof(btn));
btn.idCommand = nID;
btn.fsStyle = TBSTYLE_BUTTON;
TBBUTTONINFO info;
ZeroMemory(&info, sizeof(info));
info.cbSize = sizeof(info);
info.dwMask = TBIF_SIZE;
info.cx = nWidth;
GetToolBarCtrl().InsertButton(nPos, &btn);
GetToolBarCtrl().SetButtonInfo(nID, &info);
}
void CMyToolBar::OnUpdate(const Observable* source, const Message* message)
{
if (message->code == APP_LANGUAGE_CHANGED)
{
CScreenDC dcScreen;
for (size_t nLabel = 0; nLabel < m_labels.size(); ++nLabel)
{
Label& label = m_labels[nLabel];
label.strText = LoadString(label.nID);
CFont* pOldFont = dcScreen.SelectObject(label.pFont);
int nWidth = dcScreen.GetTextExtent(label.strText).cx + 3;
dcScreen.SelectObject(pOldFont);
TBBUTTONINFO info;
ZeroMemory(&info, sizeof(info));
info.cbSize = sizeof(info);
info.dwMask = TBIF_SIZE;
info.cx = nWidth;
GetToolBarCtrl().SetButtonInfo(label.nID, &info);
}
if (!m_labels.empty())
{
for (int nButton = 0; nButton < GetToolBarCtrl().GetButtonCount(); ++nButton)
{
TBBUTTON btn;
ZeroMemory(&btn, sizeof(btn));
GetToolBarCtrl().GetButton(nButton, &btn);
CWnd* pWnd = m_toolBar.GetDlgItem(btn.idCommand);
if (btn.fsStyle == TBSTYLE_BUTTON && pWnd != NULL)
{
CRect rcItem;
m_toolBar.GetItemRect(nButton, rcItem);
rcItem.DeflateRect(3, 0);
pWnd->MoveWindow(rcItem);
}
}
GetToolBarCtrl().AutoSize();
Invalidate(false);
}
}
}
void CMyToolBar::OnWindowPosChanging(LPWINDOWPOS lpWndPos)
{
if (!(lpWndPos->flags & SWP_NOSIZE))
{
m_toolBar.MoveWindow(0, 0, lpWndPos->cx, lpWndPos->cy);
}
CControlBar::OnWindowPosChanging(lpWndPos);
}
CSize CMyToolBar::CalcFixedLayout(BOOL bStretch, BOOL bHorz)
{
return m_toolBar.CalcFixedLayout(bStretch, bHorz);
}
CSize CMyToolBar::CalcDynamicLayout(int nLength, DWORD nMode)
{
return m_toolBar.CalcDynamicLayout(nLength, nMode);
}
void CMyToolBar::OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler)
{
}
void CMyToolBar::OnSettingChange(UINT uFlags, LPCTSTR lpszSection)
{
Invalidate();
if (m_pDockSite != NULL)
m_pDockSite->RecalcLayout();
}
void CMyToolBar::OnSysColorChange()
{
Invalidate();
m_toolBar.Invalidate();
}
void CMyToolBar::SetControl(int nPos, UINT nID, int nWidth)
{
m_controls.insert(nID);
TBBUTTON btn;
ZeroMemory(&btn, sizeof(btn));
btn.idCommand = nID;
btn.fsStyle = TBSTYLE_BUTTON;
TBBUTTONINFO info;
ZeroMemory(&info, sizeof(info));
info.cbSize = sizeof(info);
info.dwMask = TBIF_SIZE;
info.cx = nWidth;
GetToolBarCtrl().DeleteButton(nPos);
GetToolBarCtrl().InsertButton(nPos, &btn);
GetToolBarCtrl().SetButtonInfo(nID, &info);
}
BOOL CMyToolBar::CAuxToolBar::OnWndMsg(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult)
{
if (message == WM_RBUTTONDOWN || message == WM_RBUTTONUP)
{
// Eat the message. Standard windows toolbar does some strange
// things after right-clicking.
if (pResult != NULL)
*pResult = 0;
return true;
}
return CToolBar::OnWndMsg(message, wParam, lParam, pResult);
}
// Override MFC to allow loading full color bitmaps into the toolbar
struct CToolBarData
{
WORD wVersion;
WORD wWidth;
WORD wHeight;
WORD wItemCount;
//WORD aItems[wItemCount]
WORD* items()
{
return (WORD*)(this + 1);
}
};
bool CMyToolBar::CAuxToolBar::LoadToolBar(UINT nIDResource)
{
return LoadToolBar(MAKEINTRESOURCE(nIDResource));
}
bool CMyToolBar::CAuxToolBar::LoadToolBar(LPCTSTR lpszResourceName)
{
ASSERT_VALID(this);
ASSERT(lpszResourceName != NULL);
// determine location of the bitmap in resource fork
HINSTANCE hInst = AfxFindResourceHandle(lpszResourceName, RT_TOOLBAR);
HRSRC hRsrc = ::FindResource(hInst, lpszResourceName, RT_TOOLBAR);
if (hRsrc == NULL)
return FALSE;
HGLOBAL hGlobal = LoadResource(hInst, hRsrc);
if (hGlobal == NULL)
return FALSE;
CToolBarData* pData = (CToolBarData*)LockResource(hGlobal);
if (pData == NULL)
return FALSE;
ASSERT(pData->wVersion == 1);
UINT* pItems = new UINT[pData->wItemCount];
for (int i = 0; i < pData->wItemCount; i++)
pItems[i] = pData->items()[i];
bool bResult = !!SetButtons(pItems, pData->wItemCount);
delete[] pItems;
if (bResult)
{
// set new sizes of the buttons
CSize sizeImage(pData->wWidth, pData->wHeight);
CSize sizeButton(pData->wWidth + 7, pData->wHeight + 7);
SetSizes(sizeButton, sizeImage);
// load bitmap now that sizes are known by the toolbar control
bResult = LoadBitmap(lpszResourceName);
}
UnlockResource(hGlobal);
FreeResource(hGlobal);
return bResult;
}
#define AFX_RGB_TO_RGBQUAD(r,g,b) (RGB(b,g,r))
#define AFX_CLR_TO_RGBQUAD(clr) (RGB(GetBValue(clr), GetGValue(clr), GetRValue(clr)))
struct AFX_COLORMAP
{
// use DWORD instead of RGBQUAD so we can compare two RGBQUADs easily
DWORD rgbqFrom;
int iSysColorTo;
};
static const AFX_COLORMAP _afxSysColorMap[] =
{
// mapping from color in DIB to system color
{ AFX_RGB_TO_RGBQUAD(0x00, 0x00, 0x00), COLOR_BTNTEXT }, // black
{ AFX_RGB_TO_RGBQUAD(0x80, 0x80, 0x80), COLOR_BTNSHADOW }, // dark gray
{ AFX_RGB_TO_RGBQUAD(0xC0, 0xC0, 0xC0), COLOR_BTNFACE }, // bright gray
{ AFX_RGB_TO_RGBQUAD(0xFF, 0xFF, 0xFF), COLOR_BTNHIGHLIGHT } // white
};
static HBITMAP MyAfxLoadSysColorBitmap(HINSTANCE hInst, HRSRC hRsrc, BOOL bMono = false)
{
HGLOBAL hglb;
if ((hglb = LoadResource(hInst, hRsrc)) == NULL)
{
return NULL;
}
LPBITMAPINFOHEADER lpBitmap = (LPBITMAPINFOHEADER)LockResource(hglb);
if ((lpBitmap == NULL)/* || (lpBitmap->biBitCount > 8)*/)
{
return NULL;
}
// make copy of BITMAPINFOHEADER so we can modify the color table
const int nColorTableSize = 16;
UINT nSize = lpBitmap->biSize + nColorTableSize * sizeof(RGBQUAD);
LPBITMAPINFOHEADER lpBitmapInfo = (LPBITMAPINFOHEADER)::malloc(nSize);
if (lpBitmapInfo == NULL)
{
return NULL;
}
Checked::memcpy_s(lpBitmapInfo, nSize, lpBitmap, nSize);
// color table is in RGBQUAD DIB format
DWORD* pColorTable =
(DWORD*)(((LPBYTE)lpBitmapInfo) + (UINT)lpBitmapInfo->biSize);
for (int iColor = 0; iColor < nColorTableSize; iColor++)
{
// look for matching RGBQUAD color in original
for (int i = 0; i < _countof(_afxSysColorMap); i++)
{
if (pColorTable[iColor] == _afxSysColorMap[i].rgbqFrom)
{
if (bMono)
{
// all colors except text become white
if (_afxSysColorMap[i].iSysColorTo != COLOR_BTNTEXT)
pColorTable[iColor] = AFX_RGB_TO_RGBQUAD(255, 255, 255);
}
else
pColorTable[iColor] =
AFX_CLR_TO_RGBQUAD(::GetSysColor(_afxSysColorMap[i].iSysColorTo));
break;
}
}
}
int nWidth = (int)lpBitmapInfo->biWidth;
int nHeight = (int)lpBitmapInfo->biHeight;
HDC hDCScreen = ::GetDC(NULL);
HBITMAP hbm = ::CreateCompatibleBitmap(hDCScreen, nWidth, nHeight);
if (hbm != NULL)
{
HDC hDCGlyphs = ::CreateCompatibleDC(hDCScreen);
HBITMAP hbmOld = (HBITMAP)::SelectObject(hDCGlyphs, hbm);
LPBYTE lpBits;
lpBits = (LPBYTE)(lpBitmap + 1);
lpBits += ((size_t)1 << (lpBitmapInfo->biBitCount)) * sizeof(RGBQUAD);
StretchDIBits(hDCGlyphs, 0, 0, nWidth, nHeight, 0, 0, nWidth, nHeight,
lpBits, (LPBITMAPINFO)lpBitmapInfo, DIB_RGB_COLORS, SRCCOPY);
SelectObject(hDCGlyphs, hbmOld);
::DeleteDC(hDCGlyphs);
}
::ReleaseDC(NULL, hDCScreen);
// free copy of bitmap info struct and resource itself
::free(lpBitmapInfo);
::FreeResource(hglb);
return hbm;
}
bool CMyToolBar::CAuxToolBar::LoadBitmap(UINT nIDResource)
{
return LoadBitmap(MAKEINTRESOURCE(nIDResource));
}
bool CMyToolBar::CAuxToolBar::LoadBitmap(LPCTSTR lpszResourceName)
{
ASSERT_VALID(this);
ASSERT(lpszResourceName != NULL);
// determine location of the bitmap in resource fork
HINSTANCE hInstImageWell = AfxFindResourceHandle(lpszResourceName, RT_BITMAP);
HRSRC hRsrcImageWell = ::FindResource(hInstImageWell, lpszResourceName, RT_BITMAP);
if (hRsrcImageWell == NULL)
return FALSE;
// load the bitmap
HBITMAP hbmImageWell;
hbmImageWell = MyAfxLoadSysColorBitmap(hInstImageWell, hRsrcImageWell);
// tell common control toolbar about the new bitmap
if (!AddReplaceBitmap(hbmImageWell))
return FALSE;
// remember the resource handles so the bitmap can be recolored if necessary
m_hInstImageWell = hInstImageWell;
m_hRsrcImageWell = hRsrcImageWell;
return TRUE;
}