1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxToolBarMSW
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "tbarmsw.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #if wxUSE_BUTTONBAR && wxUSE_TOOLBAR
29 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
33 #if !defined(__MWERKS__) && !defined(__SALFORDC__)
39 #include "wx/tbarmsw.h"
42 #include "wx/bitmap.h"
43 #include "wx/msw/private.h"
44 #include "wx/msw/dib.h"
46 #define DEFAULTBITMAPX 16
47 #define DEFAULTBITMAPY 15
48 #define DEFAULTBUTTONX 24
49 #define DEFAULTBUTTONY 22
50 #define DEFAULTBARHEIGHT 27
52 /////// Non-Windows 95 implementation
54 #if !wxUSE_IMAGE_LOADING_IN_MSW
55 #error If wxUSE_IMAGE_LOADING_IN_MSW is set to 0, then wxUSE_BUTTONBAR must be set to 0 too.
58 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxToolBarBase
)
60 BEGIN_EVENT_TABLE(wxToolBarMSW
, wxToolBarBase
)
61 EVT_SIZE(wxToolBarMSW::OnSize
)
62 EVT_PAINT(wxToolBarMSW::OnPaint
)
63 EVT_MOUSE_EVENTS(wxToolBarMSW::OnMouseEvent
)
66 wxToolBarMSW::wxToolBarMSW(void)
76 m_defaultWidth
= DEFAULTBITMAPX
;
77 m_defaultHeight
= DEFAULTBITMAPY
;
80 bool wxToolBarMSW::Create(wxWindow
*parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
81 long style
, const wxString
& name
)
83 if ( ! wxWindow::Create(parent
, id
, pos
, size
, style
, name
) )
86 if ( style
& wxTB_HORIZONTAL
)
87 { m_lastX
= 3; m_lastY
= 7; }
89 { m_lastX
= 7; m_lastY
= 3; }
90 m_maxWidth
= m_maxHeight
= 0;
91 m_pressedTool
= m_currentTool
= -1;
98 SetBackgroundColour(wxColour(192, 192, 192));
108 m_defaultWidth
= DEFAULTBITMAPX
;
109 m_defaultHeight
= DEFAULTBITMAPY
;
116 wxToolBarMSW::~wxToolBarMSW(void)
121 void wxToolBarMSW::SetToolBitmapSize(const wxSize
& size
)
123 m_defaultWidth
= size
.x
; m_defaultHeight
= size
.y
;
128 // The button size is bigger than the bitmap size
129 wxSize
wxToolBarMSW::GetToolSize(void) const
131 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
134 void wxToolBarMSW::OnPaint(wxPaintEvent
& event
)
138 static int wxOnPaintCount
= 0;
140 // Prevent reentry of OnPaint which would cause
141 // wxMemoryDC errors.
142 if (wxOnPaintCount
> 0)
146 wxNode
*node
= m_tools
.First();
149 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
150 if (tool
->m_toolStyle
!= wxTOOL_STYLE_SEPARATOR
)
152 int state
= wxTBSTATE_ENABLED
;
153 if (!tool
->m_enabled
)
155 if (tool
->m_isToggle
&& tool
->m_toggleState
)
156 state
|= wxTBSTATE_CHECKED
;
157 DrawTool(dc
, tool
, state
);
164 void wxToolBarMSW::OnSize(wxSizeEvent
& event
)
166 wxToolBarBase::OnSize(event
);
169 // If a Button is disabled, then NO function (besides leaving
170 // or entering) should be carried out. Therefore the additions
171 // of 'enabled' testing (Stefan Hammes).
172 void wxToolBarMSW::OnMouseEvent(wxMouseEvent
& event
)
174 static wxToolBarTool
*eventCurrentTool
= NULL
;
180 if (eventCurrentTool
&& eventCurrentTool
->m_enabled
)
183 int state
= wxTBSTATE_ENABLED
;
184 if (eventCurrentTool
->m_toggleState
)
185 state
|= wxTBSTATE_CHECKED
;
186 DrawTool(dc
, eventCurrentTool
, state
);
187 eventCurrentTool
= NULL
;
194 event
.GetPosition(&x
, &y
);
195 wxToolBarTool
*tool
= FindToolForPosition(x
, y
);
199 if (eventCurrentTool
&& eventCurrentTool
->m_enabled
)
203 int state
= wxTBSTATE_ENABLED
;
204 if (eventCurrentTool
->m_toggleState
)
205 state
|= wxTBSTATE_CHECKED
;
206 DrawTool(dc
, eventCurrentTool
, state
);
207 eventCurrentTool
= NULL
;
209 if (m_currentTool
> -1)
217 if (!event
.Dragging() && !event
.IsButton())
219 if (tool
->m_index
!= m_currentTool
)
221 OnMouseEnter(tool
->m_index
);
222 m_currentTool
= tool
->m_index
;
226 if (event
.Dragging() && tool
->m_enabled
)
228 if (eventCurrentTool
)
230 // Might have dragged outside tool
231 if (eventCurrentTool
!= tool
)
233 int state
= wxTBSTATE_ENABLED
;
234 if (tool
->m_toggleState
)
235 state
|= wxTBSTATE_CHECKED
;
236 DrawTool(dc
, tool
, state
);
237 eventCurrentTool
= NULL
;
243 if (tool
&& event
.LeftIsDown() && tool
->m_enabled
)
245 eventCurrentTool
= tool
;
246 ::SetCapture((HWND
) GetHWND());
247 int state
= wxTBSTATE_ENABLED
|wxTBSTATE_PRESSED
;
248 if (tool
->m_toggleState
)
249 state
|= wxTBSTATE_CHECKED
;
250 DrawTool(dc
, tool
, state
);
254 if (event
.LeftDown() && tool
->m_enabled
)
256 eventCurrentTool
= tool
;
257 ::SetCapture((HWND
) GetHWND());
258 int state
= wxTBSTATE_ENABLED
|wxTBSTATE_PRESSED
;
259 if (tool
->m_toggleState
)
260 state
|= wxTBSTATE_CHECKED
;
261 DrawTool(dc
, tool
, state
);
263 else if (event
.LeftUp() && tool
->m_enabled
)
265 if (eventCurrentTool
)
267 if (eventCurrentTool
== tool
)
269 if (tool
->m_isToggle
)
271 tool
->m_toggleState
= !tool
->m_toggleState
;
272 if (!OnLeftClick(tool
->m_index
, tool
->m_toggleState
))
274 tool
->m_toggleState
= !tool
->m_toggleState
;
276 int state
= wxTBSTATE_ENABLED
;
277 if (tool
->m_toggleState
)
278 state
|= wxTBSTATE_CHECKED
;
279 DrawTool(dc
, tool
, state
);
283 int state
= wxTBSTATE_ENABLED
;
284 if (tool
->m_toggleState
)
285 state
|= wxTBSTATE_CHECKED
;
286 DrawTool(dc
, tool
, state
);
287 OnLeftClick(tool
->m_index
, tool
->m_toggleState
);
290 eventCurrentTool
= NULL
;
292 else if (event
.RightDown() && tool
->m_enabled
)
294 OnRightClick(tool
->m_index
, x
, y
);
298 // This function enables/disables a toolbar tool and redraws it.
299 // If that would not be done, the enabling/disabling wouldn't be
300 // visible on the screen.
301 void wxToolBarMSW::EnableTool(int toolIndex
, bool enable
)
303 wxNode
*node
= m_tools
.Find((long)toolIndex
);
308 // at first do the enabling/disabling in the base class
309 wxToolBarBase::EnableTool(toolIndex
,enable
);
310 // then calculate the state of the tool and draw it
311 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
313 if(tool
->m_toggleState
) state
|= wxTBSTATE_CHECKED
;
314 if(tool
->m_enabled
) state
|= wxTBSTATE_ENABLED
;
315 // how can i access the PRESSED state???
316 DrawTool(dc
, tool
,state
);
320 void wxToolBarMSW::DrawTool(wxDC
& dc
, wxToolBarTool
*tool
, int state
)
322 DrawButton(dc
.GetHDC(), (int)tool
->m_x
, (int)tool
->m_y
, (int)tool
->GetWidth(), (int)tool
->GetHeight(), tool
, state
);
325 void wxToolBarMSW::DrawTool(wxDC
& dc
, wxMemoryDC
& , wxToolBarTool
*tool
)
327 int state
= wxTBSTATE_ENABLED
;
328 if (!tool
->m_enabled
)
330 if (tool
->m_toggleState
)
331 state
|= wxTBSTATE_CHECKED
;
332 DrawTool(dc
, tool
, state
);
335 // If pushedBitmap is NULL, a reversed version of bitmap is
336 // created and used as the pushed/toggled image.
337 // If toggle is TRUE, the button toggles between the two states.
338 wxToolBarTool
*wxToolBarMSW::AddTool(int index
, const wxBitmap
& bitmap
, const wxBitmap
& pushedBitmap
,
339 bool toggle
, long xPos
, long yPos
, wxObject
*clientData
, const wxString
& helpString1
, const wxString
& helpString2
)
341 // Using bitmap2 can cause problems (don't know why!)
343 // TODO: use the mapping code from wxToolBar95 to get it right in this class
344 #if !defined(__WIN32__) && !defined(__WIN386__)
348 bitmap2
.SetHBITMAP( (WXHBITMAP
) CreateMappedBitmap((WXHINSTANCE
)wxGetInstance(), (WXHBITMAP
) ((wxBitmap
& )bitmap
).GetHBITMAP()));
351 wxToolBarTool
*tool
= new wxToolBarTool(index
, bitmap
, bitmap2
, toggle
, xPos
, yPos
, helpString1
, helpString2
);
353 wxToolBarTool
*tool
= new wxToolBarTool(index
, bitmap
, wxNullBitmap
, toggle
, xPos
, yPos
, helpString1
, helpString2
);
356 tool
->m_clientData
= clientData
;
361 tool
->m_x
= m_xMargin
;
366 tool
->m_y
= m_yMargin
;
368 tool
->m_deleteSecondBitmap
= TRUE
;
369 tool
->SetSize(GetToolSize().x
, GetToolSize().y
);
371 // Calculate reasonable max size in case Layout() not called
372 if ((tool
->m_x
+ bitmap
.GetWidth() + m_xMargin
) > m_maxWidth
)
373 m_maxWidth
= (tool
->m_x
+ tool
->GetWidth() + m_xMargin
);
375 if ((tool
->m_y
+ bitmap
.GetHeight() + m_yMargin
) > m_maxHeight
)
376 m_maxHeight
= (tool
->m_y
+ tool
->GetHeight() + m_yMargin
);
378 m_tools
.Append((long)index
, tool
);
382 void wxToolBarMSW::LayoutTools()
384 m_currentRowsOrColumns
= 0;
387 int maxToolWidth
= 0;
388 int maxToolHeight
= 0;
392 // Find the maximum tool width and height
393 wxNode
*node
= m_tools
.First();
396 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
397 if (tool
->GetWidth() > maxToolWidth
)
398 maxToolWidth
= (int)tool
->GetWidth();
399 if (tool
->GetHeight() > maxToolHeight
)
400 maxToolHeight
= (int)tool
->GetHeight();
404 int separatorSize
= m_toolSeparation
;
406 node
= m_tools
.First();
409 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->Data();
410 if (tool
->m_toolStyle
== wxTOOL_STYLE_SEPARATOR
)
412 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
414 if (m_currentRowsOrColumns
>= m_maxCols
)
415 m_lastY
+= separatorSize
;
417 m_lastX
+= separatorSize
;
421 if (m_currentRowsOrColumns
>= m_maxRows
)
422 m_lastX
+= separatorSize
;
424 m_lastY
+= separatorSize
;
427 else if (tool
->m_toolStyle
== wxTOOL_STYLE_BUTTON
)
429 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
431 if (m_currentRowsOrColumns
>= m_maxCols
)
433 m_currentRowsOrColumns
= 0;
435 m_lastY
+= maxToolHeight
+ m_toolPacking
;
437 tool
->m_x
= (long) (m_lastX
+ (maxToolWidth
- tool
->GetWidth())/2.0);
438 tool
->m_y
= (long) (m_lastY
+ (maxToolHeight
- tool
->GetHeight())/2.0);
440 m_lastX
+= maxToolWidth
+ m_toolPacking
;
444 if (m_currentRowsOrColumns
>= m_maxRows
)
446 m_currentRowsOrColumns
= 0;
447 m_lastX
+= (maxToolWidth
+ m_toolPacking
);
450 tool
->m_x
= (long) (m_lastX
+ (maxToolWidth
- tool
->GetWidth())/2.0);
451 tool
->m_y
= (long) (m_lastY
+ (maxToolHeight
- tool
->GetHeight())/2.0);
453 m_lastY
+= maxToolHeight
+ m_toolPacking
;
455 m_currentRowsOrColumns
++;
458 if (m_lastX
> m_maxWidth
)
459 m_maxWidth
= m_lastX
;
460 if (m_lastY
> m_maxHeight
)
461 m_maxHeight
= m_lastY
;
465 if ( GetWindowStyleFlag() & wxTB_HORIZONTAL
)
467 m_maxWidth
+= maxToolWidth
;
468 m_maxHeight
+= maxToolHeight
;
472 m_maxWidth
+= maxToolWidth
;
473 m_maxHeight
+= maxToolHeight
;
476 m_maxWidth
+= m_xMargin
;
477 m_maxHeight
+= m_yMargin
;
479 SetSize(m_maxWidth
, m_maxHeight
);
483 bool wxToolBarMSW::InitGlobalObjects(void)
486 if (!CreateDitherBrush())
489 m_hdcMono
= (WXHDC
) CreateCompatibleDC(NULL
);
493 m_hbmMono
= (WXHBITMAP
) CreateBitmap((int)GetToolSize().x
, (int)GetToolSize().y
, 1, 1, NULL
);
497 m_hbmDefault
= (WXHBITMAP
) SelectObject((HDC
) m_hdcMono
, (HBITMAP
) m_hbmMono
);
501 void wxToolBarMSW::FreeGlobalObjects(void)
508 SelectObject((HDC
) m_hdcMono
, (HBITMAP
) m_hbmDefault
);
511 DeleteDC((HDC
) m_hdcMono
); // toast the DCs
516 DeleteObject((HBITMAP
) m_hbmMono
);
521 void wxToolBarMSW::PatB(WXHDC hdc
,int x
,int y
,int dx
,int dy
, long rgb
)
530 SetBkColor((HDC
) hdc
,rgb
);
531 ExtTextOut((HDC
) hdc
,0,0,ETO_OPAQUE
,&rc
,NULL
,0,NULL
);
535 // create a mono bitmap mask:
536 // 1's where color == COLOR_BTNFACE || COLOR_HILIGHT
537 // 0's everywhere else
539 void wxToolBarMSW::CreateMask(WXHDC hdc
, int xoffset
, int yoffset
, int dx
, int dy
)
541 HDC globalDC
= ::GetDC(NULL
);
542 HDC hdcGlyphs
= CreateCompatibleDC((HDC
) globalDC
);
543 ReleaseDC(NULL
, (HDC
) globalDC
);
545 // krj - create a new bitmap and copy the image from hdc.
546 //HBITMAP bitmapOld = SelectObject(hdcGlyphs, hBitmap);
547 HBITMAP hBitmap
= CreateCompatibleBitmap((HDC
) hdc
, dx
, dy
);
548 HBITMAP bitmapOld
= (HBITMAP
) SelectObject(hdcGlyphs
, hBitmap
);
549 BitBlt(hdcGlyphs
, 0,0, dx
, dy
, (HDC
) hdc
, 0, 0, SRCCOPY
);
551 // initalize whole area with 1's
552 PatBlt((HDC
) m_hdcMono
, 0, 0, dx
, dy
, WHITENESS
);
554 // create mask based on color bitmap
555 // convert this to 1's
556 SetBkColor(hdcGlyphs
, m_rgbFace
);
557 BitBlt((HDC
) m_hdcMono
, xoffset
, yoffset
, (int)GetToolBitmapSize().x
, (int)GetToolBitmapSize().y
,
558 hdcGlyphs
, 0, 0, SRCCOPY
);
559 // convert this to 1's
560 SetBkColor(hdcGlyphs
, m_rgbHilight
);
562 BitBlt((HDC
) m_hdcMono
, xoffset
, yoffset
, (int)GetToolBitmapSize().x
, (int)GetToolBitmapSize().y
,
563 hdcGlyphs
, 0, 0, SRCPAINT
);
565 SelectObject(hdcGlyphs
, bitmapOld
);
566 DeleteObject(hBitmap
);
570 void wxToolBarMSW::DrawBlankButton(WXHDC hdc
, int x
, int y
, int dx
, int dy
, int state
)
573 PatB(hdc
, x
, y
, dx
, dy
, m_rgbFace
);
575 if (state
& wxTBSTATE_PRESSED
) {
576 PatB(hdc
, x
+ 1, y
, dx
- 2, 1, m_rgbFrame
);
577 PatB(hdc
, x
+ 1, y
+ dy
- 1, dx
- 2, 1, m_rgbFrame
);
578 PatB(hdc
, x
, y
+ 1, 1, dy
- 2, m_rgbFrame
);
579 PatB(hdc
, x
+ dx
- 1, y
+1, 1, dy
- 2, m_rgbFrame
);
580 PatB(hdc
, x
+ 1, y
+ 1, 1, dy
-2, m_rgbShadow
);
581 PatB(hdc
, x
+ 1, y
+ 1, dx
-2, 1, m_rgbShadow
);
584 PatB(hdc
, x
+ 1, y
, dx
- 2, 1, m_rgbFrame
);
585 PatB(hdc
, x
+ 1, y
+ dy
- 1, dx
- 2, 1, m_rgbFrame
);
586 PatB(hdc
, x
, y
+ 1, 1, dy
- 2, m_rgbFrame
);
587 PatB(hdc
, x
+ dx
- 1, y
+ 1, 1, dy
- 2, m_rgbFrame
);
590 PatB(hdc
, x
+ 1, y
+ 1, 1, dy
- 1, m_rgbHilight
);
591 PatB(hdc
, x
+ 1, y
+ 1, dx
- 1, 1, m_rgbHilight
);
592 PatB(hdc
, x
+ dx
, y
+ 1, 1, dy
, m_rgbShadow
);
593 PatB(hdc
, x
+ 1, y
+ dy
, dx
, 1, m_rgbShadow
);
594 PatB(hdc
, x
+ dx
- 1, y
+ 2, 1, dy
- 2, m_rgbShadow
);
595 PatB(hdc
, x
+ 2, y
+ dy
- 1, dx
- 2, 1, m_rgbShadow
);
599 void wxToolBarMSW::DrawButton(WXHDC hdc
, int x
, int y
, int dx
, int dy
, wxToolBarTool
*tool
, int state
)
603 BOOL bMaskCreated
= FALSE
;
604 int xButton
= 0; // assume button is down
611 // HBITMAP hBitmap = (HBITMAP) tool->m_bitmap1.GetHBITMAP();
612 HDC globalDC
= ::GetDC(NULL
);
613 HDC hdcGlyphs
= CreateCompatibleDC(globalDC
);
614 ReleaseDC(NULL
, globalDC
);
616 // get the proper button look - up or down.
617 if (!(state
& (wxTBSTATE_PRESSED
| wxTBSTATE_CHECKED
))) {
618 xButton
= dx
; // use 'up' version of button
620 dyFace
-= 2; // extents to ignore button highlight
623 DrawBlankButton(hdc
, x
, y
, dx
, dy
, state
);
626 // move coordinates inside border and away from upper left highlight.
627 // the extents change accordingly.
633 // Using bitmap2 can cause problems (don't know why!)
634 #if !defined(__WIN32__) && !defined(__WIN386__)
636 if (tool
->m_bitmap2
.Ok())
637 bitmapOld
= (HBITMAP
) SelectObject(hdcGlyphs
, (HBITMAP
) tool
->m_bitmap2
.GetHBITMAP());
639 bitmapOld
= (HBITMAP
) SelectObject(hdcGlyphs
, (HBITMAP
) tool
->m_bitmap1
.GetHBITMAP());
641 HBITMAP bitmapOld
= (HBITMAP
) SelectObject(hdcGlyphs
, (HBITMAP
) tool
->m_bitmap1
.GetHBITMAP());
644 // calculate offset of face from (x,y). y is always from the top,
645 // so the offset is easy. x needs to be centered in face.
647 xCenterOffset
= (dxFace
- (int)GetToolBitmapSize().x
)/2;
648 if (state
& (wxTBSTATE_PRESSED
| wxTBSTATE_CHECKED
))
650 // pressed state moves down and to the right
651 // (x moves automatically as face size grows)
655 // now put on the face
656 if (state
& wxTBSTATE_ENABLED
) {
658 BitBlt((HDC
) hdc
, x
+xCenterOffset
, y
+ yOffset
, (int)GetToolBitmapSize().x
, (int)GetToolBitmapSize().y
,
659 hdcGlyphs
, 0, 0, SRCCOPY
);
661 // disabled version (or indeterminate)
663 CreateMask((WXHDC
) hdcGlyphs
, xCenterOffset
, yOffset
, dxFace
, dyFace
);
664 // CreateMask(hBitmap, xCenterOffset, yOffset, dxFace, dyFace);
666 SetTextColor((HDC
) hdc
, 0L); // 0's in mono -> 0 (for ROP)
667 SetBkColor((HDC
) hdc
, 0x00FFFFFF); // 1's in mono -> 1
669 // draw glyph's white understrike
670 if (!(state
& wxTBSTATE_INDETERMINATE
)) {
671 hbr
= CreateSolidBrush(m_rgbHilight
);
673 hbrOld
= (HBRUSH
) SelectObject((HDC
) hdc
, hbr
);
675 // draw hilight color where we have 0's in the mask
676 BitBlt((HDC
) hdc
, x
+ 1, y
+ 1, dxFace
, dyFace
, (HDC
) m_hdcMono
, 0, 0, 0x00B8074A);
677 SelectObject((HDC
) hdc
, hbrOld
);
684 hbr
= CreateSolidBrush(m_rgbShadow
);
686 hbrOld
= (HBRUSH
) SelectObject((HDC
) hdc
, hbr
);
688 // draw the shadow color where we have 0's in the mask
689 BitBlt((HDC
) hdc
, x
, y
, dxFace
, dyFace
, (HDC
) m_hdcMono
, 0, 0, 0x00B8074A);
690 SelectObject((HDC
) hdc
, hbrOld
);
695 if (state
& wxTBSTATE_CHECKED
) {
696 BitBlt((HDC
) m_hdcMono
, 1, 1, dxFace
- 1, dyFace
- 1, (HDC
) m_hdcMono
, 0, 0, SRCAND
);
700 if (state
& (wxTBSTATE_CHECKED
| wxTBSTATE_INDETERMINATE
)) {
702 hbrOld
= (HBRUSH
) SelectObject((HDC
) hdc
, (HBRUSH
) m_hbrDither
);
706 CreateMask((WXHDC
) hdcGlyphs
, xCenterOffset
, yOffset
, dxFace
, dyFace
);
707 // CreateMask(hBitmap, xCenterOffset, yOffset, dxFace, dyFace);
709 SetTextColor((HDC
) hdc
, 0L); // 0 -> 0
710 SetBkColor((HDC
) hdc
, 0x00FFFFFF); // 1 -> 1
712 // only draw the dither brush where the mask is 1's
713 BitBlt((HDC
) hdc
, x
, y
, dxFace
, dyFace
, (HDC
) m_hdcMono
, 0, 0, 0x00E20746);
715 SelectObject((HDC
) hdc
, hbrOld
);
718 SelectObject(hdcGlyphs
, bitmapOld
);
722 void wxToolBarMSW::GetSysColors(void)
724 static COLORREF rgbSaveFace
= 0xffffffffL
,
725 rgbSaveShadow
= 0xffffffffL
,
726 rgbSaveHilight
= 0xffffffffL
,
727 rgbSaveFrame
= 0xffffffffL
;
729 // For now, override these because the colour replacement isn't working,
730 // and we get inconsistent colours. Assume all buttons are grey for the moment.
732 // m_rgbFace = GetSysColor(COLOR_BTNFACE);
733 m_rgbFace
= RGB(192,192,192);
734 // m_rgbShadow = GetSysColor(COLOR_BTNSHADOW);
735 m_rgbShadow
= RGB(128,128,128);
736 // m_rgbHilight = GetSysColor(COLOR_BTNHIGHLIGHT);
737 m_rgbHilight
= RGB(255, 255, 255);
739 m_rgbFrame
= GetSysColor(COLOR_WINDOWFRAME
);
741 if (rgbSaveFace
!=m_rgbFace
|| rgbSaveShadow
!=m_rgbShadow
742 || rgbSaveHilight
!=m_rgbHilight
|| rgbSaveFrame
!=m_rgbFrame
)
744 rgbSaveFace
= m_rgbFace
;
745 rgbSaveShadow
= m_rgbShadow
;
746 rgbSaveHilight
= m_rgbHilight
;
747 rgbSaveFrame
= m_rgbFrame
;
749 // Update the brush for pushed-in buttons
754 WXHBITMAP
wxToolBarMSW::CreateDitherBitmap()
763 pbmi
= (BITMAPINFO
*)malloc(sizeof(BITMAPINFOHEADER
) + 16*sizeof(RGBQUAD
));
764 memset(pbmi
, 0, (sizeof(BITMAPINFOHEADER
) + 16*sizeof(RGBQUAD
)));
766 pbmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
767 pbmi
->bmiHeader
.biWidth
= 8;
768 pbmi
->bmiHeader
.biHeight
= 8;
769 pbmi
->bmiHeader
.biPlanes
= 1;
770 pbmi
->bmiHeader
.biBitCount
= 1;
771 pbmi
->bmiHeader
.biCompression
= BI_RGB
;
773 // rgb = GetSysColor(COLOR_BTNFACE);
774 rgb
= RGB(192,192,192);
776 pbmi
->bmiColors
[0].rgbBlue
= GetBValue(rgb
);
777 pbmi
->bmiColors
[0].rgbGreen
= GetGValue(rgb
);
778 pbmi
->bmiColors
[0].rgbRed
= GetRValue(rgb
);
779 pbmi
->bmiColors
[0].rgbReserved
= 0;
781 // rgb = GetSysColor(COLOR_BTNHIGHLIGHT);
782 rgb
= RGB(255, 255, 255);
784 pbmi
->bmiColors
[1].rgbBlue
= GetBValue(rgb
);
785 pbmi
->bmiColors
[1].rgbGreen
= GetGValue(rgb
);
786 pbmi
->bmiColors
[1].rgbRed
= GetRValue(rgb
);
787 pbmi
->bmiColors
[1].rgbReserved
= 0;
789 /* initialize the brushes */
791 for (i
= 0; i
< 8; i
++)
793 patGray
[i
] = 0xAAAA5555L
; // 0x11114444L; // lighter gray
795 patGray
[i
] = 0x5555AAAAL
; // 0x11114444L; // lighter gray
799 hbm
= CreateDIBitmap(hdc
, &pbmi
->bmiHeader
, CBM_INIT
, patGray
, pbmi
, DIB_RGB_COLORS
);
801 ReleaseDC(NULL
, hdc
);
804 return (WXHBITMAP
)hbm
;
807 bool wxToolBarMSW::CreateDitherBrush(void)
813 hbmGray
= (HBITMAP
) CreateDitherBitmap();
817 hbrSave
= (HBRUSH
) m_hbrDither
;
818 m_hbrDither
= (WXHBRUSH
) CreatePatternBrush(hbmGray
);
819 DeleteObject(hbmGray
);
824 DeleteObject(hbrSave
);
830 m_hbrDither
= (WXHBRUSH
) hbrSave
;
837 bool wxToolBarMSW::FreeDitherBrush(void)
840 DeleteObject((HBRUSH
) m_hbrDither
);
845 typedef struct tagCOLORMAP2
852 // these are the default colors used to map the dib colors
853 // to the current system colors
855 #define BGR_BUTTONTEXT (RGB(000,000,000)) // black
856 #define BGR_BUTTONSHADOW (RGB(128,128,128)) // dark grey
857 #define BGR_BUTTONFACE (RGB(192,192,192)) // bright grey
858 #define BGR_BUTTONHILIGHT (RGB(255,255,255)) // white
859 #define BGR_BACKGROUNDSEL (RGB(000,000,255)) // blue
860 #define BGR_BACKGROUND (RGB(255,000,255)) // magenta
861 #define FlipColor(rgb) (RGB(GetBValue(rgb), GetGValue(rgb), GetRValue(rgb)))
863 WXHBITMAP
wxToolBarMSW::CreateMappedBitmap(WXHINSTANCE
WXUNUSED(hInstance
), void *info
)
865 LPBITMAPINFOHEADER lpBitmapInfo
= (LPBITMAPINFOHEADER
)info
;
866 HDC hdc
, hdcMem
= NULL
;
870 HBITMAP hbm
= NULL
, hbmOld
;
873 static COLORMAP2 ColorMap
[] = {
874 {BGR_BUTTONTEXT
, BGR_BUTTONTEXT
, COLOR_BTNTEXT
}, // black
875 {BGR_BUTTONSHADOW
, BGR_BUTTONSHADOW
, COLOR_BTNSHADOW
}, // dark grey
876 {BGR_BUTTONFACE
, BGR_BUTTONFACE
, COLOR_BTNFACE
}, // bright grey
877 {BGR_BUTTONHILIGHT
, BGR_BUTTONHILIGHT
, COLOR_BTNHIGHLIGHT
},// white
878 {BGR_BACKGROUNDSEL
, BGR_BACKGROUNDSEL
, COLOR_HIGHLIGHT
}, // blue
879 {BGR_BACKGROUND
, BGR_BACKGROUND
, COLOR_WINDOW
} // magenta
882 #define NUM_MAPS (sizeof(ColorMap)/sizeof(COLORMAP2))
888 // So what are the new colors anyway ?
890 for (i
=0; i
< (int) NUM_MAPS
; i
++) {
891 ColorMap
[i
].bgrto
= (long unsigned int) FlipColor(GetSysColor((int)ColorMap
[i
].sysColor
));
894 p
= (DWORD FAR
*)(((LPSTR
)lpBitmapInfo
) + lpBitmapInfo
->biSize
);
896 /* Replace button-face and button-shadow colors with the current values
900 while (numcolors
-- > 0) {
901 for (i
= 0; i
< (int) NUM_MAPS
; i
++) {
902 if (*p
== ColorMap
[i
].bgrfrom
) {
903 *p
= ColorMap
[i
].bgrto
;
910 /* First skip over the header structure */
911 lpBits
= (LPSTR
)(lpBitmapInfo
+ 1);
913 /* Skip the color table entries, if any */
914 lpBits
+= (1 << (lpBitmapInfo
->biBitCount
)) * sizeof(RGBQUAD
);
916 /* Create a color bitmap compatible with the display device */
917 i
= wid
= (int)lpBitmapInfo
->biWidth
;
918 hgt
= (int)lpBitmapInfo
->biHeight
;
921 hdcMem
= CreateCompatibleDC(hdc
);
923 // hbm = CreateDiscardableBitmap(hdc, i, hgt);
924 hbm
= CreateCompatibleBitmap(hdc
, i
, hgt
);
926 hbmOld
= (HBITMAP
) SelectObject(hdcMem
, hbm
);
928 // set the main image
929 StretchDIBits(hdcMem
, 0, 0, wid
, hgt
, 0, 0, wid
, hgt
, lpBits
,
930 (LPBITMAPINFO
)lpBitmapInfo
, DIB_RGB_COLORS
, SRCCOPY
);
932 SelectObject(hdcMem
, hbmOld
);
935 DeleteObject(hdcMem
);
938 ReleaseDC(NULL
, hdc
);
940 return (WXHBITMAP
) hbm
;
943 WXHBITMAP
wxToolBarMSW::CreateMappedBitmap(WXHINSTANCE hInstance
, WXHBITMAP hBitmap
)
945 HANDLE hDIB
= wxBitmapToDIB((HBITMAP
) hBitmap
, 0);
948 #ifdef __WINDOWS_386__
949 LPBITMAPINFOHEADER lpbmInfoHdr
= (LPBITMAPINFOHEADER
)MK_FP32(GlobalLock(hDIB
));
951 LPBITMAPINFOHEADER lpbmInfoHdr
= (LPBITMAPINFOHEADER
)GlobalLock(hDIB
);
953 HBITMAP newBitmap
= (HBITMAP
) CreateMappedBitmap((WXHINSTANCE
) wxGetInstance(), lpbmInfoHdr
);
956 return (WXHBITMAP
) newBitmap
;