Define __VISUALC__ for ICC under Windows again.
[wxWidgets.git] / include / wx / checklst.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/checklst.h
3 // Purpose: wxCheckListBox class interface
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 12.09.00
7 // Copyright: (c) Vadim Zeitlin
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
10
11 #ifndef _WX_CHECKLST_H_BASE_
12 #define _WX_CHECKLST_H_BASE_
13
14 #include "wx/defs.h"
15
16 #if wxUSE_CHECKLISTBOX
17
18 #include "wx/listbox.h"
19
20 // ----------------------------------------------------------------------------
21 // wxCheckListBox: a listbox whose items may be checked
22 // ----------------------------------------------------------------------------
23
24 class WXDLLIMPEXP_CORE wxCheckListBoxBase : public
25 #ifdef __WXWINCE__
26 // keep virtuals synchronised
27 wxListBoxBase
28 #else
29 wxListBox
30 #endif
31 {
32 public:
33 wxCheckListBoxBase() { }
34
35 // check list box specific methods
36 virtual bool IsChecked(unsigned int item) const = 0;
37 virtual void Check(unsigned int item, bool check = true) = 0;
38
39 virtual unsigned int GetCheckedItems(wxArrayInt& checkedItems) const;
40
41 wxDECLARE_NO_COPY_CLASS(wxCheckListBoxBase);
42 };
43
44 #if defined(__WXUNIVERSAL__)
45 #include "wx/univ/checklst.h"
46 #elif defined(__WXWINCE__)
47 #include "wx/msw/wince/checklst.h"
48 #elif defined(__WXMSW__)
49 #include "wx/msw/checklst.h"
50 #elif defined(__WXMOTIF__)
51 #include "wx/motif/checklst.h"
52 #elif defined(__WXGTK20__)
53 #include "wx/gtk/checklst.h"
54 #elif defined(__WXGTK__)
55 #include "wx/gtk1/checklst.h"
56 #elif defined(__WXMAC__)
57 #include "wx/osx/checklst.h"
58 #elif defined(__WXCOCOA__)
59 #include "wx/cocoa/checklst.h"
60 #elif defined(__WXPM__)
61 #include "wx/os2/checklst.h"
62 #endif
63
64 #endif // wxUSE_CHECKLISTBOX
65
66 #endif
67 // _WX_CHECKLST_H_BASE_