]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/menuitem.h
Removed helpwxht.h/cpp (old wxHelpControllerHtml class)
[wxWidgets.git] / include / wx / msw / menuitem.h
index c848d5840a58f9b4b2021bf603f40bf3a8f53ad9..99d7cda1a1a07ca79e24f67ec72957d03d307d9f 100644 (file)
@@ -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)
 };