]> git.saurik.com Git - wxWidgets.git/blame - src/msw/toolbar.cpp
document only char* variant of all string utility functions (don't use wxChar nor...
[wxWidgets.git] / src / msw / toolbar.cpp
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
936f6353 2// Name: src/msw/toolbar.cpp
8a0681f9 3// Purpose: wxToolBar
2bda0e17
KB
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
6c9a19aa 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
1c383dba
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
1c383dba 24 #pragma hdrstop
2bda0e17
KB
25#endif
26
ad9835c9
WS
27#if wxUSE_TOOLBAR && wxUSE_TOOLBAR_NATIVE && !defined(__SMARTPHONE__)
28
4e3e485b
WS
29#include "wx/toolbar.h"
30
2bda0e17 31#ifndef WX_PRECOMP
57bd4c60 32 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
ad9835c9 33 #include "wx/dynarray.h"
8a0681f9 34 #include "wx/frame.h"
1c383dba
VZ
35 #include "wx/log.h"
36 #include "wx/intl.h"
4e15f6c5 37 #include "wx/settings.h"
381dd4bf 38 #include "wx/bitmap.h"
f6bcfd97 39 #include "wx/dcmemory.h"
f538710f 40 #include "wx/control.h"
670f9935 41 #include "wx/app.h" // for GetComCtl32Version
155ecd4c 42 #include "wx/image.h"
0f767c96 43 #include "wx/stattext.h"
2bda0e17
KB
44#endif
45
2d8b540a 46#include "wx/artprov.h"
dfa53609 47#include "wx/sysopt.h"
888dde65 48#include "wx/dcclient.h"
2bda0e17 49
1c383dba 50#include "wx/msw/private.h"
025f7d77 51#include "wx/msw/dc.h"
2bda0e17 52
d679df70
JS
53#if wxUSE_UXTHEME
54#include "wx/msw/uxtheme.h"
55#endif
56
fb7e87ef
VZ
57// this define controls whether the code for button colours remapping (only
58// useful for 16 or 256 colour images) is active at all, it's always turned off
59// for CE where it doesn't compile (and is probably not needed anyhow) and may
60// also be turned off for other systems if you always use 24bpp images and so
61// never need it
62#ifndef __WXWINCE__
63 #define wxREMAP_BUTTON_COLOURS
64#endif // !__WXWINCE__
65
1c383dba
VZ
66// ----------------------------------------------------------------------------
67// constants
68// ----------------------------------------------------------------------------
69
70// these standard constants are not always defined in compilers headers
2bda0e17 71
6a23cbce 72// Styles
bb6290e3 73#ifndef TBSTYLE_FLAT
1c383dba
VZ
74 #define TBSTYLE_LIST 0x1000
75 #define TBSTYLE_FLAT 0x0800
dd177170
RL
76#endif
77
78#ifndef TBSTYLE_TRANSPARENT
1c383dba 79 #define TBSTYLE_TRANSPARENT 0x8000
bb6290e3 80#endif
bb6290e3 81
a3399e6c
VZ
82#ifndef TBSTYLE_TOOLTIPS
83 #define TBSTYLE_TOOLTIPS 0x0100
84#endif
85
6a23cbce
JS
86// Messages
87#ifndef TB_GETSTYLE
1c383dba 88 #define TB_SETSTYLE (WM_USER + 56)
8a0681f9
VZ
89 #define TB_GETSTYLE (WM_USER + 57)
90#endif
91
92#ifndef TB_HITTEST
93 #define TB_HITTEST (WM_USER + 69)
6a23cbce
JS
94#endif
95
308bb56f
VZ
96#ifndef TB_GETMAXSIZE
97 #define TB_GETMAXSIZE (WM_USER + 83)
98#endif
99
1c383dba
VZ
100// ----------------------------------------------------------------------------
101// wxWin macros
102// ----------------------------------------------------------------------------
103
2eb10e2a 104IMPLEMENT_DYNAMIC_CLASS(wxToolBar, wxControl)
2bda0e17 105
066f1b7a 106/*
bfbb0b4c
WS
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
066f1b7a
SC
123*/
124
8a0681f9
VZ
125BEGIN_EVENT_TABLE(wxToolBar, wxToolBarBase)
126 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent)
127 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged)
0090a153 128 EVT_ERASE_BACKGROUND(wxToolBar::OnEraseBackground)
2bda0e17 129END_EVENT_TABLE()
2bda0e17 130
8a0681f9
VZ
131// ----------------------------------------------------------------------------
132// private classes
133// ----------------------------------------------------------------------------
134
135class wxToolBarTool : public wxToolBarToolBase
136{
137public:
138 wxToolBarTool(wxToolBar *tbar,
139 int id,
a3399e6c
VZ
140 const wxString& label,
141 const wxBitmap& bmpNormal,
142 const wxBitmap& bmpDisabled,
143 wxItemKind kind,
8a0681f9 144 wxObject *clientData,
a3399e6c
VZ
145 const wxString& shortHelp,
146 const wxString& longHelp)
147 : wxToolBarToolBase(tbar, id, label, bmpNormal, bmpDisabled, kind,
148 clientData, shortHelp, longHelp)
8a0681f9
VZ
149 {
150 m_nSepCount = 0;
cdb11cb9 151 m_staticText = 0;
8a0681f9
VZ
152 }
153
cdb11cb9
VZ
154 wxToolBarTool(wxToolBar *tbar, wxControl *control, const wxString& label)
155 : wxToolBarToolBase(tbar, control, label)
8a0681f9 156 {
cdb11cb9
VZ
157 if ( IsControl() && !m_label.empty() )
158 {
159 // create a control to render the control's label
160 m_staticText = new wxStaticText
161 (
162 m_tbar,
163 wxID_ANY,
164 m_label,
165 wxDefaultPosition,
166 wxDefaultSize,
167 wxALIGN_CENTRE | wxST_NO_AUTORESIZE
168 );
169 }
170 else // no label
171 {
172 m_staticText = NULL;
173 }
174
8a0681f9
VZ
175 m_nSepCount = 1;
176 }
177
cdb11cb9
VZ
178 virtual ~wxToolBarTool()
179 {
180 delete m_staticText;
181 }
182
c631abda
VZ
183 virtual void SetLabel(const wxString& label)
184 {
185 if ( label == m_label )
186 return;
187
188 wxToolBarToolBase::SetLabel(label);
189
cdb11cb9
VZ
190 if ( m_staticText )
191 m_staticText->SetLabel(label);
192
c631abda
VZ
193 // we need to update the label shown in the toolbar because it has a
194 // pointer to the internal buffer of the old label
195 //
196 // TODO: use TB_SETBUTTONINFO
197 }
198
cdb11cb9
VZ
199 wxStaticText* GetStaticText()
200 {
201 wxASSERT_MSG( IsControl(),
202 _T("only makes sense for embedded control tools") );
203
204 return m_staticText;
205 }
206
8a0681f9
VZ
207 // set/get the number of separators which we use to cover the space used by
208 // a control in the toolbar
209 void SetSeparatorsCount(size_t count) { m_nSepCount = count; }
210 size_t GetSeparatorsCount() const { return m_nSepCount; }
211
212private:
213 size_t m_nSepCount;
cdb11cb9 214 wxStaticText *m_staticText;
2eb10e2a
VZ
215
216 DECLARE_NO_COPY_CLASS(wxToolBarTool)
8a0681f9
VZ
217};
218
3c30bbb9
VZ
219// ----------------------------------------------------------------------------
220// helper functions
221// ----------------------------------------------------------------------------
222
223// return the rectangle of the item at the given index
224//
225// returns an empty (0, 0, 0, 0) rectangle if fails so the caller may compare
226// r.right or r.bottom with 0 to check for this
227static RECT wxGetTBItemRect(HWND hwnd, int index)
228{
229 RECT r;
230
231 // note that we use TB_GETITEMRECT and not TB_GETRECT because the latter
232 // only appeared in v4.70 of comctl32.dll
233 if ( !::SendMessage(hwnd, TB_GETITEMRECT, index, (LPARAM)&r) )
234 {
235 wxLogLastError(wxT("TB_GETITEMRECT"));
236
237 r.top =
238 r.left =
239 r.right =
240 r.bottom = 0;
241 }
242
243 return r;
244}
245
1c383dba
VZ
246// ============================================================================
247// implementation
248// ============================================================================
2bda0e17 249
1c383dba 250// ----------------------------------------------------------------------------
8a0681f9 251// wxToolBarTool
1c383dba
VZ
252// ----------------------------------------------------------------------------
253
8a0681f9 254wxToolBarToolBase *wxToolBar::CreateTool(int id,
a3399e6c
VZ
255 const wxString& label,
256 const wxBitmap& bmpNormal,
257 const wxBitmap& bmpDisabled,
258 wxItemKind kind,
8a0681f9 259 wxObject *clientData,
a3399e6c
VZ
260 const wxString& shortHelp,
261 const wxString& longHelp)
8a0681f9 262{
a3399e6c
VZ
263 return new wxToolBarTool(this, id, label, bmpNormal, bmpDisabled, kind,
264 clientData, shortHelp, longHelp);
8a0681f9
VZ
265}
266
cdb11cb9
VZ
267wxToolBarToolBase *
268wxToolBar::CreateTool(wxControl *control, const wxString& label)
8a0681f9 269{
cdb11cb9 270 return new wxToolBarTool(this, control, label);
8a0681f9
VZ
271}
272
273// ----------------------------------------------------------------------------
274// wxToolBar construction
275// ----------------------------------------------------------------------------
276
277void wxToolBar::Init()
2bda0e17 278{
1c383dba 279 m_hBitmap = 0;
8d0a7b56 280 m_disabledImgList = NULL;
8a0681f9
VZ
281
282 m_nButtons = 0;
283
2d8b540a
VS
284 const wxSize size = wxArtProvider::GetNativeSizeHint(wxART_TOOLBAR);
285 m_defaultWidth = size.x;
286 m_defaultHeight = size.y;
37d0bdff 287
6ae2a4b7 288 m_pInTool = NULL;
2bda0e17
KB
289}
290
8a0681f9
VZ
291bool wxToolBar::Create(wxWindow *parent,
292 wxWindowID id,
293 const wxPoint& pos,
294 const wxSize& size,
295 long style,
296 const wxString& name)
2bda0e17 297{
1c383dba 298 // common initialisation
11b6a93b 299 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
bfbb0b4c 300 return false;
89b892a2 301
d408730c
VZ
302 FixupStyle();
303
24998710 304 // MSW-specific initialisation
278c927d 305 if ( !MSWCreateToolbar(pos, size) )
bfbb0b4c 306 return false;
b0766406 307
9a63feff
VZ
308 wxSetCCUnicodeFormat(GetHwnd());
309
f6becba5 310 // workaround for flat toolbar on Windows XP classic style: we have to set
a8cb1a49 311 // the style after creating the control; doing it at creation time doesn't work
d679df70 312#if wxUSE_UXTHEME
6d473712
JS
313 if ( style & wxTB_FLAT )
314 {
2588b9c4 315 LRESULT style = GetMSWToolbarStyle();
bfbb0b4c 316
f6becba5 317 if ( !(style & TBSTYLE_FLAT) )
f6becba5 318 ::SendMessage(GetHwnd(), TB_SETSTYLE, 0, style | TBSTYLE_FLAT);
6d473712 319 }
f6becba5 320#endif // wxUSE_UXTHEME
bfbb0b4c
WS
321
322 return true;
24998710 323}
2bda0e17 324
278c927d 325bool wxToolBar::MSWCreateToolbar(const wxPoint& pos, const wxSize& size)
24998710 326{
fda7962d 327 if ( !MSWCreateControl(TOOLBARCLASSNAME, wxEmptyString, pos, size) )
bfbb0b4c 328 return false;
2bda0e17 329
c8f1f088 330 // toolbar-specific post initialisation
1c383dba 331 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON), 0);
bfbb0b4c 332
d6f2a891 333#ifdef TB_SETEXTENDEDSTYLE
a9a0ceca
VZ
334 if ( wxApp::GetComCtl32Version() >= 471 )
335 ::SendMessage(GetHwnd(), TB_SETEXTENDEDSTYLE, 0, TBSTYLE_EX_DRAWDDARROWS);
d6f2a891 336#endif
a9a0ceca 337
bfbb0b4c 338 return true;
24998710 339}
c8f1f088 340
24998710
VZ
341void wxToolBar::Recreate()
342{
343 const HWND hwndOld = GetHwnd();
344 if ( !hwndOld )
345 {
346 // we haven't been created yet, no need to recreate
347 return;
348 }
2bda0e17 349
24998710
VZ
350 // get the position and size before unsubclassing the old toolbar
351 const wxPoint pos = GetPosition();
352 const wxSize size = GetSize();
bb6290e3 353
24998710 354 UnsubclassWin();
2bda0e17 355
278c927d 356 if ( !MSWCreateToolbar(pos, size) )
24998710
VZ
357 {
358 // what can we do?
359 wxFAIL_MSG( _T("recreating the toolbar failed") );
360
361 return;
362 }
363
364 // reparent all our children under the new toolbar
222ed1d6 365 for ( wxWindowList::compatibility_iterator node = m_children.GetFirst();
24998710
VZ
366 node;
367 node = node->GetNext() )
368 {
369 wxWindow *win = node->GetData();
370 if ( !win->IsTopLevel() )
371 ::SetParent(GetHwndOf(win), GetHwnd());
372 }
373
a8cb1a49
DS
374 // only destroy the old toolbar now --
375 // after all the children had been reparented
24998710
VZ
376 ::DestroyWindow(hwndOld);
377
378 // it is for the old bitmap control and can't be used with the new one
379 if ( m_hBitmap )
380 {
381 ::DeleteObject((HBITMAP) m_hBitmap);
382 m_hBitmap = 0;
383 }
384
8d0a7b56
VZ
385 if ( m_disabledImgList )
386 {
387 delete m_disabledImgList;
388 m_disabledImgList = NULL;
389 }
390
24998710 391 Realize();
2bda0e17
KB
392}
393
8a0681f9 394wxToolBar::~wxToolBar()
2bda0e17 395{
f6bcfd97
BP
396 // we must refresh the frame size when the toolbar is deleted but the frame
397 // is not - otherwise toolbar leaves a hole in the place it used to occupy
0dba08dd 398 SendSizeEventToParent();
f6bcfd97
BP
399
400 if ( m_hBitmap )
1c383dba 401 ::DeleteObject((HBITMAP) m_hBitmap);
8d0a7b56
VZ
402
403 delete m_disabledImgList;
1c383dba
VZ
404}
405
24998710
VZ
406wxSize wxToolBar::DoGetBestSize() const
407{
308bb56f
VZ
408 wxSize sizeBest;
409
410 SIZE size;
411 if ( !::SendMessage(GetHwnd(), TB_GETMAXSIZE, 0, (LPARAM)&size) )
412 {
413 // maybe an old (< 0x400) Windows version? try to approximate the
414 // toolbar size ourselves
415 sizeBest = GetToolSize();
4f6b4292 416 sizeBest.y += 2 * ::GetSystemMetrics(SM_CYBORDER); // Add borders
308bb56f
VZ
417 sizeBest.x *= GetToolsCount();
418
419 // reverse horz and vertical components if necessary
7a976304 420 if ( IsVertical() )
308bb56f
VZ
421 {
422 int t = sizeBest.x;
423 sizeBest.x = sizeBest.y;
424 sizeBest.y = t;
425 }
426 }
3c30bbb9 427 else // TB_GETMAXSIZE succeeded
308bb56f 428 {
3c30bbb9
VZ
429 // but it could still return an incorrect result due to what appears to
430 // be a bug in old comctl32.dll versions which don't handle controls in
431 // the toolbar correctly, so work around it (see SF patch 1902358)
432 if ( !IsVertical() && wxApp::GetComCtl32Version() < 600 )
433 {
434 // calculate the toolbar width in alternative way
435 const RECT rcFirst = wxGetTBItemRect(GetHwnd(), 0);
436 const RECT rcLast = wxGetTBItemRect(GetHwnd(), GetToolsCount() - 1);
437
438 const int widthAlt = rcLast.right - rcFirst.left;
439 if ( widthAlt > size.cx )
440 size.cx = widthAlt;
441 }
442
308bb56f
VZ
443 sizeBest.x = size.cx;
444 sizeBest.y = size.cy;
445 }
24998710 446
3c30bbb9 447 if ( !IsVertical() )
c118d8b0
JS
448 {
449 // Without the extra height, DoGetBestSize can report a size that's
450 // smaller than the actual window, causing windows to overlap slightly
451 // in some circumstances, leading to missing borders (especially noticeable
452 // in AUI layouts).
453 if (!(GetWindowStyle() & wxTB_NODIVIDER))
454 sizeBest.y += 2;
455 sizeBest.y ++;
a14337d6 456 }
378c9833 457
31582e4e 458 CacheBestSize(sizeBest);
97071cdb 459
308bb56f 460 return sizeBest;
24998710
VZ
461}
462
463WXDWORD wxToolBar::MSWGetStyle(long style, WXDWORD *exstyle) const
464{
465 // toolbars never have border, giving one to them results in broken
466 // appearance
467 WXDWORD msStyle = wxControl::MSWGetStyle
468 (
469 (style & ~wxBORDER_MASK) | wxBORDER_NONE, exstyle
470 );
471
6a1b3ead
VZ
472 if ( !(style & wxTB_NO_TOOLTIPS) )
473 msStyle |= TBSTYLE_TOOLTIPS;
24998710 474
f9dae779 475 if ( style & (wxTB_FLAT | wxTB_HORZ_LAYOUT) )
24998710
VZ
476 {
477 // static as it doesn't change during the program lifetime
60decce5 478 static const int s_verComCtl = wxApp::GetComCtl32Version();
24998710
VZ
479
480 // comctl32.dll 4.00 doesn't support the flat toolbars and using this
481 // style with 6.00 (part of Windows XP) leads to the toolbar with
482 // incorrect background colour - and not using it still results in the
483 // correct (flat) toolbar, so don't use it there
484 if ( s_verComCtl > 400 && s_verComCtl < 600 )
24998710 485 msStyle |= TBSTYLE_FLAT | TBSTYLE_TRANSPARENT;
f9dae779
VZ
486
487 if ( s_verComCtl >= 470 && style & wxTB_HORZ_LAYOUT )
f9dae779 488 msStyle |= TBSTYLE_LIST;
24998710
VZ
489 }
490
491 if ( style & wxTB_NODIVIDER )
492 msStyle |= CCS_NODIVIDER;
493
494 if ( style & wxTB_NOALIGN )
495 msStyle |= CCS_NOPARENTALIGN;
496
3bb63e5c
JS
497 if ( style & wxTB_VERTICAL )
498 msStyle |= CCS_VERT;
499
5b2acc3a
RR
500 if( style & wxTB_BOTTOM )
501 msStyle |= CCS_BOTTOM;
502
7a976304
VZ
503 if ( style & wxTB_RIGHT )
504 msStyle |= CCS_RIGHT;
505
24998710
VZ
506 return msStyle;
507}
508
bdc72a22 509// ----------------------------------------------------------------------------
8a0681f9 510// adding/removing tools
bdc72a22
VZ
511// ----------------------------------------------------------------------------
512
9ccffa51
VZ
513bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos),
514 wxToolBarToolBase * WXUNUSED(tool))
1c383dba 515{
8a0681f9
VZ
516 // nothing special to do here - we really create the toolbar buttons in
517 // Realize() later
9f884528 518 InvalidateBestSize();
bfbb0b4c 519 return true;
1c383dba
VZ
520}
521
8a0681f9 522bool wxToolBar::DoDeleteTool(size_t pos, wxToolBarToolBase *tool)
bdc72a22 523{
f6bcfd97
BP
524 // the main difficulty we have here is with the controls in the toolbars:
525 // as we (sometimes) use several separators to cover up the space used by
526 // them, the indices are not the same for us and the toolbar
527
528 // first determine the position of the first button to delete: it may be
529 // different from pos if we use several separators to cover the space used
530 // by a control
222ed1d6 531 wxToolBarToolsList::compatibility_iterator node;
f6bcfd97
BP
532 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
533 {
534 wxToolBarToolBase *tool2 = node->GetData();
535 if ( tool2 == tool )
536 {
537 // let node point to the next node in the list
538 node = node->GetNext();
539
540 break;
541 }
542
543 if ( tool2->IsControl() )
56bd6aac 544 pos += ((wxToolBarTool *)tool2)->GetSeparatorsCount() - 1;
f6bcfd97
BP
545 }
546
547 // now determine the number of buttons to delete and the area taken by them
8a0681f9 548 size_t nButtonsToDelete = 1;
bdc72a22 549
8a0681f9 550 // get the size of the button we're going to delete
3c30bbb9 551 const RECT r = wxGetTBItemRect(GetHwnd(), pos);
bdc72a22 552
8a0681f9 553 int width = r.right - r.left;
bdc72a22 554
8a0681f9
VZ
555 if ( tool->IsControl() )
556 {
557 nButtonsToDelete = ((wxToolBarTool *)tool)->GetSeparatorsCount();
8a0681f9
VZ
558 width *= nButtonsToDelete;
559 }
bdc72a22 560
f6bcfd97
BP
561 // do delete all buttons
562 m_nButtons -= nButtonsToDelete;
8a0681f9
VZ
563 while ( nButtonsToDelete-- > 0 )
564 {
565 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, pos, 0) )
566 {
f6bcfd97 567 wxLogLastError(wxT("TB_DELETEBUTTON"));
1c383dba 568
bfbb0b4c 569 return false;
8a0681f9
VZ
570 }
571 }
1c383dba 572
f6bcfd97
BP
573 // and finally reposition all the controls after this button (the toolbar
574 // takes care of all normal items)
575 for ( /* node -> first after deleted */ ; node; node = node->GetNext() )
8a0681f9 576 {
cdb11cb9 577 wxToolBarTool *tool2 = (wxToolBarTool*)node->GetData();
8a0681f9
VZ
578 if ( tool2->IsControl() )
579 {
345d60d3
VZ
580 wxControl * const control = tool2->GetControl();
581
8a0681f9 582 int x;
8a0681f9 583 control->GetPosition(&x, NULL);
bfbb0b4c 584 control->Move(x - width, wxDefaultCoord);
cdb11cb9 585
345d60d3
VZ
586 wxStaticText * const staticText = tool2->GetStaticText();
587 if ( staticText )
588 staticText->Move(x - width, wxDefaultCoord);
8a0681f9
VZ
589 }
590 }
1c383dba 591
9f884528 592 InvalidateBestSize();
97071cdb 593
bfbb0b4c 594 return true;
1c383dba
VZ
595}
596
8d0a7b56
VZ
597void wxToolBar::CreateDisabledImageList()
598{
2c622593
DS
599 if (m_disabledImgList != NULL)
600 {
601 delete m_disabledImgList;
602 m_disabledImgList = NULL;
603 }
604
8d0a7b56
VZ
605 // as we can't use disabled image list with older versions of comctl32.dll,
606 // don't even bother creating it
5625d0d4 607 if ( wxApp::GetComCtl32Version() >= 470 )
8d0a7b56
VZ
608 {
609 // search for the first disabled button img in the toolbar, if any
610 for ( wxToolBarToolsList::compatibility_iterator
611 node = m_tools.GetFirst(); node; node = node->GetNext() )
612 {
613 wxToolBarToolBase *tool = node->GetData();
614 wxBitmap bmpDisabled = tool->GetDisabledBitmap();
615 if ( bmpDisabled.Ok() )
616 {
617 m_disabledImgList = new wxImageList
618 (
619 m_defaultWidth,
620 m_defaultHeight,
621 bmpDisabled.GetMask() != NULL,
622 GetToolsCount()
623 );
2c622593 624 break;
8d0a7b56
VZ
625 }
626 }
627
628 // we don't have any disabled bitmaps
629 }
8d0a7b56
VZ
630}
631
26dd7154
VS
632void wxToolBar::AdjustToolBitmapSize()
633{
634 wxSize s(m_defaultWidth, m_defaultHeight);
635 const wxSize orig_s(s);
636
637 for ( wxToolBarToolsList::const_iterator i = m_tools.begin();
638 i != m_tools.end();
639 ++i )
640 {
641 const wxBitmap& bmp = (*i)->GetNormalBitmap();
642 s.IncTo(bmp.GetSize());
643 }
644
645 if ( s != orig_s )
646 SetToolBitmapSize(s);
647}
648
8a0681f9 649bool wxToolBar::Realize()
1c383dba 650{
24998710 651 const size_t nTools = GetToolsCount();
8a0681f9 652 if ( nTools == 0 )
8a0681f9 653 // nothing to do
bfbb0b4c 654 return true;
1c383dba 655
26dd7154
VS
656 // make sure tool size is larger enough for all all bitmaps to fit in
657 // (this is consistent with what other ports do):
658 AdjustToolBitmapSize();
659
fb7e87ef
VZ
660#ifdef wxREMAP_BUTTON_COLOURS
661 // don't change the values of these constants, they can be set from the
662 // user code via wxSystemOptions
663 enum
92661f97 664 {
fb7e87ef
VZ
665 Remap_None = -1,
666 Remap_Bg,
667 Remap_Buttons,
668 Remap_TransparentBg
669 };
670
671 // the user-specified option overrides anything, but if it wasn't set, only
672 // remap the buttons on 8bpp displays as otherwise the bitmaps usually look
673 // much worse after remapping
674 static const wxChar *remapOption = wxT("msw.remap");
675 const int remapValue = wxSystemOptions::HasOption(remapOption)
676 ? wxSystemOptions::GetOptionInt(remapOption)
677 : wxDisplayDepth() <= 8 ? Remap_Buttons
678 : Remap_None;
679
680#endif // wxREMAP_BUTTON_COLOURS
92661f97 681
2b5f62a0
VZ
682 // delete all old buttons, if any
683 for ( size_t pos = 0; pos < m_nButtons; pos++ )
684 {
685 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, 0, 0) )
686 {
687 wxLogDebug(wxT("TB_DELETEBUTTON failed"));
688 }
689 }
690
8a0681f9
VZ
691 // First, add the bitmap: we use one bitmap for all toolbar buttons
692 // ----------------------------------------------------------------
2bda0e17 693
222ed1d6 694 wxToolBarToolsList::compatibility_iterator node;
24998710
VZ
695 int bitmapId = 0;
696
697 wxSize sizeBmp;
698 if ( HasFlag(wxTB_NOICONS) )
699 {
700 // no icons, don't leave space for them
701 sizeBmp.x =
702 sizeBmp.y = 0;
703 }
704 else // do show icons
705 {
706 // if we already have a bitmap, we'll replace the existing one --
707 // otherwise we'll install a new one
708 HBITMAP oldToolBarBitmap = (HBITMAP)m_hBitmap;
709
710 sizeBmp.x = m_defaultWidth;
711 sizeBmp.y = m_defaultHeight;
89b892a2 712
4a10ea8b
MW
713 const wxCoord totalBitmapWidth = m_defaultWidth *
714 wx_truncate_cast(wxCoord, nTools),
24998710 715 totalBitmapHeight = m_defaultHeight;
2bda0e17 716
17cfea01 717 // Create a bitmap and copy all the tool bitmaps into it
24998710
VZ
718 wxMemoryDC dcAllButtons;
719 wxBitmap bitmap(totalBitmapWidth, totalBitmapHeight);
720 dcAllButtons.SelectObject(bitmap);
bb86baea 721
fb7e87ef
VZ
722#ifdef wxREMAP_BUTTON_COLOURS
723 if ( remapValue != Remap_TransparentBg )
724#endif // wxREMAP_BUTTON_COLOURS
725 {
726 // VZ: why do we hardcode grey colour for CE?
727 dcAllButtons.SetBackground(wxBrush(
728#ifdef __WXWINCE__
729 wxColour(0xc0, 0xc0, 0xc0)
730#else // !__WXWINCE__
731 GetBackgroundColour()
732#endif // __WXWINCE__/!__WXWINCE__
733 ));
734 dcAllButtons.Clear();
735 }
24998710
VZ
736
737 m_hBitmap = bitmap.GetHBITMAP();
738 HBITMAP hBitmap = (HBITMAP)m_hBitmap;
2bda0e17 739
fb7e87ef
VZ
740#ifdef wxREMAP_BUTTON_COLOURS
741 if ( remapValue == Remap_Bg )
dfa53609 742 {
dfa53609 743 dcAllButtons.SelectObject(wxNullBitmap);
dfa53609
JS
744
745 // Even if we're not remapping the bitmap
746 // content, we still have to remap the background.
747 hBitmap = (HBITMAP)MapBitmap((WXHBITMAP) hBitmap,
748 totalBitmapWidth, totalBitmapHeight);
749
dfa53609 750 dcAllButtons.SelectObject(bitmap);
dfa53609 751 }
fb7e87ef 752#endif // wxREMAP_BUTTON_COLOURS
dfa53609 753
24998710
VZ
754 // the button position
755 wxCoord x = 0;
2bda0e17 756
24998710
VZ
757 // the number of buttons (not separators)
758 int nButtons = 0;
1c383dba 759
8d0a7b56 760 CreateDisabledImageList();
4769a562 761 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
1c383dba 762 {
24998710
VZ
763 wxToolBarToolBase *tool = node->GetData();
764 if ( tool->IsButton() )
1c383dba 765 {
24998710 766 const wxBitmap& bmp = tool->GetNormalBitmap();
ba700b5c
VZ
767
768 const int w = bmp.GetWidth();
769 const int h = bmp.GetHeight();
770
24998710
VZ
771 if ( bmp.Ok() )
772 {
ba700b5c
VZ
773 int xOffset = wxMax(0, (m_defaultWidth - w)/2);
774 int yOffset = wxMax(0, (m_defaultHeight - h)/2);
775
24998710 776 // notice the last parameter: do use mask
ba700b5c 777 dcAllButtons.DrawBitmap(bmp, x + xOffset, yOffset, true);
24998710
VZ
778 }
779 else
1c383dba 780 {
24998710 781 wxFAIL_MSG( _T("invalid tool button bitmap") );
1c383dba
VZ
782 }
783
8d0a7b56
VZ
784 // also deal with disabled bitmap if we want to use them
785 if ( m_disabledImgList )
786 {
787 wxBitmap bmpDisabled = tool->GetDisabledBitmap();
64c288fa 788#if wxUSE_IMAGE && wxUSE_WXDIB
8d0a7b56
VZ
789 if ( !bmpDisabled.Ok() )
790 {
8d0a7b56
VZ
791 // no disabled bitmap specified but we still need to
792 // fill the space in the image list with something, so
793 // we grey out the normal bitmap
9ac43913
VZ
794 wxImage
795 imgGreyed = bmp.ConvertToImage().ConvertToGreyscale();
ba700b5c 796
fb7e87ef
VZ
797#ifdef wxREMAP_BUTTON_COLOURS
798 if ( remapValue == Remap_Buttons )
ba700b5c 799 {
0f99ce3d
DS
800 // we need to have light grey background colour for
801 // MapBitmap() to work correctly
802 for ( int y = 0; y < h; y++ )
ba700b5c 803 {
0f99ce3d
DS
804 for ( int x = 0; x < w; x++ )
805 {
806 if ( imgGreyed.IsTransparent(x, y) )
807 imgGreyed.SetRGB(x, y,
808 wxLIGHT_GREY->Red(),
809 wxLIGHT_GREY->Green(),
810 wxLIGHT_GREY->Blue());
811 }
ba700b5c
VZ
812 }
813 }
fb7e87ef 814#endif // wxREMAP_BUTTON_COLOURS
8d0a7b56
VZ
815
816 bmpDisabled = wxBitmap(imgGreyed);
8d0a7b56 817 }
ba700b5c
VZ
818#endif // wxUSE_IMAGE
819
fb7e87ef
VZ
820#ifdef wxREMAP_BUTTON_COLOURS
821 if ( remapValue == Remap_Buttons )
0f99ce3d 822 MapBitmap(bmpDisabled.GetHBITMAP(), w, h);
fb7e87ef 823#endif // wxREMAP_BUTTON_COLOURS
8d0a7b56
VZ
824
825 m_disabledImgList->Add(bmpDisabled);
826 }
827
24998710
VZ
828 // still inc width and number of buttons because otherwise the
829 // subsequent buttons will all be shifted which is rather confusing
830 // (and like this you'd see immediately which bitmap was bad)
831 x += m_defaultWidth;
832 nButtons++;
1c383dba
VZ
833 }
834 }
8a0681f9 835
24998710 836 dcAllButtons.SelectObject(wxNullBitmap);
f6bcfd97 837
24998710
VZ
838 // don't delete this HBITMAP!
839 bitmap.SetHBITMAP(0);
2bda0e17 840
fb7e87ef
VZ
841#ifdef wxREMAP_BUTTON_COLOURS
842 if ( remapValue == Remap_Buttons )
dfa53609
JS
843 {
844 // Map to system colours
845 hBitmap = (HBITMAP)MapBitmap((WXHBITMAP) hBitmap,
fb7e87ef 846 totalBitmapWidth, totalBitmapHeight);
dfa53609 847 }
fb7e87ef 848#endif // wxREMAP_BUTTON_COLOURS
1c383dba 849
bfbb0b4c 850 bool addBitmap = true;
9f83044f 851
24998710 852 if ( oldToolBarBitmap )
1c383dba 853 {
24998710 854#ifdef TB_REPLACEBITMAP
2a1f999f 855 if ( wxApp::GetComCtl32Version() >= 400 )
9f83044f 856 {
24998710
VZ
857 TBREPLACEBITMAP replaceBitmap;
858 replaceBitmap.hInstOld = NULL;
859 replaceBitmap.hInstNew = NULL;
dca0f651
VZ
860 replaceBitmap.nIDOld = (UINT_PTR)oldToolBarBitmap;
861 replaceBitmap.nIDNew = (UINT_PTR)hBitmap;
24998710
VZ
862 replaceBitmap.nButtons = nButtons;
863 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP,
864 0, (LPARAM) &replaceBitmap) )
865 {
866 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
867 }
9f83044f 868
24998710 869 ::DeleteObject(oldToolBarBitmap);
9f83044f 870
24998710 871 // already done
bfbb0b4c 872 addBitmap = false;
24998710
VZ
873 }
874 else
9f83044f 875#endif // TB_REPLACEBITMAP
24998710
VZ
876 {
877 // we can't replace the old bitmap, so we will add another one
878 // (awfully inefficient, but what else to do?) and shift the bitmap
879 // indices accordingly
bfbb0b4c 880 addBitmap = true;
1c383dba 881
24998710
VZ
882 bitmapId = m_nButtons;
883 }
9f83044f 884 }
1c383dba 885
24998710 886 if ( addBitmap ) // no old bitmap or we can't replace it
1c383dba 887 {
24998710
VZ
888 TBADDBITMAP addBitmap;
889 addBitmap.hInst = 0;
dca0f651 890 addBitmap.nID = (UINT_PTR)hBitmap;
24998710
VZ
891 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP,
892 (WPARAM) nButtons, (LPARAM)&addBitmap) == -1 )
8a0681f9 893 {
24998710 894 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
8a0681f9 895 }
1c383dba 896 }
8d0a7b56 897
24bc71f4
VZ
898 // disable image lists are only supported in comctl32.dll 4.70+
899 if ( wxApp::GetComCtl32Version() >= 470 )
8d0a7b56 900 {
24bc71f4
VZ
901 HIMAGELIST hil = m_disabledImgList
902 ? GetHimagelistOf(m_disabledImgList)
903 : 0;
904
905 // notice that we set the image list even if don't have one right
906 // now as we could have it before and need to reset it in this case
8d0a7b56 907 HIMAGELIST oldImageList = (HIMAGELIST)
24bc71f4 908 ::SendMessage(GetHwnd(), TB_SETDISABLEDIMAGELIST, 0, (LPARAM)hil);
8d0a7b56
VZ
909
910 // delete previous image list if any
911 if ( oldImageList )
24bc71f4 912 ::DeleteObject(oldImageList);
8d0a7b56 913 }
2bda0e17 914 }
9f83044f 915
24998710
VZ
916 // don't call SetToolBitmapSize() as we don't want to change the values of
917 // m_defaultWidth/Height
918 if ( !::SendMessage(GetHwnd(), TB_SETBITMAPSIZE, 0,
919 MAKELONG(sizeBmp.x, sizeBmp.y)) )
051205e6 920 {
24998710 921 wxLogLastError(_T("TB_SETBITMAPSIZE"));
051205e6 922 }
2bda0e17 923
8a0681f9
VZ
924 // Next add the buttons and separators
925 // -----------------------------------
926
1c383dba 927 TBBUTTON *buttons = new TBBUTTON[nTools];
2bda0e17 928
8a0681f9 929 // this array will hold the indices of all controls in the toolbar
1c383dba
VZ
930 wxArrayInt controlIds;
931
bfbb0b4c 932 bool lastWasRadio = false;
1c383dba 933 int i = 0;
4769a562 934 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
2bda0e17 935 {
8a0681f9
VZ
936 wxToolBarToolBase *tool = node->GetData();
937
28603488
VZ
938 // don't add separators to the vertical toolbar with old comctl32.dll
939 // versions as they didn't handle this properly
7a976304 940 if ( IsVertical() && tool->IsSeparator() &&
2a1f999f 941 wxApp::GetComCtl32Version() <= 472 )
28603488
VZ
942 {
943 continue;
944 }
945
1c383dba
VZ
946 TBBUTTON& button = buttons[i];
947
948 wxZeroMemory(button);
949
bfbb0b4c 950 bool isRadio = false;
8a0681f9 951 switch ( tool->GetStyle() )
1c383dba
VZ
952 {
953 case wxTOOL_STYLE_CONTROL:
8a0681f9 954 button.idCommand = tool->GetId();
1c383dba
VZ
955 // fall through: create just a separator too
956
957 case wxTOOL_STYLE_SEPARATOR:
958 button.fsState = TBSTATE_ENABLED;
959 button.fsStyle = TBSTYLE_SEP;
960 break;
961
962 case wxTOOL_STYLE_BUTTON:
24998710
VZ
963 if ( !HasFlag(wxTB_NOICONS) )
964 button.iBitmap = bitmapId;
c631abda 965
24998710 966 if ( HasFlag(wxTB_TEXT) )
c631abda 967 {
24998710
VZ
968 const wxString& label = tool->GetLabel();
969 if ( !label.empty() )
dca0f651 970 button.iString = (INT_PTR)label.wx_str();
c631abda
VZ
971 }
972
8a0681f9 973 button.idCommand = tool->GetId();
1c383dba 974
8a0681f9 975 if ( tool->IsEnabled() )
1c383dba 976 button.fsState |= TBSTATE_ENABLED;
8a0681f9 977 if ( tool->IsToggled() )
1c383dba 978 button.fsState |= TBSTATE_CHECKED;
8a0681f9 979
c631abda
VZ
980 switch ( tool->GetKind() )
981 {
982 case wxITEM_RADIO:
983 button.fsStyle = TBSTYLE_CHECKGROUP;
984
985 if ( !lastWasRadio )
986 {
987 // the first item in the radio group is checked by
988 // default to be consistent with wxGTK and the menu
989 // radio items
990 button.fsState |= TBSTATE_CHECKED;
f3ba93c1 991
730d3366
RD
992 if (tool->Toggle(true))
993 {
994 DoToggleTool(tool, true);
995 }
996 }
0b62d387 997 else if ( tool->IsToggled() )
730d3366
RD
998 {
999 wxToolBarToolsList::compatibility_iterator nodePrev = node->GetPrevious();
1000 int prevIndex = i - 1;
1001 while ( nodePrev )
1002 {
1003 TBBUTTON& prevButton = buttons[prevIndex];
1004 wxToolBarToolBase *tool = nodePrev->GetData();
1005 if ( !tool->IsButton() || tool->GetKind() != wxITEM_RADIO )
1006 break;
ed7fdb86 1007
730d3366 1008 if ( tool->Toggle(false) )
730d3366 1009 DoToggleTool(tool, false);
a8cb1a49 1010
a2dd2ea7 1011 prevButton.fsState &= ~TBSTATE_CHECKED;
730d3366
RD
1012 nodePrev = nodePrev->GetPrevious();
1013 prevIndex--;
ed7fdb86 1014 }
c631abda
VZ
1015 }
1016
bfbb0b4c 1017 isRadio = true;
c631abda
VZ
1018 break;
1019
1020 case wxITEM_CHECK:
1021 button.fsStyle = TBSTYLE_CHECK;
1022 break;
1023
97071cdb
DS
1024 case wxITEM_NORMAL:
1025 button.fsStyle = TBSTYLE_BUTTON;
1026 break;
1027
a9a0ceca
VZ
1028 case wxITEM_DROPDOWN:
1029 button.fsStyle = TBSTYLE_DROPDOWN;
1030 break;
1031
c631abda
VZ
1032 default:
1033 wxFAIL_MSG( _T("unexpected toolbar button kind") );
c631abda 1034 button.fsStyle = TBSTYLE_BUTTON;
97071cdb 1035 break;
c631abda 1036 }
1c383dba
VZ
1037
1038 bitmapId++;
1039 break;
1040 }
2bda0e17 1041
c631abda
VZ
1042 lastWasRadio = isRadio;
1043
1c383dba 1044 i++;
2bda0e17 1045 }
1c383dba 1046
a3399e6c 1047 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS, (WPARAM)i, (LPARAM)buttons) )
2bda0e17 1048 {
f6bcfd97 1049 wxLogLastError(wxT("TB_ADDBUTTONS"));
2bda0e17 1050 }
89b892a2 1051
1c383dba 1052 delete [] buttons;
2bda0e17 1053
8a0681f9
VZ
1054 // Deal with the controls finally
1055 // ------------------------------
1056
1c383dba 1057 // adjust the controls size to fit nicely in the toolbar
34e5028f 1058 int y = 0;
8a0681f9
VZ
1059 size_t index = 0;
1060 for ( node = m_tools.GetFirst(); node; node = node->GetNext(), index++ )
1c383dba 1061 {
cdb11cb9 1062 wxToolBarTool *tool = (wxToolBarTool*)node->GetData();
1c383dba 1063
34e5028f
VZ
1064 // we calculate the running y coord for vertical toolbars so we need to
1065 // get the items size for all items but for the horizontal ones we
1066 // don't need to deal with the non controls
1067 bool isControl = tool->IsControl();
7a976304 1068 if ( !isControl && !IsVertical() )
34e5028f 1069 continue;
bdc72a22 1070
3c30bbb9 1071 const RECT r = wxGetTBItemRect(GetHwnd(), index);
34e5028f
VZ
1072 if ( !isControl )
1073 {
1074 // can only be control if isVertical
1075 y += r.bottom - r.top;
1076
1077 continue;
1078 }
1079
1080 wxControl *control = tool->GetControl();
cdb11cb9
VZ
1081 wxStaticText * const staticText = tool->GetStaticText();
1082
34e5028f 1083 wxSize size = control->GetSize();
cdb11cb9
VZ
1084 wxSize staticTextSize;
1085 if ( staticText )
1086 {
1087 staticTextSize = staticText->GetSize();
1088 staticTextSize.y += 3; // margin between control and its label
1089 }
34e5028f
VZ
1090
1091 // the position of the leftmost controls corner
bfbb0b4c 1092 int left = wxDefaultCoord;
34e5028f 1093
bdc72a22 1094 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
5b59df83 1095#ifdef TB_SETBUTTONINFO
34e5028f
VZ
1096 // available in headers, now check whether it is available now
1097 // (during run-time)
2a1f999f 1098 if ( wxApp::GetComCtl32Version() >= 471 )
34e5028f
VZ
1099 {
1100 // set the (underlying) separators width to be that of the
1101 // control
1102 TBBUTTONINFO tbbi;
1103 tbbi.cbSize = sizeof(tbbi);
1104 tbbi.dwMask = TBIF_SIZE;
5c519b6c 1105 tbbi.cx = (WORD)size.x;
bfbb0b4c
WS
1106 if ( !::SendMessage(GetHwnd(), TB_SETBUTTONINFO,
1107 tool->GetId(), (LPARAM)&tbbi) )
bdc72a22 1108 {
34e5028f
VZ
1109 // the id is probably invalid?
1110 wxLogLastError(wxT("TB_SETBUTTONINFO"));
bdc72a22 1111 }
34e5028f
VZ
1112 }
1113 else
1114#endif // comctl32.dll 4.71
1115 // TB_SETBUTTONINFO unavailable
1116 {
1117 // try adding several separators to fit the controls width
1118 int widthSep = r.right - r.left;
1119 left = r.left;
1120
1121 TBBUTTON tbb;
1122 wxZeroMemory(tbb);
1123 tbb.idCommand = 0;
1124 tbb.fsState = TBSTATE_ENABLED;
1125 tbb.fsStyle = TBSTYLE_SEP;
1126
1127 size_t nSeparators = size.x / widthSep;
1128 for ( size_t nSep = 0; nSep < nSeparators; nSep++ )
bdc72a22 1129 {
bfbb0b4c
WS
1130 if ( !::SendMessage(GetHwnd(), TB_INSERTBUTTON,
1131 index, (LPARAM)&tbb) )
bdc72a22 1132 {
34e5028f 1133 wxLogLastError(wxT("TB_INSERTBUTTON"));
bdc72a22
VZ
1134 }
1135
34e5028f 1136 index++;
bdc72a22 1137 }
1c383dba 1138
34e5028f
VZ
1139 // remember the number of separators we used - we'd have to
1140 // delete all of them later
1141 ((wxToolBarTool *)tool)->SetSeparatorsCount(nSeparators);
1142
1143 // adjust the controls width to exactly cover the separators
cdb11cb9
VZ
1144 size.x = (nSeparators + 1)*widthSep;
1145 control->SetSize(size.x, wxDefaultCoord);
34e5028f
VZ
1146 }
1147
cdb11cb9
VZ
1148 // position the control itself correctly vertically centering it on the
1149 // icon area of the toolbar
1150 int height = r.bottom - r.top - staticTextSize.y;
1151
1c383dba 1152 int diff = height - size.y;
cdb11cb9 1153 if ( diff < 0 || !HasFlag(wxTB_TEXT) )
1c383dba 1154 {
cdb11cb9
VZ
1155 // not enough room for the static text
1156 if ( staticText )
1157 staticText->Hide();
1158
1159 // recalculate height & diff without the staticText control
1160 height = r.bottom - r.top;
1161 diff = height - size.y;
1162 if ( diff < 0 )
1163 {
1164 // the control is too high, resize to fit
1165 control->SetSize(wxDefaultCoord, height - 2);
1c383dba 1166
cdb11cb9
VZ
1167 diff = 2;
1168 }
1169 }
1170 else // enough space for both the control and the label
1171 {
1172 if ( staticText )
1173 staticText->Show();
1c383dba 1174 }
2bda0e17 1175
34e5028f 1176 int top;
7a976304 1177 if ( IsVertical() )
34e5028f
VZ
1178 {
1179 left = 0;
1180 top = y;
1181
97071cdb 1182 y += height + 2 * GetMargins().y;
34e5028f
VZ
1183 }
1184 else // horizontal toolbar
1185 {
bfbb0b4c 1186 if ( left == wxDefaultCoord )
34e5028f
VZ
1187 left = r.left;
1188
1189 top = r.top;
1190 }
1191
1192 control->Move(left, top + (diff + 1) / 2);
cdb11cb9
VZ
1193 if ( staticText )
1194 {
1195 staticText->Move(left + (size.x - staticTextSize.x)/2,
1196 r.bottom - staticTextSize.y);
1197 }
1c383dba 1198 }
89b892a2 1199
8a0681f9
VZ
1200 // the max index is the "real" number of buttons - i.e. counting even the
1201 // separators which we added just for aligning the controls
1202 m_nButtons = index;
89b892a2 1203
7a976304 1204 if ( !IsVertical() )
8a0681f9
VZ
1205 {
1206 if ( m_maxRows == 0 )
8a0681f9
VZ
1207 // if not set yet, only one row
1208 SetRows(1);
8a0681f9
VZ
1209 }
1210 else if ( m_nButtons > 0 ) // vertical non empty toolbar
1211 {
e49426a2
RD
1212 // if not set yet, have one column
1213 m_maxRows = 1;
f4322df6 1214 SetRows(m_nButtons);
8a0681f9 1215 }
2bda0e17 1216
9f884528 1217 InvalidateBestSize();
2091f5e7 1218 UpdateSize();
c6dcd973 1219
bfbb0b4c 1220 return true;
2bda0e17
KB
1221}
1222
1c383dba
VZ
1223// ----------------------------------------------------------------------------
1224// message handlers
1225// ----------------------------------------------------------------------------
1226
0edeeb6d 1227bool wxToolBar::MSWCommand(WXUINT WXUNUSED(cmd), WXWORD id_)
2bda0e17 1228{
0edeeb6d
VZ
1229 // cast to signed is important as we compare this id with (signed) ints in
1230 // FindById() and without the cast we'd get a positive int from a
1231 // "negative" (i.e. > 32767) WORD
1232 const int id = (signed short)id_;
1233
1234 wxToolBarToolBase *tool = FindById(id);
8a0681f9 1235 if ( !tool )
bfbb0b4c 1236 return false;
1c383dba 1237
1bba1946 1238 bool toggled = false; // just to suppress warnings
6bb7cee4 1239
ed7701bd
VS
1240 LRESULT state = ::SendMessage(GetHwnd(), TB_GETSTATE, id, 0);
1241
8a0681f9 1242 if ( tool->CanBeToggled() )
1c383dba 1243 {
6bb7cee4
VZ
1244 toggled = (state & TBSTATE_CHECKED) != 0;
1245
0356c259
VZ
1246 // ignore the event when a radio button is released, as this doesn't
1247 // seem to happen at all, and is handled otherwise
6bb7cee4 1248 if ( tool->GetKind() == wxITEM_RADIO && !toggled )
bfbb0b4c 1249 return true;
1c383dba 1250
6bb7cee4
VZ
1251 tool->Toggle(toggled);
1252 UnToggleRadioGroup(tool);
1253 }
8a0681f9 1254
ed7701bd
VS
1255 // Without the two lines of code below, if the toolbar was repainted during
1256 // OnLeftClick(), then it could end up without the tool bitmap temporarily
1257 // (see http://lists.nongnu.org/archive/html/lmi/2008-10/msg00014.html).
1258 // The Update() call bellow ensures that this won't happen, by repainting
1259 // invalidated areas of the toolbar immediately.
1260 //
1261 // To complicate matters, the tool would be drawn in depressed state (this
1262 // code is called when mouse button is released, not pressed). That's not
1263 // ideal, having the tool pressed for the duration of OnLeftClick()
1264 // provides the user with useful visual clue that the app is busy reacting
1265 // to the event. So we manually put the tool into pressed state, handle the
1266 // event and then finally restore tool's original state.
1267 ::SendMessage(GetHwnd(), TB_SETSTATE, id, MAKELONG(state | TBSTATE_PRESSED, 0));
1268 Update();
1269
1270 bool allowLeftClick = OnLeftClick(id, toggled);
1271
5f4250ed
VS
1272 // Restore the unpressed state. Enabled/toggled state might have been
1273 // changed since so take care of it.
1274 if (tool->IsEnabled())
1275 state |= TBSTATE_ENABLED;
1276 else
1277 state &= ~TBSTATE_ENABLED;
1278 if (tool->IsToggled())
1279 state |= TBSTATE_CHECKED;
1280 else
1281 state &= ~TBSTATE_CHECKED;
ed7701bd
VS
1282 ::SendMessage(GetHwnd(), TB_SETSTATE, id, MAKELONG(state, 0));
1283
6bb7cee4
VZ
1284 // OnLeftClick() can veto the button state change - for buttons which
1285 // may be toggled only, of couse
ed7701bd 1286 if ( !allowLeftClick && tool->CanBeToggled() )
f3ba93c1 1287 {
6bb7cee4
VZ
1288 // revert back
1289 tool->Toggle(!toggled);
8a0681f9 1290
0356c259 1291 ::SendMessage(GetHwnd(), TB_CHECKBUTTON, id, MAKELONG(!toggled, 0));
1c383dba
VZ
1292 }
1293
bfbb0b4c 1294 return true;
2bda0e17
KB
1295}
1296
8a0681f9 1297bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl),
fd3f686c 1298 WXLPARAM lParam,
33ac7e6f 1299 WXLPARAM *WXUNUSED(result))
2bda0e17 1300{
a9a0ceca
VZ
1301 LPNMHDR hdr = (LPNMHDR)lParam;
1302 if ( hdr->code == TBN_DROPDOWN )
1303 {
1304 LPNMTOOLBAR tbhdr = (LPNMTOOLBAR)lParam;
1305
1306 wxCommandEvent evt(wxEVT_COMMAND_TOOL_DROPDOWN_CLICKED, tbhdr->iItem);
937013e0 1307 if ( HandleWindowEvent(evt) )
a9a0ceca
VZ
1308 {
1309 // Event got handled, don't display default popup menu
1310 return false;
1311 }
1312
1313 const wxToolBarToolBase * const tool = FindById(tbhdr->iItem);
1314 wxCHECK_MSG( tool, false, _T("drop down message for unknown tool") );
1315
1316 wxMenu * const menu = tool->GetDropdownMenu();
1317 if ( !menu )
1318 return false;
1319
1320 // Display popup menu below button
3c30bbb9
VZ
1321 const RECT r = wxGetTBItemRect(GetHwnd(), GetToolPos(tbhdr->iItem));
1322 if ( r.right )
a9a0ceca
VZ
1323 PopupMenu(menu, r.left, r.bottom);
1324
1325 return true;
1326 }
1327
1328
6a1b3ead
VZ
1329 if( !HasFlag(wxTB_NO_TOOLTIPS) )
1330 {
3bce6687 1331#if wxUSE_TOOLTIPS
6a1b3ead 1332 // First check if this applies to us
2bda0e17 1333
6a1b3ead
VZ
1334 // the tooltips control created by the toolbar is sometimes Unicode, even
1335 // in an ANSI application - this seems to be a bug in comctl32.dll v5
1336 UINT code = hdr->code;
1337 if ( (code != (UINT) TTN_NEEDTEXTA) && (code != (UINT) TTN_NEEDTEXTW) )
1338 return false;
2bda0e17 1339
6a1b3ead
VZ
1340 HWND toolTipWnd = (HWND)::SendMessage(GetHwnd(), TB_GETTOOLTIPS, 0, 0);
1341 if ( toolTipWnd != hdr->hwndFrom )
1342 return false;
2bda0e17 1343
6a1b3ead
VZ
1344 LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
1345 int id = (int)ttText->hdr.idFrom;
89b892a2 1346
6a1b3ead
VZ
1347 wxToolBarToolBase *tool = FindById(id);
1348 if ( tool )
1349 return HandleTooltipNotify(code, lParam, tool->GetShortHelp());
3bce6687 1350#else
6a1b3ead
VZ
1351 wxUnusedVar(lParam);
1352#endif
1353 }
abf912c5 1354
bfbb0b4c 1355 return false;
2bda0e17
KB
1356}
1357
1c383dba 1358// ----------------------------------------------------------------------------
8a0681f9 1359// toolbar geometry
1c383dba
VZ
1360// ----------------------------------------------------------------------------
1361
8a0681f9 1362void wxToolBar::SetToolBitmapSize(const wxSize& size)
2bda0e17 1363{
1c383dba
VZ
1364 wxToolBarBase::SetToolBitmapSize(size);
1365
1366 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE, 0, MAKELONG(size.x, size.y));
2bda0e17
KB
1367}
1368
8a0681f9 1369void wxToolBar::SetRows(int nRows)
2bda0e17 1370{
8a0681f9
VZ
1371 if ( nRows == m_maxRows )
1372 {
1373 // avoid resizing the frame uselessly
1374 return;
1375 }
1376
1377 // TRUE in wParam means to create at least as many rows, FALSE -
1378 // at most as many
1c383dba
VZ
1379 RECT rect;
1380 ::SendMessage(GetHwnd(), TB_SETROWS,
8a0681f9
VZ
1381 MAKEWPARAM(nRows, !(GetWindowStyle() & wxTB_VERTICAL)),
1382 (LPARAM) &rect);
1c383dba
VZ
1383
1384 m_maxRows = nRows;
8a0681f9
VZ
1385
1386 UpdateSize();
1387}
1388
1389// The button size is bigger than the bitmap size
1390wxSize wxToolBar::GetToolSize() const
1391{
1392 // TB_GETBUTTONSIZE is supported from version 4.70
5438a566 1393#if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 ) \
50165591
CE
1394 && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 1, 0 ) ) \
1395 && !defined (__DIGITALMARS__)
2a1f999f 1396 if ( wxApp::GetComCtl32Version() >= 470 )
8a0681f9
VZ
1397 {
1398 DWORD dw = ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE, 0, 0);
1399
1400 return wxSize(LOWORD(dw), HIWORD(dw));
1401 }
1402 else
1403#endif // comctl32.dll 4.70+
1404 {
1405 // defaults
1406 return wxSize(m_defaultWidth + 8, m_defaultHeight + 7);
1407 }
2bda0e17
KB
1408}
1409
82c9f85c
VZ
1410static
1411wxToolBarToolBase *GetItemSkippingDummySpacers(const wxToolBarToolsList& tools,
1412 size_t index )
a8945eef 1413{
222ed1d6 1414 wxToolBarToolsList::compatibility_iterator current = tools.GetFirst();
a8945eef 1415
489f6cf7 1416 for ( ; current ; current = current->GetNext() )
a8945eef 1417 {
82c9f85c 1418 if ( index == 0 )
a8945eef 1419 return current->GetData();
82c9f85c
VZ
1420
1421 wxToolBarTool *tool = (wxToolBarTool *)current->GetData();
1422 size_t separators = tool->GetSeparatorsCount();
1423
1424 // if it is a normal button, sepcount == 0, so skip 1 item (the button)
1425 // otherwise, skip as many items as the separator count, plus the
1426 // control itself
1427 index -= separators ? separators + 1 : 1;
a8945eef
MB
1428 }
1429
1430 return 0;
1431}
1432
8a0681f9 1433wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord x, wxCoord y) const
2bda0e17 1434{
8a0681f9
VZ
1435 POINT pt;
1436 pt.x = x;
1437 pt.y = y;
1438 int index = (int)::SendMessage(GetHwnd(), TB_HITTEST, 0, (LPARAM)&pt);
97071cdb 1439
37d0bdff
MB
1440 // MBN: when the point ( x, y ) is close to the toolbar border
1441 // TB_HITTEST returns m_nButtons ( not -1 )
1442 if ( index < 0 || (size_t)index >= m_nButtons )
8a0681f9 1443 // it's a separator or there is no tool at all there
d3b9f782 1444 return NULL;
1c383dba 1445
a84f66ef
VZ
1446 // when TB_SETBUTTONINFO is available (both during compile- and run-time),
1447 // we don't use the dummy separators hack
1448#ifdef TB_SETBUTTONINFO
2a1f999f 1449 if ( wxApp::GetComCtl32Version() >= 471 )
a8945eef
MB
1450 {
1451 return m_tools.Item((size_t)index)->GetData();
1452 }
1453 else
a84f66ef 1454#endif // TB_SETBUTTONINFO
a8945eef
MB
1455 {
1456 return GetItemSkippingDummySpacers( m_tools, (size_t) index );
1457 }
2bda0e17
KB
1458}
1459
8a0681f9 1460void wxToolBar::UpdateSize()
2bda0e17 1461{
48a102f9 1462 wxPoint pos = GetPosition();
93489fc8 1463 ::SendMessage(GetHwnd(), TB_AUTOSIZE, 0, 0);
48a102f9
JS
1464 if (pos != GetPosition())
1465 Move(pos);
93489fc8 1466
b93328d8
RD
1467 // In case Realize is called after the initial display (IOW the programmer
1468 // may have rebuilt the toolbar) give the frame the option of resizing the
1469 // toolbar to full width again, but only if the parent is a frame and the
1470 // toolbar is managed by the frame. Otherwise assume that some other
1471 // layout mechanism is controlling the toolbar size and leave it alone.
0dba08dd 1472 SendSizeEventToParent();
2bda0e17
KB
1473}
1474
c631abda
VZ
1475// ----------------------------------------------------------------------------
1476// toolbar styles
1477// ---------------------------------------------------------------------------
1478
2588b9c4
VZ
1479// get the TBSTYLE of the given toolbar window
1480long wxToolBar::GetMSWToolbarStyle() const
1481{
1482 return ::SendMessage(GetHwnd(), TB_GETSTYLE, 0, 0L);
1483}
1484
c631abda
VZ
1485void wxToolBar::SetWindowStyleFlag(long style)
1486{
24998710
VZ
1487 // the style bits whose changes force us to recreate the toolbar
1488 static const long MASK_NEEDS_RECREATE = wxTB_TEXT | wxTB_NOICONS;
c631abda 1489
24998710 1490 const long styleOld = GetWindowStyle();
c631abda 1491
24998710 1492 wxToolBarBase::SetWindowStyleFlag(style);
c631abda 1493
24998710
VZ
1494 // don't recreate an empty toolbar: not only this is unnecessary, but it is
1495 // also fatal as we'd then try to recreate the toolbar when it's just being
1496 // created
1497 if ( GetToolsCount() &&
1498 (style & MASK_NEEDS_RECREATE) != (styleOld & MASK_NEEDS_RECREATE) )
1499 {
1500 // to remove the text labels, simply re-realizing the toolbar is enough
1501 // but I don't know of any way to add the text to an existing toolbar
1502 // other than by recreating it entirely
1503 Recreate();
c631abda 1504 }
c631abda
VZ
1505}
1506
1c383dba
VZ
1507// ----------------------------------------------------------------------------
1508// tool state
1509// ----------------------------------------------------------------------------
1510
8a0681f9 1511void wxToolBar::DoEnableTool(wxToolBarToolBase *tool, bool enable)
2bda0e17 1512{
8a0681f9
VZ
1513 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON,
1514 (WPARAM)tool->GetId(), (LPARAM)MAKELONG(enable, 0));
2bda0e17
KB
1515}
1516
8a0681f9 1517void wxToolBar::DoToggleTool(wxToolBarToolBase *tool, bool toggle)
2bda0e17 1518{
8a0681f9
VZ
1519 ::SendMessage(GetHwnd(), TB_CHECKBUTTON,
1520 (WPARAM)tool->GetId(), (LPARAM)MAKELONG(toggle, 0));
2bda0e17
KB
1521}
1522
33ac7e6f 1523void wxToolBar::DoSetToggle(wxToolBarToolBase *WXUNUSED(tool), bool WXUNUSED(toggle))
088a95f5 1524{
8a0681f9
VZ
1525 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
1526 // without, so we really need to delete the button and recreate it here
1527 wxFAIL_MSG( _T("not implemented") );
2bda0e17
KB
1528}
1529
bbd321ff
RD
1530void wxToolBar::SetToolNormalBitmap( int id, const wxBitmap& bitmap )
1531{
5c33522f 1532 wxToolBarTool* tool = static_cast<wxToolBarTool*>(FindById(id));
bbd321ff
RD
1533 if ( tool )
1534 {
1535 wxCHECK_RET( tool->IsButton(), wxT("Can only set bitmap on button tools."));
1536
1537 tool->SetNormalBitmap(bitmap);
1538 Realize();
f4322df6 1539 }
bbd321ff
RD
1540}
1541
1542void wxToolBar::SetToolDisabledBitmap( int id, const wxBitmap& bitmap )
1543{
5c33522f 1544 wxToolBarTool* tool = static_cast<wxToolBarTool*>(FindById(id));
bbd321ff
RD
1545 if ( tool )
1546 {
1547 wxCHECK_RET( tool->IsButton(), wxT("Can only set bitmap on button tools."));
1548
1549 tool->SetDisabledBitmap(bitmap);
1550 Realize();
f4322df6 1551 }
bbd321ff
RD
1552}
1553
1c383dba
VZ
1554// ----------------------------------------------------------------------------
1555// event handlers
1556// ----------------------------------------------------------------------------
2bda0e17
KB
1557
1558// Responds to colour changes, and passes event on to children.
8a0681f9 1559void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent& event)
2bda0e17 1560{
84c5b38d 1561 wxRGBToColour(m_backgroundColour, ::GetSysColor(COLOR_BTNFACE));
2bda0e17
KB
1562
1563 // Remap the buttons
8a0681f9 1564 Realize();
2bda0e17 1565
56bd6aac
VZ
1566 // Relayout the toolbar
1567 int nrows = m_maxRows;
1568 m_maxRows = 0; // otherwise SetRows() wouldn't do anything
1569 SetRows(nrows);
1570
2bda0e17
KB
1571 Refresh();
1572
56bd6aac
VZ
1573 // let the event propagate further
1574 event.Skip();
2bda0e17
KB
1575}
1576
8a0681f9 1577void wxToolBar::OnMouseEvent(wxMouseEvent& event)
e6460682 1578{
6ae2a4b7 1579 if ( event.Leaving() )
fe87983b 1580 {
6ae2a4b7
VZ
1581 if ( m_pInTool )
1582 {
1583 OnMouseEnter(wxID_ANY);
1584 m_pInTool = NULL;
1585 }
1586
fe87983b
MB
1587 event.Skip();
1588 return;
1589 }
1590
2334fef6 1591 if ( event.RightDown() )
e6460682 1592 {
2334fef6 1593 // find the tool under the mouse
8d7eaf91 1594 wxCoord x = 0, y = 0;
2334fef6
VZ
1595 event.GetPosition(&x, &y);
1596
1597 wxToolBarToolBase *tool = FindToolForPosition(x, y);
1598 OnRightClick(tool ? tool->GetId() : -1, x, y);
e6460682
JS
1599 }
1600 else
1601 {
42e69d6b 1602 event.Skip();
e6460682
JS
1603 }
1604}
1605
0090a153
JS
1606// This handler is required to allow the toolbar to be set to a non-default
1607// colour: for example, when it must blend in with a notebook page.
1608void wxToolBar::OnEraseBackground(wxEraseEvent& event)
1609{
848c37c3 1610 RECT rect = wxGetClientRect(GetHwnd());
888dde65
RR
1611
1612 wxDC *dc = event.GetDC();
1613 if (!dc) return;
1614 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc->GetImpl();
1615 HDC hdc = GetHdcOf(*impl);
0090a153 1616
99be3b7c
JS
1617 int majorVersion, minorVersion;
1618 wxGetOsVersion(& majorVersion, & minorVersion);
1619
2588b9c4
VZ
1620#if wxUSE_UXTHEME
1621 // we may need to draw themed colour so that we appear correctly on
1622 // e.g. notebook page under XP with themes but only do it if the parent
1623 // draws themed background itself
1624 if ( !UseBgCol() && !GetParent()->UseBgCol() )
1625 {
1626 wxUxThemeEngine *theme = wxUxThemeEngine::GetIfActive();
1627 if ( theme )
1628 {
1629 HRESULT
1630 hr = theme->DrawThemeParentBackground(GetHwnd(), hdc, &rect);
1631 if ( hr == S_OK )
1632 return;
1633
1634 // it can also return S_FALSE which seems to simply say that it
1635 // didn't draw anything but no error really occurred
1636 if ( FAILED(hr) )
1637 wxLogApiError(_T("DrawThemeParentBackground(toolbar)"), hr);
1638 }
1639 }
99be3b7c
JS
1640
1641 // Only draw a rebar theme on Vista, since it doesn't jive so well with XP
921dd444 1642 if ( !UseBgCol() && majorVersion >= 6 )
99be3b7c
JS
1643 {
1644 wxUxThemeEngine *theme = wxUxThemeEngine::GetIfActive();
1645 if ( theme )
1646 {
1647 wxUxThemeHandle hTheme(this, L"REBAR");
1648
1649 RECT r;
1650 wxRect rect = GetClientRect();
1651 wxCopyRectToRECT(rect, r);
1652
1653 HRESULT hr = theme->DrawThemeBackground(hTheme, hdc, 0, 0, & r, NULL);
1654 if ( hr == S_OK )
1655 return;
1656
1657 // it can also return S_FALSE which seems to simply say that it
1658 // didn't draw anything but no error really occurred
1659 if ( FAILED(hr) )
1660 wxLogApiError(_T("DrawThemeParentBackground(toolbar)"), hr);
1661 }
1662 }
1663
2588b9c4
VZ
1664#endif // wxUSE_UXTHEME
1665
0fb0db5c
VZ
1666 // we need to always draw our background under XP, as otherwise it doesn't
1667 // appear correctly with some themes (e.g. Zune one)
1668 if ( majorVersion == 5 ||
1669 UseBgCol() || (GetMSWToolbarStyle() & TBSTYLE_TRANSPARENT) )
053889ad
VZ
1670 {
1671 // do draw our background
1672 //
1673 // notice that this 'dumb' implementation may cause flicker for some of
1674 // the controls in which case they should intercept wxEraseEvent and
1675 // process it themselves somehow
1676 AutoHBRUSH hBrush(wxColourToRGB(GetBackgroundColour()));
0090a153 1677
053889ad
VZ
1678 wxCHANGE_HDC_MAP_MODE(hdc, MM_TEXT);
1679 ::FillRect(hdc, &rect, hBrush);
1680 }
1681 else // we have no non default background colour
1682 {
2588b9c4
VZ
1683 // let the system do it for us
1684 event.Skip();
053889ad 1685 }
0090a153
JS
1686}
1687
2eb10e2a 1688bool wxToolBar::HandleSize(WXWPARAM WXUNUSED(wParam), WXLPARAM lParam)
bdc72a22 1689{
fd6939a6
VZ
1690 // wait until we have some tools
1691 if ( !GetToolsCount() )
1692 return false;
1693
3bb63e5c 1694 // calculate our minor dimension ourselves - we're confusing the standard
7509fa8c 1695 // logic (TB_AUTOSIZE) with our horizontal toolbars and other hacks
3c30bbb9
VZ
1696 const RECT r = wxGetTBItemRect(GetHwnd(), 0);
1697 if ( !r.right )
1698 return false;
7509fa8c 1699
3c30bbb9
VZ
1700 int w, h;
1701
1702 if ( IsVertical() )
1703 {
1704 w = r.right - r.left;
1705 if ( m_maxRows )
7509fa8c 1706 {
3c30bbb9 1707 w *= (m_nButtons + m_maxRows - 1)/m_maxRows;
7509fa8c 1708 }
3c30bbb9
VZ
1709 h = HIWORD(lParam);
1710 }
1711 else
1712 {
1713 w = LOWORD(lParam);
1714 if (HasFlag( wxTB_FLAT ))
1715 h = r.bottom - r.top - 3;
7509fa8c 1716 else
3c30bbb9
VZ
1717 h = r.bottom - r.top;
1718 if ( m_maxRows )
7509fa8c 1719 {
3c30bbb9
VZ
1720 // FIXME: hardcoded separator line height...
1721 h += HasFlag(wxTB_NODIVIDER) ? 4 : 6;
1722 h *= m_maxRows;
7509fa8c 1723 }
3c30bbb9 1724 }
7509fa8c 1725
3c30bbb9
VZ
1726 if ( MAKELPARAM(w, h) != lParam )
1727 {
1728 // size really changed
1729 SetSize(w, h);
7509fa8c
VZ
1730 }
1731
3c30bbb9
VZ
1732 // message processed
1733 return true;
7509fa8c
VZ
1734}
1735
1736bool wxToolBar::HandlePaint(WXWPARAM wParam, WXLPARAM lParam)
1737{
97071cdb
DS
1738 // erase any dummy separators which were used
1739 // for aligning the controls if any here
7509fa8c 1740
97071cdb 1741 // first of all, are there any controls at all?
222ed1d6 1742 wxToolBarToolsList::compatibility_iterator node;
7509fa8c
VZ
1743 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
1744 {
1745 if ( node->GetData()->IsControl() )
1746 break;
1747 }
1748
1749 if ( !node )
7509fa8c 1750 // no controls, nothing to erase
bfbb0b4c 1751 return false;
7509fa8c 1752
99be3b7c
JS
1753 wxSize clientSize = GetClientSize();
1754 int majorVersion, minorVersion;
1755 wxGetOsVersion(& majorVersion, & minorVersion);
1756
7509fa8c
VZ
1757 // prepare the DC on which we'll be drawing
1758 wxClientDC dc(this);
1759 dc.SetBrush(wxBrush(GetBackgroundColour(), wxSOLID));
1760 dc.SetPen(*wxTRANSPARENT_PEN);
1761
1762 RECT r;
bfbb0b4c 1763 if ( !::GetUpdateRect(GetHwnd(), &r, FALSE) )
7509fa8c 1764 // nothing to redraw anyhow
bfbb0b4c 1765 return false;
7509fa8c
VZ
1766
1767 wxRect rectUpdate;
1768 wxCopyRECTToRect(r, rectUpdate);
1769
1770 dc.SetClippingRegion(rectUpdate);
8a0681f9 1771
7509fa8c
VZ
1772 // draw the toolbar tools, separators &c normally
1773 wxControl::MSWWindowProc(WM_PAINT, wParam, lParam);
1774
1775 // for each control in the toolbar find all the separators intersecting it
1776 // and erase them
1777 //
1778 // NB: this is really the only way to do it as we don't know if a separator
1779 // corresponds to a control (i.e. is a dummy one) or a real one
1780 // otherwise
1781 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
1782 {
cdb11cb9 1783 wxToolBarTool *tool = (wxToolBarTool*)node->GetData();
7509fa8c
VZ
1784 if ( tool->IsControl() )
1785 {
1786 // get the control rect in our client coords
1787 wxControl *control = tool->GetControl();
cdb11cb9 1788 wxStaticText *staticText = tool->GetStaticText();
7509fa8c 1789 wxRect rectCtrl = control->GetRect();
cdb11cb9
VZ
1790 wxRect rectStaticText(0,0,0,0);
1791 if ( staticText )
1792 {
1793 rectStaticText = staticText->GetRect();
1794 }
7509fa8c
VZ
1795
1796 // iterate over all buttons
1797 TBBUTTON tbb;
1798 int count = ::SendMessage(GetHwnd(), TB_BUTTONCOUNT, 0, 0);
1799 for ( int n = 0; n < count; n++ )
8a0681f9 1800 {
7509fa8c
VZ
1801 // is it a separator?
1802 if ( !::SendMessage(GetHwnd(), TB_GETBUTTON,
1803 n, (LPARAM)&tbb) )
8a0681f9 1804 {
7509fa8c
VZ
1805 wxLogDebug(_T("TB_GETBUTTON failed?"));
1806
1807 continue;
8a0681f9 1808 }
7509fa8c
VZ
1809
1810 if ( tbb.fsStyle != TBSTYLE_SEP )
1811 continue;
1812
1813 // get the bounding rect of the separator
3c30bbb9
VZ
1814 RECT r = wxGetTBItemRect(GetHwnd(), n);
1815 if ( !r.right )
7509fa8c 1816 continue;
8a0681f9 1817
7509fa8c
VZ
1818 // does it intersect the control?
1819 wxRect rectItem;
1820 wxCopyRECTToRect(r, rectItem);
921dd444 1821 if ( rectCtrl.Intersects(rectItem) || (staticText && rectStaticText.Intersects(rectItem)))
cdb11cb9
VZ
1822 {
1823 // yes, do erase it!
99be3b7c
JS
1824
1825 bool haveRefreshed = false;
1826
1827#if wxUSE_UXTHEME
1828 if ( !UseBgCol() && !GetParent()->UseBgCol() )
1829 {
1830 // Don't use DrawThemeBackground
1831 }
921dd444 1832 else if ( !UseBgCol() && majorVersion >= 6 )
99be3b7c
JS
1833 {
1834 wxUxThemeEngine *theme = wxUxThemeEngine::GetIfActive();
1835 if ( theme )
1836 {
1837 wxUxThemeHandle hTheme(this, L"REBAR");
1838
1839 RECT clipRect = r;
1840
1841 // Draw the whole background since the pattern may be position sensitive;
1842 // but clip it to the area of interest.
1843 r.left = 0;
1844 r.right = clientSize.x;
1845 r.top = 0;
1846 r.bottom = clientSize.y;
888dde65
RR
1847
1848 wxMSWDCImpl *impl = (wxMSWDCImpl*) dc.GetImpl();
1849 HRESULT hr = theme->DrawThemeBackground(hTheme, GetHdcOf(*impl), 0, 0, & r, & clipRect);
99be3b7c
JS
1850 if ( hr == S_OK )
1851 haveRefreshed = true;
1852 }
1853 }
1854#endif
1855
1856 if (!haveRefreshed)
1857 dc.DrawRectangle(rectItem);
921dd444 1858 }
cdb11cb9 1859
921dd444
JS
1860 if ( rectCtrl.Intersects(rectItem) )
1861 {
1862 // Necessary in case we use a no-paint-on-size
1863 // style in the parent: the controls can disappear
1864 control->Refresh(false);
a14337d6 1865 }
921dd444
JS
1866
1867 if ( staticText && rectStaticText.Intersects(rectItem) )
1868 {
cdb11cb9
VZ
1869 // Necessary in case we use a no-paint-on-size
1870 // style in the parent: the controls can disappear
1871 staticText->Refresh(false);
1872 }
8a0681f9 1873 }
8a0681f9 1874 }
bdc72a22 1875 }
7509fa8c 1876
bfbb0b4c 1877 return true;
7509fa8c
VZ
1878}
1879
2eb10e2a 1880void wxToolBar::HandleMouseMove(WXWPARAM WXUNUSED(wParam), WXLPARAM lParam)
7509fa8c
VZ
1881{
1882 wxCoord x = GET_X_LPARAM(lParam),
1883 y = GET_Y_LPARAM(lParam);
1884 wxToolBarToolBase* tool = FindToolForPosition( x, y );
1885
6ae2a4b7
VZ
1886 // has the current tool changed?
1887 if ( tool != m_pInTool )
7509fa8c
VZ
1888 {
1889 m_pInTool = tool;
6ae2a4b7 1890 OnMouseEnter(tool ? tool->GetId() : wxID_ANY);
7509fa8c
VZ
1891 }
1892}
a8945eef 1893
c140b7e7 1894WXLRESULT wxToolBar::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
7509fa8c
VZ
1895{
1896 switch ( nMsg )
1897 {
7509fa8c
VZ
1898 case WM_MOUSEMOVE:
1899 // we don't handle mouse moves, so always pass the message to
4012b958 1900 // wxControl::MSWWindowProc (HandleMouseMove just calls OnMouseEnter)
7509fa8c
VZ
1901 HandleMouseMove(wParam, lParam);
1902 break;
a8945eef 1903
4012b958
JS
1904 case WM_SIZE:
1905 if ( HandleSize(wParam, lParam) )
1906 return 0;
1907 break;
1908
1909#ifndef __WXWINCE__
7509fa8c 1910 case WM_PAINT:
1c2b921a
VZ
1911 // refreshing the controls in the toolbar inside a composite window
1912 // results in an endless stream of WM_PAINT messages -- and seems
1913 // to be unnecessary anyhow as everything works just fine without
1914 // any special workarounds in this case
1915 if ( !IsDoubleBuffered() && HandlePaint(wParam, lParam) )
7509fa8c 1916 return 0;
97071cdb 1917 break;
1c2b921a 1918#endif // __WXWINCE__
a8945eef 1919 }
bdc72a22 1920
8a0681f9 1921 return wxControl::MSWWindowProc(nMsg, wParam, lParam);
bdc72a22
VZ
1922}
1923
1c383dba
VZ
1924// ----------------------------------------------------------------------------
1925// private functions
1926// ----------------------------------------------------------------------------
1927
fb7e87ef
VZ
1928#ifdef wxREMAP_BUTTON_COLOURS
1929
566fb299 1930WXHBITMAP wxToolBar::MapBitmap(WXHBITMAP bitmap, int width, int height)
2bda0e17 1931{
566fb299 1932 MemoryHDC hdcMem;
56bd6aac 1933
566fb299 1934 if ( !hdcMem )
5e68f8f3 1935 {
566fb299
VZ
1936 wxLogLastError(_T("CreateCompatibleDC"));
1937
1938 return bitmap;
5e68f8f3 1939 }
56bd6aac 1940
566fb299 1941 SelectInHDC bmpInHDC(hdcMem, (HBITMAP)bitmap);
56bd6aac 1942
566fb299 1943 if ( !bmpInHDC )
5e68f8f3 1944 {
566fb299
VZ
1945 wxLogLastError(_T("SelectObject"));
1946
1947 return bitmap;
1948 }
56bd6aac 1949
90c1530a
VZ
1950 wxCOLORMAP *cmap = wxGetStdColourMap();
1951
684c68fd
VZ
1952 for ( int i = 0; i < width; i++ )
1953 {
1954 for ( int j = 0; j < height; j++ )
1955 {
1956 COLORREF pixel = ::GetPixel(hdcMem, i, j);
1957
90c1530a 1958 for ( size_t k = 0; k < wxSTD_COL_MAX; k++ )
684c68fd 1959 {
90c1530a 1960 COLORREF col = cmap[k].from;
684c68fd
VZ
1961 if ( abs(GetRValue(pixel) - GetRValue(col)) < 10 &&
1962 abs(GetGValue(pixel) - GetGValue(col)) < 10 &&
1963 abs(GetBValue(pixel) - GetBValue(col)) < 10 )
1964 {
fb7e87ef
VZ
1965 if ( cmap[k].to != pixel )
1966 ::SetPixel(hdcMem, i, j, cmap[k].to);
684c68fd
VZ
1967 break;
1968 }
1969 }
1970 }
1971 }
3a3898f8
VZ
1972
1973 return bitmap;
566fb299 1974}
2bda0e17 1975
fb7e87ef
VZ
1976#endif // wxREMAP_BUTTON_COLOURS
1977
97071cdb 1978#endif // wxUSE_TOOLBAR