]>
Commit | Line | Data |
---|---|---|
31618973 WS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/wince/checklst.h | |
3 | // Purpose: wxCheckListBox class - a listbox with checkable items | |
4 | // Author: Wlodzimierz ABX Skiba | |
5 | // Modified by: | |
6 | // Created: 30.10.2005 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Wlodzimierz Skiba | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __CHECKLSTCE__H_ | |
13 | #define __CHECKLSTCE__H_ | |
14 | ||
53a2db12 | 15 | class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase |
31618973 WS |
16 | { |
17 | public: | |
18 | // ctors | |
19 | wxCheckListBox(); | |
20 | wxCheckListBox(wxWindow *parent, wxWindowID id, | |
21 | const wxPoint& pos = wxDefaultPosition, | |
22 | const wxSize& size = wxDefaultSize, | |
23 | int nStrings = 0, | |
24 | const wxString choices[] = NULL, | |
25 | long style = 0, | |
26 | const wxValidator& validator = wxDefaultValidator, | |
27 | const wxString& name = wxListBoxNameStr); | |
28 | wxCheckListBox(wxWindow *parent, wxWindowID id, | |
29 | const wxPoint& pos, | |
30 | const wxSize& size, | |
31 | const wxArrayString& choices, | |
32 | long style = 0, | |
33 | const wxValidator& validator = wxDefaultValidator, | |
34 | const wxString& name = wxListBoxNameStr); | |
35 | virtual ~wxCheckListBox(); | |
36 | ||
37 | bool Create(wxWindow *parent, wxWindowID id, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | int n = 0, const wxString choices[] = NULL, | |
41 | long style = 0, | |
42 | const wxValidator& validator = wxDefaultValidator, | |
43 | const wxString& name = wxListBoxNameStr); | |
44 | bool Create(wxWindow *parent, wxWindowID id, | |
45 | const wxPoint& pos, | |
46 | const wxSize& size, | |
47 | const wxArrayString& choices, | |
48 | long style = 0, | |
49 | const wxValidator& validator = wxDefaultValidator, | |
50 | const wxString& name = wxListBoxNameStr); | |
51 | ||
31618973 | 52 | // items may be checked |
aa61d352 VZ |
53 | virtual bool IsChecked(unsigned int uiIndex) const; |
54 | virtual void Check(unsigned int uiIndex, bool bCheck = true); | |
31618973 WS |
55 | |
56 | // public interface derived from wxListBox and lower classes | |
d6f2a891 VZ |
57 | virtual void DoClear(); |
58 | virtual void DoDeleteOneItem(unsigned int n); | |
aa61d352 | 59 | virtual unsigned int GetCount() const; |
31618973 WS |
60 | virtual int GetSelection() const; |
61 | virtual int GetSelections(wxArrayInt& aSelections) const; | |
aa61d352 | 62 | virtual wxString GetString(unsigned int n) const; |
31618973 | 63 | virtual bool IsSelected(int n) const; |
aa61d352 | 64 | virtual void SetString(unsigned int n, const wxString& s); |
31618973 | 65 | |
f7273ce0 JS |
66 | // Implementation |
67 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); | |
31618973 WS |
68 | protected: |
69 | ||
70 | void OnSize(wxSizeEvent& event); | |
71 | ||
72 | // protected interface derived from wxListBox and lower classes | |
a236aa20 VZ |
73 | virtual int DoInsertItems(const wxArrayStringsAdapter& items, |
74 | unsigned int pos, | |
75 | void **clientData, wxClientDataType type); | |
76 | ||
aa61d352 | 77 | virtual void* DoGetItemClientData(unsigned int n) const; |
aa61d352 | 78 | virtual void DoSetItemClientData(unsigned int n, void* clientData); |
a236aa20 | 79 | virtual void DoSetFirstItem(int n); |
31618973 WS |
80 | virtual void DoSetSelection(int n, bool select); |
81 | // convert our styles to Windows | |
82 | virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; | |
83 | ||
84 | private: | |
31618973 WS |
85 | wxArrayPtrVoid m_itemsClientData; |
86 | ||
87 | DECLARE_EVENT_TABLE() | |
88 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckListBox) | |
89 | }; | |
90 | ||
91 | #endif //_CHECKLSTCE_H |