X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3dfac9707a98b245370bdffdf3fd30def0122a8d..e0c83227fdafd281d6f869e42fc23635cfb37efb:/include/wx/msw/menuitem.h diff --git a/include/wx/msw/menuitem.h b/include/wx/msw/menuitem.h index eaced8f990..dbc4478b3d 100644 --- a/include/wx/msw/menuitem.h +++ b/include/wx/msw/menuitem.h @@ -39,7 +39,7 @@ public: int id = wxID_SEPARATOR, const wxString& name = wxEmptyString, const wxString& help = wxEmptyString, - bool isCheckable = FALSE, + wxItemKind kind = wxItem_Normal, wxMenu *subMenu = (wxMenu *)NULL); virtual ~wxMenuItem(); @@ -49,7 +49,7 @@ public: virtual void Enable(bool bDoEnable = TRUE); virtual void Check(bool bDoCheck = TRUE); - virtual void IsChecked() const; + virtual bool IsChecked() const; // unfortunately needed to resolve ambiguity between // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable() @@ -60,10 +60,19 @@ public: // menu handle depending on what we're int GetRealId() const; - // delete the submenu - void DeleteSubMenu(); + // mark item as belonging to the given radio group + void SetRadioGroup(int start, int end) + { + m_startRadioGroup = start; + m_endRadioGroup = end; + } private: + // the positions of the first and last items of the radio group this item + // belongs to or -1 + int m_startRadioGroup, + m_endRadioGroup; + DECLARE_DYNAMIC_CLASS(wxMenuItem) };