1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/osx/menu_osx.cpp
3 // Purpose: wxMenu, wxMenuBar, wxMenuItem
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
13 // headers & declarations
14 // ============================================================================
19 #include "wx/wxprec.h"
30 #include "wx/dialog.h"
31 #include "wx/menuitem.h"
34 #include "wx/osx/private.h"
36 // other standard headers
37 // ----------------------
40 IMPLEMENT_ABSTRACT_CLASS( wxMenuImpl
, wxObject
)
42 wxMenuImpl::~wxMenuImpl()
46 // the (popup) menu title has this special id
47 static const int idMenuTitle
= -3;
49 // ============================================================================
51 // ============================================================================
55 // Construct a menu with optional title (then use append)
60 m_startRadioGroup
= -1;
61 m_allowRearrange
= true;
62 m_noEventsMode
= false;
64 m_peer
= wxMenuImpl::Create( this, wxStripMenuCodes(m_title
) );
67 // if we have a title, insert it in the beginning of the menu
68 if ( !m_title
.empty() )
70 Append(idMenuTitle
, m_title
) ;
80 WXHMENU
wxMenu::GetHMenu() const
83 return m_peer
->GetHMenu();
89 // not available on the mac platform
92 void wxMenu::Attach(wxMenuBarBase
*menubar
)
94 wxMenuBase::Attach(menubar
);
99 void wxMenu::SetAllowRearrange( bool allow
)
101 m_allowRearrange
= allow
;
104 void wxMenu::SetNoEventsMode( bool noEvents
)
106 m_noEventsMode
= noEvents
;
109 // function appends a new item or submenu to the menu
110 // append a new item or submenu to the menu
111 bool wxMenu::DoInsertOrAppend(wxMenuItem
*pItem
, size_t pos
)
113 wxASSERT_MSG( pItem
!= NULL
, wxT("can't append NULL item to the menu") );
114 m_peer
->InsertOrAppend( pItem
, pos
);
116 if ( pItem
->IsSeparator() )
118 // nothing to do here
122 wxMenu
*pSubMenu
= pItem
->GetSubMenu() ;
123 if ( pSubMenu
!= NULL
)
125 wxASSERT_MSG( pSubMenu
->GetHMenu() != NULL
, wxT("invalid submenu added"));
126 pSubMenu
->m_menuParent
= this ;
128 pSubMenu
->DoRearrange();
132 if ( pItem
->GetId() == idMenuTitle
)
133 pItem
->GetMenu()->Enable( idMenuTitle
, false );
137 // if we're already attached to the menubar, we must update it
138 if ( IsAttached() && GetMenuBar()->IsAttached() )
139 GetMenuBar()->Refresh();
144 void wxMenu::EndRadioGroup()
146 // we're not inside a radio group any longer
147 m_startRadioGroup
= -1;
150 wxMenuItem
* wxMenu::DoAppend(wxMenuItem
*item
)
152 wxCHECK_MSG( item
, NULL
, wxT("NULL item in wxMenu::DoAppend") );
156 if ( item
->GetKind() == wxITEM_RADIO
)
158 int count
= GetMenuItemCount();
160 if ( m_startRadioGroup
== -1 )
162 // start a new radio group
163 m_startRadioGroup
= count
;
165 // for now it has just one element
166 item
->SetAsRadioGroupStart();
167 item
->SetRadioGroupEnd(m_startRadioGroup
);
169 // ensure that we have a checked item in the radio group
172 else // extend the current radio group
174 // we need to update its end item
175 item
->SetRadioGroupStart(m_startRadioGroup
);
176 wxMenuItemList::compatibility_iterator node
= GetMenuItems().Item(m_startRadioGroup
);
180 node
->GetData()->SetRadioGroupEnd(count
);
184 wxFAIL_MSG( wxT("where is the radio group start item?") );
188 else // not a radio item
193 if ( !wxMenuBase::DoAppend(item
) || !DoInsertOrAppend(item
) )
197 // check the item initially
203 wxMenuItem
* wxMenu::DoInsert(size_t pos
, wxMenuItem
*item
)
205 if (wxMenuBase::DoInsert(pos
, item
) && DoInsertOrAppend(item
, pos
))
211 wxMenuItem
*wxMenu::DoRemove(wxMenuItem
*item
)
214 // we need to find the items position in the child list
216 wxMenuItemList::compatibility_iterator node = GetMenuItems().GetFirst();
218 for ( pos = 0; node; pos++ )
220 if ( node->GetData() == item )
223 node = node->GetNext();
226 // DoRemove() (unlike Remove) can only be called for existing item!
227 wxCHECK_MSG( node, NULL, wxT("bug in wxMenu::Remove logic") );
229 wxOSXMenuRemoveItem(m_hMenu , pos );
231 m_peer
->Remove( item
);
232 // and from internal data structures
233 return wxMenuBase::DoRemove(item
);
236 void wxMenu::SetTitle(const wxString
& label
)
239 m_peer
->SetTitle( wxStripMenuCodes( label
) );
242 bool wxMenu::ProcessCommand(wxCommandEvent
& event
)
244 bool processed
= false;
246 // Try the menu's event handler
247 if ( /* !processed && */ GetEventHandler())
248 processed
= GetEventHandler()->SafelyProcessEvent(event
);
250 // Try the window the menu was popped up from
251 // (and up through the hierarchy)
252 wxWindow
*win
= GetWindow();
253 if ( !processed
&& win
)
254 processed
= win
->HandleWindowEvent(event
);
259 // ---------------------------------------------------------------------------
261 // ---------------------------------------------------------------------------
263 // MacOS needs to know about submenus somewhere within this menu
264 // before it can be displayed, also hide special menu items
265 // like preferences that are handled by the OS
266 void wxMenu::DoRearrange()
268 if ( !AllowRearrange() )
271 wxMenuItem
* previousItem
= NULL
;
273 wxMenuItemList::compatibility_iterator node
;
276 for (pos
= 0, node
= GetMenuItems().GetFirst(); node
; node
= node
->GetNext(), pos
++)
278 item
= (wxMenuItem
*)node
->GetData();
279 wxMenu
* subMenu
= item
->GetSubMenu() ;
286 // what we do here is to hide the special items which are
287 // shown in the application menu anyhow -- it doesn't make
288 // sense to show them in their normal place as well
289 if ( item
->GetId() == wxApp::s_macAboutMenuItemId
||
290 item
->GetId() == wxApp::s_macPreferencesMenuItemId
||
291 item
->GetId() == wxApp::s_macExitMenuItemId
)
294 item
->GetPeer()->Hide( true );
296 // also check for a separator which was used just to
297 // separate this item from the others, so don't leave
298 // separator at the menu start or end nor 2 consecutive
300 wxMenuItemList::compatibility_iterator nextNode
= node
->GetNext();
301 wxMenuItem
*next
= nextNode
? nextNode
->GetData() : NULL
;
303 wxMenuItem
*sepToHide
= 0;
304 if ( !previousItem
&& next
&& next
->IsSeparator() )
306 // next (i.e. second as we must be first) item is
307 // the separator to hide
308 wxASSERT_MSG( pos
== 0, wxT("should be the menu start") );
311 else if ( GetMenuItems().GetCount() == pos
+ 1 &&
312 previousItem
!= NULL
&&
313 previousItem
->IsSeparator() )
315 // prev item is a trailing separator we want to hide
316 sepToHide
= previousItem
;
318 else if ( previousItem
&& previousItem
->IsSeparator() &&
319 next
&& next
->IsSeparator() )
321 // two consecutive separators, this is one too many
327 // hide the separator as well
328 sepToHide
->GetPeer()->Hide( true );
333 previousItem
= item
;
338 bool wxMenu::HandleCommandUpdateStatus( wxMenuItem
* item
, wxWindow
* senderWindow
)
340 int id
= item
? item
->GetId() : 0;
341 wxUpdateUIEvent
event(id
);
342 event
.SetEventObject( this );
344 bool processed
= false;
346 // Try the menu's event handler
348 wxEvtHandler
*handler
= GetEventHandler();
350 processed
= handler
->ProcessEvent(event
);
353 // Try the window the menu was popped up from
354 // (and up through the hierarchy)
357 wxWindow
*win
= GetWindow();
359 processed
= win
->HandleWindowEvent(event
);
362 if ( !processed
&& senderWindow
!= NULL
)
364 processed
= senderWindow
->HandleWindowEvent(event
);
369 // if anything changed, update the changed attribute
370 if (event
.GetSetText())
371 SetLabel(id
, event
.GetText());
372 if (event
.GetSetChecked())
373 Check(id
, event
.GetChecked());
374 if (event
.GetSetEnabled())
375 Enable(id
, event
.GetEnabled());
380 // these two items are also managed by the Carbon Menu Manager, therefore we must
381 // always reset them ourselves
384 if ( id
== wxApp::s_macExitMenuItemId
)
386 cmd
= kHICommandQuit
;
388 else if (id
== wxApp::s_macPreferencesMenuItemId
)
390 cmd
= kHICommandPreferences
;
395 if ( !item
->IsEnabled() || wxDialog::OSXHasModalDialogsOpen() )
396 DisableMenuCommand( NULL
, cmd
) ;
398 EnableMenuCommand( NULL
, cmd
) ;
407 bool wxMenu::HandleCommandProcess( wxMenuItem
* item
, wxWindow
* senderWindow
)
409 int id
= item
? item
->GetId() : 0;
410 bool processed
= false;
411 if (item
->IsCheckable())
412 item
->Check( !item
->IsChecked() ) ;
414 if ( SendEvent( id
, item
->IsCheckable() ? item
->IsChecked() : -1 ) )
418 if ( senderWindow
!= NULL
)
420 wxCommandEvent
event(wxEVT_COMMAND_MENU_SELECTED
, id
);
421 event
.SetEventObject(senderWindow
);
422 event
.SetInt(item
->IsCheckable() ? item
->IsChecked() : -1);
424 if ( senderWindow
->HandleWindowEvent(event
) )
429 if(!processed
&& item
)
431 processed
= item
->GetPeer()->DoDefault();
437 void wxMenu::HandleMenuItemHighlighted( wxMenuItem
* item
)
439 int id
= item
? item
->GetId() : 0;
440 wxMenuEvent
wxevent(wxEVT_MENU_HIGHLIGHT
, id
, this);
441 DoHandleMenuEvent( wxevent
);
444 void wxMenu::HandleMenuOpened()
446 wxMenuEvent
wxevent(wxEVT_MENU_OPEN
, 0, this);
447 DoHandleMenuEvent( wxevent
);
450 void wxMenu::HandleMenuClosed()
452 wxMenuEvent
wxevent(wxEVT_MENU_CLOSE
, 0, this);
453 DoHandleMenuEvent( wxevent
);
456 bool wxMenu::DoHandleMenuEvent(wxEvent
& wxevent
)
458 wxevent
.SetEventObject(this);
459 wxEvtHandler
* handler
= GetEventHandler();
460 if (handler
&& handler
->ProcessEvent(wxevent
))
466 wxWindow
*win
= GetWindow();
469 if ( win
->HandleWindowEvent(wxevent
) )
480 Mac Implementation note :
482 The Mac has only one global menubar, so we attempt to install the currently
483 active menubar from a frame, we currently don't take into account mdi-frames
484 which would ask for menu-merging
486 Secondly there is no mac api for changing a menubar that is not the current
487 menubar, so we have to wait for preparing the actual menubar until the
488 wxMenubar is to be used
490 We can in subsequent versions use MacInstallMenuBar to provide some sort of
491 auto-merge for MDI in case this will be necessary
495 wxMenuBar
* wxMenuBar::s_macInstalledMenuBar
= NULL
;
496 wxMenuBar
* wxMenuBar::s_macCommonMenuBar
= NULL
;
497 bool wxMenuBar::s_macAutoWindowMenu
= true ;
498 WXHMENU
wxMenuBar::s_macWindowMenuHandle
= NULL
;
500 void wxMenuBar::Init()
502 m_eventHandler
= this;
503 m_menuBarFrame
= NULL
;
504 m_rootMenu
= new wxMenu();
505 m_rootMenu
->Attach(this);
507 m_appleMenu
= new wxMenu();
508 m_appleMenu
->SetAllowRearrange(false);
510 // Create standard items unless the application explicitly disabled this by
511 // setting the corresponding ids to wxID_NONE: although this is not
512 // recommended, sometimes these items really don't make sense.
513 if ( wxApp::s_macAboutMenuItemId
!= wxID_NONE
)
515 wxString
aboutLabel(_("About"));
517 aboutLabel
<< ' ' << wxTheApp
->GetAppDisplayName();
520 m_appleMenu
->Append( wxApp::s_macAboutMenuItemId
, aboutLabel
);
521 m_appleMenu
->AppendSeparator();
524 #if !wxOSX_USE_CARBON
525 if ( wxApp::s_macPreferencesMenuItemId
!= wxID_NONE
)
527 m_appleMenu
->Append( wxApp::s_macPreferencesMenuItemId
,
528 _("Preferences...") + "\tCtrl+," );
529 m_appleMenu
->AppendSeparator();
532 // standard menu items, handled in wxMenu::HandleCommandProcess(), see above:
533 wxString
hideLabel(_("Hide"));
535 hideLabel
<< ' ' << wxTheApp
->GetAppDisplayName();
536 hideLabel
<< "\tCtrl+H";
537 m_appleMenu
->Append( wxID_OSX_HIDE
, hideLabel
);
538 m_appleMenu
->Append( wxID_OSX_HIDEOTHERS
, _("Hide Others")+"\tAlt+Ctrl+H" );
539 m_appleMenu
->Append( wxID_OSX_SHOWALL
, _("Show All") );
540 m_appleMenu
->AppendSeparator();
542 // Do always add "Quit" item unconditionally however, it can't be disabled.
543 wxString
quitLabel(_("Quit"));
545 quitLabel
<< ' ' << wxTheApp
->GetAppDisplayName();
546 quitLabel
<< "\tCtrl+Q";
547 m_appleMenu
->Append( wxApp::s_macExitMenuItemId
, quitLabel
);
548 #endif // !wxOSX_USE_CARBON
550 m_rootMenu
->AppendSubMenu(m_appleMenu
, "\x14") ;
553 wxMenuBar::wxMenuBar()
558 wxMenuBar::wxMenuBar( long WXUNUSED(style
) )
563 wxMenuBar::wxMenuBar(size_t count
, wxMenu
*menus
[], const wxString titles
[], long WXUNUSED(style
))
567 for ( size_t i
= 0; i
< count
; i
++ )
569 m_menus
.Append(menus
[i
]);
571 menus
[i
]->Attach(this);
572 Append( menus
[i
], titles
[i
] );
576 wxMenuBar::~wxMenuBar()
578 if (s_macCommonMenuBar
== this)
579 s_macCommonMenuBar
= NULL
;
581 if (s_macInstalledMenuBar
== this)
583 s_macInstalledMenuBar
= NULL
;
587 void wxMenuBar::Refresh(bool WXUNUSED(eraseBackground
), const wxRect
*WXUNUSED(rect
))
589 wxCHECK_RET( IsAttached(), wxT("can't refresh unatteched menubar") );
592 void wxMenuBar::MacInstallMenuBar()
594 if ( s_macInstalledMenuBar
== this )
597 m_rootMenu
->GetPeer()->MakeRoot();
601 MenuBarHandle menubar
= NULL
;
603 menubar
= NewHandleClear( 6 /* sizeof( MenuBarHeader ) */ ) ;
605 ::SetMenuBar( menubar
) ;
606 DisposeMenuBar( menubar
) ;
607 MenuHandle appleMenu
= NULL
;
609 verify_noerr( CreateNewMenu( kwxMacAppleMenuId
, 0 , &appleMenu
) ) ;
610 verify_noerr( SetMenuTitleWithCFString( appleMenu
, CFSTR( "\x14" ) ) );
612 // Add About/Preferences separator only on OS X
613 // KH/RN: Separator is always present on 10.3 but not on 10.2
614 // However, the change from 10.2 to 10.3 suggests it is preferred
615 InsertMenuItemTextWithCFString( appleMenu
,
616 CFSTR(""), 0, kMenuItemAttrSeparator
, 0);
617 InsertMenuItemTextWithCFString( appleMenu
,
618 CFSTR("About..."), 0, 0, 0);
619 MacInsertMenu( appleMenu
, 0 ) ;
621 // if we have a mac help menu, clean it up before adding new items
622 MenuHandle helpMenuHandle
;
623 MenuItemIndex firstUserHelpMenuItem
;
625 if ( UMAGetHelpMenuDontCreate( &helpMenuHandle
, &firstUserHelpMenuItem
) == noErr
)
627 for ( int i
= CountMenuItems( helpMenuHandle
) ; i
>= firstUserHelpMenuItem
; --i
)
628 DeleteMenuItem( helpMenuHandle
, i
) ;
632 helpMenuHandle
= NULL
;
635 if ( wxApp::s_macPreferencesMenuItemId
)
637 wxMenuItem
*item
= FindItem( wxApp::s_macPreferencesMenuItemId
, NULL
) ;
638 if ( item
== NULL
|| !(item
->IsEnabled()) )
639 DisableMenuCommand( NULL
, kHICommandPreferences
) ;
641 EnableMenuCommand( NULL
, kHICommandPreferences
) ;
644 // Unlike preferences which may or may not exist, the Quit item should be always
645 // enabled unless it is added by the application and then disabled, otherwise
646 // a program would be required to add an item with wxID_EXIT in order to get the
647 // Quit menu item to be enabled, which seems a bit burdensome.
648 if ( wxApp::s_macExitMenuItemId
)
650 wxMenuItem
*item
= FindItem( wxApp::s_macExitMenuItemId
, NULL
) ;
651 if ( item
!= NULL
&& !(item
->IsEnabled()) )
652 DisableMenuCommand( NULL
, kHICommandQuit
) ;
654 EnableMenuCommand( NULL
, kHICommandQuit
) ;
657 wxString strippedHelpMenuTitle
= wxStripMenuCodes( wxApp::s_macHelpMenuTitleName
) ;
658 wxString strippedTranslatedHelpMenuTitle
= wxStripMenuCodes( wxString( _("&Help") ) ) ;
659 wxMenuList::compatibility_iterator menuIter
= m_menus
.GetFirst();
660 for (size_t i
= 0; i
< m_menus
.GetCount(); i
++, menuIter
= menuIter
->GetNext())
662 wxMenuItemList::compatibility_iterator node
;
664 wxMenu
* menu
= menuIter
->GetData() , *subMenu
= NULL
;
665 wxString strippedMenuTitle
= wxStripMenuCodes(m_titles
[i
]);
667 if ( strippedMenuTitle
== wxT("?") || strippedMenuTitle
== strippedHelpMenuTitle
|| strippedMenuTitle
== strippedTranslatedHelpMenuTitle
)
669 for (node
= menu
->GetMenuItems().GetFirst(); node
; node
= node
->GetNext())
671 item
= (wxMenuItem
*)node
->GetData();
672 subMenu
= item
->GetSubMenu() ;
675 UMAAppendMenuItem(mh
, wxStripMenuCodes(item
->GetText()) , wxFont::GetDefaultEncoding() );
676 MenuItemIndex position
= CountMenuItems(mh
);
677 ::SetMenuItemHierarchicalMenu(mh
, position
, MAC_WXHMENU(subMenu
->GetHMenu()));
681 if ( item
->GetId() != wxApp::s_macAboutMenuItemId
)
683 // we have found a user help menu and an item other than the about item,
684 // so we can create the mac help menu now, if we haven't created it yet
685 if ( helpMenuHandle
== NULL
)
687 if ( UMAGetHelpMenu( &helpMenuHandle
, &firstUserHelpMenuItem
) != noErr
)
689 helpMenuHandle
= NULL
;
695 if ( item
->IsSeparator() )
697 if ( helpMenuHandle
)
698 AppendMenuItemTextWithCFString( helpMenuHandle
,
699 CFSTR(""), kMenuItemAttrSeparator
, 0,NULL
);
704 entry
= wxAcceleratorEntry::Create( item
->GetItemLabel() ) ;
706 if ( item
->GetId() == wxApp::s_macAboutMenuItemId
)
708 // this will be taken care of below
712 if ( helpMenuHandle
)
714 UMAAppendMenuItem(helpMenuHandle
, wxStripMenuCodes(item
->GetItemLabel()) , wxFont::GetDefaultEncoding(), entry
);
715 SetMenuItemCommandID( helpMenuHandle
, CountMenuItems(helpMenuHandle
) , wxIdToMacCommand ( item
->GetId() ) ) ;
716 SetMenuItemRefCon( helpMenuHandle
, CountMenuItems(helpMenuHandle
) , (URefCon
) item
) ;
726 else if ( ( m_titles
[i
] == wxT("Window") || m_titles
[i
] == wxT("&Window") )
727 && GetAutoWindowMenu() )
729 if ( MacGetWindowMenuHMenu() == NULL
)
731 CreateStandardWindowMenu( 0 , (MenuHandle
*) &s_macWindowMenuHandle
) ;
734 MenuRef wm
= (MenuRef
)MacGetWindowMenuHMenu();
738 // get the insertion point in the standard menu
739 MenuItemIndex winListStart
;
740 GetIndMenuItemWithCommandID(wm
,
741 kHICommandWindowListSeparator
, 1, NULL
, &winListStart
);
743 // add a separator so that the standard items and the custom items
744 // aren't mixed together, but only if this is the first run
745 OSStatus err
= GetIndMenuItemWithCommandID(wm
,
746 'WXWM', 1, NULL
, NULL
);
748 if ( err
== menuItemNotFoundErr
)
750 InsertMenuItemTextWithCFString( wm
,
751 CFSTR(""), winListStart
-1, kMenuItemAttrSeparator
, 'WXWM');
754 wxInsertMenuItemsInMenu(menu
, wm
, winListStart
);
758 UMASetMenuTitle( MAC_WXHMENU(menu
->GetHMenu()) , m_titles
[i
], GetFont().GetEncoding() ) ;
759 menu
->MacBeforeDisplay(false) ;
761 ::InsertMenu(MAC_WXHMENU(GetMenu(i
)->GetHMenu()), 0);
765 // take care of the about menu item wherever it is
768 wxMenuItem
*aboutMenuItem
= FindItem(wxApp::s_macAboutMenuItemId
, &aboutMenu
) ;
772 entry
= wxAcceleratorEntry::Create( aboutMenuItem
->GetItemLabel() ) ;
773 UMASetMenuItemText( GetMenuHandle( kwxMacAppleMenuId
) , 1 , wxStripMenuCodes ( aboutMenuItem
->GetItemLabel() ) , wxFont::GetDefaultEncoding() );
774 UMAEnableMenuItem( GetMenuHandle( kwxMacAppleMenuId
) , 1 , true );
775 SetMenuItemCommandID( GetMenuHandle( kwxMacAppleMenuId
) , 1 , kHICommandAbout
) ;
776 SetMenuItemRefCon(GetMenuHandle( kwxMacAppleMenuId
) , 1 , (URefCon
)aboutMenuItem
) ;
777 UMASetMenuItemShortcut( GetMenuHandle( kwxMacAppleMenuId
) , 1 , entry
) ;
782 if ( GetAutoWindowMenu() )
784 if ( MacGetWindowMenuHMenu() == NULL
)
785 CreateStandardWindowMenu( 0 , (MenuHandle
*) &s_macWindowMenuHandle
) ;
787 InsertMenu( (MenuHandle
) MacGetWindowMenuHMenu() , 0 ) ;
793 s_macInstalledMenuBar
= this;
796 void wxMenuBar::EnableTop(size_t pos
, bool enable
)
798 wxCHECK_RET( IsAttached(), wxT("doesn't work with unattached menubars") );
800 m_rootMenu
->FindItemByPosition( pos
)->Enable(enable
);
805 bool wxMenuBar::Enable(bool enable
)
807 wxCHECK_MSG( IsAttached(), false, wxT("doesn't work with unattached menubars") );
810 for (i
= 0; i
< GetMenuCount(); i
++)
811 EnableTop(i
, enable
);
816 void wxMenuBar::SetMenuLabel(size_t pos
, const wxString
& label
)
818 wxCHECK_RET( pos
< GetMenuCount(), wxT("invalid menu index") );
820 GetMenu(pos
)->SetTitle( label
) ;
823 wxString
wxMenuBar::GetMenuLabel(size_t pos
) const
825 wxCHECK_MSG( pos
< GetMenuCount(), wxEmptyString
,
826 wxT("invalid menu index in wxMenuBar::GetMenuLabel") );
828 return GetMenu(pos
)->GetTitle();
831 // ---------------------------------------------------------------------------
832 // wxMenuBar construction
833 // ---------------------------------------------------------------------------
835 const int firstMenuPos
= 1; // to account for the 0th application menu on mac
837 wxMenu
*wxMenuBar::Replace(size_t pos
, wxMenu
*menu
, const wxString
& title
)
839 wxMenu
*menuOld
= wxMenuBarBase::Replace(pos
, menu
, title
);
843 wxMenuItem
* item
= m_rootMenu
->FindItemByPosition(pos
+firstMenuPos
);
844 m_rootMenu
->Remove(item
);
845 m_rootMenu
->Insert( pos
+firstMenuPos
, wxMenuItem::New( m_rootMenu
, wxID_ANY
, title
, "", wxITEM_NORMAL
, menu
) );
850 bool wxMenuBar::Insert(size_t pos
, wxMenu
*menu
, const wxString
& title
)
852 if ( !wxMenuBarBase::Insert(pos
, menu
, title
) )
855 m_rootMenu
->Insert( pos
+firstMenuPos
, wxMenuItem::New( m_rootMenu
, wxID_ANY
, title
, "", wxITEM_NORMAL
, menu
) );
860 wxMenu
*wxMenuBar::Remove(size_t pos
)
862 wxMenu
*menu
= wxMenuBarBase::Remove(pos
);
866 wxMenuItem
* item
= m_rootMenu
->FindItemByPosition(pos
+firstMenuPos
);
867 m_rootMenu
->Remove(item
);
872 bool wxMenuBar::Append(wxMenu
*menu
, const wxString
& title
)
874 WXHMENU submenu
= menu
? menu
->GetHMenu() : 0;
875 wxCHECK_MSG( submenu
, false, wxT("can't append invalid menu to menubar") );
877 if ( !wxMenuBarBase::Append(menu
, title
) )
880 m_rootMenu
->AppendSubMenu(menu
, title
);
881 menu
->SetTitle(title
);
886 void wxMenuBar::Detach()
888 wxMenuBarBase::Detach() ;
891 void wxMenuBar::Attach(wxFrame
*frame
)
893 wxMenuBarBase::Attach( frame
) ;
896 #endif // wxUSE_MENUS