]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/enhmeta.h
check that the version of __sync_sub_and_fetch that returns a value is supported...
[wxWidgets.git] / include / wx / msw / enhmeta.h
CommitLineData
d9317fd4
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/msw/enhmeta.h
3// Purpose: wxEnhMetaFile class for Win32
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 13.01.00
7// RCS-ID: $Id$
8// Copyright: (c) 2000 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
d9317fd4
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MSW_ENHMETA_H_
13#define _WX_MSW_ENHMETA_H_
14
d9317fd4
VZ
15#include "wx/dc.h"
16
17#if wxUSE_DRAG_AND_DROP
18 #include "wx/dataobj.h"
19#endif
20
21// ----------------------------------------------------------------------------
22// wxEnhMetaFile: encapsulation of Win32 HENHMETAFILE
23// ----------------------------------------------------------------------------
24
25class WXDLLEXPORT wxEnhMetaFile : public wxObject
26{
27public:
28 wxEnhMetaFile(const wxString& file = wxEmptyString) : m_filename(file)
29 { Init(); }
252d21bd 30 wxEnhMetaFile(const wxEnhMetaFile& metafile) : wxObject()
d9317fd4
VZ
31 { Init(); Assign(metafile); }
32 wxEnhMetaFile& operator=(const wxEnhMetaFile& metafile)
33 { Free(); Assign(metafile); return *this; }
34
35 virtual ~wxEnhMetaFile()
36 { Free(); }
37
38 // display the picture stored in the metafile on the given DC
39 bool Play(wxDC *dc, wxRect *rectBound = (wxRect *)NULL);
40
41 // accessors
b7cacb43
VZ
42 bool Ok() const { return IsOk(); }
43 bool IsOk() const { return m_hMF != 0; }
d9317fd4
VZ
44
45 wxSize GetSize() const;
46 int GetWidth() const { return GetSize().x; }
47 int GetHeight() const { return GetSize().y; }
48
49 const wxString& GetFileName() const { return m_filename; }
50
bfbd6dc1
VZ
51 // copy the metafile to the clipboard: the width and height parameters are
52 // for backwards compatibility (with wxMetaFile) only, they are ignored by
53 // this method
54 bool SetClipboard(int width = 0, int height = 0);
55
d9317fd4
VZ
56 // implementation
57 WXHANDLE GetHENHMETAFILE() const { return m_hMF; }
58 void SetHENHMETAFILE(WXHANDLE hMF) { Free(); m_hMF = hMF; }
59
60protected:
7a295dfa 61 void Init();
d9317fd4
VZ
62 void Free();
63 void Assign(const wxEnhMetaFile& mf);
64
65private:
66 wxString m_filename;
67 WXHANDLE m_hMF;
68
69 DECLARE_DYNAMIC_CLASS(wxEnhMetaFile)
70};
71
72// ----------------------------------------------------------------------------
73// wxEnhMetaFileDC: allows to create a wxEnhMetaFile
74// ----------------------------------------------------------------------------
75
76class WXDLLEXPORT wxEnhMetaFileDC : public wxDC
77{
78public:
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);
84
2eb10e2a 85 DECLARE_DYNAMIC_CLASS_NO_COPY(wxEnhMetaFileDC)
d9317fd4
VZ
86};
87
7ba4fbeb
VZ
88#if wxUSE_DRAG_AND_DROP
89
d9317fd4
VZ
90// ----------------------------------------------------------------------------
91// wxEnhMetaFileDataObject is a specialization of wxDataObject for enh metafile
92// ----------------------------------------------------------------------------
93
d9317fd4 94// notice that we want to support both CF_METAFILEPICT and CF_ENHMETAFILE and
bfbd6dc1 95// so we derive from wxDataObject and not from wxDataObjectSimple
d9317fd4
VZ
96class WXDLLEXPORT wxEnhMetaFileDataObject : public wxDataObject
97{
98public:
99 // ctors
100 wxEnhMetaFileDataObject() { }
101 wxEnhMetaFileDataObject(const wxEnhMetaFile& metafile)
102 : m_metafile(metafile) { }
103
104 // virtual functions which you may override if you want to provide data on
105 // demand only - otherwise, the trivial default versions will be used
106 virtual void SetMetafile(const wxEnhMetaFile& metafile)
107 { m_metafile = metafile; }
108 virtual wxEnhMetaFile GetMetafile() const
109 { return m_metafile; }
110
111 // implement base class pure virtuals
112 virtual wxDataFormat GetPreferredFormat(Direction dir) const;
113 virtual size_t GetFormatCount(Direction dir) const;
114 virtual void GetAllFormats(wxDataFormat *formats, Direction dir) const;
115 virtual size_t GetDataSize(const wxDataFormat& format) const;
116 virtual bool GetDataHere(const wxDataFormat& format, void *buf) const;
117 virtual bool SetData(const wxDataFormat& format, size_t len,
118 const void *buf);
119
120protected:
121 wxEnhMetaFile m_metafile;
2eb10e2a
VZ
122
123 DECLARE_NO_COPY_CLASS(wxEnhMetaFileDataObject)
d9317fd4
VZ
124};
125
7ba4fbeb
VZ
126
127// ----------------------------------------------------------------------------
128// wxEnhMetaFileSimpleDataObject does derive from wxDataObjectSimple which
129// makes it more convenient to use (it can be used with wxDataObjectComposite)
130// at the price of not supoprting any more CF_METAFILEPICT but only
131// CF_ENHMETAFILE
132// ----------------------------------------------------------------------------
133
134class WXDLLEXPORT wxEnhMetaFileSimpleDataObject : public wxDataObjectSimple
135{
136public:
137 // ctors
138 wxEnhMetaFileSimpleDataObject() : wxDataObjectSimple(wxDF_ENHMETAFILE) { }
139 wxEnhMetaFileSimpleDataObject(const wxEnhMetaFile& metafile)
140 : wxDataObjectSimple(wxDF_ENHMETAFILE), m_metafile(metafile) { }
141
142 // virtual functions which you may override if you want to provide data on
143 // demand only - otherwise, the trivial default versions will be used
144 virtual void SetEnhMetafile(const wxEnhMetaFile& metafile)
145 { m_metafile = metafile; }
146 virtual wxEnhMetaFile GetEnhMetafile() const
147 { return m_metafile; }
148
149 // implement base class pure virtuals
150 virtual size_t GetDataSize() const;
151 virtual bool GetDataHere(void *buf) const;
152 virtual bool SetData(size_t len, const void *buf);
153
0e4acbd4
JS
154 virtual size_t GetDataSize(const wxDataFormat& WXUNUSED(format)) const
155 { return GetDataSize(); }
156 virtual bool GetDataHere(const wxDataFormat& WXUNUSED(format),
157 void *buf) const
158 { return GetDataHere(buf); }
159 virtual bool SetData(const wxDataFormat& WXUNUSED(format),
160 size_t len, const void *buf)
161 { return SetData(len, buf); }
162
7ba4fbeb
VZ
163protected:
164 wxEnhMetaFile m_metafile;
2eb10e2a
VZ
165
166 DECLARE_NO_COPY_CLASS(wxEnhMetaFileSimpleDataObject)
7ba4fbeb
VZ
167};
168
d9317fd4
VZ
169#endif // wxUSE_DRAG_AND_DROP
170
171#endif // _WX_MSW_ENHMETA_H_