]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/palmos/radiobut.h
fix memory leak; allocate the DC before SetFont() is called on the status bar
[wxWidgets.git] / include / wx / palmos / radiobut.h
index 120e940d935880d4c81d892579223fc8ffdb5f78..7c6f4f201ce61236e453801d8737da3fc123748d 100644 (file)
 #ifndef _WX_RADIOBUT_H_
 #define _WX_RADIOBUT_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-    #pragma interface "radiobut.h"
-#endif
-
-class WXDLLEXPORT wxRadioButton: public wxControl
+class WXDLLIMPEXP_CORE wxRadioButton: public wxControl
 {
 public:
     // ctors and creation functions
@@ -51,14 +47,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); }
-
-
 protected:
     virtual wxSize DoGetBestSize() const;
 
@@ -66,8 +59,10 @@ private:
     // common part of all ctors
     void Init();
 
+    uint8_t m_groupID;
+
     // pushButtonCtl or checkboxCtl
-    ControlStyleType m_radioStyle;
+    int m_radioStyle;
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxRadioButton)
 };