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
, _T(""), 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
)
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
;
358 if ( style
& wxTB_NODIVIDER
)
359 msStyle
|= CCS_NODIVIDER
;
361 if ( style
& wxTB_NOALIGN
)
362 msStyle
|= CCS_NOPARENTALIGN
;
364 if ( style
& wxTB_VERTICAL
)
370 // ----------------------------------------------------------------------------
371 // adding/removing tools
372 // ----------------------------------------------------------------------------
374 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
376 // nothing special to do here - we really create the toolbar buttons in
383 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
385 // the main difficulty we have here is with the controls in the toolbars:
386 // as we (sometimes) use several separators to cover up the space used by
387 // them, the indices are not the same for us and the toolbar
389 // first determine the position of the first button to delete: it may be
390 // different from pos if we use several separators to cover the space used
392 wxToolBarToolsList::Node
*node
;
393 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
395 wxToolBarToolBase
*tool2
= node
->GetData();
398 // let node point to the next node in the list
399 node
= node
->GetNext();
404 if ( tool2
->IsControl() )
406 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
410 // now determine the number of buttons to delete and the area taken by them
411 size_t nButtonsToDelete
= 1;
413 // get the size of the button we're going to delete
415 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
417 wxLogLastError(_T("TB_GETITEMRECT"));
420 int width
= r
.right
- r
.left
;
422 if ( tool
->IsControl() )
424 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
426 width
*= nButtonsToDelete
;
429 // do delete all buttons
430 m_nButtons
-= nButtonsToDelete
;
431 while ( nButtonsToDelete
-- > 0 )
433 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
435 wxLogLastError(wxT("TB_DELETEBUTTON"));
443 // and finally reposition all the controls after this button (the toolbar
444 // takes care of all normal items)
445 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
447 wxToolBarToolBase
*tool2
= node
->GetData();
448 if ( tool2
->IsControl() )
451 wxControl
*control
= tool2
->GetControl();
452 control
->GetPosition(&x
, NULL
);
453 control
->Move(x
- width
, -1);
460 bool wxToolBar::Realize()
462 const size_t nTools
= GetToolsCount();
469 const bool isVertical
= HasFlag(wxTB_VERTICAL
);
471 // delete all old buttons, if any
472 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
474 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
476 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
480 // First, add the bitmap: we use one bitmap for all toolbar buttons
481 // ----------------------------------------------------------------
483 wxToolBarToolsList::Node
*node
;
487 if ( HasFlag(wxTB_NOICONS
) )
489 // no icons, don't leave space for them
493 else // do show icons
495 // if we already have a bitmap, we'll replace the existing one --
496 // otherwise we'll install a new one
497 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
499 sizeBmp
.x
= m_defaultWidth
;
500 sizeBmp
.y
= m_defaultHeight
;
502 const wxCoord totalBitmapWidth
= m_defaultWidth
* nTools
,
503 totalBitmapHeight
= m_defaultHeight
;
505 // Create a bitmap and copy all the tool bitmaps to it
507 wxMemoryDC dcAllButtons
;
508 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
509 dcAllButtons
.SelectObject(bitmap
);
510 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
511 dcAllButtons
.Clear();
513 m_hBitmap
= bitmap
.GetHBITMAP();
514 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
515 #else // !USE_BITMAP_MASKS
516 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
521 wxLogLastError(_T("CreateCompatibleBitmap"));
526 m_hBitmap
= (WXHBITMAP
)hBitmap
;
529 SelectInHDC
hdcSelector(memoryDC
, hBitmap
);
532 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
534 // the button position
537 // the number of buttons (not separators)
540 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
542 wxToolBarToolBase
*tool
= node
->GetData();
543 if ( tool
->IsButton() )
545 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
549 // notice the last parameter: do use mask
550 dcAllButtons
.DrawBitmap(bmp
, x
, 0, TRUE
);
551 #else // !USE_BITMAP_MASKS
552 SelectInHDC
hdcSelector2(memoryDC2
, GetHbitmapOf(bmp
));
553 if ( !BitBlt(memoryDC
,
554 x
, 0, m_defaultWidth
, m_defaultHeight
,
558 wxLogLastError(wxT("BitBlt"));
560 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
564 wxFAIL_MSG( _T("invalid tool button bitmap") );
567 // still inc width and number of buttons because otherwise the
568 // subsequent buttons will all be shifted which is rather confusing
569 // (and like this you'd see immediately which bitmap was bad)
576 dcAllButtons
.SelectObject(wxNullBitmap
);
578 // don't delete this HBITMAP!
579 bitmap
.SetHBITMAP(0);
580 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
582 // Map to system colours
583 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
584 totalBitmapWidth
, totalBitmapHeight
);
586 bool addBitmap
= TRUE
;
588 if ( oldToolBarBitmap
)
590 #ifdef TB_REPLACEBITMAP
591 if ( wxTheApp
->GetComCtl32Version() >= 400 )
593 TBREPLACEBITMAP replaceBitmap
;
594 replaceBitmap
.hInstOld
= NULL
;
595 replaceBitmap
.hInstNew
= NULL
;
596 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
597 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
598 replaceBitmap
.nButtons
= nButtons
;
599 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
600 0, (LPARAM
) &replaceBitmap
) )
602 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
605 ::DeleteObject(oldToolBarBitmap
);
611 #endif // TB_REPLACEBITMAP
613 // we can't replace the old bitmap, so we will add another one
614 // (awfully inefficient, but what else to do?) and shift the bitmap
615 // indices accordingly
618 bitmapId
= m_nButtons
;
622 if ( addBitmap
) // no old bitmap or we can't replace it
624 TBADDBITMAP addBitmap
;
626 addBitmap
.nID
= (UINT
) hBitmap
;
627 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
628 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
630 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
635 // don't call SetToolBitmapSize() as we don't want to change the values of
636 // m_defaultWidth/Height
637 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
638 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
640 wxLogLastError(_T("TB_SETBITMAPSIZE"));
643 // Next add the buttons and separators
644 // -----------------------------------
646 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
648 // this array will hold the indices of all controls in the toolbar
649 wxArrayInt controlIds
;
651 bool lastWasRadio
= FALSE
;
653 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
655 wxToolBarToolBase
*tool
= node
->GetData();
657 // don't add separators to the vertical toolbar - looks ugly
658 //if ( isVertical && tool->IsSeparator() )
661 TBBUTTON
& button
= buttons
[i
];
663 wxZeroMemory(button
);
665 bool isRadio
= FALSE
;
666 switch ( tool
->GetStyle() )
668 case wxTOOL_STYLE_CONTROL
:
669 button
.idCommand
= tool
->GetId();
670 // fall through: create just a separator too
672 case wxTOOL_STYLE_SEPARATOR
:
673 button
.fsState
= TBSTATE_ENABLED
;
674 button
.fsStyle
= TBSTYLE_SEP
;
677 case wxTOOL_STYLE_BUTTON
:
678 if ( !HasFlag(wxTB_NOICONS
) )
679 button
.iBitmap
= bitmapId
;
681 if ( HasFlag(wxTB_TEXT
) )
683 const wxString
& label
= tool
->GetLabel();
684 if ( !label
.empty() )
686 button
.iString
= (int)label
.c_str();
690 button
.idCommand
= tool
->GetId();
692 if ( tool
->IsEnabled() )
693 button
.fsState
|= TBSTATE_ENABLED
;
694 if ( tool
->IsToggled() )
695 button
.fsState
|= TBSTATE_CHECKED
;
697 switch ( tool
->GetKind() )
700 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
704 // the first item in the radio group is checked by
705 // default to be consistent with wxGTK and the menu
707 button
.fsState
|= TBSTATE_CHECKED
;
716 button
.fsStyle
= TBSTYLE_CHECK
;
720 wxFAIL_MSG( _T("unexpected toolbar button kind") );
724 button
.fsStyle
= TBSTYLE_BUTTON
;
731 lastWasRadio
= isRadio
;
736 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
738 wxLogLastError(wxT("TB_ADDBUTTONS"));
743 // Deal with the controls finally
744 // ------------------------------
746 // adjust the controls size to fit nicely in the toolbar
749 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
751 wxToolBarToolBase
*tool
= node
->GetData();
753 // we calculate the running y coord for vertical toolbars so we need to
754 // get the items size for all items but for the horizontal ones we
755 // don't need to deal with the non controls
756 bool isControl
= tool
->IsControl();
757 if ( !isControl
&& !isVertical
)
760 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
761 // latter only appeared in v4.70 of comctl32.dll
763 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
764 index
, (LPARAM
)(LPRECT
)&r
) )
766 wxLogLastError(wxT("TB_GETITEMRECT"));
771 // can only be control if isVertical
772 y
+= r
.bottom
- r
.top
;
777 wxControl
*control
= tool
->GetControl();
779 wxSize size
= control
->GetSize();
781 // the position of the leftmost controls corner
784 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
785 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
786 // available in headers, now check whether it is available now
788 if ( wxTheApp
->GetComCtl32Version() >= 471 )
790 // set the (underlying) separators width to be that of the
793 tbbi
.cbSize
= sizeof(tbbi
);
794 tbbi
.dwMask
= TBIF_SIZE
;
796 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
797 tool
->GetId(), (LPARAM
)&tbbi
) )
799 // the id is probably invalid?
800 wxLogLastError(wxT("TB_SETBUTTONINFO"));
804 #endif // comctl32.dll 4.71
805 // TB_SETBUTTONINFO unavailable
807 // try adding several separators to fit the controls width
808 int widthSep
= r
.right
- r
.left
;
814 tbb
.fsState
= TBSTATE_ENABLED
;
815 tbb
.fsStyle
= TBSTYLE_SEP
;
817 size_t nSeparators
= size
.x
/ widthSep
;
818 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
820 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
821 index
, (LPARAM
)&tbb
) )
823 wxLogLastError(wxT("TB_INSERTBUTTON"));
829 // remember the number of separators we used - we'd have to
830 // delete all of them later
831 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
833 // adjust the controls width to exactly cover the separators
834 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
837 // position the control itself correctly vertically
838 int height
= r
.bottom
- r
.top
;
839 int diff
= height
- size
.y
;
842 // the control is too high, resize to fit
843 control
->SetSize(-1, height
- 2);
854 y
+= height
+ 2*GetMargins().y
;
856 else // horizontal toolbar
864 control
->Move(left
, top
+ (diff
+ 1) / 2);
867 // the max index is the "real" number of buttons - i.e. counting even the
868 // separators which we added just for aligning the controls
873 if ( m_maxRows
== 0 )
875 // if not set yet, only one row
879 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
881 if ( m_maxRows
== 0 )
883 // if not set yet, have one column
891 // ----------------------------------------------------------------------------
893 // ----------------------------------------------------------------------------
895 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
897 wxToolBarToolBase
*tool
= FindById((int)id
);
901 if ( tool
->CanBeToggled() )
903 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
904 tool
->Toggle((state
& TBSTATE_CHECKED
) != 0);
907 bool toggled
= tool
->IsToggled();
909 // avoid sending the event when a radio button is released, this is not
911 if ( !tool
->CanBeToggled() || tool
->GetKind() != wxITEM_RADIO
|| toggled
)
913 // OnLeftClick() can veto the button state change - for buttons which
914 // may be toggled only, of couse
915 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
919 tool
->SetToggle(toggled
);
921 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
928 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
930 WXLPARAM
*WXUNUSED(result
))
933 // First check if this applies to us
934 NMHDR
*hdr
= (NMHDR
*)lParam
;
936 // the tooltips control created by the toolbar is sometimes Unicode, even
937 // in an ANSI application - this seems to be a bug in comctl32.dll v5
938 UINT code
= hdr
->code
;
939 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
942 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
943 if ( toolTipWnd
!= hdr
->hwndFrom
)
946 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
947 int id
= (int)ttText
->hdr
.idFrom
;
949 wxToolBarToolBase
*tool
= FindById(id
);
953 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
959 // ----------------------------------------------------------------------------
961 // ----------------------------------------------------------------------------
963 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
965 wxToolBarBase::SetToolBitmapSize(size
);
967 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
970 void wxToolBar::SetRows(int nRows
)
972 if ( nRows
== m_maxRows
)
974 // avoid resizing the frame uselessly
978 // TRUE in wParam means to create at least as many rows, FALSE -
981 ::SendMessage(GetHwnd(), TB_SETROWS
,
982 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
990 // The button size is bigger than the bitmap size
991 wxSize
wxToolBar::GetToolSize() const
993 // TB_GETBUTTONSIZE is supported from version 4.70
994 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
995 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
996 if ( wxTheApp
->GetComCtl32Version() >= 470 )
998 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1000 return wxSize(LOWORD(dw
), HIWORD(dw
));
1003 #endif // comctl32.dll 4.70+
1006 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1011 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1014 wxToolBarToolsList::Node
* current
= tools
.GetFirst();
1016 for ( ; current
!= 0; current
= current
->GetNext() )
1019 return current
->GetData();
1021 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1022 size_t separators
= tool
->GetSeparatorsCount();
1024 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1025 // otherwise, skip as many items as the separator count, plus the
1027 index
-= separators
? separators
+ 1 : 1;
1033 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1038 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1039 // MBN: when the point ( x, y ) is close to the toolbar border
1040 // TB_HITTEST returns m_nButtons ( not -1 )
1041 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1043 // it's a separator or there is no tool at all there
1044 return (wxToolBarToolBase
*)NULL
;
1047 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1048 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1049 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1051 return m_tools
.Item((size_t)index
)->GetData();
1056 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1060 void wxToolBar::UpdateSize()
1062 // the toolbar size changed
1063 SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1065 // we must also refresh the frame after the toolbar size (possibly) changed
1066 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1069 frame
->SendSizeEvent();
1073 // ----------------------------------------------------------------------------
1075 // ---------------------------------------------------------------------------
1077 void wxToolBar::SetWindowStyleFlag(long style
)
1079 // the style bits whose changes force us to recreate the toolbar
1080 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1082 const long styleOld
= GetWindowStyle();
1084 wxToolBarBase::SetWindowStyleFlag(style
);
1086 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1087 // also fatal as we'd then try to recreate the toolbar when it's just being
1089 if ( GetToolsCount() &&
1090 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1092 // to remove the text labels, simply re-realizing the toolbar is enough
1093 // but I don't know of any way to add the text to an existing toolbar
1094 // other than by recreating it entirely
1099 // ----------------------------------------------------------------------------
1101 // ----------------------------------------------------------------------------
1103 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1105 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1106 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1109 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1111 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1112 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1115 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1117 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1118 // without, so we really need to delete the button and recreate it here
1119 wxFAIL_MSG( _T("not implemented") );
1122 // ----------------------------------------------------------------------------
1124 // ----------------------------------------------------------------------------
1126 // Responds to colour changes, and passes event on to children.
1127 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1129 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1131 // Remap the buttons
1134 // Relayout the toolbar
1135 int nrows
= m_maxRows
;
1136 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1141 // let the event propagate further
1145 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1147 if (event
.Leaving() && m_pInTool
)
1154 if (event
.RightDown())
1156 // For now, we don't have an id. Later we could
1157 // try finding the tool.
1158 OnRightClick((int)-1, event
.GetX(), event
.GetY());
1166 bool wxToolBar::HandleSize(WXWPARAM wParam
, WXLPARAM lParam
)
1168 // calculate our minor dimension ourselves - we're confusing the standard
1169 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1171 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1175 if ( GetWindowStyle() & wxTB_VERTICAL
)
1177 w
= r
.right
- r
.left
;
1180 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1187 if (HasFlag( wxTB_FLAT
))
1188 h
= r
.bottom
- r
.top
- 3;
1190 h
= r
.bottom
- r
.top
;
1193 // FIXME: 6 is hardcoded separator line height...
1195 if (HasFlag(wxTB_NODIVIDER
))
1203 if ( MAKELPARAM(w
, h
) != lParam
)
1205 // size really changed
1209 // message processed
1216 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1218 // erase any dummy separators which we used for aligning the controls if
1221 // first of all, do we have any controls at all?
1222 wxToolBarToolsList::Node
*node
;
1223 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1225 if ( node
->GetData()->IsControl() )
1231 // no controls, nothing to erase
1235 // prepare the DC on which we'll be drawing
1236 wxClientDC
dc(this);
1237 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1238 dc
.SetPen(*wxTRANSPARENT_PEN
);
1241 if ( !GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1243 // nothing to redraw anyhow
1248 wxCopyRECTToRect(r
, rectUpdate
);
1250 dc
.SetClippingRegion(rectUpdate
);
1252 // draw the toolbar tools, separators &c normally
1253 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1255 // for each control in the toolbar find all the separators intersecting it
1258 // NB: this is really the only way to do it as we don't know if a separator
1259 // corresponds to a control (i.e. is a dummy one) or a real one
1261 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1263 wxToolBarToolBase
*tool
= node
->GetData();
1264 if ( tool
->IsControl() )
1266 // get the control rect in our client coords
1267 wxControl
*control
= tool
->GetControl();
1268 wxRect rectCtrl
= control
->GetRect();
1270 // iterate over all buttons
1272 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1273 for ( int n
= 0; n
< count
; n
++ )
1275 // is it a separator?
1276 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1279 wxLogDebug(_T("TB_GETBUTTON failed?"));
1284 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1287 // get the bounding rect of the separator
1289 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1292 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1297 // does it intersect the control?
1299 wxCopyRECTToRect(r
, rectItem
);
1300 if ( rectCtrl
.Intersects(rectItem
) )
1302 // yes, do erase it!
1303 dc
.DrawRectangle(rectItem
);
1312 void wxToolBar::HandleMouseMove(WXWPARAM wParam
, WXLPARAM lParam
)
1314 wxCoord x
= GET_X_LPARAM(lParam
),
1315 y
= GET_Y_LPARAM(lParam
);
1316 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1318 // cursor left current tool
1319 if( tool
!= m_pInTool
&& !tool
)
1325 // cursor entered a tool
1326 if( tool
!= m_pInTool
&& tool
)
1329 OnMouseEnter( tool
->GetId() );
1333 long wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1338 if ( HandleSize(wParam
, lParam
) )
1343 // we don't handle mouse moves, so always pass the message to
1344 // wxControl::MSWWindowProc
1345 HandleMouseMove(wParam
, lParam
);
1349 if ( HandlePaint(wParam
, lParam
) )
1353 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1356 // ----------------------------------------------------------------------------
1357 // private functions
1358 // ----------------------------------------------------------------------------
1360 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1366 wxLogLastError(_T("CreateCompatibleDC"));
1371 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1375 wxLogLastError(_T("SelectObject"));
1380 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1382 for ( int i
= 0; i
< width
; i
++ )
1384 for ( int j
= 0; j
< height
; j
++ )
1386 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1388 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1390 COLORREF col
= cmap
[k
].from
;
1391 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1392 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1393 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1395 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1404 // VZ: I leave here my attempts to map the bitmap to the system colours
1405 // faster by using BitBlt() even though it's broken currently - but
1406 // maybe someone else can finish it? It should be faster than iterating
1407 // over all pixels...
1409 MemoryHDC hdcMask
, hdcDst
;
1410 if ( !hdcMask
|| !hdcDst
)
1412 wxLogLastError(_T("CreateCompatibleDC"));
1417 // create the target bitmap
1418 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1421 wxLogLastError(_T("CreateCompatibleBitmap"));
1426 // create the monochrome mask bitmap
1427 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1430 wxLogLastError(_T("CreateBitmap(mono)"));
1432 ::DeleteObject(hbmpDst
);
1437 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1438 bmpInMask(hdcMask
, hbmpMask
);
1441 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1443 // create the mask for this colour
1444 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1445 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1447 // replace this colour with the target one in the dst bitmap
1448 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1449 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1451 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1454 MAKEROP4(PATCOPY
, SRCCOPY
));
1456 (void)::SelectObject(hdcDst
, hbrOld
);
1457 ::DeleteObject(hbr
);
1460 ::DeleteObject((HBITMAP
)bitmap
);
1462 return (WXHBITMAP
)hbmpDst
;
1466 #endif // wxUSE_TOOLBAR && Win95