// register in the unnamed registry so that these tests are run by default
CPPUNIT_TEST_SUITE_REGISTRATION( VirtListCtrlTestCase );
-// also include in it's own registry so that these tests can be run alone
+// also include in its own registry so that these tests can be run alone
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( VirtListCtrlTestCase, "VirtListCtrlTestCase" );
// ----------------------------------------------------------------------------
void VirtListCtrlTestCase::setUp()
{
- m_list = new wxListCtrl(wxTheApp->GetTopWindow(), wxID_ANY,
- wxPoint(0, 0), wxSize(400, 200),
- wxLC_REPORT | wxLC_VIRTUAL);
+ // Define a class overriding OnGetItemText() which must be overridden for
+ // any virtual list control.
+ class VirtListCtrl : public wxListCtrl
+ {
+ public:
+ VirtListCtrl()
+ : wxListCtrl(wxTheApp->GetTopWindow(), wxID_ANY,
+ wxPoint(0, 0), wxSize(400, 200),
+ wxLC_REPORT | wxLC_VIRTUAL)
+ {
+ }
+
+ protected:
+ virtual wxString OnGetItemText(long item, long column) const
+ {
+ return wxString::Format("Row %ld, col %ld", item, column);
+ }
+ };
+
+ m_list = new VirtListCtrl;
}
void VirtListCtrlTestCase::tearDown()