]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ef94bfc | 2 | // Name: wx/gtk1/radiobut.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
f96aa4d9 | 5 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 6 | // Licence: wxWindows licence |
c801d85f KB |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
c801d85f KB |
9 | #ifndef __GTKRADIOBUTTONH__ |
10 | #define __GTKRADIOBUTTONH__ | |
11 | ||
6de97a3b RR |
12 | //----------------------------------------------------------------------------- |
13 | // wxRadioButton | |
14 | //----------------------------------------------------------------------------- | |
15 | ||
20123d49 | 16 | class WXDLLIMPEXP_CORE wxRadioButton: public wxControl |
6de97a3b | 17 | { |
953704c1 | 18 | public: |
2b4f3c9f VZ |
19 | wxRadioButton() { } |
20 | wxRadioButton( wxWindow *parent, | |
21 | wxWindowID id, | |
22 | const wxString& label, | |
23 | const wxPoint& pos = wxDefaultPosition, | |
24 | const wxSize& size = wxDefaultSize, | |
25 | long style = 0, | |
26 | const wxValidator& validator = wxDefaultValidator, | |
27 | const wxString& name = wxRadioButtonNameStr ) | |
2f073eb2 RR |
28 | { |
29 | Create( parent, id, label, pos, size, style, validator, name ); | |
30 | } | |
2b4f3c9f VZ |
31 | |
32 | bool Create( wxWindow *parent, | |
33 | wxWindowID id, | |
34 | const wxString& label, | |
35 | const wxPoint& pos = wxDefaultPosition, | |
36 | const wxSize& size = wxDefaultSize, | |
37 | long style = 0, | |
38 | const wxValidator& validator = wxDefaultValidator, | |
39 | const wxString& name = wxRadioButtonNameStr ); | |
40 | ||
2f073eb2 RR |
41 | virtual void SetLabel(const wxString& label); |
42 | virtual void SetValue(bool val); | |
43 | virtual bool GetValue() const; | |
6b0d8a01 | 44 | virtual bool Enable( bool enable = TRUE ); |
2b4f3c9f | 45 | |
9d522606 RD |
46 | static wxVisualAttributes |
47 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
48 | ||
2b4f3c9f VZ |
49 | // implementation |
50 | ||
51 | virtual bool IsRadioButton() const { return TRUE; } | |
52 | ||
f40fdaa3 | 53 | void DoApplyWidgetStyle(GtkRcStyle *style); |
2f073eb2 RR |
54 | bool IsOwnGtkWindow( GdkWindow *window ); |
55 | void OnInternalIdle(); | |
2b4f3c9f | 56 | |
9864c56d | 57 | bool m_blockEvent; |
2b4f3c9f | 58 | |
db434467 RR |
59 | protected: |
60 | virtual wxSize DoGetBestSize() const; | |
61 | ||
2f073eb2 RR |
62 | private: |
63 | DECLARE_DYNAMIC_CLASS(wxRadioButton) | |
6de97a3b | 64 | }; |
c801d85f KB |
65 | |
66 | #endif // __GTKRADIOBUTTONH__ |