]> git.saurik.com Git - wxWidgets.git/blobdiff - tests/controls/virtlistctrltest.cpp
implementing delayed freezing, fixes #12865
[wxWidgets.git] / tests / controls / virtlistctrltest.cpp
index ea049042f4617452410f0977f430904df9da6564..78137b31d8557f0501ff62e11de3a91d7f2512ad 100644 (file)
@@ -52,7 +52,7 @@ private:
 // 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" );
 
 // ----------------------------------------------------------------------------
@@ -61,9 +61,26 @@ CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( VirtListCtrlTestCase, "VirtListCtrlTestCa
 
 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()