X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c3b7706c4f3c34dfe552726c4438a1565a9944b0..17b1d76b4add82305463d10b9f65668d06169363:/samples/mdi/mdi.h?ds=inline 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() };