X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77380b5cbae9f748f53a05a2733c8f624e2ad40c..adcb6f88ee32eb508d64e86c22ad193fec8b95cf:/samples/mdi/mdi.h diff --git a/samples/mdi/mdi.h b/samples/mdi/mdi.h index 62e3551f24..2a29667557 100644 --- a/samples/mdi/mdi.h +++ b/samples/mdi/mdi.h @@ -28,7 +28,11 @@ public: void OnEvent(wxMouseEvent& event); + void SetText(const wxString& text) { m_text = text; Refresh(); } + private: + wxString m_text; + bool m_dirty; DECLARE_EVENT_TABLE() @@ -46,7 +50,6 @@ public: void InitToolBar(wxToolBar* toolBar); void OnSize(wxSizeEvent& event); - void OnIconize(wxIconizeEvent& event); void OnAbout(wxCommandEvent& event); void OnNewWindow(wxCommandEvent& event); void OnQuit(wxCommandEvent& event); @@ -74,6 +77,11 @@ public: void OnMove(wxMoveEvent& event); void OnClose(wxCloseEvent& event); +#if wxUSE_CLIPBOARD + void OnPaste(wxCommandEvent& event); + void OnUpdatePaste(wxUpdateUIEvent& event); +#endif // wxUSE_CLIPBOARD + DECLARE_EVENT_TABLE() };