- // ctor & dtor
- wxMenuItem(wxMenu *pParentMenu = NULL, int id = ID_SEPARATOR,
- const wxString& strName = "", const wxString& wxHelp = "",
- bool bCheckable = FALSE, wxMenu *pSubMenu = NULL);
- virtual ~wxMenuItem();
+ //
+ // ctor & dtor
+ //
+ wxMenuItem( wxMenu* pParentMenu = NULL
+ ,int nId = wxID_SEPARATOR
+ ,const wxString& rStrName = wxEmptyString
+ ,const wxString& rWxHelp = wxEmptyString
+ ,wxItemKind eKind = wxITEM_NORMAL
+ ,wxMenu* pSubMenu = NULL
+ );
+
+ //
+ // Depricated, do not use in new code
+ //
+ wxMenuItem( wxMenu* pParentMenu
+ ,int vId
+ ,const wxString& rsText
+ ,const wxString& rsHelp
+ ,bool bIsCheckable
+ ,wxMenu* pSubMenu = NULL
+ );
+ virtual ~wxMenuItem();
+
+ //
+ // Override base class virtuals
+ //
+ virtual void SetItemLabel(const wxString& rStrName);
+
+ virtual void Enable(bool bDoEnable = true);
+ virtual void Check(bool bDoCheck = true);
+ virtual bool IsChecked(void) const;
+
+ //
+ // Unfortunately needed to resolve ambiguity between
+ // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable()
+ //
+ bool IsCheckable(void) const { return wxMenuItemBase::IsCheckable(); }
+
+ //
+ // The id for a popup menu is really its menu handle (as required by
+ // ::AppendMenu() API), so this function will return either the id or the
+ // menu handle depending on what we're
+ //
+ int GetRealId(void) const;
+
+ //
+ // Mark item as belonging to the given radio group
+ //
+ void SetAsRadioGroupStart(void);
+ void SetRadioGroupStart(int nStart);
+ void SetRadioGroupEnd(int nEnd);
+
+ //
+ // All OS/2PM Submenus and menus have one of these
+ //
+ MENUITEM m_vMenuData;