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/msw/missing.h"
60 #include "wx/app.h" // for GetComCtl32Version
62 #if defined(__MWERKS__) && defined(__WXMSW__)
63 // including <windef.h> for max definition doesn't seem
64 // to work using CodeWarrior 6 Windows. So we define it
65 // here. (Otherwise we get a undefined identifier 'max'
66 // later on in this file.) (Added by dimitri@shortcut.nl)
68 # define max(a,b) (((a) > (b)) ? (a) : (b))
73 // ----------------------------------------------------------------------------
74 // conditional compilation
75 // ----------------------------------------------------------------------------
77 // wxWindows previously always considered that toolbar buttons have light grey
78 // (0xc0c0c0) background and so ignored any bitmap masks - however, this
79 // doesn't work with XPMs which then appear to have black background. To make
80 // this work, we must respect the bitmap masks - which we do now. This should
81 // be ok in any case, but to restore 100% compatible with the old version
82 // behaviour, you can set this to 0.
83 #define USE_BITMAP_MASKS 1
85 // ----------------------------------------------------------------------------
87 // ----------------------------------------------------------------------------
89 // these standard constants are not always defined in compilers headers
93 #define TBSTYLE_LIST 0x1000
94 #define TBSTYLE_FLAT 0x0800
97 #ifndef TBSTYLE_TRANSPARENT
98 #define TBSTYLE_TRANSPARENT 0x8000
101 #ifndef TBSTYLE_TOOLTIPS
102 #define TBSTYLE_TOOLTIPS 0x0100
107 #define TB_SETSTYLE (WM_USER + 56)
108 #define TB_GETSTYLE (WM_USER + 57)
112 #define TB_HITTEST (WM_USER + 69)
115 // these values correspond to those used by comctl32.dll
116 #define DEFAULTBITMAPX 16
117 #define DEFAULTBITMAPY 15
118 #define DEFAULTBUTTONX 24
119 #define DEFAULTBUTTONY 24
120 #define DEFAULTBARHEIGHT 27
122 // ----------------------------------------------------------------------------
124 // ----------------------------------------------------------------------------
126 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxToolBarBase
)
128 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
129 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
130 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
133 // ----------------------------------------------------------------------------
135 // ----------------------------------------------------------------------------
137 class wxToolBarTool
: public wxToolBarToolBase
140 wxToolBarTool(wxToolBar
*tbar
,
142 const wxString
& label
,
143 const wxBitmap
& bmpNormal
,
144 const wxBitmap
& bmpDisabled
,
146 wxObject
*clientData
,
147 const wxString
& shortHelp
,
148 const wxString
& longHelp
)
149 : wxToolBarToolBase(tbar
, id
, label
, bmpNormal
, bmpDisabled
, kind
,
150 clientData
, shortHelp
, longHelp
)
155 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
156 : wxToolBarToolBase(tbar
, control
)
161 virtual void SetLabel(const wxString
& label
)
163 if ( label
== m_label
)
166 wxToolBarToolBase::SetLabel(label
);
168 // we need to update the label shown in the toolbar because it has a
169 // pointer to the internal buffer of the old label
171 // TODO: use TB_SETBUTTONINFO
174 // set/get the number of separators which we use to cover the space used by
175 // a control in the toolbar
176 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
177 size_t GetSeparatorsCount() const { return m_nSepCount
; }
184 // ============================================================================
186 // ============================================================================
188 // ----------------------------------------------------------------------------
190 // ----------------------------------------------------------------------------
192 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
193 const wxString
& label
,
194 const wxBitmap
& bmpNormal
,
195 const wxBitmap
& bmpDisabled
,
197 wxObject
*clientData
,
198 const wxString
& shortHelp
,
199 const wxString
& longHelp
)
201 return new wxToolBarTool(this, id
, label
, bmpNormal
, bmpDisabled
, kind
,
202 clientData
, shortHelp
, longHelp
);
205 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
207 return new wxToolBarTool(this, control
);
210 // ----------------------------------------------------------------------------
211 // wxToolBar construction
212 // ----------------------------------------------------------------------------
214 void wxToolBar::Init()
220 m_defaultWidth
= DEFAULTBITMAPX
;
221 m_defaultHeight
= DEFAULTBITMAPY
;
226 bool wxToolBar::Create(wxWindow
*parent
,
231 const wxString
& name
)
233 // common initialisation
234 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
237 // MSW-specific initialisation
238 if ( !MSWCreateToolbar(pos
, size
) )
241 // set up the colors and fonts
242 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR
));
243 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
248 bool wxToolBar::MSWCreateToolbar(const wxPoint
& pos
, const wxSize
& size
)
250 if ( !MSWCreateControl(TOOLBARCLASSNAME
, wxEmptyString
, pos
, size
) )
253 // toolbar-specific post initialisation
254 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
259 void wxToolBar::Recreate()
261 const HWND hwndOld
= GetHwnd();
264 // we haven't been created yet, no need to recreate
268 // get the position and size before unsubclassing the old toolbar
269 const wxPoint pos
= GetPosition();
270 const wxSize size
= GetSize();
274 if ( !MSWCreateToolbar(pos
, size
) )
277 wxFAIL_MSG( _T("recreating the toolbar failed") );
282 // reparent all our children under the new toolbar
283 for ( wxWindowList::compatibility_iterator node
= m_children
.GetFirst();
285 node
= node
->GetNext() )
287 wxWindow
*win
= node
->GetData();
288 if ( !win
->IsTopLevel() )
289 ::SetParent(GetHwndOf(win
), GetHwnd());
292 // only destroy the old toolbar now -- after all the children had been
294 ::DestroyWindow(hwndOld
);
296 // it is for the old bitmap control and can't be used with the new one
299 ::DeleteObject((HBITMAP
) m_hBitmap
);
307 wxToolBar::~wxToolBar()
309 // we must refresh the frame size when the toolbar is deleted but the frame
310 // is not - otherwise toolbar leaves a hole in the place it used to occupy
311 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
312 if ( frame
&& !frame
->IsBeingDeleted() )
314 frame
->SendSizeEvent();
319 ::DeleteObject((HBITMAP
) m_hBitmap
);
323 wxSize
wxToolBar::DoGetBestSize() const
325 wxSize sizeBest
= GetToolSize();
326 sizeBest
.x
*= GetToolsCount();
328 // reverse horz and vertical components if necessary
329 return HasFlag(wxTB_VERTICAL
) ? wxSize(sizeBest
.y
, sizeBest
.x
) : sizeBest
;
332 WXDWORD
wxToolBar::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
334 // toolbars never have border, giving one to them results in broken
336 WXDWORD msStyle
= wxControl::MSWGetStyle
338 (style
& ~wxBORDER_MASK
) | wxBORDER_NONE
, exstyle
341 // always include this one, it never hurts and setting it later only if we
342 // do have tooltips wouldn't work
343 msStyle
|= TBSTYLE_TOOLTIPS
;
345 if ( style
& (wxTB_FLAT
| wxTB_HORZ_LAYOUT
) )
347 // static as it doesn't change during the program lifetime
348 static int s_verComCtl
= wxTheApp
->GetComCtl32Version();
350 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
351 // style with 6.00 (part of Windows XP) leads to the toolbar with
352 // incorrect background colour - and not using it still results in the
353 // correct (flat) toolbar, so don't use it there
354 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
356 msStyle
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
359 if ( s_verComCtl
>= 470 && style
& wxTB_HORZ_LAYOUT
)
361 msStyle
|= TBSTYLE_LIST
;
365 if ( style
& wxTB_NODIVIDER
)
366 msStyle
|= CCS_NODIVIDER
;
368 if ( style
& wxTB_NOALIGN
)
369 msStyle
|= CCS_NOPARENTALIGN
;
371 if ( style
& wxTB_VERTICAL
)
377 // ----------------------------------------------------------------------------
378 // adding/removing tools
379 // ----------------------------------------------------------------------------
381 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
), wxToolBarToolBase
*tool
)
383 // nothing special to do here - we really create the toolbar buttons in
390 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
392 // the main difficulty we have here is with the controls in the toolbars:
393 // as we (sometimes) use several separators to cover up the space used by
394 // them, the indices are not the same for us and the toolbar
396 // first determine the position of the first button to delete: it may be
397 // different from pos if we use several separators to cover the space used
399 wxToolBarToolsList::compatibility_iterator node
;
400 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
402 wxToolBarToolBase
*tool2
= node
->GetData();
405 // let node point to the next node in the list
406 node
= node
->GetNext();
411 if ( tool2
->IsControl() )
413 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
417 // now determine the number of buttons to delete and the area taken by them
418 size_t nButtonsToDelete
= 1;
420 // get the size of the button we're going to delete
422 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
424 wxLogLastError(_T("TB_GETITEMRECT"));
427 int width
= r
.right
- r
.left
;
429 if ( tool
->IsControl() )
431 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
433 width
*= nButtonsToDelete
;
436 // do delete all buttons
437 m_nButtons
-= nButtonsToDelete
;
438 while ( nButtonsToDelete
-- > 0 )
440 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
442 wxLogLastError(wxT("TB_DELETEBUTTON"));
450 // and finally reposition all the controls after this button (the toolbar
451 // takes care of all normal items)
452 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
454 wxToolBarToolBase
*tool2
= node
->GetData();
455 if ( tool2
->IsControl() )
458 wxControl
*control
= tool2
->GetControl();
459 control
->GetPosition(&x
, NULL
);
460 control
->Move(x
- width
, -1);
467 bool wxToolBar::Realize()
469 const size_t nTools
= GetToolsCount();
476 const bool isVertical
= HasFlag(wxTB_VERTICAL
);
478 // delete all old buttons, if any
479 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
481 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
483 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
487 // First, add the bitmap: we use one bitmap for all toolbar buttons
488 // ----------------------------------------------------------------
490 wxToolBarToolsList::compatibility_iterator node
;
494 if ( HasFlag(wxTB_NOICONS
) )
496 // no icons, don't leave space for them
500 else // do show icons
502 // if we already have a bitmap, we'll replace the existing one --
503 // otherwise we'll install a new one
504 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
506 sizeBmp
.x
= m_defaultWidth
;
507 sizeBmp
.y
= m_defaultHeight
;
509 const wxCoord totalBitmapWidth
= m_defaultWidth
* nTools
,
510 totalBitmapHeight
= m_defaultHeight
;
512 // Create a bitmap and copy all the tool bitmaps to it
514 wxMemoryDC dcAllButtons
;
515 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
516 dcAllButtons
.SelectObject(bitmap
);
517 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
518 dcAllButtons
.Clear();
520 m_hBitmap
= bitmap
.GetHBITMAP();
521 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
522 #else // !USE_BITMAP_MASKS
523 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
528 wxLogLastError(_T("CreateCompatibleBitmap"));
533 m_hBitmap
= (WXHBITMAP
)hBitmap
;
536 SelectInHDC
hdcSelector(memoryDC
, hBitmap
);
539 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
541 // the button position
544 // the number of buttons (not separators)
547 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
549 wxToolBarToolBase
*tool
= node
->GetData();
550 if ( tool
->IsButton() )
552 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
556 // notice the last parameter: do use mask
557 dcAllButtons
.DrawBitmap(bmp
, x
, 0, TRUE
);
558 #else // !USE_BITMAP_MASKS
559 SelectInHDC
hdcSelector2(memoryDC2
, GetHbitmapOf(bmp
));
560 if ( !BitBlt(memoryDC
,
561 x
, 0, m_defaultWidth
, m_defaultHeight
,
565 wxLogLastError(wxT("BitBlt"));
567 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
571 wxFAIL_MSG( _T("invalid tool button bitmap") );
574 // still inc width and number of buttons because otherwise the
575 // subsequent buttons will all be shifted which is rather confusing
576 // (and like this you'd see immediately which bitmap was bad)
583 dcAllButtons
.SelectObject(wxNullBitmap
);
585 // don't delete this HBITMAP!
586 bitmap
.SetHBITMAP(0);
587 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
589 // Map to system colours
590 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
591 totalBitmapWidth
, totalBitmapHeight
);
593 bool addBitmap
= TRUE
;
595 if ( oldToolBarBitmap
)
597 #ifdef TB_REPLACEBITMAP
598 if ( wxTheApp
->GetComCtl32Version() >= 400 )
600 TBREPLACEBITMAP replaceBitmap
;
601 replaceBitmap
.hInstOld
= NULL
;
602 replaceBitmap
.hInstNew
= NULL
;
603 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
604 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
605 replaceBitmap
.nButtons
= nButtons
;
606 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
607 0, (LPARAM
) &replaceBitmap
) )
609 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
612 ::DeleteObject(oldToolBarBitmap
);
618 #endif // TB_REPLACEBITMAP
620 // we can't replace the old bitmap, so we will add another one
621 // (awfully inefficient, but what else to do?) and shift the bitmap
622 // indices accordingly
625 bitmapId
= m_nButtons
;
629 if ( addBitmap
) // no old bitmap or we can't replace it
631 TBADDBITMAP addBitmap
;
633 addBitmap
.nID
= (UINT
) hBitmap
;
634 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
635 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
637 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
642 // don't call SetToolBitmapSize() as we don't want to change the values of
643 // m_defaultWidth/Height
644 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0,
645 MAKELONG(sizeBmp
.x
, sizeBmp
.y
)) )
647 wxLogLastError(_T("TB_SETBITMAPSIZE"));
650 // Next add the buttons and separators
651 // -----------------------------------
653 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
655 // this array will hold the indices of all controls in the toolbar
656 wxArrayInt controlIds
;
658 bool lastWasRadio
= FALSE
;
660 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
662 wxToolBarToolBase
*tool
= node
->GetData();
664 // don't add separators to the vertical toolbar with old comctl32.dll
665 // versions as they didn't handle this properly
666 if ( isVertical
&& tool
->IsSeparator() &&
667 wxTheApp
->GetComCtl32Version() <= 472 )
673 TBBUTTON
& button
= buttons
[i
];
675 wxZeroMemory(button
);
677 bool isRadio
= FALSE
;
678 switch ( tool
->GetStyle() )
680 case wxTOOL_STYLE_CONTROL
:
681 button
.idCommand
= tool
->GetId();
682 // fall through: create just a separator too
684 case wxTOOL_STYLE_SEPARATOR
:
685 button
.fsState
= TBSTATE_ENABLED
;
686 button
.fsStyle
= TBSTYLE_SEP
;
689 case wxTOOL_STYLE_BUTTON
:
690 if ( !HasFlag(wxTB_NOICONS
) )
691 button
.iBitmap
= bitmapId
;
693 if ( HasFlag(wxTB_TEXT
) )
695 const wxString
& label
= tool
->GetLabel();
696 if ( !label
.empty() )
698 button
.iString
= (int)label
.c_str();
702 button
.idCommand
= tool
->GetId();
704 if ( tool
->IsEnabled() )
705 button
.fsState
|= TBSTATE_ENABLED
;
706 if ( tool
->IsToggled() )
707 button
.fsState
|= TBSTATE_CHECKED
;
709 switch ( tool
->GetKind() )
712 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
716 // the first item in the radio group is checked by
717 // default to be consistent with wxGTK and the menu
719 button
.fsState
|= TBSTATE_CHECKED
;
728 button
.fsStyle
= TBSTYLE_CHECK
;
732 wxFAIL_MSG( _T("unexpected toolbar button kind") );
736 button
.fsStyle
= TBSTYLE_BUTTON
;
743 lastWasRadio
= isRadio
;
748 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
750 wxLogLastError(wxT("TB_ADDBUTTONS"));
755 // Deal with the controls finally
756 // ------------------------------
758 // adjust the controls size to fit nicely in the toolbar
761 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
763 wxToolBarToolBase
*tool
= node
->GetData();
765 // we calculate the running y coord for vertical toolbars so we need to
766 // get the items size for all items but for the horizontal ones we
767 // don't need to deal with the non controls
768 bool isControl
= tool
->IsControl();
769 if ( !isControl
&& !isVertical
)
772 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
773 // latter only appeared in v4.70 of comctl32.dll
775 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
776 index
, (LPARAM
)(LPRECT
)&r
) )
778 wxLogLastError(wxT("TB_GETITEMRECT"));
783 // can only be control if isVertical
784 y
+= r
.bottom
- r
.top
;
789 wxControl
*control
= tool
->GetControl();
791 wxSize size
= control
->GetSize();
793 // the position of the leftmost controls corner
796 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
797 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
798 // available in headers, now check whether it is available now
800 if ( wxTheApp
->GetComCtl32Version() >= 471 )
802 // set the (underlying) separators width to be that of the
805 tbbi
.cbSize
= sizeof(tbbi
);
806 tbbi
.dwMask
= TBIF_SIZE
;
808 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
809 tool
->GetId(), (LPARAM
)&tbbi
) )
811 // the id is probably invalid?
812 wxLogLastError(wxT("TB_SETBUTTONINFO"));
816 #endif // comctl32.dll 4.71
817 // TB_SETBUTTONINFO unavailable
819 // try adding several separators to fit the controls width
820 int widthSep
= r
.right
- r
.left
;
826 tbb
.fsState
= TBSTATE_ENABLED
;
827 tbb
.fsStyle
= TBSTYLE_SEP
;
829 size_t nSeparators
= size
.x
/ widthSep
;
830 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
832 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
833 index
, (LPARAM
)&tbb
) )
835 wxLogLastError(wxT("TB_INSERTBUTTON"));
841 // remember the number of separators we used - we'd have to
842 // delete all of them later
843 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
845 // adjust the controls width to exactly cover the separators
846 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
849 // position the control itself correctly vertically
850 int height
= r
.bottom
- r
.top
;
851 int diff
= height
- size
.y
;
854 // the control is too high, resize to fit
855 control
->SetSize(-1, height
- 2);
866 y
+= height
+ 2*GetMargins().y
;
868 else // horizontal toolbar
876 control
->Move(left
, top
+ (diff
+ 1) / 2);
879 // the max index is the "real" number of buttons - i.e. counting even the
880 // separators which we added just for aligning the controls
885 if ( m_maxRows
== 0 )
887 // if not set yet, only one row
891 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
893 if ( m_maxRows
== 0 )
895 // if not set yet, have one column
903 // ----------------------------------------------------------------------------
905 // ----------------------------------------------------------------------------
907 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
909 wxToolBarToolBase
*tool
= FindById((int)id
);
913 if ( tool
->CanBeToggled() )
915 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
916 tool
->Toggle((state
& TBSTATE_CHECKED
) != 0);
919 bool toggled
= tool
->IsToggled();
921 // avoid sending the event when a radio button is released, this is not
923 if ( !tool
->CanBeToggled() || tool
->GetKind() != wxITEM_RADIO
|| toggled
)
925 // OnLeftClick() can veto the button state change - for buttons which
926 // may be toggled only, of couse
927 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
931 tool
->SetToggle(toggled
);
933 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
940 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
942 WXLPARAM
*WXUNUSED(result
))
945 // First check if this applies to us
946 NMHDR
*hdr
= (NMHDR
*)lParam
;
948 // the tooltips control created by the toolbar is sometimes Unicode, even
949 // in an ANSI application - this seems to be a bug in comctl32.dll v5
950 UINT code
= hdr
->code
;
951 if ( (code
!= (UINT
) TTN_NEEDTEXTA
) && (code
!= (UINT
) TTN_NEEDTEXTW
) )
954 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
955 if ( toolTipWnd
!= hdr
->hwndFrom
)
958 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
959 int id
= (int)ttText
->hdr
.idFrom
;
961 wxToolBarToolBase
*tool
= FindById(id
);
965 return HandleTooltipNotify(code
, lParam
, tool
->GetShortHelp());
971 // ----------------------------------------------------------------------------
973 // ----------------------------------------------------------------------------
975 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
977 wxToolBarBase::SetToolBitmapSize(size
);
979 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
982 void wxToolBar::SetRows(int nRows
)
984 if ( nRows
== m_maxRows
)
986 // avoid resizing the frame uselessly
990 // TRUE in wParam means to create at least as many rows, FALSE -
993 ::SendMessage(GetHwnd(), TB_SETROWS
,
994 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
1002 // The button size is bigger than the bitmap size
1003 wxSize
wxToolBar::GetToolSize() const
1005 // TB_GETBUTTONSIZE is supported from version 4.70
1006 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1007 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
1008 if ( wxTheApp
->GetComCtl32Version() >= 470 )
1010 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
1012 return wxSize(LOWORD(dw
), HIWORD(dw
));
1015 #endif // comctl32.dll 4.70+
1018 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
1023 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
1026 wxToolBarToolsList::compatibility_iterator current
= tools
.GetFirst();
1028 for ( ; current
!= 0; current
= current
->GetNext() )
1031 return current
->GetData();
1033 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
1034 size_t separators
= tool
->GetSeparatorsCount();
1036 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1037 // otherwise, skip as many items as the separator count, plus the
1039 index
-= separators
? separators
+ 1 : 1;
1045 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1050 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1051 // MBN: when the point ( x, y ) is close to the toolbar border
1052 // TB_HITTEST returns m_nButtons ( not -1 )
1053 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1055 // it's a separator or there is no tool at all there
1056 return (wxToolBarToolBase
*)NULL
;
1059 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1060 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1061 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1063 return m_tools
.Item((size_t)index
)->GetData();
1068 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1072 void wxToolBar::UpdateSize()
1074 // the toolbar size changed
1075 SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1077 // we must also refresh the frame after the toolbar size (possibly) changed
1078 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1081 frame
->SendSizeEvent();
1085 // ----------------------------------------------------------------------------
1087 // ---------------------------------------------------------------------------
1089 void wxToolBar::SetWindowStyleFlag(long style
)
1091 // the style bits whose changes force us to recreate the toolbar
1092 static const long MASK_NEEDS_RECREATE
= wxTB_TEXT
| wxTB_NOICONS
;
1094 const long styleOld
= GetWindowStyle();
1096 wxToolBarBase::SetWindowStyleFlag(style
);
1098 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1099 // also fatal as we'd then try to recreate the toolbar when it's just being
1101 if ( GetToolsCount() &&
1102 (style
& MASK_NEEDS_RECREATE
) != (styleOld
& MASK_NEEDS_RECREATE
) )
1104 // to remove the text labels, simply re-realizing the toolbar is enough
1105 // but I don't know of any way to add the text to an existing toolbar
1106 // other than by recreating it entirely
1111 // ----------------------------------------------------------------------------
1113 // ----------------------------------------------------------------------------
1115 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1117 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1118 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1121 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1123 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1124 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1127 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1129 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1130 // without, so we really need to delete the button and recreate it here
1131 wxFAIL_MSG( _T("not implemented") );
1134 // ----------------------------------------------------------------------------
1136 // ----------------------------------------------------------------------------
1138 // Responds to colour changes, and passes event on to children.
1139 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1141 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1143 // Remap the buttons
1146 // Relayout the toolbar
1147 int nrows
= m_maxRows
;
1148 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1153 // let the event propagate further
1157 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1159 if (event
.Leaving() && m_pInTool
)
1166 if (event
.RightDown())
1168 // For now, we don't have an id. Later we could
1169 // try finding the tool.
1170 OnRightClick((int)-1, event
.GetX(), event
.GetY());
1178 bool wxToolBar::HandleSize(WXWPARAM wParam
, WXLPARAM lParam
)
1180 // calculate our minor dimension ourselves - we're confusing the standard
1181 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1183 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1187 if ( GetWindowStyle() & wxTB_VERTICAL
)
1189 w
= r
.right
- r
.left
;
1192 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1199 if (HasFlag( wxTB_FLAT
))
1200 h
= r
.bottom
- r
.top
- 3;
1202 h
= r
.bottom
- r
.top
;
1205 // FIXME: hardcoded separator line height...
1206 h
+= HasFlag(wxTB_NODIVIDER
) ? 4 : 6;
1211 if ( MAKELPARAM(w
, h
) != lParam
)
1213 // size really changed
1217 // message processed
1224 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1226 // erase any dummy separators which we used for aligning the controls if
1229 // first of all, do we have any controls at all?
1230 wxToolBarToolsList::compatibility_iterator node
;
1231 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1233 if ( node
->GetData()->IsControl() )
1239 // no controls, nothing to erase
1243 // prepare the DC on which we'll be drawing
1244 wxClientDC
dc(this);
1245 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1246 dc
.SetPen(*wxTRANSPARENT_PEN
);
1249 if ( !GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1251 // nothing to redraw anyhow
1256 wxCopyRECTToRect(r
, rectUpdate
);
1258 dc
.SetClippingRegion(rectUpdate
);
1260 // draw the toolbar tools, separators &c normally
1261 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1263 // for each control in the toolbar find all the separators intersecting it
1266 // NB: this is really the only way to do it as we don't know if a separator
1267 // corresponds to a control (i.e. is a dummy one) or a real one
1269 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1271 wxToolBarToolBase
*tool
= node
->GetData();
1272 if ( tool
->IsControl() )
1274 // get the control rect in our client coords
1275 wxControl
*control
= tool
->GetControl();
1276 wxRect rectCtrl
= control
->GetRect();
1278 // iterate over all buttons
1280 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1281 for ( int n
= 0; n
< count
; n
++ )
1283 // is it a separator?
1284 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1287 wxLogDebug(_T("TB_GETBUTTON failed?"));
1292 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1295 // get the bounding rect of the separator
1297 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1300 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1305 // does it intersect the control?
1307 wxCopyRECTToRect(r
, rectItem
);
1308 if ( rectCtrl
.Intersects(rectItem
) )
1310 // yes, do erase it!
1311 dc
.DrawRectangle(rectItem
);
1320 void wxToolBar::HandleMouseMove(WXWPARAM wParam
, WXLPARAM lParam
)
1322 wxCoord x
= GET_X_LPARAM(lParam
),
1323 y
= GET_Y_LPARAM(lParam
);
1324 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1326 // cursor left current tool
1327 if( tool
!= m_pInTool
&& !tool
)
1333 // cursor entered a tool
1334 if( tool
!= m_pInTool
&& tool
)
1337 OnMouseEnter( tool
->GetId() );
1341 long wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1346 if ( HandleSize(wParam
, lParam
) )
1351 // we don't handle mouse moves, so always pass the message to
1352 // wxControl::MSWWindowProc
1353 HandleMouseMove(wParam
, lParam
);
1357 if ( HandlePaint(wParam
, lParam
) )
1361 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1364 // ----------------------------------------------------------------------------
1365 // private functions
1366 // ----------------------------------------------------------------------------
1368 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1374 wxLogLastError(_T("CreateCompatibleDC"));
1379 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1383 wxLogLastError(_T("SelectObject"));
1388 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1390 for ( int i
= 0; i
< width
; i
++ )
1392 for ( int j
= 0; j
< height
; j
++ )
1394 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1396 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1398 COLORREF col
= cmap
[k
].from
;
1399 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1400 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1401 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1403 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1412 // VZ: I leave here my attempts to map the bitmap to the system colours
1413 // faster by using BitBlt() even though it's broken currently - but
1414 // maybe someone else can finish it? It should be faster than iterating
1415 // over all pixels...
1417 MemoryHDC hdcMask
, hdcDst
;
1418 if ( !hdcMask
|| !hdcDst
)
1420 wxLogLastError(_T("CreateCompatibleDC"));
1425 // create the target bitmap
1426 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1429 wxLogLastError(_T("CreateCompatibleBitmap"));
1434 // create the monochrome mask bitmap
1435 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1438 wxLogLastError(_T("CreateBitmap(mono)"));
1440 ::DeleteObject(hbmpDst
);
1445 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1446 bmpInMask(hdcMask
, hbmpMask
);
1449 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1451 // create the mask for this colour
1452 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1453 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1455 // replace this colour with the target one in the dst bitmap
1456 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1457 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1459 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1462 MAKEROP4(PATCOPY
, SRCCOPY
));
1464 (void)::SelectObject(hdcDst
, hbrOld
);
1465 ::DeleteObject(hbr
);
1468 ::DeleteObject((HBITMAP
)bitmap
);
1470 return (WXHBITMAP
)hbmpDst
;
1474 #endif // wxUSE_TOOLBAR && Win95