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