]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/listctrl.h
fixed outdated filenames
[wxWidgets.git] / include / wx / msw / listctrl.h
index 6f6a05f3c3fd8282c6a2f4ce15e3f5abd266f4ac..47c58d65fe3c58fb076b746370c8222ee6c1bfe9 100644 (file)
@@ -21,8 +21,9 @@
 #include "wx/control.h"
 #include "wx/event.h"
 #include "wx/hash.h"
+#include "wx/textctrl.h"
+
 
-class WXDLLEXPORT wxTextCtrl;
 class WXDLLEXPORT wxImageList;
 
 /*
@@ -231,6 +232,10 @@ public:
     // 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
     ////////////////////////////////////////////////////////////////////////////
 
@@ -379,6 +384,9 @@ protected:
 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()
 };