1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/tbar95.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
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 && defined(__WIN95__) && wxUSE_TOOLBAR_NATIVE
44 #include "wx/toolbar.h"
46 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
50 #include "wx/msw/private.h"
52 #if defined(__WIN95__) && !(defined(__GNUWIN32_OLD__) && !defined(__CYGWIN10__))
55 #include "wx/msw/gnuwin32/extra.h"
58 #include "wx/app.h" // for GetComCtl32Version
60 #if defined(__MWERKS__) && defined(__WXMSW__)
61 // including <windef.h> for max definition doesn't seem
62 // to work using CodeWarrior 6 Windows. So we define it
63 // here. (Otherwise we get a undefined identifier 'max'
64 // later on in this file.) (Added by dimitri@shortcut.nl)
66 # define max(a,b) (((a) > (b)) ? (a) : (b))
71 // ----------------------------------------------------------------------------
72 // conditional compilation
73 // ----------------------------------------------------------------------------
75 // wxWindows previously always considered that toolbar buttons have light grey
76 // (0xc0c0c0) background and so ignored any bitmap masks - however, this
77 // doesn't work with XPMs which then appear to have black background. To make
78 // this work, we must respect the bitmap masks - which we do now. This should
79 // be ok in any case, but to restore 100% compatible with the old version
80 // behaviour, you can set this to 0.
81 #define USE_BITMAP_MASKS 1
83 // ----------------------------------------------------------------------------
85 // ----------------------------------------------------------------------------
87 // these standard constants are not always defined in compilers headers
91 #define TBSTYLE_LIST 0x1000
92 #define TBSTYLE_FLAT 0x0800
95 #ifndef TBSTYLE_TRANSPARENT
96 #define TBSTYLE_TRANSPARENT 0x8000
99 #ifndef TBSTYLE_TOOLTIPS
100 #define TBSTYLE_TOOLTIPS 0x0100
105 #define TB_SETSTYLE (WM_USER + 56)
106 #define TB_GETSTYLE (WM_USER + 57)
110 #define TB_HITTEST (WM_USER + 69)
113 // these values correspond to those used by comctl32.dll
114 #define DEFAULTBITMAPX 16
115 #define DEFAULTBITMAPY 15
116 #define DEFAULTBUTTONX 24
117 #define DEFAULTBUTTONY 24
118 #define DEFAULTBARHEIGHT 27
120 // ----------------------------------------------------------------------------
122 // ----------------------------------------------------------------------------
124 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxToolBarBase
)
126 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
127 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
128 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
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
; }
182 // ============================================================================
184 // ============================================================================
186 // ----------------------------------------------------------------------------
188 // ----------------------------------------------------------------------------
190 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
191 const wxString
& label
,
192 const wxBitmap
& bmpNormal
,
193 const wxBitmap
& bmpDisabled
,
195 wxObject
*clientData
,
196 const wxString
& shortHelp
,
197 const wxString
& longHelp
)
199 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
200 clientData
, shortHelp
, longHelp
);
203 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
205 return new wxToolBarTool(this, control
);
208 // ----------------------------------------------------------------------------
209 // wxToolBar construction
210 // ----------------------------------------------------------------------------
212 void wxToolBar::Init()
218 m_defaultWidth
= DEFAULTBITMAPX
;
219 m_defaultHeight
= DEFAULTBITMAPY
;
224 bool wxToolBar::Create(wxWindow
*parent
,
229 const wxString
& name
)
231 // common initialisation
232 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
235 // MSW-specific initialisation
236 if ( !MSWCreateToolbar(pos
, size
) )
239 // set up the colors and fonts
240 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR
));
241 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
246 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
248 if ( !MSWCreateControl(TOOLBARCLASSNAME
, wxEmptyString
, pos
, size
) )
251 // toolbar-specific post initialisation
252 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
257 void wxToolBar::Recreate()
259 const HWND hwndOld
= GetHwnd();
262 // we haven't been created yet, no need to recreate
266 // get the position and size before unsubclassing the old toolbar
267 const wxPoint pos
= GetPosition();
268 const wxSize size
= GetSize();
272 if ( !MSWCreateToolbar(pos
, size
) )
275 wxFAIL_MSG( _T("recreating the toolbar failed") );
280 // reparent all our children under the new toolbar
281 for ( wxWindowList::Node
*node
= m_children
.GetFirst();
283 node
= node
->GetNext() )
285 wxWindow
*win
= node
->GetData();
286 if ( !win
->IsTopLevel() )
287 ::SetParent(GetHwndOf(win
), GetHwnd());
290 // only destroy the old toolbar now -- after all the children had been
292 ::DestroyWindow(hwndOld
);
294 // it is for the old bitmap control and can't be used with the new one
297 ::DeleteObject((HBITMAP
) m_hBitmap
);
305 wxToolBar::~wxToolBar()
307 // we must refresh the frame size when the toolbar is deleted but the frame
308 // is not - otherwise toolbar leaves a hole in the place it used to occupy
309 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
310 if ( frame
&& !frame
->IsBeingDeleted() )
312 frame
->SendSizeEvent();
317 ::DeleteObject((HBITMAP
) m_hBitmap
);
321 wxSize
wxToolBar::DoGetBestSize() const
323 wxSize sizeBest
= GetToolSize();
324 sizeBest
.x
*= GetToolsCount();
326 // reverse horz and vertical components if necessary
327 return HasFlag(wxTB_VERTICAL
) ? wxSize(sizeBest
.y
, sizeBest
.x
) : sizeBest
;
330 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
332 // toolbars never have border, giving one to them results in broken
334 WXDWORD msStyle
= wxControl::MSWGetStyle
336 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
339 // always include this one, it never hurts and setting it later only if we
340 // do have tooltips wouldn't work
341 msStyle
|= TBSTYLE_TOOLTIPS
;
343 if ( style
& (wxTB_FLAT
| wxTB_HORZ_LAYOUT
) )
345 // static as it doesn't change during the program lifetime
346 static int s_verComCtl
= wxTheApp
->GetComCtl32Version();
348 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
349 // style with 6.00 (part of Windows XP) leads to the toolbar with
350 // incorrect background colour - and not using it still results in the
351 // correct (flat) toolbar, so don't use it there
352 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
354 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
357 if ( s_verComCtl
>= 470 && style
& wxTB_HORZ_LAYOUT
)
359 msStyle
|= TBSTYLE_LIST
;
363 if ( style
& wxTB_NODIVIDER
)
364 msStyle
|= CCS_NODIVIDER
;
366 if ( style
& wxTB_NOALIGN
)
367 msStyle
|= CCS_NOPARENTALIGN
;
369 if ( style
& wxTB_VERTICAL
)
375 // ----------------------------------------------------------------------------
376 // adding/removing tools
377 // ----------------------------------------------------------------------------
379 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
381 // nothing special to do here - we really create the toolbar buttons in
388 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
390 // the main difficulty we have here is with the controls in the toolbars:
391 // as we (sometimes) use several separators to cover up the space used by
392 // them, the indices are not the same for us and the toolbar
394 // first determine the position of the first button to delete: it may be
395 // different from pos if we use several separators to cover the space used
397 wxToolBarToolsList::Node
*node
;
398 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
400 wxToolBarToolBase
*tool2
= node
->GetData();
403 // let node point to the next node in the list
404 node
= node
->GetNext();
409 if ( tool2
->IsControl() )
411 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
415 // now determine the number of buttons to delete and the area taken by them
416 size_t nButtonsToDelete
= 1;
418 // get the size of the button we're going to delete
420 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
422 wxLogLastError(_T("TB_GETITEMRECT"));
425 int width
= r
.right
- r
.left
;
427 if ( tool
->IsControl() )
429 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
431 width
*= nButtonsToDelete
;
434 // do delete all buttons
435 m_nButtons
-= nButtonsToDelete
;
436 while ( nButtonsToDelete
-- > 0 )
438 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
440 wxLogLastError(wxT("TB_DELETEBUTTON"));
448 // and finally reposition all the controls after this button (the toolbar
449 // takes care of all normal items)
450 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
452 wxToolBarToolBase
*tool2
= node
->GetData();
453 if ( tool2
->IsControl() )
456 wxControl
*control
= tool2
->GetControl();
457 control
->GetPosition(&x
, NULL
);
458 control
->Move(x
- width
, -1);
465 bool wxToolBar::Realize()
467 const size_t nTools
= GetToolsCount();
474 const bool isVertical
= HasFlag(wxTB_VERTICAL
);
476 // delete all old buttons, if any
477 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
479 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
481 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
485 // First, add the bitmap: we use one bitmap for all toolbar buttons
486 // ----------------------------------------------------------------
488 wxToolBarToolsList::Node
*node
;
492 if ( HasFlag(wxTB_NOICONS
) )
494 // no icons, don't leave space for them
498 else // do show icons
500 // if we already have a bitmap, we'll replace the existing one --
501 // otherwise we'll install a new one
502 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
504 sizeBmp
.x
= m_defaultWidth
;
505 sizeBmp
.y
= m_defaultHeight
;
507 const wxCoord totalBitmapWidth
= m_defaultWidth
* nTools
,
508 totalBitmapHeight
= m_defaultHeight
;
510 // Create a bitmap and copy all the tool bitmaps to it
512 wxMemoryDC dcAllButtons
;
513 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
514 dcAllButtons
.SelectObject(bitmap
);
515 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
516 dcAllButtons
.Clear();
518 m_hBitmap
= bitmap
.GetHBITMAP();
519 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
520 #else // !USE_BITMAP_MASKS
521 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
526 wxLogLastError(_T("CreateCompatibleBitmap"));
531 m_hBitmap
= (WXHBITMAP
)hBitmap
;
534 SelectInHDC
hdcSelector(memoryDC
, hBitmap
);
537 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
539 // the button position
542 // the number of buttons (not separators)
545 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
547 wxToolBarToolBase
*tool
= node
->GetData();
548 if ( tool
->IsButton() )
550 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
554 // notice the last parameter: do use mask
555 dcAllButtons
.DrawBitmap(bmp
, x
, 0, TRUE
);
556 #else // !USE_BITMAP_MASKS
557 SelectInHDC
hdcSelector2(memoryDC2
, GetHbitmapOf(bmp
));
558 if ( !BitBlt(memoryDC
,
559 x
, 0, m_defaultWidth
, m_defaultHeight
,
563 wxLogLastError(wxT("BitBlt"));
565 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
569 wxFAIL_MSG( _T("invalid tool button bitmap") );
572 // still inc width and number of buttons because otherwise the
573 // subsequent buttons will all be shifted which is rather confusing
574 // (and like this you'd see immediately which bitmap was bad)
581 dcAllButtons
.SelectObject(wxNullBitmap
);
583 // don't delete this HBITMAP!
584 bitmap
.SetHBITMAP(0);
585 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
587 // Map to system colours
588 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
589 totalBitmapWidth
, totalBitmapHeight
);
591 bool addBitmap
= TRUE
;
593 if ( oldToolBarBitmap
)
595 #ifdef TB_REPLACEBITMAP
596 if ( wxTheApp
->GetComCtl32Version() >= 400 )
598 TBREPLACEBITMAP replaceBitmap
;
599 replaceBitmap
.hInstOld
= NULL
;
600 replaceBitmap
.hInstNew
= NULL
;
601 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
602 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
603 replaceBitmap
.nButtons
= nButtons
;
604 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
605 0, (LPARAM
) &replaceBitmap
) )
607 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
610 ::DeleteObject(oldToolBarBitmap
);
616 #endif // TB_REPLACEBITMAP
618 // we can't replace the old bitmap, so we will add another one
619 // (awfully inefficient, but what else to do?) and shift the bitmap
620 // indices accordingly
623 bitmapId
= m_nButtons
;
627 if ( addBitmap
) // no old bitmap or we can't replace it
629 TBADDBITMAP addBitmap
;
631 addBitmap
.nID
= (UINT
) hBitmap
;
632 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
633 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
635 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
640 // don't call SetToolBitmapSize() as we don't want to change the values of
641 // m_defaultWidth/Height
642 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
643 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
645 wxLogLastError(_T("TB_SETBITMAPSIZE"));
648 // Next add the buttons and separators
649 // -----------------------------------
651 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
653 // this array will hold the indices of all controls in the toolbar
654 wxArrayInt controlIds
;
656 bool lastWasRadio
= FALSE
;
658 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
660 wxToolBarToolBase
*tool
= node
->GetData();
662 // don't add separators to the vertical toolbar - looks ugly
663 //if ( isVertical && tool->IsSeparator() )
666 TBBUTTON
& button
= buttons
[i
];
668 wxZeroMemory(button
);
670 bool isRadio
= FALSE
;
671 switch ( tool
->GetStyle() )
673 case wxTOOL_STYLE_CONTROL
:
674 button
.idCommand
= tool
->GetId();
675 // fall through: create just a separator too
677 case wxTOOL_STYLE_SEPARATOR
:
678 button
.fsState
= TBSTATE_ENABLED
;
679 button
.fsStyle
= TBSTYLE_SEP
;
682 case wxTOOL_STYLE_BUTTON
:
683 if ( !HasFlag(wxTB_NOICONS
) )
684 button
.iBitmap
= bitmapId
;
686 if ( HasFlag(wxTB_TEXT
) )
688 const wxString
& label
= tool
->GetLabel();
689 if ( !label
.empty() )
691 button
.iString
= (int)label
.c_str();
695 button
.idCommand
= tool
->GetId();
697 if ( tool
->IsEnabled() )
698 button
.fsState
|= TBSTATE_ENABLED
;
699 if ( tool
->IsToggled() )
700 button
.fsState
|= TBSTATE_CHECKED
;
702 switch ( tool
->GetKind() )
705 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
709 // the first item in the radio group is checked by
710 // default to be consistent with wxGTK and the menu
712 button
.fsState
|= TBSTATE_CHECKED
;
721 button
.fsStyle
= TBSTYLE_CHECK
;
725 wxFAIL_MSG( _T("unexpected toolbar button kind") );
729 button
.fsStyle
= TBSTYLE_BUTTON
;
736 lastWasRadio
= isRadio
;
741 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
743 wxLogLastError(wxT("TB_ADDBUTTONS"));
748 // Deal with the controls finally
749 // ------------------------------
751 // adjust the controls size to fit nicely in the toolbar
754 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
756 wxToolBarToolBase
*tool
= node
->GetData();
758 // we calculate the running y coord for vertical toolbars so we need to
759 // get the items size for all items but for the horizontal ones we
760 // don't need to deal with the non controls
761 bool isControl
= tool
->IsControl();
762 if ( !isControl
&& !isVertical
)
765 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
766 // latter only appeared in v4.70 of comctl32.dll
768 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
769 index
, (LPARAM
)(LPRECT
)&r
) )
771 wxLogLastError(wxT("TB_GETITEMRECT"));
776 // can only be control if isVertical
777 y
+= r
.bottom
- r
.top
;
782 wxControl
*control
= tool
->GetControl();
784 wxSize size
= control
->GetSize();
786 // the position of the leftmost controls corner
789 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
790 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
791 // available in headers, now check whether it is available now
793 if ( wxTheApp
->GetComCtl32Version() >= 471 )
795 // set the (underlying) separators width to be that of the
798 tbbi
.cbSize
= sizeof(tbbi
);
799 tbbi
.dwMask
= TBIF_SIZE
;
801 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
802 tool
->GetId(), (LPARAM
)&tbbi
) )
804 // the id is probably invalid?
805 wxLogLastError(wxT("TB_SETBUTTONINFO"));
809 #endif // comctl32.dll 4.71
810 // TB_SETBUTTONINFO unavailable
812 // try adding several separators to fit the controls width
813 int widthSep
= r
.right
- r
.left
;
819 tbb
.fsState
= TBSTATE_ENABLED
;
820 tbb
.fsStyle
= TBSTYLE_SEP
;
822 size_t nSeparators
= size
.x
/ widthSep
;
823 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
825 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
826 index
, (LPARAM
)&tbb
) )
828 wxLogLastError(wxT("TB_INSERTBUTTON"));
834 // remember the number of separators we used - we'd have to
835 // delete all of them later
836 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
838 // adjust the controls width to exactly cover the separators
839 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
842 // position the control itself correctly vertically
843 int height
= r
.bottom
- r
.top
;
844 int diff
= height
- size
.y
;
847 // the control is too high, resize to fit
848 control
->SetSize(-1, height
- 2);
859 y
+= height
+ 2*GetMargins().y
;
861 else // horizontal toolbar
869 control
->Move(left
, top
+ (diff
+ 1) / 2);
872 // the max index is the "real" number of buttons - i.e. counting even the
873 // separators which we added just for aligning the controls
878 if ( m_maxRows
== 0 )
880 // if not set yet, only one row
884 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
886 if ( m_maxRows
== 0 )
888 // if not set yet, have one column
896 // ----------------------------------------------------------------------------
898 // ----------------------------------------------------------------------------
900 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
902 wxToolBarToolBase
*tool
= FindById((int)id
);
906 if ( tool
->CanBeToggled() )
908 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
909 tool
->Toggle((state
& TBSTATE_CHECKED
) != 0);
912 bool toggled
= tool
->IsToggled();
914 // avoid sending the event when a radio button is released, this is not
916 if ( !tool
->CanBeToggled() || tool
->GetKind() != wxITEM_RADIO
|| toggled
)
918 // OnLeftClick() can veto the button state change - for buttons which
919 // may be toggled only, of couse
920 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
924 tool
->SetToggle(toggled
);
926 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
933 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
935 WXLPARAM
*WXUNUSED(result
))
938 // First check if this applies to us
939 NMHDR
*hdr
= (NMHDR
*)lParam
;
941 // the tooltips control created by the toolbar is sometimes Unicode, even
942 // in an ANSI application - this seems to be a bug in comctl32.dll v5
943 UINT code
= hdr
->code
;
944 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
947 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
948 if ( toolTipWnd
!= hdr
->hwndFrom
)
951 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
952 int id
= (int)ttText
->hdr
.idFrom
;
954 wxToolBarToolBase
*tool
= FindById(id
);
958 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
964 // ----------------------------------------------------------------------------
966 // ----------------------------------------------------------------------------
968 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
970 wxToolBarBase::SetToolBitmapSize(size
);
972 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
975 void wxToolBar::SetRows(int nRows
)
977 if ( nRows
== m_maxRows
)
979 // avoid resizing the frame uselessly
983 // TRUE in wParam means to create at least as many rows, FALSE -
986 ::SendMessage(GetHwnd(), TB_SETROWS
,
987 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
995 // The button size is bigger than the bitmap size
996 wxSize
wxToolBar::GetToolSize() const
998 // TB_GETBUTTONSIZE is supported from version 4.70
999 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1000 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
1001 if ( wxTheApp
->GetComCtl32Version() >= 470 )
1003 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1005 return wxSize(LOWORD(dw
), HIWORD(dw
));
1008 #endif // comctl32.dll 4.70+
1011 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1016 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1019 wxToolBarToolsList::Node
* current
= tools
.GetFirst();
1021 for ( ; current
!= 0; current
= current
->GetNext() )
1024 return current
->GetData();
1026 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1027 size_t separators
= tool
->GetSeparatorsCount();
1029 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1030 // otherwise, skip as many items as the separator count, plus the
1032 index
-= separators
? separators
+ 1 : 1;
1038 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1043 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1044 // MBN: when the point ( x, y ) is close to the toolbar border
1045 // TB_HITTEST returns m_nButtons ( not -1 )
1046 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1048 // it's a separator or there is no tool at all there
1049 return (wxToolBarToolBase
*)NULL
;
1052 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1053 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1054 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1056 return m_tools
.Item((size_t)index
)->GetData();
1061 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1065 void wxToolBar::UpdateSize()
1067 // the toolbar size changed
1068 SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1070 // we must also refresh the frame after the toolbar size (possibly) changed
1071 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1074 frame
->SendSizeEvent();
1078 // ----------------------------------------------------------------------------
1080 // ---------------------------------------------------------------------------
1082 void wxToolBar::SetWindowStyleFlag(long style
)
1084 // the style bits whose changes force us to recreate the toolbar
1085 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1087 const long styleOld
= GetWindowStyle();
1089 wxToolBarBase::SetWindowStyleFlag(style
);
1091 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1092 // also fatal as we'd then try to recreate the toolbar when it's just being
1094 if ( GetToolsCount() &&
1095 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1097 // to remove the text labels, simply re-realizing the toolbar is enough
1098 // but I don't know of any way to add the text to an existing toolbar
1099 // other than by recreating it entirely
1104 // ----------------------------------------------------------------------------
1106 // ----------------------------------------------------------------------------
1108 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1110 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1111 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1114 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1116 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1117 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1120 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1122 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1123 // without, so we really need to delete the button and recreate it here
1124 wxFAIL_MSG( _T("not implemented") );
1127 // ----------------------------------------------------------------------------
1129 // ----------------------------------------------------------------------------
1131 // Responds to colour changes, and passes event on to children.
1132 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1134 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1136 // Remap the buttons
1139 // Relayout the toolbar
1140 int nrows
= m_maxRows
;
1141 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1146 // let the event propagate further
1150 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1152 if (event
.Leaving() && m_pInTool
)
1159 if (event
.RightDown())
1161 // For now, we don't have an id. Later we could
1162 // try finding the tool.
1163 OnRightClick((int)-1, event
.GetX(), event
.GetY());
1171 bool wxToolBar::HandleSize(WXWPARAM wParam
, WXLPARAM lParam
)
1173 // calculate our minor dimension ourselves - we're confusing the standard
1174 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1176 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1180 if ( GetWindowStyle() & wxTB_VERTICAL
)
1182 w
= r
.right
- r
.left
;
1185 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1192 if (HasFlag( wxTB_FLAT
))
1193 h
= r
.bottom
- r
.top
- 3;
1195 h
= r
.bottom
- r
.top
;
1198 // FIXME: 6 is hardcoded separator line height...
1200 if (HasFlag(wxTB_NODIVIDER
))
1208 if ( MAKELPARAM(w
, h
) != lParam
)
1210 // size really changed
1214 // message processed
1221 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1223 // erase any dummy separators which we used for aligning the controls if
1226 // first of all, do we have any controls at all?
1227 wxToolBarToolsList::Node
*node
;
1228 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1230 if ( node
->GetData()->IsControl() )
1236 // no controls, nothing to erase
1240 // prepare the DC on which we'll be drawing
1241 wxClientDC
dc(this);
1242 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1243 dc
.SetPen(*wxTRANSPARENT_PEN
);
1246 if ( !GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1248 // nothing to redraw anyhow
1253 wxCopyRECTToRect(r
, rectUpdate
);
1255 dc
.SetClippingRegion(rectUpdate
);
1257 // draw the toolbar tools, separators &c normally
1258 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1260 // for each control in the toolbar find all the separators intersecting it
1263 // NB: this is really the only way to do it as we don't know if a separator
1264 // corresponds to a control (i.e. is a dummy one) or a real one
1266 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1268 wxToolBarToolBase
*tool
= node
->GetData();
1269 if ( tool
->IsControl() )
1271 // get the control rect in our client coords
1272 wxControl
*control
= tool
->GetControl();
1273 wxRect rectCtrl
= control
->GetRect();
1275 // iterate over all buttons
1277 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1278 for ( int n
= 0; n
< count
; n
++ )
1280 // is it a separator?
1281 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1284 wxLogDebug(_T("TB_GETBUTTON failed?"));
1289 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1292 // get the bounding rect of the separator
1294 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1297 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1302 // does it intersect the control?
1304 wxCopyRECTToRect(r
, rectItem
);
1305 if ( rectCtrl
.Intersects(rectItem
) )
1307 // yes, do erase it!
1308 dc
.DrawRectangle(rectItem
);
1317 void wxToolBar::HandleMouseMove(WXWPARAM wParam
, WXLPARAM lParam
)
1319 wxCoord x
= GET_X_LPARAM(lParam
),
1320 y
= GET_Y_LPARAM(lParam
);
1321 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1323 // cursor left current tool
1324 if( tool
!= m_pInTool
&& !tool
)
1330 // cursor entered a tool
1331 if( tool
!= m_pInTool
&& tool
)
1334 OnMouseEnter( tool
->GetId() );
1338 long wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1343 if ( HandleSize(wParam
, lParam
) )
1348 // we don't handle mouse moves, so always pass the message to
1349 // wxControl::MSWWindowProc
1350 HandleMouseMove(wParam
, lParam
);
1354 if ( HandlePaint(wParam
, lParam
) )
1358 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1361 // ----------------------------------------------------------------------------
1362 // private functions
1363 // ----------------------------------------------------------------------------
1365 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1371 wxLogLastError(_T("CreateCompatibleDC"));
1376 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1380 wxLogLastError(_T("SelectObject"));
1385 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1387 for ( int i
= 0; i
< width
; i
++ )
1389 for ( int j
= 0; j
< height
; j
++ )
1391 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1393 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1395 COLORREF col
= cmap
[k
].from
;
1396 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1397 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1398 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1400 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1409 // VZ: I leave here my attempts to map the bitmap to the system colours
1410 // faster by using BitBlt() even though it's broken currently - but
1411 // maybe someone else can finish it? It should be faster than iterating
1412 // over all pixels...
1414 MemoryHDC hdcMask
, hdcDst
;
1415 if ( !hdcMask
|| !hdcDst
)
1417 wxLogLastError(_T("CreateCompatibleDC"));
1422 // create the target bitmap
1423 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1426 wxLogLastError(_T("CreateCompatibleBitmap"));
1431 // create the monochrome mask bitmap
1432 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1435 wxLogLastError(_T("CreateBitmap(mono)"));
1437 ::DeleteObject(hbmpDst
);
1442 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1443 bmpInMask(hdcMask
, hbmpMask
);
1446 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1448 // create the mask for this colour
1449 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1450 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1452 // replace this colour with the target one in the dst bitmap
1453 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1454 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1456 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1459 MAKEROP4(PATCOPY
, SRCCOPY
));
1461 (void)::SelectObject(hdcDst
, hbrOld
);
1462 ::DeleteObject(hbr
);
1465 ::DeleteObject((HBITMAP
)bitmap
);
1467 return (WXHBITMAP
)hbmpDst
;
1471 #endif // wxUSE_TOOLBAR && Win95