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"
49 #include "wx/ptr_scpd.h"
51 #include "wx/msw/private.h"
52 #include "wx/msw/dc.h"
55 #include "wx/msw/uxtheme.h"
58 // this define controls whether the code for button colours remapping (only
59 // useful for 16 or 256 colour images) is active at all, it's always turned off
60 // for CE where it doesn't compile (and is probably not needed anyhow) and may
61 // also be turned off for other systems if you always use 24bpp images and so
64 #define wxREMAP_BUTTON_COLOURS
65 #endif // !__WXWINCE__
67 // ----------------------------------------------------------------------------
69 // ----------------------------------------------------------------------------
71 // these standard constants are not always defined in compilers headers
75 #define TBSTYLE_LIST 0x1000
76 #define TBSTYLE_FLAT 0x0800
79 #ifndef TBSTYLE_TRANSPARENT
80 #define TBSTYLE_TRANSPARENT 0x8000
83 #ifndef TBSTYLE_TOOLTIPS
84 #define TBSTYLE_TOOLTIPS 0x0100
89 #define TB_SETSTYLE (WM_USER + 56)
90 #define TB_GETSTYLE (WM_USER + 57)
94 #define TB_HITTEST (WM_USER + 69)
98 #define TB_GETMAXSIZE (WM_USER + 83)
101 // ----------------------------------------------------------------------------
103 // ----------------------------------------------------------------------------
105 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
117 style ( wxNO_BORDER | wxTB_HORIZONTAL)
126 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
127 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
128 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
129 EVT_ERASE_BACKGROUND(wxToolBar::OnEraseBackground
)
132 // ----------------------------------------------------------------------------
134 // ----------------------------------------------------------------------------
136 class wxToolBarTool
: public wxToolBarToolBase
139 wxToolBarTool(wxToolBar
*tbar
,
141 const wxString
& label
,
142 const wxBitmap
& bmpNormal
,
143 const wxBitmap
& bmpDisabled
,
145 wxObject
*clientData
,
146 const wxString
& shortHelp
,
147 const wxString
& longHelp
)
148 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
149 clientData
, shortHelp
, longHelp
)
155 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
, const wxString
& label
)
156 : wxToolBarToolBase(tbar
, control
, label
)
158 if ( IsControl() && !m_label
.empty() )
160 // create a control to render the control's label
161 m_staticText
= new wxStaticText
168 wxALIGN_CENTRE
| wxST_NO_AUTORESIZE
179 virtual ~wxToolBarTool()
184 virtual void SetLabel(const wxString
& label
)
186 if ( label
== m_label
)
189 wxToolBarToolBase::SetLabel(label
);
192 m_staticText
->SetLabel(label
);
194 // we need to update the label shown in the toolbar because it has a
195 // pointer to the internal buffer of the old label
197 // TODO: use TB_SETBUTTONINFO
200 wxStaticText
* GetStaticText()
202 wxASSERT_MSG( IsControl(),
203 _T("only makes sense for embedded control tools") );
208 // set/get the number of separators which we use to cover the space used by
209 // a control in the toolbar
210 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
211 size_t GetSeparatorsCount() const { return m_nSepCount
; }
215 wxStaticText
*m_staticText
;
217 DECLARE_NO_COPY_CLASS(wxToolBarTool
)
220 // ----------------------------------------------------------------------------
222 // ----------------------------------------------------------------------------
224 // return the rectangle of the item at the given index
226 // returns an empty (0, 0, 0, 0) rectangle if fails so the caller may compare
227 // r.right or r.bottom with 0 to check for this
228 static RECT
wxGetTBItemRect(HWND hwnd
, int index
)
232 // note that we use TB_GETITEMRECT and not TB_GETRECT because the latter
233 // only appeared in v4.70 of comctl32.dll
234 if ( !::SendMessage(hwnd
, TB_GETITEMRECT
, index
, (LPARAM
)&r
) )
236 wxLogLastError(wxT("TB_GETITEMRECT"));
247 // ============================================================================
249 // ============================================================================
251 // ----------------------------------------------------------------------------
253 // ----------------------------------------------------------------------------
255 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
256 const wxString
& label
,
257 const wxBitmap
& bmpNormal
,
258 const wxBitmap
& bmpDisabled
,
260 wxObject
*clientData
,
261 const wxString
& shortHelp
,
262 const wxString
& longHelp
)
264 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
265 clientData
, shortHelp
, longHelp
);
269 wxToolBar::CreateTool(wxControl
*control
, const wxString
& label
)
271 return new wxToolBarTool(this, control
, label
);
274 // ----------------------------------------------------------------------------
275 // wxToolBar construction
276 // ----------------------------------------------------------------------------
278 void wxToolBar::Init()
281 m_disabledImgList
= NULL
;
285 const wxSize size
= wxArtProvider::GetNativeSizeHint(wxART_TOOLBAR
);
286 m_defaultWidth
= size
.x
;
287 m_defaultHeight
= size
.y
;
292 bool wxToolBar::Create(wxWindow
*parent
,
297 const wxString
& name
)
299 // common initialisation
300 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
305 // MSW-specific initialisation
306 if ( !MSWCreateToolbar(pos
, size
) )
309 wxSetCCUnicodeFormat(GetHwnd());
311 // workaround for flat toolbar on Windows XP classic style: we have to set
312 // the style after creating the control; doing it at creation time doesn't work
314 if ( style
& wxTB_FLAT
)
316 LRESULT style
= GetMSWToolbarStyle();
318 if ( !(style
& TBSTYLE_FLAT
) )
319 ::SendMessage(GetHwnd(), TB_SETSTYLE
, 0, style
| TBSTYLE_FLAT
);
321 #endif // wxUSE_UXTHEME
326 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
328 if ( !MSWCreateControl(TOOLBARCLASSNAME
, wxEmptyString
, pos
, size
) )
331 // toolbar-specific post initialisation
332 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
334 #ifdef TB_SETEXTENDEDSTYLE
335 if ( wxApp::GetComCtl32Version() >= 471 )
336 ::SendMessage(GetHwnd(), TB_SETEXTENDEDSTYLE
, 0, TBSTYLE_EX_DRAWDDARROWS
);
342 void wxToolBar::Recreate()
344 const HWND hwndOld
= GetHwnd();
347 // we haven't been created yet, no need to recreate
351 // get the position and size before unsubclassing the old toolbar
352 const wxPoint pos
= GetPosition();
353 const wxSize size
= GetSize();
357 if ( !MSWCreateToolbar(pos
, size
) )
360 wxFAIL_MSG( _T("recreating the toolbar failed") );
365 // reparent all our children under the new toolbar
366 for ( wxWindowList::compatibility_iterator node
= m_children
.GetFirst();
368 node
= node
->GetNext() )
370 wxWindow
*win
= node
->GetData();
371 if ( !win
->IsTopLevel() )
372 ::SetParent(GetHwndOf(win
), GetHwnd());
375 // only destroy the old toolbar now --
376 // after all the children had been reparented
377 ::DestroyWindow(hwndOld
);
379 // it is for the old bitmap control and can't be used with the new one
382 ::DeleteObject((HBITMAP
) m_hBitmap
);
386 if ( m_disabledImgList
)
388 delete m_disabledImgList
;
389 m_disabledImgList
= NULL
;
395 wxToolBar::~wxToolBar()
397 // we must refresh the frame size when the toolbar is deleted but the frame
398 // is not - otherwise toolbar leaves a hole in the place it used to occupy
399 SendSizeEventToParent();
402 ::DeleteObject((HBITMAP
) m_hBitmap
);
404 delete m_disabledImgList
;
407 wxSize
wxToolBar::DoGetBestSize() const
412 if ( !::SendMessage(GetHwnd(), TB_GETMAXSIZE
, 0, (LPARAM
)&size
) )
414 // maybe an old (< 0x400) Windows version? try to approximate the
415 // toolbar size ourselves
416 sizeBest
= GetToolSize();
417 sizeBest
.y
+= 2 * ::GetSystemMetrics(SM_CYBORDER
); // Add borders
418 sizeBest
.x
*= GetToolsCount();
420 // reverse horz and vertical components if necessary
424 sizeBest
.x
= sizeBest
.y
;
428 else // TB_GETMAXSIZE succeeded
430 // but it could still return an incorrect result due to what appears to
431 // be a bug in old comctl32.dll versions which don't handle controls in
432 // the toolbar correctly, so work around it (see SF patch 1902358)
433 if ( !IsVertical() && wxApp::GetComCtl32Version() < 600 )
435 // calculate the toolbar width in alternative way
436 const RECT rcFirst
= wxGetTBItemRect(GetHwnd(), 0);
437 const RECT rcLast
= wxGetTBItemRect(GetHwnd(), GetToolsCount() - 1);
439 const int widthAlt
= rcLast
.right
- rcFirst
.left
;
440 if ( widthAlt
> size
.cx
)
444 sizeBest
.x
= size
.cx
;
445 sizeBest
.y
= size
.cy
;
450 // Without the extra height, DoGetBestSize can report a size that's
451 // smaller than the actual window, causing windows to overlap slightly
452 // in some circumstances, leading to missing borders (especially noticeable
454 if (!(GetWindowStyle() & wxTB_NODIVIDER
))
459 CacheBestSize(sizeBest
);
464 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
466 // toolbars never have border, giving one to them results in broken
468 WXDWORD msStyle
= wxControl::MSWGetStyle
470 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
473 if ( !(style
& wxTB_NO_TOOLTIPS
) )
474 msStyle
|= TBSTYLE_TOOLTIPS
;
476 if ( style
& (wxTB_FLAT
| wxTB_HORZ_LAYOUT
) )
478 // static as it doesn't change during the program lifetime
479 static const int s_verComCtl
= wxApp::GetComCtl32Version();
481 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
482 // style with 6.00 (part of Windows XP) leads to the toolbar with
483 // incorrect background colour - and not using it still results in the
484 // correct (flat) toolbar, so don't use it there
485 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
486 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
488 if ( s_verComCtl
>= 470 && style
& wxTB_HORZ_LAYOUT
)
489 msStyle
|= TBSTYLE_LIST
;
492 if ( style
& wxTB_NODIVIDER
)
493 msStyle
|= CCS_NODIVIDER
;
495 if ( style
& wxTB_NOALIGN
)
496 msStyle
|= CCS_NOPARENTALIGN
;
498 if ( style
& wxTB_VERTICAL
)
501 if( style
& wxTB_BOTTOM
)
502 msStyle
|= CCS_BOTTOM
;
504 if ( style
& wxTB_RIGHT
)
505 msStyle
|= CCS_RIGHT
;
510 // ----------------------------------------------------------------------------
511 // adding/removing tools
512 // ----------------------------------------------------------------------------
514 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
515 wxToolBarToolBase
* WXUNUSED(tool
))
517 // nothing special to do here - we really create the toolbar buttons in
519 InvalidateBestSize();
523 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
525 // the main difficulty we have here is with the controls in the toolbars:
526 // as we (sometimes) use several separators to cover up the space used by
527 // them, the indices are not the same for us and the toolbar
529 // first determine the position of the first button to delete: it may be
530 // different from pos if we use several separators to cover the space used
532 wxToolBarToolsList::compatibility_iterator node
;
533 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
535 wxToolBarToolBase
*tool2
= node
->GetData();
538 // let node point to the next node in the list
539 node
= node
->GetNext();
544 if ( tool2
->IsControl() )
545 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
548 // now determine the number of buttons to delete and the area taken by them
549 size_t nButtonsToDelete
= 1;
551 // get the size of the button we're going to delete
552 const RECT r
= wxGetTBItemRect(GetHwnd(), pos
);
554 int width
= r
.right
- r
.left
;
556 if ( tool
->IsControl() )
558 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
559 width
*= nButtonsToDelete
;
562 // do delete all buttons
563 m_nButtons
-= nButtonsToDelete
;
564 while ( nButtonsToDelete
-- > 0 )
566 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
568 wxLogLastError(wxT("TB_DELETEBUTTON"));
574 // and finally reposition all the controls after this button (the toolbar
575 // takes care of all normal items)
576 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
578 wxToolBarTool
*tool2
= (wxToolBarTool
*)node
->GetData();
579 if ( tool2
->IsControl() )
581 wxControl
* const control
= tool2
->GetControl();
584 control
->GetPosition(&x
, NULL
);
585 control
->Move(x
- width
, wxDefaultCoord
);
587 wxStaticText
* const staticText
= tool2
->GetStaticText();
589 staticText
->Move(x
- width
, wxDefaultCoord
);
593 InvalidateBestSize();
598 void wxToolBar::CreateDisabledImageList()
600 if (m_disabledImgList
!= NULL
)
602 delete m_disabledImgList
;
603 m_disabledImgList
= NULL
;
606 // as we can't use disabled image list with older versions of comctl32.dll,
607 // don't even bother creating it
608 if ( wxApp::GetComCtl32Version() >= 470 )
610 // search for the first disabled button img in the toolbar, if any
611 for ( wxToolBarToolsList::compatibility_iterator
612 node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
614 wxToolBarToolBase
*tool
= node
->GetData();
615 wxBitmap bmpDisabled
= tool
->GetDisabledBitmap();
616 if ( bmpDisabled
.Ok() )
618 m_disabledImgList
= new wxImageList
622 bmpDisabled
.GetMask() != NULL
,
629 // we don't have any disabled bitmaps
633 void wxToolBar::MSWSetBitmapSize(const wxSize
& size
)
635 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
638 void wxToolBar::AdjustToolBitmapSize()
640 // this is the default bitmap size, we only need to call TB_SETBITMAPSIZE
641 // if we use something different
642 static const wxSize
sizeStd(16, 15);
644 wxSize
s(m_defaultWidth
, m_defaultHeight
);
646 for ( wxToolBarToolsList::const_iterator i
= m_tools
.begin();
650 const wxBitmap
& bmp
= (*i
)->GetNormalBitmap();
651 s
.IncTo(bmp
.GetSize());
658 bool wxToolBar::Realize()
660 const size_t nTools
= GetToolsCount();
665 // make sure tool size is larger enough for all all bitmaps to fit in
666 // (this is consistent with what other ports do):
667 AdjustToolBitmapSize();
669 #ifdef wxREMAP_BUTTON_COLOURS
670 // don't change the values of these constants, they can be set from the
671 // user code via wxSystemOptions
680 // the user-specified option overrides anything, but if it wasn't set, only
681 // remap the buttons on 8bpp displays as otherwise the bitmaps usually look
682 // much worse after remapping
683 static const wxChar
*remapOption
= wxT("msw.remap");
684 const int remapValue
= wxSystemOptions::HasOption(remapOption
)
685 ? wxSystemOptions::GetOptionInt(remapOption
)
686 : wxDisplayDepth() <= 8 ? Remap_Buttons
689 #endif // wxREMAP_BUTTON_COLOURS
691 // delete all old buttons, if any
692 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
694 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
696 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
700 // First, add the bitmap: we use one bitmap for all toolbar buttons
701 // ----------------------------------------------------------------
703 wxToolBarToolsList::compatibility_iterator node
;
706 if ( !HasFlag(wxTB_NOICONS
) )
708 // if we already have a bitmap, we'll replace the existing one --
709 // otherwise we'll install a new one
710 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
712 const wxCoord totalBitmapWidth
= m_defaultWidth
*
713 wx_truncate_cast(wxCoord
, nTools
),
714 totalBitmapHeight
= m_defaultHeight
;
716 // Create a bitmap and copy all the tool bitmaps into it
717 wxMemoryDC dcAllButtons
;
718 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
719 dcAllButtons
.SelectObject(bitmap
);
721 #ifdef wxREMAP_BUTTON_COLOURS
722 if ( remapValue
!= Remap_TransparentBg
)
723 #endif // wxREMAP_BUTTON_COLOURS
725 // VZ: why do we hardcode grey colour for CE?
726 dcAllButtons
.SetBackground(wxBrush(
728 wxColour(0xc0, 0xc0, 0xc0)
729 #else // !__WXWINCE__
730 GetBackgroundColour()
731 #endif // __WXWINCE__/!__WXWINCE__
733 dcAllButtons
.Clear();
736 m_hBitmap
= bitmap
.GetHBITMAP();
737 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
739 #ifdef wxREMAP_BUTTON_COLOURS
740 if ( remapValue
== Remap_Bg
)
742 dcAllButtons
.SelectObject(wxNullBitmap
);
744 // Even if we're not remapping the bitmap
745 // content, we still have to remap the background.
746 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
747 totalBitmapWidth
, totalBitmapHeight
);
749 dcAllButtons
.SelectObject(bitmap
);
751 #endif // wxREMAP_BUTTON_COLOURS
753 // the button position
756 // the number of buttons (not separators)
759 CreateDisabledImageList();
760 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
762 wxToolBarToolBase
*tool
= node
->GetData();
763 if ( tool
->IsButton() )
765 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
767 const int w
= bmp
.GetWidth();
768 const int h
= bmp
.GetHeight();
772 int xOffset
= wxMax(0, (m_defaultWidth
- w
)/2);
773 int yOffset
= wxMax(0, (m_defaultHeight
- h
)/2);
775 // notice the last parameter: do use mask
776 dcAllButtons
.DrawBitmap(bmp
, x
+ xOffset
, yOffset
, true);
780 wxFAIL_MSG( _T("invalid tool button bitmap") );
783 // also deal with disabled bitmap if we want to use them
784 if ( m_disabledImgList
)
786 wxBitmap bmpDisabled
= tool
->GetDisabledBitmap();
787 #if wxUSE_IMAGE && wxUSE_WXDIB
788 if ( !bmpDisabled
.Ok() )
790 // no disabled bitmap specified but we still need to
791 // fill the space in the image list with something, so
792 // we grey out the normal bitmap
794 imgGreyed
= bmp
.ConvertToImage().ConvertToGreyscale();
796 #ifdef wxREMAP_BUTTON_COLOURS
797 if ( remapValue
== Remap_Buttons
)
799 // we need to have light grey background colour for
800 // MapBitmap() to work correctly
801 for ( int y
= 0; y
< h
; y
++ )
803 for ( int x
= 0; x
< w
; x
++ )
805 if ( imgGreyed
.IsTransparent(x
, y
) )
806 imgGreyed
.SetRGB(x
, y
,
808 wxLIGHT_GREY
->Green(),
809 wxLIGHT_GREY
->Blue());
813 #endif // wxREMAP_BUTTON_COLOURS
815 bmpDisabled
= wxBitmap(imgGreyed
);
817 #endif // wxUSE_IMAGE
819 #ifdef wxREMAP_BUTTON_COLOURS
820 if ( remapValue
== Remap_Buttons
)
821 MapBitmap(bmpDisabled
.GetHBITMAP(), w
, h
);
822 #endif // wxREMAP_BUTTON_COLOURS
824 m_disabledImgList
->Add(bmpDisabled
);
827 // still inc width and number of buttons because otherwise the
828 // subsequent buttons will all be shifted which is rather confusing
829 // (and like this you'd see immediately which bitmap was bad)
835 dcAllButtons
.SelectObject(wxNullBitmap
);
837 // don't delete this HBITMAP!
838 bitmap
.SetHBITMAP(0);
840 #ifdef wxREMAP_BUTTON_COLOURS
841 if ( remapValue
== Remap_Buttons
)
843 // Map to system colours
844 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
845 totalBitmapWidth
, totalBitmapHeight
);
847 #endif // wxREMAP_BUTTON_COLOURS
849 bool addBitmap
= true;
851 if ( oldToolBarBitmap
)
853 #ifdef TB_REPLACEBITMAP
854 if ( wxApp::GetComCtl32Version() >= 400 )
856 TBREPLACEBITMAP replaceBitmap
;
857 replaceBitmap
.hInstOld
= NULL
;
858 replaceBitmap
.hInstNew
= NULL
;
859 replaceBitmap
.nIDOld
= (UINT_PTR
)oldToolBarBitmap
;
860 replaceBitmap
.nIDNew
= (UINT_PTR
)hBitmap
;
861 replaceBitmap
.nButtons
= nButtons
;
862 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
863 0, (LPARAM
) &replaceBitmap
) )
865 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
868 ::DeleteObject(oldToolBarBitmap
);
874 #endif // TB_REPLACEBITMAP
876 // we can't replace the old bitmap, so we will add another one
877 // (awfully inefficient, but what else to do?) and shift the bitmap
878 // indices accordingly
881 bitmapId
= m_nButtons
;
885 if ( addBitmap
) // no old bitmap or we can't replace it
887 TBADDBITMAP addBitmap
;
889 addBitmap
.nID
= (UINT_PTR
)hBitmap
;
890 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
891 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
893 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
897 // disable image lists are only supported in comctl32.dll 4.70+
898 if ( wxApp::GetComCtl32Version() >= 470 )
900 HIMAGELIST hil
= m_disabledImgList
901 ? GetHimagelistOf(m_disabledImgList
)
904 // notice that we set the image list even if don't have one right
905 // now as we could have it before and need to reset it in this case
906 HIMAGELIST oldImageList
= (HIMAGELIST
)
907 ::SendMessage(GetHwnd(), TB_SETDISABLEDIMAGELIST
, 0, (LPARAM
)hil
);
909 // delete previous image list if any
911 ::DeleteObject(oldImageList
);
916 // Next add the buttons and separators
917 // -----------------------------------
919 wxScopedArray
<TBBUTTON
> buttons(new TBBUTTON
[nTools
]);
921 // this array will hold the indices of all controls in the toolbar
922 wxArrayInt controlIds
;
924 bool lastWasRadio
= false;
926 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
928 wxToolBarToolBase
*tool
= node
->GetData();
930 // don't add separators to the vertical toolbar with old comctl32.dll
931 // versions as they didn't handle this properly
932 if ( IsVertical() && tool
->IsSeparator() &&
933 wxApp::GetComCtl32Version() <= 472 )
938 TBBUTTON
& button
= buttons
[i
];
940 wxZeroMemory(button
);
942 bool isRadio
= false;
943 switch ( tool
->GetStyle() )
945 case wxTOOL_STYLE_CONTROL
:
946 button
.idCommand
= tool
->GetId();
947 // fall through: create just a separator too
949 case wxTOOL_STYLE_SEPARATOR
:
950 button
.fsState
= TBSTATE_ENABLED
;
951 button
.fsStyle
= TBSTYLE_SEP
;
954 case wxTOOL_STYLE_BUTTON
:
955 if ( !HasFlag(wxTB_NOICONS
) )
956 button
.iBitmap
= bitmapId
;
958 if ( HasFlag(wxTB_TEXT
) )
960 const wxString
& label
= tool
->GetLabel();
961 if ( !label
.empty() )
962 button
.iString
= (INT_PTR
)label
.wx_str();
965 button
.idCommand
= tool
->GetId();
967 if ( tool
->IsEnabled() )
968 button
.fsState
|= TBSTATE_ENABLED
;
969 if ( tool
->IsToggled() )
970 button
.fsState
|= TBSTATE_CHECKED
;
972 switch ( tool
->GetKind() )
975 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
979 // the first item in the radio group is checked by
980 // default to be consistent with wxGTK and the menu
982 button
.fsState
|= TBSTATE_CHECKED
;
984 if (tool
->Toggle(true))
986 DoToggleTool(tool
, true);
989 else if ( tool
->IsToggled() )
991 wxToolBarToolsList::compatibility_iterator nodePrev
= node
->GetPrevious();
992 int prevIndex
= i
- 1;
995 TBBUTTON
& prevButton
= buttons
[prevIndex
];
996 wxToolBarToolBase
*tool
= nodePrev
->GetData();
997 if ( !tool
->IsButton() || tool
->GetKind() != wxITEM_RADIO
)
1000 if ( tool
->Toggle(false) )
1001 DoToggleTool(tool
, false);
1003 prevButton
.fsState
&= ~TBSTATE_CHECKED
;
1004 nodePrev
= nodePrev
->GetPrevious();
1013 button
.fsStyle
= TBSTYLE_CHECK
;
1017 button
.fsStyle
= TBSTYLE_BUTTON
;
1020 case wxITEM_DROPDOWN
:
1021 button
.fsStyle
= TBSTYLE_DROPDOWN
;
1025 wxFAIL_MSG( _T("unexpected toolbar button kind") );
1026 button
.fsStyle
= TBSTYLE_BUTTON
;
1034 lastWasRadio
= isRadio
;
1039 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, i
, (LPARAM
)buttons
.get()) )
1041 wxLogLastError(wxT("TB_ADDBUTTONS"));
1045 // Deal with the controls finally
1046 // ------------------------------
1048 // adjust the controls size to fit nicely in the toolbar
1051 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
1053 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
1055 // we calculate the running y coord for vertical toolbars so we need to
1056 // get the items size for all items but for the horizontal ones we
1057 // don't need to deal with the non controls
1058 bool isControl
= tool
->IsControl();
1059 if ( !isControl
&& !IsVertical() )
1062 const RECT r
= wxGetTBItemRect(GetHwnd(), index
);
1065 // can only be control if isVertical
1066 y
+= r
.bottom
- r
.top
;
1071 wxControl
*control
= tool
->GetControl();
1072 wxStaticText
* const staticText
= tool
->GetStaticText();
1074 wxSize size
= control
->GetSize();
1075 wxSize staticTextSize
;
1078 staticTextSize
= staticText
->GetSize();
1079 staticTextSize
.y
+= 3; // margin between control and its label
1082 // the position of the leftmost controls corner
1083 int left
= wxDefaultCoord
;
1085 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
1086 #ifdef TB_SETBUTTONINFO
1087 // available in headers, now check whether it is available now
1088 // (during run-time)
1089 if ( wxApp::GetComCtl32Version() >= 471 )
1091 // set the (underlying) separators width to be that of the
1094 tbbi
.cbSize
= sizeof(tbbi
);
1095 tbbi
.dwMask
= TBIF_SIZE
;
1096 tbbi
.cx
= (WORD
)size
.x
;
1097 if ( !::SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
1098 tool
->GetId(), (LPARAM
)&tbbi
) )
1100 // the id is probably invalid?
1101 wxLogLastError(wxT("TB_SETBUTTONINFO"));
1105 #endif // comctl32.dll 4.71
1106 // TB_SETBUTTONINFO unavailable
1108 // try adding several separators to fit the controls width
1109 int widthSep
= r
.right
- r
.left
;
1115 tbb
.fsState
= TBSTATE_ENABLED
;
1116 tbb
.fsStyle
= TBSTYLE_SEP
;
1118 size_t nSeparators
= size
.x
/ widthSep
;
1119 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
1121 if ( !::SendMessage(GetHwnd(), TB_INSERTBUTTON
,
1122 index
, (LPARAM
)&tbb
) )
1124 wxLogLastError(wxT("TB_INSERTBUTTON"));
1130 // remember the number of separators we used - we'd have to
1131 // delete all of them later
1132 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
1134 // adjust the controls width to exactly cover the separators
1135 size
.x
= (nSeparators
+ 1)*widthSep
;
1136 control
->SetSize(size
.x
, wxDefaultCoord
);
1139 // position the control itself correctly vertically centering it on the
1140 // icon area of the toolbar
1141 int height
= r
.bottom
- r
.top
- staticTextSize
.y
;
1143 int diff
= height
- size
.y
;
1144 if ( diff
< 0 || !HasFlag(wxTB_TEXT
) )
1146 // not enough room for the static text
1150 // recalculate height & diff without the staticText control
1151 height
= r
.bottom
- r
.top
;
1152 diff
= height
- size
.y
;
1155 // the control is too high, resize to fit
1156 control
->SetSize(wxDefaultCoord
, height
- 2);
1161 else // enough space for both the control and the label
1173 y
+= height
+ 2 * GetMargins().y
;
1175 else // horizontal toolbar
1177 if ( left
== wxDefaultCoord
)
1183 control
->Move(left
, top
+ (diff
+ 1) / 2);
1186 staticText
->Move(left
+ (size
.x
- staticTextSize
.x
)/2,
1187 r
.bottom
- staticTextSize
.y
);
1191 // the max index is the "real" number of buttons - i.e. counting even the
1192 // separators which we added just for aligning the controls
1195 if ( !IsVertical() )
1197 if ( m_maxRows
== 0 )
1198 // if not set yet, only one row
1201 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
1203 // if not set yet, have one column
1205 SetRows(m_nButtons
);
1208 InvalidateBestSize();
1214 // ----------------------------------------------------------------------------
1216 // ----------------------------------------------------------------------------
1218 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id_
)
1220 // cast to signed is important as we compare this id with (signed) ints in
1221 // FindById() and without the cast we'd get a positive int from a
1222 // "negative" (i.e. > 32767) WORD
1223 const int id
= (signed short)id_
;
1225 wxToolBarToolBase
*tool
= FindById(id
);
1229 bool toggled
= false; // just to suppress warnings
1231 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
1233 if ( tool
->CanBeToggled() )
1235 toggled
= (state
& TBSTATE_CHECKED
) != 0;
1237 // ignore the event when a radio button is released, as this doesn't
1238 // seem to happen at all, and is handled otherwise
1239 if ( tool
->GetKind() == wxITEM_RADIO
&& !toggled
)
1242 tool
->Toggle(toggled
);
1243 UnToggleRadioGroup(tool
);
1246 // Without the two lines of code below, if the toolbar was repainted during
1247 // OnLeftClick(), then it could end up without the tool bitmap temporarily
1248 // (see http://lists.nongnu.org/archive/html/lmi/2008-10/msg00014.html).
1249 // The Update() call bellow ensures that this won't happen, by repainting
1250 // invalidated areas of the toolbar immediately.
1252 // To complicate matters, the tool would be drawn in depressed state (this
1253 // code is called when mouse button is released, not pressed). That's not
1254 // ideal, having the tool pressed for the duration of OnLeftClick()
1255 // provides the user with useful visual clue that the app is busy reacting
1256 // to the event. So we manually put the tool into pressed state, handle the
1257 // event and then finally restore tool's original state.
1258 ::SendMessage(GetHwnd(), TB_SETSTATE
, id
, MAKELONG(state
| TBSTATE_PRESSED
, 0));
1261 bool allowLeftClick
= OnLeftClick(id
, toggled
);
1263 // Restore the unpressed state. Enabled/toggled state might have been
1264 // changed since so take care of it.
1265 if (tool
->IsEnabled())
1266 state
|= TBSTATE_ENABLED
;
1268 state
&= ~TBSTATE_ENABLED
;
1269 if (tool
->IsToggled())
1270 state
|= TBSTATE_CHECKED
;
1272 state
&= ~TBSTATE_CHECKED
;
1273 ::SendMessage(GetHwnd(), TB_SETSTATE
, id
, MAKELONG(state
, 0));
1275 // OnLeftClick() can veto the button state change - for buttons which
1276 // may be toggled only, of couse
1277 if ( !allowLeftClick
&& tool
->CanBeToggled() )
1280 tool
->Toggle(!toggled
);
1282 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(!toggled
, 0));
1288 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
1290 WXLPARAM
*WXUNUSED(result
))
1292 LPNMHDR hdr
= (LPNMHDR
)lParam
;
1293 if ( hdr
->code
== TBN_DROPDOWN
)
1295 LPNMTOOLBAR tbhdr
= (LPNMTOOLBAR
)lParam
;
1297 wxCommandEvent
evt(wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED
, tbhdr
->iItem
);
1298 if ( HandleWindowEvent(evt
) )
1300 // Event got handled, don't display default popup menu
1304 const wxToolBarToolBase
* const tool
= FindById(tbhdr
->iItem
);
1305 wxCHECK_MSG( tool
, false, _T("drop down message for unknown tool") );
1307 wxMenu
* const menu
= tool
->GetDropdownMenu();
1311 // Display popup menu below button
1312 const RECT r
= wxGetTBItemRect(GetHwnd(), GetToolPos(tbhdr
->iItem
));
1314 PopupMenu(menu
, r
.left
, r
.bottom
);
1320 if( !HasFlag(wxTB_NO_TOOLTIPS
) )
1323 // First check if this applies to us
1325 // the tooltips control created by the toolbar is sometimes Unicode, even
1326 // in an ANSI application - this seems to be a bug in comctl32.dll v5
1327 UINT code
= hdr
->code
;
1328 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
1331 HWND toolTipWnd
= (HWND
)::SendMessage(GetHwnd(), TB_GETTOOLTIPS
, 0, 0);
1332 if ( toolTipWnd
!= hdr
->hwndFrom
)
1335 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
1336 int id
= (int)ttText
->hdr
.idFrom
;
1338 wxToolBarToolBase
*tool
= FindById(id
);
1340 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
1342 wxUnusedVar(lParam
);
1349 // ----------------------------------------------------------------------------
1351 // ----------------------------------------------------------------------------
1353 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
1355 wxToolBarBase::SetToolBitmapSize(size
);
1357 MSWSetBitmapSize(size
);
1360 void wxToolBar::SetRows(int nRows
)
1362 if ( nRows
== m_maxRows
)
1364 // avoid resizing the frame uselessly
1368 // TRUE in wParam means to create at least as many rows, FALSE -
1371 ::SendMessage(GetHwnd(), TB_SETROWS
,
1372 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
1380 // The button size is bigger than the bitmap size
1381 wxSize
wxToolBar::GetToolSize() const
1383 // TB_GETBUTTONSIZE is supported from version 4.70
1384 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1385 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) \
1386 && !defined (__DIGITALMARS__)
1387 if ( wxApp::GetComCtl32Version() >= 470 )
1389 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1391 return wxSize(LOWORD(dw
), HIWORD(dw
));
1394 #endif // comctl32.dll 4.70+
1397 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1402 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1405 wxToolBarToolsList::compatibility_iterator current
= tools
.GetFirst();
1407 for ( ; current
; current
= current
->GetNext() )
1410 return current
->GetData();
1412 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1413 size_t separators
= tool
->GetSeparatorsCount();
1415 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1416 // otherwise, skip as many items as the separator count, plus the
1418 index
-= separators
? separators
+ 1 : 1;
1424 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1429 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1431 // MBN: when the point ( x, y ) is close to the toolbar border
1432 // TB_HITTEST returns m_nButtons ( not -1 )
1433 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1434 // it's a separator or there is no tool at all there
1437 // when TB_SETBUTTONINFO is available (both during compile- and run-time),
1438 // we don't use the dummy separators hack
1439 #ifdef TB_SETBUTTONINFO
1440 if ( wxApp::GetComCtl32Version() >= 471 )
1442 return m_tools
.Item((size_t)index
)->GetData();
1445 #endif // TB_SETBUTTONINFO
1447 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1451 void wxToolBar::UpdateSize()
1453 wxPoint pos
= GetPosition();
1454 ::SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1455 if (pos
!= GetPosition())
1458 // In case Realize is called after the initial display (IOW the programmer
1459 // may have rebuilt the toolbar) give the frame the option of resizing the
1460 // toolbar to full width again, but only if the parent is a frame and the
1461 // toolbar is managed by the frame. Otherwise assume that some other
1462 // layout mechanism is controlling the toolbar size and leave it alone.
1463 SendSizeEventToParent();
1466 // ----------------------------------------------------------------------------
1468 // ---------------------------------------------------------------------------
1470 // get the TBSTYLE of the given toolbar window
1471 long wxToolBar::GetMSWToolbarStyle() const
1473 return ::SendMessage(GetHwnd(), TB_GETSTYLE
, 0, 0L);
1476 void wxToolBar::SetWindowStyleFlag(long style
)
1478 // the style bits whose changes force us to recreate the toolbar
1479 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1481 const long styleOld
= GetWindowStyle();
1483 wxToolBarBase::SetWindowStyleFlag(style
);
1485 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1486 // also fatal as we'd then try to recreate the toolbar when it's just being
1488 if ( GetToolsCount() &&
1489 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1491 // to remove the text labels, simply re-realizing the toolbar is enough
1492 // but I don't know of any way to add the text to an existing toolbar
1493 // other than by recreating it entirely
1498 // ----------------------------------------------------------------------------
1500 // ----------------------------------------------------------------------------
1502 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1504 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1505 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1508 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1510 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1511 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1514 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1516 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1517 // without, so we really need to delete the button and recreate it here
1518 wxFAIL_MSG( _T("not implemented") );
1521 void wxToolBar::SetToolNormalBitmap( int id
, const wxBitmap
& bitmap
)
1523 wxToolBarTool
* tool
= static_cast<wxToolBarTool
*>(FindById(id
));
1526 wxCHECK_RET( tool
->IsButton(), wxT("Can only set bitmap on button tools."));
1528 tool
->SetNormalBitmap(bitmap
);
1533 void wxToolBar::SetToolDisabledBitmap( int id
, const wxBitmap
& bitmap
)
1535 wxToolBarTool
* tool
= static_cast<wxToolBarTool
*>(FindById(id
));
1538 wxCHECK_RET( tool
->IsButton(), wxT("Can only set bitmap on button tools."));
1540 tool
->SetDisabledBitmap(bitmap
);
1545 // ----------------------------------------------------------------------------
1547 // ----------------------------------------------------------------------------
1549 // Responds to colour changes, and passes event on to children.
1550 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1552 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1554 // Remap the buttons
1557 // Relayout the toolbar
1558 int nrows
= m_maxRows
;
1559 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1564 // let the event propagate further
1568 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1570 if ( event
.Leaving() )
1574 OnMouseEnter(wxID_ANY
);
1582 if ( event
.RightDown() )
1584 // find the tool under the mouse
1585 wxCoord x
= 0, y
= 0;
1586 event
.GetPosition(&x
, &y
);
1588 wxToolBarToolBase
*tool
= FindToolForPosition(x
, y
);
1589 OnRightClick(tool
? tool
->GetId() : -1, x
, y
);
1597 // This handler is required to allow the toolbar to be set to a non-default
1598 // colour: for example, when it must blend in with a notebook page.
1599 void wxToolBar::OnEraseBackground(wxEraseEvent
& event
)
1601 RECT rect
= wxGetClientRect(GetHwnd());
1603 wxDC
*dc
= event
.GetDC();
1605 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
->GetImpl();
1606 HDC hdc
= GetHdcOf(*impl
);
1608 int majorVersion
, minorVersion
;
1609 wxGetOsVersion(& majorVersion
, & minorVersion
);
1612 // we may need to draw themed colour so that we appear correctly on
1613 // e.g. notebook page under XP with themes but only do it if the parent
1614 // draws themed background itself
1615 if ( !UseBgCol() && !GetParent()->UseBgCol() )
1617 wxUxThemeEngine
*theme
= wxUxThemeEngine::GetIfActive();
1621 hr
= theme
->DrawThemeParentBackground(GetHwnd(), hdc
, &rect
);
1625 // it can also return S_FALSE which seems to simply say that it
1626 // didn't draw anything but no error really occurred
1628 wxLogApiError(_T("DrawThemeParentBackground(toolbar)"), hr
);
1632 // Only draw a rebar theme on Vista, since it doesn't jive so well with XP
1633 if ( !UseBgCol() && majorVersion
>= 6 )
1635 wxUxThemeEngine
*theme
= wxUxThemeEngine::GetIfActive();
1638 wxUxThemeHandle
hTheme(this, L
"REBAR");
1641 wxRect rect
= GetClientRect();
1642 wxCopyRectToRECT(rect
, r
);
1644 HRESULT hr
= theme
->DrawThemeBackground(hTheme
, hdc
, 0, 0, & r
, NULL
);
1648 // it can also return S_FALSE which seems to simply say that it
1649 // didn't draw anything but no error really occurred
1651 wxLogApiError(_T("DrawThemeParentBackground(toolbar)"), hr
);
1655 #endif // wxUSE_UXTHEME
1657 // we need to always draw our background under XP, as otherwise it doesn't
1658 // appear correctly with some themes (e.g. Zune one)
1659 if ( majorVersion
== 5 ||
1660 UseBgCol() || (GetMSWToolbarStyle() & TBSTYLE_TRANSPARENT
) )
1662 // do draw our background
1664 // notice that this 'dumb' implementation may cause flicker for some of
1665 // the controls in which case they should intercept wxEraseEvent and
1666 // process it themselves somehow
1667 AutoHBRUSH
hBrush(wxColourToRGB(GetBackgroundColour()));
1669 wxCHANGE_HDC_MAP_MODE(hdc
, MM_TEXT
);
1670 ::FillRect(hdc
, &rect
, hBrush
);
1672 else // we have no non default background colour
1674 // let the system do it for us
1679 bool wxToolBar::HandleSize(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1681 // wait until we have some tools
1682 if ( !GetToolsCount() )
1685 // calculate our minor dimension ourselves - we're confusing the standard
1686 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1687 const RECT r
= wxGetTBItemRect(GetHwnd(), 0);
1695 w
= r
.right
- r
.left
;
1698 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1705 if (HasFlag( wxTB_FLAT
))
1706 h
= r
.bottom
- r
.top
- 3;
1708 h
= r
.bottom
- r
.top
;
1711 // FIXME: hardcoded separator line height...
1712 h
+= HasFlag(wxTB_NODIVIDER
) ? 4 : 6;
1717 if ( MAKELPARAM(w
, h
) != lParam
)
1719 // size really changed
1723 // message processed
1727 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1729 // erase any dummy separators which were used
1730 // for aligning the controls if any here
1732 // first of all, are there any controls at all?
1733 wxToolBarToolsList::compatibility_iterator node
;
1734 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1736 if ( node
->GetData()->IsControl() )
1741 // no controls, nothing to erase
1744 wxSize clientSize
= GetClientSize();
1745 int majorVersion
, minorVersion
;
1746 wxGetOsVersion(& majorVersion
, & minorVersion
);
1748 // prepare the DC on which we'll be drawing
1749 wxClientDC
dc(this);
1750 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1751 dc
.SetPen(*wxTRANSPARENT_PEN
);
1754 if ( !::GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1755 // nothing to redraw anyhow
1759 wxCopyRECTToRect(r
, rectUpdate
);
1761 dc
.SetClippingRegion(rectUpdate
);
1763 // draw the toolbar tools, separators &c normally
1764 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1766 // for each control in the toolbar find all the separators intersecting it
1769 // NB: this is really the only way to do it as we don't know if a separator
1770 // corresponds to a control (i.e. is a dummy one) or a real one
1772 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1774 wxToolBarTool
*tool
= (wxToolBarTool
*)node
->GetData();
1775 if ( tool
->IsControl() )
1777 // get the control rect in our client coords
1778 wxControl
*control
= tool
->GetControl();
1779 wxStaticText
*staticText
= tool
->GetStaticText();
1780 wxRect rectCtrl
= control
->GetRect();
1781 wxRect
rectStaticText(0,0,0,0);
1784 rectStaticText
= staticText
->GetRect();
1787 // iterate over all buttons
1789 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1790 for ( int n
= 0; n
< count
; n
++ )
1792 // is it a separator?
1793 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1796 wxLogDebug(_T("TB_GETBUTTON failed?"));
1801 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1804 // get the bounding rect of the separator
1805 RECT r
= wxGetTBItemRect(GetHwnd(), n
);
1809 // does it intersect the control?
1811 wxCopyRECTToRect(r
, rectItem
);
1812 if ( rectCtrl
.Intersects(rectItem
) || (staticText
&& rectStaticText
.Intersects(rectItem
)))
1814 // yes, do erase it!
1816 bool haveRefreshed
= false;
1819 if ( !UseBgCol() && !GetParent()->UseBgCol() )
1821 // Don't use DrawThemeBackground
1823 else if ( !UseBgCol() && majorVersion
>= 6 )
1825 wxUxThemeEngine
*theme
= wxUxThemeEngine::GetIfActive();
1828 wxUxThemeHandle
hTheme(this, L
"REBAR");
1832 // Draw the whole background since the pattern may be position sensitive;
1833 // but clip it to the area of interest.
1835 r
.right
= clientSize
.x
;
1837 r
.bottom
= clientSize
.y
;
1839 wxMSWDCImpl
*impl
= (wxMSWDCImpl
*) dc
.GetImpl();
1840 HRESULT hr
= theme
->DrawThemeBackground(hTheme
, GetHdcOf(*impl
), 0, 0, & r
, & clipRect
);
1842 haveRefreshed
= true;
1848 dc
.DrawRectangle(rectItem
);
1851 if ( rectCtrl
.Intersects(rectItem
) )
1853 // Necessary in case we use a no-paint-on-size
1854 // style in the parent: the controls can disappear
1855 control
->Refresh(false);
1858 if ( staticText
&& rectStaticText
.Intersects(rectItem
) )
1860 // Necessary in case we use a no-paint-on-size
1861 // style in the parent: the controls can disappear
1862 staticText
->Refresh(false);
1871 void wxToolBar::HandleMouseMove(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1873 wxCoord x
= GET_X_LPARAM(lParam
),
1874 y
= GET_Y_LPARAM(lParam
);
1875 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1877 // has the current tool changed?
1878 if ( tool
!= m_pInTool
)
1881 OnMouseEnter(tool
? tool
->GetId() : wxID_ANY
);
1885 WXLRESULT
wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1890 // we don't handle mouse moves, so always pass the message to
1891 // wxControl::MSWWindowProc (HandleMouseMove just calls OnMouseEnter)
1892 HandleMouseMove(wParam
, lParam
);
1896 if ( HandleSize(wParam
, lParam
) )
1902 // refreshing the controls in the toolbar inside a composite window
1903 // results in an endless stream of WM_PAINT messages -- and seems
1904 // to be unnecessary anyhow as everything works just fine without
1905 // any special workarounds in this case
1906 if ( !IsDoubleBuffered() && HandlePaint(wParam
, lParam
) )
1909 #endif // __WXWINCE__
1912 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1915 // ----------------------------------------------------------------------------
1916 // private functions
1917 // ----------------------------------------------------------------------------
1919 #ifdef wxREMAP_BUTTON_COLOURS
1921 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1927 wxLogLastError(_T("CreateCompatibleDC"));
1932 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1936 wxLogLastError(_T("SelectObject"));
1941 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1943 for ( int i
= 0; i
< width
; i
++ )
1945 for ( int j
= 0; j
< height
; j
++ )
1947 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1949 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1951 COLORREF col
= cmap
[k
].from
;
1952 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1953 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1954 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1956 if ( cmap
[k
].to
!= pixel
)
1957 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1967 #endif // wxREMAP_BUTTON_COLOURS
1969 #endif // wxUSE_TOOLBAR