1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/enhmeta.h
3 // Purpose: wxEnhMetaFile class for Win32
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2000 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSW_ENHMETA_H_
13 #define _WX_MSW_ENHMETA_H_
17 #if wxUSE_DRAG_AND_DROP
18 #include "wx/dataobj.h"
21 // ----------------------------------------------------------------------------
22 // wxEnhMetaFile: encapsulation of Win32 HENHMETAFILE
23 // ----------------------------------------------------------------------------
25 class WXDLLEXPORT wxEnhMetaFile
: public wxObject
28 wxEnhMetaFile(const wxString
& file
= wxEmptyString
) : m_filename(file
)
30 wxEnhMetaFile(const wxEnhMetaFile
& metafile
) : wxObject()
31 { Init(); Assign(metafile
); }
32 wxEnhMetaFile
& operator=(const wxEnhMetaFile
& metafile
)
33 { Free(); Assign(metafile
); return *this; }
35 virtual ~wxEnhMetaFile()
38 // display the picture stored in the metafile on the given DC
39 bool Play(wxDC
*dc
, wxRect
*rectBound
= (wxRect
*)NULL
);
42 bool Ok() const { return IsOk(); }
43 bool IsOk() const { return m_hMF
!= 0; }
45 wxSize
GetSize() const;
46 int GetWidth() const { return GetSize().x
; }
47 int GetHeight() const { return GetSize().y
; }
49 const wxString
& GetFileName() const { return m_filename
; }
51 // copy the metafile to the clipboard: the width and height parameters are
52 // for backwards compatibility (with wxMetaFile) only, they are ignored by
54 bool SetClipboard(int width
= 0, int height
= 0);
57 WXHANDLE
GetHENHMETAFILE() const { return m_hMF
; }
58 void SetHENHMETAFILE(WXHANDLE hMF
) { Free(); m_hMF
= hMF
; }
63 void Assign(const wxEnhMetaFile
& mf
);
69 DECLARE_DYNAMIC_CLASS(wxEnhMetaFile
)
72 // ----------------------------------------------------------------------------
73 // wxEnhMetaFileDC: allows to create a wxEnhMetaFile
74 // ----------------------------------------------------------------------------
76 class WXDLLEXPORT wxEnhMetaFileDC
: public wxDC
79 // the ctor parameters specify the filename (empty for memory metafiles),
80 // the metafile picture size and the optional description/comment
81 wxEnhMetaFileDC(const wxString
& filename
= wxEmptyString
,
82 int width
= 0, int height
= 0,
83 const wxString
& description
= wxEmptyString
);
85 virtual ~wxEnhMetaFileDC();
87 // obtain a pointer to the new metafile (caller should delete it)
88 wxEnhMetaFile
*Close();
91 virtual void DoGetSize(int *width
, int *height
) const;
94 // size passed to ctor and returned by DoGetSize()
98 DECLARE_DYNAMIC_CLASS_NO_COPY(wxEnhMetaFileDC
)
101 #if wxUSE_DRAG_AND_DROP
103 // ----------------------------------------------------------------------------
104 // wxEnhMetaFileDataObject is a specialization of wxDataObject for enh metafile
105 // ----------------------------------------------------------------------------
107 // notice that we want to support both CF_METAFILEPICT and CF_ENHMETAFILE and
108 // so we derive from wxDataObject and not from wxDataObjectSimple
109 class WXDLLEXPORT wxEnhMetaFileDataObject
: public wxDataObject
113 wxEnhMetaFileDataObject() { }
114 wxEnhMetaFileDataObject(const wxEnhMetaFile
& metafile
)
115 : m_metafile(metafile
) { }
117 // virtual functions which you may override if you want to provide data on
118 // demand only - otherwise, the trivial default versions will be used
119 virtual void SetMetafile(const wxEnhMetaFile
& metafile
)
120 { m_metafile
= metafile
; }
121 virtual wxEnhMetaFile
GetMetafile() const
122 { return m_metafile
; }
124 // implement base class pure virtuals
125 virtual wxDataFormat
GetPreferredFormat(Direction dir
) const;
126 virtual size_t GetFormatCount(Direction dir
) const;
127 virtual void GetAllFormats(wxDataFormat
*formats
, Direction dir
) const;
128 virtual size_t GetDataSize(const wxDataFormat
& format
) const;
129 virtual bool GetDataHere(const wxDataFormat
& format
, void *buf
) const;
130 virtual bool SetData(const wxDataFormat
& format
, size_t len
,
134 wxEnhMetaFile m_metafile
;
136 DECLARE_NO_COPY_CLASS(wxEnhMetaFileDataObject
)
140 // ----------------------------------------------------------------------------
141 // wxEnhMetaFileSimpleDataObject does derive from wxDataObjectSimple which
142 // makes it more convenient to use (it can be used with wxDataObjectComposite)
143 // at the price of not supoprting any more CF_METAFILEPICT but only
145 // ----------------------------------------------------------------------------
147 class WXDLLEXPORT wxEnhMetaFileSimpleDataObject
: public wxDataObjectSimple
151 wxEnhMetaFileSimpleDataObject() : wxDataObjectSimple(wxDF_ENHMETAFILE
) { }
152 wxEnhMetaFileSimpleDataObject(const wxEnhMetaFile
& metafile
)
153 : wxDataObjectSimple(wxDF_ENHMETAFILE
), m_metafile(metafile
) { }
155 // virtual functions which you may override if you want to provide data on
156 // demand only - otherwise, the trivial default versions will be used
157 virtual void SetEnhMetafile(const wxEnhMetaFile
& metafile
)
158 { m_metafile
= metafile
; }
159 virtual wxEnhMetaFile
GetEnhMetafile() const
160 { return m_metafile
; }
162 // implement base class pure virtuals
163 virtual size_t GetDataSize() const;
164 virtual bool GetDataHere(void *buf
) const;
165 virtual bool SetData(size_t len
, const void *buf
);
167 virtual size_t GetDataSize(const wxDataFormat
& WXUNUSED(format
)) const
168 { return GetDataSize(); }
169 virtual bool GetDataHere(const wxDataFormat
& WXUNUSED(format
),
171 { return GetDataHere(buf
); }
172 virtual bool SetData(const wxDataFormat
& WXUNUSED(format
),
173 size_t len
, const void *buf
)
174 { return SetData(len
, buf
); }
177 wxEnhMetaFile m_metafile
;
179 DECLARE_NO_COPY_CLASS(wxEnhMetaFileSimpleDataObject
)
182 #endif // wxUSE_DRAG_AND_DROP
184 #endif // _WX_MSW_ENHMETA_H_