]> git.saurik.com Git - wxWidgets.git/blob - include/wx/motif/radiobut.h
Added wxRichToolTip class.
[wxWidgets.git] / include / wx / motif / radiobut.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/radiobut.h
3 // Purpose: wxRadioButton class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_RADIOBUT_H_
13 #define _WX_RADIOBUT_H_
14
15 class WXDLLIMPEXP_CORE wxRadioButton: public wxControl
16 {
17 DECLARE_DYNAMIC_CLASS(wxRadioButton)
18 public:
19 wxRadioButton();
20 virtual ~wxRadioButton() { RemoveFromCycle(); }
21
22 inline wxRadioButton(wxWindow *parent, wxWindowID id,
23 const wxString& label,
24 const wxPoint& pos = wxDefaultPosition,
25 const wxSize& size = wxDefaultSize, long style = 0,
26 const wxValidator& validator = wxDefaultValidator,
27 const wxString& name = wxRadioButtonNameStr)
28 {
29 Create(parent, id, label, pos, size, style, validator, name);
30 }
31
32 bool Create(wxWindow *parent, wxWindowID id,
33 const wxString& label,
34 const wxPoint& pos = wxDefaultPosition,
35 const wxSize& size = wxDefaultSize, long style = 0,
36 const wxValidator& validator = wxDefaultValidator,
37 const wxString& name = wxRadioButtonNameStr);
38
39 virtual void SetValue(bool val);
40 virtual bool GetValue() const ;
41
42 void Command(wxCommandEvent& event);
43
44 // Implementation
45 virtual void ChangeBackgroundColour();
46
47 // *this function is an implementation detail*
48 // clears the selection in the radiobuttons in the cycle
49 // and returns the old selection (if any)
50 wxRadioButton* ClearSelections();
51 protected:
52 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
53 private:
54 wxRadioButton* AddInCycle(wxRadioButton* cycle);
55 void RemoveFromCycle();
56 wxRadioButton* NextInCycle() { return m_cycle; }
57
58 wxRadioButton *m_cycle;
59 };
60
61 #endif
62 // _WX_RADIOBUT_H_