X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aa61d3525370a9b9fa8c797d9b7f89d96994db5f..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/checklst.h diff --git a/include/wx/checklst.h b/include/wx/checklst.h index d30003320e..3c54304d0e 100644 --- a/include/wx/checklst.h +++ b/include/wx/checklst.h @@ -4,7 +4,6 @@ // Author: Vadim Zeitlin // Modified by: // Created: 12.09.00 -// RCS-ID: $Id$ // Copyright: (c) Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -12,6 +11,8 @@ #ifndef _WX_CHECKLST_H_BASE_ #define _WX_CHECKLST_H_BASE_ +#include "wx/defs.h" + #if wxUSE_CHECKLISTBOX #include "wx/listbox.h" @@ -20,7 +21,7 @@ // wxCheckListBox: a listbox whose items may be checked // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxCheckListBoxBase : public +class WXDLLIMPEXP_CORE wxCheckListBoxBase : public #ifdef __WXWINCE__ // keep virtuals synchronised wxListBoxBase @@ -35,7 +36,9 @@ public: 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__) @@ -51,7 +54,7 @@ public: #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__)