X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/91b073576e8fd216c71acacf5c1495e1a56dd39f..adcb6f88ee32eb508d64e86c22ad193fec8b95cf:/samples/mdi/mdi.h diff --git a/samples/mdi/mdi.h b/samples/mdi/mdi.h index d0d6c422e1..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() @@ -73,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() };