1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCheckListBox class interface
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CHECKLST_H_BASE_
13 #define _WX_CHECKLST_H_BASE_
15 #if wxUSE_CHECKLISTBOX
17 #include "wx/listbox.h"
19 // ----------------------------------------------------------------------------
20 // wxCheckListBox: a listbox whose items may be checked
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxCheckListBoxBase
: public wxListBox
26 // check list box specific methods
27 virtual bool IsChecked(size_t item
) const = 0;
28 virtual void Check(size_t item
, bool check
= TRUE
) = 0;
31 #if defined(__WXUNIVERSAL__)
32 #include "wx/univ/checklst.h"
33 #elif defined(__WXMSW__)
34 #include "wx/msw/checklst.h"
35 #elif defined(__WXMOTIF__)
36 #include "wx/motif/checklst.h"
37 #elif defined(__WXGTK__)
38 #include "wx/gtk/checklst.h"
39 #elif defined(__WXQT__)
40 #include "wx/qt/checklst.h"
41 #elif defined(__WXMAC__)
42 #include "wx/mac/checklst.h"
43 #elif defined(__WXPM__)
44 #include "wx/os2/checklst.h"
45 #elif defined(__WXSTUBS__)
46 #include "wx/stubs/checklst.h"
49 #endif // wxUSE_CHECKLISTBOX
52 // _WX_CHECKLST_H_BASE_