]> git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/metafile.h
atsu for textctrl
[wxWidgets.git] / include / wx / mac / carbon / metafile.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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
7 // Modified by:
8 // Created: 1998-01-01
9 // RCS-ID: $Id$
10 // Copyright: (c) Stefan Csomor
11 // Licence: wxWindows licence
12 /////////////////////////////////////////////////////////////////////////////
13
14
15 #ifndef _WX_METAFIILE_H_
16 #define _WX_METAFIILE_H_
17
18 #include "wx/dc.h"
19 #include "wx/gdiobj.h"
20
21 #if wxUSE_DATAOBJ
22 #include "wx/dataobj.h"
23 #endif
24
25 #include "wx/mac/carbon/dcclient.h"
26
27 /*
28 * Metafile and metafile device context classes
29 *
30 */
31
32 #define wxMetaFile wxMetafile
33 #define wxMetaFileDC wxMetafileDC
34
35 class WXDLLIMPEXP_FWD_CORE wxMetafile;
36 class wxMetafileRefData ;
37
38 #define M_METAFILEDATA ((wxMetafileRefData *)m_refData)
39
40 class WXDLLEXPORT wxMetafile: public wxGDIObject
41 {
42 DECLARE_DYNAMIC_CLASS(wxMetafile)
43 public:
44 wxMetafile(const wxString& file = wxEmptyString);
45 virtual ~wxMetafile(void);
46
47 // After this is called, the metafile cannot be used for anything
48 // since it is now owned by the clipboard.
49 virtual bool SetClipboard(int width = 0, int height = 0);
50
51 virtual bool Play(wxDC *dc);
52 bool Ok() const { return IsOk(); }
53 bool IsOk() const ;
54
55 wxSize GetSize() const;
56 int GetWidth() const { return GetSize().x; }
57 int GetHeight() const { return GetSize().y; }
58
59 // Implementation
60 WXHMETAFILE GetHMETAFILE() const ;
61 void SetHMETAFILE(WXHMETAFILE mf) ;
62 #ifndef __LP64__
63 // Since the native metafile format is PDF for Quartz
64 // we need a call that allows setting PICT content for
65 // backwards compatibility
66 void SetPICT(void* pictHandle) ;
67 #endif
68 };
69
70
71 class WXDLLEXPORT wxMetafileDCImpl: public wxGCDCImpl
72 {
73 public:
74 wxMetafileDCImpl( wxDC *owner,
75 const wxString& filename,
76 int width, int height,
77 const wxString& description );
78
79 virtual ~wxMetafileDCImpl();
80
81 // Should be called at end of drawing
82 virtual wxMetafile *Close();
83
84 // Implementation
85 wxMetafile *GetMetaFile(void) const { return m_metaFile; }
86 void SetMetaFile(wxMetafile *mf) { m_metaFile = mf; }
87
88 protected:
89 virtual void DoGetSize(int *width, int *height) const;
90
91 wxMetafile* m_metaFile;
92
93 private:
94 DECLARE_CLASS(wxMetafileDCImpl)
95 DECLARE_NO_COPY_CLASS(wxMetafileDCImpl)
96 };
97
98 class WXDLLEXPORT wxMetafileDC: public wxDC
99 {
100 public:
101 // the ctor parameters specify the filename (empty for memory metafiles),
102 // the metafile picture size and the optional description/comment
103 wxMetafileDC( const wxString& filename = wxEmptyString,
104 int width = 0, int height = 0,
105 const wxString& description = wxEmptyString )
106 { m_pimpl = new wxMetafileDCImpl( this, filename, width, height, description ); }
107
108 wxMetafile *GetMetafile() const
109 { return ((wxMetafileDCImpl*)m_pimpl)->GetMetaFile(); }
110
111 wxMetafile *Close()
112 { return ((wxMetafileDCImpl*)m_pimpl)->Close(); }
113
114 private:
115 DECLARE_CLASS(wxMetafileDC)
116 DECLARE_NO_COPY_CLASS(wxMetafileDC)
117 };
118
119
120 /*
121 * Pass filename of existing non-placeable metafile, and bounding box.
122 * Adds a placeable metafile header, sets the mapping mode to anisotropic,
123 * and sets the window origin and extent to mimic the wxMM_TEXT mapping mode.
124 *
125 */
126
127 // No origin or extent
128 #define wxMakeMetaFilePlaceable wxMakeMetafilePlaceable
129 bool WXDLLEXPORT wxMakeMetafilePlaceable(const wxString& filename, float scale = 1.0);
130
131 // Optional origin and extent
132 bool WXDLLEXPORT wxMakeMetaFilePlaceable(const wxString& filename, int x1, int y1, int x2, int y2, float scale = 1.0, bool useOriginAndExtent = TRUE);
133
134 // ----------------------------------------------------------------------------
135 // wxMetafileDataObject is a specialization of wxDataObject for metafile data
136 // ----------------------------------------------------------------------------
137
138 #if wxUSE_DATAOBJ
139 class WXDLLEXPORT wxMetafileDataObject : public wxDataObjectSimple
140 {
141 public:
142 // ctors
143 wxMetafileDataObject()
144 : wxDataObjectSimple(wxDF_METAFILE) { };
145 wxMetafileDataObject(const wxMetafile& metafile)
146 : wxDataObjectSimple(wxDF_METAFILE), m_metafile(metafile) { }
147
148 // virtual functions which you may override if you want to provide data on
149 // demand only - otherwise, the trivial default versions will be used
150 virtual void SetMetafile(const wxMetafile& metafile)
151 { m_metafile = metafile; }
152 virtual wxMetafile GetMetafile() const
153 { return m_metafile; }
154
155 // implement base class pure virtuals
156 virtual size_t GetDataSize() const;
157 virtual bool GetDataHere(void *buf) const;
158 virtual bool SetData(size_t len, const void *buf);
159
160 virtual size_t GetDataSize(const wxDataFormat& WXUNUSED(format)) const
161 { return GetDataSize(); }
162 virtual bool GetDataHere(const wxDataFormat& WXUNUSED(format),
163 void *buf) const
164 { return GetDataHere(buf); }
165 virtual bool SetData(const wxDataFormat& WXUNUSED(format),
166 size_t len, const void *buf)
167 { return SetData(len, buf); }
168 protected:
169 wxMetafile m_metafile;
170 };
171 #endif
172
173 #endif
174 // _WX_METAFIILE_H_