#include "wx/control.h"
#include "wx/event.h"
#include "wx/hash.h"
+#include "wx/textctrl.h"
+
-class WXDLLEXPORT wxTextCtrl;
class WXDLLEXPORT wxImageList;
/*
// returns true if it is a virtual list control
bool IsVirtual() const { return (GetWindowStyle() & wxLC_VIRTUAL) != 0; }
+ // refresh items selectively (only useful for virtual list controls)
+ void RefreshItem(long item);
+ void RefreshItems(long itemFrom, long itemTo);
+
// Operations
////////////////////////////////////////////////////////////////////////////
private:
bool DoCreateControl(int x, int y, int w, int h);
+ // process NM_CUSTOMDRAW notification message
+ WXLPARAM OnCustomDraw(WXLPARAM lParam);
+
DECLARE_DYNAMIC_CLASS(wxListCtrl)
DECLARE_EVENT_TABLE()
};