]>
Commit | Line | Data |
---|---|---|
1e6feb95 VZ |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/checklst.h | |
3 | // Purpose: wxCheckListBox class interface | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 12.09.00 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
65571936 | 9 | // Licence: wxWindows licence |
1e6feb95 VZ |
10 | /////////////////////////////////////////////////////////////////////////////// |
11 | ||
34138703 JS |
12 | #ifndef _WX_CHECKLST_H_BASE_ |
13 | #define _WX_CHECKLST_H_BASE_ | |
14 | ||
91012d56 VZ |
15 | #include "wx/defs.h" |
16 | ||
1e6feb95 VZ |
17 | #if wxUSE_CHECKLISTBOX |
18 | ||
19 | #include "wx/listbox.h" | |
20 | ||
21 | // ---------------------------------------------------------------------------- | |
22 | // wxCheckListBox: a listbox whose items may be checked | |
23 | // ---------------------------------------------------------------------------- | |
24 | ||
53a2db12 | 25 | class WXDLLIMPEXP_CORE wxCheckListBoxBase : public |
31618973 WS |
26 | #ifdef __WXWINCE__ |
27 | // keep virtuals synchronised | |
28 | wxListBoxBase | |
29 | #else | |
30 | wxListBox | |
31 | #endif | |
1e6feb95 VZ |
32 | { |
33 | public: | |
6463b9f5 | 34 | wxCheckListBoxBase() { } |
fc7a2a60 | 35 | |
1e6feb95 | 36 | // check list box specific methods |
aa61d352 VZ |
37 | virtual bool IsChecked(unsigned int item) const = 0; |
38 | virtual void Check(unsigned int item, bool check = true) = 0; | |
fc7a2a60 | 39 | |
c0c133e1 | 40 | wxDECLARE_NO_COPY_CLASS(wxCheckListBoxBase); |
1e6feb95 VZ |
41 | }; |
42 | ||
43 | #if defined(__WXUNIVERSAL__) | |
44 | #include "wx/univ/checklst.h" | |
31618973 WS |
45 | #elif defined(__WXWINCE__) |
46 | #include "wx/msw/wince/checklst.h" | |
1e6feb95 VZ |
47 | #elif defined(__WXMSW__) |
48 | #include "wx/msw/checklst.h" | |
34138703 | 49 | #elif defined(__WXMOTIF__) |
1e6feb95 | 50 | #include "wx/motif/checklst.h" |
1be7a35c | 51 | #elif defined(__WXGTK20__) |
1e6feb95 | 52 | #include "wx/gtk/checklst.h" |
1be7a35c MR |
53 | #elif defined(__WXGTK__) |
54 | #include "wx/gtk1/checklst.h" | |
34138703 | 55 | #elif defined(__WXMAC__) |
ef0e9220 | 56 | #include "wx/osx/checklst.h" |
e64df9bc DE |
57 | #elif defined(__WXCOCOA__) |
58 | #include "wx/cocoa/checklst.h" | |
1777b9bb | 59 | #elif defined(__WXPM__) |
1e6feb95 | 60 | #include "wx/os2/checklst.h" |
34138703 JS |
61 | #endif |
62 | ||
1e6feb95 VZ |
63 | #endif // wxUSE_CHECKLISTBOX |
64 | ||
34138703 JS |
65 | #endif |
66 | // _WX_CHECKLST_H_BASE_ |