]> git.saurik.com Git - wxWidgets.git/blame - include/wx/checkbox.h
Removed wxHTMLHelpControllerBase (putting the
[wxWidgets.git] / include / wx / checkbox.h
CommitLineData
1e6feb95
VZ
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
34138703
JS
12#ifndef _WX_CHECKBOX_H_BASE_
13#define _WX_CHECKBOX_H_BASE_
c801d85f 14
1e6feb95
VZ
15#if wxUSE_CHECKBOX
16
17#include "wx/control.h"
18
19WXDLLEXPORT_DATA(extern const wxChar*) wxCheckBoxNameStr;
20
21// ----------------------------------------------------------------------------
22// wxCheckBox: a control which shows a label and a box which may be checked
23// ----------------------------------------------------------------------------
24
25class WXDLLEXPORT wxCheckBoxBase : public wxControl
26{
27public:
28 // set/get the checked status of the listbox
29 virtual void SetValue(bool value) = 0;
30 virtual bool GetValue() const = 0;
31
32 bool IsChecked() const { return GetValue(); }
33};
34
35#if defined(__WXUNIVERSAL__)
36 #include "wx/univ/checkbox.h"
37#elif defined(__WXMSW__)
38 #include "wx/msw/checkbox.h"
2049ba38 39#elif defined(__WXMOTIF__)
1e6feb95 40 #include "wx/motif/checkbox.h"
2049ba38 41#elif defined(__WXGTK__)
1e6feb95 42 #include "wx/gtk/checkbox.h"
34138703 43#elif defined(__WXMAC__)
1e6feb95 44 #include "wx/mac/checkbox.h"
e64df9bc
DE
45#elif defined(__WXCOCOA__)
46 #include "wx/cocoa/checkbox.h"
1777b9bb 47#elif defined(__WXPM__)
1e6feb95 48 #include "wx/os2/checkbox.h"
c801d85f
KB
49#endif
50
1e6feb95
VZ
51#endif // wxUSE_CHECKBOX
52
c801d85f 53#endif
34138703 54 // _WX_CHECKBOX_H_BASE_