1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenu, wxMenuBar, wxMenuItem
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 // ============================================================================
15 // ============================================================================
17 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
25 #pragma implementation "menu.h"
26 #pragma implementation "menuitem.h"
29 // For compilers that support precompilation, includes "wx.h".
30 #include "wx/wxprec.h"
43 #include "wx/ownerdrw.h"
46 #include "wx/msw/private.h"
47 #include "wx/msw/menu.h"
48 #include "wx/menuitem.h"
51 // other standard headers
52 // ----------------------
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 // the (popup) menu title has this special id
60 static const int idMenuTitle
= -2;
62 // ----------------------------------------------------------------------------
64 // ----------------------------------------------------------------------------
65 #if !USE_SHARED_LIBRARY
66 IMPLEMENT_DYNAMIC_CLASS(wxMenu
, wxEvtHandler
)
67 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar
, wxEvtHandler
)
70 // ============================================================================
72 // ============================================================================
76 // Construct a menu with optional title (then use append)
77 wxMenu::wxMenu(const wxString
& Title
, const wxFunction func
)
81 m_eventHandler
= this;
82 m_pInvokingWindow
= NULL
;
86 m_hMenu
= (WXHMENU
) CreatePopupMenu();
88 m_topLevelMenu
= this;
91 Append(idMenuTitle
, m_title
) ;
98 // The wxWindow destructor will take care of deleting the submenus.
102 DestroyMenu((HMENU
) m_hMenu
);
105 // Windows seems really bad on Menu de-allocation...
106 // After many try, here is what I do: RemoveMenu() will ensure
107 // that popup are "disconnected" from their parent; then call
108 // delete method on each child (which in turn do a recursive job),
109 // and finally, DestroyMenu()
111 // With that, BoundCheckers is happy, and no complaints...
115 N = GetMenuItemCount(m_hMenu);
117 for (i = N-1; i >= 0; i--)
118 RemoveMenu(m_hMenu, i, MF_BYPOSITION);
121 // How is deleting submenus in this loop any different from deleting
122 // the submenus in the children list, via ~wxWindow ?
123 // I'll reinstate this deletion for now and remove addition
124 // from children list (which doesn't exist now)
126 wxNode
*node
= m_menuItems
.First();
129 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
131 // Delete child menus.
132 // Beware: they must not be appended to children list!!!
133 // (because order of delete is significant)
134 if (item
->GetSubMenu())
135 item
->DeleteSubMenu();
137 wxNode
*next
= node
->Next();
144 DestroyMenu(m_hMenu);
154 // function appends a new item or submenu to the menu
155 void wxMenu::Append(wxMenuItem
*pItem
)
157 wxCHECK_RET( pItem
!= NULL
, "can't append NULL item to the menu" );
159 m_menuItems
.Append(pItem
);
164 flags
|= MF_MENUBREAK
;
168 if ( pItem
->IsSeparator() ) {
169 flags
|= MF_SEPARATOR
;
172 // id is the numeric id for normal menu items and HMENU for submenus
174 wxMenu
*SubMenu
= pItem
->GetSubMenu();
175 if ( SubMenu
!= NULL
) {
176 wxASSERT( SubMenu
->m_hMenu
!= (WXHMENU
) NULL
);
178 id
= (UINT
)SubMenu
->m_hMenu
;
180 SubMenu
->m_topLevelMenu
= m_topLevelMenu
;
181 SubMenu
->m_parent
= this;
182 SubMenu
->m_savehMenu
= (WXHMENU
)id
;
183 SubMenu
->m_hMenu
= 0;
193 #if wxUSE_OWNER_DRAWN
194 if ( pItem
->IsOwnerDrawn() ) { // want to get {Measure|Draw}Item messages?
195 // item draws itself, pass pointer to it in data parameter
196 flags
|= MF_OWNERDRAW
;
197 pData
= (LPCSTR
)pItem
;
202 // menu is just a normal string (passed in data parameter)
204 pData
= pItem
->GetName();
207 // visually select the menu title
208 if ( id
== idMenuTitle
)
210 // TODO use SetMenuItemInfo(MFS_DEFAULT) to put it in bold face
213 HMENU hMenu
= (HMENU
)((m_hMenu
== 0) ? m_savehMenu
: m_hMenu
);
214 if ( !AppendMenu(hMenu
, flags
, id
, pData
) )
216 wxLogLastError("AppendMenu");
222 void wxMenu::AppendSeparator()
224 Append(new wxMenuItem(this, ID_SEPARATOR
));
228 void wxMenu::Append(int Id
, const wxString
& label
, wxMenu
*SubMenu
,
229 const wxString
& helpString
)
231 Append(new wxMenuItem(this, Id
, label
, helpString
, FALSE
, SubMenu
));
234 // Ordinary menu item
235 void wxMenu::Append(int Id
, const wxString
& label
,
236 const wxString
& helpString
, bool checkable
)
238 // 'checkable' parameter is useless for Windows.
239 Append(new wxMenuItem(this, Id
, label
, helpString
, checkable
));
242 void wxMenu::Delete(int id
)
249 for (pos
= 0, node
= m_menuItems
.First(); node
; node
= node
->Next(), pos
++) {
250 item
= (wxMenuItem
*)node
->Data();
251 if (item
->GetId() == id
)
258 menu
= (HMENU
)(m_hMenu
? m_hMenu
: m_savehMenu
);
260 wxMenu
*pSubMenu
= item
->GetSubMenu();
261 if ( pSubMenu
!= NULL
) {
262 RemoveMenu(menu
, (UINT
)pos
, MF_BYPOSITION
);
263 pSubMenu
->m_hMenu
= pSubMenu
->m_savehMenu
;
264 pSubMenu
->m_savehMenu
= 0;
265 pSubMenu
->m_parent
= NULL
;
266 // RemoveChild(item->subMenu);
267 pSubMenu
->m_topLevelMenu
= NULL
;
268 // TODO: Why isn't subMenu deleted here???
269 // Will put this in for now. Assuming this is supposed
270 // to delete the menu, not just remove it.
271 item
->DeleteSubMenu();
274 DeleteMenu(menu
, (UINT
)pos
, MF_BYPOSITION
);
277 m_menuItems
.DeleteNode(node
);
281 void wxMenu::Enable(int Id
, bool Flag
)
283 wxMenuItem
*item
= FindItemForId(Id
);
284 wxCHECK_RET( item
!= NULL
, "can't enable non-existing menu item" );
289 bool wxMenu::Enabled(int Id
) const
291 wxMenuItem
*item
= FindItemForId(Id
);
292 wxCHECK( item
!= NULL
, FALSE
);
294 return item
->IsEnabled();
297 void wxMenu::Check(int Id
, bool Flag
)
299 wxMenuItem
*item
= FindItemForId(Id
);
300 wxCHECK_RET( item
!= NULL
, "can't get status of non-existing menu item" );
305 bool wxMenu::Checked(int Id
) const
307 wxMenuItem
*item
= FindItemForId(Id
);
308 wxCHECK( item
!= NULL
, FALSE
);
310 return item
->IsChecked();
313 void wxMenu::SetTitle(const wxString
& label
)
315 bool hasNoTitle
= m_title
.IsEmpty();
318 HMENU hMenu
= (HMENU
)((m_hMenu
== 0) ? m_savehMenu
: m_hMenu
);
322 if ( !label
.IsEmpty() )
324 if ( !InsertMenu(hMenu
, 0, MF_BYPOSITION
| MF_STRING
,
325 idMenuTitle
, m_title
) ||
326 !InsertMenu(hMenu
, 1, MF_BYPOSITION
, -1, NULL
) )
328 wxLogLastError("InsertMenu");
334 if ( label
.IsEmpty() )
336 // remove the title and the separator after it
337 if ( !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) ||
338 !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) )
340 wxLogLastError("RemoveMenu");
346 if ( !ModifyMenu(hMenu
, 0,
347 MF_BYPOSITION
| MF_STRING
,
348 idMenuTitle
, m_title
) )
350 wxLogLastError("ModifyMenu");
355 // TODO use SetMenuItemInfo(MFS_DEFAULT) to put it in bold face
358 const wxString
wxMenu::GetTitle() const
363 void wxMenu::SetLabel(int Id
, const wxString
& label
)
365 wxMenuItem
*item
= FindItemForId(Id
) ;
369 if (item
->GetSubMenu()==NULL
)
373 UINT was_flag
= GetMenuState((HMENU
)m_hMenu
,Id
,MF_BYCOMMAND
) ;
374 ModifyMenu((HMENU
)m_hMenu
,Id
,MF_BYCOMMAND
|MF_STRING
|was_flag
,Id
,(const char *)label
) ;
376 else if (m_savehMenu
)
378 UINT was_flag
= GetMenuState((HMENU
)m_savehMenu
,Id
,MF_BYCOMMAND
) ;
379 ModifyMenu((HMENU
)m_savehMenu
,Id
,MF_BYCOMMAND
|MF_STRING
|was_flag
,Id
,(const char *)label
) ;
384 wxMenu
*father
= item
->GetSubMenu()->m_topLevelMenu
;
385 wxNode
*node
= father
->m_menuItems
.First() ;
389 wxMenuItem
*matched
= (wxMenuItem
*)node
->Data() ;
393 node
= node
->Next() ;
395 // Here, we have the position.
396 ModifyMenu((HMENU
)father
->m_savehMenu
,i
,
397 MF_BYPOSITION
|MF_STRING
|MF_POPUP
,
398 (UINT
)item
->GetSubMenu()->m_savehMenu
,(const char *)label
) ;
400 item
->SetName(label
);
403 wxString
wxMenu::GetLabel(int Id
) const
405 static char tmp
[128] ;
408 len
= GetMenuString((HMENU
)m_hMenu
,Id
,tmp
,WXSIZEOF(tmp
) - 1,MF_BYCOMMAND
);
409 else if (m_savehMenu
)
410 len
= GetMenuString((HMENU
)m_savehMenu
,Id
,tmp
,WXSIZEOF(tmp
) - 1,MF_BYCOMMAND
);
414 return wxString(tmp
) ;
417 bool wxMenu::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD id
)
419 wxCommandEvent
event(wxEVENT_TYPE_MENU_COMMAND
);
420 event
.SetEventObject( this );
423 ProcessCommand(event
);
427 // Finds the item id matching the given string, -1 if not found.
428 int wxMenu::FindItem (const wxString
& itemString
) const
432 wxStripMenuCodes ((char *)(const char *)itemString
, buf1
);
434 for (wxNode
* node
= m_menuItems
.First (); node
; node
= node
->Next ())
436 wxMenuItem
*item
= (wxMenuItem
*) node
->Data ();
437 if (item
->GetSubMenu())
439 int ans
= item
->GetSubMenu()->FindItem(itemString
);
443 if ( !item
->IsSeparator() )
445 wxStripMenuCodes((char *)item
->GetName().c_str(), buf2
);
446 if (strcmp(buf1
, buf2
) == 0)
447 return item
->GetId();
454 wxMenuItem
*wxMenu::FindItemForId(int itemId
, wxMenu
** itemMenu
) const
458 for (wxNode
* node
= m_menuItems
.First (); node
; node
= node
->Next ())
460 wxMenuItem
*item
= (wxMenuItem
*) node
->Data ();
462 if (item
->GetId() == itemId
)
465 *itemMenu
= (wxMenu
*) this;
469 if (item
->GetSubMenu())
471 wxMenuItem
*ans
= item
->GetSubMenu()->FindItemForId (itemId
, itemMenu
);
482 void wxMenu::SetHelpString(int itemId
, const wxString
& helpString
)
484 wxMenuItem
*item
= FindItemForId (itemId
);
486 item
->SetHelp(helpString
);
489 wxString
wxMenu::GetHelpString (int itemId
) const
491 wxMenuItem
*item
= FindItemForId (itemId
);
493 return (item
== NULL
) ? str
: item
->GetHelp();
496 void wxMenu::ProcessCommand(wxCommandEvent
& event
)
498 bool processed
= FALSE
;
503 (void)(*(m_callback
))(*this, event
);
507 // Try the menu's event handler
508 if ( !processed
&& GetEventHandler())
510 processed
= GetEventHandler()->ProcessEvent(event
);
513 // Try the window the menu was popped up from (and up
514 // through the hierarchy)
515 if ( !processed
&& GetInvokingWindow())
516 processed
= GetInvokingWindow()->ProcessEvent(event
);
519 extern wxMenu
*wxCurrentPopupMenu
;
520 bool wxWindow::PopupMenu(wxMenu
*menu
, int x
, int y
)
522 menu
->SetInvokingWindow(this);
524 HWND hWnd
= (HWND
) GetHWND();
525 HMENU hMenu
= (HMENU
)menu
->m_hMenu
;
529 ::ClientToScreen(hWnd
, &point
);
530 wxCurrentPopupMenu
= menu
;
531 ::TrackPopupMenu(hMenu
, TPM_RIGHTBUTTON
, point
.x
, point
.y
, 0, hWnd
, NULL
);
533 wxCurrentPopupMenu
= NULL
;
535 menu
->SetInvokingWindow(NULL
);
541 wxMenuBar::wxMenuBar()
543 m_eventHandler
= this;
548 m_menuBarFrame
= NULL
;
552 wxMenuBar::wxMenuBar(int N
, wxMenu
*Menus
[], const wxString Titles
[])
554 m_eventHandler
= this;
557 m_titles
= new wxString
[N
];
559 for ( i
= 0; i
< N
; i
++ )
560 m_titles
[i
] = Titles
[i
];
561 m_menuBarFrame
= NULL
;
562 for (i
= 0; i
< N
; i
++)
563 m_menus
[i
]->m_menuBar
= (wxMenuBar
*) this;
568 wxMenuBar::~wxMenuBar()
570 // In fact, don't want menu to be destroyed before MDI
571 // shuffling has taken place. Let it be destroyed
572 // automatically when the window is destroyed.
574 // DestroyMenu(menu);
579 // See remarks in ::~wxMenu() method
580 // BEWARE - this may interfere with MDI fixes, so
581 // may need to remove
584 if (m_menuBarFrame && ((m_menuBarFrame->GetWindowStyleFlag() & wxSDI) == wxSDI))
587 N = GetMenuItemCount(menu) ;
588 for (i = N-1; i >= 0; i--)
589 RemoveMenu(menu, i, MF_BYPOSITION);
592 for (i
= 0; i
< m_menuCount
; i
++)
599 /* Don't destroy menu here, in case we're MDI and
600 need to do some shuffling with VALID menu handles.
607 // Must only be used AFTER menu has been attached to frame,
608 // otherwise use individual menus to enable/disable items
609 void wxMenuBar::Enable(int Id
, bool Flag
)
613 ms_flag
= MF_ENABLED
;
617 wxMenu
*itemMenu
= NULL
;
618 wxMenuItem
*item
= FindItemForId(Id
, &itemMenu
) ;
622 if (itemMenu
->m_hMenu
)
623 EnableMenuItem((HMENU
)itemMenu
->m_hMenu
, Id
, MF_BYCOMMAND
| ms_flag
);
624 else if (itemMenu
->m_savehMenu
)
625 EnableMenuItem((HMENU
)itemMenu
->m_savehMenu
, Id
, MF_BYCOMMAND
| ms_flag
);
629 void wxMenuBar::EnableTop(int pos
, bool flag
)
633 ms_flag
= MF_ENABLED
;
637 EnableMenuItem((HMENU
)m_hMenu
, pos
, MF_BYPOSITION
| ms_flag
);
638 DrawMenuBar((HWND
) m_menuBarFrame
->GetHWND()) ;
641 // Must only be used AFTER menu has been attached to frame,
642 // otherwise use individual menus
643 void wxMenuBar::Check(int Id
, bool Flag
)
645 wxMenu
*itemMenu
= NULL
;
646 wxMenuItem
*item
= FindItemForId(Id
, &itemMenu
) ;
650 if (!item
->IsCheckable())
654 ms_flag
= MF_CHECKED
;
656 ms_flag
= MF_UNCHECKED
;
658 if (itemMenu
->m_hMenu
)
659 CheckMenuItem((HMENU
)itemMenu
->m_hMenu
, Id
, MF_BYCOMMAND
| ms_flag
);
660 else if (itemMenu
->m_savehMenu
)
661 CheckMenuItem((HMENU
)itemMenu
->m_savehMenu
, Id
, MF_BYCOMMAND
| ms_flag
);
663 // CheckMenuItem((HMENU)m_hMenu, Id, MF_BYCOMMAND | ms_flag);
666 bool wxMenuBar::Checked(int Id
) const
668 wxMenu
*itemMenu
= NULL
;
669 wxMenuItem
*item
= FindItemForId(Id
, &itemMenu
) ;
675 if (itemMenu
->m_hMenu
)
676 Flag
=GetMenuState((HMENU
)itemMenu
->m_hMenu
, Id
, MF_BYCOMMAND
) ;
677 else if (itemMenu
->m_savehMenu
)
678 Flag
=GetMenuState((HMENU
)itemMenu
->m_savehMenu
, Id
, MF_BYCOMMAND
) ;
680 // Flag=GetMenuState((HMENU)m_hMenu, Id, MF_BYCOMMAND) ;
688 bool wxMenuBar::Enabled(int Id
) const
690 wxMenu
*itemMenu
= NULL
;
691 wxMenuItem
*item
= FindItemForId(Id
, &itemMenu
) ;
697 if (itemMenu
->m_hMenu
)
698 Flag
=GetMenuState((HMENU
)itemMenu
->m_hMenu
, Id
, MF_BYCOMMAND
) ;
699 else if (itemMenu
->m_savehMenu
)
700 Flag
=GetMenuState((HMENU
)itemMenu
->m_savehMenu
, Id
, MF_BYCOMMAND
) ;
709 void wxMenuBar::SetLabel(int Id
, const wxString
& label
)
711 wxMenu
*itemMenu
= NULL
;
712 wxMenuItem
*item
= FindItemForId(Id
, &itemMenu
) ;
717 if (itemMenu
->m_hMenu
)
719 UINT was_flag
= GetMenuState((HMENU
)itemMenu
->m_hMenu
,Id
,MF_BYCOMMAND
) ;
720 ModifyMenu((HMENU
)itemMenu
->m_hMenu
,Id
,MF_BYCOMMAND
|MF_STRING
|was_flag
,Id
,(const char *)label
) ;
722 else if (itemMenu
->m_savehMenu
)
724 UINT was_flag
= GetMenuState((HMENU
)itemMenu
->m_savehMenu
,Id
,MF_BYCOMMAND
) ;
725 ModifyMenu((HMENU
)itemMenu
->m_savehMenu
,Id
,MF_BYCOMMAND
|MF_STRING
|was_flag
,Id
,(const char *)label
) ;
729 wxString
wxMenuBar::GetLabel(int Id
) const
731 wxMenu
*itemMenu
= NULL
;
732 wxMenuItem
*item
= FindItemForId(Id
, &itemMenu
) ;
737 static char tmp
[128] ;
739 if (itemMenu
->m_hMenu
)
741 len
= GetMenuString((HMENU
)itemMenu
->m_hMenu
,Id
,tmp
,127,MF_BYCOMMAND
) ;
743 else if (itemMenu
->m_savehMenu
)
745 len
= GetMenuString((HMENU
)itemMenu
->m_savehMenu
,Id
,tmp
,127,MF_BYCOMMAND
) ;
748 // int len = GetMenuString((HMENU)m_hMenu,Id,tmp,127,MF_BYCOMMAND) ;
750 return wxString(tmp
) ;
753 void wxMenuBar::SetLabelTop(int pos
, const wxString
& label
)
755 UINT was_flag
= GetMenuState((HMENU
)m_hMenu
,pos
,MF_BYPOSITION
) ;
756 if (was_flag
&MF_POPUP
)
759 HMENU popup
= GetSubMenu((HMENU
)m_hMenu
,pos
) ;
760 ModifyMenu((HMENU
)m_hMenu
,pos
,MF_BYPOSITION
|MF_STRING
|was_flag
,(UINT
)popup
,(const char *)label
) ;
763 ModifyMenu((HMENU
)m_hMenu
,pos
,MF_BYPOSITION
|MF_STRING
|was_flag
,pos
,(const char *)label
) ;
766 wxString
wxMenuBar::GetLabelTop(int pos
) const
768 static char tmp
[128] ;
769 int len
= GetMenuString((HMENU
)m_hMenu
,pos
,tmp
,127,MF_BYPOSITION
) ;
771 return wxString(tmp
);
774 bool wxMenuBar::OnDelete(wxMenu
*a_menu
, int pos
)
779 if (RemoveMenu((HMENU
)m_hMenu
, (UINT
)pos
, MF_BYPOSITION
)) {
780 m_menus
[pos
]->m_hMenu
= m_menus
[pos
]->m_savehMenu
;
781 m_menus
[pos
]->m_savehMenu
= 0;
783 if (m_menuBarFrame
) {
784 DrawMenuBar((HWND
) m_menuBarFrame
->GetHWND()) ;
793 bool wxMenuBar::OnAppend(wxMenu
*a_menu
, const char *title
)
795 if (!a_menu
->m_hMenu
)
801 a_menu
->m_savehMenu
= a_menu
->m_hMenu
;
804 AppendMenu((HMENU
)m_hMenu
, MF_POPUP
| MF_STRING
, (UINT
)a_menu
->m_savehMenu
, title
);
806 DrawMenuBar((HWND
) m_menuBarFrame
->GetHWND());
811 void wxMenuBar::Append (wxMenu
* menu
, const wxString
& title
)
813 if (!OnAppend(menu
, title
))
817 wxMenu
**new_menus
= new wxMenu
*[m_menuCount
];
818 wxString
*new_titles
= new wxString
[m_menuCount
];
821 for (i
= 0; i
< m_menuCount
- 1; i
++)
823 new_menus
[i
] = m_menus
[i
];
825 new_titles
[i
] = m_titles
[i
];
834 m_titles
= new_titles
;
836 m_menus
[m_menuCount
- 1] = (wxMenu
*)menu
;
837 m_titles
[m_menuCount
- 1] = title
;
839 ((wxMenu
*)menu
)->m_menuBar
= (wxMenuBar
*) this;
840 ((wxMenu
*)menu
)->SetParent(this);
843 void wxMenuBar::Delete(wxMenu
* menu
, int i
)
849 for (ii
= 0; ii
< m_menuCount
; ii
++) {
850 if (m_menus
[ii
] == menu
)
853 if (ii
>= m_menuCount
)
856 if (ii
< 0 || ii
>= m_menuCount
)
861 if (!OnDelete(menu
, ii
))
864 menu
->SetParent(NULL
);
867 for (j
= ii
; j
< m_menuCount
; j
++) {
868 m_menus
[j
] = m_menus
[j
+ 1];
869 m_titles
[j
] = m_titles
[j
+ 1];
873 // Find the menu menuString, item itemString, and return the item id.
874 // Returns -1 if none found.
875 int wxMenuBar::FindMenuItem (const wxString
& menuString
, const wxString
& itemString
) const
879 wxStripMenuCodes ((char *)(const char *)menuString
, buf1
);
881 for (i
= 0; i
< m_menuCount
; i
++)
883 wxStripMenuCodes ((char *)(const char *)m_titles
[i
], buf2
);
884 if (strcmp (buf1
, buf2
) == 0)
885 return m_menus
[i
]->FindItem (itemString
);
890 wxMenuItem
*wxMenuBar::FindItemForId (int Id
, wxMenu
** itemMenu
) const
895 wxMenuItem
*item
= NULL
;
897 for (i
= 0; i
< m_menuCount
; i
++)
898 if ((item
= m_menus
[i
]->FindItemForId (Id
, itemMenu
)))
903 void wxMenuBar::SetHelpString (int Id
, const wxString
& helpString
)
906 for (i
= 0; i
< m_menuCount
; i
++)
908 if (m_menus
[i
]->FindItemForId (Id
))
910 m_menus
[i
]->SetHelpString (Id
, helpString
);
916 wxString
wxMenuBar::GetHelpString (int Id
) const
919 for (i
= 0; i
< m_menuCount
; i
++)
921 if (m_menus
[i
]->FindItemForId (Id
))
922 return wxString(m_menus
[i
]->GetHelpString (Id
));
927 wxWindow
*wxMenu::GetWindow() const
929 if ( m_pInvokingWindow
!= NULL
)
930 return m_pInvokingWindow
;
931 if ( m_menuBar
!= NULL
)
932 return m_menuBar
->m_menuBarFrame
;
936 WXHMENU
wxMenu::GetHMenu() const
940 else if ( m_savehMenu
!= 0 )