1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/tbar95.cpp
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
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"
54 #if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
57 #include "wx/msw/gnuwin32/extra.h"
62 #include "wx/msw/dib.h"
63 #include "wx/app.h" // for GetComCtl32Version
65 #if defined(__MWERKS__) && defined(__WXMSW__)
66 // including <windef.h> for max definition doesn't seem
67 // to work using CodeWarrior 6 Windows. So we define it
68 // here. (Otherwise we get a undefined identifier 'max'
69 // later on in this file.) (Added by dimitri@shortcut.nl)
71 # define max(a,b) (((a) > (b)) ? (a) : (b))
76 // ----------------------------------------------------------------------------
77 // conditional compilation
78 // ----------------------------------------------------------------------------
80 // wxWindows previously always considered that toolbar buttons have light grey
81 // (0xc0c0c0) background and so ignored any bitmap masks - however, this
82 // doesn't work with XPMs which then appear to have black background. To make
83 // this work, we must respect the bitmap masks - which we do now. This should
84 // be ok in any case, but to restore 100% compatible with the old version
85 // behaviour, you can set this to 0.
86 #define USE_BITMAP_MASKS 1
88 // ----------------------------------------------------------------------------
90 // ----------------------------------------------------------------------------
92 // these standard constants are not always defined in compilers headers
96 #define TBSTYLE_LIST 0x1000
97 #define TBSTYLE_FLAT 0x0800
100 #ifndef TBSTYLE_TRANSPARENT
101 #define TBSTYLE_TRANSPARENT 0x8000
104 #ifndef TBSTYLE_TOOLTIPS
105 #define TBSTYLE_TOOLTIPS 0x0100
110 #define TB_SETSTYLE (WM_USER + 56)
111 #define TB_GETSTYLE (WM_USER + 57)
115 #define TB_HITTEST (WM_USER + 69)
118 // these values correspond to those used by comctl32.dll
119 #define DEFAULTBITMAPX 16
120 #define DEFAULTBITMAPY 15
121 #define DEFAULTBUTTONX 24
122 #define DEFAULTBUTTONY 24
123 #define DEFAULTBARHEIGHT 27
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
129 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxToolBarBase
)
131 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
132 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
133 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
136 // ----------------------------------------------------------------------------
138 // ----------------------------------------------------------------------------
140 class wxToolBarTool
: public wxToolBarToolBase
143 wxToolBarTool(wxToolBar
*tbar
,
145 const wxString
& label
,
146 const wxBitmap
& bmpNormal
,
147 const wxBitmap
& bmpDisabled
,
149 wxObject
*clientData
,
150 const wxString
& shortHelp
,
151 const wxString
& longHelp
)
152 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
153 clientData
, shortHelp
, longHelp
)
158 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
159 : wxToolBarToolBase(tbar
, control
)
164 virtual void SetLabel(const wxString
& label
)
166 if ( label
== m_label
)
169 wxToolBarToolBase::SetLabel(label
);
171 // we need to update the label shown in the toolbar because it has a
172 // pointer to the internal buffer of the old label
174 // TODO: use TB_SETBUTTONINFO
177 // set/get the number of separators which we use to cover the space used by
178 // a control in the toolbar
179 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
180 size_t GetSeparatorsCount() const { return m_nSepCount
; }
187 // ============================================================================
189 // ============================================================================
191 // ----------------------------------------------------------------------------
193 // ----------------------------------------------------------------------------
195 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
196 const wxString
& label
,
197 const wxBitmap
& bmpNormal
,
198 const wxBitmap
& bmpDisabled
,
200 wxObject
*clientData
,
201 const wxString
& shortHelp
,
202 const wxString
& longHelp
)
204 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
205 clientData
, shortHelp
, longHelp
);
208 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
210 return new wxToolBarTool(this, control
);
213 // ----------------------------------------------------------------------------
214 // wxToolBar construction
215 // ----------------------------------------------------------------------------
217 void wxToolBar::Init()
223 m_defaultWidth
= DEFAULTBITMAPX
;
224 m_defaultHeight
= DEFAULTBITMAPY
;
229 bool wxToolBar::Create(wxWindow
*parent
,
234 const wxString
& name
)
236 // common initialisation
237 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
240 // MSW-specific initialisation
241 if ( !MSWCreateToolbar(pos
, size
) )
244 // set up the colors and fonts
245 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR
));
246 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
251 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
253 if ( !MSWCreateControl(TOOLBARCLASSNAME
, _T(""), pos
, size
) )
256 // toolbar-specific post initialisation
257 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
262 void wxToolBar::Recreate()
264 const HWND hwndOld
= GetHwnd();
267 // we haven't been created yet, no need to recreate
271 // get the position and size before unsubclassing the old toolbar
272 const wxPoint pos
= GetPosition();
273 const wxSize size
= GetSize();
277 if ( !MSWCreateToolbar(pos
, size
) )
280 wxFAIL_MSG( _T("recreating the toolbar failed") );
285 // reparent all our children under the new toolbar
286 for ( wxWindowList::Node
*node
= m_children
.GetFirst();
288 node
= node
->GetNext() )
290 wxWindow
*win
= node
->GetData();
291 if ( !win
->IsTopLevel() )
292 ::SetParent(GetHwndOf(win
), GetHwnd());
295 // only destroy the old toolbar now -- after all the children had been
297 ::DestroyWindow(hwndOld
);
299 // it is for the old bitmap control and can't be used with the new one
302 ::DeleteObject((HBITMAP
) m_hBitmap
);
310 wxToolBar::~wxToolBar()
312 // we must refresh the frame size when the toolbar is deleted but the frame
313 // is not - otherwise toolbar leaves a hole in the place it used to occupy
314 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
315 if ( frame
&& !frame
->IsBeingDeleted() )
317 frame
->SendSizeEvent();
322 ::DeleteObject((HBITMAP
) m_hBitmap
);
326 wxSize
wxToolBar::DoGetBestSize() const
328 wxSize sizeBest
= GetToolSize();
329 sizeBest
.x
*= GetToolsCount();
331 // reverse horz and vertical components if necessary
332 return HasFlag(wxTB_VERTICAL
) ? wxSize(sizeBest
.y
, sizeBest
.x
) : sizeBest
;
335 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
337 // toolbars never have border, giving one to them results in broken
339 WXDWORD msStyle
= wxControl::MSWGetStyle
341 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
344 // always include this one, it never hurts and setting it later only if we
345 // do have tooltips wouldn't work
346 msStyle
|= TBSTYLE_TOOLTIPS
;
348 if ( style
& wxTB_FLAT
)
350 // static as it doesn't change during the program lifetime
351 static int s_verComCtl
= wxTheApp
->GetComCtl32Version();
353 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
354 // style with 6.00 (part of Windows XP) leads to the toolbar with
355 // incorrect background colour - and not using it still results in the
356 // correct (flat) toolbar, so don't use it there
357 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
359 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
363 if ( style
& wxTB_NODIVIDER
)
364 msStyle
|= CCS_NODIVIDER
;
366 if ( style
& wxTB_NOALIGN
)
367 msStyle
|= CCS_NOPARENTALIGN
;
372 // ----------------------------------------------------------------------------
373 // adding/removing tools
374 // ----------------------------------------------------------------------------
376 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
378 // nothing special to do here - we really create the toolbar buttons in
385 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
387 // the main difficulty we have here is with the controls in the toolbars:
388 // as we (sometimes) use several separators to cover up the space used by
389 // them, the indices are not the same for us and the toolbar
391 // first determine the position of the first button to delete: it may be
392 // different from pos if we use several separators to cover the space used
394 wxToolBarToolsList::Node
*node
;
395 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
397 wxToolBarToolBase
*tool2
= node
->GetData();
400 // let node point to the next node in the list
401 node
= node
->GetNext();
406 if ( tool2
->IsControl() )
408 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
412 // now determine the number of buttons to delete and the area taken by them
413 size_t nButtonsToDelete
= 1;
415 // get the size of the button we're going to delete
417 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
419 wxLogLastError(_T("TB_GETITEMRECT"));
422 int width
= r
.right
- r
.left
;
424 if ( tool
->IsControl() )
426 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
428 width
*= nButtonsToDelete
;
431 // do delete all buttons
432 m_nButtons
-= nButtonsToDelete
;
433 while ( nButtonsToDelete
-- > 0 )
435 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
437 wxLogLastError(wxT("TB_DELETEBUTTON"));
445 // and finally reposition all the controls after this button (the toolbar
446 // takes care of all normal items)
447 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
449 wxToolBarToolBase
*tool2
= node
->GetData();
450 if ( tool2
->IsControl() )
453 wxControl
*control
= tool2
->GetControl();
454 control
->GetPosition(&x
, NULL
);
455 control
->Move(x
- width
, -1);
462 bool wxToolBar::Realize()
464 const size_t nTools
= GetToolsCount();
471 const bool isVertical
= HasFlag(wxTB_VERTICAL
);
473 // delete all old buttons, if any
474 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
476 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
478 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
482 // First, add the bitmap: we use one bitmap for all toolbar buttons
483 // ----------------------------------------------------------------
485 wxToolBarToolsList::Node
*node
;
489 if ( HasFlag(wxTB_NOICONS
) )
491 // no icons, don't leave space for them
495 else // do show icons
497 // if we already have a bitmap, we'll replace the existing one --
498 // otherwise we'll install a new one
499 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
501 sizeBmp
.x
= m_defaultWidth
;
502 sizeBmp
.y
= m_defaultHeight
;
504 const wxCoord totalBitmapWidth
= m_defaultWidth
* nTools
,
505 totalBitmapHeight
= m_defaultHeight
;
507 // Create a bitmap and copy all the tool bitmaps to it
509 wxMemoryDC dcAllButtons
;
510 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
511 dcAllButtons
.SelectObject(bitmap
);
512 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
513 dcAllButtons
.Clear();
515 m_hBitmap
= bitmap
.GetHBITMAP();
516 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
517 #else // !USE_BITMAP_MASKS
518 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
523 wxLogLastError(_T("CreateCompatibleBitmap"));
528 m_hBitmap
= (WXHBITMAP
)hBitmap
;
531 SelectInHDC
hdcSelector(memoryDC
, hBitmap
);
534 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
536 // the button position
539 // the number of buttons (not separators)
542 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
544 wxToolBarToolBase
*tool
= node
->GetData();
545 if ( tool
->IsButton() )
547 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
551 // notice the last parameter: do use mask
552 dcAllButtons
.DrawBitmap(bmp
, x
, 0, TRUE
);
553 #else // !USE_BITMAP_MASKS
554 SelectInHDC
hdcSelector2(memoryDC2
, GetHbitmapOf(bmp
));
555 if ( !BitBlt(memoryDC
,
556 x
, 0, m_defaultWidth
, m_defaultHeight
,
560 wxLogLastError(wxT("BitBlt"));
562 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
566 wxFAIL_MSG( _T("invalid tool button bitmap") );
569 // still inc width and number of buttons because otherwise the
570 // subsequent buttons will all be shifted which is rather confusing
571 // (and like this you'd see immediately which bitmap was bad)
578 dcAllButtons
.SelectObject(wxNullBitmap
);
580 // don't delete this HBITMAP!
581 bitmap
.SetHBITMAP(0);
582 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
584 // Map to system colours
585 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
586 totalBitmapWidth
, totalBitmapHeight
);
588 bool addBitmap
= TRUE
;
590 if ( oldToolBarBitmap
)
592 #ifdef TB_REPLACEBITMAP
593 if ( wxTheApp
->GetComCtl32Version() >= 400 )
595 TBREPLACEBITMAP replaceBitmap
;
596 replaceBitmap
.hInstOld
= NULL
;
597 replaceBitmap
.hInstNew
= NULL
;
598 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
599 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
600 replaceBitmap
.nButtons
= nButtons
;
601 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
602 0, (LPARAM
) &replaceBitmap
) )
604 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
607 ::DeleteObject(oldToolBarBitmap
);
613 #endif // TB_REPLACEBITMAP
615 // we can't replace the old bitmap, so we will add another one
616 // (awfully inefficient, but what else to do?) and shift the bitmap
617 // indices accordingly
620 bitmapId
= m_nButtons
;
624 if ( addBitmap
) // no old bitmap or we can't replace it
626 TBADDBITMAP addBitmap
;
628 addBitmap
.nID
= (UINT
) hBitmap
;
629 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
630 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
632 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
637 // don't call SetToolBitmapSize() as we don't want to change the values of
638 // m_defaultWidth/Height
639 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
640 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
642 wxLogLastError(_T("TB_SETBITMAPSIZE"));
645 // Next add the buttons and separators
646 // -----------------------------------
648 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
650 // this array will hold the indices of all controls in the toolbar
651 wxArrayInt controlIds
;
653 bool lastWasRadio
= FALSE
;
655 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
657 wxToolBarToolBase
*tool
= node
->GetData();
659 // don't add separators to the vertical toolbar - looks ugly
660 if ( isVertical
&& tool
->IsSeparator() )
663 TBBUTTON
& button
= buttons
[i
];
665 wxZeroMemory(button
);
667 bool isRadio
= FALSE
;
668 switch ( tool
->GetStyle() )
670 case wxTOOL_STYLE_CONTROL
:
671 button
.idCommand
= tool
->GetId();
672 // fall through: create just a separator too
674 case wxTOOL_STYLE_SEPARATOR
:
675 button
.fsState
= TBSTATE_ENABLED
;
676 button
.fsStyle
= TBSTYLE_SEP
;
679 case wxTOOL_STYLE_BUTTON
:
680 if ( !HasFlag(wxTB_NOICONS
) )
681 button
.iBitmap
= bitmapId
;
683 if ( HasFlag(wxTB_TEXT
) )
685 const wxString
& label
= tool
->GetLabel();
686 if ( !label
.empty() )
688 button
.iString
= (int)label
.c_str();
692 button
.idCommand
= tool
->GetId();
694 if ( tool
->IsEnabled() )
695 button
.fsState
|= TBSTATE_ENABLED
;
696 if ( tool
->IsToggled() )
697 button
.fsState
|= TBSTATE_CHECKED
;
699 switch ( tool
->GetKind() )
702 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
706 // the first item in the radio group is checked by
707 // default to be consistent with wxGTK and the menu
709 button
.fsState
|= TBSTATE_CHECKED
;
718 button
.fsStyle
= TBSTYLE_CHECK
;
722 wxFAIL_MSG( _T("unexpected toolbar button kind") );
726 button
.fsStyle
= TBSTYLE_BUTTON
;
733 lastWasRadio
= isRadio
;
738 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
740 wxLogLastError(wxT("TB_ADDBUTTONS"));
745 // Deal with the controls finally
746 // ------------------------------
748 // adjust the controls size to fit nicely in the toolbar
751 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
753 wxToolBarToolBase
*tool
= node
->GetData();
755 // we calculate the running y coord for vertical toolbars so we need to
756 // get the items size for all items but for the horizontal ones we
757 // don't need to deal with the non controls
758 bool isControl
= tool
->IsControl();
759 if ( !isControl
&& !isVertical
)
762 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
763 // latter only appeared in v4.70 of comctl32.dll
765 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
766 index
, (LPARAM
)(LPRECT
)&r
) )
768 wxLogLastError(wxT("TB_GETITEMRECT"));
773 // can only be control if isVertical
774 y
+= r
.bottom
- r
.top
;
779 wxControl
*control
= tool
->GetControl();
781 wxSize size
= control
->GetSize();
783 // the position of the leftmost controls corner
786 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
787 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
788 // available in headers, now check whether it is available now
790 if ( wxTheApp
->GetComCtl32Version() >= 471 )
792 // set the (underlying) separators width to be that of the
795 tbbi
.cbSize
= sizeof(tbbi
);
796 tbbi
.dwMask
= TBIF_SIZE
;
798 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
799 tool
->GetId(), (LPARAM
)&tbbi
) )
801 // the id is probably invalid?
802 wxLogLastError(wxT("TB_SETBUTTONINFO"));
806 #endif // comctl32.dll 4.71
807 // TB_SETBUTTONINFO unavailable
809 // try adding several separators to fit the controls width
810 int widthSep
= r
.right
- r
.left
;
816 tbb
.fsState
= TBSTATE_ENABLED
;
817 tbb
.fsStyle
= TBSTYLE_SEP
;
819 size_t nSeparators
= size
.x
/ widthSep
;
820 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
822 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
823 index
, (LPARAM
)&tbb
) )
825 wxLogLastError(wxT("TB_INSERTBUTTON"));
831 // remember the number of separators we used - we'd have to
832 // delete all of them later
833 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
835 // adjust the controls width to exactly cover the separators
836 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
839 // position the control itself correctly vertically
840 int height
= r
.bottom
- r
.top
;
841 int diff
= height
- size
.y
;
844 // the control is too high, resize to fit
845 control
->SetSize(-1, height
- 2);
856 y
+= height
+ 2*GetMargins().y
;
858 else // horizontal toolbar
866 control
->Move(left
, top
+ (diff
+ 1) / 2);
869 // the max index is the "real" number of buttons - i.e. counting even the
870 // separators which we added just for aligning the controls
875 if ( m_maxRows
== 0 )
877 // if not set yet, only one row
881 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
883 if ( m_maxRows
== 0 )
885 // if not set yet, have one column
893 // ----------------------------------------------------------------------------
895 // ----------------------------------------------------------------------------
897 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
899 wxToolBarToolBase
*tool
= FindById((int)id
);
903 if ( tool
->CanBeToggled() )
905 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
906 tool
->Toggle((state
& TBSTATE_CHECKED
) != 0);
909 bool toggled
= tool
->IsToggled();
911 // avoid sending the event when a radio button is released, this is not
913 if ( !tool
->CanBeToggled() || tool
->GetKind() != wxITEM_RADIO
|| toggled
)
915 // OnLeftClick() can veto the button state change - for buttons which
916 // may be toggled only, of couse
917 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
921 tool
->SetToggle(toggled
);
923 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
930 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
932 WXLPARAM
*WXUNUSED(result
))
935 // First check if this applies to us
936 NMHDR
*hdr
= (NMHDR
*)lParam
;
938 // the tooltips control created by the toolbar is sometimes Unicode, even
939 // in an ANSI application - this seems to be a bug in comctl32.dll v5
940 UINT code
= hdr
->code
;
941 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
944 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
945 if ( toolTipWnd
!= hdr
->hwndFrom
)
948 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
949 int id
= (int)ttText
->hdr
.idFrom
;
951 wxToolBarToolBase
*tool
= FindById(id
);
955 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
961 // ----------------------------------------------------------------------------
963 // ----------------------------------------------------------------------------
965 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
967 wxToolBarBase::SetToolBitmapSize(size
);
969 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
972 void wxToolBar::SetRows(int nRows
)
974 if ( nRows
== m_maxRows
)
976 // avoid resizing the frame uselessly
980 // TRUE in wParam means to create at least as many rows, FALSE -
983 ::SendMessage(GetHwnd(), TB_SETROWS
,
984 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
992 // The button size is bigger than the bitmap size
993 wxSize
wxToolBar::GetToolSize() const
995 // TB_GETBUTTONSIZE is supported from version 4.70
996 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
997 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
998 if ( wxTheApp
->GetComCtl32Version() >= 470 )
1000 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1002 return wxSize(LOWORD(dw
), HIWORD(dw
));
1005 #endif // comctl32.dll 4.70+
1008 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1013 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1016 wxToolBarToolsList::Node
* current
= tools
.GetFirst();
1018 for ( ; current
!= 0; current
= current
->GetNext() )
1021 return current
->GetData();
1023 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1024 size_t separators
= tool
->GetSeparatorsCount();
1026 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1027 // otherwise, skip as many items as the separator count, plus the
1029 index
-= separators
? separators
+ 1 : 1;
1035 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1040 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1041 // MBN: when the point ( x, y ) is close to the toolbar border
1042 // TB_HITTEST returns m_nButtons ( not -1 )
1043 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1045 // it's a separator or there is no tool at all there
1046 return (wxToolBarToolBase
*)NULL
;
1049 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1050 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1051 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1053 return m_tools
.Item((size_t)index
)->GetData();
1058 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1062 void wxToolBar::UpdateSize()
1064 // the toolbar size changed
1065 SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1067 // we must also refresh the frame after the toolbar size (possibly) changed
1068 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1071 frame
->SendSizeEvent();
1075 // ----------------------------------------------------------------------------
1077 // ---------------------------------------------------------------------------
1079 void wxToolBar::SetWindowStyleFlag(long style
)
1081 // the style bits whose changes force us to recreate the toolbar
1082 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1084 const long styleOld
= GetWindowStyle();
1086 wxToolBarBase::SetWindowStyleFlag(style
);
1088 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1089 // also fatal as we'd then try to recreate the toolbar when it's just being
1091 if ( GetToolsCount() &&
1092 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1094 // to remove the text labels, simply re-realizing the toolbar is enough
1095 // but I don't know of any way to add the text to an existing toolbar
1096 // other than by recreating it entirely
1101 // ----------------------------------------------------------------------------
1103 // ----------------------------------------------------------------------------
1105 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1107 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1108 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1111 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1113 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1114 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1117 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1119 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1120 // without, so we really need to delete the button and recreate it here
1121 wxFAIL_MSG( _T("not implemented") );
1124 // ----------------------------------------------------------------------------
1126 // ----------------------------------------------------------------------------
1128 // Responds to colour changes, and passes event on to children.
1129 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1131 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1133 // Remap the buttons
1136 // Relayout the toolbar
1137 int nrows
= m_maxRows
;
1138 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1143 // let the event propagate further
1147 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1149 if (event
.Leaving() && m_pInTool
)
1156 if (event
.RightDown())
1158 // For now, we don't have an id. Later we could
1159 // try finding the tool.
1160 OnRightClick((int)-1, event
.GetX(), event
.GetY());
1168 bool wxToolBar::HandleSize(WXWPARAM wParam
, WXLPARAM lParam
)
1170 // calculate our minor dimenstion ourselves - we're confusing the standard
1171 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1173 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1177 if ( GetWindowStyle() & wxTB_VERTICAL
)
1179 w
= r
.right
- r
.left
;
1182 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1189 if (HasFlag( wxTB_FLAT
))
1190 h
= r
.bottom
- r
.top
- 3;
1192 h
= r
.bottom
- r
.top
;
1195 // FIXME: 6 is hardcoded separator line height...
1197 if (HasFlag(wxTB_NODIVIDER
))
1205 if ( MAKELPARAM(w
, h
) != lParam
)
1207 // size really changed
1211 // message processed
1218 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1220 // erase any dummy separators which we used for aligning the controls if
1223 // first of all, do we have any controls at all?
1224 wxToolBarToolsList::Node
*node
;
1225 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1227 if ( node
->GetData()->IsControl() )
1233 // no controls, nothing to erase
1237 // prepare the DC on which we'll be drawing
1238 wxClientDC
dc(this);
1239 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1240 dc
.SetPen(*wxTRANSPARENT_PEN
);
1243 if ( !GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1245 // nothing to redraw anyhow
1250 wxCopyRECTToRect(r
, rectUpdate
);
1252 dc
.SetClippingRegion(rectUpdate
);
1254 // draw the toolbar tools, separators &c normally
1255 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1257 // for each control in the toolbar find all the separators intersecting it
1260 // NB: this is really the only way to do it as we don't know if a separator
1261 // corresponds to a control (i.e. is a dummy one) or a real one
1263 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1265 wxToolBarToolBase
*tool
= node
->GetData();
1266 if ( tool
->IsControl() )
1268 // get the control rect in our client coords
1269 wxControl
*control
= tool
->GetControl();
1270 wxRect rectCtrl
= control
->GetRect();
1272 // iterate over all buttons
1274 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1275 for ( int n
= 0; n
< count
; n
++ )
1277 // is it a separator?
1278 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1281 wxLogDebug(_T("TB_GETBUTTON failed?"));
1286 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1289 // get the bounding rect of the separator
1291 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1294 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1299 // does it intersect the control?
1301 wxCopyRECTToRect(r
, rectItem
);
1302 if ( rectCtrl
.Intersects(rectItem
) )
1304 // yes, do erase it!
1305 dc
.DrawRectangle(rectItem
);
1314 void wxToolBar::HandleMouseMove(WXWPARAM wParam
, WXLPARAM lParam
)
1316 wxCoord x
= GET_X_LPARAM(lParam
),
1317 y
= GET_Y_LPARAM(lParam
);
1318 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1320 // cursor left current tool
1321 if( tool
!= m_pInTool
&& !tool
)
1327 // cursor entered a tool
1328 if( tool
!= m_pInTool
&& tool
)
1331 OnMouseEnter( tool
->GetId() );
1335 long wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1340 if ( HandleSize(wParam
, lParam
) )
1345 // we don't handle mouse moves, so always pass the message to
1346 // wxControl::MSWWindowProc
1347 HandleMouseMove(wParam
, lParam
);
1351 if ( HandlePaint(wParam
, lParam
) )
1355 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1358 // ----------------------------------------------------------------------------
1359 // private functions
1360 // ----------------------------------------------------------------------------
1362 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1368 wxLogLastError(_T("CreateCompatibleDC"));
1373 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1377 wxLogLastError(_T("SelectObject"));
1382 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1384 for ( int i
= 0; i
< width
; i
++ )
1386 for ( int j
= 0; j
< height
; j
++ )
1388 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1390 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1392 COLORREF col
= cmap
[k
].from
;
1393 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1394 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1395 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1397 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1406 // VZ: I leave here my attempts to map the bitmap to the system colours
1407 // faster by using BitBlt() even though it's broken currently - but
1408 // maybe someone else can finish it? It should be faster than iterating
1409 // over all pixels...
1411 MemoryHDC hdcMask
, hdcDst
;
1412 if ( !hdcMask
|| !hdcDst
)
1414 wxLogLastError(_T("CreateCompatibleDC"));
1419 // create the target bitmap
1420 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1423 wxLogLastError(_T("CreateCompatibleBitmap"));
1428 // create the monochrome mask bitmap
1429 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1432 wxLogLastError(_T("CreateBitmap(mono)"));
1434 ::DeleteObject(hbmpDst
);
1439 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1440 bmpInMask(hdcMask
, hbmpMask
);
1443 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1445 // create the mask for this colour
1446 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1447 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1449 // replace this colour with the target one in the dst bitmap
1450 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1451 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1453 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1456 MAKEROP4(PATCOPY
, SRCCOPY
));
1458 (void)::SelectObject(hdcDst
, hbrOld
);
1459 ::DeleteObject(hbr
);
1462 ::DeleteObject((HBITMAP
)bitmap
);
1464 return (WXHBITMAP
)hbmpDst
;
1468 #endif // wxUSE_TOOLBAR && Win95