]>
git.saurik.com Git - wxWidgets.git/blob - src/mac/metafile.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMetaFile, wxMetaFileDC etc. These classes are optional.
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "metafile.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
34 #include "wx/metafile.h"
35 #include "wx/clipbrd.h"
40 extern bool wxClipboardIsOpen
;
42 #if !USE_SHARED_LIBRARY
43 IMPLEMENT_DYNAMIC_CLASS(wxMetafile
, wxObject
)
44 IMPLEMENT_ABSTRACT_CLASS(wxMetafileDC
, wxDC
)
49 * Currently, the only purpose for making a metafile is to put
50 * it on the clipboard.
53 wxMetafileRefData::wxMetafileRefData(void)
58 wxMetafileRefData::~wxMetafileRefData(void)
62 KillPicture( m_metafile
) ;
67 wxMetaFile::wxMetaFile(const wxString
& file
)
69 m_refData
= new wxMetafileRefData
;
72 M_METAFILEDATA
->m_metafile
= 0;
73 wxASSERT_MSG( file
.IsEmpty() , "no file based metafile support yet") ;
75 if (!file.IsNull() && (file.Cmp("") == 0))
76 M_METAFILEDATA->m_metafile = (WXHANDLE) GetMetaFile(file);
80 wxMetaFile::~wxMetaFile()
84 bool wxMetaFile::SetClipboard(int width
, int height
)
89 bool alreadyOpen=wxClipboardOpen();
93 if (!wxEmptyClipboard()) return FALSE;
95 bool success = wxSetClipboardData(wxDF_METAFILE, this, width,height);
96 if (!alreadyOpen) wxCloseClipboard();
97 return (bool) success;
102 bool wxMetaFile::Play(wxDC
*dc
)
110 dc
->MacVerifySetup() ;
113 PicHandle pict
= GetHMETAFILE() ;
114 DrawPicture( pict
, &(**pict
).picFrame
) ;
122 if (dc->GetHDC() && M_METAFILEDATA->m_metafile)
123 PlayMetaFile((HDC) dc->GetHDC(), (HMETAFILE) M_METAFILEDATA->m_metafile);
131 * Metafile device context
135 // Original constructor that does not takes origin and extent. If you use this,
136 // *DO* give origin/extent arguments to wxMakeMetaFilePlaceable.
137 wxMetaFileDC::wxMetaFileDC(const wxString
& file
)
145 wxASSERT_MSG( file
.IsEmpty() , "no file based metafile support yet") ;
147 m_metaFile
= new wxMetaFile("") ;
148 Rect r
={0,0,100,100} ;
150 m_metaFile
->SetHMETAFILE( OpenPicture( &r
) ) ;
151 ::GetPort( &m_macPort
) ;
154 SetMapMode(wxMM_TEXT
);
157 // New constructor that takes origin and extent. If you use this, don't
158 // give origin/extent arguments to wxMakeMetaFilePlaceable.
160 wxMetaFileDC::wxMetaFileDC(const wxString
& file
, int xext
, int yext
, int xorg
, int yorg
)
167 wxASSERT_MSG( file
.IsEmpty() , "no file based metafile support yet") ;
169 m_metaFile
= new wxMetaFile("") ;
170 Rect r
={yorg
,xorg
,yorg
+yext
,xorg
+xext
} ;
172 m_metaFile
->SetHMETAFILE( OpenPicture( &r
) ) ;
173 ::GetPort( &m_macPort
) ;
176 SetMapMode(wxMM_TEXT
);
179 wxMetaFileDC::~wxMetaFileDC()
183 wxMetaFile
*wxMetaFileDC::Close()