1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/tbar95.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "tbar95.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
35 #include "wx/dynarray.h"
36 #include "wx/settings.h"
37 #include "wx/bitmap.h"
38 #include "wx/dcmemory.h"
39 #include "wx/control.h"
42 #if wxUSE_TOOLBAR && wxUSE_TOOLBAR_NATIVE && !defined(__SMARTPHONE__)
44 #include "wx/toolbar.h"
45 #include "wx/sysopt.h"
48 #include "wx/msw/private.h"
51 #include "wx/msw/uxtheme.h"
54 // include <commctrl.h> "properly"
55 #include "wx/msw/wrapcctl.h"
57 #include "wx/app.h" // for GetComCtl32Version
59 // ----------------------------------------------------------------------------
61 // ----------------------------------------------------------------------------
63 // these standard constants are not always defined in compilers headers
67 #define TBSTYLE_LIST 0x1000
68 #define TBSTYLE_FLAT 0x0800
71 #ifndef TBSTYLE_TRANSPARENT
72 #define TBSTYLE_TRANSPARENT 0x8000
75 #ifndef TBSTYLE_TOOLTIPS
76 #define TBSTYLE_TOOLTIPS 0x0100
81 #define TB_SETSTYLE (WM_USER + 56)
82 #define TB_GETSTYLE (WM_USER + 57)
86 #define TB_HITTEST (WM_USER + 69)
90 #define TB_GETMAXSIZE (WM_USER + 83)
93 // these values correspond to those used by comctl32.dll
94 #define DEFAULTBITMAPX 16
95 #define DEFAULTBITMAPY 15
96 #define DEFAULTBUTTONX 24
97 #define DEFAULTBUTTONY 24
98 #define DEFAULTBARHEIGHT 27
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
)
153 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
154 : wxToolBarToolBase(tbar
, control
)
159 virtual void SetLabel(const wxString
& label
)
161 if ( label
== m_label
)
164 wxToolBarToolBase::SetLabel(label
);
166 // we need to update the label shown in the toolbar because it has a
167 // pointer to the internal buffer of the old label
169 // TODO: use TB_SETBUTTONINFO
172 // set/get the number of separators which we use to cover the space used by
173 // a control in the toolbar
174 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
175 size_t GetSeparatorsCount() const { return m_nSepCount
; }
180 DECLARE_NO_COPY_CLASS(wxToolBarTool
)
184 // ============================================================================
186 // ============================================================================
188 // ----------------------------------------------------------------------------
190 // ----------------------------------------------------------------------------
192 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
193 const wxString
& label
,
194 const wxBitmap
& bmpNormal
,
195 const wxBitmap
& bmpDisabled
,
197 wxObject
*clientData
,
198 const wxString
& shortHelp
,
199 const wxString
& longHelp
)
201 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
202 clientData
, shortHelp
, longHelp
);
205 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
207 return new wxToolBarTool(this, control
);
210 // ----------------------------------------------------------------------------
211 // wxToolBar construction
212 // ----------------------------------------------------------------------------
214 void wxToolBar::Init()
217 m_disabledImgList
= NULL
;
221 m_defaultWidth
= DEFAULTBITMAPX
;
222 m_defaultHeight
= DEFAULTBITMAPY
;
227 bool wxToolBar::Create(wxWindow
*parent
,
232 const wxString
& name
)
234 // common initialisation
235 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
238 // MSW-specific initialisation
239 if ( !MSWCreateToolbar(pos
, size
) )
242 wxSetCCUnicodeFormat(GetHwnd());
244 // set up the colors and fonts
245 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
246 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
248 // workaround for flat toolbar on Windows XP classic style
250 if ( style
& wxTB_FLAT
)
252 wxUxThemeEngine
*p
= wxUxThemeEngine::Get();
253 if ( !p
|| !p
->IsThemeActive() )
255 DWORD dwToolbarStyle
;
257 dwToolbarStyle
= (DWORD
)::SendMessage(GetHwnd(), TB_GETSTYLE
, 0, 0L );
259 if ((dwToolbarStyle
& TBSTYLE_FLAT
) == 0)
261 dwToolbarStyle
|= TBSTYLE_FLAT
;
262 ::SendMessage(GetHwnd(), TB_SETSTYLE
, 0, (LPARAM
)dwToolbarStyle
);
271 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
273 if ( !MSWCreateControl(TOOLBARCLASSNAME
, wxEmptyString
, pos
, size
) )
276 // toolbar-specific post initialisation
277 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
282 void wxToolBar::Recreate()
284 const HWND hwndOld
= GetHwnd();
287 // we haven't been created yet, no need to recreate
291 // get the position and size before unsubclassing the old toolbar
292 const wxPoint pos
= GetPosition();
293 const wxSize size
= GetSize();
297 if ( !MSWCreateToolbar(pos
, size
) )
300 wxFAIL_MSG( _T("recreating the toolbar failed") );
305 // reparent all our children under the new toolbar
306 for ( wxWindowList::compatibility_iterator node
= m_children
.GetFirst();
308 node
= node
->GetNext() )
310 wxWindow
*win
= node
->GetData();
311 if ( !win
->IsTopLevel() )
312 ::SetParent(GetHwndOf(win
), GetHwnd());
315 // only destroy the old toolbar now -- after all the children had been
317 ::DestroyWindow(hwndOld
);
319 // it is for the old bitmap control and can't be used with the new one
322 ::DeleteObject((HBITMAP
) m_hBitmap
);
326 if ( m_disabledImgList
)
328 delete m_disabledImgList
;
329 m_disabledImgList
= NULL
;
336 wxToolBar::~wxToolBar()
338 // we must refresh the frame size when the toolbar is deleted but the frame
339 // is not - otherwise toolbar leaves a hole in the place it used to occupy
340 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
341 if ( frame
&& !frame
->IsBeingDeleted() )
343 frame
->SendSizeEvent();
348 ::DeleteObject((HBITMAP
) m_hBitmap
);
351 delete m_disabledImgList
;
354 wxSize
wxToolBar::DoGetBestSize() const
359 if ( !::SendMessage(GetHwnd(), TB_GETMAXSIZE
, 0, (LPARAM
)&size
) )
361 // maybe an old (< 0x400) Windows version? try to approximate the
362 // toolbar size ourselves
363 sizeBest
= GetToolSize();
364 sizeBest
.y
+= 2 * ::GetSystemMetrics(SM_CYBORDER
); // Add borders
365 sizeBest
.x
*= GetToolsCount();
367 // reverse horz and vertical components if necessary
368 if ( HasFlag(wxTB_VERTICAL
) )
371 sizeBest
.x
= sizeBest
.y
;
377 sizeBest
.x
= size
.cx
;
378 sizeBest
.y
= size
.cy
;
384 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
386 // toolbars never have border, giving one to them results in broken
388 WXDWORD msStyle
= wxControl::MSWGetStyle
390 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
393 // always include this one, it never hurts and setting it later only if we
394 // do have tooltips wouldn't work
395 msStyle
|= TBSTYLE_TOOLTIPS
;
397 if ( style
& (wxTB_FLAT
| wxTB_HORZ_LAYOUT
) )
399 // static as it doesn't change during the program lifetime
400 static int s_verComCtl
= wxTheApp
->GetComCtl32Version();
402 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
403 // style with 6.00 (part of Windows XP) leads to the toolbar with
404 // incorrect background colour - and not using it still results in the
405 // correct (flat) toolbar, so don't use it there
406 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
408 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
411 if ( s_verComCtl
>= 470 && style
& wxTB_HORZ_LAYOUT
)
413 msStyle
|= TBSTYLE_LIST
;
417 if ( style
& wxTB_NODIVIDER
)
418 msStyle
|= CCS_NODIVIDER
;
420 if ( style
& wxTB_NOALIGN
)
421 msStyle
|= CCS_NOPARENTALIGN
;
423 if ( style
& wxTB_VERTICAL
)
429 // ----------------------------------------------------------------------------
430 // adding/removing tools
431 // ----------------------------------------------------------------------------
433 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
435 // nothing special to do here - we really create the toolbar buttons in
439 InvalidateBestSize();
443 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
445 // the main difficulty we have here is with the controls in the toolbars:
446 // as we (sometimes) use several separators to cover up the space used by
447 // them, the indices are not the same for us and the toolbar
449 // first determine the position of the first button to delete: it may be
450 // different from pos if we use several separators to cover the space used
452 wxToolBarToolsList::compatibility_iterator node
;
453 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
455 wxToolBarToolBase
*tool2
= node
->GetData();
458 // let node point to the next node in the list
459 node
= node
->GetNext();
464 if ( tool2
->IsControl() )
466 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
470 // now determine the number of buttons to delete and the area taken by them
471 size_t nButtonsToDelete
= 1;
473 // get the size of the button we're going to delete
475 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
477 wxLogLastError(_T("TB_GETITEMRECT"));
480 int width
= r
.right
- r
.left
;
482 if ( tool
->IsControl() )
484 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
486 width
*= nButtonsToDelete
;
489 // do delete all buttons
490 m_nButtons
-= nButtonsToDelete
;
491 while ( nButtonsToDelete
-- > 0 )
493 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
495 wxLogLastError(wxT("TB_DELETEBUTTON"));
503 // and finally reposition all the controls after this button (the toolbar
504 // takes care of all normal items)
505 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
507 wxToolBarToolBase
*tool2
= node
->GetData();
508 if ( tool2
->IsControl() )
511 wxControl
*control
= tool2
->GetControl();
512 control
->GetPosition(&x
, NULL
);
513 control
->Move(x
- width
, wxDefaultCoord
);
517 InvalidateBestSize();
521 void wxToolBar::CreateDisabledImageList()
523 // as we can't use disabled image list with older versions of comctl32.dll,
524 // don't even bother creating it
525 if ( wxTheApp
->GetComCtl32Version() >= 470 )
527 // search for the first disabled button img in the toolbar, if any
528 for ( wxToolBarToolsList::compatibility_iterator
529 node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
531 wxToolBarToolBase
*tool
= node
->GetData();
532 wxBitmap bmpDisabled
= tool
->GetDisabledBitmap();
533 if ( bmpDisabled
.Ok() )
535 m_disabledImgList
= new wxImageList
539 bmpDisabled
.GetMask() != NULL
,
546 // we don't have any disabled bitmaps
549 m_disabledImgList
= NULL
;
552 bool wxToolBar::Realize()
554 const size_t nTools
= GetToolsCount();
561 const bool isVertical
= HasFlag(wxTB_VERTICAL
);
563 bool doRemap
, doRemapBg
, doTransparent
;
567 doTransparent
= false;
569 if (wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 2)
571 doRemapBg
= doRemap
= false;
572 doTransparent
= true;
575 { doRemap
= !wxSystemOptions::HasOption(wxT("msw.remap"))
576 || wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 1;
577 doRemapBg
= !doRemap
;
578 doTransparent
= false;
582 // delete all old buttons, if any
583 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
585 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
587 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
591 // First, add the bitmap: we use one bitmap for all toolbar buttons
592 // ----------------------------------------------------------------
594 wxToolBarToolsList::compatibility_iterator node
;
598 if ( HasFlag(wxTB_NOICONS
) )
600 // no icons, don't leave space for them
604 else // do show icons
606 // if we already have a bitmap, we'll replace the existing one --
607 // otherwise we'll install a new one
608 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
610 sizeBmp
.x
= m_defaultWidth
;
611 sizeBmp
.y
= m_defaultHeight
;
613 const wxCoord totalBitmapWidth
= m_defaultWidth
* nTools
,
614 totalBitmapHeight
= m_defaultHeight
;
616 // Create a bitmap and copy all the tool bitmaps to it
617 wxMemoryDC dcAllButtons
;
618 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
619 dcAllButtons
.SelectObject(bitmap
);
621 dcAllButtons
.SetBackground(wxBrush(wxColour(192,192,192)));
624 dcAllButtons
.SetBackground(*wxTRANSPARENT_BRUSH
);
626 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
628 dcAllButtons
.Clear();
630 m_hBitmap
= bitmap
.GetHBITMAP();
631 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
636 dcAllButtons
.SelectObject(wxNullBitmap
);
638 // Even if we're not remapping the bitmap
639 // content, we still have to remap the background.
640 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
641 totalBitmapWidth
, totalBitmapHeight
);
643 dcAllButtons
.SelectObject(bitmap
);
647 #endif // !__WXWINCE__
649 // the button position
652 // the number of buttons (not separators)
655 CreateDisabledImageList();
656 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
658 wxToolBarToolBase
*tool
= node
->GetData();
659 if ( tool
->IsButton() )
661 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
664 int xOffset
= wxMax(0, (m_defaultWidth
- bmp
.GetWidth())/2);
665 int yOffset
= wxMax(0, (m_defaultHeight
- bmp
.GetHeight())/2);
666 // notice the last parameter: do use mask
667 dcAllButtons
.DrawBitmap(bmp
, x
+xOffset
, yOffset
, true);
671 wxFAIL_MSG( _T("invalid tool button bitmap") );
674 // also deal with disabled bitmap if we want to use them
675 if ( m_disabledImgList
)
677 wxBitmap bmpDisabled
= tool
->GetDisabledBitmap();
678 if ( !bmpDisabled
.Ok() )
681 // no disabled bitmap specified but we still need to
682 // fill the space in the image list with something, so
683 // we grey out the normal bitmap
684 wxImage img
= bmp
.ConvertToImage();
686 img
.SetMaskColour(wxLIGHT_GREY
->Red(),
687 wxLIGHT_GREY
->Green(),
688 wxLIGHT_GREY
->Blue());
691 wxCreateGreyedImage(img
, imgGreyed
);
693 bmpDisabled
= wxBitmap(imgGreyed
);
695 bmpDisabled
.SetMask(new wxMask(bmpDisabled
, *wxLIGHT_GREY
));
697 MapBitmap(bmpDisabled
.GetHBITMAP(),
698 bmpDisabled
.GetWidth(),
699 bmpDisabled
.GetHeight());
701 #endif // wxUSE_IMAGE
704 m_disabledImgList
->Add(bmpDisabled
);
707 // still inc width and number of buttons because otherwise the
708 // subsequent buttons will all be shifted which is rather confusing
709 // (and like this you'd see immediately which bitmap was bad)
715 dcAllButtons
.SelectObject(wxNullBitmap
);
717 // don't delete this HBITMAP!
718 bitmap
.SetHBITMAP(0);
722 // Map to system colours
723 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
724 totalBitmapWidth
, totalBitmapHeight
);
729 bool addBitmap
= true;
731 if ( oldToolBarBitmap
)
733 #ifdef TB_REPLACEBITMAP
734 if ( wxTheApp
->GetComCtl32Version() >= 400 )
736 TBREPLACEBITMAP replaceBitmap
;
737 replaceBitmap
.hInstOld
= NULL
;
738 replaceBitmap
.hInstNew
= NULL
;
739 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
740 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
741 replaceBitmap
.nButtons
= nButtons
;
742 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
743 0, (LPARAM
) &replaceBitmap
) )
745 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
748 ::DeleteObject(oldToolBarBitmap
);
754 #endif // TB_REPLACEBITMAP
756 // we can't replace the old bitmap, so we will add another one
757 // (awfully inefficient, but what else to do?) and shift the bitmap
758 // indices accordingly
761 bitmapId
= m_nButtons
;
765 if ( addBitmap
) // no old bitmap or we can't replace it
767 TBADDBITMAP addBitmap
;
769 addBitmap
.nID
= (UINT
) hBitmap
;
770 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
771 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
773 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
777 if ( m_disabledImgList
)
779 HIMAGELIST oldImageList
= (HIMAGELIST
)
780 ::SendMessage(GetHwnd(),
781 TB_SETDISABLEDIMAGELIST
,
783 (LPARAM
)GetHimagelistOf(m_disabledImgList
));
785 // delete previous image list if any
787 ::DeleteObject( oldImageList
);
791 // don't call SetToolBitmapSize() as we don't want to change the values of
792 // m_defaultWidth/Height
793 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
794 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
796 wxLogLastError(_T("TB_SETBITMAPSIZE"));
799 // Next add the buttons and separators
800 // -----------------------------------
802 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
804 // this array will hold the indices of all controls in the toolbar
805 wxArrayInt controlIds
;
807 bool lastWasRadio
= false;
809 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
811 wxToolBarToolBase
*tool
= node
->GetData();
813 // don't add separators to the vertical toolbar with old comctl32.dll
814 // versions as they didn't handle this properly
815 if ( isVertical
&& tool
->IsSeparator() &&
816 wxTheApp
->GetComCtl32Version() <= 472 )
822 TBBUTTON
& button
= buttons
[i
];
824 wxZeroMemory(button
);
826 bool isRadio
= false;
827 switch ( tool
->GetStyle() )
829 case wxTOOL_STYLE_CONTROL
:
830 button
.idCommand
= tool
->GetId();
831 // fall through: create just a separator too
833 case wxTOOL_STYLE_SEPARATOR
:
834 button
.fsState
= TBSTATE_ENABLED
;
835 button
.fsStyle
= TBSTYLE_SEP
;
838 case wxTOOL_STYLE_BUTTON
:
839 if ( !HasFlag(wxTB_NOICONS
) )
840 button
.iBitmap
= bitmapId
;
842 if ( HasFlag(wxTB_TEXT
) )
844 const wxString
& label
= tool
->GetLabel();
845 if ( !label
.empty() )
847 button
.iString
= (int)label
.c_str();
851 button
.idCommand
= tool
->GetId();
853 if ( tool
->IsEnabled() )
854 button
.fsState
|= TBSTATE_ENABLED
;
855 if ( tool
->IsToggled() )
856 button
.fsState
|= TBSTATE_CHECKED
;
858 switch ( tool
->GetKind() )
861 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
865 // the first item in the radio group is checked by
866 // default to be consistent with wxGTK and the menu
868 button
.fsState
|= TBSTATE_CHECKED
;
877 button
.fsStyle
= TBSTYLE_CHECK
;
881 wxFAIL_MSG( _T("unexpected toolbar button kind") );
885 button
.fsStyle
= TBSTYLE_BUTTON
;
892 lastWasRadio
= isRadio
;
897 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
899 wxLogLastError(wxT("TB_ADDBUTTONS"));
904 // Deal with the controls finally
905 // ------------------------------
907 // adjust the controls size to fit nicely in the toolbar
910 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
912 wxToolBarToolBase
*tool
= node
->GetData();
914 // we calculate the running y coord for vertical toolbars so we need to
915 // get the items size for all items but for the horizontal ones we
916 // don't need to deal with the non controls
917 bool isControl
= tool
->IsControl();
918 if ( !isControl
&& !isVertical
)
921 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
922 // latter only appeared in v4.70 of comctl32.dll
924 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
925 index
, (LPARAM
)(LPRECT
)&r
) )
927 wxLogLastError(wxT("TB_GETITEMRECT"));
932 // can only be control if isVertical
933 y
+= r
.bottom
- r
.top
;
938 wxControl
*control
= tool
->GetControl();
940 wxSize size
= control
->GetSize();
942 // the position of the leftmost controls corner
943 int left
= wxDefaultCoord
;
945 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
946 #ifdef TB_SETBUTTONINFO
947 // available in headers, now check whether it is available now
949 if ( wxTheApp
->GetComCtl32Version() >= 471 )
951 // set the (underlying) separators width to be that of the
954 tbbi
.cbSize
= sizeof(tbbi
);
955 tbbi
.dwMask
= TBIF_SIZE
;
956 tbbi
.cx
= (WORD
)size
.x
;
957 if ( !::SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
958 tool
->GetId(), (LPARAM
)&tbbi
) )
960 // the id is probably invalid?
961 wxLogLastError(wxT("TB_SETBUTTONINFO"));
965 #endif // comctl32.dll 4.71
966 // TB_SETBUTTONINFO unavailable
968 // try adding several separators to fit the controls width
969 int widthSep
= r
.right
- r
.left
;
975 tbb
.fsState
= TBSTATE_ENABLED
;
976 tbb
.fsStyle
= TBSTYLE_SEP
;
978 size_t nSeparators
= size
.x
/ widthSep
;
979 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
981 if ( !::SendMessage(GetHwnd(), TB_INSERTBUTTON
,
982 index
, (LPARAM
)&tbb
) )
984 wxLogLastError(wxT("TB_INSERTBUTTON"));
990 // remember the number of separators we used - we'd have to
991 // delete all of them later
992 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
994 // adjust the controls width to exactly cover the separators
995 control
->SetSize((nSeparators
+ 1)*widthSep
, wxDefaultCoord
);
998 // position the control itself correctly vertically
999 int height
= r
.bottom
- r
.top
;
1000 int diff
= height
- size
.y
;
1003 // the control is too high, resize to fit
1004 control
->SetSize(wxDefaultCoord
, height
- 2);
1015 y
+= height
+ 2*GetMargins().y
;
1017 else // horizontal toolbar
1019 if ( left
== wxDefaultCoord
)
1025 control
->Move(left
, top
+ (diff
+ 1) / 2);
1028 // the max index is the "real" number of buttons - i.e. counting even the
1029 // separators which we added just for aligning the controls
1034 if ( m_maxRows
== 0 )
1036 // if not set yet, only one row
1040 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
1042 if ( m_maxRows
== 0 )
1044 // if not set yet, have one column
1045 SetRows(m_nButtons
);
1049 InvalidateBestSize();
1053 // ----------------------------------------------------------------------------
1055 // ----------------------------------------------------------------------------
1057 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
1059 wxToolBarToolBase
*tool
= FindById((int)id
);
1063 bool toggled
= false; // just to suppress warnings
1065 if ( tool
->CanBeToggled() )
1067 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
1068 toggled
= (state
& TBSTATE_CHECKED
) != 0;
1070 // ignore the event when a radio button is released, as this doesn't
1071 // seem to happen at all, and is handled otherwise
1072 if ( tool
->GetKind() == wxITEM_RADIO
&& !toggled
)
1075 tool
->Toggle(toggled
);
1076 UnToggleRadioGroup(tool
);
1079 // OnLeftClick() can veto the button state change - for buttons which
1080 // may be toggled only, of couse
1081 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
1084 tool
->Toggle(!toggled
);
1086 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(!toggled
, 0));
1092 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
1094 WXLPARAM
*WXUNUSED(result
))
1097 // First check if this applies to us
1098 NMHDR
*hdr
= (NMHDR
*)lParam
;
1100 // the tooltips control created by the toolbar is sometimes Unicode, even
1101 // in an ANSI application - this seems to be a bug in comctl32.dll v5
1102 UINT code
= hdr
->code
;
1103 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
1106 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
1107 if ( toolTipWnd
!= hdr
->hwndFrom
)
1110 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
1111 int id
= (int)ttText
->hdr
.idFrom
;
1113 wxToolBarToolBase
*tool
= FindById(id
);
1117 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
1119 wxUnusedVar(lParam
);
1125 // ----------------------------------------------------------------------------
1127 // ----------------------------------------------------------------------------
1129 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
1131 wxToolBarBase::SetToolBitmapSize(size
);
1133 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
1136 void wxToolBar::SetRows(int nRows
)
1138 if ( nRows
== m_maxRows
)
1140 // avoid resizing the frame uselessly
1144 // TRUE in wParam means to create at least as many rows, FALSE -
1147 ::SendMessage(GetHwnd(), TB_SETROWS
,
1148 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
1156 // The button size is bigger than the bitmap size
1157 wxSize
wxToolBar::GetToolSize() const
1159 // TB_GETBUTTONSIZE is supported from version 4.70
1160 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1161 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) \
1162 && !defined (__DIGITALMARS__)
1163 if ( wxTheApp
->GetComCtl32Version() >= 470 )
1165 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1167 return wxSize(LOWORD(dw
), HIWORD(dw
));
1170 #endif // comctl32.dll 4.70+
1173 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1178 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1181 wxToolBarToolsList::compatibility_iterator current
= tools
.GetFirst();
1183 for ( ; current
; current
= current
->GetNext() )
1186 return current
->GetData();
1188 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1189 size_t separators
= tool
->GetSeparatorsCount();
1191 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1192 // otherwise, skip as many items as the separator count, plus the
1194 index
-= separators
? separators
+ 1 : 1;
1200 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1205 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1206 // MBN: when the point ( x, y ) is close to the toolbar border
1207 // TB_HITTEST returns m_nButtons ( not -1 )
1208 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1210 // it's a separator or there is no tool at all there
1211 return (wxToolBarToolBase
*)NULL
;
1214 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1215 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1216 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1218 return m_tools
.Item((size_t)index
)->GetData();
1223 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1227 void wxToolBar::UpdateSize()
1229 // the toolbar size changed
1230 ::SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1232 // we must also refresh the frame after the toolbar size (possibly) changed
1233 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1236 frame
->SendSizeEvent();
1240 // ----------------------------------------------------------------------------
1242 // ---------------------------------------------------------------------------
1244 void wxToolBar::SetWindowStyleFlag(long style
)
1246 // the style bits whose changes force us to recreate the toolbar
1247 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1249 const long styleOld
= GetWindowStyle();
1251 wxToolBarBase::SetWindowStyleFlag(style
);
1253 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1254 // also fatal as we'd then try to recreate the toolbar when it's just being
1256 if ( GetToolsCount() &&
1257 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1259 // to remove the text labels, simply re-realizing the toolbar is enough
1260 // but I don't know of any way to add the text to an existing toolbar
1261 // other than by recreating it entirely
1266 // ----------------------------------------------------------------------------
1268 // ----------------------------------------------------------------------------
1270 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1272 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1273 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1276 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1278 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1279 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1282 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1284 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1285 // without, so we really need to delete the button and recreate it here
1286 wxFAIL_MSG( _T("not implemented") );
1289 // ----------------------------------------------------------------------------
1291 // ----------------------------------------------------------------------------
1293 // Responds to colour changes, and passes event on to children.
1294 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1296 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1298 // Remap the buttons
1301 // Relayout the toolbar
1302 int nrows
= m_maxRows
;
1303 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1308 // let the event propagate further
1312 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1314 if (event
.Leaving() && m_pInTool
)
1321 if ( event
.RightDown() )
1323 // find the tool under the mouse
1325 event
.GetPosition(&x
, &y
);
1327 wxToolBarToolBase
*tool
= FindToolForPosition(x
, y
);
1328 OnRightClick(tool
? tool
->GetId() : -1, x
, y
);
1336 // This handler is required to allow the toolbar to be set to a non-default
1337 // colour: for example, when it must blend in with a notebook page.
1338 void wxToolBar::OnEraseBackground(wxEraseEvent
& event
)
1340 wxColour bgCol
= GetBackgroundColour();
1347 // notice that this 'dumb' implementation may cause flicker for some of the
1348 // controls in which case they should intercept wxEraseEvent and process it
1349 // themselves somehow
1352 ::GetClientRect(GetHwnd(), &rect
);
1354 HBRUSH hBrush
= ::CreateSolidBrush(wxColourToRGB(bgCol
));
1356 HDC hdc
= GetHdcOf((*event
.GetDC()));
1359 int mode
= ::SetMapMode(hdc
, MM_TEXT
);
1362 ::FillRect(hdc
, &rect
, hBrush
);
1363 ::DeleteObject(hBrush
);
1366 ::SetMapMode(hdc
, mode
);
1370 bool wxToolBar::HandleSize(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1372 // calculate our minor dimension ourselves - we're confusing the standard
1373 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1375 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1379 if ( GetWindowStyle() & wxTB_VERTICAL
)
1381 w
= r
.right
- r
.left
;
1384 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1391 if (HasFlag( wxTB_FLAT
))
1392 h
= r
.bottom
- r
.top
- 3;
1394 h
= r
.bottom
- r
.top
;
1397 // FIXME: hardcoded separator line height...
1398 h
+= HasFlag(wxTB_NODIVIDER
) ? 4 : 6;
1403 if ( MAKELPARAM(w
, h
) != lParam
)
1405 // size really changed
1409 // message processed
1416 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1418 // erase any dummy separators which we used for aligning the controls if
1421 // first of all, do we have any controls at all?
1422 wxToolBarToolsList::compatibility_iterator node
;
1423 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1425 if ( node
->GetData()->IsControl() )
1431 // no controls, nothing to erase
1435 // prepare the DC on which we'll be drawing
1436 wxClientDC
dc(this);
1437 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1438 dc
.SetPen(*wxTRANSPARENT_PEN
);
1441 if ( !::GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1443 // nothing to redraw anyhow
1448 wxCopyRECTToRect(r
, rectUpdate
);
1450 dc
.SetClippingRegion(rectUpdate
);
1452 // draw the toolbar tools, separators &c normally
1453 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1455 // for each control in the toolbar find all the separators intersecting it
1458 // NB: this is really the only way to do it as we don't know if a separator
1459 // corresponds to a control (i.e. is a dummy one) or a real one
1461 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1463 wxToolBarToolBase
*tool
= node
->GetData();
1464 if ( tool
->IsControl() )
1466 // get the control rect in our client coords
1467 wxControl
*control
= tool
->GetControl();
1468 wxRect rectCtrl
= control
->GetRect();
1470 // iterate over all buttons
1472 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1473 for ( int n
= 0; n
< count
; n
++ )
1475 // is it a separator?
1476 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1479 wxLogDebug(_T("TB_GETBUTTON failed?"));
1484 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1487 // get the bounding rect of the separator
1489 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1492 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1497 // does it intersect the control?
1499 wxCopyRECTToRect(r
, rectItem
);
1500 if ( rectCtrl
.Intersects(rectItem
) )
1502 // yes, do erase it!
1503 dc
.DrawRectangle(rectItem
);
1505 // Necessary in case we use a no-paint-on-size
1506 // style in the parent: the controls can disappear
1507 control
->Refresh(false);
1516 void wxToolBar::HandleMouseMove(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1518 wxCoord x
= GET_X_LPARAM(lParam
),
1519 y
= GET_Y_LPARAM(lParam
);
1520 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1522 // cursor left current tool
1523 if( tool
!= m_pInTool
&& !tool
)
1529 // cursor entered a tool
1530 if( tool
!= m_pInTool
&& tool
)
1533 OnMouseEnter( tool
->GetId() );
1537 WXLRESULT
wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1542 // we don't handle mouse moves, so always pass the message to
1543 // wxControl::MSWWindowProc (HandleMouseMove just calls OnMouseEnter)
1544 HandleMouseMove(wParam
, lParam
);
1548 if ( HandleSize(wParam
, lParam
) )
1554 if ( HandlePaint(wParam
, lParam
) )
1559 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1562 // ----------------------------------------------------------------------------
1563 // private functions
1564 // ----------------------------------------------------------------------------
1566 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1572 wxLogLastError(_T("CreateCompatibleDC"));
1577 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1581 wxLogLastError(_T("SelectObject"));
1586 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1588 for ( int i
= 0; i
< width
; i
++ )
1590 for ( int j
= 0; j
< height
; j
++ )
1592 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1594 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1596 COLORREF col
= cmap
[k
].from
;
1597 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1598 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1599 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1601 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1610 // VZ: I leave here my attempts to map the bitmap to the system colours
1611 // faster by using BitBlt() even though it's broken currently - but
1612 // maybe someone else can finish it? It should be faster than iterating
1613 // over all pixels...
1615 MemoryHDC hdcMask
, hdcDst
;
1616 if ( !hdcMask
|| !hdcDst
)
1618 wxLogLastError(_T("CreateCompatibleDC"));
1623 // create the target bitmap
1624 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1627 wxLogLastError(_T("CreateCompatibleBitmap"));
1632 // create the monochrome mask bitmap
1633 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1636 wxLogLastError(_T("CreateBitmap(mono)"));
1638 ::DeleteObject(hbmpDst
);
1643 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1644 bmpInMask(hdcMask
, hbmpMask
);
1647 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1649 // create the mask for this colour
1650 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1651 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1653 // replace this colour with the target one in the dst bitmap
1654 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1655 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1657 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1660 MAKEROP4(PATCOPY
, SRCCOPY
));
1662 (void)::SelectObject(hdcDst
, hbrOld
);
1663 ::DeleteObject(hbr
);
1666 ::DeleteObject((HBITMAP
)bitmap
);
1668 return (WXHBITMAP
)hbmpDst
;
1672 #endif // wxUSE_TOOLBAR && Win95