1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/metafile.h
3 // Purpose: wxMetaFile, wxMetaFileDC and wxMetaFileDataObject classes
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_METAFIILE_H_
13 #define _WX_METAFIILE_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "metafile.h"
20 #include "wx/gdiobj.h"
22 #if wxUSE_DRAG_AND_DROP
23 #include "wx/dataobj.h"
26 // ----------------------------------------------------------------------------
27 // Metafile and metafile device context classes
28 // ----------------------------------------------------------------------------
30 class WXDLLEXPORT wxMetafile
;
32 class WXDLLEXPORT wxMetafileRefData
: public wxGDIRefData
34 friend class WXDLLEXPORT wxMetafile
;
41 int m_windowsMappingMode
;
42 int m_width
, m_height
;
45 #define M_METAFILEDATA ((wxMetafileRefData *)m_refData)
47 class WXDLLEXPORT wxMetafile
: public wxGDIObject
50 wxMetafile(const wxString
& file
= wxEmptyString
);
51 wxMetafile(const wxMetafile
& metafile
) { Ref(metafile
); }
52 virtual ~wxMetafile();
54 // After this is called, the metafile cannot be used for anything
55 // since it is now owned by the clipboard.
56 virtual bool SetClipboard(int width
= 0, int height
= 0);
58 virtual bool Play(wxDC
*dc
);
59 bool Ok() const { return (M_METAFILEDATA
&& (M_METAFILEDATA
->m_metafile
!= 0)); };
61 // set/get the size of metafile for clipboard operations
62 wxSize
GetSize() const { return wxSize(GetWidth(), GetHeight()); }
63 int GetWidth() const { return M_METAFILEDATA
->m_width
; }
64 int GetHeight() const { return M_METAFILEDATA
->m_height
; }
66 void SetWidth(int width
) { M_METAFILEDATA
->m_width
= width
; }
67 void SetHeight(int height
) { M_METAFILEDATA
->m_height
= height
; }
70 WXHANDLE
GetHMETAFILE() const { return M_METAFILEDATA
->m_metafile
; }
71 void SetHMETAFILE(WXHANDLE mf
) ;
72 int GetWindowsMappingMode() const { return M_METAFILEDATA
->m_windowsMappingMode
; }
73 void SetWindowsMappingMode(int mm
);
76 wxMetafile
& operator=(const wxMetafile
& metafile
)
77 { if (*this != metafile
) Ref(metafile
); return *this; }
78 bool operator==(const wxMetafile
& metafile
) const
79 { return m_refData
== metafile
.m_refData
; }
80 bool operator!=(const wxMetafile
& metafile
) const
81 { return m_refData
!= metafile
.m_refData
; }
84 DECLARE_DYNAMIC_CLASS(wxMetafile
)
87 class WXDLLEXPORT wxMetafileDC
: public wxDC
90 // Don't supply origin and extent
91 // Supply them to wxMakeMetaFilePlaceable instead.
92 wxMetafileDC(const wxString
& file
= wxEmptyString
);
94 // Supply origin and extent (recommended).
95 // Then don't need to supply them to wxMakeMetaFilePlaceable.
96 wxMetafileDC(const wxString
& file
, int xext
, int yext
, int xorg
, int yorg
);
98 virtual ~wxMetafileDC();
100 // Should be called at end of drawing
101 virtual wxMetafile
*Close();
102 virtual void SetMapMode(int mode
);
103 virtual void GetTextExtent(const wxString
& string
, long *x
, long *y
,
104 long *descent
= NULL
, long *externalLeading
= NULL
,
105 wxFont
*theFont
= NULL
, bool use16bit
= FALSE
) const;
108 wxMetafile
*GetMetaFile() const { return m_metaFile
; }
109 void SetMetaFile(wxMetafile
*mf
) { m_metaFile
= mf
; }
110 int GetWindowsMappingMode() const { return m_windowsMappingMode
; }
111 void SetWindowsMappingMode(int mm
) { m_windowsMappingMode
= mm
; }
114 int m_windowsMappingMode
;
115 wxMetafile
* m_metaFile
;
118 DECLARE_DYNAMIC_CLASS(wxMetafileDC
)
122 * Pass filename of existing non-placeable metafile, and bounding box.
123 * Adds a placeable metafile header, sets the mapping mode to anisotropic,
124 * and sets the window origin and extent to mimic the wxMM_TEXT mapping mode.
128 // No origin or extent
129 bool WXDLLEXPORT
wxMakeMetafilePlaceable(const wxString
& filename
, float scale
= 1.0);
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
);
134 // ----------------------------------------------------------------------------
135 // wxMetafileDataObject is a specialization of wxDataObject for metafile data
136 // ----------------------------------------------------------------------------
138 #if wxUSE_DRAG_AND_DROP
140 class WXDLLEXPORT wxMetafileDataObject
: public wxDataObjectSimple
144 wxMetafileDataObject() : wxDataObjectSimple(wxDF_METAFILE
)
146 wxMetafileDataObject(const wxMetafile
& metafile
)
147 : wxDataObjectSimple(wxDF_METAFILE
), m_metafile(metafile
) { }
149 // virtual functions which you may override if you want to provide data on
150 // demand only - otherwise, the trivial default versions will be used
151 virtual void SetMetafile(const wxMetafile
& metafile
)
152 { m_metafile
= metafile
; }
153 virtual wxMetafile
GetMetafile() const
154 { return m_metafile
; }
156 // implement base class pure virtuals
157 virtual size_t GetDataSize() const;
158 virtual bool GetDataHere(void *buf
) const;
159 virtual bool SetData(size_t len
, const void *buf
);
162 wxMetafile m_metafile
;
165 #endif // wxUSE_DRAG_AND_DROP