]>
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$ | |
55d99c7a JS |
8 | // Copyright: (c) Julian Smart |
9 | // Licence: wxWindows licence | |
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 |
f538710f | 34 | #include "wx/control.h" |
10b959e3 JS |
35 | #endif |
36 | ||
e702ff0f | 37 | #include "wx/frame.h" |
c229e50d JS |
38 | #include "wx/image.h" |
39 | #include "wx/settings.h" | |
e702ff0f | 40 | |
10b959e3 JS |
41 | #include "wx/tbarbase.h" |
42 | ||
8a0681f9 VZ |
43 | // ---------------------------------------------------------------------------- |
44 | // wxWindows macros | |
45 | // ---------------------------------------------------------------------------- | |
46 | ||
12ed316d JS |
47 | IMPLEMENT_CLASS(wxToolBarBase, wxControl) |
48 | ||
1e6feb95 VZ |
49 | BEGIN_EVENT_TABLE(wxToolBarBase, wxControl) |
50 | EVT_IDLE(wxToolBarBase::OnIdle) | |
51 | END_EVENT_TABLE() | |
52 | ||
8a0681f9 | 53 | #include "wx/listimpl.cpp" |
1c383dba | 54 | |
8a0681f9 | 55 | WX_DEFINE_LIST(wxToolBarToolsList); |
10b959e3 | 56 | |
8a0681f9 VZ |
57 | // ============================================================================ |
58 | // implementation | |
59 | // ============================================================================ | |
10b959e3 | 60 | |
8a0681f9 VZ |
61 | // ---------------------------------------------------------------------------- |
62 | // wxToolBarToolBase | |
63 | // ---------------------------------------------------------------------------- | |
10b959e3 | 64 | |
8a0681f9 | 65 | bool wxToolBarToolBase::Enable(bool enable) |
10b959e3 | 66 | { |
8a0681f9 VZ |
67 | if ( m_enabled == enable ) |
68 | return FALSE; | |
10b959e3 | 69 | |
8a0681f9 | 70 | m_enabled = enable; |
10b959e3 | 71 | |
8a0681f9 | 72 | return TRUE; |
10b959e3 JS |
73 | } |
74 | ||
8a0681f9 | 75 | bool wxToolBarToolBase::Toggle(bool toggle) |
10b959e3 | 76 | { |
e76c0b5f | 77 | wxASSERT_MSG( CanBeToggled(), _T("can't toggle this tool") ); |
8a0681f9 VZ |
78 | |
79 | if ( m_toggled == toggle ) | |
80 | return FALSE; | |
10b959e3 | 81 | |
8a0681f9 VZ |
82 | m_toggled = toggle; |
83 | ||
84 | return TRUE; | |
10b959e3 JS |
85 | } |
86 | ||
8a0681f9 | 87 | bool wxToolBarToolBase::SetToggle(bool toggle) |
10b959e3 | 88 | { |
e76c0b5f VZ |
89 | wxItemKind kind = toggle ? wxITEM_CHECK : wxITEM_NORMAL; |
90 | if ( m_kind == kind ) | |
8a0681f9 | 91 | return FALSE; |
10b959e3 | 92 | |
e76c0b5f | 93 | m_kind = kind; |
10b959e3 JS |
94 | |
95 | return TRUE; | |
96 | } | |
97 | ||
8a0681f9 | 98 | bool wxToolBarToolBase::SetShortHelp(const wxString& help) |
10b959e3 | 99 | { |
8a0681f9 VZ |
100 | if ( m_shortHelpString == help ) |
101 | return FALSE; | |
10b959e3 | 102 | |
8a0681f9 VZ |
103 | m_shortHelpString = help; |
104 | ||
105 | return TRUE; | |
10b959e3 JS |
106 | } |
107 | ||
8a0681f9 | 108 | bool wxToolBarToolBase::SetLongHelp(const wxString& help) |
10b959e3 | 109 | { |
8a0681f9 VZ |
110 | if ( m_longHelpString == help ) |
111 | return FALSE; | |
10b959e3 | 112 | |
8a0681f9 VZ |
113 | m_longHelpString = help; |
114 | ||
115 | return TRUE; | |
10b959e3 JS |
116 | } |
117 | ||
8a0681f9 | 118 | wxToolBarToolBase::~wxToolBarToolBase() |
10b959e3 | 119 | { |
8a0681f9 | 120 | } |
10b959e3 | 121 | |
8a0681f9 VZ |
122 | // ---------------------------------------------------------------------------- |
123 | // wxToolBarBase adding/deleting items | |
124 | // ---------------------------------------------------------------------------- | |
ac91b9d2 | 125 | |
8a0681f9 VZ |
126 | wxToolBarBase::wxToolBarBase() |
127 | { | |
128 | // the list owns the pointers | |
129 | m_tools.DeleteContents(TRUE); | |
10b959e3 | 130 | |
8a0681f9 | 131 | m_xMargin = m_yMargin = 0; |
10b959e3 | 132 | |
8a0681f9 | 133 | m_maxRows = m_maxCols = 0; |
10b959e3 JS |
134 | } |
135 | ||
e76c0b5f VZ |
136 | wxToolBarToolBase *wxToolBarBase::DoAddTool(int id, |
137 | const wxString& label, | |
138 | const wxBitmap& bitmap, | |
139 | const wxBitmap& bmpDisabled, | |
140 | wxItemKind kind, | |
141 | const wxString& shortHelp, | |
142 | const wxString& longHelp, | |
143 | wxObject *clientData, | |
144 | wxCoord WXUNUSED(xPos), | |
145 | wxCoord WXUNUSED(yPos)) | |
10b959e3 | 146 | { |
e76c0b5f VZ |
147 | return InsertTool(GetToolsCount(), id, label, bitmap, bmpDisabled, |
148 | kind, shortHelp, longHelp, clientData); | |
10b959e3 JS |
149 | } |
150 | ||
8a0681f9 VZ |
151 | wxToolBarToolBase *wxToolBarBase::InsertTool(size_t pos, |
152 | int id, | |
e76c0b5f | 153 | const wxString& label, |
8a0681f9 | 154 | const wxBitmap& bitmap, |
e76c0b5f VZ |
155 | const wxBitmap& bmpDisabled, |
156 | wxItemKind kind, | |
157 | const wxString& shortHelp, | |
158 | const wxString& longHelp, | |
159 | wxObject *clientData) | |
10b959e3 | 160 | { |
8a0681f9 VZ |
161 | wxCHECK_MSG( pos <= GetToolsCount(), (wxToolBarToolBase *)NULL, |
162 | _T("invalid position in wxToolBar::InsertTool()") ); | |
163 | ||
e76c0b5f VZ |
164 | wxToolBarToolBase *tool = CreateTool(id, label, bitmap, bmpDisabled, kind, |
165 | clientData, shortHelp, longHelp); | |
8a0681f9 | 166 | |
dd91da4e | 167 | if ( !InsertTool(pos, tool) ) |
8a0681f9 VZ |
168 | { |
169 | delete tool; | |
170 | ||
171 | return NULL; | |
172 | } | |
173 | ||
dd91da4e VZ |
174 | return tool; |
175 | } | |
176 | ||
177 | wxToolBarToolBase *wxToolBarBase::AddTool(wxToolBarToolBase *tool) | |
178 | { | |
179 | return InsertTool(GetToolsCount(), tool); | |
180 | } | |
181 | ||
182 | wxToolBarToolBase * | |
183 | wxToolBarBase::InsertTool(size_t pos, wxToolBarToolBase *tool) | |
184 | { | |
185 | wxCHECK_MSG( pos <= GetToolsCount(), (wxToolBarToolBase *)NULL, | |
186 | _T("invalid position in wxToolBar::InsertTool()") ); | |
187 | ||
188 | if ( !tool || !DoInsertTool(pos, tool) ) | |
189 | { | |
190 | return NULL; | |
191 | } | |
192 | ||
8a0681f9 VZ |
193 | m_tools.Insert(pos, tool); |
194 | ||
195 | return tool; | |
10b959e3 JS |
196 | } |
197 | ||
8a0681f9 | 198 | wxToolBarToolBase *wxToolBarBase::AddControl(wxControl *control) |
10b959e3 | 199 | { |
8a0681f9 | 200 | return InsertControl(GetToolsCount(), control); |
10b959e3 JS |
201 | } |
202 | ||
8a0681f9 | 203 | wxToolBarToolBase *wxToolBarBase::InsertControl(size_t pos, wxControl *control) |
10b959e3 | 204 | { |
8a0681f9 VZ |
205 | wxCHECK_MSG( control, (wxToolBarToolBase *)NULL, |
206 | _T("toolbar: can't insert NULL control") ); | |
207 | ||
208 | wxCHECK_MSG( control->GetParent() == this, (wxToolBarToolBase *)NULL, | |
209 | _T("control must have toolbar as parent") ); | |
210 | ||
211 | wxCHECK_MSG( pos <= GetToolsCount(), (wxToolBarToolBase *)NULL, | |
212 | _T("invalid position in wxToolBar::InsertControl()") ); | |
213 | ||
214 | wxToolBarToolBase *tool = CreateTool(control); | |
215 | ||
dd91da4e | 216 | if ( !InsertTool(pos, tool) ) |
8a0681f9 VZ |
217 | { |
218 | delete tool; | |
219 | ||
220 | return NULL; | |
221 | } | |
222 | ||
8a0681f9 | 223 | return tool; |
10b959e3 JS |
224 | } |
225 | ||
fba2d5e6 RR |
226 | wxControl *wxToolBarBase::FindControl( int id ) |
227 | { | |
228 | for ( wxToolBarToolsList::Node* node = m_tools.GetFirst(); | |
229 | node; | |
230 | node = node->GetNext() ) | |
231 | { | |
652ab153 VZ |
232 | const wxToolBarToolBase * const tool = node->GetData(); |
233 | if ( tool->IsControl() ) | |
fba2d5e6 | 234 | { |
652ab153 VZ |
235 | wxControl * const control = tool->GetControl(); |
236 | ||
237 | if ( !control ) | |
238 | { | |
239 | wxFAIL_MSG( _T("NULL control in toolbar?") ); | |
240 | } | |
241 | else if ( control->GetId() == id ) | |
242 | { | |
243 | // found | |
fba2d5e6 | 244 | return control; |
652ab153 | 245 | } |
fba2d5e6 RR |
246 | } |
247 | } | |
248 | ||
249 | return NULL; | |
250 | } | |
251 | ||
8a0681f9 | 252 | wxToolBarToolBase *wxToolBarBase::AddSeparator() |
10b959e3 | 253 | { |
8a0681f9 | 254 | return InsertSeparator(GetToolsCount()); |
10b959e3 JS |
255 | } |
256 | ||
8a0681f9 | 257 | wxToolBarToolBase *wxToolBarBase::InsertSeparator(size_t pos) |
10b959e3 | 258 | { |
8a0681f9 VZ |
259 | wxCHECK_MSG( pos <= GetToolsCount(), (wxToolBarToolBase *)NULL, |
260 | _T("invalid position in wxToolBar::InsertSeparator()") ); | |
261 | ||
262 | wxToolBarToolBase *tool = CreateTool(wxID_SEPARATOR, | |
e76c0b5f | 263 | wxEmptyString, |
8a0681f9 | 264 | wxNullBitmap, wxNullBitmap, |
e76c0b5f | 265 | wxITEM_SEPARATOR, (wxObject *)NULL, |
8a0681f9 VZ |
266 | wxEmptyString, wxEmptyString); |
267 | ||
268 | if ( !tool || !DoInsertTool(pos, tool) ) | |
10b959e3 | 269 | { |
8a0681f9 VZ |
270 | delete tool; |
271 | ||
272 | return NULL; | |
10b959e3 | 273 | } |
8a0681f9 VZ |
274 | |
275 | m_tools.Insert(pos, tool); | |
276 | ||
277 | return tool; | |
10b959e3 JS |
278 | } |
279 | ||
8a0681f9 | 280 | wxToolBarToolBase *wxToolBarBase::RemoveTool(int id) |
10b959e3 | 281 | { |
8a0681f9 VZ |
282 | size_t pos = 0; |
283 | wxToolBarToolsList::Node *node; | |
284 | for ( node = m_tools.GetFirst(); node; node = node->GetNext() ) | |
10b959e3 | 285 | { |
8a0681f9 VZ |
286 | if ( node->GetData()->GetId() == id ) |
287 | break; | |
288 | ||
289 | pos++; | |
10b959e3 | 290 | } |
10b959e3 | 291 | |
8a0681f9 | 292 | if ( !node ) |
10b959e3 | 293 | { |
8a0681f9 VZ |
294 | // don't give any error messages - sometimes we might call RemoveTool() |
295 | // without knowing whether the tool is or not in the toolbar | |
296 | return (wxToolBarToolBase *)NULL; | |
10b959e3 | 297 | } |
10b959e3 | 298 | |
8a0681f9 VZ |
299 | wxToolBarToolBase *tool = node->GetData(); |
300 | if ( !DoDeleteTool(pos, tool) ) | |
301 | { | |
302 | return (wxToolBarToolBase *)NULL; | |
303 | } | |
10b959e3 | 304 | |
8a0681f9 VZ |
305 | // the node would delete the data, so set it to NULL to avoid this |
306 | node->SetData(NULL); | |
10b959e3 | 307 | |
8a0681f9 | 308 | m_tools.DeleteNode(node); |
10b959e3 | 309 | |
8a0681f9 | 310 | return tool; |
10b959e3 JS |
311 | } |
312 | ||
8a0681f9 | 313 | bool wxToolBarBase::DeleteToolByPos(size_t pos) |
10b959e3 | 314 | { |
8a0681f9 VZ |
315 | wxCHECK_MSG( pos < GetToolsCount(), FALSE, |
316 | _T("invalid position in wxToolBar::DeleteToolByPos()") ); | |
10b959e3 | 317 | |
8a0681f9 | 318 | wxToolBarToolsList::Node *node = m_tools.Item(pos); |
10b959e3 | 319 | |
8a0681f9 VZ |
320 | if ( !DoDeleteTool(pos, node->GetData()) ) |
321 | { | |
322 | return FALSE; | |
323 | } | |
324 | ||
325 | m_tools.DeleteNode(node); | |
326 | ||
327 | return TRUE; | |
10b959e3 JS |
328 | } |
329 | ||
8a0681f9 | 330 | bool wxToolBarBase::DeleteTool(int id) |
10b959e3 | 331 | { |
8a0681f9 VZ |
332 | size_t pos = 0; |
333 | wxToolBarToolsList::Node *node; | |
334 | for ( node = m_tools.GetFirst(); node; node = node->GetNext() ) | |
335 | { | |
336 | if ( node->GetData()->GetId() == id ) | |
337 | break; | |
338 | ||
339 | pos++; | |
340 | } | |
341 | ||
342 | if ( !node || !DoDeleteTool(pos, node->GetData()) ) | |
343 | { | |
344 | return FALSE; | |
345 | } | |
346 | ||
347 | m_tools.DeleteNode(node); | |
348 | ||
349 | return TRUE; | |
10b959e3 JS |
350 | } |
351 | ||
8a0681f9 | 352 | wxToolBarToolBase *wxToolBarBase::FindById(int id) const |
10b959e3 | 353 | { |
8a0681f9 VZ |
354 | wxToolBarToolBase *tool = (wxToolBarToolBase *)NULL; |
355 | ||
356 | for ( wxToolBarToolsList::Node *node = m_tools.GetFirst(); | |
357 | node; | |
358 | node = node->GetNext() ) | |
359 | { | |
360 | tool = node->GetData(); | |
361 | if ( tool->GetId() == id ) | |
362 | { | |
363 | // found | |
364 | break; | |
365 | } | |
d9739886 VZ |
366 | |
367 | tool = NULL; | |
8a0681f9 VZ |
368 | } |
369 | ||
370 | return tool; | |
10b959e3 JS |
371 | } |
372 | ||
8a0681f9 | 373 | void wxToolBarBase::ClearTools() |
10b959e3 | 374 | { |
8a0681f9 | 375 | m_tools.Clear(); |
10b959e3 JS |
376 | } |
377 | ||
8a0681f9 | 378 | bool wxToolBarBase::Realize() |
10b959e3 | 379 | { |
8a0681f9 | 380 | return TRUE; |
10b959e3 JS |
381 | } |
382 | ||
8a0681f9 | 383 | wxToolBarBase::~wxToolBarBase() |
10b959e3 | 384 | { |
10b959e3 JS |
385 | } |
386 | ||
8a0681f9 VZ |
387 | // ---------------------------------------------------------------------------- |
388 | // wxToolBarBase tools state | |
389 | // ---------------------------------------------------------------------------- | |
10b959e3 | 390 | |
8a0681f9 | 391 | void wxToolBarBase::EnableTool(int id, bool enable) |
10b959e3 | 392 | { |
8a0681f9 VZ |
393 | wxToolBarToolBase *tool = FindById(id); |
394 | if ( tool ) | |
10b959e3 | 395 | { |
8a0681f9 VZ |
396 | if ( tool->Enable(enable) ) |
397 | { | |
398 | DoEnableTool(tool, enable); | |
399 | } | |
10b959e3 | 400 | } |
8a0681f9 | 401 | } |
10b959e3 | 402 | |
8a0681f9 VZ |
403 | void wxToolBarBase::ToggleTool(int id, bool toggle) |
404 | { | |
405 | wxToolBarToolBase *tool = FindById(id); | |
406 | if ( tool && tool->CanBeToggled() ) | |
10b959e3 | 407 | { |
8a0681f9 VZ |
408 | if ( tool->Toggle(toggle) ) |
409 | { | |
410 | DoToggleTool(tool, toggle); | |
411 | } | |
10b959e3 | 412 | } |
10b959e3 JS |
413 | } |
414 | ||
8a0681f9 VZ |
415 | void wxToolBarBase::SetToggle(int id, bool toggle) |
416 | { | |
417 | wxToolBarToolBase *tool = FindById(id); | |
418 | if ( tool ) | |
10b959e3 | 419 | { |
8a0681f9 VZ |
420 | if ( tool->SetToggle(toggle) ) |
421 | { | |
422 | DoSetToggle(tool, toggle); | |
423 | } | |
10b959e3 | 424 | } |
8a0681f9 VZ |
425 | } |
426 | ||
427 | void wxToolBarBase::SetToolShortHelp(int id, const wxString& help) | |
428 | { | |
429 | wxToolBarToolBase *tool = FindById(id); | |
430 | if ( tool ) | |
10b959e3 | 431 | { |
8a0681f9 | 432 | (void)tool->SetShortHelp(help); |
10b959e3 | 433 | } |
8a0681f9 VZ |
434 | } |
435 | ||
436 | void wxToolBarBase::SetToolLongHelp(int id, const wxString& help) | |
437 | { | |
438 | wxToolBarToolBase *tool = FindById(id); | |
439 | if ( tool ) | |
10b959e3 | 440 | { |
8a0681f9 | 441 | (void)tool->SetLongHelp(help); |
10b959e3 | 442 | } |
10b959e3 JS |
443 | } |
444 | ||
8a0681f9 | 445 | wxObject *wxToolBarBase::GetToolClientData(int id) const |
10b959e3 | 446 | { |
8a0681f9 VZ |
447 | wxToolBarToolBase *tool = FindById(id); |
448 | ||
449 | return tool ? tool->GetClientData() : (wxObject *)NULL; | |
10b959e3 JS |
450 | } |
451 | ||
6fd5fa4f VZ |
452 | void wxToolBarBase::SetToolClientData(int id, wxObject *clientData) |
453 | { | |
454 | wxToolBarToolBase *tool = FindById(id); | |
455 | ||
456 | wxCHECK_RET( tool, _T("no such tool in wxToolBar::SetToolClientData") ); | |
457 | ||
458 | tool->SetClientData(clientData); | |
459 | } | |
460 | ||
e6c96a7c JS |
461 | int wxToolBarBase::GetToolPos(int id) const |
462 | { | |
463 | size_t pos = 0; | |
464 | wxToolBarToolsList::Node *node; | |
465 | ||
466 | for ( node = m_tools.GetFirst(); node; node = node->GetNext() ) | |
467 | { | |
468 | if ( node->GetData()->GetId() == id ) | |
469 | return pos; | |
470 | ||
471 | pos++; | |
472 | } | |
473 | ||
474 | return wxNOT_FOUND; | |
475 | } | |
476 | ||
8a0681f9 | 477 | bool wxToolBarBase::GetToolState(int id) const |
10b959e3 | 478 | { |
8a0681f9 VZ |
479 | wxToolBarToolBase *tool = FindById(id); |
480 | wxCHECK_MSG( tool, FALSE, _T("no such tool") ); | |
481 | ||
482 | return tool->IsToggled(); | |
10b959e3 JS |
483 | } |
484 | ||
8a0681f9 | 485 | bool wxToolBarBase::GetToolEnabled(int id) const |
10b959e3 | 486 | { |
8a0681f9 VZ |
487 | wxToolBarToolBase *tool = FindById(id); |
488 | wxCHECK_MSG( tool, FALSE, _T("no such tool") ); | |
489 | ||
490 | return tool->IsEnabled(); | |
10b959e3 JS |
491 | } |
492 | ||
8a0681f9 | 493 | wxString wxToolBarBase::GetToolShortHelp(int id) const |
10b959e3 | 494 | { |
8a0681f9 VZ |
495 | wxToolBarToolBase *tool = FindById(id); |
496 | wxCHECK_MSG( tool, _T(""), _T("no such tool") ); | |
497 | ||
498 | return tool->GetShortHelp(); | |
10b959e3 JS |
499 | } |
500 | ||
8a0681f9 | 501 | wxString wxToolBarBase::GetToolLongHelp(int id) const |
10b959e3 | 502 | { |
8a0681f9 VZ |
503 | wxToolBarToolBase *tool = FindById(id); |
504 | wxCHECK_MSG( tool, _T(""), _T("no such tool") ); | |
10b959e3 | 505 | |
8a0681f9 | 506 | return tool->GetLongHelp(); |
10b959e3 JS |
507 | } |
508 | ||
8a0681f9 VZ |
509 | // ---------------------------------------------------------------------------- |
510 | // wxToolBarBase geometry | |
511 | // ---------------------------------------------------------------------------- | |
512 | ||
513 | void wxToolBarBase::SetMargins(int x, int y) | |
10b959e3 | 514 | { |
8a0681f9 VZ |
515 | m_xMargin = x; |
516 | m_yMargin = y; | |
10b959e3 JS |
517 | } |
518 | ||
8a0681f9 | 519 | void wxToolBarBase::SetRows(int WXUNUSED(nRows)) |
10b959e3 | 520 | { |
8a0681f9 | 521 | // nothing |
10b959e3 JS |
522 | } |
523 | ||
8a0681f9 VZ |
524 | // ---------------------------------------------------------------------------- |
525 | // event processing | |
526 | // ---------------------------------------------------------------------------- | |
527 | ||
528 | // Only allow toggle if returns TRUE | |
529 | bool wxToolBarBase::OnLeftClick(int id, bool toggleDown) | |
10b959e3 | 530 | { |
8a0681f9 VZ |
531 | wxCommandEvent event(wxEVT_COMMAND_TOOL_CLICKED, id); |
532 | event.SetEventObject(this); | |
6bec54e1 VZ |
533 | |
534 | // we use SetInt() to make wxCommandEvent::IsChecked() return toggleDown | |
535 | event.SetInt((int)toggleDown); | |
536 | ||
537 | // and SetExtraLong() for backwards compatibility | |
538 | event.SetExtraLong((long)toggleDown); | |
8a0681f9 VZ |
539 | |
540 | // Send events to this toolbar instead (and thence up the window hierarchy) | |
541 | GetEventHandler()->ProcessEvent(event); | |
542 | ||
543 | return TRUE; | |
10b959e3 JS |
544 | } |
545 | ||
8a0681f9 VZ |
546 | // Call when right button down. |
547 | void wxToolBarBase::OnRightClick(int id, | |
548 | long WXUNUSED(x), | |
549 | long WXUNUSED(y)) | |
10b959e3 | 550 | { |
8a0681f9 VZ |
551 | wxCommandEvent event(wxEVT_COMMAND_TOOL_RCLICKED, id); |
552 | event.SetEventObject(this); | |
553 | event.SetInt(id); | |
554 | ||
555 | GetEventHandler()->ProcessEvent(event); | |
556 | } | |
43d811ea | 557 | |
8a0681f9 VZ |
558 | // Called when the mouse cursor enters a tool bitmap (no button pressed). |
559 | // Argument is -1 if mouse is exiting the toolbar. | |
560 | // Note that for this event, the id of the window is used, | |
561 | // and the integer parameter of wxCommandEvent is used to retrieve | |
562 | // the tool id. | |
563 | void wxToolBarBase::OnMouseEnter(int id) | |
564 | { | |
565 | wxCommandEvent event(wxEVT_COMMAND_TOOL_ENTER, GetId()); | |
566 | event.SetEventObject(this); | |
567 | event.SetInt(id); | |
568 | ||
8a0681f9 | 569 | wxFrame *frame = wxDynamicCast(GetParent(), wxFrame); |
1f361cdd | 570 | if( frame ) |
66ce9e06 | 571 | { |
1f361cdd MB |
572 | wxToolBarToolBase* tool = id == -1 ? (wxToolBarToolBase*)0 : FindById(id); |
573 | wxString help = tool ? tool->GetLongHelp() : wxString(); | |
574 | frame->DoGiveHelp( help, id != -1 ); | |
66ce9e06 VZ |
575 | } |
576 | ||
1f361cdd | 577 | (void)GetEventHandler()->ProcessEvent(event); |
8a0681f9 VZ |
578 | } |
579 | ||
580 | // ---------------------------------------------------------------------------- | |
581 | // UI updates | |
582 | // ---------------------------------------------------------------------------- | |
583 | ||
584 | void wxToolBarBase::OnIdle(wxIdleEvent& event) | |
585 | { | |
ac91b9d2 | 586 | DoToolbarUpdates(); |
8a0681f9 VZ |
587 | |
588 | event.Skip(); | |
10b959e3 JS |
589 | } |
590 | ||
591 | // Do the toolbar button updates (check for EVT_UPDATE_UI handlers) | |
ac91b9d2 VZ |
592 | void wxToolBarBase::DoToolbarUpdates() |
593 | { | |
e63fdcd6 JS |
594 | wxWindow* parent = this; |
595 | while (parent->GetParent()) | |
596 | parent = parent->GetParent(); | |
597 | ||
d3734d65 RR |
598 | // This kind of #ifdef is a good way to annoy people. It breaks |
599 | // apps, but only on one platform and due to a hack in officially | |
600 | // platform independent code. It took me hours to fix this. RR. | |
601 | // | |
602 | // #ifdef __WXMSW__ | |
603 | // wxWindow* focusWin = wxFindFocusDescendant(parent); | |
604 | // #else | |
f0e9f0d3 | 605 | wxWindow* focusWin = (wxWindow*) NULL; |
d3734d65 | 606 | // #endif |
e63fdcd6 JS |
607 | |
608 | wxEvtHandler* evtHandler = focusWin ? focusWin->GetEventHandler() : GetEventHandler() ; | |
e702ff0f | 609 | |
8a0681f9 VZ |
610 | for ( wxToolBarToolsList::Node* node = m_tools.GetFirst(); |
611 | node; | |
612 | node = node->GetNext() ) | |
ac91b9d2 | 613 | { |
8a0681f9 | 614 | int id = node->GetData()->GetId(); |
ac91b9d2 | 615 | |
8a0681f9 | 616 | wxUpdateUIEvent event(id); |
ac91b9d2 VZ |
617 | event.SetEventObject(this); |
618 | ||
8a0681f9 | 619 | if ( evtHandler->ProcessEvent(event) ) |
ac91b9d2 | 620 | { |
8a0681f9 VZ |
621 | if ( event.GetSetEnabled() ) |
622 | EnableTool(id, event.GetEnabled()); | |
623 | if ( event.GetSetChecked() ) | |
624 | ToggleTool(id, event.GetChecked()); | |
625 | #if 0 | |
626 | if ( event.GetSetText() ) | |
ac91b9d2 | 627 | // Set tooltip? |
8a0681f9 | 628 | #endif // 0 |
ac91b9d2 | 629 | } |
ac91b9d2 | 630 | } |
10b959e3 JS |
631 | } |
632 | ||
c229e50d JS |
633 | // Helper function, used by wxCreateGreyedImage |
634 | ||
cee14ca0 VZ |
635 | static void wxGreyOutImage( const wxImage& src, |
636 | wxImage& dest, | |
637 | const wxColour& darkCol, | |
638 | const wxColour& lightCol, | |
639 | const wxColour& bgCol ) | |
c229e50d | 640 | { |
25a14595 JS |
641 | // Second attempt, just making things monochrome |
642 | int width = src.GetWidth(); | |
643 | int height = src.GetHeight(); | |
644 | ||
cee14ca0 VZ |
645 | int redCur, greenCur, blueCur; |
646 | for ( int x = 0; x < width; x++ ) | |
25a14595 | 647 | { |
cee14ca0 VZ |
648 | for ( int y = 1; y < height; y++ ) |
649 | { | |
25a14595 JS |
650 | redCur = src.GetRed(x, y); |
651 | greenCur = src.GetGreen(x, y); | |
cee14ca0 | 652 | blueCur = src.GetBlue(x, y); |
25a14595 | 653 | |
cee14ca0 | 654 | // Change light things to the background colour |
25a14595 JS |
655 | if ( redCur >= (lightCol.Red() - 50) && greenCur >= (lightCol.Green() - 50) && blueCur >= (lightCol.Blue() - 50) ) |
656 | { | |
657 | dest.SetRGB(x,y, bgCol.Red(), bgCol.Green(), bgCol.Blue()); | |
658 | } | |
659 | else if ( redCur == bgCol.Red() && greenCur == bgCol.Green() && blueCur == bgCol.Blue() ) | |
660 | { | |
cee14ca0 | 661 | // Leave the background colour as-is |
25a14595 JS |
662 | // dest.SetRGB(x,y, bgCol.Red(), bgCol.Green(), bgCol.Blue()); |
663 | } | |
664 | else // if ( redCur <= darkCol.Red() && greenCur <= darkCol.Green() && blueCur <= darkCol.Blue() ) | |
665 | { | |
cee14ca0 | 666 | // Change dark things to really dark |
c229e50d JS |
667 | dest.SetRGB(x,y, darkCol.Red(), darkCol.Green(), darkCol.Blue()); |
668 | } | |
c229e50d | 669 | } |
cee14ca0 | 670 | } |
c229e50d JS |
671 | } |
672 | ||
673 | /* | |
674 | * Make a greyed-out image suitable for disabled buttons. | |
675 | * This code is adapted from wxNewBitmapButton in FL. | |
676 | */ | |
677 | ||
678 | bool wxCreateGreyedImage(const wxImage& in, wxImage& out) | |
679 | { | |
680 | out = in.Copy(); | |
681 | ||
682 | // assuming the pixels along the edges are of the background color | |
683 | wxColour bgCol(in.GetRed(0, 0), in.GetGreen(0, 0), in.GetBlue(0, 0)); | |
684 | ||
685 | wxColour darkCol = wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW) ; | |
686 | wxColour lightCol = wxSystemSettings::GetColour(wxSYS_COLOUR_3DHIGHLIGHT) ; | |
687 | ||
688 | wxGreyOutImage(in, out, darkCol, lightCol, bgCol); | |
689 | ||
690 | return TRUE; | |
691 | } | |
692 | ||
8a0681f9 | 693 | #endif // wxUSE_TOOLBAR |