]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/listctrl.h
Introduced the ability to size a book control based on the currently selected page
[wxWidgets.git] / include / wx / generic / listctrl.h
index cfefe3ecce641e4b861de062c9e239a508f28baf..5d4a4121c7cc0bbbc3888fe9540294ab4a025de5 100644 (file)
@@ -232,9 +232,14 @@ protected:
     // return the text for the given column of the given item
     virtual wxString OnGetItemText(long item, long column) const;
 
-    // return the icon for the given item
+    // return the icon for the given item. In report view, OnGetItemImage will
+    // only be called for the first column. See OnGetItemColumnImage for 
+    // details.
     virtual int OnGetItemImage(long item) const;
 
+    // return the icon for the given item and column.
+    virtual int OnGetItemColumnImage(long item, long column) const;
+
     // return the attribute for the item (may return NULL if none)
     virtual wxListItemAttr *OnGetItemAttr(long item) const;