]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/checkbox.h
Should compile better if wchar_t is not available.
[wxWidgets.git] / include / wx / gtk1 / checkbox.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: checkbox.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10
11 #ifndef __GTKCHECKBOXH__
12 #define __GTKCHECKBOXH__
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "wx/defs.h"
19 #include "wx/object.h"
20 #include "wx/list.h"
21 #include "wx/control.h"
22
23 //-----------------------------------------------------------------------------
24 // classes
25 //-----------------------------------------------------------------------------
26
27 class wxCheckBox;
28
29 //-----------------------------------------------------------------------------
30 // global data
31 //-----------------------------------------------------------------------------
32
33 extern const char *wxCheckBoxNameStr;
34
35 //-----------------------------------------------------------------------------
36 // wxCheckBox
37 //-----------------------------------------------------------------------------
38
39 class wxCheckBox: public wxControl
40 {
41 DECLARE_DYNAMIC_CLASS(wxCheckBox)
42
43 public:
44 wxCheckBox();
45 wxCheckBox( wxWindow *parent, wxWindowID id, const wxString& label,
46 const wxPoint& pos = wxDefaultPosition,
47 const wxSize& size = wxDefaultSize, long style = 0,
48 const wxValidator& validator = wxDefaultValidator,
49 const wxString& name = wxCheckBoxNameStr)
50 {
51 Create(parent, id, label, pos, size, style, validator, name);
52 }
53 bool Create(wxWindow *parent,
54 wxWindowID id,
55 const wxString& label,
56 const wxPoint& pos = wxDefaultPosition,
57 const wxSize& size = wxDefaultSize,
58 long style = 0,
59 const wxValidator& validator = wxDefaultValidator,
60 const wxString& name = wxCheckBoxNameStr );
61
62 void SetValue( bool state );
63 bool GetValue() const;
64
65 void SetLabel( const wxString& label );
66 void Enable( bool enable );
67
68 // implementation
69 void ApplyWidgetStyle();
70
71 bool m_blockFirstEvent;
72 GtkWidget *m_widgetCheckbox;
73 GtkWidget *m_widgetLabel;
74 };
75
76 #endif // __GTKCHECKBOXH__