1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/menucmn.cpp
3 // Purpose: wxMenu and wxMenuBar methods common to all ports
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
36 #include "wx/stockitem.h"
38 // ----------------------------------------------------------------------------
40 // ----------------------------------------------------------------------------
42 #include "wx/listimpl.cpp"
44 WX_DEFINE_LIST(wxMenuList
)
45 WX_DEFINE_LIST(wxMenuItemList
)
47 // ============================================================================
49 // ============================================================================
51 // ----------------------------------------------------------------------------
52 // XTI for wxMenu(Bar)
53 // ----------------------------------------------------------------------------
55 wxDEFINE_FLAGS( wxMenuStyle
)
56 wxBEGIN_FLAGS( wxMenuStyle
)
57 wxFLAGS_MEMBER(wxMENU_TEAROFF
)
58 wxEND_FLAGS( wxMenuStyle
)
60 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxMenu
, wxEvtHandler
, "wx/menu.h")
61 wxCOLLECTION_TYPE_INFO( wxMenuItem
*, wxMenuItemList
) ;
63 #if wxUSE_EXTENDED_RTTI
64 template<> void wxCollectionToVariantArray( wxMenuItemList
const &theList
,
67 wxListCollectionToAnyList
<wxMenuItemList::compatibility_iterator
>( theList
, value
) ;
71 wxBEGIN_PROPERTIES_TABLE(wxMenu
)
72 wxEVENT_PROPERTY( Select
, wxEVT_MENU
, wxCommandEvent
)
74 wxPROPERTY( Title
, wxString
, SetTitle
, GetTitle
, wxString(), \
75 0 /*flags*/, wxT("Helpstring"), wxT("group") )
77 wxREADONLY_PROPERTY_FLAGS( MenuStyle
, wxMenuStyle
, long, GetStyle
, \
78 wxEMPTY_PARAMETER_VALUE
, 0 /*flags*/, wxT("Helpstring"), \
79 wxT("group")) // style
81 wxPROPERTY_COLLECTION( MenuItems
, wxMenuItemList
, wxMenuItem
*, Append
, \
82 GetMenuItems
, 0 /*flags*/, wxT("Helpstring"), wxT("group"))
83 wxEND_PROPERTIES_TABLE()
85 wxEMPTY_HANDLERS_TABLE(wxMenu
)
87 wxDIRECT_CONSTRUCTOR_2( wxMenu
, wxString
, Title
, long, MenuStyle
)
89 wxDEFINE_FLAGS( wxMenuBarStyle
)
91 wxBEGIN_FLAGS( wxMenuBarStyle
)
92 wxFLAGS_MEMBER(wxMB_DOCKABLE
)
93 wxEND_FLAGS( wxMenuBarStyle
)
95 #if wxUSE_EXTENDED_RTTI
96 // the negative id would lead the window (its superclass !) to
97 // vetoe streaming out otherwise
98 bool wxMenuBarStreamingCallback( const wxObject
*WXUNUSED(object
), wxObjectWriter
*,
99 wxObjectWriterCallback
*, const wxStringToAnyHashMap
& )
105 wxIMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxMenuBar
, wxWindow
, "wx/menu.h", \
106 wxMenuBarStreamingCallback
)
109 #if wxUSE_EXTENDED_RTTI
110 WX_DEFINE_LIST( wxMenuInfoHelperList
)
112 wxIMPLEMENT_DYNAMIC_CLASS_XTI(wxMenuInfoHelper
, wxObject
, "wx/menu.h")
114 wxBEGIN_PROPERTIES_TABLE(wxMenuInfoHelper
)
115 wxREADONLY_PROPERTY( Menu
, wxMenu
*, GetMenu
, wxEMPTY_PARAMETER_VALUE
, \
116 0 /*flags*/, wxT("Helpstring"), wxT("group"))
118 wxREADONLY_PROPERTY( Title
, wxString
, GetTitle
, wxString(), \
119 0 /*flags*/, wxT("Helpstring"), wxT("group"))
120 wxEND_PROPERTIES_TABLE()
122 wxEMPTY_HANDLERS_TABLE(wxMenuInfoHelper
)
124 wxCONSTRUCTOR_2( wxMenuInfoHelper
, wxMenu
*, Menu
, wxString
, Title
)
126 wxCOLLECTION_TYPE_INFO( wxMenuInfoHelper
*, wxMenuInfoHelperList
) ;
128 template<> void wxCollectionToVariantArray( wxMenuInfoHelperList
const &theList
,
131 wxListCollectionToAnyList
<wxMenuInfoHelperList::compatibility_iterator
>( theList
, value
) ;
136 wxBEGIN_PROPERTIES_TABLE(wxMenuBar
)
137 wxPROPERTY_COLLECTION( MenuInfos
, wxMenuInfoHelperList
, wxMenuInfoHelper
*, AppendMenuInfo
, \
138 GetMenuInfos
, 0 /*flags*/, wxT("Helpstring"), wxT("group"))
139 wxEND_PROPERTIES_TABLE()
141 wxEMPTY_HANDLERS_TABLE(wxMenuBar
)
143 wxCONSTRUCTOR_DUMMY( wxMenuBar
)
145 #if wxUSE_EXTENDED_RTTI
147 const wxMenuInfoHelperList
& wxMenuBarBase::GetMenuInfos() const
149 wxMenuInfoHelperList
* list
= const_cast< wxMenuInfoHelperList
* > (& m_menuInfos
);
150 WX_CLEAR_LIST( wxMenuInfoHelperList
, *list
);
151 for (size_t i
= 0 ; i
< GetMenuCount(); ++i
)
153 wxMenuInfoHelper
* info
= new wxMenuInfoHelper();
154 info
->Create( GetMenu(i
), GetMenuLabel(i
));
162 // ----------------------------------------------------------------------------
163 // XTI for wxMenuItem
164 // ----------------------------------------------------------------------------
166 #if wxUSE_EXTENDED_RTTI
168 bool wxMenuItemStreamingCallback( const wxObject
*object
, wxObjectWriter
*,
169 wxObjectWriterCallback
*, const wxStringToAnyHashMap
& )
171 const wxMenuItem
* mitem
= wx_dynamic_cast(const wxMenuItem
*, object
);
172 if ( mitem
->GetMenu() && !mitem
->GetMenu()->GetTitle().empty() )
174 // we don't stream out the first two items for menus with a title,
175 // they will be reconstructed
176 if ( mitem
->GetMenu()->FindItemByPosition(0) == mitem
||
177 mitem
->GetMenu()->FindItemByPosition(1) == mitem
)
185 wxBEGIN_ENUM( wxItemKind
)
186 wxENUM_MEMBER( wxITEM_SEPARATOR
)
187 wxENUM_MEMBER( wxITEM_NORMAL
)
188 wxENUM_MEMBER( wxITEM_CHECK
)
189 wxENUM_MEMBER( wxITEM_RADIO
)
190 wxEND_ENUM( wxItemKind
)
192 wxIMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxMenuItem
, wxObject
, "wx/menuitem.h", \
193 wxMenuItemStreamingCallback
)
195 wxBEGIN_PROPERTIES_TABLE(wxMenuItem
)
196 wxPROPERTY( Parent
, wxMenu
*, SetMenu
, GetMenu
, wxEMPTY_PARAMETER_VALUE
, \
197 0 /*flags*/, wxT("Helpstring"), wxT("group") )
198 wxPROPERTY( Id
, int, SetId
, GetId
, wxEMPTY_PARAMETER_VALUE
, \
199 0 /*flags*/, wxT("Helpstring"), wxT("group") )
200 wxPROPERTY( ItemLabel
, wxString
, SetItemLabel
, GetItemLabel
, wxString(), \
201 0 /*flags*/, wxT("Helpstring"), wxT("group") )
202 wxPROPERTY( Help
, wxString
, SetHelp
, GetHelp
, wxString(), \
203 0 /*flags*/, wxT("Helpstring"), wxT("group") )
204 wxREADONLY_PROPERTY( Kind
, wxItemKind
, GetKind
, wxEMPTY_PARAMETER_VALUE
, \
205 0 /*flags*/, wxT("Helpstring"), wxT("group") )
206 wxPROPERTY( SubMenu
, wxMenu
*, SetSubMenu
, GetSubMenu
, wxEMPTY_PARAMETER_VALUE
, \
207 0 /*flags*/, wxT("Helpstring"), wxT("group") )
208 wxPROPERTY( Enabled
, bool, Enable
, IsEnabled
, wxAny((bool)true), \
209 0 /*flags*/, wxT("Helpstring"), wxT("group") )
210 wxPROPERTY( Checked
, bool, Check
, IsChecked
, wxAny((bool)false), \
211 0 /*flags*/, wxT("Helpstring"), wxT("group") )
212 wxPROPERTY( Checkable
, bool, SetCheckable
, IsCheckable
, wxAny((bool)false), \
213 0 /*flags*/, wxT("Helpstring"), wxT("group") )
214 wxEND_PROPERTIES_TABLE()
216 wxEMPTY_HANDLERS_TABLE(wxMenuItem
)
218 wxDIRECT_CONSTRUCTOR_6( wxMenuItem
, wxMenu
*, Parent
, int, Id
, wxString
, \
219 Text
, wxString
, Help
, wxItemKind
, Kind
, wxMenu
*, SubMenu
)
221 // ----------------------------------------------------------------------------
223 // ----------------------------------------------------------------------------
225 wxMenuItemBase::wxMenuItemBase(wxMenu
*parentMenu
,
227 const wxString
& text
,
228 const wxString
& help
,
235 m_id
= wxWindow::NewControlId();
239 m_id
= wxID_SEPARATOR
;
241 // there is a lot of existing code just doing Append(wxID_SEPARATOR)
242 // and it makes sense to omit the following optional parameters,
243 // including the kind one which doesn't default to wxITEM_SEPARATOR,
244 // of course, so override it here
245 kind
= wxITEM_SEPARATOR
;
249 // (popup) menu titles in wxMSW use this ID to indicate that
250 // it's not a real menu item, so we don't want the check below to
256 // ids are limited to 16 bits under MSW so portable code shouldn't
257 // use ids outside of this range (negative ids generated by wx are
259 wxASSERT_MSG( (itemid
>= 0 && itemid
< SHRT_MAX
) ||
260 (itemid
>= wxID_AUTO_LOWEST
&& itemid
<= wxID_AUTO_HIGHEST
),
261 wxS("invalid itemid value") );
265 // notice that parentMenu can be NULL: the item can be attached to the menu
266 // later with SetMenu()
268 m_parentMenu
= parentMenu
;
278 wxMenuItemBase::~wxMenuItemBase()
285 wxAcceleratorEntry
*wxMenuItemBase::GetAccel() const
287 return wxAcceleratorEntry::Create(GetItemLabel());
290 void wxMenuItemBase::SetAccel(wxAcceleratorEntry
*accel
)
292 wxString text
= m_text
.BeforeFirst(wxT('\t'));
296 text
+= accel
->ToString();
302 #endif // wxUSE_ACCEL
304 void wxMenuItemBase::SetItemLabel(const wxString
& str
)
308 if ( m_text
.empty() && !IsSeparator() )
310 wxASSERT_MSG( wxIsStockID(GetId()),
311 wxT("A non-stock menu item with an empty label?") );
312 m_text
= wxGetStockLabel(GetId(), wxSTOCK_WITH_ACCELERATOR
|
313 wxSTOCK_WITH_MNEMONIC
);
317 void wxMenuItemBase::SetHelp(const wxString
& str
)
321 if ( m_help
.empty() && !IsSeparator() && wxIsStockID(GetId()) )
323 // get a stock help string
324 m_help
= wxGetStockHelpString(GetId());
329 wxString
wxMenuItemBase::GetLabelText(const wxString
& text
)
331 return wxStripMenuCodes(text
);
335 #if WXWIN_COMPATIBILITY_2_8
336 wxString
wxMenuItemBase::GetLabelFromText(const wxString
& text
)
338 return GetLabelText(text
);
342 bool wxMenuBase::ms_locked
= true;
344 // ----------------------------------------------------------------------------
345 // wxMenu ctor and dtor
346 // ----------------------------------------------------------------------------
348 void wxMenuBase::Init(long style
)
353 m_invokingWindow
= NULL
;
356 m_eventHandler
= this;
359 wxMenuBase::~wxMenuBase()
361 WX_CLEAR_LIST(wxMenuItemList
, m_items
);
364 // ----------------------------------------------------------------------------
365 // wxMenu item adding/removing
366 // ----------------------------------------------------------------------------
368 void wxMenuBase::AddSubMenu(wxMenu
*submenu
)
370 wxCHECK_RET( submenu
, wxT("can't add a NULL submenu") );
372 submenu
->SetParent((wxMenu
*)this);
375 wxMenuItem
* wxMenuBase::DoAppend(wxMenuItem
*item
)
377 wxCHECK_MSG( item
, NULL
, wxT("invalid item in wxMenu::Append()") );
379 m_items
.Append(item
);
380 item
->SetMenu((wxMenu
*)this);
381 if ( item
->IsSubMenu() )
383 AddSubMenu(item
->GetSubMenu());
389 wxMenuItem
* wxMenuBase::Insert(size_t pos
, wxMenuItem
*item
)
391 wxCHECK_MSG( item
, NULL
, wxT("invalid item in wxMenu::Insert") );
393 if ( pos
== GetMenuItemCount() )
395 return DoAppend(item
);
399 wxCHECK_MSG( pos
< GetMenuItemCount(), NULL
,
400 wxT("invalid index in wxMenu::Insert") );
402 return DoInsert(pos
, item
);
406 wxMenuItem
* wxMenuBase::DoInsert(size_t pos
, wxMenuItem
*item
)
408 wxCHECK_MSG( item
, NULL
, wxT("invalid item in wxMenu::Insert()") );
410 wxMenuItemList::compatibility_iterator node
= m_items
.Item(pos
);
411 wxCHECK_MSG( node
, NULL
, wxT("invalid index in wxMenu::Insert()") );
413 m_items
.Insert(node
, item
);
414 item
->SetMenu((wxMenu
*)this);
415 if ( item
->IsSubMenu() )
417 AddSubMenu(item
->GetSubMenu());
423 wxMenuItem
*wxMenuBase::Remove(wxMenuItem
*item
)
425 wxCHECK_MSG( item
, NULL
, wxT("invalid item in wxMenu::Remove") );
427 return DoRemove(item
);
430 wxMenuItem
*wxMenuBase::DoRemove(wxMenuItem
*item
)
432 wxMenuItemList::compatibility_iterator node
= m_items
.Find(item
);
434 // if we get here, the item is valid or one of Remove() functions is broken
435 wxCHECK_MSG( node
, NULL
, wxT("bug in wxMenu::Remove logic") );
437 // we detach the item, but we do delete the list node (i.e. don't call
438 // DetachNode() here!)
441 // item isn't attached to anything any more
443 wxMenu
*submenu
= item
->GetSubMenu();
446 submenu
->SetParent(NULL
);
447 if ( submenu
->IsAttached() )
454 bool wxMenuBase::Delete(wxMenuItem
*item
)
456 wxCHECK_MSG( item
, false, wxT("invalid item in wxMenu::Delete") );
458 return DoDelete(item
);
461 bool wxMenuBase::DoDelete(wxMenuItem
*item
)
463 wxMenuItem
*item2
= DoRemove(item
);
464 wxCHECK_MSG( item2
, false, wxT("failed to delete menu item") );
466 // don't delete the submenu
467 item2
->SetSubMenu(NULL
);
474 bool wxMenuBase::Destroy(wxMenuItem
*item
)
476 wxCHECK_MSG( item
, false, wxT("invalid item in wxMenu::Destroy") );
478 return DoDestroy(item
);
481 bool wxMenuBase::DoDestroy(wxMenuItem
*item
)
483 wxMenuItem
*item2
= DoRemove(item
);
484 wxCHECK_MSG( item2
, false, wxT("failed to delete menu item") );
491 // ----------------------------------------------------------------------------
492 // wxMenu searching for items
493 // ----------------------------------------------------------------------------
495 // Finds the item id matching the given string, wxNOT_FOUND if not found.
496 int wxMenuBase::FindItem(const wxString
& text
) const
498 wxString label
= wxMenuItem::GetLabelText(text
);
499 for ( wxMenuItemList::compatibility_iterator node
= m_items
.GetFirst();
501 node
= node
->GetNext() )
503 wxMenuItem
*item
= node
->GetData();
504 if ( item
->IsSubMenu() )
506 int rc
= item
->GetSubMenu()->FindItem(label
);
507 if ( rc
!= wxNOT_FOUND
)
511 // we execute this code for submenus as well to alllow finding them by
512 // name just like the ordinary items
513 if ( !item
->IsSeparator() )
515 if ( item
->GetItemLabelText() == label
)
516 return item
->GetId();
523 // recursive search for item by id
524 wxMenuItem
*wxMenuBase::FindItem(int itemId
, wxMenu
**itemMenu
) const
529 wxMenuItem
*item
= NULL
;
530 for ( wxMenuItemList::compatibility_iterator node
= m_items
.GetFirst();
532 node
= node
->GetNext() )
534 item
= node
->GetData();
536 if ( item
->GetId() == itemId
)
539 *itemMenu
= (wxMenu
*)this;
541 else if ( item
->IsSubMenu() )
543 item
= item
->GetSubMenu()->FindItem(itemId
, itemMenu
);
547 // don't exit the loop
555 // non recursive search
556 wxMenuItem
*wxMenuBase::FindChildItem(int itemid
, size_t *ppos
) const
558 wxMenuItem
*item
= NULL
;
559 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
562 for ( pos
= 0; node
; pos
++ )
564 if ( node
->GetData()->GetId() == itemid
)
566 item
= node
->GetData();
571 node
= node
->GetNext();
576 *ppos
= item
? pos
: (size_t)wxNOT_FOUND
;
583 wxMenuItem
* wxMenuBase::FindItemByPosition(size_t position
) const
585 wxCHECK_MSG( position
< m_items
.GetCount(), NULL
,
586 wxT("wxMenu::FindItemByPosition(): invalid menu index") );
588 return m_items
.Item( position
)->GetData();
591 // ----------------------------------------------------------------------------
592 // wxMenu helpers used by derived classes
593 // ----------------------------------------------------------------------------
595 // Update a menu and all submenus recursively. source is the object that has
596 // the update event handlers defined for it. If NULL, the menu or associated
597 // window will be used.
598 void wxMenuBase::UpdateUI(wxEvtHandler
* source
)
600 wxWindow
* const win
= GetWindow();
602 if ( !source
&& win
)
603 source
= win
->GetEventHandler();
605 source
= GetEventHandler();
609 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
612 wxMenuItem
* item
= node
->GetData();
613 if ( !item
->IsSeparator() )
615 wxWindowID itemid
= item
->GetId();
616 wxUpdateUIEvent
event(itemid
);
617 event
.SetEventObject( this );
619 if ( source
->ProcessEvent(event
) )
621 // if anything changed, update the changed attribute
622 if (event
.GetSetText())
623 SetLabel(itemid
, event
.GetText());
624 if (event
.GetSetChecked())
625 Check(itemid
, event
.GetChecked());
626 if (event
.GetSetEnabled())
627 Enable(itemid
, event
.GetEnabled());
630 // recurse to the submenus
631 if ( item
->GetSubMenu() )
632 item
->GetSubMenu()->UpdateUI(source
);
634 //else: item is a separator (which doesn't process update UI events)
636 node
= node
->GetNext();
640 bool wxMenuBase::SendEvent(int itemid
, int checked
)
642 wxCommandEvent
event(wxEVT_MENU
, itemid
);
643 event
.SetEventObject(this);
644 event
.SetInt(checked
);
646 wxWindow
* const win
= GetWindow();
647 wxMenuBar
* const mb
= GetMenuBar();
649 // Try the menu's event handler first
650 wxEvtHandler
*handler
= GetEventHandler();
653 // Indicate to the event processing code that we're going to pass this
654 // event to another handler if it's not processed here to prevent it
655 // from passing the event to wxTheApp: this will be done below if we do
656 // have the associated window.
658 event
.SetWillBeProcessedAgain();
660 if ( handler
->SafelyProcessEvent(event
) )
664 // If this menu is part of the menu bar, process the event there: this will
665 // also propagate it upwards to the window containing the menu bar.
667 return mb
->HandleWindowEvent(event
);
669 // Try the window the menu was popped up from.
671 return win
->HandleWindowEvent(event
);
677 // ----------------------------------------------------------------------------
678 // wxMenu attaching/detaching to/from menu bar
679 // ----------------------------------------------------------------------------
681 wxMenuBar
* wxMenuBase::GetMenuBar() const
684 return GetParent()->GetMenuBar();
688 void wxMenuBase::Attach(wxMenuBarBase
*menubar
)
690 // use Detach() instead!
691 wxASSERT_MSG( menubar
, wxT("menu can't be attached to NULL menubar") );
693 // use IsAttached() to prevent this from happening
694 wxASSERT_MSG( !m_menuBar
, wxT("attaching menu twice?") );
696 m_menuBar
= (wxMenuBar
*)menubar
;
699 void wxMenuBase::Detach()
701 // use IsAttached() to prevent this from happening
702 wxASSERT_MSG( m_menuBar
, wxT("detaching unattached menu?") );
707 // ----------------------------------------------------------------------------
708 // wxMenu invoking window handling
709 // ----------------------------------------------------------------------------
711 void wxMenuBase::SetInvokingWindow(wxWindow
*win
)
713 wxASSERT_MSG( !GetParent(),
714 "should only be called for top level popup menus" );
715 wxASSERT_MSG( !IsAttached(),
716 "menus attached to menu bar can't have invoking window" );
718 m_invokingWindow
= win
;
721 wxWindow
*wxMenuBase::GetWindow() const
723 // only the top level menus have non-NULL invoking window or a pointer to
724 // the menu bar so recurse upwards until we find it
725 const wxMenuBase
*menu
= this;
726 while ( menu
->GetParent() )
728 menu
= menu
->GetParent();
731 return menu
->GetMenuBar() ? menu
->GetMenuBar()->GetFrame()
732 : menu
->GetInvokingWindow();
735 // ----------------------------------------------------------------------------
736 // wxMenu functions forwarded to wxMenuItem
737 // ----------------------------------------------------------------------------
739 void wxMenuBase::Enable( int itemid
, bool enable
)
741 wxMenuItem
*item
= FindItem(itemid
);
743 wxCHECK_RET( item
, wxT("wxMenu::Enable: no such item") );
745 item
->Enable(enable
);
748 bool wxMenuBase::IsEnabled( int itemid
) const
750 wxMenuItem
*item
= FindItem(itemid
);
752 wxCHECK_MSG( item
, false, wxT("wxMenu::IsEnabled: no such item") );
754 return item
->IsEnabled();
757 void wxMenuBase::Check( int itemid
, bool enable
)
759 wxMenuItem
*item
= FindItem(itemid
);
761 wxCHECK_RET( item
, wxT("wxMenu::Check: no such item") );
766 bool wxMenuBase::IsChecked( int itemid
) const
768 wxMenuItem
*item
= FindItem(itemid
);
770 wxCHECK_MSG( item
, false, wxT("wxMenu::IsChecked: no such item") );
772 return item
->IsChecked();
775 void wxMenuBase::SetLabel( int itemid
, const wxString
&label
)
777 wxMenuItem
*item
= FindItem(itemid
);
779 wxCHECK_RET( item
, wxT("wxMenu::SetLabel: no such item") );
781 item
->SetItemLabel(label
);
784 wxString
wxMenuBase::GetLabel( int itemid
) const
786 wxMenuItem
*item
= FindItem(itemid
);
788 wxCHECK_MSG( item
, wxEmptyString
, wxT("wxMenu::GetLabel: no such item") );
790 return item
->GetItemLabel();
793 void wxMenuBase::SetHelpString( int itemid
, const wxString
& helpString
)
795 wxMenuItem
*item
= FindItem(itemid
);
797 wxCHECK_RET( item
, wxT("wxMenu::SetHelpString: no such item") );
799 item
->SetHelp( helpString
);
802 wxString
wxMenuBase::GetHelpString( int itemid
) const
804 wxMenuItem
*item
= FindItem(itemid
);
806 wxCHECK_MSG( item
, wxEmptyString
, wxT("wxMenu::GetHelpString: no such item") );
808 return item
->GetHelp();
811 // ----------------------------------------------------------------------------
812 // wxMenuBarBase ctor and dtor
813 // ----------------------------------------------------------------------------
815 wxMenuBarBase::wxMenuBarBase()
818 m_menuBarFrame
= NULL
;
821 wxMenuBarBase::~wxMenuBarBase()
823 WX_CLEAR_LIST(wxMenuList
, m_menus
);
826 // ----------------------------------------------------------------------------
827 // wxMenuBar item access: the base class versions manage m_menus list, the
828 // derived class should reflect the changes in the real menubar
829 // ----------------------------------------------------------------------------
831 wxMenu
*wxMenuBarBase::GetMenu(size_t pos
) const
833 wxMenuList::compatibility_iterator node
= m_menus
.Item(pos
);
834 wxCHECK_MSG( node
, NULL
, wxT("bad index in wxMenuBar::GetMenu()") );
836 return node
->GetData();
839 bool wxMenuBarBase::Append(wxMenu
*menu
, const wxString
& title
)
841 wxCHECK_MSG( menu
, false, wxT("can't append NULL menu") );
842 wxCHECK_MSG( !title
.empty(), false, wxT("can't append menu with empty title") );
844 m_menus
.Append(menu
);
850 bool wxMenuBarBase::Insert(size_t pos
, wxMenu
*menu
,
851 const wxString
& title
)
853 if ( pos
== m_menus
.GetCount() )
855 return wxMenuBarBase::Append(menu
, title
);
857 else // not at the end
859 wxCHECK_MSG( menu
, false, wxT("can't insert NULL menu") );
861 wxMenuList::compatibility_iterator node
= m_menus
.Item(pos
);
862 wxCHECK_MSG( node
, false, wxT("bad index in wxMenuBar::Insert()") );
864 m_menus
.Insert(node
, menu
);
871 wxMenu
*wxMenuBarBase::Replace(size_t pos
, wxMenu
*menu
,
872 const wxString
& WXUNUSED(title
))
874 wxCHECK_MSG( menu
, NULL
, wxT("can't insert NULL menu") );
876 wxMenuList::compatibility_iterator node
= m_menus
.Item(pos
);
877 wxCHECK_MSG( node
, NULL
, wxT("bad index in wxMenuBar::Replace()") );
879 wxMenu
*menuOld
= node
->GetData();
888 wxMenu
*wxMenuBarBase::Remove(size_t pos
)
890 wxMenuList::compatibility_iterator node
= m_menus
.Item(pos
);
891 wxCHECK_MSG( node
, NULL
, wxT("bad index in wxMenuBar::Remove()") );
893 wxMenu
*menu
= node
->GetData();
900 int wxMenuBarBase::FindMenu(const wxString
& title
) const
902 wxString label
= wxMenuItem::GetLabelText(title
);
904 size_t count
= GetMenuCount();
905 for ( size_t i
= 0; i
< count
; i
++ )
907 wxString title2
= GetMenuLabel(i
);
908 if ( (title2
== title
) ||
909 (wxMenuItem::GetLabelText(title2
) == label
) )
920 // ----------------------------------------------------------------------------
921 // wxMenuBar attaching/detaching to/from the frame
922 // ----------------------------------------------------------------------------
924 void wxMenuBarBase::Attach(wxFrame
*frame
)
926 wxASSERT_MSG( !IsAttached(), wxT("menubar already attached!") );
929 m_menuBarFrame
= frame
;
932 void wxMenuBarBase::Detach()
934 wxASSERT_MSG( IsAttached(), wxT("detaching unattached menubar") );
936 m_menuBarFrame
= NULL
;
940 // ----------------------------------------------------------------------------
941 // wxMenuBar searching for items
942 // ----------------------------------------------------------------------------
944 wxMenuItem
*wxMenuBarBase::FindItem(int itemid
, wxMenu
**menu
) const
949 wxMenuItem
*item
= NULL
;
950 size_t count
= GetMenuCount(), i
;
951 wxMenuList::const_iterator it
;
952 for ( i
= 0, it
= m_menus
.begin(); !item
&& (i
< count
); i
++, it
++ )
954 item
= (*it
)->FindItem(itemid
, menu
);
960 int wxMenuBarBase::FindMenuItem(const wxString
& menu
, const wxString
& item
) const
962 wxString label
= wxMenuItem::GetLabelText(menu
);
965 wxMenuList::compatibility_iterator node
;
966 for ( node
= m_menus
.GetFirst(); node
; node
= node
->GetNext(), i
++ )
968 if ( label
== wxMenuItem::GetLabelText(GetMenuLabel(i
)) )
969 return node
->GetData()->FindItem(item
);
975 // ---------------------------------------------------------------------------
976 // wxMenuBar functions forwarded to wxMenuItem
977 // ---------------------------------------------------------------------------
979 void wxMenuBarBase::Enable(int itemid
, bool enable
)
981 wxMenuItem
*item
= FindItem(itemid
);
983 wxCHECK_RET( item
, wxT("attempt to enable an item which doesn't exist") );
985 item
->Enable(enable
);
988 void wxMenuBarBase::Check(int itemid
, bool check
)
990 wxMenuItem
*item
= FindItem(itemid
);
992 wxCHECK_RET( item
, wxT("attempt to check an item which doesn't exist") );
993 wxCHECK_RET( item
->IsCheckable(), wxT("attempt to check an uncheckable item") );
998 bool wxMenuBarBase::IsChecked(int itemid
) const
1000 wxMenuItem
*item
= FindItem(itemid
);
1002 wxCHECK_MSG( item
, false, wxT("wxMenuBar::IsChecked(): no such item") );
1004 return item
->IsChecked();
1007 bool wxMenuBarBase::IsEnabled(int itemid
) const
1009 wxMenuItem
*item
= FindItem(itemid
);
1011 wxCHECK_MSG( item
, false, wxT("wxMenuBar::IsEnabled(): no such item") );
1013 return item
->IsEnabled();
1016 void wxMenuBarBase::SetLabel(int itemid
, const wxString
& label
)
1018 wxMenuItem
*item
= FindItem(itemid
);
1020 wxCHECK_RET( item
, wxT("wxMenuBar::SetLabel(): no such item") );
1022 item
->SetItemLabel(label
);
1025 wxString
wxMenuBarBase::GetLabel(int itemid
) const
1027 wxMenuItem
*item
= FindItem(itemid
);
1029 wxCHECK_MSG( item
, wxEmptyString
,
1030 wxT("wxMenuBar::GetLabel(): no such item") );
1032 return item
->GetItemLabel();
1035 void wxMenuBarBase::SetHelpString(int itemid
, const wxString
& helpString
)
1037 wxMenuItem
*item
= FindItem(itemid
);
1039 wxCHECK_RET( item
, wxT("wxMenuBar::SetHelpString(): no such item") );
1041 item
->SetHelp(helpString
);
1044 wxString
wxMenuBarBase::GetHelpString(int itemid
) const
1046 wxMenuItem
*item
= FindItem(itemid
);
1048 wxCHECK_MSG( item
, wxEmptyString
,
1049 wxT("wxMenuBar::GetHelpString(): no such item") );
1051 return item
->GetHelp();
1054 void wxMenuBarBase::UpdateMenus()
1057 int nCount
= GetMenuCount();
1058 for (int n
= 0; n
< nCount
; n
++)
1060 menu
= GetMenu( n
);
1062 menu
->UpdateUI( NULL
);
1066 #if WXWIN_COMPATIBILITY_2_8
1067 // get or change the label of the menu at given position
1068 void wxMenuBarBase::SetLabelTop(size_t pos
, const wxString
& label
)
1070 SetMenuLabel(pos
, label
);
1073 wxString
wxMenuBarBase::GetLabelTop(size_t pos
) const
1075 return GetMenuLabelText(pos
);
1079 #endif // wxUSE_MENUS