]>
Commit | Line | Data |
---|---|---|
10b959e3 | 1 | ///////////////////////////////////////////////////////////////////////////// |
8a0681f9 VZ |
2 | // Name: common/tbarbase.cpp |
3 | // Purpose: wxToolBarBase implementation | |
10b959e3 | 4 | // Author: Julian Smart |
8a0681f9 | 5 | // Modified by: VZ at 11.12.99 (wxScrollableToolBar splitted off) |
10b959e3 JS |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
1c383dba | 9 | // Licence: wxWindows license |
10b959e3 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
8a0681f9 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
10b959e3 | 20 | #ifdef __GNUG__ |
8a0681f9 | 21 | #pragma implementation "tbarbase.h" |
10b959e3 JS |
22 | #endif |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
8a0681f9 | 28 | #pragma hdrstop |
10b959e3 JS |
29 | #endif |
30 | ||
1e6feb95 VZ |
31 | #if wxUSE_TOOLBAR |
32 | ||
10b959e3 | 33 | #ifndef WX_PRECOMP |
10b959e3 JS |
34 | #endif |
35 | ||
e702ff0f JS |
36 | #include "wx/frame.h" |
37 | ||
10b959e3 | 38 | // For ::UpdateWindow |
2049ba38 | 39 | #ifdef __WXMSW__ |
10b959e3 JS |
40 | #include <windows.h> |
41 | #endif | |
42 | ||
10b959e3 JS |
43 | #include "wx/tbarbase.h" |
44 | ||
8a0681f9 VZ |
45 | // ---------------------------------------------------------------------------- |
46 | // wxWindows macros | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
12ed316d JS |
49 | IMPLEMENT_CLASS(wxToolBarBase, wxControl) |
50 | ||
1e6feb95 VZ |
51 | BEGIN_EVENT_TABLE(wxToolBarBase, wxControl) |
52 | EVT_IDLE(wxToolBarBase::OnIdle) | |
53 | END_EVENT_TABLE() | |
54 | ||
8a0681f9 | 55 | #include "wx/listimpl.cpp" |
1c383dba | 56 | |
8a0681f9 | 57 | WX_DEFINE_LIST(wxToolBarToolsList); |
10b959e3 | 58 | |
8a0681f9 VZ |
59 | // ============================================================================ |
60 | // implementation | |
61 | // ============================================================================ | |
10b959e3 | 62 | |
8a0681f9 VZ |
63 | // ---------------------------------------------------------------------------- |
64 | // wxToolBarToolBase | |
65 | // ---------------------------------------------------------------------------- | |
10b959e3 | 66 | |
8a0681f9 | 67 | bool wxToolBarToolBase::Enable(bool enable) |
10b959e3 | 68 | { |
8a0681f9 VZ |
69 | if ( m_enabled == enable ) |
70 | return FALSE; | |
10b959e3 | 71 | |
8a0681f9 | 72 | m_enabled = enable; |
10b959e3 | 73 | |
8a0681f9 | 74 | return TRUE; |
10b959e3 JS |
75 | } |
76 | ||
8a0681f9 | 77 | bool wxToolBarToolBase::Toggle(bool toggle) |
10b959e3 | 78 | { |
8a0681f9 VZ |
79 | wxASSERT_MSG( m_isToggle, _T("can't toggle this tool") ); |
80 | ||
81 | if ( m_toggled == toggle ) | |
82 | return FALSE; | |
10b959e3 | 83 | |
8a0681f9 VZ |
84 | m_toggled = toggle; |
85 | ||
86 | return TRUE; | |
10b959e3 JS |
87 | } |
88 | ||
8a0681f9 | 89 | bool wxToolBarToolBase::SetToggle(bool toggle) |
10b959e3 | 90 | { |
8a0681f9 VZ |
91 | if ( m_isToggle == toggle ) |
92 | return FALSE; | |
10b959e3 | 93 | |
8a0681f9 | 94 | m_isToggle = toggle; |
10b959e3 JS |
95 | |
96 | return TRUE; | |
97 | } | |
98 | ||
8a0681f9 | 99 | bool wxToolBarToolBase::SetShortHelp(const wxString& help) |
10b959e3 | 100 | { |
8a0681f9 VZ |
101 | if ( m_shortHelpString == help ) |
102 | return FALSE; | |
10b959e3 | 103 | |
8a0681f9 VZ |
104 | m_shortHelpString = help; |
105 | ||
106 | return TRUE; | |
10b959e3 JS |
107 | } |
108 | ||
8a0681f9 | 109 | bool wxToolBarToolBase::SetLongHelp(const wxString& help) |
10b959e3 | 110 | { |
8a0681f9 VZ |
111 | if ( m_longHelpString == help ) |
112 | return FALSE; | |
10b959e3 | 113 | |
8a0681f9 VZ |
114 | m_longHelpString = help; |
115 | ||
116 | return TRUE; | |
10b959e3 JS |
117 | } |
118 | ||
8a0681f9 | 119 | wxToolBarToolBase::~wxToolBarToolBase() |
10b959e3 | 120 | { |
8a0681f9 | 121 | } |
10b959e3 | 122 | |
8a0681f9 VZ |
123 | // ---------------------------------------------------------------------------- |
124 | // wxToolBarBase adding/deleting items | |
125 | // ---------------------------------------------------------------------------- | |
ac91b9d2 | 126 | |
8a0681f9 VZ |
127 | wxToolBarBase::wxToolBarBase() |
128 | { | |
129 | // the list owns the pointers | |
130 | m_tools.DeleteContents(TRUE); | |
10b959e3 | 131 | |
8a0681f9 | 132 | m_xMargin = m_yMargin = 0; |
10b959e3 | 133 | |
8a0681f9 | 134 | m_maxRows = m_maxCols = 0; |
10b959e3 JS |
135 | } |
136 | ||
8a0681f9 VZ |
137 | wxToolBarToolBase *wxToolBarBase::AddTool(int id, |
138 | const wxBitmap& bitmap, | |
139 | const wxBitmap& pushedBitmap, | |
140 | bool toggle, | |
141 | wxCoord WXUNUSED(xPos), | |
142 | wxCoord WXUNUSED(yPos), | |
143 | wxObject *clientData, | |
144 | const wxString& helpString1, | |
145 | const wxString& helpString2) | |
10b959e3 | 146 | { |
8a0681f9 VZ |
147 | return InsertTool(GetToolsCount(), id, bitmap, pushedBitmap, |
148 | toggle, clientData, helpString1, helpString2); | |
10b959e3 JS |
149 | } |
150 | ||
8a0681f9 VZ |
151 | wxToolBarToolBase *wxToolBarBase::InsertTool(size_t pos, |
152 | int id, | |
153 | const wxBitmap& bitmap, | |
154 | const wxBitmap& pushedBitmap, | |
155 | bool toggle, | |
156 | wxObject *clientData, | |
157 | const wxString& helpString1, | |
158 | const wxString& helpString2) | |
10b959e3 | 159 | { |
8a0681f9 VZ |
160 | wxCHECK_MSG( pos <= GetToolsCount(), (wxToolBarToolBase *)NULL, |
161 | _T("invalid position in wxToolBar::InsertTool()") ); | |
162 | ||
163 | wxToolBarToolBase *tool = CreateTool(id, bitmap, pushedBitmap, toggle, | |
164 | clientData, helpString1, helpString2); | |
165 | ||
166 | if ( !tool || !DoInsertTool(pos, tool) ) | |
167 | { | |
168 | delete tool; | |
169 | ||
170 | return NULL; | |
171 | } | |
172 | ||
173 | m_tools.Insert(pos, tool); | |
174 | ||
175 | return tool; | |
10b959e3 JS |
176 | } |
177 | ||
8a0681f9 | 178 | wxToolBarToolBase *wxToolBarBase::AddControl(wxControl *control) |
10b959e3 | 179 | { |
8a0681f9 | 180 | return InsertControl(GetToolsCount(), control); |
10b959e3 JS |
181 | } |
182 | ||
8a0681f9 | 183 | wxToolBarToolBase *wxToolBarBase::InsertControl(size_t pos, wxControl *control) |
10b959e3 | 184 | { |
8a0681f9 VZ |
185 | wxCHECK_MSG( control, (wxToolBarToolBase *)NULL, |
186 | _T("toolbar: can't insert NULL control") ); | |
187 | ||
188 | wxCHECK_MSG( control->GetParent() == this, (wxToolBarToolBase *)NULL, | |
189 | _T("control must have toolbar as parent") ); | |
190 | ||
191 | wxCHECK_MSG( pos <= GetToolsCount(), (wxToolBarToolBase *)NULL, | |
192 | _T("invalid position in wxToolBar::InsertControl()") ); | |
193 | ||
194 | wxToolBarToolBase *tool = CreateTool(control); | |
195 | ||
196 | if ( !tool || !DoInsertTool(pos, tool) ) | |
197 | { | |
198 | delete tool; | |
199 | ||
200 | return NULL; | |
201 | } | |
202 | ||
203 | m_tools.Insert(pos, tool); | |
204 | ||
205 | return tool; | |
10b959e3 JS |
206 | } |
207 | ||
8a0681f9 | 208 | wxToolBarToolBase *wxToolBarBase::AddSeparator() |
10b959e3 | 209 | { |
8a0681f9 | 210 | return InsertSeparator(GetToolsCount()); |
10b959e3 JS |
211 | } |
212 | ||
8a0681f9 | 213 | wxToolBarToolBase *wxToolBarBase::InsertSeparator(size_t pos) |
10b959e3 | 214 | { |
8a0681f9 VZ |
215 | wxCHECK_MSG( pos <= GetToolsCount(), (wxToolBarToolBase *)NULL, |
216 | _T("invalid position in wxToolBar::InsertSeparator()") ); | |
217 | ||
218 | wxToolBarToolBase *tool = CreateTool(wxID_SEPARATOR, | |
219 | wxNullBitmap, wxNullBitmap, | |
220 | FALSE, (wxObject *)NULL, | |
221 | wxEmptyString, wxEmptyString); | |
222 | ||
223 | if ( !tool || !DoInsertTool(pos, tool) ) | |
10b959e3 | 224 | { |
8a0681f9 VZ |
225 | delete tool; |
226 | ||
227 | return NULL; | |
10b959e3 | 228 | } |
8a0681f9 VZ |
229 | |
230 | m_tools.Insert(pos, tool); | |
231 | ||
232 | return tool; | |
10b959e3 JS |
233 | } |
234 | ||
8a0681f9 | 235 | wxToolBarToolBase *wxToolBarBase::RemoveTool(int id) |
10b959e3 | 236 | { |
8a0681f9 VZ |
237 | size_t pos = 0; |
238 | wxToolBarToolsList::Node *node; | |
239 | for ( node = m_tools.GetFirst(); node; node = node->GetNext() ) | |
10b959e3 | 240 | { |
8a0681f9 VZ |
241 | if ( node->GetData()->GetId() == id ) |
242 | break; | |
243 | ||
244 | pos++; | |
10b959e3 | 245 | } |
10b959e3 | 246 | |
8a0681f9 | 247 | if ( !node ) |
10b959e3 | 248 | { |
8a0681f9 VZ |
249 | // don't give any error messages - sometimes we might call RemoveTool() |
250 | // without knowing whether the tool is or not in the toolbar | |
251 | return (wxToolBarToolBase *)NULL; | |
10b959e3 | 252 | } |
10b959e3 | 253 | |
8a0681f9 VZ |
254 | wxToolBarToolBase *tool = node->GetData(); |
255 | if ( !DoDeleteTool(pos, tool) ) | |
256 | { | |
257 | return (wxToolBarToolBase *)NULL; | |
258 | } | |
10b959e3 | 259 | |
8a0681f9 VZ |
260 | // the node would delete the data, so set it to NULL to avoid this |
261 | node->SetData(NULL); | |
10b959e3 | 262 | |
8a0681f9 | 263 | m_tools.DeleteNode(node); |
10b959e3 | 264 | |
8a0681f9 | 265 | return tool; |
10b959e3 JS |
266 | } |
267 | ||
8a0681f9 | 268 | bool wxToolBarBase::DeleteToolByPos(size_t pos) |
10b959e3 | 269 | { |
8a0681f9 VZ |
270 | wxCHECK_MSG( pos < GetToolsCount(), FALSE, |
271 | _T("invalid position in wxToolBar::DeleteToolByPos()") ); | |
10b959e3 | 272 | |
8a0681f9 | 273 | wxToolBarToolsList::Node *node = m_tools.Item(pos); |
10b959e3 | 274 | |
8a0681f9 VZ |
275 | if ( !DoDeleteTool(pos, node->GetData()) ) |
276 | { | |
277 | return FALSE; | |
278 | } | |
279 | ||
280 | m_tools.DeleteNode(node); | |
281 | ||
282 | return TRUE; | |
10b959e3 JS |
283 | } |
284 | ||
8a0681f9 | 285 | bool wxToolBarBase::DeleteTool(int id) |
10b959e3 | 286 | { |
8a0681f9 VZ |
287 | size_t pos = 0; |
288 | wxToolBarToolsList::Node *node; | |
289 | for ( node = m_tools.GetFirst(); node; node = node->GetNext() ) | |
290 | { | |
291 | if ( node->GetData()->GetId() == id ) | |
292 | break; | |
293 | ||
294 | pos++; | |
295 | } | |
296 | ||
297 | if ( !node || !DoDeleteTool(pos, node->GetData()) ) | |
298 | { | |
299 | return FALSE; | |
300 | } | |
301 | ||
302 | m_tools.DeleteNode(node); | |
303 | ||
304 | return TRUE; | |
10b959e3 JS |
305 | } |
306 | ||
8a0681f9 | 307 | wxToolBarToolBase *wxToolBarBase::FindById(int id) const |
10b959e3 | 308 | { |
8a0681f9 VZ |
309 | wxToolBarToolBase *tool = (wxToolBarToolBase *)NULL; |
310 | ||
311 | for ( wxToolBarToolsList::Node *node = m_tools.GetFirst(); | |
312 | node; | |
313 | node = node->GetNext() ) | |
314 | { | |
315 | tool = node->GetData(); | |
316 | if ( tool->GetId() == id ) | |
317 | { | |
318 | // found | |
319 | break; | |
320 | } | |
321 | } | |
322 | ||
323 | return tool; | |
10b959e3 JS |
324 | } |
325 | ||
8a0681f9 | 326 | void wxToolBarBase::ClearTools() |
10b959e3 | 327 | { |
8a0681f9 | 328 | m_tools.Clear(); |
10b959e3 JS |
329 | } |
330 | ||
8a0681f9 | 331 | bool wxToolBarBase::Realize() |
10b959e3 | 332 | { |
8a0681f9 | 333 | return TRUE; |
10b959e3 JS |
334 | } |
335 | ||
8a0681f9 | 336 | wxToolBarBase::~wxToolBarBase() |
10b959e3 | 337 | { |
10b959e3 JS |
338 | } |
339 | ||
8a0681f9 VZ |
340 | // ---------------------------------------------------------------------------- |
341 | // wxToolBarBase tools state | |
342 | // ---------------------------------------------------------------------------- | |
10b959e3 | 343 | |
8a0681f9 | 344 | void wxToolBarBase::EnableTool(int id, bool enable) |
10b959e3 | 345 | { |
8a0681f9 VZ |
346 | wxToolBarToolBase *tool = FindById(id); |
347 | if ( tool ) | |
10b959e3 | 348 | { |
8a0681f9 VZ |
349 | if ( tool->Enable(enable) ) |
350 | { | |
351 | DoEnableTool(tool, enable); | |
352 | } | |
10b959e3 | 353 | } |
8a0681f9 | 354 | } |
10b959e3 | 355 | |
8a0681f9 VZ |
356 | void wxToolBarBase::ToggleTool(int id, bool toggle) |
357 | { | |
358 | wxToolBarToolBase *tool = FindById(id); | |
359 | if ( tool && tool->CanBeToggled() ) | |
10b959e3 | 360 | { |
8a0681f9 VZ |
361 | if ( tool->Toggle(toggle) ) |
362 | { | |
363 | DoToggleTool(tool, toggle); | |
364 | } | |
10b959e3 | 365 | } |
10b959e3 JS |
366 | } |
367 | ||
8a0681f9 VZ |
368 | void wxToolBarBase::SetToggle(int id, bool toggle) |
369 | { | |
370 | wxToolBarToolBase *tool = FindById(id); | |
371 | if ( tool ) | |
10b959e3 | 372 | { |
8a0681f9 VZ |
373 | if ( tool->SetToggle(toggle) ) |
374 | { | |
375 | DoSetToggle(tool, toggle); | |
376 | } | |
10b959e3 | 377 | } |
8a0681f9 VZ |
378 | } |
379 | ||
380 | void wxToolBarBase::SetToolShortHelp(int id, const wxString& help) | |
381 | { | |
382 | wxToolBarToolBase *tool = FindById(id); | |
383 | if ( tool ) | |
10b959e3 | 384 | { |
8a0681f9 | 385 | (void)tool->SetShortHelp(help); |
10b959e3 | 386 | } |
8a0681f9 VZ |
387 | } |
388 | ||
389 | void wxToolBarBase::SetToolLongHelp(int id, const wxString& help) | |
390 | { | |
391 | wxToolBarToolBase *tool = FindById(id); | |
392 | if ( tool ) | |
10b959e3 | 393 | { |
8a0681f9 | 394 | (void)tool->SetLongHelp(help); |
10b959e3 | 395 | } |
10b959e3 JS |
396 | } |
397 | ||
8a0681f9 | 398 | wxObject *wxToolBarBase::GetToolClientData(int id) const |
10b959e3 | 399 | { |
8a0681f9 VZ |
400 | wxToolBarToolBase *tool = FindById(id); |
401 | ||
402 | return tool ? tool->GetClientData() : (wxObject *)NULL; | |
10b959e3 JS |
403 | } |
404 | ||
6fd5fa4f VZ |
405 | void wxToolBarBase::SetToolClientData(int id, wxObject *clientData) |
406 | { | |
407 | wxToolBarToolBase *tool = FindById(id); | |
408 | ||
409 | wxCHECK_RET( tool, _T("no such tool in wxToolBar::SetToolClientData") ); | |
410 | ||
411 | tool->SetClientData(clientData); | |
412 | } | |
413 | ||
8a0681f9 | 414 | bool wxToolBarBase::GetToolState(int id) const |
10b959e3 | 415 | { |
8a0681f9 VZ |
416 | wxToolBarToolBase *tool = FindById(id); |
417 | wxCHECK_MSG( tool, FALSE, _T("no such tool") ); | |
418 | ||
419 | return tool->IsToggled(); | |
10b959e3 JS |
420 | } |
421 | ||
8a0681f9 | 422 | bool wxToolBarBase::GetToolEnabled(int id) const |
10b959e3 | 423 | { |
8a0681f9 VZ |
424 | wxToolBarToolBase *tool = FindById(id); |
425 | wxCHECK_MSG( tool, FALSE, _T("no such tool") ); | |
426 | ||
427 | return tool->IsEnabled(); | |
10b959e3 JS |
428 | } |
429 | ||
8a0681f9 | 430 | wxString wxToolBarBase::GetToolShortHelp(int id) const |
10b959e3 | 431 | { |
8a0681f9 VZ |
432 | wxToolBarToolBase *tool = FindById(id); |
433 | wxCHECK_MSG( tool, _T(""), _T("no such tool") ); | |
434 | ||
435 | return tool->GetShortHelp(); | |
10b959e3 JS |
436 | } |
437 | ||
8a0681f9 | 438 | wxString wxToolBarBase::GetToolLongHelp(int id) const |
10b959e3 | 439 | { |
8a0681f9 VZ |
440 | wxToolBarToolBase *tool = FindById(id); |
441 | wxCHECK_MSG( tool, _T(""), _T("no such tool") ); | |
10b959e3 | 442 | |
8a0681f9 | 443 | return tool->GetLongHelp(); |
10b959e3 JS |
444 | } |
445 | ||
8a0681f9 VZ |
446 | // ---------------------------------------------------------------------------- |
447 | // wxToolBarBase geometry | |
448 | // ---------------------------------------------------------------------------- | |
449 | ||
450 | void wxToolBarBase::SetMargins(int x, int y) | |
10b959e3 | 451 | { |
8a0681f9 VZ |
452 | m_xMargin = x; |
453 | m_yMargin = y; | |
10b959e3 JS |
454 | } |
455 | ||
8a0681f9 | 456 | void wxToolBarBase::SetRows(int WXUNUSED(nRows)) |
10b959e3 | 457 | { |
8a0681f9 | 458 | // nothing |
10b959e3 JS |
459 | } |
460 | ||
8a0681f9 VZ |
461 | // ---------------------------------------------------------------------------- |
462 | // event processing | |
463 | // ---------------------------------------------------------------------------- | |
464 | ||
465 | // Only allow toggle if returns TRUE | |
466 | bool wxToolBarBase::OnLeftClick(int id, bool toggleDown) | |
10b959e3 | 467 | { |
8a0681f9 VZ |
468 | wxCommandEvent event(wxEVT_COMMAND_TOOL_CLICKED, id); |
469 | event.SetEventObject(this); | |
6bec54e1 VZ |
470 | |
471 | // we use SetInt() to make wxCommandEvent::IsChecked() return toggleDown | |
472 | event.SetInt((int)toggleDown); | |
473 | ||
474 | // and SetExtraLong() for backwards compatibility | |
475 | event.SetExtraLong((long)toggleDown); | |
8a0681f9 VZ |
476 | |
477 | // Send events to this toolbar instead (and thence up the window hierarchy) | |
478 | GetEventHandler()->ProcessEvent(event); | |
479 | ||
480 | return TRUE; | |
10b959e3 JS |
481 | } |
482 | ||
8a0681f9 VZ |
483 | // Call when right button down. |
484 | void wxToolBarBase::OnRightClick(int id, | |
485 | long WXUNUSED(x), | |
486 | long WXUNUSED(y)) | |
10b959e3 | 487 | { |
8a0681f9 VZ |
488 | wxCommandEvent event(wxEVT_COMMAND_TOOL_RCLICKED, id); |
489 | event.SetEventObject(this); | |
490 | event.SetInt(id); | |
491 | ||
492 | GetEventHandler()->ProcessEvent(event); | |
493 | } | |
43d811ea | 494 | |
8a0681f9 VZ |
495 | // Called when the mouse cursor enters a tool bitmap (no button pressed). |
496 | // Argument is -1 if mouse is exiting the toolbar. | |
497 | // Note that for this event, the id of the window is used, | |
498 | // and the integer parameter of wxCommandEvent is used to retrieve | |
499 | // the tool id. | |
500 | void wxToolBarBase::OnMouseEnter(int id) | |
501 | { | |
502 | wxCommandEvent event(wxEVT_COMMAND_TOOL_ENTER, GetId()); | |
503 | event.SetEventObject(this); | |
504 | event.SetInt(id); | |
505 | ||
506 | (void)GetEventHandler()->ProcessEvent(event); | |
507 | ||
508 | wxToolBarToolBase *tool = FindById(id); | |
509 | if ( !tool || !tool->GetLongHelp() ) | |
510 | return; | |
511 | ||
512 | wxFrame *frame = wxDynamicCast(GetParent(), wxFrame); | |
513 | if ( !frame ) | |
514 | return; | |
515 | ||
516 | frame->SetStatusText(tool->GetLongHelp()); | |
517 | } | |
518 | ||
519 | // ---------------------------------------------------------------------------- | |
520 | // UI updates | |
521 | // ---------------------------------------------------------------------------- | |
522 | ||
523 | void wxToolBarBase::OnIdle(wxIdleEvent& event) | |
524 | { | |
ac91b9d2 | 525 | DoToolbarUpdates(); |
8a0681f9 VZ |
526 | |
527 | event.Skip(); | |
10b959e3 JS |
528 | } |
529 | ||
530 | // Do the toolbar button updates (check for EVT_UPDATE_UI handlers) | |
ac91b9d2 VZ |
531 | void wxToolBarBase::DoToolbarUpdates() |
532 | { | |
e63fdcd6 JS |
533 | wxWindow* parent = this; |
534 | while (parent->GetParent()) | |
535 | parent = parent->GetParent(); | |
536 | ||
f0e9f0d3 | 537 | #ifdef __WXMSW__ |
e63fdcd6 | 538 | wxWindow* focusWin = wxFindFocusDescendant(parent); |
f0e9f0d3 JS |
539 | #else |
540 | wxWindow* focusWin = (wxWindow*) NULL; | |
541 | #endif | |
e63fdcd6 JS |
542 | |
543 | wxEvtHandler* evtHandler = focusWin ? focusWin->GetEventHandler() : GetEventHandler() ; | |
e702ff0f | 544 | |
8a0681f9 VZ |
545 | for ( wxToolBarToolsList::Node* node = m_tools.GetFirst(); |
546 | node; | |
547 | node = node->GetNext() ) | |
ac91b9d2 | 548 | { |
8a0681f9 | 549 | int id = node->GetData()->GetId(); |
ac91b9d2 | 550 | |
8a0681f9 | 551 | wxUpdateUIEvent event(id); |
ac91b9d2 VZ |
552 | event.SetEventObject(this); |
553 | ||
8a0681f9 | 554 | if ( evtHandler->ProcessEvent(event) ) |
ac91b9d2 | 555 | { |
8a0681f9 VZ |
556 | if ( event.GetSetEnabled() ) |
557 | EnableTool(id, event.GetEnabled()); | |
558 | if ( event.GetSetChecked() ) | |
559 | ToggleTool(id, event.GetChecked()); | |
560 | #if 0 | |
561 | if ( event.GetSetText() ) | |
ac91b9d2 | 562 | // Set tooltip? |
8a0681f9 | 563 | #endif // 0 |
ac91b9d2 | 564 | } |
ac91b9d2 | 565 | } |
10b959e3 JS |
566 | } |
567 | ||
8a0681f9 | 568 | #endif // wxUSE_TOOLBAR |