1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/toolbar.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
27 #if wxUSE_TOOLBAR && wxUSE_TOOLBAR_NATIVE && !defined(__SMARTPHONE__)
29 #include "wx/toolbar.h"
32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
33 #include "wx/dynarray.h"
37 #include "wx/settings.h"
38 #include "wx/bitmap.h"
39 #include "wx/dcmemory.h"
40 #include "wx/control.h"
41 #include "wx/app.h" // for GetComCtl32Version
43 #include "wx/stattext.h"
46 #include "wx/artprov.h"
47 #include "wx/sysopt.h"
48 #include "wx/dcclient.h"
50 #include "wx/msw/private.h"
51 #include "wx/msw/dc.h"
54 #include "wx/msw/uxtheme.h"
57 // this define controls whether the code for button colours remapping (only
58 // useful for 16 or 256 colour images) is active at all, it's always turned off
59 // for CE where it doesn't compile (and is probably not needed anyhow) and may
60 // also be turned off for other systems if you always use 24bpp images and so
63 #define wxREMAP_BUTTON_COLOURS
64 #endif // !__WXWINCE__
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 // these standard constants are not always defined in compilers headers
74 #define TBSTYLE_LIST 0x1000
75 #define TBSTYLE_FLAT 0x0800
78 #ifndef TBSTYLE_TRANSPARENT
79 #define TBSTYLE_TRANSPARENT 0x8000
82 #ifndef TBSTYLE_TOOLTIPS
83 #define TBSTYLE_TOOLTIPS 0x0100
88 #define TB_SETSTYLE (WM_USER + 56)
89 #define TB_GETSTYLE (WM_USER + 57)
93 #define TB_HITTEST (WM_USER + 69)
97 #define TB_GETMAXSIZE (WM_USER + 83)
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
116 style ( wxNO_BORDER | wxTB_HORIZONTAL)
125 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
126 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
127 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
128 EVT_ERASE_BACKGROUND(wxToolBar::OnEraseBackground
)
131 // ----------------------------------------------------------------------------
133 // ----------------------------------------------------------------------------
135 class wxToolBarTool
: public wxToolBarToolBase
138 wxToolBarTool(wxToolBar
*tbar
,
140 const wxString
& label
,
141 const wxBitmap
& bmpNormal
,
142 const wxBitmap
& bmpDisabled
,
144 wxObject
*clientData
,
145 const wxString
& shortHelp
,
146 const wxString
& longHelp
)
147 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
148 clientData
, shortHelp
, longHelp
)
154 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
, const wxString
& label
)
155 : wxToolBarToolBase(tbar
, control
, label
)
157 if ( IsControl() && !m_label
.empty() )
159 // create a control to render the control's label
160 m_staticText
= new wxStaticText
167 wxALIGN_CENTRE
| wxST_NO_AUTORESIZE
178 virtual ~wxToolBarTool()
183 virtual void SetLabel(const wxString
& label
)
185 if ( label
== m_label
)
188 wxToolBarToolBase::SetLabel(label
);
191 m_staticText
->SetLabel(label
);
193 // we need to update the label shown in the toolbar because it has a
194 // pointer to the internal buffer of the old label
196 // TODO: use TB_SETBUTTONINFO
199 wxStaticText
* GetStaticText()
201 wxASSERT_MSG( IsControl(),
202 _T("only makes sense for embedded control tools") );
207 // set/get the number of separators which we use to cover the space used by
208 // a control in the toolbar
209 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
210 size_t GetSeparatorsCount() const { return m_nSepCount
; }
214 wxStaticText
*m_staticText
;
216 DECLARE_NO_COPY_CLASS(wxToolBarTool
)
219 // ----------------------------------------------------------------------------
221 // ----------------------------------------------------------------------------
223 // return the rectangle of the item at the given index
225 // returns an empty (0, 0, 0, 0) rectangle if fails so the caller may compare
226 // r.right or r.bottom with 0 to check for this
227 static RECT
wxGetTBItemRect(HWND hwnd
, int index
)
231 // note that we use TB_GETITEMRECT and not TB_GETRECT because the latter
232 // only appeared in v4.70 of comctl32.dll
233 if ( !::SendMessage(hwnd
, TB_GETITEMRECT
, index
, (LPARAM
)&r
) )
235 wxLogLastError(wxT("TB_GETITEMRECT"));
246 // ============================================================================
248 // ============================================================================
250 // ----------------------------------------------------------------------------
252 // ----------------------------------------------------------------------------
254 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
255 const wxString
& label
,
256 const wxBitmap
& bmpNormal
,
257 const wxBitmap
& bmpDisabled
,
259 wxObject
*clientData
,
260 const wxString
& shortHelp
,
261 const wxString
& longHelp
)
263 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
264 clientData
, shortHelp
, longHelp
);
268 wxToolBar::CreateTool(wxControl
*control
, const wxString
& label
)
270 return new wxToolBarTool(this, control
, label
);
273 // ----------------------------------------------------------------------------
274 // wxToolBar construction
275 // ----------------------------------------------------------------------------
277 void wxToolBar::Init()
280 m_disabledImgList
= NULL
;
284 const wxSize size
= wxArtProvider::GetNativeSizeHint(wxART_TOOLBAR
);
285 m_defaultWidth
= size
.x
;
286 m_defaultHeight
= size
.y
;
291 bool wxToolBar::Create(wxWindow
*parent
,
296 const wxString
& name
)
298 // common initialisation
299 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
304 // MSW-specific initialisation
305 if ( !MSWCreateToolbar(pos
, size
) )
308 wxSetCCUnicodeFormat(GetHwnd());
310 // workaround for flat toolbar on Windows XP classic style: we have to set
311 // the style after creating the control; doing it at creation time doesn't work
313 if ( style
& wxTB_FLAT
)
315 LRESULT style
= GetMSWToolbarStyle();
317 if ( !(style
& TBSTYLE_FLAT
) )
318 ::SendMessage(GetHwnd(), TB_SETSTYLE
, 0, style
| TBSTYLE_FLAT
);
320 #endif // wxUSE_UXTHEME
325 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
327 if ( !MSWCreateControl(TOOLBARCLASSNAME
, wxEmptyString
, pos
, size
) )
330 // toolbar-specific post initialisation
331 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
333 #ifdef TB_SETEXTENDEDSTYLE
334 if ( wxApp::GetComCtl32Version() >= 471 )
335 ::SendMessage(GetHwnd(), TB_SETEXTENDEDSTYLE
, 0, TBSTYLE_EX_DRAWDDARROWS
);
341 void wxToolBar::Recreate()
343 const HWND hwndOld
= GetHwnd();
346 // we haven't been created yet, no need to recreate
350 // get the position and size before unsubclassing the old toolbar
351 const wxPoint pos
= GetPosition();
352 const wxSize size
= GetSize();
356 if ( !MSWCreateToolbar(pos
, size
) )
359 wxFAIL_MSG( _T("recreating the toolbar failed") );
364 // reparent all our children under the new toolbar
365 for ( wxWindowList::compatibility_iterator node
= m_children
.GetFirst();
367 node
= node
->GetNext() )
369 wxWindow
*win
= node
->GetData();
370 if ( !win
->IsTopLevel() )
371 ::SetParent(GetHwndOf(win
), GetHwnd());
374 // only destroy the old toolbar now --
375 // after all the children had been reparented
376 ::DestroyWindow(hwndOld
);
378 // it is for the old bitmap control and can't be used with the new one
381 ::DeleteObject((HBITMAP
) m_hBitmap
);
385 if ( m_disabledImgList
)
387 delete m_disabledImgList
;
388 m_disabledImgList
= NULL
;
394 wxToolBar::~wxToolBar()
396 // we must refresh the frame size when the toolbar is deleted but the frame
397 // is not - otherwise toolbar leaves a hole in the place it used to occupy
398 SendSizeEventToParent();
401 ::DeleteObject((HBITMAP
) m_hBitmap
);
403 delete m_disabledImgList
;
406 wxSize
wxToolBar::DoGetBestSize() const
411 if ( !::SendMessage(GetHwnd(), TB_GETMAXSIZE
, 0, (LPARAM
)&size
) )
413 // maybe an old (< 0x400) Windows version? try to approximate the
414 // toolbar size ourselves
415 sizeBest
= GetToolSize();
416 sizeBest
.y
+= 2 * ::GetSystemMetrics(SM_CYBORDER
); // Add borders
417 sizeBest
.x
*= GetToolsCount();
419 // reverse horz and vertical components if necessary
423 sizeBest
.x
= sizeBest
.y
;
427 else // TB_GETMAXSIZE succeeded
429 // but it could still return an incorrect result due to what appears to
430 // be a bug in old comctl32.dll versions which don't handle controls in
431 // the toolbar correctly, so work around it (see SF patch 1902358)
432 if ( !IsVertical() && wxApp::GetComCtl32Version() < 600 )
434 // calculate the toolbar width in alternative way
435 const RECT rcFirst
= wxGetTBItemRect(GetHwnd(), 0);
436 const RECT rcLast
= wxGetTBItemRect(GetHwnd(), GetToolsCount() - 1);
438 const int widthAlt
= rcLast
.right
- rcFirst
.left
;
439 if ( widthAlt
> size
.cx
)
443 sizeBest
.x
= size
.cx
;
444 sizeBest
.y
= size
.cy
;
449 // Without the extra height, DoGetBestSize can report a size that's
450 // smaller than the actual window, causing windows to overlap slightly
451 // in some circumstances, leading to missing borders (especially noticeable
453 if (!(GetWindowStyle() & wxTB_NODIVIDER
))
458 CacheBestSize(sizeBest
);
463 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
465 // toolbars never have border, giving one to them results in broken
467 WXDWORD msStyle
= wxControl::MSWGetStyle
469 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
472 if ( !(style
& wxTB_NO_TOOLTIPS
) )
473 msStyle
|= TBSTYLE_TOOLTIPS
;
475 if ( style
& (wxTB_FLAT
| wxTB_HORZ_LAYOUT
) )
477 // static as it doesn't change during the program lifetime
478 static const int s_verComCtl
= wxApp::GetComCtl32Version();
480 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
481 // style with 6.00 (part of Windows XP) leads to the toolbar with
482 // incorrect background colour - and not using it still results in the
483 // correct (flat) toolbar, so don't use it there
484 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
485 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
487 if ( s_verComCtl
>= 470 && style
& wxTB_HORZ_LAYOUT
)
488 msStyle
|= TBSTYLE_LIST
;
491 if ( style
& wxTB_NODIVIDER
)
492 msStyle
|= CCS_NODIVIDER
;
494 if ( style
& wxTB_NOALIGN
)
495 msStyle
|= CCS_NOPARENTALIGN
;
497 if ( style
& wxTB_VERTICAL
)
500 if( style
& wxTB_BOTTOM
)
501 msStyle
|= CCS_BOTTOM
;
503 if ( style
& wxTB_RIGHT
)
504 msStyle
|= CCS_RIGHT
;
509 // ----------------------------------------------------------------------------
510 // adding/removing tools
511 // ----------------------------------------------------------------------------
513 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
514 wxToolBarToolBase
* WXUNUSED(tool
))
516 // nothing special to do here - we really create the toolbar buttons in
518 InvalidateBestSize();
522 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
524 // the main difficulty we have here is with the controls in the toolbars:
525 // as we (sometimes) use several separators to cover up the space used by
526 // them, the indices are not the same for us and the toolbar
528 // first determine the position of the first button to delete: it may be
529 // different from pos if we use several separators to cover the space used
531 wxToolBarToolsList::compatibility_iterator node
;
532 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
534 wxToolBarToolBase
*tool2
= node
->GetData();
537 // let node point to the next node in the list
538 node
= node
->GetNext();
543 if ( tool2
->IsControl() )
544 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
547 // now determine the number of buttons to delete and the area taken by them
548 size_t nButtonsToDelete
= 1;
550 // get the size of the button we're going to delete
551 const RECT r
= wxGetTBItemRect(GetHwnd(), pos
);
553 int width
= r
.right
- r
.left
;
555 if ( tool
->IsControl() )
557 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
558 width
*= nButtonsToDelete
;
561 // do delete all buttons
562 m_nButtons
-= nButtonsToDelete
;
563 while ( nButtonsToDelete
-- > 0 )
565 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
567 wxLogLastError(wxT("TB_DELETEBUTTON"));
573 // and finally reposition all the controls after this button (the toolbar
574 // takes care of all normal items)
575 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
577 wxToolBarTool
*tool2
= (wxToolBarTool
*)node
->GetData();
578 if ( tool2
->IsControl() )
580 wxControl
* const control
= tool2
->GetControl();
583 control
->GetPosition(&x
, NULL
);
584 control
->Move(x
- width
, wxDefaultCoord
);
586 wxStaticText
* const staticText
= tool2
->GetStaticText();
588 staticText
->Move(x
- width
, wxDefaultCoord
);
592 InvalidateBestSize();
597 void wxToolBar::CreateDisabledImageList()
599 if (m_disabledImgList
!= NULL
)
601 delete m_disabledImgList
;
602 m_disabledImgList
= NULL
;
605 // as we can't use disabled image list with older versions of comctl32.dll,
606 // don't even bother creating it
607 if ( wxApp::GetComCtl32Version() >= 470 )
609 // search for the first disabled button img in the toolbar, if any
610 for ( wxToolBarToolsList::compatibility_iterator
611 node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
613 wxToolBarToolBase
*tool
= node
->GetData();
614 wxBitmap bmpDisabled
= tool
->GetDisabledBitmap();
615 if ( bmpDisabled
.Ok() )
617 m_disabledImgList
= new wxImageList
621 bmpDisabled
.GetMask() != NULL
,
628 // we don't have any disabled bitmaps
632 void wxToolBar::AdjustToolBitmapSize()
634 wxSize
s(m_defaultWidth
, m_defaultHeight
);
635 const wxSize
orig_s(s
);
637 for ( wxToolBarToolsList::const_iterator i
= m_tools
.begin();
641 const wxBitmap
& bmp
= (*i
)->GetNormalBitmap();
642 s
.IncTo(bmp
.GetSize());
646 SetToolBitmapSize(s
);
649 bool wxToolBar::Realize()
651 const size_t nTools
= GetToolsCount();
656 // make sure tool size is larger enough for all all bitmaps to fit in
657 // (this is consistent with what other ports do):
658 AdjustToolBitmapSize();
660 #ifdef wxREMAP_BUTTON_COLOURS
661 // don't change the values of these constants, they can be set from the
662 // user code via wxSystemOptions
671 // the user-specified option overrides anything, but if it wasn't set, only
672 // remap the buttons on 8bpp displays as otherwise the bitmaps usually look
673 // much worse after remapping
674 static const wxChar
*remapOption
= wxT("msw.remap");
675 const int remapValue
= wxSystemOptions::HasOption(remapOption
)
676 ? wxSystemOptions::GetOptionInt(remapOption
)
677 : wxDisplayDepth() <= 8 ? Remap_Buttons
680 #endif // wxREMAP_BUTTON_COLOURS
682 // delete all old buttons, if any
683 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
685 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
687 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
691 // First, add the bitmap: we use one bitmap for all toolbar buttons
692 // ----------------------------------------------------------------
694 wxToolBarToolsList::compatibility_iterator node
;
698 if ( HasFlag(wxTB_NOICONS
) )
700 // no icons, don't leave space for them
704 else // do show icons
706 // if we already have a bitmap, we'll replace the existing one --
707 // otherwise we'll install a new one
708 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
710 sizeBmp
.x
= m_defaultWidth
;
711 sizeBmp
.y
= m_defaultHeight
;
713 const wxCoord totalBitmapWidth
= m_defaultWidth
*
714 wx_truncate_cast(wxCoord
, nTools
),
715 totalBitmapHeight
= m_defaultHeight
;
717 // Create a bitmap and copy all the tool bitmaps into it
718 wxMemoryDC dcAllButtons
;
719 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
720 dcAllButtons
.SelectObject(bitmap
);
722 #ifdef wxREMAP_BUTTON_COLOURS
723 if ( remapValue
!= Remap_TransparentBg
)
724 #endif // wxREMAP_BUTTON_COLOURS
726 // VZ: why do we hardcode grey colour for CE?
727 dcAllButtons
.SetBackground(wxBrush(
729 wxColour(0xc0, 0xc0, 0xc0)
730 #else // !__WXWINCE__
731 GetBackgroundColour()
732 #endif // __WXWINCE__/!__WXWINCE__
734 dcAllButtons
.Clear();
737 m_hBitmap
= bitmap
.GetHBITMAP();
738 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
740 #ifdef wxREMAP_BUTTON_COLOURS
741 if ( remapValue
== Remap_Bg
)
743 dcAllButtons
.SelectObject(wxNullBitmap
);
745 // Even if we're not remapping the bitmap
746 // content, we still have to remap the background.
747 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
748 totalBitmapWidth
, totalBitmapHeight
);
750 dcAllButtons
.SelectObject(bitmap
);
752 #endif // wxREMAP_BUTTON_COLOURS
754 // the button position
757 // the number of buttons (not separators)
760 CreateDisabledImageList();
761 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
763 wxToolBarToolBase
*tool
= node
->GetData();
764 if ( tool
->IsButton() )
766 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
768 const int w
= bmp
.GetWidth();
769 const int h
= bmp
.GetHeight();
773 int xOffset
= wxMax(0, (m_defaultWidth
- w
)/2);
774 int yOffset
= wxMax(0, (m_defaultHeight
- h
)/2);
776 // notice the last parameter: do use mask
777 dcAllButtons
.DrawBitmap(bmp
, x
+ xOffset
, yOffset
, true);
781 wxFAIL_MSG( _T("invalid tool button bitmap") );
784 // also deal with disabled bitmap if we want to use them
785 if ( m_disabledImgList
)
787 wxBitmap bmpDisabled
= tool
->GetDisabledBitmap();
788 #if wxUSE_IMAGE && wxUSE_WXDIB
789 if ( !bmpDisabled
.Ok() )
791 // no disabled bitmap specified but we still need to
792 // fill the space in the image list with something, so
793 // we grey out the normal bitmap
795 imgGreyed
= bmp
.ConvertToImage().ConvertToGreyscale();
797 #ifdef wxREMAP_BUTTON_COLOURS
798 if ( remapValue
== Remap_Buttons
)
800 // we need to have light grey background colour for
801 // MapBitmap() to work correctly
802 for ( int y
= 0; y
< h
; y
++ )
804 for ( int x
= 0; x
< w
; x
++ )
806 if ( imgGreyed
.IsTransparent(x
, y
) )
807 imgGreyed
.SetRGB(x
, y
,
809 wxLIGHT_GREY
->Green(),
810 wxLIGHT_GREY
->Blue());
814 #endif // wxREMAP_BUTTON_COLOURS
816 bmpDisabled
= wxBitmap(imgGreyed
);
818 #endif // wxUSE_IMAGE
820 #ifdef wxREMAP_BUTTON_COLOURS
821 if ( remapValue
== Remap_Buttons
)
822 MapBitmap(bmpDisabled
.GetHBITMAP(), w
, h
);
823 #endif // wxREMAP_BUTTON_COLOURS
825 m_disabledImgList
->Add(bmpDisabled
);
828 // still inc width and number of buttons because otherwise the
829 // subsequent buttons will all be shifted which is rather confusing
830 // (and like this you'd see immediately which bitmap was bad)
836 dcAllButtons
.SelectObject(wxNullBitmap
);
838 // don't delete this HBITMAP!
839 bitmap
.SetHBITMAP(0);
841 #ifdef wxREMAP_BUTTON_COLOURS
842 if ( remapValue
== Remap_Buttons
)
844 // Map to system colours
845 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
846 totalBitmapWidth
, totalBitmapHeight
);
848 #endif // wxREMAP_BUTTON_COLOURS
850 bool addBitmap
= true;
852 if ( oldToolBarBitmap
)
854 #ifdef TB_REPLACEBITMAP
855 if ( wxApp::GetComCtl32Version() >= 400 )
857 TBREPLACEBITMAP replaceBitmap
;
858 replaceBitmap
.hInstOld
= NULL
;
859 replaceBitmap
.hInstNew
= NULL
;
860 replaceBitmap
.nIDOld
= (UINT_PTR
)oldToolBarBitmap
;
861 replaceBitmap
.nIDNew
= (UINT_PTR
)hBitmap
;
862 replaceBitmap
.nButtons
= nButtons
;
863 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
864 0, (LPARAM
) &replaceBitmap
) )
866 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
869 ::DeleteObject(oldToolBarBitmap
);
875 #endif // TB_REPLACEBITMAP
877 // we can't replace the old bitmap, so we will add another one
878 // (awfully inefficient, but what else to do?) and shift the bitmap
879 // indices accordingly
882 bitmapId
= m_nButtons
;
886 if ( addBitmap
) // no old bitmap or we can't replace it
888 TBADDBITMAP addBitmap
;
890 addBitmap
.nID
= (UINT_PTR
)hBitmap
;
891 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
892 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
894 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
898 // disable image lists are only supported in comctl32.dll 4.70+
899 if ( wxApp::GetComCtl32Version() >= 470 )
901 HIMAGELIST hil
= m_disabledImgList
902 ? GetHimagelistOf(m_disabledImgList
)
905 // notice that we set the image list even if don't have one right
906 // now as we could have it before and need to reset it in this case
907 HIMAGELIST oldImageList
= (HIMAGELIST
)
908 ::SendMessage(GetHwnd(), TB_SETDISABLEDIMAGELIST
, 0, (LPARAM
)hil
);
910 // delete previous image list if any
912 ::DeleteObject(oldImageList
);
916 // don't call SetToolBitmapSize() as we don't want to change the values of
917 // m_defaultWidth/Height
918 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
919 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
921 wxLogLastError(_T("TB_SETBITMAPSIZE"));
924 // Next add the buttons and separators
925 // -----------------------------------
927 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
929 // this array will hold the indices of all controls in the toolbar
930 wxArrayInt controlIds
;
932 bool lastWasRadio
= false;
934 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
936 wxToolBarToolBase
*tool
= node
->GetData();
938 // don't add separators to the vertical toolbar with old comctl32.dll
939 // versions as they didn't handle this properly
940 if ( IsVertical() && tool
->IsSeparator() &&
941 wxApp::GetComCtl32Version() <= 472 )
946 TBBUTTON
& button
= buttons
[i
];
948 wxZeroMemory(button
);
950 bool isRadio
= false;
951 switch ( tool
->GetStyle() )
953 case wxTOOL_STYLE_CONTROL
:
954 button
.idCommand
= tool
->GetId();
955 // fall through: create just a separator too
957 case wxTOOL_STYLE_SEPARATOR
:
958 button
.fsState
= TBSTATE_ENABLED
;
959 button
.fsStyle
= TBSTYLE_SEP
;
962 case wxTOOL_STYLE_BUTTON
:
963 if ( !HasFlag(wxTB_NOICONS
) )
964 button
.iBitmap
= bitmapId
;
966 if ( HasFlag(wxTB_TEXT
) )
968 const wxString
& label
= tool
->GetLabel();
969 if ( !label
.empty() )
970 button
.iString
= (INT_PTR
)label
.wx_str();
973 button
.idCommand
= tool
->GetId();
975 if ( tool
->IsEnabled() )
976 button
.fsState
|= TBSTATE_ENABLED
;
977 if ( tool
->IsToggled() )
978 button
.fsState
|= TBSTATE_CHECKED
;
980 switch ( tool
->GetKind() )
983 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
987 // the first item in the radio group is checked by
988 // default to be consistent with wxGTK and the menu
990 button
.fsState
|= TBSTATE_CHECKED
;
992 if (tool
->Toggle(true))
994 DoToggleTool(tool
, true);
997 else if ( tool
->IsToggled() )
999 wxToolBarToolsList::compatibility_iterator nodePrev
= node
->GetPrevious();
1000 int prevIndex
= i
- 1;
1003 TBBUTTON
& prevButton
= buttons
[prevIndex
];
1004 wxToolBarToolBase
*tool
= nodePrev
->GetData();
1005 if ( !tool
->IsButton() || tool
->GetKind() != wxITEM_RADIO
)
1008 if ( tool
->Toggle(false) )
1009 DoToggleTool(tool
, false);
1011 prevButton
.fsState
&= ~TBSTATE_CHECKED
;
1012 nodePrev
= nodePrev
->GetPrevious();
1021 button
.fsStyle
= TBSTYLE_CHECK
;
1025 button
.fsStyle
= TBSTYLE_BUTTON
;
1028 case wxITEM_DROPDOWN
:
1029 button
.fsStyle
= TBSTYLE_DROPDOWN
;
1033 wxFAIL_MSG( _T("unexpected toolbar button kind") );
1034 button
.fsStyle
= TBSTYLE_BUTTON
;
1042 lastWasRadio
= isRadio
;
1047 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
1049 wxLogLastError(wxT("TB_ADDBUTTONS"));
1054 // Deal with the controls finally
1055 // ------------------------------
1057 // adjust the controls size to fit nicely in the toolbar
1060 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
1062 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
1064 // we calculate the running y coord for vertical toolbars so we need to
1065 // get the items size for all items but for the horizontal ones we
1066 // don't need to deal with the non controls
1067 bool isControl
= tool
->IsControl();
1068 if ( !isControl
&& !IsVertical() )
1071 const RECT r
= wxGetTBItemRect(GetHwnd(), index
);
1074 // can only be control if isVertical
1075 y
+= r
.bottom
- r
.top
;
1080 wxControl
*control
= tool
->GetControl();
1081 wxStaticText
* const staticText
= tool
->GetStaticText();
1083 wxSize size
= control
->GetSize();
1084 wxSize staticTextSize
;
1087 staticTextSize
= staticText
->GetSize();
1088 staticTextSize
.y
+= 3; // margin between control and its label
1091 // the position of the leftmost controls corner
1092 int left
= wxDefaultCoord
;
1094 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
1095 #ifdef TB_SETBUTTONINFO
1096 // available in headers, now check whether it is available now
1097 // (during run-time)
1098 if ( wxApp::GetComCtl32Version() >= 471 )
1100 // set the (underlying) separators width to be that of the
1103 tbbi
.cbSize
= sizeof(tbbi
);
1104 tbbi
.dwMask
= TBIF_SIZE
;
1105 tbbi
.cx
= (WORD
)size
.x
;
1106 if ( !::SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
1107 tool
->GetId(), (LPARAM
)&tbbi
) )
1109 // the id is probably invalid?
1110 wxLogLastError(wxT("TB_SETBUTTONINFO"));
1114 #endif // comctl32.dll 4.71
1115 // TB_SETBUTTONINFO unavailable
1117 // try adding several separators to fit the controls width
1118 int widthSep
= r
.right
- r
.left
;
1124 tbb
.fsState
= TBSTATE_ENABLED
;
1125 tbb
.fsStyle
= TBSTYLE_SEP
;
1127 size_t nSeparators
= size
.x
/ widthSep
;
1128 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
1130 if ( !::SendMessage(GetHwnd(), TB_INSERTBUTTON
,
1131 index
, (LPARAM
)&tbb
) )
1133 wxLogLastError(wxT("TB_INSERTBUTTON"));
1139 // remember the number of separators we used - we'd have to
1140 // delete all of them later
1141 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
1143 // adjust the controls width to exactly cover the separators
1144 size
.x
= (nSeparators
+ 1)*widthSep
;
1145 control
->SetSize(size
.x
, wxDefaultCoord
);
1148 // position the control itself correctly vertically centering it on the
1149 // icon area of the toolbar
1150 int height
= r
.bottom
- r
.top
- staticTextSize
.y
;
1152 int diff
= height
- size
.y
;
1153 if ( diff
< 0 || !HasFlag(wxTB_TEXT
) )
1155 // not enough room for the static text
1159 // recalculate height & diff without the staticText control
1160 height
= r
.bottom
- r
.top
;
1161 diff
= height
- size
.y
;
1164 // the control is too high, resize to fit
1165 control
->SetSize(wxDefaultCoord
, height
- 2);
1170 else // enough space for both the control and the label
1182 y
+= height
+ 2 * GetMargins().y
;
1184 else // horizontal toolbar
1186 if ( left
== wxDefaultCoord
)
1192 control
->Move(left
, top
+ (diff
+ 1) / 2);
1195 staticText
->Move(left
+ (size
.x
- staticTextSize
.x
)/2,
1196 r
.bottom
- staticTextSize
.y
);
1200 // the max index is the "real" number of buttons - i.e. counting even the
1201 // separators which we added just for aligning the controls
1204 if ( !IsVertical() )
1206 if ( m_maxRows
== 0 )
1207 // if not set yet, only one row
1210 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
1212 // if not set yet, have one column
1214 SetRows(m_nButtons
);
1217 InvalidateBestSize();
1223 // ----------------------------------------------------------------------------
1225 // ----------------------------------------------------------------------------
1227 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id_
)
1229 // cast to signed is important as we compare this id with (signed) ints in
1230 // FindById() and without the cast we'd get a positive int from a
1231 // "negative" (i.e. > 32767) WORD
1232 const int id
= (signed short)id_
;
1234 wxToolBarToolBase
*tool
= FindById(id
);
1238 bool toggled
= false; // just to suppress warnings
1240 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
1242 if ( tool
->CanBeToggled() )
1244 toggled
= (state
& TBSTATE_CHECKED
) != 0;
1246 // ignore the event when a radio button is released, as this doesn't
1247 // seem to happen at all, and is handled otherwise
1248 if ( tool
->GetKind() == wxITEM_RADIO
&& !toggled
)
1251 tool
->Toggle(toggled
);
1252 UnToggleRadioGroup(tool
);
1255 // Without the two lines of code below, if the toolbar was repainted during
1256 // OnLeftClick(), then it could end up without the tool bitmap temporarily
1257 // (see http://lists.nongnu.org/archive/html/lmi/2008-10/msg00014.html).
1258 // The Update() call bellow ensures that this won't happen, by repainting
1259 // invalidated areas of the toolbar immediately.
1261 // To complicate matters, the tool would be drawn in depressed state (this
1262 // code is called when mouse button is released, not pressed). That's not
1263 // ideal, having the tool pressed for the duration of OnLeftClick()
1264 // provides the user with useful visual clue that the app is busy reacting
1265 // to the event. So we manually put the tool into pressed state, handle the
1266 // event and then finally restore tool's original state.
1267 ::SendMessage(GetHwnd(), TB_SETSTATE
, id
, MAKELONG(state
| TBSTATE_PRESSED
, 0));
1270 bool allowLeftClick
= OnLeftClick(id
, toggled
);
1272 // Restore the unpressed state. Enabled/toggled state might have been
1273 // changed since so take care of it.
1274 if (tool
->IsEnabled())
1275 state
|= TBSTATE_ENABLED
;
1277 state
&= ~TBSTATE_ENABLED
;
1278 if (tool
->IsToggled())
1279 state
|= TBSTATE_CHECKED
;
1281 state
&= ~TBSTATE_CHECKED
;
1282 ::SendMessage(GetHwnd(), TB_SETSTATE
, id
, MAKELONG(state
, 0));
1284 // OnLeftClick() can veto the button state change - for buttons which
1285 // may be toggled only, of couse
1286 if ( !allowLeftClick
&& tool
->CanBeToggled() )
1289 tool
->Toggle(!toggled
);
1291 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(!toggled
, 0));
1297 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
1299 WXLPARAM
*WXUNUSED(result
))
1301 LPNMHDR hdr
= (LPNMHDR
)lParam
;
1302 if ( hdr
->code
== TBN_DROPDOWN
)
1304 LPNMTOOLBAR tbhdr
= (LPNMTOOLBAR
)lParam
;
1306 wxCommandEvent
evt(wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED
, tbhdr
->iItem
);
1307 if ( HandleWindowEvent(evt
) )
1309 // Event got handled, don't display default popup menu
1313 const wxToolBarToolBase
* const tool
= FindById(tbhdr
->iItem
);
1314 wxCHECK_MSG( tool
, false, _T("drop down message for unknown tool") );
1316 wxMenu
* const menu
= tool
->GetDropdownMenu();
1320 // Display popup menu below button
1321 const RECT r
= wxGetTBItemRect(GetHwnd(), GetToolPos(tbhdr
->iItem
));
1323 PopupMenu(menu
, r
.left
, r
.bottom
);
1329 if( !HasFlag(wxTB_NO_TOOLTIPS
) )
1332 // First check if this applies to us
1334 // the tooltips control created by the toolbar is sometimes Unicode, even
1335 // in an ANSI application - this seems to be a bug in comctl32.dll v5
1336 UINT code
= hdr
->code
;
1337 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
1340 HWND toolTipWnd
= (HWND
)::SendMessage(GetHwnd(), TB_GETTOOLTIPS
, 0, 0);
1341 if ( toolTipWnd
!= hdr
->hwndFrom
)
1344 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
1345 int id
= (int)ttText
->hdr
.idFrom
;
1347 wxToolBarToolBase
*tool
= FindById(id
);
1349 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
1351 wxUnusedVar(lParam
);
1358 // ----------------------------------------------------------------------------
1360 // ----------------------------------------------------------------------------
1362 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
1364 wxToolBarBase::SetToolBitmapSize(size
);
1366 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
1369 void wxToolBar::SetRows(int nRows
)
1371 if ( nRows
== m_maxRows
)
1373 // avoid resizing the frame uselessly
1377 // TRUE in wParam means to create at least as many rows, FALSE -
1380 ::SendMessage(GetHwnd(), TB_SETROWS
,
1381 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
1389 // The button size is bigger than the bitmap size
1390 wxSize
wxToolBar::GetToolSize() const
1392 // TB_GETBUTTONSIZE is supported from version 4.70
1393 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1394 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) \
1395 && !defined (__DIGITALMARS__)
1396 if ( wxApp::GetComCtl32Version() >= 470 )
1398 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1400 return wxSize(LOWORD(dw
), HIWORD(dw
));
1403 #endif // comctl32.dll 4.70+
1406 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1411 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1414 wxToolBarToolsList::compatibility_iterator current
= tools
.GetFirst();
1416 for ( ; current
; current
= current
->GetNext() )
1419 return current
->GetData();
1421 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1422 size_t separators
= tool
->GetSeparatorsCount();
1424 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1425 // otherwise, skip as many items as the separator count, plus the
1427 index
-= separators
? separators
+ 1 : 1;
1433 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1438 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1440 // MBN: when the point ( x, y ) is close to the toolbar border
1441 // TB_HITTEST returns m_nButtons ( not -1 )
1442 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1443 // it's a separator or there is no tool at all there
1446 // when TB_SETBUTTONINFO is available (both during compile- and run-time),
1447 // we don't use the dummy separators hack
1448 #ifdef TB_SETBUTTONINFO
1449 if ( wxApp::GetComCtl32Version() >= 471 )
1451 return m_tools
.Item((size_t)index
)->GetData();
1454 #endif // TB_SETBUTTONINFO
1456 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1460 void wxToolBar::UpdateSize()
1462 wxPoint pos
= GetPosition();
1463 ::SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1464 if (pos
!= GetPosition())
1467 // In case Realize is called after the initial display (IOW the programmer
1468 // may have rebuilt the toolbar) give the frame the option of resizing the
1469 // toolbar to full width again, but only if the parent is a frame and the
1470 // toolbar is managed by the frame. Otherwise assume that some other
1471 // layout mechanism is controlling the toolbar size and leave it alone.
1472 SendSizeEventToParent();
1475 // ----------------------------------------------------------------------------
1477 // ---------------------------------------------------------------------------
1479 // get the TBSTYLE of the given toolbar window
1480 long wxToolBar::GetMSWToolbarStyle() const
1482 return ::SendMessage(GetHwnd(), TB_GETSTYLE
, 0, 0L);
1485 void wxToolBar::SetWindowStyleFlag(long style
)
1487 // the style bits whose changes force us to recreate the toolbar
1488 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1490 const long styleOld
= GetWindowStyle();
1492 wxToolBarBase::SetWindowStyleFlag(style
);
1494 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1495 // also fatal as we'd then try to recreate the toolbar when it's just being
1497 if ( GetToolsCount() &&
1498 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1500 // to remove the text labels, simply re-realizing the toolbar is enough
1501 // but I don't know of any way to add the text to an existing toolbar
1502 // other than by recreating it entirely
1507 // ----------------------------------------------------------------------------
1509 // ----------------------------------------------------------------------------
1511 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1513 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1514 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1517 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1519 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1520 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1523 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1525 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1526 // without, so we really need to delete the button and recreate it here
1527 wxFAIL_MSG( _T("not implemented") );
1530 void wxToolBar::SetToolNormalBitmap( int id
, const wxBitmap
& bitmap
)
1532 wxToolBarTool
* tool
= static_cast<wxToolBarTool
*>(FindById(id
));
1535 wxCHECK_RET( tool
->IsButton(), wxT("Can only set bitmap on button tools."));
1537 tool
->SetNormalBitmap(bitmap
);
1542 void wxToolBar::SetToolDisabledBitmap( int id
, const wxBitmap
& bitmap
)
1544 wxToolBarTool
* tool
= static_cast<wxToolBarTool
*>(FindById(id
));
1547 wxCHECK_RET( tool
->IsButton(), wxT("Can only set bitmap on button tools."));
1549 tool
->SetDisabledBitmap(bitmap
);
1554 // ----------------------------------------------------------------------------
1556 // ----------------------------------------------------------------------------
1558 // Responds to colour changes, and passes event on to children.
1559 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1561 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1563 // Remap the buttons
1566 // Relayout the toolbar
1567 int nrows
= m_maxRows
;
1568 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1573 // let the event propagate further
1577 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1579 if ( event
.Leaving() )
1583 OnMouseEnter(wxID_ANY
);
1591 if ( event
.RightDown() )
1593 // find the tool under the mouse
1594 wxCoord x
= 0, y
= 0;
1595 event
.GetPosition(&x
, &y
);
1597 wxToolBarToolBase
*tool
= FindToolForPosition(x
, y
);
1598 OnRightClick(tool
? tool
->GetId() : -1, x
, y
);
1606 // This handler is required to allow the toolbar to be set to a non-default
1607 // colour: for example, when it must blend in with a notebook page.
1608 void wxToolBar::OnEraseBackground(wxEraseEvent
& event
)
1610 RECT rect
= wxGetClientRect(GetHwnd());
1612 wxDC
*dc
= event
.GetDC();
1614 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
->GetImpl();
1615 HDC hdc
= GetHdcOf(*impl
);
1617 int majorVersion
, minorVersion
;
1618 wxGetOsVersion(& majorVersion
, & minorVersion
);
1621 // we may need to draw themed colour so that we appear correctly on
1622 // e.g. notebook page under XP with themes but only do it if the parent
1623 // draws themed background itself
1624 if ( !UseBgCol() && !GetParent()->UseBgCol() )
1626 wxUxThemeEngine
*theme
= wxUxThemeEngine::GetIfActive();
1630 hr
= theme
->DrawThemeParentBackground(GetHwnd(), hdc
, &rect
);
1634 // it can also return S_FALSE which seems to simply say that it
1635 // didn't draw anything but no error really occurred
1637 wxLogApiError(_T("DrawThemeParentBackground(toolbar)"), hr
);
1641 // Only draw a rebar theme on Vista, since it doesn't jive so well with XP
1642 if ( !UseBgCol() && majorVersion
>= 6 )
1644 wxUxThemeEngine
*theme
= wxUxThemeEngine::GetIfActive();
1647 wxUxThemeHandle
hTheme(this, L
"REBAR");
1650 wxRect rect
= GetClientRect();
1651 wxCopyRectToRECT(rect
, r
);
1653 HRESULT hr
= theme
->DrawThemeBackground(hTheme
, hdc
, 0, 0, & r
, NULL
);
1657 // it can also return S_FALSE which seems to simply say that it
1658 // didn't draw anything but no error really occurred
1660 wxLogApiError(_T("DrawThemeParentBackground(toolbar)"), hr
);
1664 #endif // wxUSE_UXTHEME
1666 // we need to always draw our background under XP, as otherwise it doesn't
1667 // appear correctly with some themes (e.g. Zune one)
1668 if ( majorVersion
== 5 ||
1669 UseBgCol() || (GetMSWToolbarStyle() & TBSTYLE_TRANSPARENT
) )
1671 // do draw our background
1673 // notice that this 'dumb' implementation may cause flicker for some of
1674 // the controls in which case they should intercept wxEraseEvent and
1675 // process it themselves somehow
1676 AutoHBRUSH
hBrush(wxColourToRGB(GetBackgroundColour()));
1678 wxCHANGE_HDC_MAP_MODE(hdc
, MM_TEXT
);
1679 ::FillRect(hdc
, &rect
, hBrush
);
1681 else // we have no non default background colour
1683 // let the system do it for us
1688 bool wxToolBar::HandleSize(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1690 // wait until we have some tools
1691 if ( !GetToolsCount() )
1694 // calculate our minor dimension ourselves - we're confusing the standard
1695 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1696 const RECT r
= wxGetTBItemRect(GetHwnd(), 0);
1704 w
= r
.right
- r
.left
;
1707 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1714 if (HasFlag( wxTB_FLAT
))
1715 h
= r
.bottom
- r
.top
- 3;
1717 h
= r
.bottom
- r
.top
;
1720 // FIXME: hardcoded separator line height...
1721 h
+= HasFlag(wxTB_NODIVIDER
) ? 4 : 6;
1726 if ( MAKELPARAM(w
, h
) != lParam
)
1728 // size really changed
1732 // message processed
1736 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1738 // erase any dummy separators which were used
1739 // for aligning the controls if any here
1741 // first of all, are there any controls at all?
1742 wxToolBarToolsList::compatibility_iterator node
;
1743 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1745 if ( node
->GetData()->IsControl() )
1750 // no controls, nothing to erase
1753 wxSize clientSize
= GetClientSize();
1754 int majorVersion
, minorVersion
;
1755 wxGetOsVersion(& majorVersion
, & minorVersion
);
1757 // prepare the DC on which we'll be drawing
1758 wxClientDC
dc(this);
1759 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1760 dc
.SetPen(*wxTRANSPARENT_PEN
);
1763 if ( !::GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1764 // nothing to redraw anyhow
1768 wxCopyRECTToRect(r
, rectUpdate
);
1770 dc
.SetClippingRegion(rectUpdate
);
1772 // draw the toolbar tools, separators &c normally
1773 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1775 // for each control in the toolbar find all the separators intersecting it
1778 // NB: this is really the only way to do it as we don't know if a separator
1779 // corresponds to a control (i.e. is a dummy one) or a real one
1781 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1783 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
1784 if ( tool
->IsControl() )
1786 // get the control rect in our client coords
1787 wxControl
*control
= tool
->GetControl();
1788 wxStaticText
*staticText
= tool
->GetStaticText();
1789 wxRect rectCtrl
= control
->GetRect();
1790 wxRect
rectStaticText(0,0,0,0);
1793 rectStaticText
= staticText
->GetRect();
1796 // iterate over all buttons
1798 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1799 for ( int n
= 0; n
< count
; n
++ )
1801 // is it a separator?
1802 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1805 wxLogDebug(_T("TB_GETBUTTON failed?"));
1810 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1813 // get the bounding rect of the separator
1814 RECT r
= wxGetTBItemRect(GetHwnd(), n
);
1818 // does it intersect the control?
1820 wxCopyRECTToRect(r
, rectItem
);
1821 if ( rectCtrl
.Intersects(rectItem
) || (staticText
&& rectStaticText
.Intersects(rectItem
)))
1823 // yes, do erase it!
1825 bool haveRefreshed
= false;
1828 if ( !UseBgCol() && !GetParent()->UseBgCol() )
1830 // Don't use DrawThemeBackground
1832 else if ( !UseBgCol() && majorVersion
>= 6 )
1834 wxUxThemeEngine
*theme
= wxUxThemeEngine::GetIfActive();
1837 wxUxThemeHandle
hTheme(this, L
"REBAR");
1841 // Draw the whole background since the pattern may be position sensitive;
1842 // but clip it to the area of interest.
1844 r
.right
= clientSize
.x
;
1846 r
.bottom
= clientSize
.y
;
1848 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
1849 HRESULT hr
= theme
->DrawThemeBackground(hTheme
, GetHdcOf(*impl
), 0, 0, & r
, & clipRect
);
1851 haveRefreshed
= true;
1857 dc
.DrawRectangle(rectItem
);
1860 if ( rectCtrl
.Intersects(rectItem
) )
1862 // Necessary in case we use a no-paint-on-size
1863 // style in the parent: the controls can disappear
1864 control
->Refresh(false);
1867 if ( staticText
&& rectStaticText
.Intersects(rectItem
) )
1869 // Necessary in case we use a no-paint-on-size
1870 // style in the parent: the controls can disappear
1871 staticText
->Refresh(false);
1880 void wxToolBar::HandleMouseMove(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1882 wxCoord x
= GET_X_LPARAM(lParam
),
1883 y
= GET_Y_LPARAM(lParam
);
1884 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1886 // has the current tool changed?
1887 if ( tool
!= m_pInTool
)
1890 OnMouseEnter(tool
? tool
->GetId() : wxID_ANY
);
1894 WXLRESULT
wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1899 // we don't handle mouse moves, so always pass the message to
1900 // wxControl::MSWWindowProc (HandleMouseMove just calls OnMouseEnter)
1901 HandleMouseMove(wParam
, lParam
);
1905 if ( HandleSize(wParam
, lParam
) )
1911 // refreshing the controls in the toolbar inside a composite window
1912 // results in an endless stream of WM_PAINT messages -- and seems
1913 // to be unnecessary anyhow as everything works just fine without
1914 // any special workarounds in this case
1915 if ( !IsDoubleBuffered() && HandlePaint(wParam
, lParam
) )
1918 #endif // __WXWINCE__
1921 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1924 // ----------------------------------------------------------------------------
1925 // private functions
1926 // ----------------------------------------------------------------------------
1928 #ifdef wxREMAP_BUTTON_COLOURS
1930 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1936 wxLogLastError(_T("CreateCompatibleDC"));
1941 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1945 wxLogLastError(_T("SelectObject"));
1950 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1952 for ( int i
= 0; i
< width
; i
++ )
1954 for ( int j
= 0; j
< height
; j
++ )
1956 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1958 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1960 COLORREF col
= cmap
[k
].from
;
1961 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1962 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1963 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1965 if ( cmap
[k
].to
!= pixel
)
1966 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1976 #endif // wxREMAP_BUTTON_COLOURS
1978 #endif // wxUSE_TOOLBAR