Add virtual function to provide virtual wxListCtrl checkbox state

This commit is contained in:
Maarten Bent
2019-05-05 14:24:30 +02:00
parent ceaf2aa803
commit 353b0aabba
3 changed files with 31 additions and 1 deletions

View File

@@ -433,6 +433,9 @@ protected:
// return the text for the given column of the given item
virtual wxString OnGetItemText(long item, long column) const;
// return whether the given item is checked
virtual bool OnGetItemIsChecked(long item) const;
// return the icon for the given item. In report view, OnGetItemImage will
// only be called for the first column. See OnGetItemColumnImage for
// details.