X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/079c842cae5a3ad08ad930ebc29a33c59acf634d..f114b8580b980c54e7b6194fe6494a86cb833907:/include/wx/mac/radiobut.h diff --git a/include/wx/mac/radiobut.h b/include/wx/mac/radiobut.h index 6a2c5b1c6a..e418d3f495 100644 --- a/include/wx/mac/radiobut.h +++ b/include/wx/mac/radiobut.h @@ -12,16 +12,14 @@ #ifndef _WX_RADIOBUT_H_ #define _WX_RADIOBUT_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "radiobut.h" #endif -#include "wx/control.h" - -WXDLLEXPORT_DATA(extern const char*) wxRadioButtonNameStr; - class WXDLLEXPORT wxRadioButton: public wxControl { + DECLARE_DYNAMIC_CLASS(wxRadioButton) + protected: public: inline wxRadioButton() {} inline wxRadioButton(wxWindow *parent, wxWindowID id, @@ -46,19 +44,14 @@ public: // implementation - virtual void MacHandleControlClick( ControlHandle control , SInt16 controlpart ); + virtual void MacHandleControlClick( WXWidget control , wxInt16 controlpart ); void Command(wxCommandEvent& event); wxRadioButton *AddInCycle(wxRadioButton *cycle); inline wxRadioButton *NextInCycle() {return m_cycle;} - void OnIdle( wxIdleEvent &event ); - -protected: + protected: + wxRadioButton *m_cycle; - -private: - DECLARE_EVENT_TABLE() - DECLARE_DYNAMIC_CLASS(wxRadioButton) }; // Not implemented