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"
49 // include <commctrl.h> "properly"
50 #include "wx/msw/wrapcctl.h"
52 #include "wx/app.h" // for GetComCtl32Version
54 // ----------------------------------------------------------------------------
55 // conditional compilation
56 // ----------------------------------------------------------------------------
58 // wxWidgets previously always considered that toolbar buttons have light grey
59 // (0xc0c0c0) background and so ignored any bitmap masks - however, this
60 // doesn't work with XPMs which then appear to have black background. To make
61 // this work, we must respect the bitmap masks - which we do now. This should
62 // be ok in any case, but to restore 100% compatible with the old version
63 // behaviour, you can set this to 0.
64 #define USE_BITMAP_MASKS 1
66 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 // these standard constants are not always defined in compilers headers
74 #define TBSTYLE_LIST 0x1000
75 #define TBSTYLE_FLAT 0x0800
78 #ifndef TBSTYLE_TRANSPARENT
79 #define TBSTYLE_TRANSPARENT 0x8000
82 #ifndef TBSTYLE_TOOLTIPS
83 #define TBSTYLE_TOOLTIPS 0x0100
88 #define TB_SETSTYLE (WM_USER + 56)
89 #define TB_GETSTYLE (WM_USER + 57)
93 #define TB_HITTEST (WM_USER + 69)
96 // these values correspond to those used by comctl32.dll
97 #define DEFAULTBITMAPX 16
98 #define DEFAULTBITMAPY 15
99 #define DEFAULTBUTTONX 24
100 #define DEFAULTBUTTONY 24
101 #define DEFAULTBARHEIGHT 27
103 // ----------------------------------------------------------------------------
105 // ----------------------------------------------------------------------------
107 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxControl
)
119 style ( wxNO_BORDER | wxTB_HORIZONTAL)
128 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
129 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
130 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
133 // ----------------------------------------------------------------------------
135 // ----------------------------------------------------------------------------
137 class wxToolBarTool
: public wxToolBarToolBase
140 wxToolBarTool(wxToolBar
*tbar
,
142 const wxString
& label
,
143 const wxBitmap
& bmpNormal
,
144 const wxBitmap
& bmpDisabled
,
146 wxObject
*clientData
,
147 const wxString
& shortHelp
,
148 const wxString
& longHelp
)
149 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
150 clientData
, shortHelp
, longHelp
)
155 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
156 : wxToolBarToolBase(tbar
, control
)
161 virtual void SetLabel(const wxString
& label
)
163 if ( label
== m_label
)
166 wxToolBarToolBase::SetLabel(label
);
168 // we need to update the label shown in the toolbar because it has a
169 // pointer to the internal buffer of the old label
171 // TODO: use TB_SETBUTTONINFO
174 // set/get the number of separators which we use to cover the space used by
175 // a control in the toolbar
176 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
177 size_t GetSeparatorsCount() const { return m_nSepCount
; }
182 DECLARE_NO_COPY_CLASS(wxToolBarTool
)
186 // ============================================================================
188 // ============================================================================
190 // ----------------------------------------------------------------------------
192 // ----------------------------------------------------------------------------
194 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
195 const wxString
& label
,
196 const wxBitmap
& bmpNormal
,
197 const wxBitmap
& bmpDisabled
,
199 wxObject
*clientData
,
200 const wxString
& shortHelp
,
201 const wxString
& longHelp
)
203 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
204 clientData
, shortHelp
, longHelp
);
207 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
209 return new wxToolBarTool(this, control
);
212 // ----------------------------------------------------------------------------
213 // wxToolBar construction
214 // ----------------------------------------------------------------------------
216 void wxToolBar::Init()
222 m_defaultWidth
= DEFAULTBITMAPX
;
223 m_defaultHeight
= DEFAULTBITMAPY
;
228 bool wxToolBar::Create(wxWindow
*parent
,
233 const wxString
& name
)
235 // common initialisation
236 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
239 // MSW-specific initialisation
240 if ( !MSWCreateToolbar(pos
, size
) )
243 wxSetCCUnicodeFormat(GetHwnd());
245 // set up the colors and fonts
246 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR
));
247 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
249 // workaround for flat toolbar on Windows XP classic style
250 if ( style
& wxTB_FLAT
)
252 DWORD dwToolbarStyle
;
254 dwToolbarStyle
= (DWORD
)::SendMessage(GetHwnd(), TB_GETSTYLE
, 0, 0L );
256 if ((dwToolbarStyle
& TBSTYLE_FLAT
) == 0)
258 dwToolbarStyle
|= TBSTYLE_FLAT
;
259 ::SendMessage(GetHwnd(), TB_SETSTYLE
, 0, (LPARAM
)dwToolbarStyle
);
265 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
267 if ( !MSWCreateControl(TOOLBARCLASSNAME
, wxEmptyString
, pos
, size
) )
270 // toolbar-specific post initialisation
271 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
276 void wxToolBar::Recreate()
278 const HWND hwndOld
= GetHwnd();
281 // we haven't been created yet, no need to recreate
285 // get the position and size before unsubclassing the old toolbar
286 const wxPoint pos
= GetPosition();
287 const wxSize size
= GetSize();
291 if ( !MSWCreateToolbar(pos
, size
) )
294 wxFAIL_MSG( _T("recreating the toolbar failed") );
299 // reparent all our children under the new toolbar
300 for ( wxWindowList::compatibility_iterator node
= m_children
.GetFirst();
302 node
= node
->GetNext() )
304 wxWindow
*win
= node
->GetData();
305 if ( !win
->IsTopLevel() )
306 ::SetParent(GetHwndOf(win
), GetHwnd());
309 // only destroy the old toolbar now -- after all the children had been
311 ::DestroyWindow(hwndOld
);
313 // it is for the old bitmap control and can't be used with the new one
316 ::DeleteObject((HBITMAP
) m_hBitmap
);
324 wxToolBar::~wxToolBar()
326 // we must refresh the frame size when the toolbar is deleted but the frame
327 // is not - otherwise toolbar leaves a hole in the place it used to occupy
328 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
329 if ( frame
&& !frame
->IsBeingDeleted() )
331 frame
->SendSizeEvent();
336 ::DeleteObject((HBITMAP
) m_hBitmap
);
340 wxSize
wxToolBar::DoGetBestSize() const
342 wxSize sizeBest
= GetToolSize();
343 sizeBest
.x
*= GetToolsCount();
345 // reverse horz and vertical components if necessary
346 return HasFlag(wxTB_VERTICAL
) ? wxSize(sizeBest
.y
, sizeBest
.x
) : sizeBest
;
349 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
351 // toolbars never have border, giving one to them results in broken
353 WXDWORD msStyle
= wxControl::MSWGetStyle
355 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
358 // always include this one, it never hurts and setting it later only if we
359 // do have tooltips wouldn't work
360 msStyle
|= TBSTYLE_TOOLTIPS
;
362 if ( style
& (wxTB_FLAT
| wxTB_HORZ_LAYOUT
) )
364 // static as it doesn't change during the program lifetime
365 static int s_verComCtl
= wxTheApp
->GetComCtl32Version();
367 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
368 // style with 6.00 (part of Windows XP) leads to the toolbar with
369 // incorrect background colour - and not using it still results in the
370 // correct (flat) toolbar, so don't use it there
371 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
373 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
376 if ( s_verComCtl
>= 470 && style
& wxTB_HORZ_LAYOUT
)
378 msStyle
|= TBSTYLE_LIST
;
382 if ( style
& wxTB_NODIVIDER
)
383 msStyle
|= CCS_NODIVIDER
;
385 if ( style
& wxTB_NOALIGN
)
386 msStyle
|= CCS_NOPARENTALIGN
;
388 if ( style
& wxTB_VERTICAL
)
394 // ----------------------------------------------------------------------------
395 // adding/removing tools
396 // ----------------------------------------------------------------------------
398 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
400 // nothing special to do here - we really create the toolbar buttons in
404 InvalidateBestSize();
408 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
410 // the main difficulty we have here is with the controls in the toolbars:
411 // as we (sometimes) use several separators to cover up the space used by
412 // them, the indices are not the same for us and the toolbar
414 // first determine the position of the first button to delete: it may be
415 // different from pos if we use several separators to cover the space used
417 wxToolBarToolsList::compatibility_iterator node
;
418 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
420 wxToolBarToolBase
*tool2
= node
->GetData();
423 // let node point to the next node in the list
424 node
= node
->GetNext();
429 if ( tool2
->IsControl() )
431 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
435 // now determine the number of buttons to delete and the area taken by them
436 size_t nButtonsToDelete
= 1;
438 // get the size of the button we're going to delete
440 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
442 wxLogLastError(_T("TB_GETITEMRECT"));
445 int width
= r
.right
- r
.left
;
447 if ( tool
->IsControl() )
449 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
451 width
*= nButtonsToDelete
;
454 // do delete all buttons
455 m_nButtons
-= nButtonsToDelete
;
456 while ( nButtonsToDelete
-- > 0 )
458 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
460 wxLogLastError(wxT("TB_DELETEBUTTON"));
468 // and finally reposition all the controls after this button (the toolbar
469 // takes care of all normal items)
470 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
472 wxToolBarToolBase
*tool2
= node
->GetData();
473 if ( tool2
->IsControl() )
476 wxControl
*control
= tool2
->GetControl();
477 control
->GetPosition(&x
, NULL
);
478 control
->Move(x
- width
, -1);
482 InvalidateBestSize();
486 bool wxToolBar::Realize()
488 const size_t nTools
= GetToolsCount();
495 const bool isVertical
= HasFlag(wxTB_VERTICAL
);
497 bool doRemap
, doRemapBg
, doTransparent
;
498 if (wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 2)
500 doRemapBg
= doRemap
= false;
501 doTransparent
= true;
504 { doRemap
= !wxSystemOptions::HasOption(wxT("msw.remap"))
505 || wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 1;
506 doRemapBg
= !doRemap
;
507 doTransparent
= false;
510 // delete all old buttons, if any
511 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
513 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
515 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
519 // First, add the bitmap: we use one bitmap for all toolbar buttons
520 // ----------------------------------------------------------------
522 wxToolBarToolsList::compatibility_iterator node
;
526 if ( HasFlag(wxTB_NOICONS
) )
528 // no icons, don't leave space for them
532 else // do show icons
534 // if we already have a bitmap, we'll replace the existing one --
535 // otherwise we'll install a new one
536 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
538 sizeBmp
.x
= m_defaultWidth
;
539 sizeBmp
.y
= m_defaultHeight
;
541 const wxCoord totalBitmapWidth
= m_defaultWidth
* nTools
,
542 totalBitmapHeight
= m_defaultHeight
;
544 // Create a bitmap and copy all the tool bitmaps to it
546 wxMemoryDC dcAllButtons
;
547 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
548 dcAllButtons
.SelectObject(bitmap
);
550 dcAllButtons
.SetBackground(*wxTRANSPARENT_BRUSH
);
552 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
553 dcAllButtons
.Clear();
555 m_hBitmap
= bitmap
.GetHBITMAP();
556 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
557 #else // !USE_BITMAP_MASKS
558 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
563 wxLogLastError(_T("CreateCompatibleBitmap"));
568 m_hBitmap
= (WXHBITMAP
)hBitmap
;
571 SelectInHDC
hdcSelector(memoryDC
, hBitmap
);
574 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
579 dcAllButtons
.SelectObject(wxNullBitmap
);
582 // Even if we're not remapping the bitmap
583 // content, we still have to remap the background.
584 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
585 totalBitmapWidth
, totalBitmapHeight
);
588 dcAllButtons
.SelectObject(bitmap
);
592 // the button position
595 // the number of buttons (not separators)
598 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
600 wxToolBarToolBase
*tool
= node
->GetData();
601 if ( tool
->IsButton() )
603 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
606 int xOffset
= wxMax(0, (m_defaultWidth
- bmp
.GetWidth())/2);
607 int yOffset
= wxMax(0, (m_defaultHeight
- bmp
.GetHeight())/2);
609 // notice the last parameter: do use mask
610 dcAllButtons
.DrawBitmap(bmp
, x
+xOffset
, yOffset
, TRUE
);
611 #else // !USE_BITMAP_MASKS
612 SelectInHDC
hdcSelector2(memoryDC2
, GetHbitmapOf(bmp
));
613 if ( !BitBlt(memoryDC
,
614 x
+xOffset
, yOffset
, m_defaultWidth
, m_defaultHeight
,
618 wxLogLastError(wxT("BitBlt"));
620 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
624 wxFAIL_MSG( _T("invalid tool button bitmap") );
627 // still inc width and number of buttons because otherwise the
628 // subsequent buttons will all be shifted which is rather confusing
629 // (and like this you'd see immediately which bitmap was bad)
636 dcAllButtons
.SelectObject(wxNullBitmap
);
638 // don't delete this HBITMAP!
639 bitmap
.SetHBITMAP(0);
640 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
644 // Map to system colours
645 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
646 totalBitmapWidth
, totalBitmapHeight
);
649 bool addBitmap
= TRUE
;
651 if ( oldToolBarBitmap
)
653 #ifdef TB_REPLACEBITMAP
654 if ( wxTheApp
->GetComCtl32Version() >= 400 )
656 TBREPLACEBITMAP replaceBitmap
;
657 replaceBitmap
.hInstOld
= NULL
;
658 replaceBitmap
.hInstNew
= NULL
;
659 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
660 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
661 replaceBitmap
.nButtons
= nButtons
;
662 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
663 0, (LPARAM
) &replaceBitmap
) )
665 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
668 ::DeleteObject(oldToolBarBitmap
);
674 #endif // TB_REPLACEBITMAP
676 // we can't replace the old bitmap, so we will add another one
677 // (awfully inefficient, but what else to do?) and shift the bitmap
678 // indices accordingly
681 bitmapId
= m_nButtons
;
685 if ( addBitmap
) // no old bitmap or we can't replace it
687 TBADDBITMAP addBitmap
;
689 addBitmap
.nID
= (UINT
) hBitmap
;
690 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
691 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
693 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
698 // don't call SetToolBitmapSize() as we don't want to change the values of
699 // m_defaultWidth/Height
700 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
701 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
703 wxLogLastError(_T("TB_SETBITMAPSIZE"));
706 // Next add the buttons and separators
707 // -----------------------------------
709 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
711 // this array will hold the indices of all controls in the toolbar
712 wxArrayInt controlIds
;
714 bool lastWasRadio
= FALSE
;
716 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
718 wxToolBarToolBase
*tool
= node
->GetData();
720 // don't add separators to the vertical toolbar with old comctl32.dll
721 // versions as they didn't handle this properly
722 if ( isVertical
&& tool
->IsSeparator() &&
723 wxTheApp
->GetComCtl32Version() <= 472 )
729 TBBUTTON
& button
= buttons
[i
];
731 wxZeroMemory(button
);
733 bool isRadio
= FALSE
;
734 switch ( tool
->GetStyle() )
736 case wxTOOL_STYLE_CONTROL
:
737 button
.idCommand
= tool
->GetId();
738 // fall through: create just a separator too
740 case wxTOOL_STYLE_SEPARATOR
:
741 button
.fsState
= TBSTATE_ENABLED
;
742 button
.fsStyle
= TBSTYLE_SEP
;
745 case wxTOOL_STYLE_BUTTON
:
746 if ( !HasFlag(wxTB_NOICONS
) )
747 button
.iBitmap
= bitmapId
;
749 if ( HasFlag(wxTB_TEXT
) )
751 const wxString
& label
= tool
->GetLabel();
752 if ( !label
.empty() )
754 button
.iString
= (int)label
.c_str();
758 button
.idCommand
= tool
->GetId();
760 if ( tool
->IsEnabled() )
761 button
.fsState
|= TBSTATE_ENABLED
;
762 if ( tool
->IsToggled() )
763 button
.fsState
|= TBSTATE_CHECKED
;
765 switch ( tool
->GetKind() )
768 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
772 // the first item in the radio group is checked by
773 // default to be consistent with wxGTK and the menu
775 button
.fsState
|= TBSTATE_CHECKED
;
784 button
.fsStyle
= TBSTYLE_CHECK
;
788 wxFAIL_MSG( _T("unexpected toolbar button kind") );
792 button
.fsStyle
= TBSTYLE_BUTTON
;
799 lastWasRadio
= isRadio
;
804 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
806 wxLogLastError(wxT("TB_ADDBUTTONS"));
811 // Deal with the controls finally
812 // ------------------------------
814 // adjust the controls size to fit nicely in the toolbar
817 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
819 wxToolBarToolBase
*tool
= node
->GetData();
821 // we calculate the running y coord for vertical toolbars so we need to
822 // get the items size for all items but for the horizontal ones we
823 // don't need to deal with the non controls
824 bool isControl
= tool
->IsControl();
825 if ( !isControl
&& !isVertical
)
828 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
829 // latter only appeared in v4.70 of comctl32.dll
831 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
832 index
, (LPARAM
)(LPRECT
)&r
) )
834 wxLogLastError(wxT("TB_GETITEMRECT"));
839 // can only be control if isVertical
840 y
+= r
.bottom
- r
.top
;
845 wxControl
*control
= tool
->GetControl();
847 wxSize size
= control
->GetSize();
849 // the position of the leftmost controls corner
852 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
853 #ifdef TB_SETBUTTONINFO
854 // available in headers, now check whether it is available now
856 if ( wxTheApp
->GetComCtl32Version() >= 471 )
858 // set the (underlying) separators width to be that of the
861 tbbi
.cbSize
= sizeof(tbbi
);
862 tbbi
.dwMask
= TBIF_SIZE
;
864 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
865 tool
->GetId(), (LPARAM
)&tbbi
) )
867 // the id is probably invalid?
868 wxLogLastError(wxT("TB_SETBUTTONINFO"));
872 #endif // comctl32.dll 4.71
873 // TB_SETBUTTONINFO unavailable
875 // try adding several separators to fit the controls width
876 int widthSep
= r
.right
- r
.left
;
882 tbb
.fsState
= TBSTATE_ENABLED
;
883 tbb
.fsStyle
= TBSTYLE_SEP
;
885 size_t nSeparators
= size
.x
/ widthSep
;
886 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
888 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
889 index
, (LPARAM
)&tbb
) )
891 wxLogLastError(wxT("TB_INSERTBUTTON"));
897 // remember the number of separators we used - we'd have to
898 // delete all of them later
899 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
901 // adjust the controls width to exactly cover the separators
902 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
905 // position the control itself correctly vertically
906 int height
= r
.bottom
- r
.top
;
907 int diff
= height
- size
.y
;
910 // the control is too high, resize to fit
911 control
->SetSize(-1, height
- 2);
922 y
+= height
+ 2*GetMargins().y
;
924 else // horizontal toolbar
932 control
->Move(left
, top
+ (diff
+ 1) / 2);
935 // the max index is the "real" number of buttons - i.e. counting even the
936 // separators which we added just for aligning the controls
941 if ( m_maxRows
== 0 )
943 // if not set yet, only one row
947 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
949 if ( m_maxRows
== 0 )
951 // if not set yet, have one column
956 InvalidateBestSize();
960 // ----------------------------------------------------------------------------
962 // ----------------------------------------------------------------------------
964 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
966 wxToolBarToolBase
*tool
= FindById((int)id
);
970 bool toggled
= false; // just to suppress warnings
972 if ( tool
->CanBeToggled() )
974 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
975 toggled
= (state
& TBSTATE_CHECKED
) != 0;
977 // ignore the event when a radio button is released, as this doesn't seem to
978 // happen at all, and is handled otherwise
979 if ( tool
->GetKind() == wxITEM_RADIO
&& !toggled
)
982 tool
->Toggle(toggled
);
983 UnToggleRadioGroup(tool
);
986 // OnLeftClick() can veto the button state change - for buttons which
987 // may be toggled only, of couse
988 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
991 tool
->Toggle(!toggled
);
993 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
999 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
1001 WXLPARAM
*WXUNUSED(result
))
1004 // First check if this applies to us
1005 NMHDR
*hdr
= (NMHDR
*)lParam
;
1007 // the tooltips control created by the toolbar is sometimes Unicode, even
1008 // in an ANSI application - this seems to be a bug in comctl32.dll v5
1009 UINT code
= hdr
->code
;
1010 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
1013 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
1014 if ( toolTipWnd
!= hdr
->hwndFrom
)
1017 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
1018 int id
= (int)ttText
->hdr
.idFrom
;
1020 wxToolBarToolBase
*tool
= FindById(id
);
1024 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
1030 // ----------------------------------------------------------------------------
1032 // ----------------------------------------------------------------------------
1034 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
1036 wxToolBarBase::SetToolBitmapSize(size
);
1038 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
1041 void wxToolBar::SetRows(int nRows
)
1043 if ( nRows
== m_maxRows
)
1045 // avoid resizing the frame uselessly
1049 // TRUE in wParam means to create at least as many rows, FALSE -
1052 ::SendMessage(GetHwnd(), TB_SETROWS
,
1053 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
1061 // The button size is bigger than the bitmap size
1062 wxSize
wxToolBar::GetToolSize() const
1064 // TB_GETBUTTONSIZE is supported from version 4.70
1065 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1066 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) \
1067 && !defined (__DIGITALMARS__)
1068 if ( wxTheApp
->GetComCtl32Version() >= 470 )
1070 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1072 return wxSize(LOWORD(dw
), HIWORD(dw
));
1075 #endif // comctl32.dll 4.70+
1078 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1083 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1086 wxToolBarToolsList::compatibility_iterator current
= tools
.GetFirst();
1088 for ( ; current
!= 0; current
= current
->GetNext() )
1091 return current
->GetData();
1093 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1094 size_t separators
= tool
->GetSeparatorsCount();
1096 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1097 // otherwise, skip as many items as the separator count, plus the
1099 index
-= separators
? separators
+ 1 : 1;
1105 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1110 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1111 // MBN: when the point ( x, y ) is close to the toolbar border
1112 // TB_HITTEST returns m_nButtons ( not -1 )
1113 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1115 // it's a separator or there is no tool at all there
1116 return (wxToolBarToolBase
*)NULL
;
1119 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1120 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1121 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1123 return m_tools
.Item((size_t)index
)->GetData();
1128 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1132 void wxToolBar::UpdateSize()
1134 // the toolbar size changed
1135 SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1137 // we must also refresh the frame after the toolbar size (possibly) changed
1138 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1141 frame
->SendSizeEvent();
1145 // ----------------------------------------------------------------------------
1147 // ---------------------------------------------------------------------------
1149 void wxToolBar::SetWindowStyleFlag(long style
)
1151 // the style bits whose changes force us to recreate the toolbar
1152 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1154 const long styleOld
= GetWindowStyle();
1156 wxToolBarBase::SetWindowStyleFlag(style
);
1158 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1159 // also fatal as we'd then try to recreate the toolbar when it's just being
1161 if ( GetToolsCount() &&
1162 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1164 // to remove the text labels, simply re-realizing the toolbar is enough
1165 // but I don't know of any way to add the text to an existing toolbar
1166 // other than by recreating it entirely
1171 // ----------------------------------------------------------------------------
1173 // ----------------------------------------------------------------------------
1175 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1177 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1178 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1181 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1183 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1184 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1187 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1189 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1190 // without, so we really need to delete the button and recreate it here
1191 wxFAIL_MSG( _T("not implemented") );
1194 // ----------------------------------------------------------------------------
1196 // ----------------------------------------------------------------------------
1198 // Responds to colour changes, and passes event on to children.
1199 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1201 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1203 // Remap the buttons
1206 // Relayout the toolbar
1207 int nrows
= m_maxRows
;
1208 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1213 // let the event propagate further
1217 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1219 if (event
.Leaving() && m_pInTool
)
1226 if (event
.RightDown())
1228 // For now, we don't have an id. Later we could
1229 // try finding the tool.
1230 OnRightClick((int)-1, event
.GetX(), event
.GetY());
1238 bool wxToolBar::HandleSize(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1240 // calculate our minor dimension ourselves - we're confusing the standard
1241 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1243 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1247 if ( GetWindowStyle() & wxTB_VERTICAL
)
1249 w
= r
.right
- r
.left
;
1252 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1259 if (HasFlag( wxTB_FLAT
))
1260 h
= r
.bottom
- r
.top
- 3;
1262 h
= r
.bottom
- r
.top
;
1265 // FIXME: hardcoded separator line height...
1266 h
+= HasFlag(wxTB_NODIVIDER
) ? 4 : 6;
1271 if ( MAKELPARAM(w
, h
) != lParam
)
1273 // size really changed
1277 // message processed
1284 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1286 // erase any dummy separators which we used for aligning the controls if
1289 // first of all, do we have any controls at all?
1290 wxToolBarToolsList::compatibility_iterator node
;
1291 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1293 if ( node
->GetData()->IsControl() )
1299 // no controls, nothing to erase
1303 // prepare the DC on which we'll be drawing
1304 wxClientDC
dc(this);
1305 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1306 dc
.SetPen(*wxTRANSPARENT_PEN
);
1309 if ( !GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1311 // nothing to redraw anyhow
1316 wxCopyRECTToRect(r
, rectUpdate
);
1318 dc
.SetClippingRegion(rectUpdate
);
1320 // draw the toolbar tools, separators &c normally
1321 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1323 // for each control in the toolbar find all the separators intersecting it
1326 // NB: this is really the only way to do it as we don't know if a separator
1327 // corresponds to a control (i.e. is a dummy one) or a real one
1329 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1331 wxToolBarToolBase
*tool
= node
->GetData();
1332 if ( tool
->IsControl() )
1334 // get the control rect in our client coords
1335 wxControl
*control
= tool
->GetControl();
1336 wxRect rectCtrl
= control
->GetRect();
1338 // iterate over all buttons
1340 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1341 for ( int n
= 0; n
< count
; n
++ )
1343 // is it a separator?
1344 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1347 wxLogDebug(_T("TB_GETBUTTON failed?"));
1352 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1355 // get the bounding rect of the separator
1357 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1360 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1365 // does it intersect the control?
1367 wxCopyRECTToRect(r
, rectItem
);
1368 if ( rectCtrl
.Intersects(rectItem
) )
1370 // yes, do erase it!
1371 dc
.DrawRectangle(rectItem
);
1373 // Necessary in case we use a no-paint-on-size
1374 // style in the parent: the controls can disappear
1375 control
->Refresh(FALSE
);
1384 void wxToolBar::HandleMouseMove(WXWPARAM
WXUNUSED(wParam
), WXLPARAM lParam
)
1386 wxCoord x
= GET_X_LPARAM(lParam
),
1387 y
= GET_Y_LPARAM(lParam
);
1388 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1390 // cursor left current tool
1391 if( tool
!= m_pInTool
&& !tool
)
1397 // cursor entered a tool
1398 if( tool
!= m_pInTool
&& tool
)
1401 OnMouseEnter( tool
->GetId() );
1405 WXLRESULT
wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1410 if ( HandleSize(wParam
, lParam
) )
1415 // we don't handle mouse moves, so always pass the message to
1416 // wxControl::MSWWindowProc
1417 HandleMouseMove(wParam
, lParam
);
1421 if ( HandlePaint(wParam
, lParam
) )
1425 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1428 // ----------------------------------------------------------------------------
1429 // private functions
1430 // ----------------------------------------------------------------------------
1432 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1438 wxLogLastError(_T("CreateCompatibleDC"));
1443 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1447 wxLogLastError(_T("SelectObject"));
1452 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1454 for ( int i
= 0; i
< width
; i
++ )
1456 for ( int j
= 0; j
< height
; j
++ )
1458 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1460 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1462 COLORREF col
= cmap
[k
].from
;
1463 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1464 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1465 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1467 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1476 // VZ: I leave here my attempts to map the bitmap to the system colours
1477 // faster by using BitBlt() even though it's broken currently - but
1478 // maybe someone else can finish it? It should be faster than iterating
1479 // over all pixels...
1481 MemoryHDC hdcMask
, hdcDst
;
1482 if ( !hdcMask
|| !hdcDst
)
1484 wxLogLastError(_T("CreateCompatibleDC"));
1489 // create the target bitmap
1490 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1493 wxLogLastError(_T("CreateCompatibleBitmap"));
1498 // create the monochrome mask bitmap
1499 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1502 wxLogLastError(_T("CreateBitmap(mono)"));
1504 ::DeleteObject(hbmpDst
);
1509 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1510 bmpInMask(hdcMask
, hbmpMask
);
1513 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1515 // create the mask for this colour
1516 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1517 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1519 // replace this colour with the target one in the dst bitmap
1520 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1521 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1523 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1526 MAKEROP4(PATCOPY
, SRCCOPY
));
1528 (void)::SelectObject(hdcDst
, hbrOld
);
1529 ::DeleteObject(hbr
);
1532 ::DeleteObject((HBITMAP
)bitmap
);
1534 return (WXHBITMAP
)hbmpDst
;
1538 #endif // wxUSE_TOOLBAR && Win95