1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/metafile.h
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
) ;
60 virtual wxGDIRefData
*CreateGDIRefData() const;
61 virtual wxGDIRefData
*CloneGDIRefData(const wxGDIRefData
*data
) const;
63 DECLARE_DYNAMIC_CLASS(wxMetafile
)
67 class WXDLLIMPEXP_CORE wxMetafileDCImpl
: public wxGCDCImpl
70 wxMetafileDCImpl( wxDC
*owner
,
71 const wxString
& filename
,
72 int width
, int height
,
73 const wxString
& description
);
75 virtual ~wxMetafileDCImpl();
77 // Should be called at end of drawing
78 virtual wxMetafile
*Close();
81 wxMetafile
*GetMetaFile(void) const { return m_metaFile
; }
82 void SetMetaFile(wxMetafile
*mf
) { m_metaFile
= mf
; }
85 virtual void DoGetSize(int *width
, int *height
) const;
87 wxMetafile
* m_metaFile
;
90 DECLARE_CLASS(wxMetafileDCImpl
)
91 wxDECLARE_NO_COPY_CLASS(wxMetafileDCImpl
);
94 class WXDLLIMPEXP_CORE wxMetafileDC
: public wxDC
97 // the ctor parameters specify the filename (empty for memory metafiles),
98 // the metafile picture size and the optional description/comment
99 wxMetafileDC( const wxString
& filename
= wxEmptyString
,
100 int width
= 0, int height
= 0,
101 const wxString
& description
= wxEmptyString
) :
102 wxDC( new wxMetafileDCImpl( this, filename
, width
, height
, description
) )
105 wxMetafile
*GetMetafile() const
106 { return ((wxMetafileDCImpl
*)m_pimpl
)->GetMetaFile(); }
109 { return ((wxMetafileDCImpl
*)m_pimpl
)->Close(); }
112 DECLARE_CLASS(wxMetafileDC
)
113 wxDECLARE_NO_COPY_CLASS(wxMetafileDC
);
118 * Pass filename of existing non-placeable metafile, and bounding box.
119 * Adds a placeable metafile header, sets the mapping mode to anisotropic,
120 * and sets the window origin and extent to mimic the wxMM_TEXT mapping mode.
124 // No origin or extent
125 #define wxMakeMetaFilePlaceable wxMakeMetafilePlaceable
126 bool WXDLLIMPEXP_CORE
wxMakeMetafilePlaceable(const wxString
& filename
, float scale
= 1.0);
128 // Optional origin and extent
129 bool WXDLLIMPEXP_CORE
wxMakeMetaFilePlaceable(const wxString
& filename
, int x1
, int y1
, int x2
, int y2
, float scale
= 1.0, bool useOriginAndExtent
= true);
131 // ----------------------------------------------------------------------------
132 // wxMetafileDataObject is a specialization of wxDataObject for metafile data
133 // ----------------------------------------------------------------------------
136 class WXDLLIMPEXP_CORE wxMetafileDataObject
: public wxDataObjectSimple
140 wxMetafileDataObject()
141 : wxDataObjectSimple(wxDF_METAFILE
) { }
142 wxMetafileDataObject(const wxMetafile
& metafile
)
143 : wxDataObjectSimple(wxDF_METAFILE
), m_metafile(metafile
) { }
145 // virtual functions which you may override if you want to provide data on
146 // demand only - otherwise, the trivial default versions will be used
147 virtual void SetMetafile(const wxMetafile
& metafile
)
148 { m_metafile
= metafile
; }
149 virtual wxMetafile
GetMetafile() const
150 { return m_metafile
; }
152 // implement base class pure virtuals
153 virtual size_t GetDataSize() const;
154 virtual bool GetDataHere(void *buf
) const;
155 virtual bool SetData(size_t len
, const void *buf
);
157 virtual size_t GetDataSize(const wxDataFormat
& WXUNUSED(format
)) const
158 { return GetDataSize(); }
159 virtual bool GetDataHere(const wxDataFormat
& WXUNUSED(format
),
161 { return GetDataHere(buf
); }
162 virtual bool SetData(const wxDataFormat
& WXUNUSED(format
),
163 size_t len
, const void *buf
)
164 { return SetData(len
, buf
); }
166 wxMetafile m_metafile
;