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 // toolbars never have border, giving one to them results in broken
238 style
&= ~wxBORDER_MASK
;
239 style
|= wxBORDER_NONE
;
241 // common initialisation
242 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
246 DWORD msflags
= TBSTYLE_TOOLTIPS
; // WS_VISIBLE | WS_CHILD always included
248 if ( style
& wxCLIP_SIBLINGS
)
249 msflags
|= WS_CLIPSIBLINGS
;
251 if ( style
& wxTB_FLAT
)
253 // static as it doesn't change during the program lifetime
254 static int s_verComCtl
= wxTheApp
->GetComCtl32Version();
256 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
257 // style with 6.00 (part of Windows XP) leads to the toolbar with
258 // incorrect background colour - and not using it still results in the
259 // correct (flat) toolbar, so don't use it there
260 if ( s_verComCtl
> 400 && s_verComCtl
< 600 )
262 msflags
|= TBSTYLE_FLAT
| TBSTYLE_TRANSPARENT
;
265 if (style
& wxTB_NODIVIDER
)
266 msflags
|= CCS_NODIVIDER
;
267 if (style
& wxTB_NOALIGN
)
268 msflags
|= CCS_NOPARENTALIGN
;
270 // MSW-specific initialisation
271 if ( !wxControl::MSWCreateControl(TOOLBARCLASSNAME
, msflags
) )
274 // toolbar-specific post initialisation
275 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
277 // set up the colors and fonts
278 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_MENUBAR
));
279 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT
));
290 height
= m_defaultHeight
;
296 SetSize(x
, y
, width
, height
);
301 wxToolBar::~wxToolBar()
303 // we must refresh the frame size when the toolbar is deleted but the frame
304 // is not - otherwise toolbar leaves a hole in the place it used to occupy
305 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
306 if ( frame
&& !frame
->IsBeingDeleted() )
308 frame
->SendSizeEvent();
313 ::DeleteObject((HBITMAP
) m_hBitmap
);
317 // ----------------------------------------------------------------------------
318 // adding/removing tools
319 // ----------------------------------------------------------------------------
321 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
322 wxToolBarToolBase
*tool
)
324 // nothing special to do here - we really create the toolbar buttons in
331 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
333 // the main difficulty we have here is with the controls in the toolbars:
334 // as we (sometimes) use several separators to cover up the space used by
335 // them, the indices are not the same for us and the toolbar
337 // first determine the position of the first button to delete: it may be
338 // different from pos if we use several separators to cover the space used
340 wxToolBarToolsList::Node
*node
;
341 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
343 wxToolBarToolBase
*tool2
= node
->GetData();
346 // let node point to the next node in the list
347 node
= node
->GetNext();
352 if ( tool2
->IsControl() )
354 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
358 // now determine the number of buttons to delete and the area taken by them
359 size_t nButtonsToDelete
= 1;
361 // get the size of the button we're going to delete
363 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
365 wxLogLastError(_T("TB_GETITEMRECT"));
368 int width
= r
.right
- r
.left
;
370 if ( tool
->IsControl() )
372 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
374 width
*= nButtonsToDelete
;
377 // do delete all buttons
378 m_nButtons
-= nButtonsToDelete
;
379 while ( nButtonsToDelete
-- > 0 )
381 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
383 wxLogLastError(wxT("TB_DELETEBUTTON"));
391 // and finally reposition all the controls after this button (the toolbar
392 // takes care of all normal items)
393 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
395 wxToolBarToolBase
*tool2
= node
->GetData();
396 if ( tool2
->IsControl() )
399 wxControl
*control
= tool2
->GetControl();
400 control
->GetPosition(&x
, NULL
);
401 control
->Move(x
- width
, -1);
408 bool wxToolBar::Realize()
410 size_t nTools
= GetToolsCount();
417 bool isVertical
= (GetWindowStyle() & wxTB_VERTICAL
) != 0;
419 // First, add the bitmap: we use one bitmap for all toolbar buttons
420 // ----------------------------------------------------------------
422 // if we already have a bitmap, we'll replace the existing one - otherwise
423 // we'll install a new one
424 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
426 int totalBitmapWidth
= (int)(m_defaultWidth
* nTools
);
427 int totalBitmapHeight
= (int)m_defaultHeight
;
429 // Create a bitmap and copy all the tool bitmaps to it
431 wxMemoryDC dcAllButtons
;
432 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
433 dcAllButtons
.SelectObject(bitmap
);
434 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
435 dcAllButtons
.Clear();
437 m_hBitmap
= bitmap
.GetHBITMAP();
438 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
439 #else // !USE_BITMAP_MASKS
440 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
445 wxLogLastError(_T("CreateCompatibleBitmap"));
450 m_hBitmap
= (WXHBITMAP
)hBitmap
;
452 HDC memoryDC
= ::CreateCompatibleDC(NULL
);
453 HBITMAP oldBitmap
= (HBITMAP
) ::SelectObject(memoryDC
, hBitmap
);
455 HDC memoryDC2
= ::CreateCompatibleDC(NULL
);
456 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
458 // the button position
461 // the number of buttons (not separators)
464 wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
467 wxToolBarToolBase
*tool
= node
->GetData();
468 if ( tool
->IsButton() )
470 const wxBitmap
& bmp
= tool
->GetNormalBitmap();
474 // notice the last parameter: do use mask
475 dcAllButtons
.DrawBitmap(bmp
, x
, 0, TRUE
);
476 #else // !USE_BITMAP_MASKS
477 HBITMAP hbmp
= GetHbitmapOf(bmp
);
478 HBITMAP oldBitmap2
= (HBITMAP
)::SelectObject(memoryDC2
, hbmp
);
479 if ( !BitBlt(memoryDC
, x
, 0, m_defaultWidth
, m_defaultHeight
,
480 memoryDC2
, 0, 0, SRCCOPY
) )
482 wxLogLastError(wxT("BitBlt"));
485 ::SelectObject(memoryDC2
, oldBitmap2
);
486 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
490 wxFAIL_MSG( _T("invalid tool button bitmap") );
493 // still inc width and number of buttons because otherwise the
494 // subsequent buttons will all be shifted which is rather confusing
495 // (and like this you'd see immediately which bitmap was bad)
500 node
= node
->GetNext();
504 dcAllButtons
.SelectObject(wxNullBitmap
);
506 // don't delete this HBITMAP!
507 bitmap
.SetHBITMAP(0);
508 #else // !USE_BITMAP_MASKS
509 ::SelectObject(memoryDC
, oldBitmap
);
510 ::DeleteDC(memoryDC
);
511 ::DeleteDC(memoryDC2
);
512 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
514 // Map to system colours
515 hBitmap
= (HBITMAP
)MapBitmap((WXHBITMAP
) hBitmap
,
516 totalBitmapWidth
, totalBitmapHeight
);
520 bool addBitmap
= TRUE
;
522 if ( oldToolBarBitmap
)
524 #ifdef TB_REPLACEBITMAP
525 if ( wxTheApp
->GetComCtl32Version() >= 400 )
527 TBREPLACEBITMAP replaceBitmap
;
528 replaceBitmap
.hInstOld
= NULL
;
529 replaceBitmap
.hInstNew
= NULL
;
530 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
531 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
532 replaceBitmap
.nButtons
= nButtons
;
533 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
534 0, (LPARAM
) &replaceBitmap
) )
536 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
539 ::DeleteObject(oldToolBarBitmap
);
545 #endif // TB_REPLACEBITMAP
547 // we can't replace the old bitmap, so we will add another one
548 // (awfully inefficient, but what else to do?) and shift the bitmap
549 // indices accordingly
552 bitmapId
= m_nButtons
;
555 // Now delete all the buttons
556 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
558 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
560 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
565 if ( addBitmap
) // no old bitmap or we can't replace it
567 TBADDBITMAP addBitmap
;
569 addBitmap
.nID
= (UINT
) hBitmap
;
570 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
571 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
573 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
577 // Next add the buttons and separators
578 // -----------------------------------
580 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
582 // this array will hold the indices of all controls in the toolbar
583 wxArrayInt controlIds
;
585 bool lastWasRadio
= FALSE
;
587 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
589 wxToolBarToolBase
*tool
= node
->GetData();
591 // don't add separators to the vertical toolbar - looks ugly
592 if ( isVertical
&& tool
->IsSeparator() )
595 TBBUTTON
& button
= buttons
[i
];
597 wxZeroMemory(button
);
599 bool isRadio
= FALSE
;
600 switch ( tool
->GetStyle() )
602 case wxTOOL_STYLE_CONTROL
:
603 button
.idCommand
= tool
->GetId();
604 // fall through: create just a separator too
606 case wxTOOL_STYLE_SEPARATOR
:
607 button
.fsState
= TBSTATE_ENABLED
;
608 button
.fsStyle
= TBSTYLE_SEP
;
611 case wxTOOL_STYLE_BUTTON
:
612 button
.iBitmap
= bitmapId
;
614 if ( HasFlag(wxTB_TEXT
) && !tool
->GetLabel().empty() )
616 button
.iString
= (int)tool
->GetLabel().c_str();
619 button
.idCommand
= tool
->GetId();
621 if ( tool
->IsEnabled() )
622 button
.fsState
|= TBSTATE_ENABLED
;
623 if ( tool
->IsToggled() )
624 button
.fsState
|= TBSTATE_CHECKED
;
626 switch ( tool
->GetKind() )
629 button
.fsStyle
= TBSTYLE_CHECKGROUP
;
633 // the first item in the radio group is checked by
634 // default to be consistent with wxGTK and the menu
636 button
.fsState
|= TBSTATE_CHECKED
;
645 button
.fsStyle
= TBSTYLE_CHECK
;
649 wxFAIL_MSG( _T("unexpected toolbar button kind") );
653 button
.fsStyle
= TBSTYLE_BUTTON
;
660 lastWasRadio
= isRadio
;
665 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
, (WPARAM
)i
, (LPARAM
)buttons
) )
667 wxLogLastError(wxT("TB_ADDBUTTONS"));
672 // Deal with the controls finally
673 // ------------------------------
675 // adjust the controls size to fit nicely in the toolbar
678 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
680 wxToolBarToolBase
*tool
= node
->GetData();
682 // we calculate the running y coord for vertical toolbars so we need to
683 // get the items size for all items but for the horizontal ones we
684 // don't need to deal with the non controls
685 bool isControl
= tool
->IsControl();
686 if ( !isControl
&& !isVertical
)
689 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
690 // latter only appeared in v4.70 of comctl32.dll
692 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
693 index
, (LPARAM
)(LPRECT
)&r
) )
695 wxLogLastError(wxT("TB_GETITEMRECT"));
700 // can only be control if isVertical
701 y
+= r
.bottom
- r
.top
;
706 wxControl
*control
= tool
->GetControl();
708 wxSize size
= control
->GetSize();
710 // the position of the leftmost controls corner
713 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
714 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
715 // available in headers, now check whether it is available now
717 if ( wxTheApp
->GetComCtl32Version() >= 471 )
719 // set the (underlying) separators width to be that of the
722 tbbi
.cbSize
= sizeof(tbbi
);
723 tbbi
.dwMask
= TBIF_SIZE
;
725 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
726 tool
->GetId(), (LPARAM
)&tbbi
) )
728 // the id is probably invalid?
729 wxLogLastError(wxT("TB_SETBUTTONINFO"));
733 #endif // comctl32.dll 4.71
734 // TB_SETBUTTONINFO unavailable
736 // try adding several separators to fit the controls width
737 int widthSep
= r
.right
- r
.left
;
743 tbb
.fsState
= TBSTATE_ENABLED
;
744 tbb
.fsStyle
= TBSTYLE_SEP
;
746 size_t nSeparators
= size
.x
/ widthSep
;
747 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
749 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
750 index
, (LPARAM
)&tbb
) )
752 wxLogLastError(wxT("TB_INSERTBUTTON"));
758 // remember the number of separators we used - we'd have to
759 // delete all of them later
760 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
762 // adjust the controls width to exactly cover the separators
763 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
766 // position the control itself correctly vertically
767 int height
= r
.bottom
- r
.top
;
768 int diff
= height
- size
.y
;
771 // the control is too high, resize to fit
772 control
->SetSize(-1, height
- 2);
783 y
+= height
+ 2*GetMargins().y
;
785 else // horizontal toolbar
793 control
->Move(left
, top
+ (diff
+ 1) / 2);
796 // the max index is the "real" number of buttons - i.e. counting even the
797 // separators which we added just for aligning the controls
802 if ( m_maxRows
== 0 )
804 // if not set yet, only one row
808 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
810 if ( m_maxRows
== 0 )
812 // if not set yet, have one column
820 // ----------------------------------------------------------------------------
822 // ----------------------------------------------------------------------------
824 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
826 wxToolBarToolBase
*tool
= FindById((int)id
);
830 if ( tool
->CanBeToggled() )
832 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
833 tool
->Toggle((state
& TBSTATE_CHECKED
) != 0);
836 bool toggled
= tool
->IsToggled();
838 // avoid sending the event when a radio button is released, this is not
840 if ( !tool
->CanBeToggled() || tool
->GetKind() != wxITEM_RADIO
|| toggled
)
842 // OnLeftClick() can veto the button state change - for buttons which
843 // may be toggled only, of couse
844 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
848 tool
->SetToggle(toggled
);
850 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
857 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
859 WXLPARAM
*WXUNUSED(result
))
861 // First check if this applies to us
862 NMHDR
*hdr
= (NMHDR
*)lParam
;
864 // the tooltips control created by the toolbar is sometimes Unicode, even
865 // in an ANSI application - this seems to be a bug in comctl32.dll v5
866 int code
= (int)hdr
->code
;
867 if ( (code
!= TTN_NEEDTEXTA
) && (code
!= TTN_NEEDTEXTW
) )
870 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
871 if ( toolTipWnd
!= hdr
->hwndFrom
)
874 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
875 int id
= (int)ttText
->hdr
.idFrom
;
877 wxToolBarToolBase
*tool
= FindById(id
);
881 const wxString
& help
= tool
->GetShortHelp();
883 if ( !help
.IsEmpty() )
885 if ( code
== TTN_NEEDTEXTA
)
887 ttText
->lpszText
= (wxChar
*)help
.c_str();
892 ttText
->lpszText
= (wxChar
*)help
.c_str();
894 // VZ: I don't know why it happens, but the versions of
895 // comctl32.dll starting from 4.70 sometimes send TTN_NEEDTEXTW
896 // even to ANSI programs (normally, this message is supposed
897 // to be sent to Unicode programs only) - hence we need to
898 // handle it as well, otherwise no tooltips will be shown in
901 size_t lenAnsi
= help
.Len();
902 #if defined( __MWERKS__ ) || defined( __CYGWIN__ )
903 // MetroWerks doesn't like calling mbstowcs with NULL argument
904 // neither Cygwin does
905 size_t lenUnicode
= 2*lenAnsi
;
907 size_t lenUnicode
= mbstowcs(NULL
, help
, lenAnsi
);
910 // using the pointer of right type avoids us doing all sorts of
911 // pointer arithmetics ourselves
912 wchar_t *dst
= (wchar_t *)ttText
->szText
,
913 *pwz
= new wchar_t[lenUnicode
+ 1];
914 mbstowcs(pwz
, help
, lenAnsi
+ 1);
915 memcpy(dst
, pwz
, lenUnicode
*sizeof(wchar_t));
917 // put the terminating _wide_ NUL
928 // ----------------------------------------------------------------------------
930 // ----------------------------------------------------------------------------
932 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
934 wxToolBarBase::SetToolBitmapSize(size
);
936 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
939 void wxToolBar::SetRows(int nRows
)
941 if ( nRows
== m_maxRows
)
943 // avoid resizing the frame uselessly
947 // TRUE in wParam means to create at least as many rows, FALSE -
950 ::SendMessage(GetHwnd(), TB_SETROWS
,
951 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
959 // The button size is bigger than the bitmap size
960 wxSize
wxToolBar::GetToolSize() const
962 // TB_GETBUTTONSIZE is supported from version 4.70
963 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
964 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
965 if ( wxTheApp
->GetComCtl32Version() >= 470 )
967 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
969 return wxSize(LOWORD(dw
), HIWORD(dw
));
972 #endif // comctl32.dll 4.70+
975 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
980 wxToolBarToolBase
*GetItemSkippingDummySpacers(const wxToolBarToolsList
& tools
,
983 wxToolBarToolsList::Node
* current
= tools
.GetFirst();
985 for ( ; current
!= 0; current
= current
->GetNext() )
988 return current
->GetData();
990 wxToolBarTool
*tool
= (wxToolBarTool
*)current
->GetData();
991 size_t separators
= tool
->GetSeparatorsCount();
993 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
994 // otherwise, skip as many items as the separator count, plus the
996 index
-= separators
? separators
+ 1 : 1;
1002 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
1007 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
1008 // MBN: when the point ( x, y ) is close to the toolbar border
1009 // TB_HITTEST returns m_nButtons ( not -1 )
1010 if ( index
< 0 || (size_t)index
>= m_nButtons
)
1012 // it's a separator or there is no tool at all there
1013 return (wxToolBarToolBase
*)NULL
;
1016 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1017 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1018 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1020 return m_tools
.Item((size_t)index
)->GetData();
1025 return GetItemSkippingDummySpacers( m_tools
, (size_t) index
);
1029 void wxToolBar::UpdateSize()
1031 // the toolbar size changed
1032 SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
1034 // we must also refresh the frame after the toolbar size (possibly) changed
1035 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
1038 frame
->SendSizeEvent();
1042 // ----------------------------------------------------------------------------
1044 // ---------------------------------------------------------------------------
1046 void wxToolBar::SetWindowStyleFlag(long style
)
1048 // there doesn't seem to be any reasonably simple way to prevent the
1049 // toolbar from showing the icons so for now we don't honour wxTB_NOICONS
1050 if ( (style
& wxTB_TEXT
) != (GetWindowStyle() & wxTB_TEXT
) )
1052 // update the strings of all toolbar buttons
1054 // NB: we can only do it using TB_SETBUTTONINFO which is available
1055 // in comctl32.dll >= 4.71 only
1056 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1057 if ( wxTheApp
->GetComCtl32Version() >= 471 )
1059 // set the (underlying) separators width to be that of the
1062 tbbi
.cbSize
= sizeof(tbbi
);
1063 tbbi
.dwMask
= TBIF_TEXT
;
1064 if ( !(style
& wxTB_TEXT
) )
1066 // don't show the text - remove the labels
1067 tbbi
.pszText
= NULL
;
1070 for ( wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
1072 node
= node
->GetNext() )
1074 wxToolBarToolBase
*tool
= node
->GetData();
1075 if ( !tool
->IsButton() )
1080 if ( style
& wxTB_TEXT
)
1083 tbbi
.pszText
= (wxChar
*)tool
->GetLabel().c_str();
1086 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
1087 tool
->GetId(), (LPARAM
)&tbbi
) )
1089 // the id is probably invalid?
1090 wxLogLastError(wxT("TB_SETBUTTONINFO"));
1097 #endif // comctl32.dll 4.71
1100 wxToolBarBase::SetWindowStyleFlag(style
);
1103 // ----------------------------------------------------------------------------
1105 // ----------------------------------------------------------------------------
1107 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
1109 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
1110 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
1113 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
1115 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
1116 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
1119 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
1121 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1122 // without, so we really need to delete the button and recreate it here
1123 wxFAIL_MSG( _T("not implemented") );
1126 // ----------------------------------------------------------------------------
1128 // ----------------------------------------------------------------------------
1130 // Responds to colour changes, and passes event on to children.
1131 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1133 wxRGBToColour(m_backgroundColour
, ::GetSysColor(COLOR_BTNFACE
));
1135 // Remap the buttons
1138 // Relayout the toolbar
1139 int nrows
= m_maxRows
;
1140 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
1145 // let the event propagate further
1149 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
1151 if (event
.Leaving() && m_pInTool
)
1158 if (event
.RightDown())
1160 // For now, we don't have an id. Later we could
1161 // try finding the tool.
1162 OnRightClick((int)-1, event
.GetX(), event
.GetY());
1170 bool wxToolBar::HandleSize(WXWPARAM wParam
, WXLPARAM lParam
)
1172 // calculate our minor dimenstion ourselves - we're confusing the standard
1173 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1175 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
1179 if ( GetWindowStyle() & wxTB_VERTICAL
)
1181 w
= r
.right
- r
.left
;
1184 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
1191 if (HasFlag( wxTB_FLAT
))
1192 h
= r
.bottom
- r
.top
- 3;
1194 h
= r
.bottom
- r
.top
;
1197 // FIXME: 6 is hardcoded separator line height...
1199 if (HasFlag(wxTB_NODIVIDER
))
1207 if ( MAKELPARAM(w
, h
) != lParam
)
1209 // size really changed
1213 // message processed
1220 bool wxToolBar::HandlePaint(WXWPARAM wParam
, WXLPARAM lParam
)
1222 // erase any dummy separators which we used for aligning the controls if
1225 // first of all, do we have any controls at all?
1226 wxToolBarToolsList::Node
*node
;
1227 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1229 if ( node
->GetData()->IsControl() )
1235 // no controls, nothing to erase
1239 // prepare the DC on which we'll be drawing
1240 wxClientDC
dc(this);
1241 dc
.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID
));
1242 dc
.SetPen(*wxTRANSPARENT_PEN
);
1245 if ( !GetUpdateRect(GetHwnd(), &r
, FALSE
) )
1247 // nothing to redraw anyhow
1252 wxCopyRECTToRect(r
, rectUpdate
);
1254 dc
.SetClippingRegion(rectUpdate
);
1256 // draw the toolbar tools, separators &c normally
1257 wxControl::MSWWindowProc(WM_PAINT
, wParam
, lParam
);
1259 // for each control in the toolbar find all the separators intersecting it
1262 // NB: this is really the only way to do it as we don't know if a separator
1263 // corresponds to a control (i.e. is a dummy one) or a real one
1265 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
1267 wxToolBarToolBase
*tool
= node
->GetData();
1268 if ( tool
->IsControl() )
1270 // get the control rect in our client coords
1271 wxControl
*control
= tool
->GetControl();
1272 wxRect rectCtrl
= control
->GetRect();
1274 // iterate over all buttons
1276 int count
= ::SendMessage(GetHwnd(), TB_BUTTONCOUNT
, 0, 0);
1277 for ( int n
= 0; n
< count
; n
++ )
1279 // is it a separator?
1280 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON
,
1283 wxLogDebug(_T("TB_GETBUTTON failed?"));
1288 if ( tbb
.fsStyle
!= TBSTYLE_SEP
)
1291 // get the bounding rect of the separator
1293 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
,
1296 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1301 // does it intersect the control?
1303 wxCopyRECTToRect(r
, rectItem
);
1304 if ( rectCtrl
.Intersects(rectItem
) )
1306 // yes, do erase it!
1307 dc
.DrawRectangle(rectItem
);
1316 void wxToolBar::HandleMouseMove(WXWPARAM wParam
, WXLPARAM lParam
)
1318 wxCoord x
= GET_X_LPARAM(lParam
),
1319 y
= GET_Y_LPARAM(lParam
);
1320 wxToolBarToolBase
* tool
= FindToolForPosition( x
, y
);
1322 // cursor left current tool
1323 if( tool
!= m_pInTool
&& !tool
)
1329 // cursor entered a tool
1330 if( tool
!= m_pInTool
&& tool
)
1333 OnMouseEnter( tool
->GetId() );
1337 long wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
1342 if ( HandleSize(wParam
, lParam
) )
1347 // we don't handle mouse moves, so always pass the message to
1348 // wxControl::MSWWindowProc
1349 HandleMouseMove(wParam
, lParam
);
1353 if ( HandlePaint(wParam
, lParam
) )
1357 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1360 // ----------------------------------------------------------------------------
1361 // private functions
1362 // ----------------------------------------------------------------------------
1364 WXHBITMAP
wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1370 wxLogLastError(_T("CreateCompatibleDC"));
1375 SelectInHDC
bmpInHDC(hdcMem
, (HBITMAP
)bitmap
);
1379 wxLogLastError(_T("SelectObject"));
1384 wxCOLORMAP
*cmap
= wxGetStdColourMap();
1386 for ( int i
= 0; i
< width
; i
++ )
1388 for ( int j
= 0; j
< height
; j
++ )
1390 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1392 for ( size_t k
= 0; k
< wxSTD_COL_MAX
; k
++ )
1394 COLORREF col
= cmap
[k
].from
;
1395 if ( abs(GetRValue(pixel
) - GetRValue(col
)) < 10 &&
1396 abs(GetGValue(pixel
) - GetGValue(col
)) < 10 &&
1397 abs(GetBValue(pixel
) - GetBValue(col
)) < 10 )
1399 ::SetPixel(hdcMem
, i
, j
, cmap
[k
].to
);
1408 // VZ: I leave here my attempts to map the bitmap to the system colours
1409 // faster by using BitBlt() even though it's broken currently - but
1410 // maybe someone else can finish it? It should be faster than iterating
1411 // over all pixels...
1413 MemoryHDC hdcMask
, hdcDst
;
1414 if ( !hdcMask
|| !hdcDst
)
1416 wxLogLastError(_T("CreateCompatibleDC"));
1421 // create the target bitmap
1422 HBITMAP hbmpDst
= ::CreateCompatibleBitmap(hdcDst
, width
, height
);
1425 wxLogLastError(_T("CreateCompatibleBitmap"));
1430 // create the monochrome mask bitmap
1431 HBITMAP hbmpMask
= ::CreateBitmap(width
, height
, 1, 1, 0);
1434 wxLogLastError(_T("CreateBitmap(mono)"));
1436 ::DeleteObject(hbmpDst
);
1441 SelectInHDC
bmpInDst(hdcDst
, hbmpDst
),
1442 bmpInMask(hdcMask
, hbmpMask
);
1445 for ( n
= 0; n
< NUM_OF_MAPPED_COLOURS
; n
++ )
1447 // create the mask for this colour
1448 ::SetBkColor(hdcMem
, ColorMap
[n
].from
);
1449 ::BitBlt(hdcMask
, 0, 0, width
, height
, hdcMem
, 0, 0, SRCCOPY
);
1451 // replace this colour with the target one in the dst bitmap
1452 HBRUSH hbr
= ::CreateSolidBrush(ColorMap
[n
].to
);
1453 HGDIOBJ hbrOld
= ::SelectObject(hdcDst
, hbr
);
1455 ::MaskBlt(hdcDst
, 0, 0, width
, height
,
1458 MAKEROP4(PATCOPY
, SRCCOPY
));
1460 (void)::SelectObject(hdcDst
, hbrOld
);
1461 ::DeleteObject(hbr
);
1464 ::DeleteObject((HBITMAP
)bitmap
);
1466 return (WXHBITMAP
)hbmpDst
;
1470 #endif // wxUSE_TOOLBAR && Win95