1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMetaFile, wxMetaFileDC classes.
4 // This probably should be restricted to Windows platforms,
5 // but if there is an equivalent on your platform, great.
6 // Author: Stefan Csomor
10 // Copyright: (c) Stefan Csomor
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
15 #ifndef _WX_METAFIILE_H_
16 #define _WX_METAFIILE_H_
19 #include "wx/gdiobj.h"
22 #include "wx/dataobj.h"
25 #include "wx/osx/dcclient.h"
28 * Metafile and metafile device context classes
32 #define wxMetaFile wxMetafile
33 #define wxMetaFileDC wxMetafileDC
35 class WXDLLIMPEXP_FWD_CORE wxMetafile
;
36 class wxMetafileRefData
;
38 #define M_METAFILEDATA ((wxMetafileRefData *)m_refData)
40 class WXDLLIMPEXP_CORE wxMetafile
: public wxGDIObject
43 wxMetafile(const wxString
& file
= wxEmptyString
);
44 virtual ~wxMetafile(void);
46 // After this is called, the metafile cannot be used for anything
47 // since it is now owned by the clipboard.
48 virtual bool SetClipboard(int width
= 0, int height
= 0);
50 virtual bool Play(wxDC
*dc
);
52 wxSize
GetSize() const;
53 int GetWidth() const { return GetSize().x
; }
54 int GetHeight() const { return GetSize().y
; }
57 WXHMETAFILE
GetHMETAFILE() const ;
58 void SetHMETAFILE(WXHMETAFILE mf
) ;
59 #if wxOSX_USE_COCOA_OR_CARBON && !defined( __LP64__ )
60 // Since the native metafile format is PDF for Quartz
61 // we need a call that allows setting PICT content for
62 // backwards compatibility
63 void SetPICT(void* pictHandle
) ;
67 virtual wxGDIRefData
*CreateGDIRefData() const;
68 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
70 DECLARE_DYNAMIC_CLASS(wxMetafile
)
74 class WXDLLIMPEXP_CORE wxMetafileDCImpl
: public wxGCDCImpl
77 wxMetafileDCImpl( wxDC
*owner
,
78 const wxString
& filename
,
79 int width
, int height
,
80 const wxString
& description
);
82 virtual ~wxMetafileDCImpl();
84 // Should be called at end of drawing
85 virtual wxMetafile
*Close();
88 wxMetafile
*GetMetaFile(void) const { return m_metaFile
; }
89 void SetMetaFile(wxMetafile
*mf
) { m_metaFile
= mf
; }
92 virtual void DoGetSize(int *width
, int *height
) const;
94 wxMetafile
* m_metaFile
;
97 DECLARE_CLASS(wxMetafileDCImpl
)
98 wxDECLARE_NO_COPY_CLASS(wxMetafileDCImpl
);
101 class WXDLLIMPEXP_CORE wxMetafileDC
: public wxDC
104 // the ctor parameters specify the filename (empty for memory metafiles),
105 // the metafile picture size and the optional description/comment
106 wxMetafileDC( const wxString
& filename
= wxEmptyString
,
107 int width
= 0, int height
= 0,
108 const wxString
& description
= wxEmptyString
) :
109 wxDC( new wxMetafileDCImpl( this, filename
, width
, height
, description
) )
112 wxMetafile
*GetMetafile() const
113 { return ((wxMetafileDCImpl
*)m_pimpl
)->GetMetaFile(); }
116 { return ((wxMetafileDCImpl
*)m_pimpl
)->Close(); }
119 DECLARE_CLASS(wxMetafileDC
)
120 wxDECLARE_NO_COPY_CLASS(wxMetafileDC
);
125 * Pass filename of existing non-placeable metafile, and bounding box.
126 * Adds a placeable metafile header, sets the mapping mode to anisotropic,
127 * and sets the window origin and extent to mimic the wxMM_TEXT mapping mode.
131 // No origin or extent
132 #define wxMakeMetaFilePlaceable wxMakeMetafilePlaceable
133 bool WXDLLIMPEXP_CORE
wxMakeMetafilePlaceable(const wxString
& filename
, float scale
= 1.0);
135 // Optional origin and extent
136 bool WXDLLIMPEXP_CORE
wxMakeMetaFilePlaceable(const wxString
& filename
, int x1
, int y1
, int x2
, int y2
, float scale
= 1.0, bool useOriginAndExtent
= true);
138 // ----------------------------------------------------------------------------
139 // wxMetafileDataObject is a specialization of wxDataObject for metafile data
140 // ----------------------------------------------------------------------------
143 class WXDLLIMPEXP_CORE wxMetafileDataObject
: public wxDataObjectSimple
147 wxMetafileDataObject()
148 : wxDataObjectSimple(wxDF_METAFILE
) { };
149 wxMetafileDataObject(const wxMetafile
& metafile
)
150 : wxDataObjectSimple(wxDF_METAFILE
), m_metafile(metafile
) { }
152 // virtual functions which you may override if you want to provide data on
153 // demand only - otherwise, the trivial default versions will be used
154 virtual void SetMetafile(const wxMetafile
& metafile
)
155 { m_metafile
= metafile
; }
156 virtual wxMetafile
GetMetafile() const
157 { return m_metafile
; }
159 // implement base class pure virtuals
160 virtual size_t GetDataSize() const;
161 virtual bool GetDataHere(void *buf
) const;
162 virtual bool SetData(size_t len
, const void *buf
);
164 virtual size_t GetDataSize(const wxDataFormat
& WXUNUSED(format
)) const
165 { return GetDataSize(); }
166 virtual bool GetDataHere(const wxDataFormat
& WXUNUSED(format
),
168 { return GetDataHere(buf
); }
169 virtual bool SetData(const wxDataFormat
& WXUNUSED(format
),
170 size_t len
, const void *buf
)
171 { return SetData(len
, buf
); }
173 wxMetafile m_metafile
;