#include "wx/scrolwin.h"
#include "wx/settings.h"
#include "wx/listbase.h"
+#include "wx/textctrl.h"
#if wxUSE_DRAG_AND_DROP
class WXDLLEXPORT wxDropTarget;
int GetItemState( long item, long stateMask ) const;
bool SetItemState( long item, long state, long stateMask);
bool SetItemImage( long item, int image, int selImage = -1 );
+ bool SetItemColumnImage( long item, long column, int image );
wxString GetItemText( long item ) const;
void SetItemText( long item, const wxString& str );
wxUIntPtr GetItemData( long item ) const;
void SetItemCount(long count);
- void EditLabel( long item ) { Edit(item); }
- void Edit( long item );
+ wxTextCtrl *EditLabel(long item,
+ wxClassInfo* textControlClass = CLASSINFO(wxTextCtrl));
+ wxTextCtrl* GetEditControl() const;
+ void Edit( long item ) { EditLabel(item); }
bool EnsureVisible( long item );
long FindItem( long start, const wxString& str, bool partial = false );