]> git.saurik.com Git - wxWidgets.git/blame - src/msw/tbar95.cpp
SN: Added #pragma implementation needed by GCC - expect more to come
[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$
8// Copyright: (c) Julian Smart and Markus Holzem
89b892a2 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
1c383dba
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
2bda0e17 20#ifdef __GNUG__
1c383dba 21 #pragma implementation "tbar95.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
1c383dba 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
8a0681f9 32 #include "wx/frame.h"
1c383dba
VZ
33 #include "wx/log.h"
34 #include "wx/intl.h"
35 #include "wx/dynarray.h"
4e15f6c5 36 #include "wx/settings.h"
381dd4bf 37 #include "wx/bitmap.h"
2bda0e17
KB
38#endif
39
8a0681f9
VZ
40#if wxUSE_TOOLBAR && defined(__WIN95__) && wxUSE_TOOLBAR_NATIVE
41
42#include "wx/toolbar.h"
2bda0e17 43
ce3ed50d 44#if !defined(__GNUWIN32__) && !defined(__SALFORDC__)
1c383dba 45 #include "malloc.h"
2bda0e17
KB
46#endif
47
1c383dba 48#include "wx/msw/private.h"
2bda0e17 49
57c208c5 50#ifndef __TWIN32__
1c383dba 51
9f83044f 52#ifdef __GNUWIN32_OLD__
1c383dba
VZ
53 #include "wx/msw/gnuwin32/extra.h"
54#else
55 #include <commctrl.h>
65fd5cb0 56#endif
2bda0e17 57
1c383dba
VZ
58#endif // __TWIN32__
59
2bda0e17 60#include "wx/msw/dib.h"
1c383dba
VZ
61#include "wx/app.h" // for GetComCtl32Version
62
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
73 #define TBSTYLE_TRANSPARENT 0x8000
bb6290e3
JS
74#endif
75 // use TBSTYLE_TRANSPARENT if you use TBSTYLE_FLAT
76
6a23cbce
JS
77// Messages
78#ifndef TB_GETSTYLE
1c383dba 79 #define TB_SETSTYLE (WM_USER + 56)
8a0681f9
VZ
80 #define TB_GETSTYLE (WM_USER + 57)
81#endif
82
83#ifndef TB_HITTEST
84 #define TB_HITTEST (WM_USER + 69)
6a23cbce
JS
85#endif
86
1c383dba 87// these values correspond to those used by comctl32.dll
81d66cf3
JS
88#define DEFAULTBITMAPX 16
89#define DEFAULTBITMAPY 15
90#define DEFAULTBUTTONX 24
91#define DEFAULTBUTTONY 24
92#define DEFAULTBARHEIGHT 27
93
1c383dba 94// ----------------------------------------------------------------------------
8a0681f9 95// private function prototypes
1c383dba
VZ
96// ----------------------------------------------------------------------------
97
98static void wxMapBitmap(HBITMAP hBitmap, int width, int height);
99
100// ----------------------------------------------------------------------------
101// wxWin macros
102// ----------------------------------------------------------------------------
103
8a0681f9 104IMPLEMENT_DYNAMIC_CLASS(wxToolBar, wxControl)
2bda0e17 105
8a0681f9
VZ
106BEGIN_EVENT_TABLE(wxToolBar, wxToolBarBase)
107 EVT_MOUSE_EVENTS(wxToolBar::OnMouseEvent)
108 EVT_SYS_COLOUR_CHANGED(wxToolBar::OnSysColourChanged)
2bda0e17 109END_EVENT_TABLE()
2bda0e17 110
8a0681f9
VZ
111// ----------------------------------------------------------------------------
112// private classes
113// ----------------------------------------------------------------------------
114
115class wxToolBarTool : public wxToolBarToolBase
116{
117public:
118 wxToolBarTool(wxToolBar *tbar,
119 int id,
120 const wxBitmap& bitmap1,
121 const wxBitmap& bitmap2,
122 bool toggle,
123 wxObject *clientData,
124 const wxString& shortHelpString,
125 const wxString& longHelpString)
126 : wxToolBarToolBase(tbar, id, bitmap1, bitmap2, toggle,
127 clientData, shortHelpString, longHelpString)
128 {
129 m_nSepCount = 0;
130 }
131
132 wxToolBarTool(wxToolBar *tbar, wxControl *control)
133 : wxToolBarToolBase(tbar, control)
134 {
135 m_nSepCount = 1;
136 }
137
138 // set/get the number of separators which we use to cover the space used by
139 // a control in the toolbar
140 void SetSeparatorsCount(size_t count) { m_nSepCount = count; }
141 size_t GetSeparatorsCount() const { return m_nSepCount; }
142
143private:
144 size_t m_nSepCount;
145};
146
147
1c383dba
VZ
148// ============================================================================
149// implementation
150// ============================================================================
2bda0e17 151
1c383dba 152// ----------------------------------------------------------------------------
8a0681f9 153// wxToolBarTool
1c383dba
VZ
154// ----------------------------------------------------------------------------
155
8a0681f9
VZ
156wxToolBarToolBase *wxToolBar::CreateTool(int id,
157 const wxBitmap& bitmap1,
158 const wxBitmap& bitmap2,
159 bool toggle,
160 wxObject *clientData,
161 const wxString& shortHelpString,
162 const wxString& longHelpString)
163{
164 return new wxToolBarTool(this, id, bitmap1, bitmap2, toggle,
165 clientData, shortHelpString, longHelpString);
166}
167
168wxToolBarToolBase *wxToolBar::CreateTool(wxControl *control)
169{
170 return new wxToolBarTool(this, control);
171}
172
173// ----------------------------------------------------------------------------
174// wxToolBar construction
175// ----------------------------------------------------------------------------
176
177void wxToolBar::Init()
2bda0e17 178{
1c383dba 179 m_hBitmap = 0;
8a0681f9
VZ
180
181 m_nButtons = 0;
182
1c383dba
VZ
183 m_defaultWidth = DEFAULTBITMAPX;
184 m_defaultHeight = DEFAULTBITMAPY;
2bda0e17
KB
185}
186
8a0681f9
VZ
187bool wxToolBar::Create(wxWindow *parent,
188 wxWindowID id,
189 const wxPoint& pos,
190 const wxSize& size,
191 long style,
192 const wxString& name)
2bda0e17 193{
1c383dba 194 // common initialisation
11b6a93b 195 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
1c383dba 196 return FALSE;
89b892a2 197
1c383dba
VZ
198 // prepare flags
199 DWORD msflags = 0; // WS_VISIBLE | WS_CHILD always included
200 if (style & wxBORDER)
201 msflags |= WS_BORDER;
c25a510b
JS
202
203#ifdef TBSTYLE_TOOLTIPS
1c383dba 204 msflags |= TBSTYLE_TOOLTIPS;
c25a510b 205#endif
2bda0e17 206
1c383dba
VZ
207 if (style & wxTB_FLAT)
208 {
209 if (wxTheApp->GetComCtl32Version() > 400)
c8f1f088 210 msflags |= TBSTYLE_FLAT;
1c383dba 211 }
2bda0e17 212
1c383dba
VZ
213 // MSW-specific initialisation
214 if ( !wxControl::MSWCreateControl(TOOLBARCLASSNAME, msflags) )
215 return FALSE;
2bda0e17 216
c8f1f088 217 // toolbar-specific post initialisation
1c383dba 218 ::SendMessage(GetHwnd(), TB_BUTTONSTRUCTSIZE, sizeof(TBBUTTON), 0);
89b892a2 219
c8f1f088
VZ
220 // set up the colors and fonts
221 wxRGBToColour(m_backgroundColour, GetSysColor(COLOR_BTNFACE));
222 m_foregroundColour = *wxBLACK;
223
224 SetFont(wxSystemSettings::GetSystemFont(wxSYS_DEFAULT_GUI_FONT));
225
1c383dba
VZ
226 // position it
227 int x = pos.x;
228 int y = pos.y;
229 int width = size.x;
230 int height = size.y;
2bda0e17 231
1c383dba
VZ
232 if (width <= 0)
233 width = 100;
234 if (height <= 0)
235 height = m_defaultHeight;
236 if (x < 0)
237 x = 0;
238 if (y < 0)
239 y = 0;
bb6290e3 240
1c383dba 241 SetSize(x, y, width, height);
2bda0e17 242
1c383dba 243 return TRUE;
2bda0e17
KB
244}
245
8a0681f9 246wxToolBar::~wxToolBar()
2bda0e17 247{
1c383dba
VZ
248 if (m_hBitmap)
249 {
250 ::DeleteObject((HBITMAP) m_hBitmap);
251 }
252}
253
bdc72a22 254// ----------------------------------------------------------------------------
8a0681f9 255// adding/removing tools
bdc72a22
VZ
256// ----------------------------------------------------------------------------
257
8a0681f9
VZ
258bool wxToolBar::DoInsertTool(size_t WXUNUSED(pos),
259 wxToolBarToolBase *tool)
1c383dba 260{
8a0681f9
VZ
261 // nothing special to do here - we really create the toolbar buttons in
262 // Realize() later
263 tool->Attach(this);
264
265 return TRUE;
1c383dba
VZ
266}
267
8a0681f9 268bool wxToolBar::DoDeleteTool(size_t pos, wxToolBarToolBase *tool)
bdc72a22 269{
8a0681f9
VZ
270 // normally, we only delete one button, but we use several separators to
271 // cover the space used by one control sometimes (with old comctl32.dll)
272 size_t nButtonsToDelete = 1;
bdc72a22 273
8a0681f9
VZ
274 // get the size of the button we're going to delete
275 RECT r;
276 if ( !::SendMessage(GetHwnd(), TB_GETITEMRECT, pos, (LPARAM)&r) )
bdc72a22 277 {
8a0681f9 278 wxLogLastError(_T("TB_GETITEMRECT"));
bdc72a22
VZ
279 }
280
8a0681f9 281 int width = r.right - r.left;
bdc72a22 282
8a0681f9
VZ
283 if ( tool->IsControl() )
284 {
285 nButtonsToDelete = ((wxToolBarTool *)tool)->GetSeparatorsCount();
bdc72a22 286
8a0681f9
VZ
287 width *= nButtonsToDelete;
288 }
bdc72a22 289
8a0681f9
VZ
290 while ( nButtonsToDelete-- > 0 )
291 {
292 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, pos, 0) )
293 {
294 wxLogLastError("TB_DELETEBUTTON");
1c383dba 295
8a0681f9
VZ
296 return FALSE;
297 }
298 }
1c383dba 299
8a0681f9 300 tool->Detach();
1c383dba 301
8a0681f9
VZ
302 m_nButtons -= nButtonsToDelete;
303
304 // reposition all the controls after this button
305 wxToolBarToolsList::Node *node = m_tools.Item(pos);
306 for ( node = node->GetNext(); node; node = node->GetNext() )
307 {
308 wxToolBarToolBase *tool2 = node->GetData();
309 if ( tool2->IsControl() )
310 {
311 int x;
312 wxControl *control = tool2->GetControl();
313 control->GetPosition(&x, NULL);
314 control->Move(x - width, -1);
315 }
316 }
1c383dba
VZ
317
318 return TRUE;
319}
320
8a0681f9 321bool wxToolBar::Realize()
1c383dba 322{
8a0681f9
VZ
323 size_t nTools = GetToolsCount();
324 if ( nTools == 0 )
325 {
326 // nothing to do
327 return TRUE;
328 }
1c383dba 329
8a0681f9 330 bool isVertical = (GetWindowStyle() & wxTB_VERTICAL) != 0;
2bda0e17 331
8a0681f9
VZ
332 // First, add the bitmap: we use one bitmap for all toolbar buttons
333 // ----------------------------------------------------------------
2bda0e17 334
8a0681f9
VZ
335 // if we already have a bitmap, we'll replace the existing one - otherwise
336 // we'll install a new one
337 HBITMAP oldToolBarBitmap = (HBITMAP)m_hBitmap;
89b892a2 338
1c383dba
VZ
339 int totalBitmapWidth = (int)(m_defaultWidth * nTools);
340 int totalBitmapHeight = (int)m_defaultHeight;
2bda0e17 341
1c383dba 342 // Create a bitmap for all the tool bitmaps
8a0681f9
VZ
343 HBITMAP hBitmap = ::CreateCompatibleBitmap(ScreenHDC(),
344 totalBitmapWidth,
345 totalBitmapHeight);
346 if ( !hBitmap )
347 {
348 wxLogLastError(_T("CreateCompatibleBitmap"));
349
350 return FALSE;
351 }
352
353 m_hBitmap = (WXHBITMAP)hBitmap;
89b892a2 354
1c383dba
VZ
355 // Now blit all the tools onto this bitmap
356 HDC memoryDC = ::CreateCompatibleDC(NULL);
8a0681f9 357 HBITMAP oldBitmap = (HBITMAP) ::SelectObject(memoryDC, hBitmap);
2bda0e17 358
1c383dba 359 HDC memoryDC2 = ::CreateCompatibleDC(NULL);
2bda0e17 360
1c383dba
VZ
361 // the button position
362 wxCoord x = 0;
2bda0e17 363
1c383dba 364 // the number of buttons (not separators)
8a0681f9 365 int nButtons = 0;
1c383dba 366
8a0681f9
VZ
367 wxToolBarToolsList::Node *node = m_tools.GetFirst();
368 while ( node )
051205e6 369 {
8a0681f9
VZ
370 wxToolBarToolBase *tool = node->GetData();
371 if ( tool->IsButton() )
1c383dba 372 {
8a0681f9 373 HBITMAP hbmp = GetHbitmapOf(tool->GetBitmap1());
1c383dba
VZ
374 if ( hbmp )
375 {
376 HBITMAP oldBitmap2 = (HBITMAP)::SelectObject(memoryDC2, hbmp);
377 if ( !BitBlt(memoryDC, x, 0, m_defaultWidth, m_defaultHeight,
378 memoryDC2, 0, 0, SRCCOPY) )
379 {
380 wxLogLastError("BitBlt");
381 }
382
383 ::SelectObject(memoryDC2, oldBitmap2);
1c383dba 384 }
8a0681f9
VZ
385 else
386 {
387 wxFAIL_MSG( _T("invalid tool button bitmap") );
388 }
389
390 // still inc width and number of buttons because otherwise the
391 // subsequent buttons will all be shifted which is rather confusing
392 // (and like this you'd see immediately which bitmap was bad)
393 x += m_defaultWidth;
394 nButtons++;
1c383dba 395 }
8a0681f9
VZ
396
397 node = node->GetNext();
051205e6 398 }
2bda0e17 399
1c383dba
VZ
400 ::SelectObject(memoryDC, oldBitmap);
401 ::DeleteDC(memoryDC);
402 ::DeleteDC(memoryDC2);
2bda0e17 403
1c383dba 404 // Map to system colours
8a0681f9 405 wxMapBitmap(hBitmap, totalBitmapWidth, totalBitmapHeight);
1c383dba 406
9f83044f
VZ
407 int bitmapId = 0;
408
409 bool addBitmap = TRUE;
410
1c383dba 411 if ( oldToolBarBitmap )
2bda0e17 412 {
9f83044f
VZ
413#ifdef TB_REPLACEBITMAP
414 if ( wxTheApp->GetComCtl32Version() >= 400 )
1c383dba 415 {
9f83044f
VZ
416 TBREPLACEBITMAP replaceBitmap;
417 replaceBitmap.hInstOld = NULL;
418 replaceBitmap.hInstNew = NULL;
419 replaceBitmap.nIDOld = (UINT) oldToolBarBitmap;
420 replaceBitmap.nIDNew = (UINT) hBitmap;
421 replaceBitmap.nButtons = nButtons;
422 if ( !::SendMessage(GetHwnd(), TB_REPLACEBITMAP,
423 0, (LPARAM) &replaceBitmap) )
424 {
425 wxFAIL_MSG(wxT("Could not replace the old bitmap"));
426 }
427
428 ::DeleteObject(oldToolBarBitmap);
429
430 // already done
431 addBitmap = FALSE;
1c383dba 432 }
9f83044f
VZ
433 else
434#endif // TB_REPLACEBITMAP
435 {
436 // we can't replace the old bitmap, so we will add another one
437 // (awfully inefficient, but what else to do?) and shift the bitmap
438 // indices accordingly
439 addBitmap = TRUE;
1c383dba 440
9f83044f
VZ
441 bitmapId = m_nButtons;
442 }
1c383dba
VZ
443
444 // Now delete all the buttons
8a0681f9 445 for ( size_t pos = 0; pos < m_nButtons; pos++ )
1c383dba 446 {
8a0681f9
VZ
447 if ( !::SendMessage(GetHwnd(), TB_DELETEBUTTON, 0, 0) )
448 {
449 wxLogLastError("TB_DELETEBUTTON");
450 }
1c383dba 451 }
9f83044f 452
2bda0e17 453 }
9f83044f
VZ
454
455 if ( addBitmap ) // no old bitmap or we can't replace it
051205e6 456 {
1c383dba
VZ
457 TBADDBITMAP addBitmap;
458 addBitmap.hInst = 0;
8a0681f9 459 addBitmap.nID = (UINT) hBitmap;
1c383dba 460 if ( ::SendMessage(GetHwnd(), TB_ADDBITMAP,
8a0681f9 461 (WPARAM) nButtons, (LPARAM)&addBitmap) == -1 )
1c383dba
VZ
462 {
463 wxFAIL_MSG(wxT("Could not add bitmap to toolbar"));
464 }
051205e6 465 }
2bda0e17 466
8a0681f9
VZ
467 // Next add the buttons and separators
468 // -----------------------------------
469
1c383dba 470 TBBUTTON *buttons = new TBBUTTON[nTools];
2bda0e17 471
8a0681f9 472 // this array will hold the indices of all controls in the toolbar
1c383dba
VZ
473 wxArrayInt controlIds;
474
475 int i = 0;
8a0681f9 476 for ( node = m_tools.GetFirst(); node; node = node->GetNext() )
2bda0e17 477 {
8a0681f9
VZ
478 wxToolBarToolBase *tool = node->GetData();
479
480 // don't add separators to the vertical toolbar - looks ugly
481 if ( isVertical && tool->IsSeparator() )
482 continue;
483
1c383dba
VZ
484 TBBUTTON& button = buttons[i];
485
486 wxZeroMemory(button);
487
8a0681f9 488 switch ( tool->GetStyle() )
1c383dba
VZ
489 {
490 case wxTOOL_STYLE_CONTROL:
8a0681f9 491 button.idCommand = tool->GetId();
1c383dba
VZ
492 // fall through: create just a separator too
493
494 case wxTOOL_STYLE_SEPARATOR:
495 button.fsState = TBSTATE_ENABLED;
496 button.fsStyle = TBSTYLE_SEP;
497 break;
498
499 case wxTOOL_STYLE_BUTTON:
500 button.iBitmap = bitmapId;
8a0681f9 501 button.idCommand = tool->GetId();
1c383dba 502
8a0681f9 503 if ( tool->IsEnabled() )
1c383dba 504 button.fsState |= TBSTATE_ENABLED;
8a0681f9 505 if ( tool->IsToggled() )
1c383dba 506 button.fsState |= TBSTATE_CHECKED;
8a0681f9
VZ
507
508 button.fsStyle = tool->CanBeToggled() ? TBSTYLE_CHECK
509 : TBSTYLE_BUTTON;
1c383dba
VZ
510
511 bitmapId++;
512 break;
513 }
2bda0e17 514
1c383dba 515 i++;
2bda0e17 516 }
1c383dba
VZ
517
518 if ( !::SendMessage(GetHwnd(), TB_ADDBUTTONS,
519 (WPARAM)i, (LPARAM)buttons) )
2bda0e17 520 {
1c383dba 521 wxLogLastError("TB_ADDBUTTONS");
2bda0e17 522 }
89b892a2 523
1c383dba 524 delete [] buttons;
2bda0e17 525
8a0681f9
VZ
526 // Deal with the controls finally
527 // ------------------------------
528
1c383dba 529 // adjust the controls size to fit nicely in the toolbar
8a0681f9
VZ
530 size_t index = 0;
531 for ( node = m_tools.GetFirst(); node; node = node->GetNext(), index++ )
1c383dba 532 {
8a0681f9
VZ
533 wxToolBarToolBase *tool = node->GetData();
534 if ( !tool->IsControl() )
535 continue;
536
1c383dba
VZ
537 wxControl *control = tool->GetControl();
538
539 wxSize size = control->GetSize();
540
bdc72a22
VZ
541 // the position of the leftmost controls corner
542 int left = -1;
543
8a0681f9
VZ
544 // note that we use TB_GETITEMRECT and not TB_GETRECT because the
545 // latter only appeared in v4.70 of comctl32.dll
546 RECT r;
547 if ( !SendMessage(GetHwnd(), TB_GETITEMRECT,
548 index, (LPARAM)(LPRECT)&r) )
549 {
550 wxLogLastError("TB_GETITEMRECT");
551 }
552
bdc72a22
VZ
553 // TB_SETBUTTONINFO message is only supported by comctl32.dll 4.71+
554 #if defined(_WIN32_IE) && (_WIN32_IE >= 0x400 )
555 // available in headers, now check whether it is available now
556 // (during run-time)
557 if ( wxTheApp->GetComCtl32Version() >= 471 )
558 {
559 // set the (underlying) separators width to be that of the
560 // control
561 TBBUTTONINFO tbbi;
562 tbbi.cbSize = sizeof(tbbi);
563 tbbi.dwMask = TBIF_SIZE;
564 tbbi.cx = size.x;
565 if ( !SendMessage(GetHwnd(), TB_SETBUTTONINFO,
8a0681f9 566 tool->GetId(), (LPARAM)&tbbi) )
bdc72a22 567 {
8a0681f9 568 // the id is probably invalid?
bdc72a22
VZ
569 wxLogLastError("TB_SETBUTTONINFO");
570 }
571
572 }
573 else
574 #endif // comctl32.dll 4.71
575 // TB_SETBUTTONINFO unavailable
576 {
bdc72a22 577 // try adding several separators to fit the controls width
bdc72a22
VZ
578 int widthSep = r.right - r.left;
579 left = r.left;
580
581 TBBUTTON tbb;
582 wxZeroMemory(tbb);
583 tbb.idCommand = 0;
584 tbb.fsState = TBSTATE_ENABLED;
585 tbb.fsStyle = TBSTYLE_SEP;
586
587 size_t nSeparators = size.x / widthSep;
588 for ( size_t nSep = 0; nSep < nSeparators; nSep++ )
589 {
bdc72a22
VZ
590 if ( !SendMessage(GetHwnd(), TB_INSERTBUTTON,
591 index, (LPARAM)&tbb) )
592 {
593 wxLogLastError("TB_INSERTBUTTON");
594 }
8a0681f9
VZ
595
596 index++;
bdc72a22
VZ
597 }
598
8a0681f9
VZ
599 // remember the number of separators we used - we'd have to
600 // delete all of them later
601 ((wxToolBarTool *)tool)->SetSeparatorsCount(nSeparators);
602
bdc72a22
VZ
603 // adjust the controls width to exactly cover the separators
604 control->SetSize((nSeparators + 1)*widthSep, -1);
605 }
1c383dba
VZ
606
607 // and position the control itself correctly vertically
1c383dba
VZ
608 int height = r.bottom - r.top;
609 int diff = height - size.y;
610 if ( diff < 0 )
611 {
612 // the control is too high, resize to fit
613 control->SetSize(-1, height - 2);
614
615 diff = 2;
616 }
2bda0e17 617
8a0681f9 618 control->Move(left == -1 ? r.left : left, r.top + (diff + 1) / 2);
1c383dba 619 }
89b892a2 620
8a0681f9
VZ
621 // the max index is the "real" number of buttons - i.e. counting even the
622 // separators which we added just for aligning the controls
623 m_nButtons = index;
89b892a2 624
8a0681f9
VZ
625 if ( !isVertical )
626 {
627 if ( m_maxRows == 0 )
628 {
629 // if not set yet, only one row
630 SetRows(1);
631 }
632 }
633 else if ( m_nButtons > 0 ) // vertical non empty toolbar
634 {
635 if ( m_maxRows == 0 )
636 {
637 // if not set yet, have one column
638 SetRows(m_nButtons);
639 }
640 }
2bda0e17 641
1c383dba 642 return TRUE;
2bda0e17
KB
643}
644
1c383dba
VZ
645// ----------------------------------------------------------------------------
646// message handlers
647// ----------------------------------------------------------------------------
648
8a0681f9 649bool wxToolBar::MSWCommand(WXUINT cmd, WXWORD id)
2bda0e17 650{
8a0681f9
VZ
651 wxToolBarToolBase *tool = FindById((int)id);
652 if ( !tool )
1c383dba
VZ
653 return FALSE;
654
8a0681f9 655 if ( tool->CanBeToggled() )
1c383dba
VZ
656 {
657 LRESULT state = ::SendMessage(GetHwnd(), TB_GETSTATE, id, 0);
82dd98a7 658 tool->Toggle((state & TBSTATE_CHECKED) != 0);
1c383dba
VZ
659 }
660
8a0681f9
VZ
661 bool toggled = tool->IsToggled();
662
663 // OnLeftClick() can veto the button state change - for buttons which may
664 // be toggled only, of couse
665 if ( !OnLeftClick((int)id, toggled) && tool->CanBeToggled() )
1c383dba 666 {
8a0681f9
VZ
667 // revert back
668 toggled = !toggled;
669 tool->SetToggle(toggled);
670
671 ::SendMessage(GetHwnd(), TB_CHECKBUTTON, id, MAKELONG(toggled, 0));
1c383dba
VZ
672 }
673
674 return TRUE;
2bda0e17
KB
675}
676
8a0681f9 677bool wxToolBar::MSWOnNotify(int WXUNUSED(idCtrl),
fd3f686c
VZ
678 WXLPARAM lParam,
679 WXLPARAM *result)
2bda0e17 680{
89b892a2 681 // First check if this applies to us
2bda0e17 682 NMHDR *hdr = (NMHDR *)lParam;
2bda0e17 683
1c383dba
VZ
684 // the tooltips control created by the toolbar is sometimes Unicode, even
685 // in an ANSI application - this seems to be a bug in comctl32.dll v5
a17e237f
VZ
686 int code = (int)hdr->code;
687 if ( (code != TTN_NEEDTEXTA) && (code != TTN_NEEDTEXTW) )
89b892a2 688 return FALSE;
2bda0e17 689
89b892a2
VZ
690 HWND toolTipWnd = (HWND)::SendMessage((HWND)GetHWND(), TB_GETTOOLTIPS, 0, 0);
691 if ( toolTipWnd != hdr->hwndFrom )
692 return FALSE;
2bda0e17 693
89b892a2
VZ
694 LPTOOLTIPTEXT ttText = (LPTOOLTIPTEXT)lParam;
695 int id = (int)ttText->hdr.idFrom;
89b892a2 696
8a0681f9
VZ
697 wxToolBarToolBase *tool = FindById(id);
698 if ( !tool )
699 return FALSE;
2bda0e17 700
8a0681f9 701 const wxString& help = tool->GetShortHelp();
8df13671
VZ
702
703 if ( !help.IsEmpty() )
89b892a2 704 {
a17e237f 705 if ( code == TTN_NEEDTEXTA )
89b892a2 706 {
837e5743 707 ttText->lpszText = (wxChar *)help.c_str();
89b892a2
VZ
708 }
709#if (_WIN32_IE >= 0x0300)
710 else
711 {
712 // FIXME this is a temp hack only until I understand better what
713 // must be done in both ANSI and Unicode builds
8df13671
VZ
714
715 size_t lenAnsi = help.Len();
b2cce0c4 716 #ifdef __MWERKS__
8df13671
VZ
717 // MetroWerks doesn't like calling mbstowcs with NULL argument
718 size_t lenUnicode = 2*lenAnsi;
b2cce0c4 719 #else
8df13671 720 size_t lenUnicode = mbstowcs(NULL, help, lenAnsi);
b2cce0c4 721 #endif
8df13671
VZ
722
723 // using the pointer of right type avoids us doing all sorts of
724 // pointer arithmetics ourselves
725 wchar_t *dst = (wchar_t *)ttText->szText,
726 *pwz = new wchar_t[lenUnicode + 1];
727 mbstowcs(pwz, help, lenAnsi + 1);
728 memcpy(dst, pwz, lenUnicode*sizeof(wchar_t));
729
730 // put the terminating _wide_ NUL
731 dst[lenUnicode] = 0;
89b892a2
VZ
732
733 delete [] pwz;
734 }
735#endif // _WIN32_IE >= 0x0300
2bda0e17 736 }
89b892a2
VZ
737
738 // For backward compatibility...
8a0681f9 739 OnMouseEnter(tool->GetId());
89b892a2
VZ
740
741 return TRUE;
2bda0e17
KB
742}
743
1c383dba 744// ----------------------------------------------------------------------------
8a0681f9 745// toolbar geometry
1c383dba
VZ
746// ----------------------------------------------------------------------------
747
8a0681f9 748void wxToolBar::SetToolBitmapSize(const wxSize& size)
2bda0e17 749{
1c383dba
VZ
750 wxToolBarBase::SetToolBitmapSize(size);
751
752 ::SendMessage(GetHwnd(), TB_SETBITMAPSIZE, 0, MAKELONG(size.x, size.y));
2bda0e17
KB
753}
754
8a0681f9 755void wxToolBar::SetRows(int nRows)
2bda0e17 756{
8a0681f9
VZ
757 if ( nRows == m_maxRows )
758 {
759 // avoid resizing the frame uselessly
760 return;
761 }
762
763 // TRUE in wParam means to create at least as many rows, FALSE -
764 // at most as many
1c383dba
VZ
765 RECT rect;
766 ::SendMessage(GetHwnd(), TB_SETROWS,
8a0681f9
VZ
767 MAKEWPARAM(nRows, !(GetWindowStyle() & wxTB_VERTICAL)),
768 (LPARAM) &rect);
1c383dba
VZ
769
770 m_maxRows = nRows;
8a0681f9
VZ
771
772 UpdateSize();
773}
774
775// The button size is bigger than the bitmap size
776wxSize wxToolBar::GetToolSize() const
777{
778 // TB_GETBUTTONSIZE is supported from version 4.70
779#if defined(_WIN32_IE) && (_WIN32_IE >= 0x300 )
780 if ( wxTheApp->GetComCtl32Version() >= 470 )
781 {
782 DWORD dw = ::SendMessage(GetHwnd(), TB_GETBUTTONSIZE, 0, 0);
783
784 return wxSize(LOWORD(dw), HIWORD(dw));
785 }
786 else
787#endif // comctl32.dll 4.70+
788 {
789 // defaults
790 return wxSize(m_defaultWidth + 8, m_defaultHeight + 7);
791 }
2bda0e17
KB
792}
793
8a0681f9 794wxToolBarToolBase *wxToolBar::FindToolForPosition(wxCoord x, wxCoord y) const
2bda0e17 795{
8a0681f9
VZ
796 POINT pt;
797 pt.x = x;
798 pt.y = y;
799 int index = (int)::SendMessage(GetHwnd(), TB_HITTEST, 0, (LPARAM)&pt);
800 if ( index < 0 )
1c383dba 801 {
8a0681f9
VZ
802 // it's a separator or there is no tool at all there
803 return (wxToolBarToolBase *)NULL;
1c383dba
VZ
804 }
805
8a0681f9 806 return m_tools.Item((size_t)index)->GetData();
2bda0e17
KB
807}
808
8a0681f9 809void wxToolBar::UpdateSize()
2bda0e17 810{
8a0681f9
VZ
811 // we must refresh the frame after the toolbar size (possibly) changed
812 wxFrame *frame = wxDynamicCast(GetParent(), wxFrame);
813 if ( frame )
814 {
815 // don't change the size, we just need to generate a WM_SIZE
816 RECT r;
817 if ( !GetWindowRect(GetHwndOf(frame), &r) )
818 {
819 wxLogLastError(_T("GetWindowRect"));
820 }
821
822 (void)::SendMessage(GetHwndOf(frame), WM_SIZE, SIZE_RESTORED,
823 MAKELPARAM(r.right - r.left, r.bottom - r.top));
824 }
825
2bda0e17
KB
826}
827
1c383dba
VZ
828// ----------------------------------------------------------------------------
829// tool state
830// ----------------------------------------------------------------------------
831
8a0681f9 832void wxToolBar::DoEnableTool(wxToolBarToolBase *tool, bool enable)
2bda0e17 833{
8a0681f9
VZ
834 ::SendMessage(GetHwnd(), TB_ENABLEBUTTON,
835 (WPARAM)tool->GetId(), (LPARAM)MAKELONG(enable, 0));
2bda0e17
KB
836}
837
8a0681f9 838void wxToolBar::DoToggleTool(wxToolBarToolBase *tool, bool toggle)
2bda0e17 839{
8a0681f9
VZ
840 ::SendMessage(GetHwnd(), TB_CHECKBUTTON,
841 (WPARAM)tool->GetId(), (LPARAM)MAKELONG(toggle, 0));
2bda0e17
KB
842}
843
8a0681f9 844void wxToolBar::DoSetToggle(wxToolBarToolBase *tool, bool toggle)
088a95f5 845{
8a0681f9
VZ
846 // VZ: AFAIK, the button has to be created either with TBSTYLE_CHECK or
847 // without, so we really need to delete the button and recreate it here
848 wxFAIL_MSG( _T("not implemented") );
2bda0e17
KB
849}
850
1c383dba
VZ
851// ----------------------------------------------------------------------------
852// event handlers
853// ----------------------------------------------------------------------------
2bda0e17
KB
854
855// Responds to colour changes, and passes event on to children.
8a0681f9 856void wxToolBar::OnSysColourChanged(wxSysColourChangedEvent& event)
2bda0e17
KB
857{
858 m_backgroundColour = wxColour(GetRValue(GetSysColor(COLOR_BTNFACE)),
89b892a2 859 GetGValue(GetSysColor(COLOR_BTNFACE)), GetBValue(GetSysColor(COLOR_BTNFACE)));
2bda0e17
KB
860
861 // Remap the buttons
8a0681f9 862 Realize();
2bda0e17 863
2bda0e17
KB
864 Refresh();
865
866 // Propagate the event to the non-top-level children
867 wxWindow::OnSysColourChanged(event);
868}
869
8a0681f9 870void wxToolBar::OnMouseEvent(wxMouseEvent& event)
e6460682
JS
871{
872 if (event.RightDown())
873 {
874 // For now, we don't have an id. Later we could
875 // try finding the tool.
876 OnRightClick((int)-1, event.GetX(), event.GetY());
877 }
878 else
879 {
42e69d6b 880 event.Skip();
e6460682
JS
881 }
882}
883
8a0681f9 884long wxToolBar::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam)
bdc72a22 885{
8a0681f9 886 if ( nMsg == WM_SIZE )
bdc72a22 887 {
8a0681f9
VZ
888 // calculate our minor dimenstion ourselves - we're confusing the
889 // standard logic (TB_AUTOSIZE) with our horizontal toolbars and other
890 // hacks
891 RECT r;
892 if ( ::SendMessage(GetHwnd(), TB_GETITEMRECT, 0, (LPARAM)&r) )
893 {
894 int w, h;
895
896 if ( GetWindowStyle() & wxTB_VERTICAL )
897 {
898 w = r.right - r.left;
899 if ( m_maxRows )
900 {
901 w *= (m_nButtons + m_maxRows - 1)/m_maxRows;
902 }
903 h = HIWORD(lParam);
904 }
905 else
906 {
907 w = LOWORD(lParam);
908 h = r.bottom - r.top;
909 if ( m_maxRows )
910 {
911 h += 6; // FIXME: this is the separator line height...
912 h *= m_maxRows;
913 }
914 }
915
916 if ( MAKELPARAM(w, h) != lParam )
917 {
918 // size really changed
919 SetSize(w, h);
920 }
921
922 // message processed
923 return 0;
924 }
bdc72a22
VZ
925 }
926
8a0681f9 927 return wxControl::MSWWindowProc(nMsg, wParam, lParam);
bdc72a22
VZ
928}
929
1c383dba
VZ
930// ----------------------------------------------------------------------------
931// private functions
932// ----------------------------------------------------------------------------
933
bdc72a22
VZ
934// These are the default colors used to map the bitmap colors to the current
935// system colors. Note that they are in BGR format because this is what Windows
936// wants (and not RGB)
2bda0e17
KB
937
938#define BGR_BUTTONTEXT (RGB(000,000,000)) // black
939#define BGR_BUTTONSHADOW (RGB(128,128,128)) // dark grey
940#define BGR_BUTTONFACE (RGB(192,192,192)) // bright grey
941#define BGR_BUTTONHILIGHT (RGB(255,255,255)) // white
5e64b2b6 942#define BGR_BACKGROUNDSEL (RGB(000,000,255)) // blue
2bda0e17
KB
943#define BGR_BACKGROUND (RGB(255,000,255)) // magenta
944
945void wxMapBitmap(HBITMAP hBitmap, int width, int height)
946{
1c383dba
VZ
947 COLORMAP ColorMap[] =
948 {
2bda0e17
KB
949 {BGR_BUTTONTEXT, COLOR_BTNTEXT}, // black
950 {BGR_BUTTONSHADOW, COLOR_BTNSHADOW}, // dark grey
951 {BGR_BUTTONFACE, COLOR_BTNFACE}, // bright grey
952 {BGR_BUTTONHILIGHT, COLOR_BTNHIGHLIGHT},// white
953 {BGR_BACKGROUNDSEL, COLOR_HIGHLIGHT}, // blue
954 {BGR_BACKGROUND, COLOR_WINDOW} // magenta
955 };
956
957 int NUM_MAPS = (sizeof(ColorMap)/sizeof(COLORMAP));
958 int n;
959 for ( n = 0; n < NUM_MAPS; n++)
960 {
961 ColorMap[n].to = ::GetSysColor(ColorMap[n].to);
962 }
963
964 HBITMAP hbmOld;
965 HDC hdcMem = CreateCompatibleDC(NULL);
966
967 if (hdcMem)
968 {
c4e7c2aa 969 hbmOld = (HBITMAP) SelectObject(hdcMem, hBitmap);
2bda0e17
KB
970
971 int i, j, k;
972 for ( i = 0; i < width; i++)
973 {
974 for ( j = 0; j < height; j++)
975 {
976 COLORREF pixel = ::GetPixel(hdcMem, i, j);
977/*
978 BYTE red = GetRValue(pixel);
979 BYTE green = GetGValue(pixel);
980 BYTE blue = GetBValue(pixel);
981*/
982
983 for ( k = 0; k < NUM_MAPS; k ++)
984 {
985 if ( ColorMap[k].from == pixel )
986 {
987 /* COLORREF actualPixel = */ ::SetPixel(hdcMem, i, j, ColorMap[k].to);
988 break;
989 }
990 }
991 }
992 }
993
994
995 SelectObject(hdcMem, hbmOld);
996 DeleteObject(hdcMem);
997 }
998
999}
1000
1001// Some experiments...
1002#if 0
1003 // What we want to do is create another bitmap which has a depth of 4,
1004 // and set the bits. So probably we want to convert this HBITMAP into a
1005 // DIB, then call SetDIBits.
1006 // AAAGH. The stupid thing is that if newBitmap has a depth of 4 (less than that of
1007 // the screen), then SetDIBits fails.
1008 HBITMAP newBitmap = ::CreateBitmap(totalBitmapWidth, totalBitmapHeight, 1, 4, NULL);
1009 HANDLE newDIB = ::BitmapToDIB((HBITMAP) m_hBitmap, NULL);
1010 LPBITMAPINFOHEADER lpbmi = (LPBITMAPINFOHEADER) GlobalLock(newDIB);
1011
1012 dc = ::GetDC(NULL);
1013// LPBITMAPINFOHEADER lpbmi = (LPBITMAPINFOHEADER) newDIB;
1014
1015 int result = ::SetDIBits(dc, newBitmap, 0, lpbmi->biHeight, FindDIBBits((LPSTR)lpbmi), (LPBITMAPINFO)lpbmi,
1016 DIB_PAL_COLORS);
1017 DWORD err = GetLastError();
1018
1019 ::ReleaseDC(NULL, dc);
1020
1021 // Delete the DIB
1022 GlobalUnlock (newDIB);
1023 GlobalFree (newDIB);
1024
1025// WXHBITMAP hBitmap2 = wxCreateMappedBitmap((WXHINSTANCE) wxGetInstance(), (WXHBITMAP) m_hBitmap);
1026 // Substitute our new bitmap for the old one
1027 ::DeleteObject((HBITMAP) m_hBitmap);
1028 m_hBitmap = (WXHBITMAP) newBitmap;
1029#endif
1030
1031
8a0681f9 1032#endif // wxUSE_TOOLBAR && Win95