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