X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ad81651f00edc6f489d9b6a0839d316a964fd521..f040060e2fdaf0a5cc20f986fbbc67a000f5f57b:/src/mac/metafile.cpp diff --git a/src/mac/metafile.cpp b/src/mac/metafile.cpp index 5742ba4ce6..fc6c64b825 100644 --- a/src/mac/metafile.cpp +++ b/src/mac/metafile.cpp @@ -39,8 +39,10 @@ extern bool wxClipboardIsOpen; +#if !USE_SHARED_LIBRARY IMPLEMENT_DYNAMIC_CLASS(wxMetafile, wxObject) IMPLEMENT_ABSTRACT_CLASS(wxMetafileDC, wxDC) +#endif /* * Metafiles @@ -57,7 +59,7 @@ wxMetafileRefData::~wxMetafileRefData(void) { if (m_metafile) { - KillPicture( m_metafile ) ; + KillPicture( m_metafile ) ; m_metafile = 0; } } @@ -83,7 +85,7 @@ bool wxMetaFile::SetClipboard(int width, int height) { if (!m_refData) return FALSE; -/* + bool alreadyOpen=wxClipboardOpen(); if (!alreadyOpen) { @@ -92,11 +94,19 @@ bool wxMetaFile::SetClipboard(int width, int height) } bool success = wxSetClipboardData(wxDF_METAFILE, this, width,height); if (!alreadyOpen) wxCloseClipboard(); - return (bool) success; - */ + return (bool) success; + return TRUE ; } +void wxMetafile::SetHMETAFILE(PicHandle mf) +{ + if (!m_refData) + m_refData = new wxMetafileRefData; + + M_METAFILEDATA->m_metafile = mf; +} + bool wxMetaFile::Play(wxDC *dc) { if (!m_refData) @@ -142,11 +152,11 @@ wxMetaFileDC::wxMetaFileDC(const wxString& file) wxASSERT_MSG( file.IsEmpty() , "no file based metafile support yet") ; - m_metaFile = new wxMetaFile("") ; - Rect r={0,0,100,100} ; + m_metaFile = new wxMetaFile("") ; + Rect r={0,0,1000,1000} ; - m_metaFile->SetHMETAFILE( OpenPicture( &r ) ) ; - ::GetPort( &m_macPort ) ; + m_metaFile->SetHMETAFILE( OpenPicture( &r ) ) ; + ::GetPort( &m_macPort ) ; m_ok = TRUE ; SetMapMode(wxMM_TEXT); @@ -184,5 +194,4 @@ wxMetaFile *wxMetaFileDC::Close() return m_metaFile; } - #endif