X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/11f26ea0e21667bb9ffe53964651e5133c8ded6e..298d86536801bde42431cee95a8ac1a921b83139:/samples/listctrl/listtest.h diff --git a/samples/listctrl/listtest.h b/samples/listctrl/listtest.h index 5c374ae3c0..e0ca2f31f7 100644 --- a/samples/listctrl/listtest.h +++ b/samples/listctrl/listtest.h @@ -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: @@ -66,16 +66,26 @@ public: void OnIconTextView(wxCommandEvent& event); void OnSmallIconView(wxCommandEvent& event); void OnSmallIconTextView(wxCommandEvent& event); + void OnToggleFirstSel(wxCommandEvent& event); void OnDeselectAll(wxCommandEvent& event); void OnSelectAll(wxCommandEvent& event); void OnDeleteAll(wxCommandEvent& event); void OnSort(wxCommandEvent& event); void OnSetFgColour(wxCommandEvent& event); void OnSetBgColour(wxCommandEvent& event); + void OnToggleMultiSel(wxCommandEvent& event); + void OnShowColInfo(wxCommandEvent& event); + void OnUpdateShowColInfo(wxUpdateUIEvent& event); void BusyOn(wxCommandEvent& event); void BusyOff(wxCommandEvent& event); + wxImageList *m_imageListNormal; + wxImageList *m_imageListSmall; + +private: + wxLog *m_logOld; + DECLARE_EVENT_TABLE() }; @@ -99,6 +109,9 @@ enum LIST_SORT, LIST_SET_FG_COL, LIST_SET_BG_COL, + LIST_TOGGLE_MULTI_SEL, + LIST_TOGGLE_FIRST, + LIST_SHOW_COL_INFO, LIST_CTRL = 1000 };