]> git.saurik.com Git - wxWidgets.git/blob - src/msw/tbar95.cpp
Applied patch [ 1181975 ] [wxMSW] Removes all flicker from wxNotebook
[wxWidgets.git] / src / msw / tbar95.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/tbar95.cpp
3 // Purpose: wxToolBar
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 04/01/98
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "tbar95.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #ifndef WX_PRECOMP
32 #include "wx/frame.h"
33 #include "wx/log.h"
34 #include "wx/intl.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"
40 #endif
41
42 #if wxUSE_TOOLBAR && wxUSE_TOOLBAR_NATIVE && !defined(__SMARTPHONE__)
43
44 #include "wx/toolbar.h"
45 #include "wx/sysopt.h"
46 #include "wx/image.h"
47
48 #include "wx/msw/private.h"
49
50 #if wxUSE_UXTHEME
51 #include "wx/msw/uxtheme.h"
52 #endif
53
54 // include <commctrl.h> "properly"
55 #include "wx/msw/wrapcctl.h"
56
57 #include "wx/app.h" // for GetComCtl32Version
58
59 // ----------------------------------------------------------------------------
60 // constants
61 // ----------------------------------------------------------------------------
62
63 // these standard constants are not always defined in compilers headers
64
65 // Styles
66 #ifndef TBSTYLE_FLAT
67 #define TBSTYLE_LIST 0x1000
68 #define TBSTYLE_FLAT 0x0800
69 #endif
70
71 #ifndef TBSTYLE_TRANSPARENT
72 #define TBSTYLE_TRANSPARENT 0x8000
73 #endif
74
75 #ifndef TBSTYLE_TOOLTIPS
76 #define TBSTYLE_TOOLTIPS 0x0100
77 #endif
78
79 // Messages
80 #ifndef TB_GETSTYLE
81 #define TB_SETSTYLE (WM_USER + 56)
82 #define TB_GETSTYLE (WM_USER + 57)
83 #endif
84
85 #ifndef TB_HITTEST
86 #define TB_HITTEST (WM_USER + 69)
87 #endif
88
89 #ifndef TB_GETMAXSIZE
90 #define TB_GETMAXSIZE (WM_USER + 83)
91 #endif
92
93 // these values correspond to those used by comctl32.dll
94 #define DEFAULTBITMAPX 16
95 #define DEFAULTBITMAPY 15
96 #define DEFAULTBUTTONX 24
97 #define DEFAULTBUTTONY 24
98 #define DEFAULTBARHEIGHT 27
99
100 // ----------------------------------------------------------------------------
101 // wxWin macros
102 // ----------------------------------------------------------------------------
103
104 IMPLEMENT_DYNAMIC_CLASS(wxToolBar, wxControl)
105
106 /*
107 TOOLBAR PROPERTIES
108 tool
109 bitmap
110 bitmap2
111 tooltip
112 longhelp
113 radio (bool)
114 toggle (bool)
115 separator
116 style ( wxNO_BORDER | wxTB_HORIZONTAL)
117 bitmapsize
118 margins
119 packing
120 separation
121
122 dontattachtoframe
123 */
124
125 BEGIN_EVENT_TABLE(wxToolBar, wxToolBarBase)
126 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent)
127 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged)
128 EVT_ERASE_BACKGROUND(wxToolBar::OnEraseBackground)
129 END_EVENT_TABLE()
130
131 // ----------------------------------------------------------------------------
132 // private classes
133 // ----------------------------------------------------------------------------
134
135 class wxToolBarTool : public wxToolBarToolBase
136 {
137 public:
138 wxToolBarTool(wxToolBar *tbar,
139 int id,
140 const wxString& label,
141 const wxBitmap& bmpNormal,
142 const wxBitmap& bmpDisabled,
143 wxItemKind kind,
144 wxObject *clientData,
145 const wxString& shortHelp,
146 const wxString& longHelp)
147 : wxToolBarToolBase(tbar, id, label, bmpNormal, bmpDisabled, kind,
148 clientData, shortHelp, longHelp)
149 {
150 m_nSepCount = 0;
151 }
152
153 wxToolBarTool(wxToolBar *tbar, wxControl *control)
154 : wxToolBarToolBase(tbar, control)
155 {
156 m_nSepCount = 1;
157 }
158
159 virtual void SetLabel(const wxString& label)
160 {
161 if ( label == m_label )
162 return;
163
164 wxToolBarToolBase::SetLabel(label);
165
166 // we need to update the label shown in the toolbar because it has a
167 // pointer to the internal buffer of the old label
168 //
169 // TODO: use TB_SETBUTTONINFO
170 }
171
172 // set/get the number of separators which we use to cover the space used by
173 // a control in the toolbar
174 void SetSeparatorsCount(size_t count) { m_nSepCount = count; }
175 size_t GetSeparatorsCount() const { return m_nSepCount; }
176
177 private:
178 size_t m_nSepCount;
179
180 DECLARE_NO_COPY_CLASS(wxToolBarTool)
181 };
182
183
184 // ============================================================================
185 // implementation
186 // ============================================================================
187
188 // ----------------------------------------------------------------------------
189 // wxToolBarTool
190 // ----------------------------------------------------------------------------
191
192 wxToolBarToolBase *wxToolBar::CreateTool(int id,
193 const wxString& label,
194 const wxBitmap& bmpNormal,
195 const wxBitmap& bmpDisabled,
196 wxItemKind kind,
197 wxObject *clientData,
198 const wxString& shortHelp,
199 const wxString& longHelp)
200 {
201 return new wxToolBarTool(this, id, label, bmpNormal, bmpDisabled, kind,
202 clientData, shortHelp, longHelp);
203 }
204
205 wxToolBarToolBase *wxToolBar::CreateTool(wxControl *control)
206 {
207 return new wxToolBarTool(this, control);
208 }
209
210 // ----------------------------------------------------------------------------
211 // wxToolBar construction
212 // ----------------------------------------------------------------------------
213
214 void wxToolBar::Init()
215 {
216 m_hBitmap = 0;
217 m_disabledImgList = NULL;
218
219 m_nButtons = 0;
220
221 m_defaultWidth = DEFAULTBITMAPX;
222 m_defaultHeight = DEFAULTBITMAPY;
223
224 m_pInTool = 0;
225 }
226
227 bool wxToolBar::Create(wxWindow *parent,
228 wxWindowID id,
229 const wxPoint& pos,
230 const wxSize& size,
231 long style,
232 const wxString& name)
233 {
234 // common initialisation
235 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
236 return false;
237
238 // MSW-specific initialisation
239 if ( !MSWCreateToolbar(pos, size) )
240 return false;
241
242 wxSetCCUnicodeFormat(GetHwnd());
243
244 // set up the colors and fonts
245 SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE));
246 SetFont(wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT));
247
248 // workaround for flat toolbar on Windows XP classic style
249 #if wxUSE_UXTHEME
250 if ( style & wxTB_FLAT )
251 {
252 wxUxThemeEngine *p = wxUxThemeEngine::Get();
253 if ( !p || !p->IsThemeActive() )
254 {
255 DWORD dwToolbarStyle;
256
257 dwToolbarStyle = (DWORD)::SendMessage(GetHwnd(), TB_GETSTYLE, 0, 0L );
258
259 if ((dwToolbarStyle & TBSTYLE_FLAT) == 0)
260 {
261 dwToolbarStyle |= TBSTYLE_FLAT;
262 ::SendMessage(GetHwnd(), TB_SETSTYLE, 0, (LPARAM)dwToolbarStyle );
263 }
264 }
265 }
266 #endif
267
268 return true;
269 }
270
271 bool wxToolBar::MSWCreateToolbar(const wxPoint& pos, const wxSize& size)
272 {
273 if ( !MSWCreateControl(TOOLBARCLASSNAME, wxEmptyString, pos, size) )
274 return false;
275
276 // toolbar-specific post initialisation
277 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON), 0);
278
279 return true;
280 }
281
282 void wxToolBar::Recreate()
283 {
284 const HWND hwndOld = GetHwnd();
285 if ( !hwndOld )
286 {
287 // we haven't been created yet, no need to recreate
288 return;
289 }
290
291 // get the position and size before unsubclassing the old toolbar
292 const wxPoint pos = GetPosition();
293 const wxSize size = GetSize();
294
295 UnsubclassWin();
296
297 if ( !MSWCreateToolbar(pos, size) )
298 {
299 // what can we do?
300 wxFAIL_MSG( _T("recreating the toolbar failed") );
301
302 return;
303 }
304
305 // reparent all our children under the new toolbar
306 for ( wxWindowList::compatibility_iterator node = m_children.GetFirst();
307 node;
308 node = node->GetNext() )
309 {
310 wxWindow *win = node->GetData();
311 if ( !win->IsTopLevel() )
312 ::SetParent(GetHwndOf(win), GetHwnd());
313 }
314
315 // only destroy the old toolbar now -- after all the children had been
316 // reparented
317 ::DestroyWindow(hwndOld);
318
319 // it is for the old bitmap control and can't be used with the new one
320 if ( m_hBitmap )
321 {
322 ::DeleteObject((HBITMAP) m_hBitmap);
323 m_hBitmap = 0;
324 }
325
326 if ( m_disabledImgList )
327 {
328 delete m_disabledImgList;
329 m_disabledImgList = NULL;
330 }
331
332 Realize();
333 UpdateSize();
334 }
335
336 wxToolBar::~wxToolBar()
337 {
338 // we must refresh the frame size when the toolbar is deleted but the frame
339 // is not - otherwise toolbar leaves a hole in the place it used to occupy
340 wxFrame *frame = wxDynamicCast(GetParent(), wxFrame);
341 if ( frame && !frame->IsBeingDeleted() )
342 {
343 frame->SendSizeEvent();
344 }
345
346 if ( m_hBitmap )
347 {
348 ::DeleteObject((HBITMAP) m_hBitmap);
349 }
350
351 delete m_disabledImgList;
352 }
353
354 wxSize wxToolBar::DoGetBestSize() const
355 {
356 wxSize sizeBest;
357
358 SIZE size;
359 if ( !::SendMessage(GetHwnd(), TB_GETMAXSIZE, 0, (LPARAM)&size) )
360 {
361 // maybe an old (< 0x400) Windows version? try to approximate the
362 // toolbar size ourselves
363 sizeBest = GetToolSize();
364 sizeBest.y += 2 * ::GetSystemMetrics(SM_CYBORDER); // Add borders
365 sizeBest.x *= GetToolsCount();
366
367 // reverse horz and vertical components if necessary
368 if ( HasFlag(wxTB_VERTICAL) )
369 {
370 int t = sizeBest.x;
371 sizeBest.x = sizeBest.y;
372 sizeBest.y = t;
373 }
374 }
375 else
376 {
377 sizeBest.x = size.cx;
378 sizeBest.y = size.cy;
379 }
380
381 return sizeBest;
382 }
383
384 WXDWORD wxToolBar::MSWGetStyle(long style, WXDWORD *exstyle) const
385 {
386 // toolbars never have border, giving one to them results in broken
387 // appearance
388 WXDWORD msStyle = wxControl::MSWGetStyle
389 (
390 (style & ~wxBORDER_MASK) | wxBORDER_NONE, exstyle
391 );
392
393 // always include this one, it never hurts and setting it later only if we
394 // do have tooltips wouldn't work
395 msStyle |= TBSTYLE_TOOLTIPS;
396
397 if ( style & (wxTB_FLAT | wxTB_HORZ_LAYOUT) )
398 {
399 // static as it doesn't change during the program lifetime
400 static int s_verComCtl = wxApp::GetComCtl32Version();
401
402 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
403 // style with 6.00 (part of Windows XP) leads to the toolbar with
404 // incorrect background colour - and not using it still results in the
405 // correct (flat) toolbar, so don't use it there
406 if ( s_verComCtl > 400 && s_verComCtl < 600 )
407 {
408 msStyle |= TBSTYLE_FLAT | TBSTYLE_TRANSPARENT;
409 }
410
411 if ( s_verComCtl >= 470 && style & wxTB_HORZ_LAYOUT )
412 {
413 msStyle |= TBSTYLE_LIST;
414 }
415 }
416
417 if ( style & wxTB_NODIVIDER )
418 msStyle |= CCS_NODIVIDER;
419
420 if ( style & wxTB_NOALIGN )
421 msStyle |= CCS_NOPARENTALIGN;
422
423 if ( style & wxTB_VERTICAL )
424 msStyle |= CCS_VERT;
425
426 return msStyle;
427 }
428
429 // ----------------------------------------------------------------------------
430 // adding/removing tools
431 // ----------------------------------------------------------------------------
432
433 bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos), wxToolBarToolBase *tool)
434 {
435 // nothing special to do here - we really create the toolbar buttons in
436 // Realize() later
437 tool->Attach(this);
438
439 InvalidateBestSize();
440 return true;
441 }
442
443 bool wxToolBar::DoDeleteTool(size_t pos, wxToolBarToolBase *tool)
444 {
445 // the main difficulty we have here is with the controls in the toolbars:
446 // as we (sometimes) use several separators to cover up the space used by
447 // them, the indices are not the same for us and the toolbar
448
449 // first determine the position of the first button to delete: it may be
450 // different from pos if we use several separators to cover the space used
451 // by a control
452 wxToolBarToolsList::compatibility_iterator node;
453 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
454 {
455 wxToolBarToolBase *tool2 = node->GetData();
456 if ( tool2 == tool )
457 {
458 // let node point to the next node in the list
459 node = node->GetNext();
460
461 break;
462 }
463
464 if ( tool2->IsControl() )
465 {
466 pos += ((wxToolBarTool *)tool2)->GetSeparatorsCount() - 1;
467 }
468 }
469
470 // now determine the number of buttons to delete and the area taken by them
471 size_t nButtonsToDelete = 1;
472
473 // get the size of the button we're going to delete
474 RECT r;
475 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT, pos, (LPARAM)&r) )
476 {
477 wxLogLastError(_T("TB_GETITEMRECT"));
478 }
479
480 int width = r.right - r.left;
481
482 if ( tool->IsControl() )
483 {
484 nButtonsToDelete = ((wxToolBarTool *)tool)->GetSeparatorsCount();
485
486 width *= nButtonsToDelete;
487 }
488
489 // do delete all buttons
490 m_nButtons -= nButtonsToDelete;
491 while ( nButtonsToDelete-- > 0 )
492 {
493 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, pos, 0) )
494 {
495 wxLogLastError(wxT("TB_DELETEBUTTON"));
496
497 return false;
498 }
499 }
500
501 tool->Detach();
502
503 // and finally reposition all the controls after this button (the toolbar
504 // takes care of all normal items)
505 for ( /* node -> first after deleted */ ; node; node = node->GetNext() )
506 {
507 wxToolBarToolBase *tool2 = node->GetData();
508 if ( tool2->IsControl() )
509 {
510 int x;
511 wxControl *control = tool2->GetControl();
512 control->GetPosition(&x, NULL);
513 control->Move(x - width, wxDefaultCoord);
514 }
515 }
516
517 InvalidateBestSize();
518 return true;
519 }
520
521 void wxToolBar::CreateDisabledImageList()
522 {
523 // as we can't use disabled image list with older versions of comctl32.dll,
524 // don't even bother creating it
525 if ( wxTheApp->GetComCtl32Version() >= 470 )
526 {
527 // search for the first disabled button img in the toolbar, if any
528 for ( wxToolBarToolsList::compatibility_iterator
529 node = m_tools.GetFirst(); node; node = node->GetNext() )
530 {
531 wxToolBarToolBase *tool = node->GetData();
532 wxBitmap bmpDisabled = tool->GetDisabledBitmap();
533 if ( bmpDisabled.Ok() )
534 {
535 m_disabledImgList = new wxImageList
536 (
537 m_defaultWidth,
538 m_defaultHeight,
539 bmpDisabled.GetMask() != NULL,
540 GetToolsCount()
541 );
542 return;
543 }
544 }
545
546 // we don't have any disabled bitmaps
547 }
548
549 m_disabledImgList = NULL;
550 }
551
552 bool wxToolBar::Realize()
553 {
554 const size_t nTools = GetToolsCount();
555 if ( nTools == 0 )
556 {
557 // nothing to do
558 return true;
559 }
560
561 const bool isVertical = HasFlag(wxTB_VERTICAL);
562
563 bool doRemap, doRemapBg, doTransparent;
564 #ifdef __WXWINCE__
565 doRemapBg = false;
566 doRemap = false;
567 doTransparent = false;
568 #else
569 if (wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 2)
570 {
571 doRemapBg = doRemap = false;
572 doTransparent = true;
573 }
574 else
575 { doRemap = !wxSystemOptions::HasOption(wxT("msw.remap"))
576 || wxSystemOptions::GetOptionInt(wxT("msw.remap")) == 1;
577 doRemapBg = !doRemap;
578 doTransparent = false;
579 }
580 #endif
581
582 // delete all old buttons, if any
583 for ( size_t pos = 0; pos < m_nButtons; pos++ )
584 {
585 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, 0, 0) )
586 {
587 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
588 }
589 }
590
591 // First, add the bitmap: we use one bitmap for all toolbar buttons
592 // ----------------------------------------------------------------
593
594 wxToolBarToolsList::compatibility_iterator node;
595 int bitmapId = 0;
596
597 wxSize sizeBmp;
598 if ( HasFlag(wxTB_NOICONS) )
599 {
600 // no icons, don't leave space for them
601 sizeBmp.x =
602 sizeBmp.y = 0;
603 }
604 else // do show icons
605 {
606 // if we already have a bitmap, we'll replace the existing one --
607 // otherwise we'll install a new one
608 HBITMAP oldToolBarBitmap = (HBITMAP)m_hBitmap;
609
610 sizeBmp.x = m_defaultWidth;
611 sizeBmp.y = m_defaultHeight;
612
613 const wxCoord totalBitmapWidth = m_defaultWidth * nTools,
614 totalBitmapHeight = m_defaultHeight;
615
616 // Create a bitmap and copy all the tool bitmaps to it
617 wxMemoryDC dcAllButtons;
618 wxBitmap bitmap(totalBitmapWidth, totalBitmapHeight);
619 dcAllButtons.SelectObject(bitmap);
620 #ifdef __WXWINCE__
621 dcAllButtons.SetBackground(wxBrush(wxColour(192,192,192)));
622 #else
623 if (doTransparent)
624 dcAllButtons.SetBackground(*wxTRANSPARENT_BRUSH);
625 else
626 dcAllButtons.SetBackground(*wxLIGHT_GREY_BRUSH);
627 #endif
628 dcAllButtons.Clear();
629
630 m_hBitmap = bitmap.GetHBITMAP();
631 HBITMAP hBitmap = (HBITMAP)m_hBitmap;
632
633 #ifndef __WXWINCE__
634 if (doRemapBg)
635 {
636 dcAllButtons.SelectObject(wxNullBitmap);
637
638 // Even if we're not remapping the bitmap
639 // content, we still have to remap the background.
640 hBitmap = (HBITMAP)MapBitmap((WXHBITMAP) hBitmap,
641 totalBitmapWidth, totalBitmapHeight);
642
643 dcAllButtons.SelectObject(bitmap);
644
645
646 }
647 #endif // !__WXWINCE__
648
649 // the button position
650 wxCoord x = 0;
651
652 // the number of buttons (not separators)
653 int nButtons = 0;
654
655 CreateDisabledImageList();
656 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
657 {
658 wxToolBarToolBase *tool = node->GetData();
659 if ( tool->IsButton() )
660 {
661 const wxBitmap& bmp = tool->GetNormalBitmap();
662
663 const int w = bmp.GetWidth();
664 const int h = bmp.GetHeight();
665
666 if ( bmp.Ok() )
667 {
668 int xOffset = wxMax(0, (m_defaultWidth - w)/2);
669 int yOffset = wxMax(0, (m_defaultHeight - h)/2);
670
671 // notice the last parameter: do use mask
672 dcAllButtons.DrawBitmap(bmp, x + xOffset, yOffset, true);
673 }
674 else
675 {
676 wxFAIL_MSG( _T("invalid tool button bitmap") );
677 }
678
679 // also deal with disabled bitmap if we want to use them
680 if ( m_disabledImgList )
681 {
682 wxBitmap bmpDisabled = tool->GetDisabledBitmap();
683 #if wxUSE_IMAGE
684 if ( !bmpDisabled.Ok() )
685 {
686 // no disabled bitmap specified but we still need to
687 // fill the space in the image list with something, so
688 // we grey out the normal bitmap
689 wxImage imgGreyed;
690 wxCreateGreyedImage(bmp.ConvertToImage(), imgGreyed);
691
692 // we need to have light grey background colour for
693 // MapBitmap() to work correctly
694 for ( int y = 0; y < h; y++ )
695 {
696 for ( int x = 0; x < w; x++ )
697 {
698 if ( imgGreyed.IsTransparent(x, y) )
699 imgGreyed.SetRGB(x, y,
700 wxLIGHT_GREY->Red(),
701 wxLIGHT_GREY->Green(),
702 wxLIGHT_GREY->Blue());
703 }
704 }
705
706 bmpDisabled = wxBitmap(imgGreyed);
707 }
708 #endif // wxUSE_IMAGE
709
710 MapBitmap(bmpDisabled.GetHBITMAP(), w, h);
711
712 m_disabledImgList->Add(bmpDisabled);
713 }
714
715 // still inc width and number of buttons because otherwise the
716 // subsequent buttons will all be shifted which is rather confusing
717 // (and like this you'd see immediately which bitmap was bad)
718 x += m_defaultWidth;
719 nButtons++;
720 }
721 }
722
723 dcAllButtons.SelectObject(wxNullBitmap);
724
725 // don't delete this HBITMAP!
726 bitmap.SetHBITMAP(0);
727
728 if (doRemap)
729 {
730 // Map to system colours
731 hBitmap = (HBITMAP)MapBitmap((WXHBITMAP) hBitmap,
732 totalBitmapWidth, totalBitmapHeight);
733
734
735 }
736
737 bool addBitmap = true;
738
739 if ( oldToolBarBitmap )
740 {
741 #ifdef TB_REPLACEBITMAP
742 if ( wxApp::GetComCtl32Version() >= 400 )
743 {
744 TBREPLACEBITMAP replaceBitmap;
745 replaceBitmap.hInstOld = NULL;
746 replaceBitmap.hInstNew = NULL;
747 replaceBitmap.nIDOld = (UINT) oldToolBarBitmap;
748 replaceBitmap.nIDNew = (UINT) hBitmap;
749 replaceBitmap.nButtons = nButtons;
750 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP,
751 0, (LPARAM) &replaceBitmap) )
752 {
753 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
754 }
755
756 ::DeleteObject(oldToolBarBitmap);
757
758 // already done
759 addBitmap = false;
760 }
761 else
762 #endif // TB_REPLACEBITMAP
763 {
764 // we can't replace the old bitmap, so we will add another one
765 // (awfully inefficient, but what else to do?) and shift the bitmap
766 // indices accordingly
767 addBitmap = true;
768
769 bitmapId = m_nButtons;
770 }
771 }
772
773 if ( addBitmap ) // no old bitmap or we can't replace it
774 {
775 TBADDBITMAP addBitmap;
776 addBitmap.hInst = 0;
777 addBitmap.nID = (UINT) hBitmap;
778 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP,
779 (WPARAM) nButtons, (LPARAM)&addBitmap) == -1 )
780 {
781 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
782 }
783 }
784
785 if ( m_disabledImgList )
786 {
787 HIMAGELIST oldImageList = (HIMAGELIST)
788 ::SendMessage(GetHwnd(),
789 TB_SETDISABLEDIMAGELIST,
790 0,
791 (LPARAM)GetHimagelistOf(m_disabledImgList));
792
793 // delete previous image list if any
794 if ( oldImageList )
795 ::DeleteObject( oldImageList );
796 }
797 }
798
799 // don't call SetToolBitmapSize() as we don't want to change the values of
800 // m_defaultWidth/Height
801 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE, 0,
802 MAKELONG(sizeBmp.x, sizeBmp.y)) )
803 {
804 wxLogLastError(_T("TB_SETBITMAPSIZE"));
805 }
806
807 // Next add the buttons and separators
808 // -----------------------------------
809
810 TBBUTTON *buttons = new TBBUTTON[nTools];
811
812 // this array will hold the indices of all controls in the toolbar
813 wxArrayInt controlIds;
814
815 bool lastWasRadio = false;
816 int i = 0;
817 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
818 {
819 wxToolBarToolBase *tool = node->GetData();
820
821 // don't add separators to the vertical toolbar with old comctl32.dll
822 // versions as they didn't handle this properly
823 if ( isVertical && tool->IsSeparator() &&
824 wxApp::GetComCtl32Version() <= 472 )
825 {
826 continue;
827 }
828
829
830 TBBUTTON& button = buttons[i];
831
832 wxZeroMemory(button);
833
834 bool isRadio = false;
835 switch ( tool->GetStyle() )
836 {
837 case wxTOOL_STYLE_CONTROL:
838 button.idCommand = tool->GetId();
839 // fall through: create just a separator too
840
841 case wxTOOL_STYLE_SEPARATOR:
842 button.fsState = TBSTATE_ENABLED;
843 button.fsStyle = TBSTYLE_SEP;
844 break;
845
846 case wxTOOL_STYLE_BUTTON:
847 if ( !HasFlag(wxTB_NOICONS) )
848 button.iBitmap = bitmapId;
849
850 if ( HasFlag(wxTB_TEXT) )
851 {
852 const wxString& label = tool->GetLabel();
853 if ( !label.empty() )
854 {
855 button.iString = (int)label.c_str();
856 }
857 }
858
859 button.idCommand = tool->GetId();
860
861 if ( tool->IsEnabled() )
862 button.fsState |= TBSTATE_ENABLED;
863 if ( tool->IsToggled() )
864 button.fsState |= TBSTATE_CHECKED;
865
866 switch ( tool->GetKind() )
867 {
868 case wxITEM_RADIO:
869 button.fsStyle = TBSTYLE_CHECKGROUP;
870
871 if ( !lastWasRadio )
872 {
873 // the first item in the radio group is checked by
874 // default to be consistent with wxGTK and the menu
875 // radio items
876 button.fsState |= TBSTATE_CHECKED;
877
878 if (tool->Toggle(true))
879 {
880 DoToggleTool(tool, true);
881 }
882 }
883 else if (tool->IsToggled())
884 {
885 wxToolBarToolsList::compatibility_iterator nodePrev = node->GetPrevious();
886 int prevIndex = i - 1;
887 while ( nodePrev )
888 {
889 TBBUTTON& prevButton = buttons[prevIndex];
890 wxToolBarToolBase *tool = nodePrev->GetData();
891 if ( !tool->IsButton() || tool->GetKind() != wxITEM_RADIO )
892 break;
893
894 if ( tool->Toggle(false) )
895 {
896 DoToggleTool(tool, false);
897 }
898 prevButton.fsState = TBSTATE_ENABLED;
899 nodePrev = nodePrev->GetPrevious();
900 prevIndex--;
901 }
902 }
903
904 isRadio = true;
905 break;
906
907 case wxITEM_CHECK:
908 button.fsStyle = TBSTYLE_CHECK;
909 break;
910
911 default:
912 wxFAIL_MSG( _T("unexpected toolbar button kind") );
913 // fall through
914
915 case wxITEM_NORMAL:
916 button.fsStyle = TBSTYLE_BUTTON;
917 }
918
919 bitmapId++;
920 break;
921 }
922
923 lastWasRadio = isRadio;
924
925 i++;
926 }
927
928 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS, (WPARAM)i, (LPARAM)buttons) )
929 {
930 wxLogLastError(wxT("TB_ADDBUTTONS"));
931 }
932
933 delete [] buttons;
934
935 // Deal with the controls finally
936 // ------------------------------
937
938 // adjust the controls size to fit nicely in the toolbar
939 int y = 0;
940 size_t index = 0;
941 for ( node = m_tools.GetFirst(); node; node = node->GetNext(), index++ )
942 {
943 wxToolBarToolBase *tool = node->GetData();
944
945 // we calculate the running y coord for vertical toolbars so we need to
946 // get the items size for all items but for the horizontal ones we
947 // don't need to deal with the non controls
948 bool isControl = tool->IsControl();
949 if ( !isControl && !isVertical )
950 continue;
951
952 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
953 // latter only appeared in v4.70 of comctl32.dll
954 RECT r;
955 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT,
956 index, (LPARAM)(LPRECT)&r) )
957 {
958 wxLogLastError(wxT("TB_GETITEMRECT"));
959 }
960
961 if ( !isControl )
962 {
963 // can only be control if isVertical
964 y += r.bottom - r.top;
965
966 continue;
967 }
968
969 wxControl *control = tool->GetControl();
970
971 wxSize size = control->GetSize();
972
973 // the position of the leftmost controls corner
974 int left = wxDefaultCoord;
975
976 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
977 #ifdef TB_SETBUTTONINFO
978 // available in headers, now check whether it is available now
979 // (during run-time)
980 if ( wxApp::GetComCtl32Version() >= 471 )
981 {
982 // set the (underlying) separators width to be that of the
983 // control
984 TBBUTTONINFO tbbi;
985 tbbi.cbSize = sizeof(tbbi);
986 tbbi.dwMask = TBIF_SIZE;
987 tbbi.cx = (WORD)size.x;
988 if ( !::SendMessage(GetHwnd(), TB_SETBUTTONINFO,
989 tool->GetId(), (LPARAM)&tbbi) )
990 {
991 // the id is probably invalid?
992 wxLogLastError(wxT("TB_SETBUTTONINFO"));
993 }
994 }
995 else
996 #endif // comctl32.dll 4.71
997 // TB_SETBUTTONINFO unavailable
998 {
999 // try adding several separators to fit the controls width
1000 int widthSep = r.right - r.left;
1001 left = r.left;
1002
1003 TBBUTTON tbb;
1004 wxZeroMemory(tbb);
1005 tbb.idCommand = 0;
1006 tbb.fsState = TBSTATE_ENABLED;
1007 tbb.fsStyle = TBSTYLE_SEP;
1008
1009 size_t nSeparators = size.x / widthSep;
1010 for ( size_t nSep = 0; nSep < nSeparators; nSep++ )
1011 {
1012 if ( !::SendMessage(GetHwnd(), TB_INSERTBUTTON,
1013 index, (LPARAM)&tbb) )
1014 {
1015 wxLogLastError(wxT("TB_INSERTBUTTON"));
1016 }
1017
1018 index++;
1019 }
1020
1021 // remember the number of separators we used - we'd have to
1022 // delete all of them later
1023 ((wxToolBarTool *)tool)->SetSeparatorsCount(nSeparators);
1024
1025 // adjust the controls width to exactly cover the separators
1026 control->SetSize((nSeparators + 1)*widthSep, wxDefaultCoord);
1027 }
1028
1029 // position the control itself correctly vertically
1030 int height = r.bottom - r.top;
1031 int diff = height - size.y;
1032 if ( diff < 0 )
1033 {
1034 // the control is too high, resize to fit
1035 control->SetSize(wxDefaultCoord, height - 2);
1036
1037 diff = 2;
1038 }
1039
1040 int top;
1041 if ( isVertical )
1042 {
1043 left = 0;
1044 top = y;
1045
1046 y += height + 2*GetMargins().y;
1047 }
1048 else // horizontal toolbar
1049 {
1050 if ( left == wxDefaultCoord )
1051 left = r.left;
1052
1053 top = r.top;
1054 }
1055
1056 control->Move(left, top + (diff + 1) / 2);
1057 }
1058
1059 // the max index is the "real" number of buttons - i.e. counting even the
1060 // separators which we added just for aligning the controls
1061 m_nButtons = index;
1062
1063 if ( !isVertical )
1064 {
1065 if ( m_maxRows == 0 )
1066 {
1067 // if not set yet, only one row
1068 SetRows(1);
1069 }
1070 }
1071 else if ( m_nButtons > 0 ) // vertical non empty toolbar
1072 {
1073 if ( m_maxRows == 0 )
1074 {
1075 // if not set yet, have one column
1076 SetRows(m_nButtons);
1077 }
1078 }
1079
1080 InvalidateBestSize();
1081 return true;
1082 }
1083
1084 // ----------------------------------------------------------------------------
1085 // message handlers
1086 // ----------------------------------------------------------------------------
1087
1088 bool wxToolBar::MSWCommand(WXUINT WXUNUSED(cmd), WXWORD id)
1089 {
1090 wxToolBarToolBase *tool = FindById((int)id);
1091 if ( !tool )
1092 return false;
1093
1094 bool toggled = false; // just to suppress warnings
1095
1096 if ( tool->CanBeToggled() )
1097 {
1098 LRESULT state = ::SendMessage(GetHwnd(), TB_GETSTATE, id, 0);
1099 toggled = (state & TBSTATE_CHECKED) != 0;
1100
1101 // ignore the event when a radio button is released, as this doesn't
1102 // seem to happen at all, and is handled otherwise
1103 if ( tool->GetKind() == wxITEM_RADIO && !toggled )
1104 return true;
1105
1106 tool->Toggle(toggled);
1107 UnToggleRadioGroup(tool);
1108 }
1109
1110 // OnLeftClick() can veto the button state change - for buttons which
1111 // may be toggled only, of couse
1112 if ( !OnLeftClick((int)id, toggled) && tool->CanBeToggled() )
1113 {
1114 // revert back
1115 tool->Toggle(!toggled);
1116
1117 ::SendMessage(GetHwnd(), TB_CHECKBUTTON, id, MAKELONG(!toggled, 0));
1118 }
1119
1120 return true;
1121 }
1122
1123 bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl),
1124 WXLPARAM lParam,
1125 WXLPARAM *WXUNUSED(result))
1126 {
1127 #if wxUSE_TOOLTIPS
1128 // First check if this applies to us
1129 NMHDR *hdr = (NMHDR *)lParam;
1130
1131 // the tooltips control created by the toolbar is sometimes Unicode, even
1132 // in an ANSI application - this seems to be a bug in comctl32.dll v5
1133 UINT code = hdr->code;
1134 if ( (code != (UINT) TTN_NEEDTEXTA) && (code != (UINT) TTN_NEEDTEXTW) )
1135 return false;
1136
1137 HWND toolTipWnd = (HWND)::SendMessage((HWND)GetHWND(), TB_GETTOOLTIPS, 0, 0);
1138 if ( toolTipWnd != hdr->hwndFrom )
1139 return false;
1140
1141 LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
1142 int id = (int)ttText->hdr.idFrom;
1143
1144 wxToolBarToolBase *tool = FindById(id);
1145 if ( !tool )
1146 return false;
1147
1148 return HandleTooltipNotify(code, lParam, tool->GetShortHelp());
1149 #else
1150 wxUnusedVar(lParam);
1151
1152 return false;
1153 #endif
1154 }
1155
1156 // ----------------------------------------------------------------------------
1157 // toolbar geometry
1158 // ----------------------------------------------------------------------------
1159
1160 void wxToolBar::SetToolBitmapSize(const wxSize& size)
1161 {
1162 wxToolBarBase::SetToolBitmapSize(size);
1163
1164 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE, 0, MAKELONG(size.x, size.y));
1165 }
1166
1167 void wxToolBar::SetRows(int nRows)
1168 {
1169 if ( nRows == m_maxRows )
1170 {
1171 // avoid resizing the frame uselessly
1172 return;
1173 }
1174
1175 // TRUE in wParam means to create at least as many rows, FALSE -
1176 // at most as many
1177 RECT rect;
1178 ::SendMessage(GetHwnd(), TB_SETROWS,
1179 MAKEWPARAM(nRows, !(GetWindowStyle() & wxTB_VERTICAL)),
1180 (LPARAM) &rect);
1181
1182 m_maxRows = nRows;
1183
1184 UpdateSize();
1185 }
1186
1187 // The button size is bigger than the bitmap size
1188 wxSize wxToolBar::GetToolSize() const
1189 {
1190 // TB_GETBUTTONSIZE is supported from version 4.70
1191 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
1192 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) \
1193 && !defined (__DIGITALMARS__)
1194 if ( wxApp::GetComCtl32Version() >= 470 )
1195 {
1196 DWORD dw = ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE, 0, 0);
1197
1198 return wxSize(LOWORD(dw), HIWORD(dw));
1199 }
1200 else
1201 #endif // comctl32.dll 4.70+
1202 {
1203 // defaults
1204 return wxSize(m_defaultWidth + 8, m_defaultHeight + 7);
1205 }
1206 }
1207
1208 static
1209 wxToolBarToolBase *GetItemSkippingDummySpacers(const wxToolBarToolsList& tools,
1210 size_t index )
1211 {
1212 wxToolBarToolsList::compatibility_iterator current = tools.GetFirst();
1213
1214 for ( ; current ; current = current->GetNext() )
1215 {
1216 if ( index == 0 )
1217 return current->GetData();
1218
1219 wxToolBarTool *tool = (wxToolBarTool *)current->GetData();
1220 size_t separators = tool->GetSeparatorsCount();
1221
1222 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1223 // otherwise, skip as many items as the separator count, plus the
1224 // control itself
1225 index -= separators ? separators + 1 : 1;
1226 }
1227
1228 return 0;
1229 }
1230
1231 wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord x, wxCoord y) const
1232 {
1233 POINT pt;
1234 pt.x = x;
1235 pt.y = y;
1236 int index = (int)::SendMessage(GetHwnd(), TB_HITTEST, 0, (LPARAM)&pt);
1237 // MBN: when the point ( x, y ) is close to the toolbar border
1238 // TB_HITTEST returns m_nButtons ( not -1 )
1239 if ( index < 0 || (size_t)index >= m_nButtons )
1240 {
1241 // it's a separator or there is no tool at all there
1242 return (wxToolBarToolBase *)NULL;
1243 }
1244
1245 // if comctl32 version < 4.71 wxToolBar95 adds dummy spacers
1246 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
1247 if ( wxApp::GetComCtl32Version() >= 471 )
1248 {
1249 return m_tools.Item((size_t)index)->GetData();
1250 }
1251 else
1252 #endif
1253 {
1254 return GetItemSkippingDummySpacers( m_tools, (size_t) index );
1255 }
1256 }
1257
1258 void wxToolBar::UpdateSize()
1259 {
1260 // the toolbar size changed
1261 ::SendMessage(GetHwnd(), TB_AUTOSIZE, 0, 0);
1262
1263 // we must also refresh the frame after the toolbar size (possibly) changed
1264 wxFrame *frame = wxDynamicCast(GetParent(), wxFrame);
1265 if ( frame )
1266 {
1267 frame->SendSizeEvent();
1268 }
1269 }
1270
1271 // ----------------------------------------------------------------------------
1272 // toolbar styles
1273 // ---------------------------------------------------------------------------
1274
1275 void wxToolBar::SetWindowStyleFlag(long style)
1276 {
1277 // the style bits whose changes force us to recreate the toolbar
1278 static const long MASK_NEEDS_RECREATE = wxTB_TEXT | wxTB_NOICONS;
1279
1280 const long styleOld = GetWindowStyle();
1281
1282 wxToolBarBase::SetWindowStyleFlag(style);
1283
1284 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1285 // also fatal as we'd then try to recreate the toolbar when it's just being
1286 // created
1287 if ( GetToolsCount() &&
1288 (style & MASK_NEEDS_RECREATE) != (styleOld & MASK_NEEDS_RECREATE) )
1289 {
1290 // to remove the text labels, simply re-realizing the toolbar is enough
1291 // but I don't know of any way to add the text to an existing toolbar
1292 // other than by recreating it entirely
1293 Recreate();
1294 }
1295 }
1296
1297 // ----------------------------------------------------------------------------
1298 // tool state
1299 // ----------------------------------------------------------------------------
1300
1301 void wxToolBar::DoEnableTool(wxToolBarToolBase *tool, bool enable)
1302 {
1303 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON,
1304 (WPARAM)tool->GetId(), (LPARAM)MAKELONG(enable, 0));
1305 }
1306
1307 void wxToolBar::DoToggleTool(wxToolBarToolBase *tool, bool toggle)
1308 {
1309 ::SendMessage(GetHwnd(), TB_CHECKBUTTON,
1310 (WPARAM)tool->GetId(), (LPARAM)MAKELONG(toggle, 0));
1311 }
1312
1313 void wxToolBar::DoSetToggle(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(toggle))
1314 {
1315 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1316 // without, so we really need to delete the button and recreate it here
1317 wxFAIL_MSG( _T("not implemented") );
1318 }
1319
1320 // ----------------------------------------------------------------------------
1321 // event handlers
1322 // ----------------------------------------------------------------------------
1323
1324 // Responds to colour changes, and passes event on to children.
1325 void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent& event)
1326 {
1327 wxRGBToColour(m_backgroundColour, ::GetSysColor(COLOR_BTNFACE));
1328
1329 // Remap the buttons
1330 Realize();
1331
1332 // Relayout the toolbar
1333 int nrows = m_maxRows;
1334 m_maxRows = 0; // otherwise SetRows() wouldn't do anything
1335 SetRows(nrows);
1336
1337 Refresh();
1338
1339 // let the event propagate further
1340 event.Skip();
1341 }
1342
1343 void wxToolBar::OnMouseEvent(wxMouseEvent& event)
1344 {
1345 if (event.Leaving() && m_pInTool)
1346 {
1347 OnMouseEnter( -1 );
1348 event.Skip();
1349 return;
1350 }
1351
1352 if ( event.RightDown() )
1353 {
1354 // find the tool under the mouse
1355 wxCoord x,y;
1356 event.GetPosition(&x, &y);
1357
1358 wxToolBarToolBase *tool = FindToolForPosition(x, y);
1359 OnRightClick(tool ? tool->GetId() : -1, x, y);
1360 }
1361 else
1362 {
1363 event.Skip();
1364 }
1365 }
1366
1367 // This handler is required to allow the toolbar to be set to a non-default
1368 // colour: for example, when it must blend in with a notebook page.
1369 void wxToolBar::OnEraseBackground(wxEraseEvent& event)
1370 {
1371 wxColour bgCol = GetBackgroundColour();
1372 if (!bgCol.Ok())
1373 {
1374 event.Skip();
1375 return;
1376 }
1377
1378 // notice that this 'dumb' implementation may cause flicker for some of the
1379 // controls in which case they should intercept wxEraseEvent and process it
1380 // themselves somehow
1381
1382 RECT rect;
1383 ::GetClientRect(GetHwnd(), &rect);
1384
1385 HBRUSH hBrush = ::CreateSolidBrush(wxColourToRGB(bgCol));
1386
1387 HDC hdc = GetHdcOf((*event.GetDC()));
1388
1389 #ifndef __WXWINCE__
1390 int mode = ::SetMapMode(hdc, MM_TEXT);
1391 #endif
1392
1393 ::FillRect(hdc, &rect, hBrush);
1394 ::DeleteObject(hBrush);
1395
1396 #ifndef __WXWINCE__
1397 ::SetMapMode(hdc, mode);
1398 #endif
1399 }
1400
1401 bool wxToolBar::HandleSize(WXWPARAM WXUNUSED(wParam), WXLPARAM lParam)
1402 {
1403 // calculate our minor dimension ourselves - we're confusing the standard
1404 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
1405 RECT r;
1406 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT, 0, (LPARAM)&r) )
1407 {
1408 int w, h;
1409
1410 if ( GetWindowStyle() & wxTB_VERTICAL )
1411 {
1412 w = r.right - r.left;
1413 if ( m_maxRows )
1414 {
1415 w *= (m_nButtons + m_maxRows - 1)/m_maxRows;
1416 }
1417 h = HIWORD(lParam);
1418 }
1419 else
1420 {
1421 w = LOWORD(lParam);
1422 if (HasFlag( wxTB_FLAT ))
1423 h = r.bottom - r.top - 3;
1424 else
1425 h = r.bottom - r.top;
1426 if ( m_maxRows )
1427 {
1428 // FIXME: hardcoded separator line height...
1429 h += HasFlag(wxTB_NODIVIDER) ? 4 : 6;
1430 h *= m_maxRows;
1431 }
1432 }
1433
1434 if ( MAKELPARAM(w, h) != lParam )
1435 {
1436 // size really changed
1437 SetSize(w, h);
1438 }
1439
1440 // message processed
1441 return true;
1442 }
1443
1444 return false;
1445 }
1446
1447 bool wxToolBar::HandlePaint(WXWPARAM wParam, WXLPARAM lParam)
1448 {
1449 // erase any dummy separators which we used for aligning the controls if
1450 // any here
1451
1452 // first of all, do we have any controls at all?
1453 wxToolBarToolsList::compatibility_iterator node;
1454 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
1455 {
1456 if ( node->GetData()->IsControl() )
1457 break;
1458 }
1459
1460 if ( !node )
1461 {
1462 // no controls, nothing to erase
1463 return false;
1464 }
1465
1466 // prepare the DC on which we'll be drawing
1467 wxClientDC dc(this);
1468 dc.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID));
1469 dc.SetPen(*wxTRANSPARENT_PEN);
1470
1471 RECT r;
1472 if ( !::GetUpdateRect(GetHwnd(), &r, FALSE) )
1473 {
1474 // nothing to redraw anyhow
1475 return false;
1476 }
1477
1478 wxRect rectUpdate;
1479 wxCopyRECTToRect(r, rectUpdate);
1480
1481 dc.SetClippingRegion(rectUpdate);
1482
1483 // draw the toolbar tools, separators &c normally
1484 wxControl::MSWWindowProc(WM_PAINT, wParam, lParam);
1485
1486 // for each control in the toolbar find all the separators intersecting it
1487 // and erase them
1488 //
1489 // NB: this is really the only way to do it as we don't know if a separator
1490 // corresponds to a control (i.e. is a dummy one) or a real one
1491 // otherwise
1492 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
1493 {
1494 wxToolBarToolBase *tool = node->GetData();
1495 if ( tool->IsControl() )
1496 {
1497 // get the control rect in our client coords
1498 wxControl *control = tool->GetControl();
1499 wxRect rectCtrl = control->GetRect();
1500
1501 // iterate over all buttons
1502 TBBUTTON tbb;
1503 int count = ::SendMessage(GetHwnd(), TB_BUTTONCOUNT, 0, 0);
1504 for ( int n = 0; n < count; n++ )
1505 {
1506 // is it a separator?
1507 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON,
1508 n, (LPARAM)&tbb) )
1509 {
1510 wxLogDebug(_T("TB_GETBUTTON failed?"));
1511
1512 continue;
1513 }
1514
1515 if ( tbb.fsStyle != TBSTYLE_SEP )
1516 continue;
1517
1518 // get the bounding rect of the separator
1519 RECT r;
1520 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT,
1521 n, (LPARAM)&r) )
1522 {
1523 wxLogDebug(_T("TB_GETITEMRECT failed?"));
1524
1525 continue;
1526 }
1527
1528 // does it intersect the control?
1529 wxRect rectItem;
1530 wxCopyRECTToRect(r, rectItem);
1531 if ( rectCtrl.Intersects(rectItem) )
1532 {
1533 // yes, do erase it!
1534 dc.DrawRectangle(rectItem);
1535
1536 // Necessary in case we use a no-paint-on-size
1537 // style in the parent: the controls can disappear
1538 control->Refresh(false);
1539 }
1540 }
1541 }
1542 }
1543
1544 return true;
1545 }
1546
1547 void wxToolBar::HandleMouseMove(WXWPARAM WXUNUSED(wParam), WXLPARAM lParam)
1548 {
1549 wxCoord x = GET_X_LPARAM(lParam),
1550 y = GET_Y_LPARAM(lParam);
1551 wxToolBarToolBase* tool = FindToolForPosition( x, y );
1552
1553 // cursor left current tool
1554 if( tool != m_pInTool && !tool )
1555 {
1556 m_pInTool = 0;
1557 OnMouseEnter( -1 );
1558 }
1559
1560 // cursor entered a tool
1561 if( tool != m_pInTool && tool )
1562 {
1563 m_pInTool = tool;
1564 OnMouseEnter( tool->GetId() );
1565 }
1566 }
1567
1568 WXLRESULT wxToolBar::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
1569 {
1570 switch ( nMsg )
1571 {
1572 case WM_MOUSEMOVE:
1573 // we don't handle mouse moves, so always pass the message to
1574 // wxControl::MSWWindowProc (HandleMouseMove just calls OnMouseEnter)
1575 HandleMouseMove(wParam, lParam);
1576 break;
1577
1578 case WM_SIZE:
1579 if ( HandleSize(wParam, lParam) )
1580 return 0;
1581 break;
1582
1583 #ifndef __WXWINCE__
1584 case WM_PAINT:
1585 if ( HandlePaint(wParam, lParam) )
1586 return 0;
1587 #endif
1588 }
1589
1590 return wxControl::MSWWindowProc(nMsg, wParam, lParam);
1591 }
1592
1593 // ----------------------------------------------------------------------------
1594 // private functions
1595 // ----------------------------------------------------------------------------
1596
1597 WXHBITMAP wxToolBar::MapBitmap(WXHBITMAP bitmap, int width, int height)
1598 {
1599 MemoryHDC hdcMem;
1600
1601 if ( !hdcMem )
1602 {
1603 wxLogLastError(_T("CreateCompatibleDC"));
1604
1605 return bitmap;
1606 }
1607
1608 SelectInHDC bmpInHDC(hdcMem, (HBITMAP)bitmap);
1609
1610 if ( !bmpInHDC )
1611 {
1612 wxLogLastError(_T("SelectObject"));
1613
1614 return bitmap;
1615 }
1616
1617 wxCOLORMAP *cmap = wxGetStdColourMap();
1618
1619 for ( int i = 0; i < width; i++ )
1620 {
1621 for ( int j = 0; j < height; j++ )
1622 {
1623 COLORREF pixel = ::GetPixel(hdcMem, i, j);
1624
1625 for ( size_t k = 0; k < wxSTD_COL_MAX; k++ )
1626 {
1627 COLORREF col = cmap[k].from;
1628 if ( abs(GetRValue(pixel) - GetRValue(col)) < 10 &&
1629 abs(GetGValue(pixel) - GetGValue(col)) < 10 &&
1630 abs(GetBValue(pixel) - GetBValue(col)) < 10 )
1631 {
1632 ::SetPixel(hdcMem, i, j, cmap[k].to);
1633 break;
1634 }
1635 }
1636 }
1637 }
1638
1639 return bitmap;
1640
1641 // VZ: I leave here my attempts to map the bitmap to the system colours
1642 // faster by using BitBlt() even though it's broken currently - but
1643 // maybe someone else can finish it? It should be faster than iterating
1644 // over all pixels...
1645 #if 0
1646 MemoryHDC hdcMask, hdcDst;
1647 if ( !hdcMask || !hdcDst )
1648 {
1649 wxLogLastError(_T("CreateCompatibleDC"));
1650
1651 return bitmap;
1652 }
1653
1654 // create the target bitmap
1655 HBITMAP hbmpDst = ::CreateCompatibleBitmap(hdcDst, width, height);
1656 if ( !hbmpDst )
1657 {
1658 wxLogLastError(_T("CreateCompatibleBitmap"));
1659
1660 return bitmap;
1661 }
1662
1663 // create the monochrome mask bitmap
1664 HBITMAP hbmpMask = ::CreateBitmap(width, height, 1, 1, 0);
1665 if ( !hbmpMask )
1666 {
1667 wxLogLastError(_T("CreateBitmap(mono)"));
1668
1669 ::DeleteObject(hbmpDst);
1670
1671 return bitmap;
1672 }
1673
1674 SelectInHDC bmpInDst(hdcDst, hbmpDst),
1675 bmpInMask(hdcMask, hbmpMask);
1676
1677 // for each colour:
1678 for ( n = 0; n < NUM_OF_MAPPED_COLOURS; n++ )
1679 {
1680 // create the mask for this colour
1681 ::SetBkColor(hdcMem, ColorMap[n].from);
1682 ::BitBlt(hdcMask, 0, 0, width, height, hdcMem, 0, 0, SRCCOPY);
1683
1684 // replace this colour with the target one in the dst bitmap
1685 HBRUSH hbr = ::CreateSolidBrush(ColorMap[n].to);
1686 HGDIOBJ hbrOld = ::SelectObject(hdcDst, hbr);
1687
1688 ::MaskBlt(hdcDst, 0, 0, width, height,
1689 hdcMem, 0, 0,
1690 hbmpMask, 0, 0,
1691 MAKEROP4(PATCOPY, SRCCOPY));
1692
1693 (void)::SelectObject(hdcDst, hbrOld);
1694 ::DeleteObject(hbr);
1695 }
1696
1697 ::DeleteObject((HBITMAP)bitmap);
1698
1699 return (WXHBITMAP)hbmpDst;
1700 #endif // 0
1701 }
1702
1703 #endif // wxUSE_TOOLBAR && Win95
1704