1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRadioButton class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RADIOBUT_H_
13 #define _WX_RADIOBUT_H_
16 #pragma interface "radiobut.h"
19 #include "wx/control.h"
21 WXDLLEXPORT_DATA(extern const char*) wxRadioButtonNameStr
;
23 class WXDLLEXPORT wxRadioButton
: public wxControl
25 DECLARE_DYNAMIC_CLASS(wxRadioButton
)
29 inline wxRadioButton(wxWindow
*parent
, wxWindowID id
,
30 const wxString
& label
,
31 const wxPoint
& pos
= wxDefaultPosition
,
32 const wxSize
& size
= wxDefaultSize
, long style
= 0,
33 const wxValidator
& validator
= wxDefaultValidator
,
34 const wxString
& name
= wxRadioButtonNameStr
)
36 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
39 bool Create(wxWindow
*parent
, wxWindowID id
,
40 const wxString
& label
,
41 const wxPoint
& pos
= wxDefaultPosition
,
42 const wxSize
& size
= wxDefaultSize
, long style
= 0,
43 const wxValidator
& validator
= wxDefaultValidator
,
44 const wxString
& name
= wxRadioButtonNameStr
);
46 virtual void SetValue(bool val
);
47 virtual bool GetValue() const ;
49 void Command(wxCommandEvent
& event
);
52 virtual void ChangeFont();
53 virtual void ChangeBackgroundColour();
54 virtual void ChangeForegroundColour();
55 WXWidget
GetTopWidget() const { return m_formWidget
; }
56 WXWidget
GetLabelWidget() const { return m_labelWidget
; }
59 WXWidget m_formWidget
;
60 WXWidget m_labelWidget
;
65 class WXDLLEXPORT wxBitmap
;
67 WXDLLEXPORT_DATA(extern const char*) wxBitmapRadioButtonNameStr
;
69 class WXDLLEXPORT wxBitmapRadioButton
: public wxRadioButton
71 DECLARE_DYNAMIC_CLASS(wxBitmapRadioButton
)
73 wxBitmap
*theButtonBitmap
;
75 inline wxBitmapRadioButton() { theButtonBitmap
= NULL
; }
76 inline wxBitmapRadioButton(wxWindow
*parent
, wxWindowID id
,
77 const wxBitmap
*label
,
78 const wxPoint
& pos
= wxDefaultPosition
,
79 const wxSize
& size
= wxDefaultSize
, long style
= 0,
80 const wxValidator
& validator
= wxDefaultValidator
,
81 const wxString
& name
= wxBitmapRadioButtonNameStr
)
83 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
86 bool Create(wxWindow
*parent
, wxWindowID id
,
87 const wxBitmap
*label
,
88 const wxPoint
& pos
= wxDefaultPosition
,
89 const wxSize
& size
= wxDefaultSize
, long style
= 0,
90 const wxValidator
& validator
= wxDefaultValidator
,
91 const wxString
& name
= wxBitmapRadioButtonNameStr
);
93 virtual void SetLabel(const wxBitmap
*label
);
94 virtual void SetValue(bool val
) ;
95 virtual bool GetValue() const ;