]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/listctrl.h
Window management and sizer layout corrections
[wxWidgets.git] / include / wx / msw / listctrl.h
index 6f6a05f3c3fd8282c6a2f4ce15e3f5abd266f4ac..14140398c3301ec9d7a32b3ecf01fe9bcc0f4709 100644 (file)
@@ -231,6 +231,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 +383,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()
 };