+void MyFrame::OnCopy(wxCommandEvent& WXUNUSED(event))
+{
+#if wxUSE_METAFILE && defined(wxMETAFILE_IS_ENH)
+ wxMetafileDC dc;
+ if (!dc.IsOk())
+ return;
+ m_canvas->Draw(dc);
+ wxMetafile *mf = dc.Close();
+ if (!mf)
+ return;
+ mf->SetClipboard();
+ delete mf;
+#endif
+}
+
+void MyFrame::OnSave(wxCommandEvent& WXUNUSED(event))
+{
+ wxFileDialog dlg(this, wxT("Save as bitmap"), wxT(""), wxT(""),
+#if wxUSE_LIBPNG
+ wxT("PNG image (*.png)|*.png;*.PNG|")
+#endif
+ wxT("Bitmap image (*.bmp)|*.bmp;*.BMP"),
+ wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
+ if (dlg.ShowModal() == wxID_OK)
+ {
+ wxBitmap bmp(500, 800);
+ wxMemoryDC mdc(bmp);
+ m_canvas->Draw(mdc);
+ bmp.ConvertToImage().SaveFile(dlg.GetPath());
+ }
+}
+