#ifndef _WX_CHECKLST_H_BASE_
#define _WX_CHECKLST_H_BASE_
+#include "wx/defs.h"
+
#if wxUSE_CHECKLISTBOX
#include "wx/listbox.h"
virtual bool IsChecked(unsigned int item) const = 0;
virtual void Check(unsigned int item, bool check = true) = 0;
- DECLARE_NO_COPY_CLASS(wxCheckListBoxBase)
+ virtual unsigned int GetCheckedItems(wxArrayInt& checkedItems) const;
+
+ wxDECLARE_NO_COPY_CLASS(wxCheckListBoxBase);
};
#if defined(__WXUNIVERSAL__)
#elif defined(__WXGTK__)
#include "wx/gtk1/checklst.h"
#elif defined(__WXMAC__)
- #include "wx/mac/checklst.h"
+ #include "wx/osx/checklst.h"
#elif defined(__WXCOCOA__)
#include "wx/cocoa/checklst.h"
#elif defined(__WXPM__)