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"
41 #if wxUSE_TOOLBAR && defined(__WIN95__) && wxUSE_TOOLBAR_NATIVE
43 #include "wx/toolbar.h"
45 #if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
49 #include "wx/msw/private.h"
53 #if defined(__WIN95__) && !((defined(__GNUWIN32_OLD__) || defined(__TWIN32__)) && !defined(__CYGWIN10__))
56 #include "wx/msw/gnuwin32/extra.h"
61 #include "wx/msw/dib.h"
62 #include "wx/app.h" // for GetComCtl32Version
64 // ----------------------------------------------------------------------------
65 // conditional compilation
66 // ----------------------------------------------------------------------------
68 // wxWindows previously always considered that toolbar buttons have light grey
69 // (0xc0c0c0) background and so ignored any bitmap masks - however, this
70 // doesn't work with XPMs which then appear to have black background. To make
71 // this work, we must respect the bitmap masks - which we do now. This should
72 // be ok in any case, but to restore 100% compatible with the old version
73 // behaviour, you can set this to 0.
74 #define USE_BITMAP_MASKS 1
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
80 // these standard constants are not always defined in compilers headers
84 #define TBSTYLE_LIST 0x1000
85 #define TBSTYLE_FLAT 0x0800
86 #define TBSTYLE_TRANSPARENT 0x8000
88 // use TBSTYLE_TRANSPARENT if you use TBSTYLE_FLAT
92 #define TB_SETSTYLE (WM_USER + 56)
93 #define TB_GETSTYLE (WM_USER + 57)
97 #define TB_HITTEST (WM_USER + 69)
100 // these values correspond to those used by comctl32.dll
101 #define DEFAULTBITMAPX 16
102 #define DEFAULTBITMAPY 15
103 #define DEFAULTBUTTONX 24
104 #define DEFAULTBUTTONY 24
105 #define DEFAULTBARHEIGHT 27
107 // ----------------------------------------------------------------------------
108 // private function prototypes
109 // ----------------------------------------------------------------------------
111 // adjust toolbar bitmap colours
112 // static void wxMapBitmap(HBITMAP hBitmap, int width, int height);
114 // ----------------------------------------------------------------------------
116 // ----------------------------------------------------------------------------
118 IMPLEMENT_DYNAMIC_CLASS(wxToolBar
, wxToolBarBase
)
120 BEGIN_EVENT_TABLE(wxToolBar
, wxToolBarBase
)
121 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent
)
122 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged
)
125 // ----------------------------------------------------------------------------
127 // ----------------------------------------------------------------------------
129 class wxToolBarTool
: public wxToolBarToolBase
132 wxToolBarTool(wxToolBar
*tbar
,
134 const wxBitmap
& bitmap1
,
135 const wxBitmap
& bitmap2
,
137 wxObject
*clientData
,
138 const wxString
& shortHelpString
,
139 const wxString
& longHelpString
)
140 : wxToolBarToolBase(tbar
, id
, bitmap1
, bitmap2
, toggle
,
141 clientData
, shortHelpString
, longHelpString
)
146 wxToolBarTool(wxToolBar
*tbar
, wxControl
*control
)
147 : wxToolBarToolBase(tbar
, control
)
152 // set/get the number of separators which we use to cover the space used by
153 // a control in the toolbar
154 void SetSeparatorsCount(size_t count
) { m_nSepCount
= count
; }
155 size_t GetSeparatorsCount() const { return m_nSepCount
; }
162 // ============================================================================
164 // ============================================================================
166 // ----------------------------------------------------------------------------
168 // ----------------------------------------------------------------------------
170 wxToolBarToolBase
*wxToolBar::CreateTool(int id
,
171 const wxBitmap
& bitmap1
,
172 const wxBitmap
& bitmap2
,
174 wxObject
*clientData
,
175 const wxString
& shortHelpString
,
176 const wxString
& longHelpString
)
178 return new wxToolBarTool(this, id
, bitmap1
, bitmap2
, toggle
,
179 clientData
, shortHelpString
, longHelpString
);
182 wxToolBarToolBase
*wxToolBar::CreateTool(wxControl
*control
)
184 return new wxToolBarTool(this, control
);
187 // ----------------------------------------------------------------------------
188 // wxToolBar construction
189 // ----------------------------------------------------------------------------
191 void wxToolBar::Init()
197 m_defaultWidth
= DEFAULTBITMAPX
;
198 m_defaultHeight
= DEFAULTBITMAPY
;
201 bool wxToolBar::Create(wxWindow
*parent
,
206 const wxString
& name
)
208 // common initialisation
209 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
213 DWORD msflags
= 0; // WS_VISIBLE | WS_CHILD always included
214 if (style
& wxBORDER
)
215 msflags
|= WS_BORDER
;
217 if ( style
& wxCLIP_SIBLINGS
)
218 msflags
|= WS_CLIPSIBLINGS
;
220 #ifdef TBSTYLE_TOOLTIPS
221 msflags
|= TBSTYLE_TOOLTIPS
;
224 if (style
& wxTB_FLAT
)
226 if (wxTheApp
->GetComCtl32Version() > 400)
227 msflags
|= TBSTYLE_FLAT
;
230 // MSW-specific initialisation
231 if ( !wxControl::MSWCreateControl(TOOLBARCLASSNAME
, msflags
) )
234 // toolbar-specific post initialisation
235 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
237 // set up the colors and fonts
238 wxRGBToColour(m_backgroundColour
, GetSysColor(COLOR_BTNFACE
));
239 m_foregroundColour
= *wxBLACK
;
241 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT
));
252 height
= m_defaultHeight
;
258 SetSize(x
, y
, width
, height
);
263 wxToolBar::~wxToolBar()
265 // we must refresh the frame size when the toolbar is deleted but the frame
266 // is not - otherwise toolbar leaves a hole in the place it used to occupy
268 // NB: a frame is being deleted only if it is not any longer in
269 // wxTopLevelWindows list
270 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
271 if ( frame
&& wxTopLevelWindows
.Find(frame
) )
273 frame
->SendSizeEvent();
278 ::DeleteObject((HBITMAP
) m_hBitmap
);
282 // ----------------------------------------------------------------------------
283 // adding/removing tools
284 // ----------------------------------------------------------------------------
286 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos
),
287 wxToolBarToolBase
*tool
)
289 // nothing special to do here - we really create the toolbar buttons in
296 bool wxToolBar::DoDeleteTool(size_t pos
, wxToolBarToolBase
*tool
)
298 // the main difficulty we have here is with the controls in the toolbars:
299 // as we (sometimes) use several separators to cover up the space used by
300 // them, the indices are not the same for us and the toolbar
302 // first determine the position of the first button to delete: it may be
303 // different from pos if we use several separators to cover the space used
305 wxToolBarToolsList::Node
*node
;
306 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
308 wxToolBarToolBase
*tool2
= node
->GetData();
311 // let node point to the next node in the list
312 node
= node
->GetNext();
317 if ( tool2
->IsControl() )
319 pos
+= ((wxToolBarTool
*)tool2
)->GetSeparatorsCount() - 1;
323 // now determine the number of buttons to delete and the area taken by them
324 size_t nButtonsToDelete
= 1;
326 // get the size of the button we're going to delete
328 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT
, pos
, (LPARAM
)&r
) )
330 wxLogLastError(_T("TB_GETITEMRECT"));
333 int width
= r
.right
- r
.left
;
335 if ( tool
->IsControl() )
337 nButtonsToDelete
= ((wxToolBarTool
*)tool
)->GetSeparatorsCount();
339 width
*= nButtonsToDelete
;
342 // do delete all buttons
343 m_nButtons
-= nButtonsToDelete
;
344 while ( nButtonsToDelete
-- > 0 )
346 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, pos
, 0) )
348 wxLogLastError(wxT("TB_DELETEBUTTON"));
356 // and finally reposition all the controls after this button (the toolbar
357 // takes care of all normal items)
358 for ( /* node -> first after deleted */ ; node
; node
= node
->GetNext() )
360 wxToolBarToolBase
*tool2
= node
->GetData();
361 if ( tool2
->IsControl() )
364 wxControl
*control
= tool2
->GetControl();
365 control
->GetPosition(&x
, NULL
);
366 control
->Move(x
- width
, -1);
373 bool wxToolBar::Realize()
375 size_t nTools
= GetToolsCount();
382 bool isVertical
= (GetWindowStyle() & wxTB_VERTICAL
) != 0;
384 // First, add the bitmap: we use one bitmap for all toolbar buttons
385 // ----------------------------------------------------------------
387 // if we already have a bitmap, we'll replace the existing one - otherwise
388 // we'll install a new one
389 HBITMAP oldToolBarBitmap
= (HBITMAP
)m_hBitmap
;
391 int totalBitmapWidth
= (int)(m_defaultWidth
* nTools
);
392 int totalBitmapHeight
= (int)m_defaultHeight
;
394 // Create a bitmap and copy all the tool bitmaps to it
396 wxMemoryDC dcAllButtons
;
397 wxBitmap
bitmap(totalBitmapWidth
, totalBitmapHeight
);
398 dcAllButtons
.SelectObject(bitmap
);
399 dcAllButtons
.SetBackground(*wxLIGHT_GREY_BRUSH
);
400 dcAllButtons
.Clear();
402 m_hBitmap
= bitmap
.GetHBITMAP();
403 HBITMAP hBitmap
= (HBITMAP
)m_hBitmap
;
404 #else // !USE_BITMAP_MASKS
405 HBITMAP hBitmap
= ::CreateCompatibleBitmap(ScreenHDC(),
410 wxLogLastError(_T("CreateCompatibleBitmap"));
415 m_hBitmap
= (WXHBITMAP
)hBitmap
;
417 HDC memoryDC
= ::CreateCompatibleDC(NULL
);
418 HBITMAP oldBitmap
= (HBITMAP
) ::SelectObject(memoryDC
, hBitmap
);
420 HDC memoryDC2
= ::CreateCompatibleDC(NULL
);
421 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
423 // the button position
426 // the number of buttons (not separators)
429 wxToolBarToolsList::Node
*node
= m_tools
.GetFirst();
432 wxToolBarToolBase
*tool
= node
->GetData();
433 if ( tool
->IsButton() )
435 const wxBitmap
& bmp
= tool
->GetBitmap1();
439 // notice the last parameter: do use mask
440 dcAllButtons
.DrawBitmap(tool
->GetBitmap1(), x
, 0, TRUE
);
441 #else // !USE_BITMAP_MASKS
442 HBITMAP hbmp
= GetHbitmapOf(bmp
);
443 HBITMAP oldBitmap2
= (HBITMAP
)::SelectObject(memoryDC2
, hbmp
);
444 if ( !BitBlt(memoryDC
, x
, 0, m_defaultWidth
, m_defaultHeight
,
445 memoryDC2
, 0, 0, SRCCOPY
) )
447 wxLogLastError(wxT("BitBlt"));
450 ::SelectObject(memoryDC2
, oldBitmap2
);
451 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
455 wxFAIL_MSG( _T("invalid tool button bitmap") );
458 // still inc width and number of buttons because otherwise the
459 // subsequent buttons will all be shifted which is rather confusing
460 // (and like this you'd see immediately which bitmap was bad)
465 node
= node
->GetNext();
469 dcAllButtons
.SelectObject(wxNullBitmap
);
471 // don't delete this HBITMAP!
472 bitmap
.SetHBITMAP(0);
473 #else // !USE_BITMAP_MASKS
474 ::SelectObject(memoryDC
, oldBitmap
);
475 ::DeleteDC(memoryDC
);
476 ::DeleteDC(memoryDC2
);
477 #endif // USE_BITMAP_MASKS/!USE_BITMAP_MASKS
479 // Map to system colours
480 MapBitmap((WXHBITMAP
) hBitmap
, totalBitmapWidth
, totalBitmapHeight
);
484 bool addBitmap
= TRUE
;
486 if ( oldToolBarBitmap
)
488 #ifdef TB_REPLACEBITMAP
489 if ( wxTheApp
->GetComCtl32Version() >= 400 )
491 TBREPLACEBITMAP replaceBitmap
;
492 replaceBitmap
.hInstOld
= NULL
;
493 replaceBitmap
.hInstNew
= NULL
;
494 replaceBitmap
.nIDOld
= (UINT
) oldToolBarBitmap
;
495 replaceBitmap
.nIDNew
= (UINT
) hBitmap
;
496 replaceBitmap
.nButtons
= nButtons
;
497 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP
,
498 0, (LPARAM
) &replaceBitmap
) )
500 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
503 ::DeleteObject(oldToolBarBitmap
);
509 #endif // TB_REPLACEBITMAP
511 // we can't replace the old bitmap, so we will add another one
512 // (awfully inefficient, but what else to do?) and shift the bitmap
513 // indices accordingly
516 bitmapId
= m_nButtons
;
519 // Now delete all the buttons
520 for ( size_t pos
= 0; pos
< m_nButtons
; pos
++ )
522 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON
, 0, 0) )
524 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
530 if ( addBitmap
) // no old bitmap or we can't replace it
532 TBADDBITMAP addBitmap
;
534 addBitmap
.nID
= (UINT
) hBitmap
;
535 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP
,
536 (WPARAM
) nButtons
, (LPARAM
)&addBitmap
) == -1 )
538 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
542 // Next add the buttons and separators
543 // -----------------------------------
545 TBBUTTON
*buttons
= new TBBUTTON
[nTools
];
547 // this array will hold the indices of all controls in the toolbar
548 wxArrayInt controlIds
;
551 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext() )
553 wxToolBarToolBase
*tool
= node
->GetData();
555 // don't add separators to the vertical toolbar - looks ugly
556 if ( isVertical
&& tool
->IsSeparator() )
559 TBBUTTON
& button
= buttons
[i
];
561 wxZeroMemory(button
);
563 switch ( tool
->GetStyle() )
565 case wxTOOL_STYLE_CONTROL
:
566 button
.idCommand
= tool
->GetId();
567 // fall through: create just a separator too
569 case wxTOOL_STYLE_SEPARATOR
:
570 button
.fsState
= TBSTATE_ENABLED
;
571 button
.fsStyle
= TBSTYLE_SEP
;
574 case wxTOOL_STYLE_BUTTON
:
575 button
.iBitmap
= bitmapId
;
576 button
.idCommand
= tool
->GetId();
578 if ( tool
->IsEnabled() )
579 button
.fsState
|= TBSTATE_ENABLED
;
580 if ( tool
->IsToggled() )
581 button
.fsState
|= TBSTATE_CHECKED
;
583 button
.fsStyle
= tool
->CanBeToggled() ? TBSTYLE_CHECK
593 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS
,
594 (WPARAM
)i
, (LPARAM
)buttons
) )
596 wxLogLastError(wxT("TB_ADDBUTTONS"));
601 // Deal with the controls finally
602 // ------------------------------
604 // adjust the controls size to fit nicely in the toolbar
606 for ( node
= m_tools
.GetFirst(); node
; node
= node
->GetNext(), index
++ )
608 wxToolBarToolBase
*tool
= node
->GetData();
609 if ( !tool
->IsControl() )
612 wxControl
*control
= tool
->GetControl();
614 wxSize size
= control
->GetSize();
616 // the position of the leftmost controls corner
619 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
620 // latter only appeared in v4.70 of comctl32.dll
622 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT
,
623 index
, (LPARAM
)(LPRECT
)&r
) )
625 wxLogLastError(wxT("TB_GETITEMRECT"));
628 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
629 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
630 // available in headers, now check whether it is available now
632 if ( wxTheApp
->GetComCtl32Version() >= 471 )
634 // set the (underlying) separators width to be that of the
637 tbbi
.cbSize
= sizeof(tbbi
);
638 tbbi
.dwMask
= TBIF_SIZE
;
640 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO
,
641 tool
->GetId(), (LPARAM
)&tbbi
) )
643 // the id is probably invalid?
644 wxLogLastError(wxT("TB_SETBUTTONINFO"));
648 #endif // comctl32.dll 4.71
649 // TB_SETBUTTONINFO unavailable
651 // try adding several separators to fit the controls width
652 int widthSep
= r
.right
- r
.left
;
658 tbb
.fsState
= TBSTATE_ENABLED
;
659 tbb
.fsStyle
= TBSTYLE_SEP
;
661 size_t nSeparators
= size
.x
/ widthSep
;
662 for ( size_t nSep
= 0; nSep
< nSeparators
; nSep
++ )
664 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON
,
665 index
, (LPARAM
)&tbb
) )
667 wxLogLastError(wxT("TB_INSERTBUTTON"));
673 // remember the number of separators we used - we'd have to
674 // delete all of them later
675 ((wxToolBarTool
*)tool
)->SetSeparatorsCount(nSeparators
);
677 // adjust the controls width to exactly cover the separators
678 control
->SetSize((nSeparators
+ 1)*widthSep
, -1);
681 // and position the control itself correctly vertically
682 int height
= r
.bottom
- r
.top
;
683 int diff
= height
- size
.y
;
686 // the control is too high, resize to fit
687 control
->SetSize(-1, height
- 2);
692 control
->Move(left
== -1 ? r
.left
: left
, r
.top
+ (diff
+ 1) / 2);
695 // the max index is the "real" number of buttons - i.e. counting even the
696 // separators which we added just for aligning the controls
701 if ( m_maxRows
== 0 )
703 // if not set yet, only one row
707 else if ( m_nButtons
> 0 ) // vertical non empty toolbar
709 if ( m_maxRows
== 0 )
711 // if not set yet, have one column
719 // ----------------------------------------------------------------------------
721 // ----------------------------------------------------------------------------
723 bool wxToolBar::MSWCommand(WXUINT
WXUNUSED(cmd
), WXWORD id
)
725 wxToolBarToolBase
*tool
= FindById((int)id
);
729 if ( tool
->CanBeToggled() )
731 LRESULT state
= ::SendMessage(GetHwnd(), TB_GETSTATE
, id
, 0);
732 tool
->Toggle((state
& TBSTATE_CHECKED
) != 0);
735 bool toggled
= tool
->IsToggled();
737 // OnLeftClick() can veto the button state change - for buttons which may
738 // be toggled only, of couse
739 if ( !OnLeftClick((int)id
, toggled
) && tool
->CanBeToggled() )
743 tool
->SetToggle(toggled
);
745 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
, id
, MAKELONG(toggled
, 0));
751 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl
),
753 WXLPARAM
*WXUNUSED(result
))
755 // First check if this applies to us
756 NMHDR
*hdr
= (NMHDR
*)lParam
;
758 // the tooltips control created by the toolbar is sometimes Unicode, even
759 // in an ANSI application - this seems to be a bug in comctl32.dll v5
760 int code
= (int)hdr
->code
;
761 if ( (code
!= TTN_NEEDTEXTA
) && (code
!= TTN_NEEDTEXTW
) )
764 HWND toolTipWnd
= (HWND
)::SendMessage((HWND
)GetHWND(), TB_GETTOOLTIPS
, 0, 0);
765 if ( toolTipWnd
!= hdr
->hwndFrom
)
768 LPTOOLTIPTEXT ttText
= (LPTOOLTIPTEXT
)lParam
;
769 int id
= (int)ttText
->hdr
.idFrom
;
771 wxToolBarToolBase
*tool
= FindById(id
);
775 const wxString
& help
= tool
->GetShortHelp();
777 if ( !help
.IsEmpty() )
779 if ( code
== TTN_NEEDTEXTA
)
781 ttText
->lpszText
= (wxChar
*)help
.c_str();
786 ttText
->lpszText
= (wxChar
*)help
.c_str();
788 // VZ: I don't know why it happens, but the versions of
789 // comctl32.dll starting from 4.70 sometimes send TTN_NEEDTEXTW
790 // even to ANSI programs (normally, this message is supposed
791 // to be sent to Unicode programs only) - hence we need to
792 // handle it as well, otherwise no tooltips will be shown in
795 size_t lenAnsi
= help
.Len();
797 // MetroWerks doesn't like calling mbstowcs with NULL argument
798 size_t lenUnicode
= 2*lenAnsi
;
800 size_t lenUnicode
= mbstowcs(NULL
, help
, lenAnsi
);
803 // using the pointer of right type avoids us doing all sorts of
804 // pointer arithmetics ourselves
805 wchar_t *dst
= (wchar_t *)ttText
->szText
,
806 *pwz
= new wchar_t[lenUnicode
+ 1];
807 mbstowcs(pwz
, help
, lenAnsi
+ 1);
808 memcpy(dst
, pwz
, lenUnicode
*sizeof(wchar_t));
810 // put the terminating _wide_ NUL
818 // For backward compatibility...
819 OnMouseEnter(tool
->GetId());
824 // ----------------------------------------------------------------------------
826 // ----------------------------------------------------------------------------
828 void wxToolBar::SetToolBitmapSize(const wxSize
& size
)
830 wxToolBarBase::SetToolBitmapSize(size
);
832 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE
, 0, MAKELONG(size
.x
, size
.y
));
835 void wxToolBar::SetRows(int nRows
)
837 if ( nRows
== m_maxRows
)
839 // avoid resizing the frame uselessly
843 // TRUE in wParam means to create at least as many rows, FALSE -
846 ::SendMessage(GetHwnd(), TB_SETROWS
,
847 MAKEWPARAM(nRows
, !(GetWindowStyle() & wxTB_VERTICAL
)),
855 // The button size is bigger than the bitmap size
856 wxSize
wxToolBar::GetToolSize() const
858 // TB_GETBUTTONSIZE is supported from version 4.70
859 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
860 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) )
861 if ( wxTheApp
->GetComCtl32Version() >= 470 )
863 DWORD dw
= ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE
, 0, 0);
865 return wxSize(LOWORD(dw
), HIWORD(dw
));
868 #endif // comctl32.dll 4.70+
871 return wxSize(m_defaultWidth
+ 8, m_defaultHeight
+ 7);
875 wxToolBarToolBase
*wxToolBar::FindToolForPosition(wxCoord x
, wxCoord y
) const
880 int index
= (int)::SendMessage(GetHwnd(), TB_HITTEST
, 0, (LPARAM
)&pt
);
883 // it's a separator or there is no tool at all there
884 return (wxToolBarToolBase
*)NULL
;
887 return m_tools
.Item((size_t)index
)->GetData();
890 void wxToolBar::UpdateSize()
892 // the toolbar size changed
893 SendMessage(GetHwnd(), TB_AUTOSIZE
, 0, 0);
895 // we must also refresh the frame after the toolbar size (possibly) changed
896 wxFrame
*frame
= wxDynamicCast(GetParent(), wxFrame
);
899 frame
->SendSizeEvent();
903 // ----------------------------------------------------------------------------
905 // ----------------------------------------------------------------------------
907 void wxToolBar::DoEnableTool(wxToolBarToolBase
*tool
, bool enable
)
909 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON
,
910 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(enable
, 0));
913 void wxToolBar::DoToggleTool(wxToolBarToolBase
*tool
, bool toggle
)
915 ::SendMessage(GetHwnd(), TB_CHECKBUTTON
,
916 (WPARAM
)tool
->GetId(), (LPARAM
)MAKELONG(toggle
, 0));
919 void wxToolBar::DoSetToggle(wxToolBarToolBase
*WXUNUSED(tool
), bool WXUNUSED(toggle
))
921 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
922 // without, so we really need to delete the button and recreate it here
923 wxFAIL_MSG( _T("not implemented") );
926 // ----------------------------------------------------------------------------
928 // ----------------------------------------------------------------------------
930 // Responds to colour changes, and passes event on to children.
931 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent
& event
)
933 m_backgroundColour
= wxColour(GetRValue(GetSysColor(COLOR_BTNFACE
)),
934 GetGValue(GetSysColor(COLOR_BTNFACE
)),
935 GetBValue(GetSysColor(COLOR_BTNFACE
)));
940 // Relayout the toolbar
941 int nrows
= m_maxRows
;
942 m_maxRows
= 0; // otherwise SetRows() wouldn't do anything
947 // let the event propagate further
951 void wxToolBar::OnMouseEvent(wxMouseEvent
& event
)
953 if (event
.RightDown())
955 // For now, we don't have an id. Later we could
956 // try finding the tool.
957 OnRightClick((int)-1, event
.GetX(), event
.GetY());
965 long wxToolBar::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
967 if ( nMsg
== WM_SIZE
)
969 // calculate our minor dimenstion ourselves - we're confusing the
970 // standard logic (TB_AUTOSIZE) with our horizontal toolbars and other
973 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT
, 0, (LPARAM
)&r
) )
977 if ( GetWindowStyle() & wxTB_VERTICAL
)
979 w
= r
.right
- r
.left
;
982 w
*= (m_nButtons
+ m_maxRows
- 1)/m_maxRows
;
989 h
= r
.bottom
- r
.top
;
992 h
+= 6; // FIXME: this is the separator line height...
997 if ( MAKELPARAM(w
, h
) != lParam
)
999 // size really changed
1003 // message processed
1008 return wxControl::MSWWindowProc(nMsg
, wParam
, lParam
);
1011 // ----------------------------------------------------------------------------
1012 // private functions
1013 // ----------------------------------------------------------------------------
1015 // These are the default colors used to map the bitmap colors to the current
1016 // system colors. Note that they are in BGR format because this is what Windows
1017 // wants (and not RGB)
1020 #define BGR_BUTTONTEXT (RGB(000,000,000)) // black
1021 #define BGR_BUTTONSHADOW (RGB(128,128,128)) // dark grey
1022 #define BGR_BUTTONFACE (RGB(192,192,192)) // bright grey
1023 #define BGR_BUTTONHILIGHT (RGB(255,255,255)) // white
1024 #define BGR_BACKGROUNDSEL (RGB(000,000,255)) // blue
1025 #define BGR_BACKGROUND (RGB(255,000,255)) // magenta
1028 bool wxToolBar::sm_coloursInit
= FALSE
;
1029 long wxToolBar::sm_stdColours
[6];
1031 void wxToolBar::MapBitmap(WXHBITMAP bitmap
, int width
, int height
)
1033 if (!sm_coloursInit
)
1035 // When a bitmap is loaded, the RGB values can change. So we need to have a
1036 // reference bitmap which can tell us what the RGB values change to.
1037 wxBitmap
stdColourBitmap("wxBITMAP_STD_COLOURS", wxBITMAP_TYPE_RESOURCE
);
1038 if (stdColourBitmap
.Ok())
1041 memDC
.SelectObject(stdColourBitmap
);
1045 for (i
= 0; i
< 6; i
++)
1047 memDC
.GetPixel(i
, 0, & colour
);
1048 sm_stdColours
[i
] = RGB(colour
.Red(), colour
.Green(), colour
.Blue());
1050 sm_coloursInit
= TRUE
;
1051 memDC
.SelectObject(wxNullBitmap
);
1055 sm_stdColours
[0] = RGB(000,000,000) ;
1056 sm_stdColours
[1] = RGB(128,128,128) ;
1057 sm_stdColours
[2] = RGB(192,192,192) ;
1058 sm_stdColours
[3] = RGB(255,255,255) ;
1059 sm_stdColours
[4] = RGB(000,000,255) ;
1060 sm_stdColours
[5] = RGB(255,000,255) ;
1061 sm_coloursInit
= TRUE
;
1065 HBITMAP hBitmap
= (HBITMAP
) bitmap
;
1067 COLORMAP ColorMap
[5];
1069 ColorMap
[0].from
= sm_stdColours
[0]; ColorMap
[0].to
= COLOR_BTNTEXT
; // black (0, 0 0)
1070 ColorMap
[1].from
= sm_stdColours
[1]; ColorMap
[1].to
= COLOR_BTNSHADOW
; // dark grey (128, 128, 128)
1071 ColorMap
[2].from
= sm_stdColours
[2]; ColorMap
[2].to
= COLOR_BTNFACE
; // bright grey (192, 192, 192)
1072 ColorMap
[3].from
= sm_stdColours
[3]; ColorMap
[3].to
= COLOR_BTNHIGHLIGHT
; // white (255, 255, 255)
1073 // ColorMap[4].from = sm_stdColours[4]; ColorMap[4].to = COLOR_HIGHLIGHT; // blue (0, 0, 255)
1074 ColorMap
[4].from
= sm_stdColours
[5]; ColorMap
[4].to
= COLOR_WINDOW
; // magenta (255, 0, 255)
1078 {BGR_BUTTONTEXT
, COLOR_BTNTEXT
}, // black
1079 {BGR_BUTTONSHADOW
, COLOR_BTNSHADOW
}, // dark grey
1080 {BGR_BUTTONFACE
, COLOR_BTNFACE
}, // bright grey
1081 {BGR_BUTTONHILIGHT
, COLOR_BTNHIGHLIGHT
},// white
1082 /* {BGR_BACKGROUNDSEL, COLOR_HIGHLIGHT}, // blue */
1083 {BGR_BACKGROUND
, COLOR_WINDOW
} // magenta
1087 int NUM_MAPS
= (sizeof(ColorMap
)/sizeof(COLORMAP
));
1089 for ( n
= 0; n
< NUM_MAPS
; n
++)
1091 ColorMap
[n
].to
= ::GetSysColor(ColorMap
[n
].to
);
1095 HDC hdcMem
= CreateCompatibleDC(NULL
);
1099 hbmOld
= (HBITMAP
) SelectObject(hdcMem
, hBitmap
);
1102 for ( i
= 0; i
< width
; i
++)
1104 for ( j
= 0; j
< height
; j
++)
1106 COLORREF pixel
= ::GetPixel(hdcMem
, i
, j
);
1108 BYTE red = GetRValue(pixel);
1109 BYTE green = GetGValue(pixel);
1110 BYTE blue = GetBValue(pixel);
1113 for ( k
= 0; k
< NUM_MAPS
; k
++)
1115 if ( ColorMap
[k
].from
== pixel
)
1117 /* COLORREF actualPixel = */ ::SetPixel(hdcMem
, i
, j
, ColorMap
[k
].to
);
1125 SelectObject(hdcMem
, hbmOld
);
1126 DeleteObject(hdcMem
);
1130 // Some experiments...
1132 // What we want to do is create another bitmap which has a depth of 4,
1133 // and set the bits. So probably we want to convert this HBITMAP into a
1134 // DIB, then call SetDIBits.
1135 // AAAGH. The stupid thing is that if newBitmap has a depth of 4 (less than that of
1136 // the screen), then SetDIBits fails.
1137 HBITMAP newBitmap
= ::CreateBitmap(totalBitmapWidth
, totalBitmapHeight
, 1, 4, NULL
);
1138 HANDLE newDIB
= ::BitmapToDIB((HBITMAP
) m_hBitmap
, NULL
);
1139 LPBITMAPINFOHEADER lpbmi
= (LPBITMAPINFOHEADER
) GlobalLock(newDIB
);
1142 // LPBITMAPINFOHEADER lpbmi = (LPBITMAPINFOHEADER) newDIB;
1144 int result
= ::SetDIBits(dc
, newBitmap
, 0, lpbmi
->biHeight
, FindDIBBits((LPSTR
)lpbmi
), (LPBITMAPINFO
)lpbmi
,
1146 DWORD err
= GetLastError();
1148 ::ReleaseDC(NULL
, dc
);
1151 GlobalUnlock (newDIB
);
1152 GlobalFree (newDIB
);
1154 // WXHBITMAP hBitmap2 = wxCreateMappedBitmap((WXHINSTANCE) wxGetInstance(), (WXHBITMAP) m_hBitmap);
1155 // Substitute our new bitmap for the old one
1156 ::DeleteObject((HBITMAP
) m_hBitmap
);
1157 m_hBitmap
= (WXHBITMAP
) newBitmap
;
1161 #endif // wxUSE_TOOLBAR && Win95