]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/radiobut.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRadioButton declaration
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RADIOBUT_H_BASE_
13 #define _WX_RADIOBUT_H_BASE_
20 There is no wxRadioButtonBase class as wxRadioButton interface is the same
21 as wxCheckBox(Base), but under some platforms wxRadioButton really
22 derives from wxCheckBox and on the others it doesn't.
24 The pseudo-declaration of wxRadioButtonBase would look like this:
26 class wxRadioButtonBase : public ...
29 virtual void SetValue(bool value);
30 virtual bool GetValue() const;
34 #include "wx/control.h"
36 extern WXDLLIMPEXP_DATA_CORE(const char) wxRadioButtonNameStr
[];
38 #if defined(__WXUNIVERSAL__)
39 #include "wx/univ/radiobut.h"
40 #elif defined(__WXMSW__)
41 #include "wx/msw/radiobut.h"
42 #elif defined(__WXMOTIF__)
43 #include "wx/motif/radiobut.h"
44 #elif defined(__WXGTK20__)
45 #include "wx/gtk/radiobut.h"
46 #elif defined(__WXGTK__)
47 #include "wx/gtk1/radiobut.h"
48 #elif defined(__WXMAC__)
49 #include "wx/osx/radiobut.h"
50 #elif defined(__WXCOCOA__)
51 #include "wx/cocoa/radiobut.h"
52 #elif defined(__WXPM__)
53 #include "wx/os2/radiobut.h"
54 #elif defined(__WXPALMOS__)
55 #include "wx/palmos/radiobut.h"
58 #endif // wxUSE_RADIOBTN
61 // _WX_RADIOBUT_H_BASE_