]> git.saurik.com Git - wxWidgets.git/blob - include/wx/checkbox.h
wxCursorRefData inherits from wxObjectRefData instead of wxBitmapRefData
[wxWidgets.git] / include / wx / checkbox.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/checkbox.h
3 // Purpose: wxCheckBox class interface
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 07.09.00
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_CHECKBOX_H_BASE_
13 #define _WX_CHECKBOX_H_BASE_
14
15 #include "wx/defs.h"
16
17 #if wxUSE_CHECKBOX
18
19 #include "wx/control.h"
20
21 WXDLLEXPORT_DATA(extern const wxChar*) wxCheckBoxNameStr;
22
23 // ----------------------------------------------------------------------------
24 // wxCheckBox: a control which shows a label and a box which may be checked
25 // ----------------------------------------------------------------------------
26
27 class WXDLLEXPORT wxCheckBoxBase : public wxControl
28 {
29 public:
30 // set/get the checked status of the listbox
31 virtual void SetValue(bool value) = 0;
32 virtual bool GetValue() const = 0;
33
34 bool IsChecked() const { return GetValue(); }
35 };
36
37 #if defined(__WXUNIVERSAL__)
38 #include "wx/univ/checkbox.h"
39 #elif defined(__WXMSW__)
40 #include "wx/msw/checkbox.h"
41 #elif defined(__WXMOTIF__)
42 #include "wx/motif/checkbox.h"
43 #elif defined(__WXGTK__)
44 #include "wx/gtk/checkbox.h"
45 #elif defined(__WXMAC__)
46 #include "wx/mac/checkbox.h"
47 #elif defined(__WXCOCOA__)
48 #include "wx/cocoa/checkbox.h"
49 #elif defined(__WXPM__)
50 #include "wx/os2/checkbox.h"
51 #endif
52
53 #endif // wxUSE_CHECKBOX
54
55 #endif
56 // _WX_CHECKBOX_H_BASE_