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(_WIN32_WCE) || (_WIN32_WCE >= 400 && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)))
44 #include "wx/toolbar.h"
45 #include "wx/sysopt.h"
47 #include "wx/msw/private.h"
50 #include "wx/msw/uxtheme.h"
53 // include <commctrl.h> "properly"
54 #include "wx/msw/wrapcctl.h"
56 #include "wx/app.h" // for GetComCtl32Version
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 // these standard constants are not always defined in compilers headers
66 #define TBSTYLE_LIST 0x1000
67 #define TBSTYLE_FLAT 0x0800
70 #ifndef TBSTYLE_TRANSPARENT
71 #define TBSTYLE_TRANSPARENT 0x8000
74 #ifndef TBSTYLE_TOOLTIPS
75 #define TBSTYLE_TOOLTIPS 0x0100
80 #define TB_SETSTYLE (WM_USER + 56)
81 #define TB_GETSTYLE (WM_USER + 57)
85 #define TB_HITTEST (WM_USER + 69)
89 #define TB_GETMAXSIZE (WM_USER + 83)
92 // these values correspond to those used by comctl32.dll
93 #define DEFAULTBITMAPX 16
94 #define DEFAULTBITMAPY 15
95 #define DEFAULTBUTTONX 24
96 #define DEFAULTBUTTONY 24
97 #define DEFAULTBARHEIGHT 27
99 // ----------------------------------------------------------------------------
101 // ----------------------------------------------------------------------------
103 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
115 style ( wxNO_BORDER | wxTB_HORIZONTAL)
124 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
125 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
126 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
127 EVT_ERASE_BACKGROUND(wxToolBar::OnEraseBackground
)
130 // ----------------------------------------------------------------------------
132 // ----------------------------------------------------------------------------
134 class wxToolBarTool
: public wxToolBarToolBase
137 wxToolBarTool(wxToolBar
*tbar
,
139 const wxString
& label
,
140 const wxBitmap
& bmpNormal
,
141 const wxBitmap
& bmpDisabled
,
143 wxObject
*clientData
,
144 const wxString
& shortHelp
,
145 const wxString
& longHelp
)
146 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
147 clientData
, shortHelp
, longHelp
)
152 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
153 : wxToolBarToolBase(tbar
, control
)
158 virtual void SetLabel(const wxString
& label
)
160 if ( label
== m_label
)
163 wxToolBarToolBase::SetLabel(label
);
165 // we need to update the label shown in the toolbar because it has a
166 // pointer to the internal buffer of the old label
168 // TODO: use TB_SETBUTTONINFO
171 // set/get the number of separators which we use to cover the space used by
172 // a control in the toolbar
173 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
174 size_t GetSeparatorsCount() const { return m_nSepCount
; }
179 DECLARE_NO_COPY_CLASS(wxToolBarTool
)
183 // ============================================================================
185 // ============================================================================
187 // ----------------------------------------------------------------------------
189 // ----------------------------------------------------------------------------
191 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
192 const wxString
& label
,
193 const wxBitmap
& bmpNormal
,
194 const wxBitmap
& bmpDisabled
,
196 wxObject
*clientData
,
197 const wxString
& shortHelp
,
198 const wxString
& longHelp
)
200 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
201 clientData
, shortHelp
, longHelp
);
204 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
206 return new wxToolBarTool(this, control
);
209 // ----------------------------------------------------------------------------
210 // wxToolBar construction
211 // ----------------------------------------------------------------------------
213 void wxToolBar::Init()
219 m_defaultWidth
= DEFAULTBITMAPX
;
220 m_defaultHeight
= DEFAULTBITMAPY
;
225 bool wxToolBar::Create(wxWindow
*parent
,
230 const wxString
& name
)
232 // common initialisation
233 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
236 // MSW-specific initialisation
237 if ( !MSWCreateToolbar(pos
, size
) )
240 wxSetCCUnicodeFormat(GetHwnd());
242 // set up the colors and fonts
243 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE
));
244 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
246 // workaround for flat toolbar on Windows XP classic style
248 if ( style
& wxTB_FLAT
)
250 wxUxThemeEngine
*p
= wxUxThemeEngine::Get();
251 if ( !p
|| !p
->IsThemeActive() )
253 DWORD dwToolbarStyle
;
255 dwToolbarStyle
= (DWORD
)::SendMessage(GetHwnd(), TB_GETSTYLE
, 0, 0L );
257 if ((dwToolbarStyle
& TBSTYLE_FLAT
) == 0)
259 dwToolbarStyle
|= TBSTYLE_FLAT
;
260 ::SendMessage(GetHwnd(), TB_SETSTYLE
, 0, (LPARAM
)dwToolbarStyle
);
269 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
271 if ( !MSWCreateControl(TOOLBARCLASSNAME
, wxEmptyString
, pos
, size
) )
274 // toolbar-specific post initialisation
275 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
280 void wxToolBar::Recreate()
282 const HWND hwndOld
= GetHwnd();
285 // we haven't been created yet, no need to recreate
289 // get the position and size before unsubclassing the old toolbar
290 const wxPoint pos
= GetPosition();
291 const wxSize size
= GetSize();
295 if ( !MSWCreateToolbar(pos
, size
) )
298 wxFAIL_MSG( _T("recreating the toolbar failed") );
303 // reparent all our children under the new toolbar
304 for ( wxWindowList::compatibility_iterator node
= m_children
.GetFirst();
306 node
= node
->GetNext() )
308 wxWindow
*win
= node
->GetData();
309 if ( !win
->IsTopLevel() )
310 ::SetParent(GetHwndOf(win
), GetHwnd());
313 // only destroy the old toolbar now -- after all the children had been
315 ::DestroyWindow(hwndOld
);
317 // it is for the old bitmap control and can't be used with the new one
320 ::DeleteObject((HBITMAP
) m_hBitmap
);
328 wxToolBar::~wxToolBar()
330 // we must refresh the frame size when the toolbar is deleted but the frame
331 // is not - otherwise toolbar leaves a hole in the place it used to occupy
332 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
333 if ( frame
&& !frame
->IsBeingDeleted() )
335 frame
->SendSizeEvent();
340 ::DeleteObject((HBITMAP
) m_hBitmap
);
344 wxSize
wxToolBar::DoGetBestSize() const
349 if ( !::SendMessage(GetHwnd(), TB_GETMAXSIZE
, 0, (LPARAM
)&size
) )
351 // maybe an old (< 0x400) Windows version? try to approximate the
352 // toolbar size ourselves
353 sizeBest
= GetToolSize();
354 sizeBest
.y
+= 2 * ::GetSystemMetrics(SM_CYBORDER
); // Add borders
355 sizeBest
.x
*= GetToolsCount();
357 // reverse horz and vertical components if necessary
358 if ( HasFlag(wxTB_VERTICAL
) )
361 sizeBest
.x
= sizeBest
.y
;
367 sizeBest
.x
= size
.cx
;
368 sizeBest
.y
= size
.cy
;
374 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
376 // toolbars never have border, giving one to them results in broken
378 WXDWORD msStyle
= wxControl::MSWGetStyle
380 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
383 // always include this one, it never hurts and setting it later only if we
384 // do have tooltips wouldn't work
385 msStyle
|= TBSTYLE_TOOLTIPS
;
387 if ( style
& (wxTB_FLAT
| wxTB_HORZ_LAYOUT
) )
389 // static as it doesn't change during the program lifetime
390 static int s_verComCtl
= wxTheApp
->GetComCtl32Version();
392 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
393 // style with 6.00 (part of Windows XP) leads to the toolbar with
394 // incorrect background colour - and not using it still results in the
395 // correct (flat) toolbar, so don't use it there
396 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
398 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
401 if ( s_verComCtl
>= 470 && style
& wxTB_HORZ_LAYOUT
)
403 msStyle
|= TBSTYLE_LIST
;
407 if ( style
& wxTB_NODIVIDER
)
408 msStyle
|= CCS_NODIVIDER
;
410 if ( style
& wxTB_NOALIGN
)
411 msStyle
|= CCS_NOPARENTALIGN
;
413 if ( style
& wxTB_VERTICAL
)
419 // ----------------------------------------------------------------------------
420 // adding/removing tools
421 // ----------------------------------------------------------------------------
423 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
425 // nothing special to do here - we really create the toolbar buttons in
429 InvalidateBestSize();
433 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
435 // the main difficulty we have here is with the controls in the toolbars:
436 // as we (sometimes) use several separators to cover up the space used by
437 // them, the indices are not the same for us and the toolbar
439 // first determine the position of the first button to delete: it may be
440 // different from pos if we use several separators to cover the space used
442 wxToolBarToolsList::compatibility_iterator node
;
443 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
445 wxToolBarToolBase
*tool2
= node
->GetData();
448 // let node point to the next node in the list
449 node
= node
->GetNext();
454 if ( tool2
->IsControl() )
456 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
460 // now determine the number of buttons to delete and the area taken by them
461 size_t nButtonsToDelete
= 1;
463 // get the size of the button we're going to delete
465 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
467 wxLogLastError(_T("TB_GETITEMRECT"));
470 int width
= r
.right
- r
.left
;
472 if ( tool
->IsControl() )
474 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
476 width
*= nButtonsToDelete
;
479 // do delete all buttons
480 m_nButtons
-= nButtonsToDelete
;
481 while ( nButtonsToDelete
-- > 0 )
483 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
485 wxLogLastError(wxT("TB_DELETEBUTTON"));
493 // and finally reposition all the controls after this button (the toolbar
494 // takes care of all normal items)
495 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
497 wxToolBarToolBase
*tool2
= node
->GetData();
498 if ( tool2
->IsControl() )
501 wxControl
*control
= tool2
->GetControl();
502 control
->GetPosition(&x
, NULL
);
503 control
->Move(x
- width
, wxDefaultCoord
);
507 InvalidateBestSize();
511 bool wxToolBar::Realize()
513 const size_t nTools
= GetToolsCount();
520 const bool isVertical
= HasFlag(wxTB_VERTICAL
);
522 bool doRemap
, doRemapBg
, doTransparent
;
523 if (wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 2)
525 doRemapBg
= doRemap
= false;
526 doTransparent
= true;
529 { doRemap
= !wxSystemOptions::HasOption(wxT("msw.remap"))
530 || wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 1;
531 doRemapBg
= !doRemap
;
532 doTransparent
= false;
535 // delete all old buttons, if any
536 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
538 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
540 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
544 // First, add the bitmap: we use one bitmap for all toolbar buttons
545 // ----------------------------------------------------------------
547 wxToolBarToolsList::compatibility_iterator node
;
551 if ( HasFlag(wxTB_NOICONS
) )
553 // no icons, don't leave space for them
557 else // do show icons
559 // if we already have a bitmap, we'll replace the existing one --
560 // otherwise we'll install a new one
561 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
563 sizeBmp
.x
= m_defaultWidth
;
564 sizeBmp
.y
= m_defaultHeight
;
566 const wxCoord totalBitmapWidth
= m_defaultWidth
* nTools
,
567 totalBitmapHeight
= m_defaultHeight
;
569 // Create a bitmap and copy all the tool bitmaps to it
570 wxMemoryDC dcAllButtons
;
571 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
572 dcAllButtons
.SelectObject(bitmap
);
574 dcAllButtons
.SetBackground(*wxTRANSPARENT_BRUSH
);
576 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
577 dcAllButtons
.Clear();
579 m_hBitmap
= bitmap
.GetHBITMAP();
580 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
584 dcAllButtons
.SelectObject(wxNullBitmap
);
586 // Even if we're not remapping the bitmap
587 // content, we still have to remap the background.
588 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
589 totalBitmapWidth
, totalBitmapHeight
);
591 dcAllButtons
.SelectObject(bitmap
);
594 // the button position
597 // the number of buttons (not separators)
600 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
602 wxToolBarToolBase
*tool
= node
->GetData();
603 if ( tool
->IsButton() )
605 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
608 int xOffset
= wxMax(0, (m_defaultWidth
- bmp
.GetWidth())/2);
609 int yOffset
= wxMax(0, (m_defaultHeight
- bmp
.GetHeight())/2);
610 // notice the last parameter: do use mask
611 dcAllButtons
.DrawBitmap(bmp
, x
+xOffset
, yOffset
, true);
615 wxFAIL_MSG( _T("invalid tool button bitmap") );
618 // still inc width and number of buttons because otherwise the
619 // subsequent buttons will all be shifted which is rather confusing
620 // (and like this you'd see immediately which bitmap was bad)
626 dcAllButtons
.SelectObject(wxNullBitmap
);
628 // don't delete this HBITMAP!
629 bitmap
.SetHBITMAP(0);
633 // Map to system colours
634 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
635 totalBitmapWidth
, totalBitmapHeight
);
638 bool addBitmap
= true;
640 if ( oldToolBarBitmap
)
642 #ifdef TB_REPLACEBITMAP
643 if ( wxTheApp
->GetComCtl32Version() >= 400 )
645 TBREPLACEBITMAP replaceBitmap
;
646 replaceBitmap
.hInstOld
= NULL
;
647 replaceBitmap
.hInstNew
= NULL
;
648 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
649 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
650 replaceBitmap
.nButtons
= nButtons
;
651 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
652 0, (LPARAM
) &replaceBitmap
) )
654 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
657 ::DeleteObject(oldToolBarBitmap
);
663 #endif // TB_REPLACEBITMAP
665 // we can't replace the old bitmap, so we will add another one
666 // (awfully inefficient, but what else to do?) and shift the bitmap
667 // indices accordingly
670 bitmapId
= m_nButtons
;
674 if ( addBitmap
) // no old bitmap or we can't replace it
676 TBADDBITMAP addBitmap
;
678 addBitmap
.nID
= (UINT
) hBitmap
;
679 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
680 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
682 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
687 // don't call SetToolBitmapSize() as we don't want to change the values of
688 // m_defaultWidth/Height
689 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
690 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
692 wxLogLastError(_T("TB_SETBITMAPSIZE"));
695 // Next add the buttons and separators
696 // -----------------------------------
698 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
700 // this array will hold the indices of all controls in the toolbar
701 wxArrayInt controlIds
;
703 bool lastWasRadio
= false;
705 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
707 wxToolBarToolBase
*tool
= node
->GetData();
709 // don't add separators to the vertical toolbar with old comctl32.dll
710 // versions as they didn't handle this properly
711 if ( isVertical
&& tool
->IsSeparator() &&
712 wxTheApp
->GetComCtl32Version() <= 472 )
718 TBBUTTON
& button
= buttons
[i
];
720 wxZeroMemory(button
);
722 bool isRadio
= false;
723 switch ( tool
->GetStyle() )
725 case wxTOOL_STYLE_CONTROL
:
726 button
.idCommand
= tool
->GetId();
727 // fall through: create just a separator too
729 case wxTOOL_STYLE_SEPARATOR
:
730 button
.fsState
= TBSTATE_ENABLED
;
731 button
.fsStyle
= TBSTYLE_SEP
;
734 case wxTOOL_STYLE_BUTTON
:
735 if ( !HasFlag(wxTB_NOICONS
) )
736 button
.iBitmap
= bitmapId
;
738 if ( HasFlag(wxTB_TEXT
) )
740 const wxString
& label
= tool
->GetLabel();
741 if ( !label
.empty() )
743 button
.iString
= (int)label
.c_str();
747 button
.idCommand
= tool
->GetId();
749 if ( tool
->IsEnabled() )
750 button
.fsState
|= TBSTATE_ENABLED
;
751 if ( tool
->IsToggled() )
752 button
.fsState
|= TBSTATE_CHECKED
;
754 switch ( tool
->GetKind() )
757 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
761 // the first item in the radio group is checked by
762 // default to be consistent with wxGTK and the menu
764 button
.fsState
|= TBSTATE_CHECKED
;
773 button
.fsStyle
= TBSTYLE_CHECK
;
777 wxFAIL_MSG( _T("unexpected toolbar button kind") );
781 button
.fsStyle
= TBSTYLE_BUTTON
;
788 lastWasRadio
= isRadio
;
793 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
795 wxLogLastError(wxT("TB_ADDBUTTONS"));
800 // Deal with the controls finally
801 // ------------------------------
803 // adjust the controls size to fit nicely in the toolbar
806 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
808 wxToolBarToolBase
*tool
= node
->GetData();
810 // we calculate the running y coord for vertical toolbars so we need to
811 // get the items size for all items but for the horizontal ones we
812 // don't need to deal with the non controls
813 bool isControl
= tool
->IsControl();
814 if ( !isControl
&& !isVertical
)
817 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
818 // latter only appeared in v4.70 of comctl32.dll
820 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
821 index
, (LPARAM
)(LPRECT
)&r
) )
823 wxLogLastError(wxT("TB_GETITEMRECT"));
828 // can only be control if isVertical
829 y
+= r
.bottom
- r
.top
;
834 wxControl
*control
= tool
->GetControl();
836 wxSize size
= control
->GetSize();
838 // the position of the leftmost controls corner
839 int left
= wxDefaultCoord
;
841 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
842 #ifdef TB_SETBUTTONINFO
843 // available in headers, now check whether it is available now
845 if ( wxTheApp
->GetComCtl32Version() >= 471 )
847 // set the (underlying) separators width to be that of the
850 tbbi
.cbSize
= sizeof(tbbi
);
851 tbbi
.dwMask
= TBIF_SIZE
;
852 tbbi
.cx
= (WORD
)size
.x
;
853 if ( !::SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
854 tool
->GetId(), (LPARAM
)&tbbi
) )
856 // the id is probably invalid?
857 wxLogLastError(wxT("TB_SETBUTTONINFO"));
861 #endif // comctl32.dll 4.71
862 // TB_SETBUTTONINFO unavailable
864 // try adding several separators to fit the controls width
865 int widthSep
= r
.right
- r
.left
;
871 tbb
.fsState
= TBSTATE_ENABLED
;
872 tbb
.fsStyle
= TBSTYLE_SEP
;
874 size_t nSeparators
= size
.x
/ widthSep
;
875 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
877 if ( !::SendMessage(GetHwnd(), TB_INSERTBUTTON
,
878 index
, (LPARAM
)&tbb
) )
880 wxLogLastError(wxT("TB_INSERTBUTTON"));
886 // remember the number of separators we used - we'd have to
887 // delete all of them later
888 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
890 // adjust the controls width to exactly cover the separators
891 control
->SetSize((nSeparators
+ 1)*widthSep
, wxDefaultCoord
);
894 // position the control itself correctly vertically
895 int height
= r
.bottom
- r
.top
;
896 int diff
= height
- size
.y
;
899 // the control is too high, resize to fit
900 control
->SetSize(wxDefaultCoord
, height
- 2);
911 y
+= height
+ 2*GetMargins().y
;
913 else // horizontal toolbar
915 if ( left
== wxDefaultCoord
)
921 control
->Move(left
, top
+ (diff
+ 1) / 2);
924 // the max index is the "real" number of buttons - i.e. counting even the
925 // separators which we added just for aligning the controls
930 if ( m_maxRows
== 0 )
932 // if not set yet, only one row
936 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
938 if ( m_maxRows
== 0 )
940 // if not set yet, have one column
945 InvalidateBestSize();
949 // ----------------------------------------------------------------------------
951 // ----------------------------------------------------------------------------
953 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
955 wxToolBarToolBase
*tool
= FindById((int)id
);
959 bool toggled
= false; // just to suppress warnings
961 if ( tool
->CanBeToggled() )
963 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
964 toggled
= (state
& TBSTATE_CHECKED
) != 0;
966 // ignore the event when a radio button is released, as this doesn't seem to
967 // happen at all, and is handled otherwise
968 if ( tool
->GetKind() == wxITEM_RADIO
&& !toggled
)
971 tool
->Toggle(toggled
);
972 UnToggleRadioGroup(tool
);
975 // OnLeftClick() can veto the button state change - for buttons which
976 // may be toggled only, of couse
977 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
980 tool
->Toggle(!toggled
);
982 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
988 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
990 WXLPARAM
*WXUNUSED(result
))
993 // First check if this applies to us
994 NMHDR
*hdr
= (NMHDR
*)lParam
;
996 // the tooltips control created by the toolbar is sometimes Unicode, even
997 // in an ANSI application - this seems to be a bug in comctl32.dll v5
998 UINT code
= hdr
->code
;
999 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
1002 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
1003 if ( toolTipWnd
!= hdr
->hwndFrom
)
1006 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
1007 int id
= (int)ttText
->hdr
.idFrom
;
1009 wxToolBarToolBase
*tool
= FindById(id
);
1013 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
1015 wxUnusedVar(lParam
);
1021 // ----------------------------------------------------------------------------
1023 // ----------------------------------------------------------------------------
1025 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
1027 wxToolBarBase::SetToolBitmapSize(size
);
1029 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
1032 void wxToolBar::SetRows(int nRows
)
1034 if ( nRows
== m_maxRows
)
1036 // avoid resizing the frame uselessly
1040 // TRUE in wParam means to create at least as many rows, FALSE -
1043 ::SendMessage(GetHwnd(), TB_SETROWS
,
1044 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
1052 // The button size is bigger than the bitmap size
1053 wxSize
wxToolBar::GetToolSize() const
1055 // TB_GETBUTTONSIZE is supported from version 4.70
1056 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1057 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) \
1058 && !defined (__DIGITALMARS__)
1059 if ( wxTheApp
->GetComCtl32Version() >= 470 )
1061 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1063 return wxSize(LOWORD(dw
), HIWORD(dw
));
1066 #endif // comctl32.dll 4.70+
1069 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1074 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1077 wxToolBarToolsList::compatibility_iterator current
= tools
.GetFirst();
1079 for ( ; current
!= 0; current
= current
->GetNext() )
1082 return current
->GetData();
1084 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1085 size_t separators
= tool
->GetSeparatorsCount();
1087 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1088 // otherwise, skip as many items as the separator count, plus the
1090 index
-= separators
? separators
+ 1 : 1;
1096 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1101 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1102 // MBN: when the point ( x, y ) is close to the toolbar border
1103 // TB_HITTEST returns m_nButtons ( not -1 )
1104 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1106 // it's a separator or there is no tool at all there
1107 return (wxToolBarToolBase
*)NULL
;
1110 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1111 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1112 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1114 return m_tools
.Item((size_t)index
)->GetData();
1119 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1123 void wxToolBar::UpdateSize()
1125 // the toolbar size changed
1126 ::SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1128 // we must also refresh the frame after the toolbar size (possibly) changed
1129 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1132 frame
->SendSizeEvent();
1136 // ----------------------------------------------------------------------------
1138 // ---------------------------------------------------------------------------
1140 void wxToolBar::SetWindowStyleFlag(long style
)
1142 // the style bits whose changes force us to recreate the toolbar
1143 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1145 const long styleOld
= GetWindowStyle();
1147 wxToolBarBase::SetWindowStyleFlag(style
);
1149 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1150 // also fatal as we'd then try to recreate the toolbar when it's just being
1152 if ( GetToolsCount() &&
1153 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1155 // to remove the text labels, simply re-realizing the toolbar is enough
1156 // but I don't know of any way to add the text to an existing toolbar
1157 // other than by recreating it entirely
1162 // ----------------------------------------------------------------------------
1164 // ----------------------------------------------------------------------------
1166 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1168 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1169 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1172 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1174 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1175 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1178 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1180 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1181 // without, so we really need to delete the button and recreate it here
1182 wxFAIL_MSG( _T("not implemented") );
1185 // ----------------------------------------------------------------------------
1187 // ----------------------------------------------------------------------------
1189 // Responds to colour changes, and passes event on to children.
1190 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1192 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1194 // Remap the buttons
1197 // Relayout the toolbar
1198 int nrows
= m_maxRows
;
1199 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1204 // let the event propagate further
1208 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1210 if (event
.Leaving() && m_pInTool
)
1217 if ( event
.RightDown() )
1219 // find the tool under the mouse
1221 event
.GetPosition(&x
, &y
);
1223 wxToolBarToolBase
*tool
= FindToolForPosition(x
, y
);
1224 OnRightClick(tool
? tool
->GetId() : -1, x
, y
);
1232 // This handler is required to allow the toolbar to be set to a non-default
1233 // colour: for example, when it must blend in with a notebook page.
1234 void wxToolBar::OnEraseBackground(wxEraseEvent
& event
)
1236 wxColour bgCol
= GetBackgroundColour();
1243 // notice that this 'dumb' implementation may cause flicker for some of the
1244 // controls in which case they should intercept wxEraseEvent and process it
1245 // themselves somehow
1248 ::GetClientRect(GetHwnd(), &rect
);
1250 HBRUSH hBrush
= ::CreateSolidBrush(wxColourToRGB(bgCol
));
1252 HDC hdc
= GetHdcOf((*event
.GetDC()));
1255 int mode
= ::SetMapMode(hdc
, MM_TEXT
);
1258 ::FillRect(hdc
, &rect
, hBrush
);
1259 ::DeleteObject(hBrush
);
1262 ::SetMapMode(hdc
, mode
);
1266 bool wxToolBar::HandleSize(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1268 // calculate our minor dimension ourselves - we're confusing the standard
1269 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1271 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1275 if ( GetWindowStyle() & wxTB_VERTICAL
)
1277 w
= r
.right
- r
.left
;
1280 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1287 if (HasFlag( wxTB_FLAT
))
1288 h
= r
.bottom
- r
.top
- 3;
1290 h
= r
.bottom
- r
.top
;
1293 // FIXME: hardcoded separator line height...
1294 h
+= HasFlag(wxTB_NODIVIDER
) ? 4 : 6;
1299 if ( MAKELPARAM(w
, h
) != lParam
)
1301 // size really changed
1305 // message processed
1312 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1314 // erase any dummy separators which we used for aligning the controls if
1317 // first of all, do we have any controls at all?
1318 wxToolBarToolsList::compatibility_iterator node
;
1319 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1321 if ( node
->GetData()->IsControl() )
1327 // no controls, nothing to erase
1331 // prepare the DC on which we'll be drawing
1332 wxClientDC
dc(this);
1333 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1334 dc
.SetPen(*wxTRANSPARENT_PEN
);
1337 if ( !::GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1339 // nothing to redraw anyhow
1344 wxCopyRECTToRect(r
, rectUpdate
);
1346 dc
.SetClippingRegion(rectUpdate
);
1348 // draw the toolbar tools, separators &c normally
1349 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1351 // for each control in the toolbar find all the separators intersecting it
1354 // NB: this is really the only way to do it as we don't know if a separator
1355 // corresponds to a control (i.e. is a dummy one) or a real one
1357 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1359 wxToolBarToolBase
*tool
= node
->GetData();
1360 if ( tool
->IsControl() )
1362 // get the control rect in our client coords
1363 wxControl
*control
= tool
->GetControl();
1364 wxRect rectCtrl
= control
->GetRect();
1366 // iterate over all buttons
1368 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1369 for ( int n
= 0; n
< count
; n
++ )
1371 // is it a separator?
1372 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1375 wxLogDebug(_T("TB_GETBUTTON failed?"));
1380 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1383 // get the bounding rect of the separator
1385 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1388 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1393 // does it intersect the control?
1395 wxCopyRECTToRect(r
, rectItem
);
1396 if ( rectCtrl
.Intersects(rectItem
) )
1398 // yes, do erase it!
1399 dc
.DrawRectangle(rectItem
);
1401 // Necessary in case we use a no-paint-on-size
1402 // style in the parent: the controls can disappear
1403 control
->Refresh(false);
1412 void wxToolBar::HandleMouseMove(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1414 wxCoord x
= GET_X_LPARAM(lParam
),
1415 y
= GET_Y_LPARAM(lParam
);
1416 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1418 // cursor left current tool
1419 if( tool
!= m_pInTool
&& !tool
)
1425 // cursor entered a tool
1426 if( tool
!= m_pInTool
&& tool
)
1429 OnMouseEnter( tool
->GetId() );
1433 WXLRESULT
wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1438 if ( HandleSize(wParam
, lParam
) )
1443 // we don't handle mouse moves, so always pass the message to
1444 // wxControl::MSWWindowProc
1445 HandleMouseMove(wParam
, lParam
);
1449 if ( HandlePaint(wParam
, lParam
) )
1453 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1456 // ----------------------------------------------------------------------------
1457 // private functions
1458 // ----------------------------------------------------------------------------
1460 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1466 wxLogLastError(_T("CreateCompatibleDC"));
1471 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1475 wxLogLastError(_T("SelectObject"));
1480 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1482 for ( int i
= 0; i
< width
; i
++ )
1484 for ( int j
= 0; j
< height
; j
++ )
1486 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1488 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1490 COLORREF col
= cmap
[k
].from
;
1491 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1492 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1493 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1495 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1504 // VZ: I leave here my attempts to map the bitmap to the system colours
1505 // faster by using BitBlt() even though it's broken currently - but
1506 // maybe someone else can finish it? It should be faster than iterating
1507 // over all pixels...
1509 MemoryHDC hdcMask
, hdcDst
;
1510 if ( !hdcMask
|| !hdcDst
)
1512 wxLogLastError(_T("CreateCompatibleDC"));
1517 // create the target bitmap
1518 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1521 wxLogLastError(_T("CreateCompatibleBitmap"));
1526 // create the monochrome mask bitmap
1527 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1530 wxLogLastError(_T("CreateBitmap(mono)"));
1532 ::DeleteObject(hbmpDst
);
1537 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1538 bmpInMask(hdcMask
, hbmpMask
);
1541 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1543 // create the mask for this colour
1544 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1545 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1547 // replace this colour with the target one in the dst bitmap
1548 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1549 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1551 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1554 MAKEROP4(PATCOPY
, SRCCOPY
));
1556 (void)::SelectObject(hdcDst
, hbrOld
);
1557 ::DeleteObject(hbr
);
1560 ::DeleteObject((HBITMAP
)bitmap
);
1562 return (WXHBITMAP
)hbmpDst
;
1566 #endif // wxUSE_TOOLBAR && Win95