]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
6b0d8a01 | 2 | // Name: wx/gtk/checkbox.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
dbf858b5 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
c801d85f KB |
10 | #ifndef __GTKCHECKBOXH__ |
11 | #define __GTKCHECKBOXH__ | |
12 | ||
1e6feb95 | 13 | // ---------------------------------------------------------------------------- |
c801d85f | 14 | // wxCheckBox |
1e6feb95 | 15 | // ---------------------------------------------------------------------------- |
c801d85f | 16 | |
20123d49 | 17 | class WXDLLIMPEXP_CORE wxCheckBox : public wxCheckBoxBase |
c801d85f | 18 | { |
ff8bfdbb | 19 | public: |
2cc0e28f | 20 | wxCheckBox(); |
ff8bfdbb VZ |
21 | wxCheckBox( wxWindow *parent, wxWindowID id, const wxString& label, |
22 | const wxPoint& pos = wxDefaultPosition, | |
23 | const wxSize& size = wxDefaultSize, long style = 0, | |
24 | const wxValidator& validator = wxDefaultValidator, | |
25 | const wxString& name = wxCheckBoxNameStr) | |
6de97a3b | 26 | { |
ff8bfdbb | 27 | Create(parent, id, label, pos, size, style, validator, name); |
6de97a3b | 28 | } |
2cc0e28f VZ |
29 | bool Create(wxWindow *parent, |
30 | wxWindowID id, | |
31 | const wxString& label, | |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, | |
34 | long style = 0, | |
35 | const wxValidator& validator = wxDefaultValidator, | |
36 | const wxString& name = wxCheckBoxNameStr ); | |
37 | ||
debe6624 | 38 | void SetValue( bool state ); |
83058c58 | 39 | bool GetValue() const; |
ff8bfdbb | 40 | |
6b0d8a01 VZ |
41 | virtual void SetLabel( const wxString& label ); |
42 | virtual bool Enable( bool enable = TRUE ); | |
ff8bfdbb | 43 | |
9d522606 RD |
44 | static wxVisualAttributes |
45 | GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); | |
bdbd4e96 | 46 | |
f68586e5 VZ |
47 | protected: |
48 | virtual wxSize DoGetBestSize() const; | |
ef5c70f9 VZ |
49 | virtual void DoApplyWidgetStyle(GtkRcStyle *style); |
50 | virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; | |
f68586e5 | 51 | |
4dcccda6 VS |
52 | void DoSet3StateValue(wxCheckBoxState state); |
53 | wxCheckBoxState DoGet3StateValue() const; | |
4dcccda6 | 54 | |
c71ab7c1 RR |
55 | public: |
56 | // implementation | |
57 | void GTKDisableEvents(); | |
58 | void GTKEnableEvents(); | |
59 | ||
60 | GtkWidget *m_widgetCheckbox; | |
61 | GtkWidget *m_widgetLabel; | |
62 | ||
738f9e5a RR |
63 | private: |
64 | DECLARE_DYNAMIC_CLASS(wxCheckBox) | |
c801d85f KB |
65 | }; |
66 | ||
67 | #endif // __GTKCHECKBOXH__ |