Kiln » TortoiseHg » TortoiseHg
Clone URL:  
IconBitmapUtils.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
// Copyright (C) 2011 Fog Creek Software // Copyright (C) 2009 TortoiseSVN // // 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, // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. // Adapted for use in TortoiseHg by Veniamin Albaev #include "stdafx.h" #include "IconBitmapUtils.h" #include "SysInfo.h" CIconBitmapUtils::CIconBitmapUtils() : m_hUxTheme(NULL) { if (CSysInfo::IsVistaOrLater()) { m_hUxTheme = ::LoadLibrary(_T("UXTHEME.DLL")); if (m_hUxTheme) { m_pfnGetBufferedPaintBits = (FN_GetBufferedPaintBits)::GetProcAddress( m_hUxTheme, "GetBufferedPaintBits"); m_pfnBeginBufferedPaint = (FN_BeginBufferedPaint)::GetProcAddress(m_hUxTheme, "BeginBufferedPaint"); m_pfnEndBufferedPaint = (FN_EndBufferedPaint)::GetProcAddress(m_hUxTheme, "EndBufferedPaint"); } } } CIconBitmapUtils::~CIconBitmapUtils() { if (m_hUxTheme) ::FreeLibrary(m_hUxTheme); } HBITMAP CIconBitmapUtils::IconToBitmap(HICON hIcon) { if (!hIcon) return NULL; RECT rect; rect.right = ::GetSystemMetrics(SM_CXMENUCHECK); rect.bottom = ::GetSystemMetrics(SM_CYMENUCHECK); rect.left = rect.top = 0; HWND hwndDesktop = ::GetDesktopWindow(); if (hwndDesktop == NULL) return NULL; HDC hScreenDC = ::GetDC(hwndDesktop); if (hScreenDC == NULL) return NULL; // Create a compatible DC HDC hDestDC = ::CreateCompatibleDC(hScreenDC); if (hDestDC == NULL) { ::ReleaseDC(hwndDesktop, hScreenDC); return NULL; } // Create a new bitmap of icon size HBITMAP hBitmap = ::CreateCompatibleBitmap(hScreenDC, rect.right, rect.bottom); if (hBitmap == NULL) { ::DeleteDC(hDestDC); ::ReleaseDC(hwndDesktop, hScreenDC); return NULL; } // Select it into the compatible DC HBITMAP hOldBitmap = (HBITMAP)::SelectObject(hDestDC, hBitmap); if (hOldBitmap == NULL) return NULL; // Fill the background of the compatible DC with the white color // that is taken by menu routines as transparent ::SetBkColor(hDestDC, RGB(255, 255, 255)); ::ExtTextOut(hDestDC, 0, 0, ETO_OPAQUE, &rect, NULL, 0, NULL); // Draw the icon into the compatible DC ::DrawIconEx(hDestDC, 0, 0, hIcon, rect.right, rect.bottom, 0, NULL, DI_NORMAL); // Restore settings ::SelectObject(hDestDC, hOldBitmap); ::DeleteDC(hDestDC); ::ReleaseDC(hwndDesktop, hScreenDC); return hBitmap; } HBITMAP CIconBitmapUtils::IconToBitmapPARGB32(HICON hIcon) { if (!hIcon) return NULL; if (m_pfnBeginBufferedPaint == NULL || m_pfnEndBufferedPaint == NULL || m_pfnGetBufferedPaintBits == NULL) { ATLTRACE(" CIconBitmapUtils::IconToBitmapPARGB32: Theme functions not found, " "returns NULL\n"); return NULL; } SIZE sizeIcon; sizeIcon.cx = ::GetSystemMetrics(SM_CXSMICON); sizeIcon.cy = ::GetSystemMetrics(SM_CYSMICON); RECT rcIcon; ::SetRect(&rcIcon, 0, 0, sizeIcon.cx, sizeIcon.cy); HBITMAP hBitmap = NULL; HDC hDestDC = ::CreateCompatibleDC(NULL); if (hDestDC) { if (SUCCEEDED(Create32BitHBITMAP(hDestDC, &sizeIcon, NULL, &hBitmap))) { HBITMAP hOldBitmap = (HBITMAP)::SelectObject(hDestDC, hBitmap); if (hOldBitmap) { BLENDFUNCTION bfAlpha = { AC_SRC_OVER, 0, 255, AC_SRC_ALPHA }; BP_PAINTPARAMS paintParams = {0}; paintParams.cbSize = sizeof(BP_PAINTPARAMS); paintParams.dwFlags = BPPF_ERASE; paintParams.pBlendFunction = &bfAlpha; HDC hBufferDC; HPAINTBUFFER hPaintBuffer = m_pfnBeginBufferedPaint(hDestDC, &rcIcon, BPBF_DIB, &paintParams, &hBufferDC); if (hPaintBuffer) { if (::DrawIconEx(hBufferDC, 0, 0, hIcon, sizeIcon.cx, sizeIcon.cy, 0, NULL, DI_NORMAL)) { // If icon did not have an alpha channel we need to convert buffer to PARGB ConvertBufferToPARGB32(hPaintBuffer, hDestDC, hIcon, sizeIcon); } // This will write the buffer contents to the destination bitmap m_pfnEndBufferedPaint(hPaintBuffer, TRUE); } ::SelectObject(hDestDC, hOldBitmap); } } ::DeleteDC(hDestDC); } return hBitmap; } HRESULT CIconBitmapUtils::Create32BitHBITMAP(HDC hDC, const SIZE *pSize, void **ppvBits, HBITMAP* phBitmap) { *phBitmap = NULL; BITMAPINFO bmi; ::SecureZeroMemory(&bmi, sizeof(BITMAPINFO)); bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); bmi.bmiHeader.biPlanes = 1; bmi.bmiHeader.biCompression = BI_RGB; bmi.bmiHeader.biWidth = pSize->cx; bmi.bmiHeader.biHeight = pSize->cy; bmi.bmiHeader.biBitCount = 32; HDC hUsedDC = hDC ? hDC : ::GetDC(NULL); if (hUsedDC) { *phBitmap = ::CreateDIBSection(hUsedDC, &bmi, DIB_RGB_COLORS, ppvBits, NULL, 0); if (hDC != hUsedDC) { ::ReleaseDC(NULL, hUsedDC); } } return (NULL == *phBitmap) ? E_OUTOFMEMORY : S_OK; } HRESULT CIconBitmapUtils::ConvertBufferToPARGB32(HPAINTBUFFER hPaintBuffer, HDC hDC, HICON hIcon, SIZE& sizeIcon) { RGBQUAD *prgbQuad; int cxRow; HRESULT hr = m_pfnGetBufferedPaintBits(hPaintBuffer, &prgbQuad, &cxRow); if (SUCCEEDED(hr)) { DWORD* pargb = (DWORD*)prgbQuad; if (!HasAlpha(pargb, sizeIcon, cxRow)) { ICONINFO info; if (::GetIconInfo(hIcon, &info)) { if (info.hbmMask) { hr = ConvertToPARGB32(hDC, pargb, info.hbmMask, sizeIcon, cxRow); } ::DeleteObject(info.hbmColor); ::DeleteObject(info.hbmMask); } } } return hr; } bool CIconBitmapUtils::HasAlpha(DWORD* pargb, SIZE& sizeImage, int cxRow) { ULONG cxDelta = cxRow - sizeImage.cx; for (ULONG y = sizeImage.cy; y; --y) { for (ULONG x = sizeImage.cx; x; --x) { if (*pargb++ & 0xFF000000) { return true; } } pargb += cxDelta; } return false; } HRESULT CIconBitmapUtils::ConvertToPARGB32(HDC hDC, DWORD* pargb, HBITMAP hBitmap, SIZE& sizeImage, int cxRow) { BITMAPINFO bmi; ::SecureZeroMemory(&bmi, sizeof(BITMAPINFO)); bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER); bmi.bmiHeader.biPlanes = 1; bmi.bmiHeader.biCompression = BI_RGB; bmi.bmiHeader.biWidth = sizeImage.cx; bmi.bmiHeader.biHeight = sizeImage.cy; bmi.bmiHeader.biBitCount = 32; HRESULT hr = E_OUTOFMEMORY; HANDLE hHeap = ::GetProcessHeap(); void *pvBits = ::HeapAlloc(hHeap, 0, bmi.bmiHeader.biWidth * 4 * bmi.bmiHeader.biHeight); if (pvBits) { hr = E_UNEXPECTED; if (::GetDIBits(hDC, hBitmap, 0, bmi.bmiHeader.biHeight, pvBits, &bmi, DIB_RGB_COLORS) == bmi.bmiHeader.biHeight) { ULONG cxDelta = cxRow - bmi.bmiHeader.biWidth; DWORD* pargbMask = (DWORD*)pvBits; for (ULONG y = bmi.bmiHeader.biHeight; y; --y) { for (ULONG x = bmi.bmiHeader.biWidth; x; --x) { if (*pargbMask++) { // transparent pixel *pargb++ = 0; } else { // opaque pixel *pargb++ |= 0xFF000000; } } pargb += cxDelta; } hr = S_OK; } ::HeapFree(hHeap, 0, pvBits); } return hr; }