]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/radiobut.h
more tweaks to drop down arrow drawing (Andreas Pflug)
[wxWidgets.git] / include / wx / palmos / radiobut.h
index 90ffc63c18b57922acfaf41ffc3fa7893161fc23..db4746f1d311a5fefe22c959dc626501666e61f0 100644 (file)
@@ -51,6 +51,11 @@ public:
 
     // implementation only from now on
     virtual void Command(wxCommandEvent& event);
+    void SetGroup(uint8_t group);
+
+    // send a notification event, return true if processed
+    bool SendClickEvent();
+
     virtual void ApplyParentThemeBackground(const wxColour& bg)
         { SetBackgroundColour(bg); }
 
@@ -62,6 +67,10 @@ private:
     // common part of all ctors
     void Init();
 
+    uint8_t m_groupID;
+
+    // pushButtonCtl or checkboxCtl
+    ControlStyleType m_radioStyle;
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton)
 };