1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Resource editor list of controls
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
15 #include <wx/listctrl.h>
16 #include <wx/imaglist.h>
18 class wxResourceEditorControlList
: public wxListCtrl
21 wxResourceEditorControlList(wxWindow
* parent
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
,
22 long style
= wxLC_SMALL_ICON
|wxLC_AUTOARRANGE
|wxLC_SINGLE_SEL
);
23 ~wxResourceEditorControlList();
25 // Load icons and add to the list
28 // Get selection, or -1
29 long GetSelection() const;
34 wxImageList m_imageList
;