1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/tbar95.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "tbar95.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
35 #include "wx/dynarray.h"
36 #include "wx/settings.h"
37 #include "wx/bitmap.h"
40 #if wxUSE_TOOLBAR && defined(__WIN95__) && wxUSE_TOOLBAR_NATIVE
42 #include "wx/toolbar.h"
44 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
48 #include "wx/msw/private.h"
52 #ifdef __GNUWIN32_OLD__
53 #include "wx/msw/gnuwin32/extra.h"
60 #include "wx/msw/dib.h"
61 #include "wx/app.h" // for GetComCtl32Version
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
67 // these standard constants are not always defined in compilers headers
71 #define TBSTYLE_LIST 0x1000
72 #define TBSTYLE_FLAT 0x0800
73 #define TBSTYLE_TRANSPARENT 0x8000
75 // use TBSTYLE_TRANSPARENT if you use TBSTYLE_FLAT
79 #define TB_SETSTYLE (WM_USER + 56)
80 #define TB_GETSTYLE (WM_USER + 57)
84 #define TB_HITTEST (WM_USER + 69)
87 // these values correspond to those used by comctl32.dll
88 #define DEFAULTBITMAPX 16
89 #define DEFAULTBITMAPY 15
90 #define DEFAULTBUTTONX 24
91 #define DEFAULTBUTTONY 24
92 #define DEFAULTBARHEIGHT 27
94 // ----------------------------------------------------------------------------
95 // private function prototypes
96 // ----------------------------------------------------------------------------
98 static void wxMapBitmap(HBITMAP hBitmap
, int width
, int height
);
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
106 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
107 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
108 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
111 // ----------------------------------------------------------------------------
113 // ----------------------------------------------------------------------------
115 class wxToolBarTool
: public wxToolBarToolBase
118 wxToolBarTool(wxToolBar
*tbar
,
120 const wxBitmap
& bitmap1
,
121 const wxBitmap
& bitmap2
,
123 wxObject
*clientData
,
124 const wxString
& shortHelpString
,
125 const wxString
& longHelpString
)
126 : wxToolBarToolBase(tbar
, id
, bitmap1
, bitmap2
, toggle
,
127 clientData
, shortHelpString
, longHelpString
)
132 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
133 : wxToolBarToolBase(tbar
, control
)
138 // set/get the number of separators which we use to cover the space used by
139 // a control in the toolbar
140 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
141 size_t GetSeparatorsCount() const { return m_nSepCount
; }
148 // ============================================================================
150 // ============================================================================
152 // ----------------------------------------------------------------------------
154 // ----------------------------------------------------------------------------
156 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
157 const wxBitmap
& bitmap1
,
158 const wxBitmap
& bitmap2
,
160 wxObject
*clientData
,
161 const wxString
& shortHelpString
,
162 const wxString
& longHelpString
)
164 return new wxToolBarTool(this, id
, bitmap1
, bitmap2
, toggle
,
165 clientData
, shortHelpString
, longHelpString
);
168 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
170 return new wxToolBarTool(this, control
);
173 // ----------------------------------------------------------------------------
174 // wxToolBar construction
175 // ----------------------------------------------------------------------------
177 void wxToolBar::Init()
183 m_defaultWidth
= DEFAULTBITMAPX
;
184 m_defaultHeight
= DEFAULTBITMAPY
;
187 bool wxToolBar::Create(wxWindow
*parent
,
192 const wxString
& name
)
194 // common initialisation
195 if ( !CreateControl(parent
, id
, pos
, size
, style
, name
) )
199 DWORD msflags
= 0; // WS_VISIBLE | WS_CHILD always included
200 if (style
& wxBORDER
)
201 msflags
|= WS_BORDER
;
202 msflags
|= TBSTYLE_TOOLTIPS
;
204 if (style
& wxTB_FLAT
)
206 if (wxTheApp
->GetComCtl32Version() > 400)
207 msflags
|= TBSTYLE_FLAT
;
210 // MSW-specific initialisation
211 if ( !wxControl::MSWCreateControl(TOOLBARCLASSNAME
, msflags
) )
214 // toolbar-specific post initialisation
215 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
217 // set up the colors and fonts
218 wxRGBToColour(m_backgroundColour
, GetSysColor(COLOR_BTNFACE
));
219 m_foregroundColour
= *wxBLACK
;
221 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
232 height
= m_defaultHeight
;
238 SetSize(x
, y
, width
, height
);
243 wxToolBar::~wxToolBar()
247 ::DeleteObject((HBITMAP
) m_hBitmap
);
251 // ----------------------------------------------------------------------------
252 // adding/removing tools
253 // ----------------------------------------------------------------------------
255 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
256 wxToolBarToolBase
*tool
)
258 // nothing special to do here - we really create the toolbar buttons in
265 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
267 // normally, we only delete one button, but we use several separators to
268 // cover the space used by one control sometimes (with old comctl32.dll)
269 size_t nButtonsToDelete
= 1;
271 // get the size of the button we're going to delete
273 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
275 wxLogLastError(_T("TB_GETITEMRECT"));
278 int width
= r
.right
- r
.left
;
280 if ( tool
->IsControl() )
282 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
284 width
*= nButtonsToDelete
;
287 while ( nButtonsToDelete
-- > 0 )
289 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
291 wxLogLastError("TB_DELETEBUTTON");
299 m_nButtons
-= nButtonsToDelete
;
301 // reposition all the controls after this button
302 wxToolBarToolsList::Node
*node
= m_tools
.Item(pos
);
303 for ( node
= node
->GetNext(); node
; node
= node
->GetNext() )
305 wxToolBarToolBase
*tool2
= node
->GetData();
306 if ( tool2
->IsControl() )
309 wxControl
*control
= tool2
->GetControl();
310 control
->GetPosition(&x
, NULL
);
311 control
->Move(x
- width
, -1);
318 bool wxToolBar::Realize()
320 size_t nTools
= GetToolsCount();
327 bool isVertical
= (GetWindowStyle() & wxTB_VERTICAL
) != 0;
329 // First, add the bitmap: we use one bitmap for all toolbar buttons
330 // ----------------------------------------------------------------
332 // if we already have a bitmap, we'll replace the existing one - otherwise
333 // we'll install a new one
334 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
336 int totalBitmapWidth
= (int)(m_defaultWidth
* nTools
);
337 int totalBitmapHeight
= (int)m_defaultHeight
;
339 // Create a bitmap for all the tool bitmaps
340 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
345 wxLogLastError(_T("CreateCompatibleBitmap"));
350 m_hBitmap
= (WXHBITMAP
)hBitmap
;
352 // Now blit all the tools onto this bitmap
353 HDC memoryDC
= ::CreateCompatibleDC(NULL
);
354 HBITMAP oldBitmap
= (HBITMAP
) ::SelectObject(memoryDC
, hBitmap
);
356 HDC memoryDC2
= ::CreateCompatibleDC(NULL
);
358 // the button position
361 // the number of buttons (not separators)
364 wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
367 wxToolBarToolBase
*tool
= node
->GetData();
368 if ( tool
->IsButton() )
370 HBITMAP hbmp
= GetHbitmapOf(tool
->GetBitmap1());
373 HBITMAP oldBitmap2
= (HBITMAP
)::SelectObject(memoryDC2
, hbmp
);
374 if ( !BitBlt(memoryDC
, x
, 0, m_defaultWidth
, m_defaultHeight
,
375 memoryDC2
, 0, 0, SRCCOPY
) )
377 wxLogLastError("BitBlt");
380 ::SelectObject(memoryDC2
, oldBitmap2
);
384 wxFAIL_MSG( _T("invalid tool button bitmap") );
387 // still inc width and number of buttons because otherwise the
388 // subsequent buttons will all be shifted which is rather confusing
389 // (and like this you'd see immediately which bitmap was bad)
394 node
= node
->GetNext();
397 ::SelectObject(memoryDC
, oldBitmap
);
398 ::DeleteDC(memoryDC
);
399 ::DeleteDC(memoryDC2
);
401 // Map to system colours
402 wxMapBitmap(hBitmap
, totalBitmapWidth
, totalBitmapHeight
);
404 if ( oldToolBarBitmap
)
406 TBREPLACEBITMAP replaceBitmap
;
407 replaceBitmap
.hInstOld
= NULL
;
408 replaceBitmap
.hInstNew
= NULL
;
409 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
410 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
411 replaceBitmap
.nButtons
= nButtons
;
412 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
413 0, (LPARAM
) &replaceBitmap
) )
415 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
418 ::DeleteObject(oldToolBarBitmap
);
420 // Now delete all the buttons
421 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
423 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
425 wxLogLastError("TB_DELETEBUTTON");
429 else // no old bitmap
431 TBADDBITMAP addBitmap
;
433 addBitmap
.nID
= (UINT
) hBitmap
;
434 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
435 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
437 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
441 // Next add the buttons and separators
442 // -----------------------------------
444 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
446 // this array will hold the indices of all controls in the toolbar
447 wxArrayInt controlIds
;
452 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
454 wxToolBarToolBase
*tool
= node
->GetData();
456 // don't add separators to the vertical toolbar - looks ugly
457 if ( isVertical
&& tool
->IsSeparator() )
460 TBBUTTON
& button
= buttons
[i
];
462 wxZeroMemory(button
);
464 switch ( tool
->GetStyle() )
466 case wxTOOL_STYLE_CONTROL
:
467 button
.idCommand
= tool
->GetId();
468 // fall through: create just a separator too
470 case wxTOOL_STYLE_SEPARATOR
:
471 button
.fsState
= TBSTATE_ENABLED
;
472 button
.fsStyle
= TBSTYLE_SEP
;
475 case wxTOOL_STYLE_BUTTON
:
476 button
.iBitmap
= bitmapId
;
477 button
.idCommand
= tool
->GetId();
479 if ( tool
->IsEnabled() )
480 button
.fsState
|= TBSTATE_ENABLED
;
481 if ( tool
->IsToggled() )
482 button
.fsState
|= TBSTATE_CHECKED
;
484 button
.fsStyle
= tool
->CanBeToggled() ? TBSTYLE_CHECK
494 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
,
495 (WPARAM
)i
, (LPARAM
)buttons
) )
497 wxLogLastError("TB_ADDBUTTONS");
502 // Deal with the controls finally
503 // ------------------------------
505 // adjust the controls size to fit nicely in the toolbar
507 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
509 wxToolBarToolBase
*tool
= node
->GetData();
510 if ( !tool
->IsControl() )
513 wxControl
*control
= tool
->GetControl();
515 wxSize size
= control
->GetSize();
517 // the position of the leftmost controls corner
520 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
521 // latter only appeared in v4.70 of comctl32.dll
523 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
524 index
, (LPARAM
)(LPRECT
)&r
) )
526 wxLogLastError("TB_GETITEMRECT");
529 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
530 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
531 // available in headers, now check whether it is available now
533 if ( wxTheApp
->GetComCtl32Version() >= 471 )
535 // set the (underlying) separators width to be that of the
538 tbbi
.cbSize
= sizeof(tbbi
);
539 tbbi
.dwMask
= TBIF_SIZE
;
541 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
542 tool
->GetId(), (LPARAM
)&tbbi
) )
544 // the id is probably invalid?
545 wxLogLastError("TB_SETBUTTONINFO");
550 #endif // comctl32.dll 4.71
551 // TB_SETBUTTONINFO unavailable
553 // try adding several separators to fit the controls width
554 int widthSep
= r
.right
- r
.left
;
560 tbb
.fsState
= TBSTATE_ENABLED
;
561 tbb
.fsStyle
= TBSTYLE_SEP
;
563 size_t nSeparators
= size
.x
/ widthSep
;
564 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
566 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
567 index
, (LPARAM
)&tbb
) )
569 wxLogLastError("TB_INSERTBUTTON");
575 // remember the number of separators we used - we'd have to
576 // delete all of them later
577 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
579 // adjust the controls width to exactly cover the separators
580 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
583 // and position the control itself correctly vertically
584 int height
= r
.bottom
- r
.top
;
585 int diff
= height
- size
.y
;
588 // the control is too high, resize to fit
589 control
->SetSize(-1, height
- 2);
594 control
->Move(left
== -1 ? r
.left
: left
, r
.top
+ (diff
+ 1) / 2);
597 // the max index is the "real" number of buttons - i.e. counting even the
598 // separators which we added just for aligning the controls
603 if ( m_maxRows
== 0 )
605 // if not set yet, only one row
609 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
611 if ( m_maxRows
== 0 )
613 // if not set yet, have one column
621 // ----------------------------------------------------------------------------
623 // ----------------------------------------------------------------------------
625 bool wxToolBar::MSWCommand(WXUINT cmd
, WXWORD id
)
627 wxToolBarToolBase
*tool
= FindById((int)id
);
631 if ( tool
->CanBeToggled() )
633 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
634 tool
->SetToggle((state
& TBSTATE_CHECKED
) != 0);
637 bool toggled
= tool
->IsToggled();
639 // OnLeftClick() can veto the button state change - for buttons which may
640 // be toggled only, of couse
641 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
645 tool
->SetToggle(toggled
);
647 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
653 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
657 // First check if this applies to us
658 NMHDR
*hdr
= (NMHDR
*)lParam
;
660 // the tooltips control created by the toolbar is sometimes Unicode, even
661 // in an ANSI application - this seems to be a bug in comctl32.dll v5
662 int code
= (int)hdr
->code
;
663 if ( (code
!= TTN_NEEDTEXTA
) && (code
!= TTN_NEEDTEXTW
) )
666 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
667 if ( toolTipWnd
!= hdr
->hwndFrom
)
670 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
671 int id
= (int)ttText
->hdr
.idFrom
;
673 wxToolBarToolBase
*tool
= FindById(id
);
677 const wxString
& help
= tool
->GetShortHelp();
679 if ( !help
.IsEmpty() )
681 if ( code
== TTN_NEEDTEXTA
)
683 ttText
->lpszText
= (wxChar
*)help
.c_str();
685 #if (_WIN32_IE >= 0x0300)
688 // FIXME this is a temp hack only until I understand better what
689 // must be done in both ANSI and Unicode builds
691 size_t lenAnsi
= help
.Len();
693 // MetroWerks doesn't like calling mbstowcs with NULL argument
694 size_t lenUnicode
= 2*lenAnsi
;
696 size_t lenUnicode
= mbstowcs(NULL
, help
, lenAnsi
);
699 // using the pointer of right type avoids us doing all sorts of
700 // pointer arithmetics ourselves
701 wchar_t *dst
= (wchar_t *)ttText
->szText
,
702 *pwz
= new wchar_t[lenUnicode
+ 1];
703 mbstowcs(pwz
, help
, lenAnsi
+ 1);
704 memcpy(dst
, pwz
, lenUnicode
*sizeof(wchar_t));
706 // put the terminating _wide_ NUL
711 #endif // _WIN32_IE >= 0x0300
714 // For backward compatibility...
715 OnMouseEnter(tool
->GetId());
720 // ----------------------------------------------------------------------------
722 // ----------------------------------------------------------------------------
724 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
726 wxToolBarBase::SetToolBitmapSize(size
);
728 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
731 void wxToolBar::SetRows(int nRows
)
733 if ( nRows
== m_maxRows
)
735 // avoid resizing the frame uselessly
739 // TRUE in wParam means to create at least as many rows, FALSE -
742 ::SendMessage(GetHwnd(), TB_SETROWS
,
743 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
751 // The button size is bigger than the bitmap size
752 wxSize
wxToolBar::GetToolSize() const
754 // TB_GETBUTTONSIZE is supported from version 4.70
755 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 )
756 if ( wxTheApp
->GetComCtl32Version() >= 470 )
758 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
760 return wxSize(LOWORD(dw
), HIWORD(dw
));
763 #endif // comctl32.dll 4.70+
766 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
770 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
775 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
778 // it's a separator or there is no tool at all there
779 return (wxToolBarToolBase
*)NULL
;
782 return m_tools
.Item((size_t)index
)->GetData();
785 void wxToolBar::UpdateSize()
787 // we must refresh the frame after the toolbar size (possibly) changed
788 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
791 // don't change the size, we just need to generate a WM_SIZE
793 if ( !GetWindowRect(GetHwndOf(frame
), &r
) )
795 wxLogLastError(_T("GetWindowRect"));
798 (void)::SendMessage(GetHwndOf(frame
), WM_SIZE
, SIZE_RESTORED
,
799 MAKELPARAM(r
.right
- r
.left
, r
.bottom
- r
.top
));
804 // ----------------------------------------------------------------------------
806 // ----------------------------------------------------------------------------
808 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
810 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
811 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
814 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
816 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
817 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
820 void wxToolBar::DoSetToggle(wxToolBarToolBase
*tool
, bool toggle
)
822 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
823 // without, so we really need to delete the button and recreate it here
824 wxFAIL_MSG( _T("not implemented") );
827 // ----------------------------------------------------------------------------
829 // ----------------------------------------------------------------------------
831 // Responds to colour changes, and passes event on to children.
832 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
834 m_backgroundColour
= wxColour(GetRValue(GetSysColor(COLOR_BTNFACE
)),
835 GetGValue(GetSysColor(COLOR_BTNFACE
)), GetBValue(GetSysColor(COLOR_BTNFACE
)));
842 // Propagate the event to the non-top-level children
843 wxWindow::OnSysColourChanged(event
);
846 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
848 if (event
.RightDown())
850 // For now, we don't have an id. Later we could
851 // try finding the tool.
852 OnRightClick((int)-1, event
.GetX(), event
.GetY());
860 long wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
862 if ( nMsg
== WM_SIZE
)
864 // calculate our minor dimenstion ourselves - we're confusing the
865 // standard logic (TB_AUTOSIZE) with our horizontal toolbars and other
868 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
872 if ( GetWindowStyle() & wxTB_VERTICAL
)
874 w
= r
.right
- r
.left
;
877 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
884 h
= r
.bottom
- r
.top
;
887 h
+= 6; // FIXME: this is the separator line height...
892 if ( MAKELPARAM(w
, h
) != lParam
)
894 // size really changed
903 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
906 // ----------------------------------------------------------------------------
908 // ----------------------------------------------------------------------------
910 // These are the default colors used to map the bitmap colors to the current
911 // system colors. Note that they are in BGR format because this is what Windows
912 // wants (and not RGB)
914 #define BGR_BUTTONTEXT (RGB(000,000,000)) // black
915 #define BGR_BUTTONSHADOW (RGB(128,128,128)) // dark grey
916 #define BGR_BUTTONFACE (RGB(192,192,192)) // bright grey
917 #define BGR_BUTTONHILIGHT (RGB(255,255,255)) // white
918 #define BGR_BACKGROUNDSEL (RGB(255,000,000)) // blue
919 #define BGR_BACKGROUND (RGB(255,000,255)) // magenta
921 void wxMapBitmap(HBITMAP hBitmap
, int width
, int height
)
923 COLORMAP ColorMap
[] =
925 {BGR_BUTTONTEXT
, COLOR_BTNTEXT
}, // black
926 {BGR_BUTTONSHADOW
, COLOR_BTNSHADOW
}, // dark grey
927 {BGR_BUTTONFACE
, COLOR_BTNFACE
}, // bright grey
928 {BGR_BUTTONHILIGHT
, COLOR_BTNHIGHLIGHT
},// white
929 {BGR_BACKGROUNDSEL
, COLOR_HIGHLIGHT
}, // blue
930 {BGR_BACKGROUND
, COLOR_WINDOW
} // magenta
933 int NUM_MAPS
= (sizeof(ColorMap
)/sizeof(COLORMAP
));
935 for ( n
= 0; n
< NUM_MAPS
; n
++)
937 ColorMap
[n
].to
= ::GetSysColor(ColorMap
[n
].to
);
941 HDC hdcMem
= CreateCompatibleDC(NULL
);
945 hbmOld
= (HBITMAP
) SelectObject(hdcMem
, hBitmap
);
948 for ( i
= 0; i
< width
; i
++)
950 for ( j
= 0; j
< height
; j
++)
952 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
954 BYTE red = GetRValue(pixel);
955 BYTE green = GetGValue(pixel);
956 BYTE blue = GetBValue(pixel);
959 for ( k
= 0; k
< NUM_MAPS
; k
++)
961 if ( ColorMap
[k
].from
== pixel
)
963 /* COLORREF actualPixel = */ ::SetPixel(hdcMem
, i
, j
, ColorMap
[k
].to
);
971 SelectObject(hdcMem
, hbmOld
);
972 DeleteObject(hdcMem
);
977 // Some experiments...
979 // What we want to do is create another bitmap which has a depth of 4,
980 // and set the bits. So probably we want to convert this HBITMAP into a
981 // DIB, then call SetDIBits.
982 // AAAGH. The stupid thing is that if newBitmap has a depth of 4 (less than that of
983 // the screen), then SetDIBits fails.
984 HBITMAP newBitmap
= ::CreateBitmap(totalBitmapWidth
, totalBitmapHeight
, 1, 4, NULL
);
985 HANDLE newDIB
= ::BitmapToDIB((HBITMAP
) m_hBitmap
, NULL
);
986 LPBITMAPINFOHEADER lpbmi
= (LPBITMAPINFOHEADER
) GlobalLock(newDIB
);
989 // LPBITMAPINFOHEADER lpbmi = (LPBITMAPINFOHEADER) newDIB;
991 int result
= ::SetDIBits(dc
, newBitmap
, 0, lpbmi
->biHeight
, FindDIBBits((LPSTR
)lpbmi
), (LPBITMAPINFO
)lpbmi
,
993 DWORD err
= GetLastError();
995 ::ReleaseDC(NULL
, dc
);
998 GlobalUnlock (newDIB
);
1001 // WXHBITMAP hBitmap2 = wxCreateMappedBitmap((WXHINSTANCE) wxGetInstance(), (WXHBITMAP) m_hBitmap);
1002 // Substitute our new bitmap for the old one
1003 ::DeleteObject((HBITMAP
) m_hBitmap
);
1004 m_hBitmap
= (WXHBITMAP
) newBitmap
;
1008 #endif // wxUSE_TOOLBAR && Win95