]>
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 void wxMetafile::SetHMETAFILE(PicHandle mf
)
105 m_refData
= new wxMetafileRefData
;
107 M_METAFILEDATA
->m_metafile
= mf
;
110 bool wxMetaFile::Play(wxDC
*dc
)
119 wxMacPortSetter
helper( dc
) ;
120 PicHandle pict
= GetHMETAFILE() ;
121 DrawPicture( pict
, &(**pict
).picFrame
) ;
127 * Metafile device context
131 // Original constructor that does not takes origin and extent. If you use this,
132 // *DO* give origin/extent arguments to wxMakeMetaFilePlaceable.
133 wxMetaFileDC::wxMetaFileDC(const wxString
& file
)
141 wxASSERT_MSG( file
.IsEmpty() , "no file based metafile support yet") ;
143 m_metaFile
= new wxMetaFile("") ;
144 Rect r
={0,0,1000,1000} ;
146 m_metaFile
->SetHMETAFILE( OpenPicture( &r
) ) ;
147 ::GetPort( &m_macPort
) ;
150 SetMapMode(wxMM_TEXT
);
153 // New constructor that takes origin and extent. If you use this, don't
154 // give origin/extent arguments to wxMakeMetaFilePlaceable.
156 wxMetaFileDC::wxMetaFileDC(const wxString
& file
, int xext
, int yext
, int xorg
, int yorg
)
163 wxASSERT_MSG( file
.IsEmpty() , "no file based metafile support yet") ;
165 m_metaFile
= new wxMetaFile("") ;
166 Rect r
={yorg
,xorg
,yorg
+yext
,xorg
+xext
} ;
168 m_metaFile
->SetHMETAFILE( OpenPicture( &r
) ) ;
169 ::GetPort( &m_macPort
) ;
172 SetMapMode(wxMM_TEXT
);
175 wxMetaFileDC::~wxMetaFileDC()
179 wxMetaFile
*wxMetaFileDC::Close()