X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0c35333e9eb2b387c06cc285916b65a7cebdf0b9..131f9d9b19b6b7943b24601fc813ceaa2c57340e:/include/wx/msw/checklst.h?ds=sidebyside diff --git a/include/wx/msw/checklst.h b/include/wx/msw/checklst.h index df6b479e9c..473cc09b76 100644 --- a/include/wx/msw/checklst.h +++ b/include/wx/msw/checklst.h @@ -16,19 +16,15 @@ #pragma interface "checklst.h" #endif -// No! -// typedef unsigned int size_t; -#include - #if !wxUSE_OWNER_DRAWN #error "wxCheckListBox class requires owner-drawn functionality." #endif -class wxCheckListBoxItem; // fwd decl, define in checklst.cpp +class WXDLLEXPORT wxOwnerDrawn; +class WXDLLEXPORT wxCheckListBoxItem; // fwd decl, defined in checklst.cpp -class WXDLLEXPORT wxCheckListBox : public wxListBox +class WXDLLEXPORT wxCheckListBox : public wxCheckListBoxBase { - DECLARE_DYNAMIC_CLASS(wxCheckListBox) public: // ctors wxCheckListBox(); @@ -43,13 +39,12 @@ public: // override base class virtuals virtual void Delete(int n); - virtual void InsertItems(int nItems, const wxString items[], int pos); virtual bool SetFont( const wxFont &font ); // items may be checked - bool IsChecked(size_t uiIndex) const; - void Check(size_t uiIndex, bool bCheck = TRUE); + virtual bool IsChecked(size_t uiIndex) const; + virtual void Check(size_t uiIndex, bool bCheck = TRUE); // accessors size_t GetItemHeight() const { return m_nItemHeight; } @@ -61,13 +56,14 @@ protected: virtual bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item); // pressing space or clicking the check box toggles the item - void OnChar(wxKeyEvent& event); + void OnKeyDown(wxKeyEvent& event); void OnLeftClick(wxMouseEvent& event); private: size_t m_nItemHeight; // height of checklistbox items (the same for all) DECLARE_EVENT_TABLE() + DECLARE_DYNAMIC_CLASS(wxCheckListBox) }; #endif //_CHECKLST_H