]>
git.saurik.com Git - wxWidgets.git/blob - src/os2/menu.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenu, wxMenuBar, wxMenuItem
4 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "menu.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
29 #include "wx/ownerdrw.h"
32 #include "wx/os2/private.h"
34 // other standard headers
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
41 extern wxMenu
* wxCurrentPopupMenu
;
43 // ----------------------------------------------------------------------------
45 // ----------------------------------------------------------------------------
48 // The (popup) menu title has this special id
50 static const int idMenuTitle
= -2;
53 // The unique ID for Menus
56 USHORT
wxMenu::m_nextMenuId
= 0;
58 static USHORT
wxMenu::m_nextMenuId
= 0;
61 // ----------------------------------------------------------------------------
63 // ----------------------------------------------------------------------------
65 IMPLEMENT_DYNAMIC_CLASS(wxMenu
, wxEvtHandler
)
66 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar
, wxEvtHandler
)
68 // ----------------------------------------------------------------------------
69 // static function for translating menu labels
70 // ----------------------------------------------------------------------------
72 static wxString
TextToLabel(const wxString
& rTitle
)
76 for (pc
= rTitle
.c_str(); *pc
!= wxT('\0'); pc
++ )
80 if (*(pc
+1) == wxT('&'))
90 if ( *pc
== wxT('~') )
92 // tildes must be doubled to prevent them from being
93 // interpreted as accelerator character prefix by PM ???
102 // ============================================================================
104 // ============================================================================
106 // ---------------------------------------------------------------------------
107 // wxMenu construction, adding and removing menu items
108 // ---------------------------------------------------------------------------
111 // Construct a menu with optional title (then use append)
118 // Create the menu (to be used as a submenu or a popup)
120 if ((m_hMenu
= ::WinCreateWindow( HWND_DESKTOP
135 wxLogLastError("WinLoadMenu");
137 m_vMenuData
.iPosition
= 0;
138 m_vMenuData
.afStyle
= MIS_SUBMENU
| MIS_TEXT
;
139 m_vMenuData
.afAttribute
= (USHORT
)0;
140 m_vMenuData
.id
= m_nextMenuId
++;
141 m_vMenuData
.hwndSubMenu
= m_hMenu
;
142 m_vMenuData
.hItem
= NULLHANDLE
;
145 // If we have a title, insert it in the beginning of the menu
147 if (!m_title
.IsEmpty())
154 } // end of wxMenu::Init
157 // The wxWindow destructor will take care of deleting the submenus.
162 // We should free PM resources only if PM doesn't do it for us
163 // which happens if we're attached to a menubar or a submenu of another
165 if (!IsAttached() && !GetParent())
167 if (!::WinDestroyWindow((HWND
)GetHmenu()) )
169 wxLogLastError("WinDestroyWindow");
177 #if (!(defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )))
178 WX_CLEAR_ARRAY(m_vAccels
);
180 #endif // wxUSE_ACCEL
181 } // end of wxMenu::~wxMenu
185 // this will take effect during the next call to Append()
187 } // end of wxMenu::Break
191 void wxMenu::EndRadioGroup()
194 // We're not inside a radio group any longer
196 m_nStartRadioGroup
= -1;
197 } // end of wxMenu::EndRadioGroup
199 int wxMenu::FindAccel(
204 size_t nCount
= m_vAccels
.GetCount();
206 for (n
= 0; n
< nCount
; n
++)
208 if (m_vAccels
[n
]->m_command
== nId
)
212 } // end of wxMenu::FindAccel
214 void wxMenu::UpdateAccel(
218 if (pItem
->IsSubMenu())
220 wxMenu
* pSubmenu
= pItem
->GetSubMenu();
221 wxMenuItemList::Node
* pNode
= pSubmenu
->GetMenuItems().GetFirst();
225 UpdateAccel(pNode
->GetData());
226 pNode
= pNode
->GetNext();
229 else if (!pItem
->IsSeparator())
232 // Find the (new) accel for this item
234 wxAcceleratorEntry
* pAccel
= wxGetAccelFromString(pItem
->GetText());
236 pAccel
->m_command
= pItem
->GetId();
241 int n
= FindAccel(pItem
->GetId());
243 if (n
== wxNOT_FOUND
)
246 // No old, add new if any
249 m_vAccels
.Add(pAccel
);
251 return; // skipping RebuildAccelTable() below
256 // Replace old with new or just remove the old one if no new
261 m_vAccels
[n
] = pAccel
;
263 m_vAccels
.RemoveAt(n
);
268 m_menuBar
->RebuildAccelTable();
271 } // wxMenu::UpdateAccel
273 #endif // wxUSE_ACCEL
276 // Append a new item or submenu to the menu
278 bool wxMenu::DoInsertOrAppend(
288 #endif // wxUSE_ACCEL
291 // rItem is the member MENUITEM for the menu items and the submenu's
292 // MENUITEM for submenus as required by ::MM_INSERTITEM message API
295 wxMenu
* pSubmenu
= pItem
->GetSubMenu();
296 MENUITEM
& rItem
= (pSubmenu
!= NULL
)?pSubmenu
->m_vMenuData
:
300 wxASSERT_MSG(pSubmenu
->GetHMenu(), wxT("invalid submenu"));
301 pSubmenu
->SetParent(this);
302 rItem
.afStyle
|= MIS_SUBMENU
| MIS_TEXT
;
306 // If "Break" has just been called, insert a menu break before this item
307 // (and don't forget to reset the flag)
311 rItem
.afStyle
|= MIS_BREAK
;
315 if (pItem
->IsSeparator())
317 rItem
.afStyle
|= MIS_SEPARATOR
;
321 // Id is the numeric id for normal menu items and HMENU for submenus as
322 // required by ::MM_INSERTITEM message API
325 if (pSubmenu
!= NULL
)
327 wxASSERT_MSG(pSubmenu
->GetHMenu(), wxT("invalid submenu"));
328 pSubmenu
->SetParent(this);
330 rItem
.iPosition
= 0; // submenus have a 0 position
331 rItem
.id
= (USHORT
)pSubmenu
->GetHMenu();
332 rItem
.afStyle
|= MIS_SUBMENU
| MIS_TEXT
;
336 rItem
.id
= pItem
->GetId();
341 #if wxUSE_OWNER_DRAWN
342 if (pItem
->IsOwnerDrawn())
345 // Want to get {Measure|Draw}Item messages?
346 // item draws itself, passing pointer to data doesn't work in OS/2
347 // Will eventually need to set the image handle somewhere into vItem.hItem
349 rItem
.afStyle
|= MIS_OWNERDRAW
;
351 rItem
.hItem
= (HBITMAP
)pItem
->GetBitmap().GetHBITMAP();
352 pItem
->m_vMenuData
.afStyle
= rItem
.afStyle
;
353 pItem
->m_vMenuData
.hItem
= rItem
.hItem
;
359 // Menu is just a normal string (passed in data parameter)
361 rItem
.afStyle
|= MIS_TEXT
;
362 pData
= (char*)pItem
->GetText().c_str();
365 if (nPos
== (size_t)-1)
367 rItem
.iPosition
= MIT_END
;
371 rItem
.iPosition
= nPos
;
376 rc
= (APIRET
)::WinSendMsg( GetHmenu()
381 #if wxUSE_OWNER_DRAWN
382 if (pItem
->IsOwnerDrawn())
387 ::WinSendMsg( GetHmenu()
389 ,MPFROM2SHORT( (USHORT
)pItem
->GetId()
396 if (rc
== MIT_MEMERROR
|| rc
== MIT_ERROR
)
398 vError
= ::WinGetLastError(vHabmain
);
399 sError
= wxPMErrorToStr(vError
);
400 wxLogError("Error inserting or appending a menuitem. Error: %s\n", sError
);
401 wxLogLastError("Insert or AppendMenu");
407 // If we're already attached to the menubar, we must update it
409 if (IsAttached() && m_menuBar
->IsAttached())
411 m_menuBar
->Refresh();
416 } // end of wxMenu::DoInsertOrAppend
418 bool wxMenu::DoAppend(
422 wxCHECK_MSG( pItem
, FALSE
, _T("NULL item in wxMenu::DoAppend") );
426 if (pItem
->GetKind() == wxITEM_RADIO
)
428 int nCount
= GetMenuItemCount();
430 if (m_nStartRadioGroup
== -1)
433 // Start a new radio group
435 m_nStartRadioGroup
= nCount
;
438 // For now it has just one element
440 pItem
->SetAsRadioGroupStart();
441 pItem
->SetRadioGroupEnd(m_nStartRadioGroup
);
444 // Ensure that we have a checked item in the radio group
448 else // extend the current radio group
451 // We need to update its end item
453 pItem
->SetRadioGroupStart(m_nStartRadioGroup
);
454 wxMenuItemList::Node
* pNode
= GetMenuItems().Item(m_nStartRadioGroup
);
458 pNode
->GetData()->SetRadioGroupEnd(nCount
);
462 wxFAIL_MSG( _T("where is the radio group start item?") );
466 else // not a radio item
470 if (!wxMenuBase::DoAppend(pItem
) || !DoInsertOrAppend(pItem
))
479 } // end of wxMenu::DoInsert
481 bool wxMenu::DoInsert(
486 return ( wxMenuBase::DoInsert( nPos
488 DoInsertOrAppend( pItem
491 } // end of wxMenu::DoInsert
493 wxMenuItem
* wxMenu::DoRemove(
498 // We need to find the items position in the child list
501 wxMenuItemList::Node
* pNode
= GetMenuItems().GetFirst();
503 for (nPos
= 0; pNode
; nPos
++)
505 if (pNode
->GetData() == pItem
)
507 pNode
= pNode
->GetNext();
511 // DoRemove() (unlike Remove) can only be called for existing item!
513 wxCHECK_MSG(pNode
, NULL
, wxT("bug in wxMenu::Remove logic"));
517 // Remove the corresponding accel from the accel table
519 int n
= FindAccel(pItem
->GetId());
521 if (n
!= wxNOT_FOUND
)
524 m_vAccels
.RemoveAt(n
);
527 #endif // wxUSE_ACCEL
529 // Remove the item from the menu
531 ::WinSendMsg( GetHmenu()
533 ,MPFROM2SHORT(pItem
->GetId(), TRUE
)
536 if (IsAttached() && m_menuBar
->IsAttached())
539 // Otherwise, the chane won't be visible
541 m_menuBar
->Refresh();
545 // And from internal data structures
547 return wxMenuBase::DoRemove(pItem
);
548 } // end of wxMenu::DoRemove
550 // ---------------------------------------------------------------------------
551 // accelerator helpers
552 // ---------------------------------------------------------------------------
557 // Create the wxAcceleratorEntries for our accels and put them into provided
558 // array - return the number of accels we have
560 size_t wxMenu::CopyAccels(
561 wxAcceleratorEntry
* pAccels
564 size_t nCount
= GetAccelCount();
566 for (size_t n
= 0; n
< nCount
; n
++)
568 *pAccels
++ = *m_vAccels
[n
];
571 } // end of wxMenu::CopyAccels
573 #endif // wxUSE_ACCEL
575 // ---------------------------------------------------------------------------
577 // ---------------------------------------------------------------------------
579 void wxMenu::SetTitle(
580 const wxString
& rLabel
583 bool bHasNoTitle
= m_title
.IsEmpty();
584 HWND hMenu
= GetHmenu();
589 if (!rLabel
.IsEmpty())
591 if (!::WinSetWindowText(hMenu
, rLabel
.c_str()))
593 wxLogLastError("SetMenuTitle");
599 if (rLabel
.IsEmpty() )
601 ::WinSendMsg( GetHmenu()
603 ,MPFROM2SHORT(hMenu
, TRUE
)
612 if (!::WinSetWindowText(hMenu
, rLabel
.c_str()))
614 wxLogLastError("SetMenuTitle");
618 } // end of wxMenu::SetTitle
620 // ---------------------------------------------------------------------------
622 // ---------------------------------------------------------------------------
624 bool wxMenu::OS2Command(
625 WXUINT
WXUNUSED(uParam
)
630 // Ignore commands from the menu title
633 if (vId
!= (WXWORD
)idMenuTitle
)
636 ,(int)::WinSendMsg( GetHmenu()
644 } // end of wxMenu::OS2Command
646 // ---------------------------------------------------------------------------
648 // ---------------------------------------------------------------------------
650 wxWindow
* wxMenu::GetWindow() const
652 if (m_invokingWindow
!= NULL
)
653 return m_invokingWindow
;
654 else if ( m_menuBar
!= NULL
)
655 return m_menuBar
->GetFrame();
658 } // end of wxMenu::GetWindow
660 // recursive search for item by id
661 wxMenuItem
* wxMenu::FindItem(
664 , wxMenu
** ppItemMenu
670 wxMenuItem
* pItem
= NULL
;
672 for ( wxMenuItemList::Node
*node
= m_items
.GetFirst();
674 node
= node
->GetNext() )
676 pItem
= node
->GetData();
678 if ( pItem
->GetId() == nItemId
&& pItem
->m_vMenuData
.hItem
== hItem
)
681 *ppItemMenu
= (wxMenu
*)this;
683 else if ( pItem
->IsSubMenu() )
685 pItem
= pItem
->GetSubMenu()->FindItem( nItemId
694 // don't exit the loop
699 } // end of wxMenu::FindItem
701 // ---------------------------------------------------------------------------
703 // ---------------------------------------------------------------------------
705 void wxMenuBar::Init()
707 m_eventHandler
= this;
708 m_menuBarFrame
= NULL
;
710 } // end of wxMenuBar::Init
712 wxMenuBar::wxMenuBar()
715 } // end of wxMenuBar::wxMenuBar
717 wxMenuBar::wxMenuBar(
718 long WXUNUSED(lStyle
)
722 } // end of wxMenuBar::wxMenuBar
724 wxMenuBar::wxMenuBar(
727 , const wxString sTitles
[]
732 m_titles
.Alloc(nCount
);
733 for ( int i
= 0; i
< nCount
; i
++ )
735 m_menus
.Append(vMenus
[i
]);
736 m_titles
.Add(sTitles
[i
]);
737 vMenus
[i
]->Attach(this);
739 } // end of wxMenuBar::wxMenuBar
741 wxMenuBar::~wxMenuBar()
743 } // end of wxMenuBar::~wxMenuBar
745 // ---------------------------------------------------------------------------
747 // ---------------------------------------------------------------------------
749 void wxMenuBar::Refresh()
751 wxCHECK_RET( IsAttached(), wxT("can't refresh unatteched menubar") );
753 WinSendMsg(GetWinHwnd(m_menuBarFrame
), WM_UPDATEFRAME
, (MPARAM
)FCF_MENU
, (MPARAM
)0);
754 } // end of wxMenuBar::Refresh
756 WXHMENU
wxMenuBar::Create()
764 wxCHECK_MSG(!m_hMenu
, TRUE
, wxT("menubar already created"));
767 // Menubars should be associated with a frame otherwise they are popups
769 if (m_menuBarFrame
!= NULL
)
770 hFrame
= GetWinHwnd(m_menuBarFrame
);
772 hFrame
= HWND_DESKTOP
;
774 // Create an empty menu and then fill it with insertions
776 if ((m_hMenu
= ::WinCreateWindow( hFrame
779 ,MS_ACTIONBAR
| WS_SYNCPAINT
| WS_VISIBLE
791 wxLogLastError("WinLoadMenu");
795 size_t nCount
= GetMenuCount();
797 for (size_t i
= 0; i
< nCount
; i
++)
805 // Set the parent and owner of the submenues to be the menubar, not the desktop
807 hSubMenu
= m_menus
[i
]->m_vMenuData
.hwndSubMenu
;
808 if (!::WinSetParent(m_menus
[i
]->m_vMenuData
.hwndSubMenu
, m_hMenu
, FALSE
))
810 vError
= ::WinGetLastError(vHabmain
);
811 sError
= wxPMErrorToStr(vError
);
812 wxLogError("Error setting parent for submenu. Error: %s\n", sError
);
816 if (!::WinSetOwner(m_menus
[i
]->m_vMenuData
.hwndSubMenu
, m_hMenu
))
818 vError
= ::WinGetLastError(vHabmain
);
819 sError
= wxPMErrorToStr(vError
);
820 wxLogError("Error setting parent for submenu. Error: %s\n", sError
);
824 m_menus
[i
]->m_vMenuData
.iPosition
= i
;
826 rc
= (APIRET
)::WinSendMsg(m_hMenu
, MM_INSERTITEM
, (MPARAM
)&m_menus
[i
]->m_vMenuData
, (MPARAM
)m_titles
[i
].c_str());
827 if (rc
== MIT_MEMERROR
|| rc
== MIT_ERROR
)
829 vError
= ::WinGetLastError(vHabmain
);
830 sError
= wxPMErrorToStr(vError
);
831 wxLogError("Error inserting or appending a menuitem. Error: %s\n", sError
);
837 } // end of wxMenuBar::Create
839 // ---------------------------------------------------------------------------
840 // wxMenuBar functions to work with the top level submenus
841 // ---------------------------------------------------------------------------
844 // NB: we don't support owner drawn top level items for now, if we do these
845 // functions would have to be changed to use wxMenuItem as well
847 void wxMenuBar::EnableTop(
852 wxCHECK_RET(IsAttached(), wxT("doesn't work with unattached menubars"));
857 uFlag
= MIA_DISABLED
;
859 nId
= SHORT1FROMMR(::WinSendMsg((HWND
)m_hMenu
, MM_ITEMIDFROMPOSITION
, MPFROMSHORT(nPos
), (MPARAM
)0));
860 if (nId
== MIT_ERROR
)
862 wxLogLastError("LogLastError");
865 ::WinSendMsg((HWND
)m_hMenu
, MM_SETITEMATTR
, MPFROM2SHORT(nId
, TRUE
), MPFROM2SHORT(MIA_DISABLED
, uFlag
));
867 } // end of wxMenuBar::EnableTop
869 void wxMenuBar::SetLabelTop(
871 , const wxString
& rLabel
877 wxCHECK_RET(nPos
< GetMenuCount(), wxT("invalid menu index"));
878 m_titles
[nPos
] = rLabel
;
885 nId
= SHORT1FROMMR(::WinSendMsg((HWND
)m_hMenu
, MM_ITEMIDFROMPOSITION
, MPFROMSHORT(nPos
), (MPARAM
)0));
886 if (nId
== MIT_ERROR
)
888 wxLogLastError("LogLastError");
891 if(!::WinSendMsg( (HWND
)m_hMenu
893 ,MPFROM2SHORT(nId
, TRUE
)
897 wxLogLastError("QueryItem");
901 if (::WinSendMsg(GetHmenu(), MM_SETITEMTEXT
, MPFROMSHORT(nId
), (MPARAM
)rLabel
.c_str()));
903 wxLogLastError("ModifyMenu");
906 } // end of wxMenuBar::SetLabelTop
908 wxString
wxMenuBar::GetLabelTop(
912 wxCHECK_MSG( nPos
< GetMenuCount(), wxEmptyString
,
913 wxT("invalid menu index in wxMenuBar::GetLabelTop") );
914 return m_titles
[nPos
];
915 } // end of wxMenuBar::GetLabelTop
917 // ---------------------------------------------------------------------------
918 // wxMenuBar construction
919 // ---------------------------------------------------------------------------
921 wxMenu
* wxMenuBar::Replace(
924 , const wxString
& rTitle
928 wxString Title
= TextToLabel(rTitle
);
929 wxMenu
* pMenuOld
= wxMenuBarBase::Replace( nPos
935 nId
= SHORT1FROMMR(::WinSendMsg((HWND
)m_hMenu
, MM_ITEMIDFROMPOSITION
, MPFROMSHORT(nPos
), (MPARAM
)0));
936 if (nId
== MIT_ERROR
)
938 wxLogLastError("LogLastError");
943 m_titles
[nPos
] = Title
;
946 ::WinSendMsg((HWND
)m_hMenu
, MM_REMOVEITEM
, MPFROM2SHORT(nId
, TRUE
), (MPARAM
)0);
947 ::WinSendMsg((HWND
)m_hMenu
, MM_INSERTITEM
, (MPARAM
)&pMenu
->m_vMenuData
, (MPARAM
)Title
.c_str());
950 if (pMenuOld
->HasAccels() || pMenu
->HasAccels())
953 // Need to rebuild accell table
957 #endif // wxUSE_ACCEL
961 } // end of wxMenuBar::Replace
963 bool wxMenuBar::Insert(
966 , const wxString
& rTitle
969 wxString Title
= TextToLabel(rTitle
);
970 if (!wxMenuBarBase::Insert( nPos
976 m_titles
.Insert( Title
982 ::WinSendMsg((HWND
)m_hMenu
, MM_INSERTITEM
, (MPARAM
)&pMenu
->m_vMenuData
, (MPARAM
)Title
.c_str());
984 if (pMenu
->HasAccels())
986 // need to rebuild accell table
989 #endif // wxUSE_ACCEL
993 } // end of wxMenuBar::Insert
995 bool wxMenuBar::Append(
997 , const wxString
& rTitle
1000 WXHMENU hSubmenu
= pMenu
? pMenu
->GetHMenu() : 0;
1002 wxCHECK_MSG(hSubmenu
, FALSE
, wxT("can't append invalid menu to menubar"));
1004 wxString Title
= TextToLabel(rTitle
);
1005 if (!wxMenuBarBase::Append(pMenu
, Title
))
1008 m_titles
.Add(Title
);
1012 pMenu
->m_vMenuData
.iPosition
= MIT_END
;
1013 ::WinSendMsg((HWND
)m_hMenu
, MM_INSERTITEM
, (MPARAM
)&pMenu
->m_vMenuData
, (MPARAM
)Title
.c_str());
1015 if (pMenu
->HasAccels())
1018 // Need to rebuild accell table
1020 RebuildAccelTable();
1022 #endif // wxUSE_ACCEL
1026 } // end of wxMenuBar::Append
1028 wxMenu
* wxMenuBar::Remove(
1032 wxMenu
* pMenu
= wxMenuBarBase::Remove(nPos
);
1038 nId
= SHORT1FROMMR(::WinSendMsg((HWND
)GetHmenu(), MM_ITEMIDFROMPOSITION
, MPFROMSHORT(nPos
), (MPARAM
)0));
1039 if (nId
== MIT_ERROR
)
1041 wxLogLastError("LogLastError");
1046 ::WinSendMsg((HWND
)GetHmenu(), MM_REMOVEITEM
, MPFROM2SHORT(nId
, TRUE
), (MPARAM
)0);
1049 if (pMenu
->HasAccels())
1052 // Need to rebuild accell table
1054 RebuildAccelTable();
1056 #endif // wxUSE_ACCEL
1059 m_titles
.Remove(nPos
);
1061 } // end of wxMenuBar::Remove
1065 void wxMenuBar::RebuildAccelTable()
1068 // Merge the accelerators of all menus into one accel table
1070 size_t nAccelCount
= 0;
1072 size_t nCount
= GetMenuCount();
1074 for (i
= 0; i
< nCount
; i
++)
1076 nAccelCount
+= m_menus
[i
]->GetAccelCount();
1081 wxAcceleratorEntry
* pAccelEntries
= new wxAcceleratorEntry
[nAccelCount
];
1084 for (i
= 0; i
< nCount
; i
++)
1086 nAccelCount
+= m_menus
[i
]->CopyAccels(&pAccelEntries
[nAccelCount
]);
1088 m_vAccelTable
= wxAcceleratorTable( nAccelCount
1091 delete [] pAccelEntries
;
1093 } // end of wxMenuBar::RebuildAccelTable
1095 #endif // wxUSE_ACCEL
1097 void wxMenuBar::Attach(
1101 wxASSERT_MSG( !IsAttached(), wxT("menubar already attached!") );
1104 RebuildAccelTable();
1106 // Ensure the accelerator table is set to the frame (not the client!)
1108 if (!::WinSetAccelTable( vHabmain
1109 ,(HWND
)pFrame
->GetHWND()
1110 ,m_vAccelTable
.GetHACCEL()
1112 wxLogLastError("WinSetAccelTable");
1113 #endif // wxUSE_ACCEL
1114 } // end of wxMenuBar::Attach
1116 void wxMenuBar::Detach()
1118 ::WinDestroyWindow((HWND
)m_hMenu
);
1119 m_hMenu
= (WXHMENU
)NULL
;
1120 m_menuBarFrame
= NULL
;
1121 } // end of wxMenuBar::Detach
1123 // ---------------------------------------------------------------------------
1124 // wxMenuBar searching for menu items
1125 // ---------------------------------------------------------------------------
1128 // Find the itemString in menuString, and return the item id or wxNOT_FOUND
1130 int wxMenuBar::FindMenuItem(
1131 const wxString
& rMenuString
1132 , const wxString
& rItemString
1135 wxString sMenuLabel
= wxStripMenuCodes(rMenuString
);
1136 size_t nCount
= GetMenuCount();
1138 for (size_t i
= 0; i
< nCount
; i
++)
1140 wxString sTitle
= wxStripMenuCodes(m_titles
[i
]);
1142 if (rMenuString
== sTitle
)
1143 return m_menus
[i
]->FindItem(rItemString
);
1146 } // end of wxMenuBar::FindMenuItem
1148 wxMenuItem
* wxMenuBar::FindItem(
1150 , wxMenu
** ppItemMenu
1156 wxMenuItem
* pItem
= NULL
;
1157 size_t nCount
= GetMenuCount();
1159 for (size_t i
= 0; !pItem
&& (i
< nCount
); i
++)
1161 pItem
= m_menus
[i
]->FindItem( nId
1166 } // end of wxMenuBar::FindItem
1168 wxMenuItem
* wxMenuBar::FindItem(
1171 , wxMenu
** ppItemMenu
1177 wxMenuItem
* pItem
= NULL
;
1178 size_t nCount
= GetMenuCount();
1180 for (size_t i
= 0; !pItem
&& (i
< nCount
); i
++)
1182 pItem
= m_menus
[i
]->FindItem( nId
1188 } // end of wxMenuBar::FindItem