]>
Commit | Line | Data |
---|---|---|
8cf73271 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: checklst.h | |
3 | // Purpose: wxCheckListBox class - a listbox with checkable items | |
4 | // Note: this is an optional class. | |
5 | // Author: Stefan Csomor | |
6 | // Modified by: | |
7 | // Created: 1998-01-01 | |
8 | // RCS-ID: $Id$ | |
9 | // Copyright: (c) Stefan Csomor | |
65571936 | 10 | // Licence: wxWindows licence |
8cf73271 SC |
11 | /////////////////////////////////////////////////////////////////////////////// |
12 | ||
13 | #ifndef _WX_CHECKLST_H_ | |
14 | #define _WX_CHECKLST_H_ | |
15 | ||
16 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
17 | #pragma interface "checklst.h" | |
18 | #endif | |
19 | ||
20 | #if !defined(__MWERKS__) && !defined(__UNIX__) | |
21 | typedef unsigned int size_t; | |
22 | #endif | |
23 | ||
24 | class WXDLLEXPORT wxCheckListBox : public wxCheckListBoxBase | |
25 | { | |
26 | DECLARE_DYNAMIC_CLASS(wxCheckListBox) | |
27 | public: | |
28 | // ctors | |
29 | wxCheckListBox() { Init(); } | |
30 | wxCheckListBox(wxWindow *parent, | |
31 | wxWindowID id, | |
32 | const wxPoint& pos = wxDefaultPosition, | |
33 | const wxSize& size = wxDefaultSize, | |
34 | int nStrings = 0, | |
35 | const wxString *choices = NULL, | |
36 | long style = 0, | |
37 | const wxValidator& validator = wxDefaultValidator, | |
38 | const wxString& name = wxListBoxNameStr) | |
39 | { | |
40 | Init(); | |
41 | ||
42 | Create(parent, id, pos, size, nStrings, choices, style, validator, name); | |
43 | } | |
44 | wxCheckListBox(wxWindow *parent, | |
45 | wxWindowID id, | |
46 | const wxPoint& pos, | |
47 | const wxSize& size, | |
48 | const wxArrayString& choices, | |
49 | long style = 0, | |
50 | const wxValidator& validator = wxDefaultValidator, | |
51 | const wxString& name = wxListBoxNameStr) | |
52 | { | |
53 | Init(); | |
54 | ||
55 | Create(parent, id, pos, size, choices, style, validator, name); | |
56 | } | |
57 | ||
58 | bool Create(wxWindow *parent, | |
59 | wxWindowID id, | |
60 | const wxPoint& pos = wxDefaultPosition, | |
61 | const wxSize& size = wxDefaultSize, | |
62 | int nStrings = 0, | |
63 | const wxString *choices = NULL, | |
64 | long style = 0, | |
65 | const wxValidator& validator = wxDefaultValidator, | |
66 | const wxString& name = wxListBoxNameStr); | |
67 | bool Create(wxWindow *parent, | |
68 | wxWindowID id, | |
69 | const wxPoint& pos, | |
70 | const wxSize& size, | |
71 | const wxArrayString& choices, | |
72 | long style = 0, | |
73 | const wxValidator& validator = wxDefaultValidator, | |
74 | const wxString& name = wxListBoxNameStr); | |
75 | ||
19de24fe SC |
76 | // items may be checked |
77 | bool IsChecked(size_t uiIndex) const; | |
78 | void Check(size_t uiIndex, bool bCheck = TRUE); | |
8cf73271 | 79 | |
8cf73271 SC |
80 | |
81 | // override all methods which add/delete items to update m_checks array as | |
82 | // well | |
83 | virtual void Delete(int n); | |
19de24fe SC |
84 | // the array containing the checked status of the items |
85 | wxArrayInt m_checks; | |
86 | ||
8cf73271 SC |
87 | protected: |
88 | virtual int DoAppend(const wxString& item); | |
89 | virtual void DoInsertItems(const wxArrayString& items, int pos); | |
90 | virtual void DoSetItems(const wxArrayString& items, void **clientData); | |
91 | virtual void DoClear(); | |
92 | // common part of all ctors | |
93 | void Init(); | |
94 | private: | |
19de24fe SC |
95 | |
96 | DECLARE_EVENT_TABLE() | |
8cf73271 SC |
97 | }; |
98 | ||
99 | #endif | |
100 | // _WX_CHECKLST_H_ |