X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1e6feb95a79834836e88143b15d9f424ebe79621..e564aa153eb1dc5ebd9f8c9f5f055c2a49c15b05:/include/wx/msw/menuitem.h diff --git a/include/wx/msw/menuitem.h b/include/wx/msw/menuitem.h index c848d5840a..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(); @@ -60,7 +60,19 @@ public: // menu handle depending on what we're int GetRealId() const; + // 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) };