#include "wx/clipbrd.h"
#include "wx/osx/private.h"
#include "wx/graphics.h"
-#include "wx/osx/carbon/metafile.h"
+#include "wx/osx/metafile.h"
#include <stdio.h>
#include <string.h>
int m_width ;
int m_height ;
+
+
+ // Our m_pdfDoc field can't be easily (deep) copied and so we don't define a
+ // copy ctor.
+ wxDECLARE_NO_COPY_CLASS(wxMetafileRefData);
};
wxMetafileRefData::wxMetafileRefData(CFDataRef data) :
return new wxMetafileRefData;
}
-wxGDIRefData *wxMetaFile::CloneGDIRefData(const wxGDIRefData *data) const
+wxGDIRefData *
+wxMetaFile::CloneGDIRefData(const wxGDIRefData * WXUNUSED(data)) const
{
- return new wxMetafileRefData(*static_cast<const wxMetafileRefData *>(data));
+ wxFAIL_MSG( wxS("Cloning metafiles is not implemented in wxCarbon.") );
+
+ return new wxMetafileRefData;
}
WXHMETAFILE wxMetaFile::GetHMETAFILE() const
m_refData = new wxMetafileRefData((CFDataRef)mf);
}
-#ifndef __LP64__
+#if wxOSX_USE_COCOA_OR_CARBON && !defined( __LP64__ )
void wxMetafile::SetPICT(void* pictHandle)
{
UnRef();
wxMetaFile *wxMetafileDCImpl::Close()
{
- delete m_graphicContext;
- m_graphicContext = NULL;
+ wxDELETE(m_graphicContext);
m_ok = false;
M_METAFILEREFDATA(*m_metaFile)->Close();