X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae8351fc61c11718b80630465967408d13fc226a..c74d8df09d0c0e182cb2063cc4cc546de3a00fae:/utils/dialoged/src/edlist.h diff --git a/utils/dialoged/src/edlist.h b/utils/dialoged/src/edlist.h index 9777c01355..1122fcf7fa 100644 --- a/utils/dialoged/src/edlist.h +++ b/utils/dialoged/src/edlist.h @@ -12,8 +12,8 @@ #ifndef _EDLIST_H_ #define _EDLIST_H_ -#include -#include +#include "wx/listctrl.h" +#include "wx/imaglist.h" class wxResourceEditorControlList: public wxListCtrl { @@ -21,15 +21,15 @@ public: wxResourceEditorControlList(wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style = wxLC_SMALL_ICON|wxLC_AUTOARRANGE|wxLC_SINGLE_SEL); ~wxResourceEditorControlList(); - + // Load icons and add to the list void Initialize(); - + // Get selection, or -1 long GetSelection() const; - -DECLARE_EVENT_TABLE() - + + DECLARE_EVENT_TABLE() + protected: wxImageList m_imageList; };