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