]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/listctrl/listtest.h
small mods
[wxWidgets.git] / samples / listctrl / listtest.h
index 3436c50f16a86e5e7248534e5256ce12aaa599b3..c1bf2d02b597f5a7a736867d571037ca5ba88878 100644 (file)
@@ -14,9 +14,6 @@ class MyApp: public wxApp
 {
 public:
     virtual bool OnInit();
-
-    wxImageList *m_imageListNormal;
-    wxImageList *m_imageListSmall;
 };
 
 class MyListCtrl: public wxListCtrl
@@ -44,6 +41,9 @@ public:
 
     void OnChar(wxKeyEvent& event);
 
+private:
+    void LogEvent(const wxListEvent& event, const wxChar *eventName);
+
     DECLARE_EVENT_TABLE()
 };
 
@@ -54,7 +54,7 @@ public:
     MyListCtrl *m_listCtrl;
     wxTextCtrl *m_logWindow;
 
-    MyFrame(wxFrame *frame, char *title, int x, int y, int w, int h);
+    MyFrame(const wxChar *title, int x, int y, int w, int h);
     ~MyFrame();
 
 public:
@@ -77,6 +77,12 @@ public:
     void BusyOn(wxCommandEvent& event);
     void BusyOff(wxCommandEvent& event);
 
+    wxImageList *m_imageListNormal;
+    wxImageList *m_imageListSmall;
+
+private:
+    wxLog *m_logOld;
+
     DECLARE_EVENT_TABLE()
 };