]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/wince/checklst.h
Add wxUSE_UIACTIONSIMULATOR and turn it off by default.
[wxWidgets.git] / include / wx / msw / wince / checklst.h
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
15 class WXDLLIMPEXP_CORE wxCheckListBox : public wxCheckListBoxBase
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
52 // items may be checked
53 virtual bool IsChecked(unsigned int uiIndex) const;
54 virtual void Check(unsigned int uiIndex, bool bCheck = true);
55
56 // public interface derived from wxListBox and lower classes
57 virtual void DoClear();
58 virtual void DoDeleteOneItem(unsigned int n);
59 virtual unsigned int GetCount() const;
60 virtual int GetSelection() const;
61 virtual int GetSelections(wxArrayInt& aSelections) const;
62 virtual wxString GetString(unsigned int n) const;
63 virtual bool IsSelected(int n) const;
64 virtual void SetString(unsigned int n, const wxString& s);
65
66 // Implementation
67 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
68 protected:
69
70 void OnSize(wxSizeEvent& event);
71
72 // protected interface derived from wxListBox and lower classes
73 virtual int DoInsertItems(const wxArrayStringsAdapter& items,
74 unsigned int pos,
75 void **clientData, wxClientDataType type);
76
77 virtual void* DoGetItemClientData(unsigned int n) const;
78 virtual void DoSetItemClientData(unsigned int n, void* clientData);
79 virtual void DoSetFirstItem(int n);
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:
85 wxArrayPtrVoid m_itemsClientData;
86
87 DECLARE_EVENT_TABLE()
88 DECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckListBox)
89 };
90
91 #endif //_CHECKLSTCE_H