]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/checklst.h
added WXDLLIMPEXP_FWD_FOO macros in addition to WXDLLIMPEXP_FOO for use with forward...
[wxWidgets.git] / include / wx / mac / carbon / checklst.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/mac/carbon/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
10 // Licence: wxWindows licence
11 ///////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_MAC_CHECKLST_H_
14 #define _WX_MAC_CHECKLST_H_
15
16 class wxMacCheckListControl
17 {
18 public :
19 virtual bool MacIsChecked(unsigned int n) const = 0;
20 virtual void MacCheck(unsigned int n, bool bCheck = true) = 0;
21
22 virtual ~wxMacCheckListControl() { }
23 };
24
25 class WXDLLEXPORT wxCheckListBox : public wxCheckListBoxBase
26 {
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
76 // items may be checked
77 bool IsChecked(unsigned int uiIndex) const;
78 void Check(unsigned int uiIndex, bool bCheck = true);
79
80 wxMacCheckListControl* GetPeer() const;
81
82 protected:
83 void Init();
84
85 private:
86 DECLARE_EVENT_TABLE()
87 DECLARE_DYNAMIC_CLASS(wxCheckListBox)
88 };
89
90 #endif // _WX_MAC_CHECKLST_H_