tmp = m_listCtrl->SetItem(i, 2, buf);
}
+ // we leave all mask fields to 0 and only change the colour
+ wxListItem item;
+ item.m_itemId = 0;
+ item.SetTextColour(*wxRED);
+ m_listCtrl->SetItem( item );
+
+ item.m_itemId = 2;
+ item.SetTextColour(*wxGREEN);
+ m_listCtrl->SetItem( item );
+ item.m_itemId = 4;
+ item.SetTextColour(*wxLIGHT_GREY);
+ item.SetFont(*wxITALIC_FONT);
+ item.SetBackgroundColour(*wxRED);
+ m_listCtrl->SetItem( item );
+
+ m_listCtrl->SetTextColour(*wxBLUE);
+ m_listCtrl->SetBackgroundColour(*wxLIGHT_GREY);
+
m_listCtrl->SetColumnWidth( 0, wxLIST_AUTOSIZE );
m_listCtrl->SetColumnWidth( 1, wxLIST_AUTOSIZE );
m_listCtrl->SetColumnWidth( 2, wxLIST_AUTOSIZE );