]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/listctrl/listtest.cpp
compilation fix
[wxWidgets.git] / samples / listctrl / listtest.cpp
index 3582c99cf4ef2c99d93fb310a666cfbc0026502b..8c4e700899d04dbe88206f0b641e91035ed11098 100644 (file)
@@ -288,6 +288,24 @@ void MyFrame::OnReportView(wxCommandEvent& WXUNUSED(event))
         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 );