Using a -1 (wxID_ANY) for menu or toolbar item IDs will now generate a
[wxWidgets.git] / src / common / menucmn.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: common/menucmn.cpp
3 // Purpose: wxMenu and wxMenuBar methods common to all ports
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 26.10.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "menubase.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #if wxUSE_MENUS
32
33 #include <ctype.h>
34
35 #ifndef WX_PRECOMP
36 #include "wx/intl.h"
37 #include "wx/log.h"
38 #include "wx/menu.h"
39 #endif
40
41 // ----------------------------------------------------------------------------
42 // template lists
43 // ----------------------------------------------------------------------------
44
45 #include "wx/listimpl.cpp"
46
47 WX_DEFINE_LIST(wxMenuList);
48 WX_DEFINE_LIST(wxMenuItemList);
49
50 // ============================================================================
51 // implementation
52 // ============================================================================
53
54 // ----------------------------------------------------------------------------
55 // wxMenuItem
56 // ----------------------------------------------------------------------------
57
58 wxMenuItemBase::wxMenuItemBase(wxMenu *parentMenu,
59 int id,
60 const wxString& text,
61 const wxString& help,
62 wxItemKind kind,
63 wxMenu *subMenu)
64 : m_text(text),
65 m_help(help)
66 {
67 wxASSERT_MSG( parentMenu != NULL, wxT("menuitem should have a menu") );
68
69 m_parentMenu = parentMenu;
70 m_subMenu = subMenu;
71 m_isEnabled = TRUE;
72 m_isChecked = FALSE;
73 m_id = id;
74 m_kind = kind;
75 if (m_id == wxID_ANY)
76 m_id = wxNewId();
77 if (m_id == wxID_SEPARATOR)
78 m_kind = wxITEM_SEPARATOR;
79 }
80
81 wxMenuItemBase::~wxMenuItemBase()
82 {
83 delete m_subMenu;
84 }
85
86 #if wxUSE_ACCEL
87
88 static inline bool CompareAccelString(const wxString& str, const wxChar *accel)
89 {
90 #if wxUSE_INTL
91 return str == accel || str == wxGetTranslation(accel);
92 #else
93 return str == accel;
94 #endif
95 }
96
97 // return wxAcceleratorEntry for the given menu string or NULL if none
98 // specified
99 wxAcceleratorEntry *wxGetAccelFromString(const wxString& label)
100 {
101 // check for accelerators: they are given after '\t'
102 int posTab = label.Find(wxT('\t'));
103 if ( posTab != wxNOT_FOUND ) {
104 // parse the accelerator string
105 int keyCode = 0;
106 int accelFlags = wxACCEL_NORMAL;
107 wxString current;
108 for ( size_t n = (size_t)posTab + 1; n < label.Len(); n++ ) {
109 if ( (label[n] == '+') || (label[n] == '-') ) {
110 if ( CompareAccelString(current, wxTRANSLATE("ctrl")) )
111 accelFlags |= wxACCEL_CTRL;
112 else if ( CompareAccelString(current, wxTRANSLATE("alt")) )
113 accelFlags |= wxACCEL_ALT;
114 else if ( CompareAccelString(current, wxTRANSLATE("shift")) )
115 accelFlags |= wxACCEL_SHIFT;
116 else {
117 // we may have "Ctrl-+", for example, but we still want to
118 // catch typos like "Crtl-A" so only give the warning if we
119 // have something before the current '+' or '-', else take
120 // it as a literal symbol
121 if ( current.empty() )
122 {
123 current += label[n];
124
125 // skip clearing it below
126 continue;
127 }
128 else
129 {
130 wxLogDebug(wxT("Unknown accel modifier: '%s'"),
131 current.c_str());
132 }
133 }
134
135 current.clear();
136 }
137 else {
138 current += (wxChar) wxTolower(label[n]);
139 }
140 }
141
142 if ( current.IsEmpty() ) {
143 wxLogDebug(wxT("No accel key found, accel string ignored."));
144 }
145 else {
146 if ( current.Len() == 1 ) {
147 // it's a letter
148 keyCode = current[0U];
149
150 // Only call wxToupper if control, alt, or shift is held down,
151 // otherwise lower case accelerators won't work.
152 if (accelFlags != wxACCEL_NORMAL) {
153 keyCode = wxToupper(keyCode);
154 }
155 }
156 else {
157 // is it a function key?
158 if ( current[0U] == 'f' && wxIsdigit(current[1U]) &&
159 (current.Len() == 2 ||
160 (current.Len() == 3 && wxIsdigit(current[2U]))) ) {
161 int n;
162 wxSscanf(current.c_str() + 1, wxT("%d"), &n);
163
164 keyCode = WXK_F1 + n - 1;
165 }
166 else {
167 // several special cases
168 current.MakeUpper();
169 if ( current == wxT("DEL") )
170 keyCode = WXK_DELETE;
171 else if ( current == wxT("DELETE") )
172 keyCode = WXK_DELETE;
173 else if ( current == wxT("BACK") )
174 keyCode = WXK_BACK;
175 else if ( current == wxT("INS") )
176 keyCode = WXK_INSERT;
177 else if ( current == wxT("INSERT") )
178 keyCode = WXK_INSERT;
179 else if ( current == wxT("ENTER") || current == wxT("RETURN") )
180 keyCode = WXK_RETURN;
181 else if ( current == wxT("PGUP") )
182 keyCode = WXK_PRIOR;
183 else if ( current == wxT("PGDN") )
184 keyCode = WXK_NEXT;
185 else if ( current == wxT("LEFT") )
186 keyCode = WXK_LEFT;
187 else if ( current == wxT("RIGHT") )
188 keyCode = WXK_RIGHT;
189 else if ( current == wxT("UP") )
190 keyCode = WXK_UP;
191 else if ( current == wxT("DOWN") )
192 keyCode = WXK_DOWN;
193 else if ( current == wxT("HOME") )
194 keyCode = WXK_HOME;
195 else if ( current == wxT("END") )
196 keyCode = WXK_END;
197 else if ( current == wxT("SPACE") )
198 keyCode = WXK_SPACE;
199 else if ( current == wxT("TAB") )
200 keyCode = WXK_TAB;
201 else if ( current == wxT("ESC") || current == wxT("ESCAPE") )
202 keyCode = WXK_ESCAPE;
203 else
204 {
205 wxLogDebug(wxT("Unrecognized accel key '%s', accel string ignored."),
206 current.c_str());
207 }
208 }
209 }
210 }
211
212 if ( keyCode ) {
213 // we do have something
214 return new wxAcceleratorEntry(accelFlags, keyCode);
215 }
216 }
217
218 return (wxAcceleratorEntry *)NULL;
219 }
220
221 wxAcceleratorEntry *wxMenuItemBase::GetAccel() const
222 {
223 return wxGetAccelFromString(GetText());
224 }
225
226 void wxMenuItemBase::SetAccel(wxAcceleratorEntry *accel)
227 {
228 wxString text = m_text.BeforeFirst(wxT('\t'));
229 if ( accel )
230 {
231 text += wxT('\t');
232
233 int flags = accel->GetFlags();
234 if ( flags & wxACCEL_ALT )
235 text += wxT("Alt-");
236 if ( flags & wxACCEL_CTRL )
237 text += wxT("Ctrl-");
238 if ( flags & wxACCEL_SHIFT )
239 text += wxT("Shift-");
240
241 int code = accel->GetKeyCode();
242 switch ( code )
243 {
244 case WXK_F1:
245 case WXK_F2:
246 case WXK_F3:
247 case WXK_F4:
248 case WXK_F5:
249 case WXK_F6:
250 case WXK_F7:
251 case WXK_F8:
252 case WXK_F9:
253 case WXK_F10:
254 case WXK_F11:
255 case WXK_F12:
256 text << wxT('F') << code - WXK_F1 + 1;
257 break;
258
259 // if there are any other keys wxGetAccelFromString() may return,
260 // we should process them here
261
262 default:
263 if ( wxIsalnum(code) )
264 {
265 text << (wxChar)code;
266
267 break;
268 }
269
270 wxFAIL_MSG( wxT("unknown keyboard accel") );
271 }
272 }
273
274 SetText(text);
275 }
276
277 #endif // wxUSE_ACCEL
278
279 // ----------------------------------------------------------------------------
280 // wxMenu ctor and dtor
281 // ----------------------------------------------------------------------------
282
283 void wxMenuBase::Init(long style)
284 {
285 m_menuBar = (wxMenuBar *)NULL;
286 m_menuParent = (wxMenu *)NULL;
287
288 m_invokingWindow = (wxWindow *)NULL;
289 m_style = style;
290 m_clientData = (void *)NULL;
291 m_eventHandler = this;
292 }
293
294 wxMenuBase::~wxMenuBase()
295 {
296 WX_CLEAR_LIST(wxMenuItemList, m_items);
297
298 // Actually, in GTK, the submenus have to get deleted first.
299 }
300
301 // ----------------------------------------------------------------------------
302 // wxMenu item adding/removing
303 // ----------------------------------------------------------------------------
304
305 void wxMenuBase::AddSubMenu(wxMenu *submenu)
306 {
307 wxCHECK_RET( submenu, _T("can't add a NULL submenu") );
308
309 if ( m_menuBar )
310 {
311 submenu->Attach(m_menuBar);
312 }
313
314 submenu->SetParent((wxMenu *)this);
315 }
316
317 wxMenuItem* wxMenuBase::DoAppend(wxMenuItem *item)
318 {
319 wxCHECK_MSG( item, NULL, wxT("invalid item in wxMenu::Append()") );
320
321 m_items.Append(item);
322 item->SetMenu((wxMenu*)this);
323 if ( item->IsSubMenu() )
324 {
325 AddSubMenu(item->GetSubMenu());
326 }
327
328 return item;
329 }
330
331 wxMenuItem* wxMenuBase::Insert(size_t pos, wxMenuItem *item)
332 {
333 wxCHECK_MSG( item, NULL, wxT("invalid item in wxMenu::Insert") );
334
335 if ( pos == GetMenuItemCount() )
336 {
337 return DoAppend(item);
338 }
339 else
340 {
341 wxCHECK_MSG( pos < GetMenuItemCount(), FALSE,
342 wxT("invalid index in wxMenu::Insert") );
343
344 return DoInsert(pos, item);
345 }
346 }
347
348 wxMenuItem* wxMenuBase::DoInsert(size_t pos, wxMenuItem *item)
349 {
350 wxCHECK_MSG( item, NULL, wxT("invalid item in wxMenu::Insert()") );
351
352 wxMenuItemList::compatibility_iterator node = m_items.Item(pos);
353 wxCHECK_MSG( node, FALSE, wxT("invalid index in wxMenu::Insert()") );
354
355 m_items.Insert(node, item);
356 item->SetMenu((wxMenu*)this);
357 if ( item->IsSubMenu() )
358 {
359 AddSubMenu(item->GetSubMenu());
360 }
361
362 return item;
363 }
364
365 wxMenuItem *wxMenuBase::Remove(wxMenuItem *item)
366 {
367 wxCHECK_MSG( item, NULL, wxT("invalid item in wxMenu::Remove") );
368
369 return DoRemove(item);
370 }
371
372 wxMenuItem *wxMenuBase::DoRemove(wxMenuItem *item)
373 {
374 wxMenuItemList::compatibility_iterator node = m_items.Find(item);
375
376 // if we get here, the item is valid or one of Remove() functions is broken
377 wxCHECK_MSG( node, NULL, wxT("bug in wxMenu::Remove logic") );
378
379 // we detach the item, but we do delete the list node (i.e. don't call
380 // DetachNode() here!)
381 m_items.Erase(node);
382
383 // item isn't attached to anything any more
384 item->SetMenu((wxMenu *)NULL);
385 wxMenu *submenu = item->GetSubMenu();
386 if ( submenu )
387 {
388 submenu->SetParent((wxMenu *)NULL);
389 }
390
391 return item;
392 }
393
394 bool wxMenuBase::Delete(wxMenuItem *item)
395 {
396 wxCHECK_MSG( item, FALSE, wxT("invalid item in wxMenu::Delete") );
397
398 return DoDelete(item);
399 }
400
401 bool wxMenuBase::DoDelete(wxMenuItem *item)
402 {
403 wxMenuItem *item2 = DoRemove(item);
404 wxCHECK_MSG( item2, FALSE, wxT("failed to delete menu item") );
405
406 // don't delete the submenu
407 item2->SetSubMenu((wxMenu *)NULL);
408
409 delete item2;
410
411 return TRUE;
412 }
413
414 bool wxMenuBase::Destroy(wxMenuItem *item)
415 {
416 wxCHECK_MSG( item, FALSE, wxT("invalid item in wxMenu::Destroy") );
417
418 return DoDestroy(item);
419 }
420
421 bool wxMenuBase::DoDestroy(wxMenuItem *item)
422 {
423 wxMenuItem *item2 = DoRemove(item);
424 wxCHECK_MSG( item2, FALSE, wxT("failed to delete menu item") );
425
426 delete item2;
427
428 return TRUE;
429 }
430
431 // ----------------------------------------------------------------------------
432 // wxMenu searching for items
433 // ----------------------------------------------------------------------------
434
435 // Finds the item id matching the given string, -1 if not found.
436 int wxMenuBase::FindItem(const wxString& text) const
437 {
438 wxString label = wxMenuItem::GetLabelFromText(text);
439 for ( wxMenuItemList::compatibility_iterator node = m_items.GetFirst();
440 node;
441 node = node->GetNext() )
442 {
443 wxMenuItem *item = node->GetData();
444 if ( item->IsSubMenu() )
445 {
446 int rc = item->GetSubMenu()->FindItem(label);
447 if ( rc != wxNOT_FOUND )
448 return rc;
449 }
450
451 // we execute this code for submenus as well to alllow finding them by
452 // name just like the ordinary items
453 if ( !item->IsSeparator() )
454 {
455 if ( item->GetLabel() == label )
456 return item->GetId();
457 }
458 }
459
460 return wxNOT_FOUND;
461 }
462
463 // recursive search for item by id
464 wxMenuItem *wxMenuBase::FindItem(int itemId, wxMenu **itemMenu) const
465 {
466 if ( itemMenu )
467 *itemMenu = NULL;
468
469 wxMenuItem *item = NULL;
470 for ( wxMenuItemList::compatibility_iterator node = m_items.GetFirst();
471 node && !item;
472 node = node->GetNext() )
473 {
474 item = node->GetData();
475
476 if ( item->GetId() == itemId )
477 {
478 if ( itemMenu )
479 *itemMenu = (wxMenu *)this;
480 }
481 else if ( item->IsSubMenu() )
482 {
483 item = item->GetSubMenu()->FindItem(itemId, itemMenu);
484 }
485 else
486 {
487 // don't exit the loop
488 item = NULL;
489 }
490 }
491
492 return item;
493 }
494
495 // non recursive search
496 wxMenuItem *wxMenuBase::FindChildItem(int id, size_t *ppos) const
497 {
498 wxMenuItem *item = (wxMenuItem *)NULL;
499 wxMenuItemList::compatibility_iterator node = GetMenuItems().GetFirst();
500
501 size_t pos;
502 for ( pos = 0; node; pos++ )
503 {
504 if ( node->GetData()->GetId() == id )
505 {
506 item = node->GetData();
507
508 break;
509 }
510
511 node = node->GetNext();
512 }
513
514 if ( ppos )
515 {
516 *ppos = item ? pos : (size_t)wxNOT_FOUND;
517 }
518
519 return item;
520 }
521
522 // find by position
523 wxMenuItem* wxMenuBase::FindItemByPosition(size_t position) const
524 {
525 wxCHECK_MSG( position < m_items.GetCount(), NULL,
526 _T("wxMenu::FindItemByPosition(): invalid menu index") );
527
528 return m_items.Item( position )->GetData();
529 }
530
531 // ----------------------------------------------------------------------------
532 // wxMenu helpers used by derived classes
533 // ----------------------------------------------------------------------------
534
535 // Update a menu and all submenus recursively. source is the object that has
536 // the update event handlers defined for it. If NULL, the menu or associated
537 // window will be used.
538 void wxMenuBase::UpdateUI(wxEvtHandler* source)
539 {
540 if ( !source && GetInvokingWindow() )
541 source = GetInvokingWindow()->GetEventHandler();
542 if ( !source )
543 source = GetEventHandler();
544 if ( !source )
545 source = this;
546
547 wxMenuItemList::compatibility_iterator node = GetMenuItems().GetFirst();
548 while ( node )
549 {
550 wxMenuItem* item = node->GetData();
551 if ( !item->IsSeparator() )
552 {
553 wxWindowID id = item->GetId();
554 wxUpdateUIEvent event(id);
555 event.SetEventObject( source );
556
557 if ( source->ProcessEvent(event) )
558 {
559 // if anything changed, update the changed attribute
560 if (event.GetSetText())
561 SetLabel(id, event.GetText());
562 if (event.GetSetChecked())
563 Check(id, event.GetChecked());
564 if (event.GetSetEnabled())
565 Enable(id, event.GetEnabled());
566 }
567
568 // recurse to the submenus
569 if ( item->GetSubMenu() )
570 item->GetSubMenu()->UpdateUI(source);
571 }
572 //else: item is a separator (which doesn't process update UI events)
573
574 node = node->GetNext();
575 }
576 }
577
578 bool wxMenuBase::SendEvent(int id, int checked)
579 {
580 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED, id);
581 event.SetEventObject(this);
582 event.SetInt(checked);
583
584 bool processed = FALSE;
585
586 // Try the menu's event handler
587 if ( !processed )
588 {
589 wxEvtHandler *handler = GetEventHandler();
590 if ( handler )
591 processed = handler->ProcessEvent(event);
592 }
593
594 // Try the window the menu was popped up from (and up through the
595 // hierarchy)
596 if ( !processed )
597 {
598 const wxMenuBase *menu = this;
599 while ( menu )
600 {
601 wxWindow *win = menu->GetInvokingWindow();
602 if ( win )
603 {
604 processed = win->GetEventHandler()->ProcessEvent(event);
605 break;
606 }
607
608 menu = menu->GetParent();
609 }
610 }
611
612 return processed;
613 }
614
615 // ----------------------------------------------------------------------------
616 // wxMenu attaching/detaching to/from menu bar
617 // ----------------------------------------------------------------------------
618
619 void wxMenuBase::Attach(wxMenuBarBase *menubar)
620 {
621 // use Detach() instead!
622 wxASSERT_MSG( menubar, _T("menu can't be attached to NULL menubar") );
623
624 // use IsAttached() to prevent this from happening
625 wxASSERT_MSG( !m_menuBar, _T("attaching menu twice?") );
626
627 m_menuBar = (wxMenuBar *)menubar;
628 }
629
630 void wxMenuBase::Detach()
631 {
632 // use IsAttached() to prevent this from happening
633 wxASSERT_MSG( m_menuBar, _T("detaching unattached menu?") );
634
635 m_menuBar = NULL;
636 }
637
638 // ----------------------------------------------------------------------------
639 // wxMenu functions forwarded to wxMenuItem
640 // ----------------------------------------------------------------------------
641
642 void wxMenuBase::Enable( int id, bool enable )
643 {
644 wxMenuItem *item = FindItem(id);
645
646 wxCHECK_RET( item, wxT("wxMenu::Enable: no such item") );
647
648 item->Enable(enable);
649 }
650
651 bool wxMenuBase::IsEnabled( int id ) const
652 {
653 wxMenuItem *item = FindItem(id);
654
655 wxCHECK_MSG( item, FALSE, wxT("wxMenu::IsEnabled: no such item") );
656
657 return item->IsEnabled();
658 }
659
660 void wxMenuBase::Check( int id, bool enable )
661 {
662 wxMenuItem *item = FindItem(id);
663
664 wxCHECK_RET( item, wxT("wxMenu::Check: no such item") );
665
666 item->Check(enable);
667 }
668
669 bool wxMenuBase::IsChecked( int id ) const
670 {
671 wxMenuItem *item = FindItem(id);
672
673 wxCHECK_MSG( item, FALSE, wxT("wxMenu::IsChecked: no such item") );
674
675 return item->IsChecked();
676 }
677
678 void wxMenuBase::SetLabel( int id, const wxString &label )
679 {
680 wxMenuItem *item = FindItem(id);
681
682 wxCHECK_RET( item, wxT("wxMenu::SetLabel: no such item") );
683
684 item->SetText(label);
685 }
686
687 wxString wxMenuBase::GetLabel( int id ) const
688 {
689 wxMenuItem *item = FindItem(id);
690
691 wxCHECK_MSG( item, wxT(""), wxT("wxMenu::GetLabel: no such item") );
692
693 return item->GetText();
694 }
695
696 void wxMenuBase::SetHelpString( int id, const wxString& helpString )
697 {
698 wxMenuItem *item = FindItem(id);
699
700 wxCHECK_RET( item, wxT("wxMenu::SetHelpString: no such item") );
701
702 item->SetHelp( helpString );
703 }
704
705 wxString wxMenuBase::GetHelpString( int id ) const
706 {
707 wxMenuItem *item = FindItem(id);
708
709 wxCHECK_MSG( item, wxT(""), wxT("wxMenu::GetHelpString: no such item") );
710
711 return item->GetHelp();
712 }
713
714 // ----------------------------------------------------------------------------
715 // wxMenuBarBase ctor and dtor
716 // ----------------------------------------------------------------------------
717
718 wxMenuBarBase::wxMenuBarBase()
719 {
720 // not attached yet
721 m_menuBarFrame = NULL;
722 }
723
724 wxMenuBarBase::~wxMenuBarBase()
725 {
726 WX_CLEAR_LIST(wxMenuList, m_menus);
727 }
728
729 // ----------------------------------------------------------------------------
730 // wxMenuBar item access: the base class versions manage m_menus list, the
731 // derived class should reflect the changes in the real menubar
732 // ----------------------------------------------------------------------------
733
734 wxMenu *wxMenuBarBase::GetMenu(size_t pos) const
735 {
736 wxMenuList::compatibility_iterator node = m_menus.Item(pos);
737 wxCHECK_MSG( node, NULL, wxT("bad index in wxMenuBar::GetMenu()") );
738
739 return node->GetData();
740 }
741
742 bool wxMenuBarBase::Append(wxMenu *menu, const wxString& WXUNUSED(title))
743 {
744 wxCHECK_MSG( menu, FALSE, wxT("can't append NULL menu") );
745
746 m_menus.Append(menu);
747 menu->Attach(this);
748
749 return TRUE;
750 }
751
752 bool wxMenuBarBase::Insert(size_t pos, wxMenu *menu,
753 const wxString& title)
754 {
755 if ( pos == m_menus.GetCount() )
756 {
757 return wxMenuBarBase::Append(menu, title);
758 }
759 else // not at the end
760 {
761 wxCHECK_MSG( menu, FALSE, wxT("can't insert NULL menu") );
762
763 wxMenuList::compatibility_iterator node = m_menus.Item(pos);
764 wxCHECK_MSG( node, FALSE, wxT("bad index in wxMenuBar::Insert()") );
765
766 m_menus.Insert(node, menu);
767 menu->Attach(this);
768
769 return TRUE;
770 }
771 }
772
773 wxMenu *wxMenuBarBase::Replace(size_t pos, wxMenu *menu,
774 const wxString& WXUNUSED(title))
775 {
776 wxCHECK_MSG( menu, NULL, wxT("can't insert NULL menu") );
777
778 wxMenuList::compatibility_iterator node = m_menus.Item(pos);
779 wxCHECK_MSG( node, NULL, wxT("bad index in wxMenuBar::Replace()") );
780
781 wxMenu *menuOld = node->GetData();
782 node->SetData(menu);
783
784 menu->Attach(this);
785 menuOld->Detach();
786
787 return menuOld;
788 }
789
790 wxMenu *wxMenuBarBase::Remove(size_t pos)
791 {
792 wxMenuList::compatibility_iterator node = m_menus.Item(pos);
793 wxCHECK_MSG( node, NULL, wxT("bad index in wxMenuBar::Remove()") );
794
795 wxMenu *menu = node->GetData();
796 m_menus.Erase(node);
797 menu->Detach();
798
799 return menu;
800 }
801
802 int wxMenuBarBase::FindMenu(const wxString& title) const
803 {
804 wxString label = wxMenuItem::GetLabelFromText(title);
805
806 size_t count = GetMenuCount();
807 for ( size_t i = 0; i < count; i++ )
808 {
809 wxString title2 = GetLabelTop(i);
810 if ( (title2 == title) ||
811 (wxMenuItem::GetLabelFromText(title2) == label) )
812 {
813 // found
814 return (int)i;
815 }
816 }
817
818 return wxNOT_FOUND;
819
820 }
821
822 // ----------------------------------------------------------------------------
823 // wxMenuBar attaching/detaching to/from the frame
824 // ----------------------------------------------------------------------------
825
826 void wxMenuBarBase::Attach(wxFrame *frame)
827 {
828 wxASSERT_MSG( !IsAttached(), wxT("menubar already attached!") );
829
830 m_menuBarFrame = frame;
831 }
832
833 void wxMenuBarBase::Detach()
834 {
835 wxASSERT_MSG( IsAttached(), wxT("detaching unattached menubar") );
836
837 m_menuBarFrame = NULL;
838 }
839
840 // ----------------------------------------------------------------------------
841 // wxMenuBar searching for items
842 // ----------------------------------------------------------------------------
843
844 wxMenuItem *wxMenuBarBase::FindItem(int id, wxMenu **menu) const
845 {
846 if ( menu )
847 *menu = NULL;
848
849 wxMenuItem *item = NULL;
850 size_t count = GetMenuCount(), i;
851 wxMenuList::const_iterator it;
852 for ( i = 0, it = m_menus.begin(); !item && (i < count); i++, it++ )
853 {
854 item = (*it)->FindItem(id, menu);
855 }
856
857 return item;
858 }
859
860 int wxMenuBarBase::FindMenuItem(const wxString& menu, const wxString& item) const
861 {
862 wxString label = wxMenuItem::GetLabelFromText(menu);
863
864 int i = 0;
865 wxMenuList::compatibility_iterator node;
866 for ( node = m_menus.GetFirst(); node; node = node->GetNext(), i++ )
867 {
868 if ( label == wxMenuItem::GetLabelFromText(GetLabelTop(i)) )
869 return node->GetData()->FindItem(item);
870 }
871
872 return wxNOT_FOUND;
873 }
874
875 // ---------------------------------------------------------------------------
876 // wxMenuBar functions forwarded to wxMenuItem
877 // ---------------------------------------------------------------------------
878
879 void wxMenuBarBase::Enable(int id, bool enable)
880 {
881 wxMenuItem *item = FindItem(id);
882
883 wxCHECK_RET( item, wxT("attempt to enable an item which doesn't exist") );
884
885 item->Enable(enable);
886 }
887
888 void wxMenuBarBase::Check(int id, bool check)
889 {
890 wxMenuItem *item = FindItem(id);
891
892 wxCHECK_RET( item, wxT("attempt to check an item which doesn't exist") );
893 wxCHECK_RET( item->IsCheckable(), wxT("attempt to check an uncheckable item") );
894
895 item->Check(check);
896 }
897
898 bool wxMenuBarBase::IsChecked(int id) const
899 {
900 wxMenuItem *item = FindItem(id);
901
902 wxCHECK_MSG( item, FALSE, wxT("wxMenuBar::IsChecked(): no such item") );
903
904 return item->IsChecked();
905 }
906
907 bool wxMenuBarBase::IsEnabled(int id) const
908 {
909 wxMenuItem *item = FindItem(id);
910
911 wxCHECK_MSG( item, FALSE, wxT("wxMenuBar::IsEnabled(): no such item") );
912
913 return item->IsEnabled();
914 }
915
916 void wxMenuBarBase::SetLabel(int id, const wxString& label)
917 {
918 wxMenuItem *item = FindItem(id);
919
920 wxCHECK_RET( item, wxT("wxMenuBar::SetLabel(): no such item") );
921
922 item->SetText(label);
923 }
924
925 wxString wxMenuBarBase::GetLabel(int id) const
926 {
927 wxMenuItem *item = FindItem(id);
928
929 wxCHECK_MSG( item, wxEmptyString,
930 wxT("wxMenuBar::GetLabel(): no such item") );
931
932 return item->GetText();
933 }
934
935 void wxMenuBarBase::SetHelpString(int id, const wxString& helpString)
936 {
937 wxMenuItem *item = FindItem(id);
938
939 wxCHECK_RET( item, wxT("wxMenuBar::SetHelpString(): no such item") );
940
941 item->SetHelp(helpString);
942 }
943
944 wxString wxMenuBarBase::GetHelpString(int id) const
945 {
946 wxMenuItem *item = FindItem(id);
947
948 wxCHECK_MSG( item, wxEmptyString,
949 wxT("wxMenuBar::GetHelpString(): no such item") );
950
951 return item->GetHelp();
952 }
953
954 #endif // wxUSE_MENUS