]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/radiobox.h
MSW compilation fixes - widgets sample runs!
[wxWidgets.git] / include / wx / mac / radiobox.h
index 23536ff245fd2ccc7d43031f3e62d190907cb1b3..f46628180e3b7df67ea601855943259f32973e17 100644 (file)
 WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr;
 
 // List box item
-class WXDLLEXPORT wxBitmap ;
+class  wxBitmap ;
 
-class WXDLLEXPORT wxRadioButton ;
+class  wxRadioButton ;
 
-class WXDLLEXPORT wxRadioBox: public wxControl
+class  wxRadioBox: public wxControl
 {
        DECLARE_DYNAMIC_CLASS(wxRadioBox)
 public:
@@ -47,7 +47,7 @@ public:
              const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr);
 
 // Specific functions (in wxWindows2 reference)
-       void Enable(bool enable);
+       bool Enable(bool enable);
        void Enable(int item, bool enable);
        int FindString(const wxString& s) const;
        wxString GetLabel() const;
@@ -71,6 +71,7 @@ public:
        inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; }
        inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; }
 
+       void OnRadioButton( wxCommandEvent& event ) ;
 protected:
        wxRadioButton           *m_radioButtonCycle;
        
@@ -85,6 +86,7 @@ protected:
        int GetNumHor() const;
        int GetNumVer() const;
 
+    DECLARE_EVENT_TABLE()
 };
 
 #endif