X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/974e8d946f30af2bd79b9029d1d2fb9e0d5b2dd4..e564aa153eb1dc5ebd9f8c9f5f055c2a49c15b05:/include/wx/msw/menuitem.h diff --git a/include/wx/msw/menuitem.h b/include/wx/msw/menuitem.h index aa26ee2158..99d7cda1a1 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,6 +49,7 @@ public: virtual void Enable(bool bDoEnable = TRUE); virtual void Check(bool bDoCheck = TRUE); + virtual bool IsChecked() const; // unfortunately needed to resolve ambiguity between // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable() @@ -59,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) };