]> git.saurik.com Git - wxWidgets.git/blame - src/msw/tbar95.cpp
Applied Diana's font patch II
[wxWidgets.git] / src / msw / tbar95.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: tbar95.cpp
3// Purpose: wxToolBar95
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
89b892a2 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma implementation "tbar95.h"
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
19#ifdef __BORLANDC__
20#pragma hdrstop
21#endif
22
23#ifndef WX_PRECOMP
2432b92d 24#include "wx/wx.h"
2bda0e17
KB
25#endif
26
47d67540 27#if wxUSE_BUTTONBAR && wxUSE_TOOLBAR && defined(__WIN95__)
2bda0e17 28
ce3ed50d 29#if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
2bda0e17
KB
30#include "malloc.h"
31#endif
32
33#include <windows.h>
34
65fd5cb0 35#if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS)
2bda0e17
KB
36#include <commctrl.h>
37#endif
38
57c208c5 39#ifndef __TWIN32__
2bda0e17 40#ifdef __GNUWIN32__
65fd5cb0 41#ifndef wxUSE_NORLANDER_HEADERS
2bda0e17
KB
42#include "wx/msw/gnuwin32/extra.h"
43#endif
57c208c5 44#endif
65fd5cb0 45#endif
2bda0e17
KB
46
47#include "wx/msw/dib.h"
48#include "wx/tbar95.h"
49#include "wx/app.h"
50#include "wx/msw/private.h"
51
6a23cbce 52// Styles
bb6290e3
JS
53#ifndef TBSTYLE_FLAT
54#define TBSTYLE_LIST 0x1000
55#define TBSTYLE_FLAT 0x0800
56#define TBSTYLE_TRANSPARENT 0x8000
57#endif
58 // use TBSTYLE_TRANSPARENT if you use TBSTYLE_FLAT
59
6a23cbce
JS
60// Messages
61#ifndef TB_GETSTYLE
62#define TB_GETSTYLE (WM_USER + 57)
63#define TB_SETSTYLE (WM_USER + 56)
64#endif
65
66/* Hint from a newsgroup for custom flatbar drawing:
67Set the TBSTYLE_CUSTOMERASE style, then handle the
68NM_CUSTOMDRAW message and do your custom drawing.
69*/
70
81d66cf3
JS
71#define DEFAULTBITMAPX 16
72#define DEFAULTBITMAPY 15
73#define DEFAULTBUTTONX 24
74#define DEFAULTBUTTONY 24
75#define DEFAULTBARHEIGHT 27
76
2bda0e17
KB
77#if !USE_SHARED_LIBRARY
78IMPLEMENT_DYNAMIC_CLASS(wxToolBar95, wxToolBarBase)
89b892a2 79#endif
2bda0e17
KB
80
81BEGIN_EVENT_TABLE(wxToolBar95, wxToolBarBase)
89b892a2 82 EVT_MOUSE_EVENTS(wxToolBar95::OnMouseEvent)
2bda0e17
KB
83 EVT_SYS_COLOUR_CHANGED(wxToolBar95::OnSysColourChanged)
84END_EVENT_TABLE()
2bda0e17 85
89b892a2 86static void wxMapBitmap(HBITMAP hBitmap, int width, int height);
2bda0e17 87
89b892a2 88wxToolBar95::wxToolBar95()
2bda0e17 89{
2bda0e17
KB
90 m_maxWidth = -1;
91 m_maxHeight = -1;
92 m_hBitmap = 0;
93 m_defaultWidth = DEFAULTBITMAPX;
94 m_defaultHeight = DEFAULTBITMAPY;
95}
96
89b892a2
VZ
97bool wxToolBar95::Create(wxWindow *parent,
98 wxWindowID id,
99 const wxPoint& pos,
100 const wxSize& size,
101 long style,
102 const wxString& name)
2bda0e17 103{
edccf428
VZ
104 m_hWnd = 0;
105
2bda0e17 106 m_backgroundColour = wxColour(GetRValue(GetSysColor(COLOR_BTNFACE)),
89b892a2
VZ
107 GetGValue(GetSysColor(COLOR_BTNFACE)),
108 GetBValue(GetSysColor(COLOR_BTNFACE)));
2bda0e17
KB
109 m_foregroundColour = *wxBLACK ;
110
89b892a2 111 wxASSERT_MSG( (style & wxTB_VERTICAL) == 0,
223d09f6 112 wxT("Sorry, wxToolBar95 under Windows 95 only "
837e5743 113 "supports horizontal orientation.") );
89b892a2 114
2bda0e17
KB
115 m_maxWidth = -1;
116 m_maxHeight = -1;
89b892a2 117
2bda0e17
KB
118 m_hBitmap = 0;
119
120 m_defaultWidth = DEFAULTBITMAPX;
121 m_defaultHeight = DEFAULTBITMAPY;
122 SetName(name);
123
2bda0e17
KB
124 m_windowStyle = style;
125
1c089c47 126 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
2bda0e17
KB
127 SetParent(parent);
128
89b892a2
VZ
129 int x = pos.x;
130 int y = pos.y;
131 int width = size.x;
132 int height = size.y;
133
2bda0e17
KB
134 if (width <= 0)
135 width = 100;
136 if (height <= 0)
137 height = 30;
138 if (x < 0)
139 x = 0;
140 if (y < 0)
141 y = 0;
142
143 m_windowId = (id < 0 ? NewControlId() : id);
89b892a2
VZ
144 DWORD msflags = 0;
145 if (style & wxBORDER)
146 msflags |= WS_BORDER;
147 msflags |= WS_CHILD | WS_VISIBLE | TBSTYLE_TOOLTIPS;
bb6290e3
JS
148
149 if (style & wxTB_FLAT)
150 {
151 if (wxTheApp->GetComCtl32Version() > 400)
89b892a2 152 msflags |= TBSTYLE_FLAT;
bb6290e3 153 }
2bda0e17 154
2a47d3c1
JS
155 bool want3D;
156 WXDWORD exStyle = Determine3DEffects(WS_EX_CLIENTEDGE, &want3D) ;
157
158 // Even with extended styles, need to combine with WS_BORDER
159 // for them to look right.
160 if ( want3D || wxStyleHasBorder(m_windowStyle) )
161 msflags |= WS_BORDER;
162
2bda0e17 163 // Create the toolbar control.
89b892a2
VZ
164 HWND hWndToolbar = CreateWindowEx
165 (
2a47d3c1 166 exStyle, // Extended styles.
89b892a2 167 TOOLBARCLASSNAME, // Class name for the toolbar.
223d09f6 168 wxT(""), // No default text.
89b892a2
VZ
169 msflags, // Styles
170 x, y, width, height, // Standard toolbar size and position.
171 (HWND) parent->GetHWND(), // Parent window of the toolbar.
172 (HMENU)m_windowId, // Toolbar ID.
173 wxGetInstance(), // Current instance.
174 NULL // No class data.
175 );
176
223d09f6 177 wxCHECK_MSG( hWndToolbar, FALSE, wxT("Toolbar creation failed") );
2bda0e17
KB
178
179 // Toolbar-specific initialisation
89b892a2
VZ
180 ::SendMessage(hWndToolbar, TB_BUTTONSTRUCTSIZE,
181 (WPARAM)sizeof(TBBUTTON), (LPARAM)0);
2bda0e17
KB
182
183 m_hWnd = (WXHWND) hWndToolbar;
89b892a2
VZ
184 if (parent)
185 parent->AddChild(this);
186
187 SubclassWin((WXHWND)hWndToolbar);
2bda0e17
KB
188
189 return TRUE;
190}
191
89b892a2 192wxToolBar95::~wxToolBar95()
2bda0e17
KB
193{
194 UnsubclassWin();
195
196 if (m_hBitmap)
197 {
198 ::DeleteObject((HBITMAP) m_hBitmap);
199 m_hBitmap = 0;
200 }
201}
202
89b892a2 203bool wxToolBar95::CreateTools()
2bda0e17
KB
204{
205 if (m_tools.Number() == 0)
206 return FALSE;
207
208 HBITMAP oldToolBarBitmap = (HBITMAP) m_hBitmap;
89b892a2 209
2bda0e17
KB
210 int totalBitmapWidth = (int)(m_defaultWidth * m_tools.Number());
211 int totalBitmapHeight = (int)m_defaultHeight;
212
213 // Create a bitmap for all the tool bitmaps
214 HDC dc = ::GetDC(NULL);
215 m_hBitmap = (WXHBITMAP) ::CreateCompatibleBitmap(dc, totalBitmapWidth, totalBitmapHeight);
216 ::ReleaseDC(NULL, dc);
89b892a2 217
2bda0e17
KB
218 // Now blit all the tools onto this bitmap
219 HDC memoryDC = ::CreateCompatibleDC(NULL);
c4e7c2aa 220 HBITMAP oldBitmap = (HBITMAP) ::SelectObject(memoryDC, (HBITMAP) m_hBitmap);
2bda0e17
KB
221
222 HDC memoryDC2 = ::CreateCompatibleDC(NULL);
223 int x = 0;
224 wxNode *node = m_tools.First();
225 int noButtons = 0;
226 while (node)
227 {
228 wxToolBarTool *tool = (wxToolBarTool *)node->Data();
229 if ((tool->m_toolStyle != wxTOOL_STYLE_SEPARATOR) && tool->m_bitmap1.Ok() && tool->m_bitmap1.GetHBITMAP())
230 {
231// wxPalette *palette = tool->m_bitmap1->GetPalette();
232
c4e7c2aa 233 HBITMAP oldBitmap2 = (HBITMAP) ::SelectObject(memoryDC2, (HBITMAP) tool->m_bitmap1.GetHBITMAP());
2bda0e17 234 /* int bltResult = */
89b892a2 235 BitBlt(memoryDC, x, 0, (int) m_defaultWidth, (int) m_defaultHeight, memoryDC2,
2bda0e17
KB
236 0, 0, SRCCOPY);
237 ::SelectObject(memoryDC2, oldBitmap2);
238 x += (int)m_defaultWidth;
239 noButtons ++;
240 }
241 node = node->Next();
242 }
243 ::SelectObject(memoryDC, oldBitmap);
244 ::DeleteDC(memoryDC);
245 ::DeleteDC(memoryDC2);
246
247 // Map to system colours
248 wxMapBitmap((HBITMAP) m_hBitmap, totalBitmapWidth, totalBitmapHeight);
249
250 if ( oldToolBarBitmap )
251 {
252 TBREPLACEBITMAP replaceBitmap;
253 replaceBitmap.hInstOld = NULL;
254 replaceBitmap.hInstNew = NULL;
255 replaceBitmap.nIDOld = (UINT) oldToolBarBitmap;
256 replaceBitmap.nIDNew = (UINT) (HBITMAP) m_hBitmap;
257 replaceBitmap.nButtons = noButtons;
258 if (::SendMessage((HWND) GetHWND(), TB_REPLACEBITMAP, (WPARAM) 0, (LPARAM) &replaceBitmap) == -1)
051205e6 259 {
223d09f6 260 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
051205e6 261 }
2bda0e17
KB
262
263 ::DeleteObject((HBITMAP) oldToolBarBitmap);
264
265 // Now delete all the buttons
266 int i = 0;
267 while ( TRUE )
268 {
269 // TODO: What about separators???? They don't have an id!
270 if ( ! ::SendMessage( (HWND) GetHWND(), TB_DELETEBUTTON, i, 0 ) )
271 break;
272 }
273 }
274 else
275 {
276 TBADDBITMAP addBitmap;
277 addBitmap.hInst = 0;
278 addBitmap.nID = (UINT)m_hBitmap;
279 if (::SendMessage((HWND) GetHWND(), TB_ADDBITMAP, (WPARAM) noButtons, (LPARAM) &addBitmap) == -1)
051205e6 280 {
223d09f6 281 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
051205e6 282 }
2bda0e17
KB
283 }
284
285 // Now add the buttons.
286 TBBUTTON buttons[50];
287
288 node = m_tools.First();
289 int i = 0;
290 int bitmapId = 0;
291 while (node)
292 {
293 wxToolBarTool *tool = (wxToolBarTool *)node->Data();
294 if (tool->m_toolStyle == wxTOOL_STYLE_SEPARATOR)
295 {
296 buttons[i].iBitmap = 0;
297 buttons[i].idCommand = 0;
298
299 buttons[i].fsState = TBSTATE_ENABLED;
300 buttons[i].fsStyle = TBSTYLE_SEP;
301 buttons[i].dwData = 0L;
302 buttons[i].iString = 0;
303 }
304 else
305 {
306 buttons[i].iBitmap = bitmapId;
307 buttons[i].idCommand = tool->m_index;
308
309 buttons[i].fsState = 0;
310 if (tool->m_enabled)
311 buttons[i].fsState |= TBSTATE_ENABLED;
312 if (tool->m_toggleState)
313 buttons[i].fsState |= TBSTATE_CHECKED;
314 buttons[i].fsStyle = tool->m_isToggle ? TBSTYLE_CHECK : TBSTYLE_BUTTON;
315 buttons[i].dwData = 0L;
316 buttons[i].iString = 0;
317
318 bitmapId ++;
319 }
89b892a2 320
2bda0e17
KB
321 i ++;
322 node = node->Next();
323 }
324
89b892a2 325 long rc = ::SendMessage((HWND) GetHWND(), TB_ADDBUTTONS, (WPARAM)i, (LPARAM)& buttons);
2bda0e17 326
223d09f6 327 wxCHECK_MSG( rc, FALSE, wxT("failed to add buttons to the toolbar") );
89b892a2
VZ
328
329 (void)::SendMessage((HWND) GetHWND(), TB_AUTOSIZE, (WPARAM)0, (LPARAM) 0);
330
331 SetRows(m_maxRows);
2bda0e17
KB
332
333 return TRUE;
334}
335
debe6624 336bool wxToolBar95::MSWCommand(WXUINT cmd, WXWORD id)
2bda0e17
KB
337{
338 wxNode *node = m_tools.Find((long)id);
339 if (!node)
340 return FALSE;
341 wxToolBarTool *tool = (wxToolBarTool *)node->Data();
342 if (tool->m_isToggle)
343 tool->m_toggleState = (1 == (1 & (int)::SendMessage((HWND) GetHWND(), TB_GETSTATE, (WPARAM) id, (LPARAM) 0)));
344
345 BOOL ret = OnLeftClick((int)id, tool->m_toggleState);
346 if (ret == FALSE && tool->m_isToggle)
347 {
348 tool->m_toggleState = !tool->m_toggleState;
349 ::SendMessage((HWND) GetHWND(), TB_CHECKBUTTON, (WPARAM)id, (LPARAM)MAKELONG(tool->m_toggleState, 0));
350 }
351 return TRUE;
352}
353
a23fd0e1 354bool wxToolBar95::MSWOnNotify(int WXUNUSED(idCtrl),
fd3f686c
VZ
355 WXLPARAM lParam,
356 WXLPARAM *result)
2bda0e17 357{
89b892a2 358 // First check if this applies to us
2bda0e17 359 NMHDR *hdr = (NMHDR *)lParam;
2bda0e17 360
89b892a2
VZ
361 // the tooltips control created by the toolbar is sometimes Unicode, even in
362 // an ANSI application
a17e237f
VZ
363 int code = (int)hdr->code;
364 if ( (code != TTN_NEEDTEXTA) && (code != TTN_NEEDTEXTW) )
89b892a2 365 return FALSE;
2bda0e17 366
89b892a2
VZ
367 HWND toolTipWnd = (HWND)::SendMessage((HWND)GetHWND(), TB_GETTOOLTIPS, 0, 0);
368 if ( toolTipWnd != hdr->hwndFrom )
369 return FALSE;
2bda0e17 370
89b892a2
VZ
371 LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
372 int id = (int)ttText->hdr.idFrom;
373 wxNode *node = m_tools.Find((long)id);
374 if (!node)
375 return FALSE;
376
377 wxToolBarTool *tool = (wxToolBarTool *)node->Data();
2bda0e17 378
8df13671
VZ
379 const wxString& help = tool->m_shortHelpString;
380
381 if ( !help.IsEmpty() )
89b892a2 382 {
a17e237f 383 if ( code == TTN_NEEDTEXTA )
89b892a2 384 {
837e5743 385 ttText->lpszText = (wxChar *)help.c_str();
89b892a2
VZ
386 }
387#if (_WIN32_IE >= 0x0300)
388 else
389 {
390 // FIXME this is a temp hack only until I understand better what
391 // must be done in both ANSI and Unicode builds
8df13671
VZ
392
393 size_t lenAnsi = help.Len();
b2cce0c4 394 #ifdef __MWERKS__
8df13671
VZ
395 // MetroWerks doesn't like calling mbstowcs with NULL argument
396 size_t lenUnicode = 2*lenAnsi;
b2cce0c4 397 #else
8df13671 398 size_t lenUnicode = mbstowcs(NULL, help, lenAnsi);
b2cce0c4 399 #endif
8df13671
VZ
400
401 // using the pointer of right type avoids us doing all sorts of
402 // pointer arithmetics ourselves
403 wchar_t *dst = (wchar_t *)ttText->szText,
404 *pwz = new wchar_t[lenUnicode + 1];
405 mbstowcs(pwz, help, lenAnsi + 1);
406 memcpy(dst, pwz, lenUnicode*sizeof(wchar_t));
407
408 // put the terminating _wide_ NUL
409 dst[lenUnicode] = 0;
89b892a2
VZ
410
411 delete [] pwz;
412 }
413#endif // _WIN32_IE >= 0x0300
2bda0e17 414 }
89b892a2
VZ
415
416 // For backward compatibility...
417 OnMouseEnter(tool->m_index);
418
419 return TRUE;
2bda0e17
KB
420}
421
81d66cf3 422void wxToolBar95::SetToolBitmapSize(const wxSize& size)
2bda0e17 423{
89b892a2
VZ
424 m_defaultWidth = size.x;
425 m_defaultHeight = size.y;
2bda0e17
KB
426 ::SendMessage((HWND) GetHWND(), TB_SETBITMAPSIZE, 0, (LPARAM) MAKELONG ((int)size.x, (int)size.y));
427}
428
debe6624 429void wxToolBar95::SetRows(int nRows)
2bda0e17
KB
430{
431 RECT rect;
432 ::SendMessage((HWND) GetHWND(), TB_SETROWS, MAKEWPARAM(nRows, TRUE), (LPARAM) & rect);
433 m_maxWidth = (rect.right - rect.left + 2);
434 m_maxHeight = (rect.bottom - rect.top + 2);
435}
436
89b892a2 437wxSize wxToolBar95::GetMaxSize() const
2bda0e17 438{
dfad0599 439 if ((m_maxWidth == -1) || (m_maxHeight == -1))
2bda0e17
KB
440 {
441 RECT rect;
81d66cf3 442 ::SendMessage((HWND) GetHWND(), TB_SETROWS, MAKEWPARAM(m_maxRows, TRUE), (LPARAM) & rect);
2bda0e17
KB
443 ((wxToolBar95 *)this)->m_maxWidth = (rect.right - rect.left + 2); // ???
444 ((wxToolBar95 *)this)->m_maxHeight = (rect.bottom - rect.top + 2); // ???
445 }
446 return wxSize(m_maxWidth, m_maxHeight);
447}
448
2bda0e17 449// The button size is bigger than the bitmap size
89b892a2 450wxSize wxToolBar95::GetToolSize() const
2bda0e17
KB
451{
452 return wxSize(m_defaultWidth + 8, m_defaultHeight + 7);
453}
454
debe6624 455void wxToolBar95::EnableTool(int toolIndex, bool enable)
2bda0e17
KB
456{
457 wxNode *node = m_tools.Find((long)toolIndex);
458 if (node)
459 {
460 wxToolBarTool *tool = (wxToolBarTool *)node->Data();
461 tool->m_enabled = enable;
462 ::SendMessage((HWND) GetHWND(), TB_ENABLEBUTTON, (WPARAM)toolIndex, (LPARAM)MAKELONG(enable, 0));
463 }
464}
465
debe6624 466void wxToolBar95::ToggleTool(int toolIndex, bool toggle)
2bda0e17
KB
467{
468 wxNode *node = m_tools.Find((long)toolIndex);
469 if (node)
470 {
471 wxToolBarTool *tool = (wxToolBarTool *)node->Data();
472 if (tool->m_isToggle)
473 {
474 tool->m_toggleState = toggle;
475 ::SendMessage((HWND) GetHWND(), TB_CHECKBUTTON, (WPARAM)toolIndex, (LPARAM)MAKELONG(toggle, 0));
476 }
477 }
478}
479
088a95f5
JS
480bool wxToolBar95::GetToolState(int toolIndex) const
481{
482 return (::SendMessage((HWND) GetHWND(), TB_ISBUTTONCHECKED, (WPARAM)toolIndex, (LPARAM)0) != 0);
483}
484
89b892a2 485void wxToolBar95::ClearTools()
2bda0e17
KB
486{
487 // TODO: Don't know how to reset the toolbar bitmap, as yet.
488 // But adding tools and calling CreateTools should probably
489 // recreate a buttonbar OK.
490 wxToolBarBase::ClearTools();
491}
492
493// If pushedBitmap is NULL, a reversed version of bitmap is
494// created and used as the pushed/toggled image.
495// If toggle is TRUE, the button toggles between the two states.
debe6624
JS
496wxToolBarTool *wxToolBar95::AddTool(int index, const wxBitmap& bitmap, const wxBitmap& pushedBitmap,
497 bool toggle, long xPos, long yPos, wxObject *clientData, const wxString& helpString1, const wxString& helpString2)
2bda0e17 498{
dfad0599 499 wxToolBarTool *tool = new wxToolBarTool(index, bitmap, wxNullBitmap, toggle, xPos, yPos, helpString1, helpString2);
2bda0e17
KB
500 tool->m_clientData = clientData;
501
502 if (xPos > -1)
503 tool->m_x = xPos;
504 else
505 tool->m_x = m_xMargin;
506
507 if (yPos > -1)
508 tool->m_y = yPos;
509 else
510 tool->m_y = m_yMargin;
511
ca5e9f67 512 tool->SetSize(GetToolSize().x, GetToolSize().y);
2bda0e17
KB
513
514 m_tools.Append((long)index, tool);
515 return tool;
516}
517
518// Responds to colour changes, and passes event on to children.
519void wxToolBar95::OnSysColourChanged(wxSysColourChangedEvent& event)
520{
521 m_backgroundColour = wxColour(GetRValue(GetSysColor(COLOR_BTNFACE)),
89b892a2 522 GetGValue(GetSysColor(COLOR_BTNFACE)), GetBValue(GetSysColor(COLOR_BTNFACE)));
2bda0e17
KB
523
524 // Remap the buttons
525 CreateTools();
526
2bda0e17
KB
527 Refresh();
528
529 // Propagate the event to the non-top-level children
530 wxWindow::OnSysColourChanged(event);
531}
532
e6460682
JS
533void wxToolBar95::OnMouseEvent(wxMouseEvent& event)
534{
535 if (event.RightDown())
536 {
537 // For now, we don't have an id. Later we could
538 // try finding the tool.
539 OnRightClick((int)-1, event.GetX(), event.GetY());
540 }
541 else
542 {
42e69d6b 543 event.Skip();
e6460682
JS
544 }
545}
546
2bda0e17
KB
547// These are the default colors used to map the bitmap colors
548// to the current system colors
549
550#define BGR_BUTTONTEXT (RGB(000,000,000)) // black
551#define BGR_BUTTONSHADOW (RGB(128,128,128)) // dark grey
552#define BGR_BUTTONFACE (RGB(192,192,192)) // bright grey
553#define BGR_BUTTONHILIGHT (RGB(255,255,255)) // white
554#define BGR_BACKGROUNDSEL (RGB(255,000,000)) // blue
555#define BGR_BACKGROUND (RGB(255,000,255)) // magenta
556
557void wxMapBitmap(HBITMAP hBitmap, int width, int height)
558{
559 COLORMAP ColorMap[] = {
560 {BGR_BUTTONTEXT, COLOR_BTNTEXT}, // black
561 {BGR_BUTTONSHADOW, COLOR_BTNSHADOW}, // dark grey
562 {BGR_BUTTONFACE, COLOR_BTNFACE}, // bright grey
563 {BGR_BUTTONHILIGHT, COLOR_BTNHIGHLIGHT},// white
564 {BGR_BACKGROUNDSEL, COLOR_HIGHLIGHT}, // blue
565 {BGR_BACKGROUND, COLOR_WINDOW} // magenta
566 };
567
568 int NUM_MAPS = (sizeof(ColorMap)/sizeof(COLORMAP));
569 int n;
570 for ( n = 0; n < NUM_MAPS; n++)
571 {
572 ColorMap[n].to = ::GetSysColor(ColorMap[n].to);
573 }
574
575 HBITMAP hbmOld;
576 HDC hdcMem = CreateCompatibleDC(NULL);
577
578 if (hdcMem)
579 {
c4e7c2aa 580 hbmOld = (HBITMAP) SelectObject(hdcMem, hBitmap);
2bda0e17
KB
581
582 int i, j, k;
583 for ( i = 0; i < width; i++)
584 {
585 for ( j = 0; j < height; j++)
586 {
587 COLORREF pixel = ::GetPixel(hdcMem, i, j);
588/*
589 BYTE red = GetRValue(pixel);
590 BYTE green = GetGValue(pixel);
591 BYTE blue = GetBValue(pixel);
592*/
593
594 for ( k = 0; k < NUM_MAPS; k ++)
595 {
596 if ( ColorMap[k].from == pixel )
597 {
598 /* COLORREF actualPixel = */ ::SetPixel(hdcMem, i, j, ColorMap[k].to);
599 break;
600 }
601 }
602 }
603 }
604
605
606 SelectObject(hdcMem, hbmOld);
607 DeleteObject(hdcMem);
608 }
609
610}
611
612// Some experiments...
613#if 0
614 // What we want to do is create another bitmap which has a depth of 4,
615 // and set the bits. So probably we want to convert this HBITMAP into a
616 // DIB, then call SetDIBits.
617 // AAAGH. The stupid thing is that if newBitmap has a depth of 4 (less than that of
618 // the screen), then SetDIBits fails.
619 HBITMAP newBitmap = ::CreateBitmap(totalBitmapWidth, totalBitmapHeight, 1, 4, NULL);
620 HANDLE newDIB = ::BitmapToDIB((HBITMAP) m_hBitmap, NULL);
621 LPBITMAPINFOHEADER lpbmi = (LPBITMAPINFOHEADER) GlobalLock(newDIB);
622
623 dc = ::GetDC(NULL);
624// LPBITMAPINFOHEADER lpbmi = (LPBITMAPINFOHEADER) newDIB;
625
626 int result = ::SetDIBits(dc, newBitmap, 0, lpbmi->biHeight, FindDIBBits((LPSTR)lpbmi), (LPBITMAPINFO)lpbmi,
627 DIB_PAL_COLORS);
628 DWORD err = GetLastError();
629
630 ::ReleaseDC(NULL, dc);
631
632 // Delete the DIB
633 GlobalUnlock (newDIB);
634 GlobalFree (newDIB);
635
636// WXHBITMAP hBitmap2 = wxCreateMappedBitmap((WXHINSTANCE) wxGetInstance(), (WXHBITMAP) m_hBitmap);
637 // Substitute our new bitmap for the old one
638 ::DeleteObject((HBITMAP) m_hBitmap);
639 m_hBitmap = (WXHBITMAP) newBitmap;
640#endif
641
642
643#endif