]> git.saurik.com Git - wxWidgets.git/blame - include/wx/dcsvg.h
Restore correct setting of the background colour.
[wxWidgets.git] / include / wx / dcsvg.h
CommitLineData
18cea871
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/dcsvg.h
3// Purpose: wxSVGFileDC
4// Author: Chris Elliott
5// Modified by:
6// Created:
7// Copyright: (c) Chris Elliott
8// RCS-ID: $Id$
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
8e10778e
VZ
12#ifndef _WX_DCSVG_H_
13#define _WX_DCSVG_H_
18cea871 14
ae0fbcee 15#include "wx/string.h"
8e10778e 16#include "wx/dc.h"
e104adcd 17
b0fc907f
VZ
18#if wxUSE_SVG
19
e104adcd 20#define wxSVGVersion wxT("v0100")
e104adcd 21
210bb741
CE
22#ifdef __BORLANDC__
23#pragma warn -8008
24#pragma warn -8066
25#endif
26
8e10778e
VZ
27class WXDLLIMPEXP_FWD_BASE wxFileOutputStream;
28
d8416992
RR
29
30
163b3ad7 31class WXDLLIMPEXP_FWD_CORE wxSVGFileDC;
d8416992 32
888dde65 33class WXDLLIMPEXP_CORE wxSVGFileDCImpl : public wxDCImpl
e104adcd 34{
621b83d9 35public:
03647350 36 wxSVGFileDCImpl( wxSVGFileDC *owner, const wxString &filename,
d8416992 37 int width=320, int height=240, double dpi=72.0 );
d8416992 38
888dde65 39 virtual ~wxSVGFileDCImpl();
03647350 40
d8416992 41 bool IsOk() const { return m_OK; }
8e10778e
VZ
42
43 virtual bool CanDrawBitmap() const { return true; }
44 virtual bool CanGetTextExtent() const { return true; }
45
46 virtual int GetDepth() const
47 {
48 wxFAIL_MSG(wxT("wxSVGFILEDC::GetDepth Call not implemented"));
49 return -1;
50 }
51
52 virtual void Clear()
53 {
54 wxFAIL_MSG(wxT("wxSVGFILEDC::Clear() Call not implemented \nNot sensible for an output file?"));
55 }
56
57 virtual void DestroyClippingRegion()
58 {
59 wxFAIL_MSG(wxT("wxSVGFILEDC::void Call not yet implemented"));
60 }
61
62 virtual wxCoord GetCharHeight() const;
63 virtual wxCoord GetCharWidth() const;
64
65 virtual void SetClippingRegion(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y),
66 wxCoord WXUNUSED(w), wxCoord WXUNUSED(h))
67 {
68 wxFAIL_MSG(wxT("wxSVGFILEDC::SetClippingRegion not implemented"));
69 }
70
71 virtual void SetPalette(const wxPalette& WXUNUSED(palette))
72 {
73 wxFAIL_MSG(wxT("wxSVGFILEDC::SetPalette not implemented"));
74 }
75
76 virtual void GetClippingBox(wxCoord *WXUNUSED(x), wxCoord *WXUNUSED(y),
77 wxCoord *WXUNUSED(w), wxCoord *WXUNUSED(h))
78 {
79 wxFAIL_MSG(wxT("wxSVGFILEDC::GetClippingBox not implemented"));
80 }
81
89efaf2b 82 virtual void SetLogicalFunction(wxRasterOperationMode WXUNUSED(function))
8e10778e
VZ
83 {
84 wxFAIL_MSG(wxT("wxSVGFILEDC::SetLogicalFunction Call not implemented"));
85 }
86
89efaf2b 87 virtual wxRasterOperationMode GetLogicalFunction() const
8e10778e
VZ
88 {
89 wxFAIL_MSG(wxT("wxSVGFILEDC::GetLogicalFunction() not implemented"));
89efaf2b 90 return wxCOPY;
8e10778e
VZ
91 }
92
93 virtual void SetBackground( const wxBrush &brush );
94 virtual void SetBackgroundMode( int mode );
95 virtual void SetBrush(const wxBrush& brush);
96 virtual void SetFont(const wxFont& font);
97 virtual void SetPen(const wxPen& pen);
98
621b83d9 99private:
8e10778e
VZ
100 virtual bool DoGetPixel(wxCoord, wxCoord, wxColour *) const
101 {
102 wxFAIL_MSG(wxT("wxSVGFILEDC::DoGetPixel Call not implemented"));
103 return true;
104 }
105
106 virtual bool DoBlit(wxCoord, wxCoord, wxCoord, wxCoord, wxDC *,
89efaf2b 107 wxCoord, wxCoord, wxRasterOperationMode = wxCOPY,
8e10778e 108 bool = 0, int = -1, int = -1);
e104adcd 109
8e10778e
VZ
110 virtual void DoCrossHair(wxCoord, wxCoord)
111 {
112 wxFAIL_MSG(wxT("wxSVGFILEDC::CrossHair Call not implemented"));
113 }
e104adcd 114
8e10778e 115 virtual void DoDrawArc(wxCoord, wxCoord, wxCoord, wxCoord, wxCoord, wxCoord);
e104adcd 116
2a230426 117 virtual void DoDrawBitmap(const wxBitmap &, wxCoord, wxCoord, bool = false);
e104adcd 118
8e10778e 119 virtual void DoDrawCheckMark(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
e104adcd 120
8e10778e 121 virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
e104adcd 122
8e10778e
VZ
123 virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h,
124 double sa, double ea);
e104adcd 125
8e10778e 126 virtual void DoDrawIcon(const wxIcon &, wxCoord, wxCoord);
e104adcd 127
8e10778e 128 virtual void DoDrawLine (wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
e104adcd 129
8e10778e
VZ
130 virtual void DoDrawLines(int n, wxPoint points[],
131 wxCoord xoffset = 0, wxCoord yoffset = 0);
e104adcd 132
8e10778e 133 virtual void DoDrawPoint(wxCoord, wxCoord);
621b83d9 134
03647350 135 virtual void DoDrawPolygon(int n, wxPoint points[],
89efaf2b
FM
136 wxCoord xoffset, wxCoord yoffset,
137 wxPolygonFillMode fillStyle);
e104adcd 138
8e10778e 139 virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
e104adcd 140
8e10778e
VZ
141 virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
142 double angle);
e104adcd 143
8e10778e
VZ
144 virtual void DoDrawRoundedRectangle(wxCoord x, wxCoord y,
145 wxCoord w, wxCoord h,
146 double radius = 20) ;
e104adcd 147
8e10778e 148 virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
e104adcd 149
8e10778e
VZ
150 virtual bool DoFloodFill(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y),
151 const wxColour& WXUNUSED(col),
89efaf2b 152 wxFloodFillStyle WXUNUSED(style) = wxFLOOD_SURFACE)
8e10778e
VZ
153 {
154 wxFAIL_MSG(wxT("wxSVGFILEDC::DoFloodFill Call not implemented"));
155 return false;
156 }
e104adcd 157
8e10778e
VZ
158 virtual void DoGetSize(int * x, int *y) const
159 {
160 if ( x )
161 *x = m_width;
162 if ( y )
163 *y = m_height;
164 }
e104adcd 165
8e10778e
VZ
166 virtual void DoGetTextExtent(const wxString& string, wxCoord *w, wxCoord *h,
167 wxCoord *descent = NULL,
168 wxCoord *externalLeading = NULL,
169 const wxFont *font = NULL) const;
e104adcd 170
fdaad94e 171 virtual void DoSetDeviceClippingRegion(const wxRegion& WXUNUSED(region))
8e10778e 172 {
fdaad94e 173 wxFAIL_MSG(wxT("wxSVGFILEDC::DoSetDeviceClippingRegion not yet implemented"));
d8416992
RR
174 }
175
176 virtual void DoSetClippingRegion( int WXUNUSED(x), int WXUNUSED(y), int WXUNUSED(width), int WXUNUSED(height) )
177 {
178 wxFAIL_MSG(wxT("wxSVGFILEDC::DoSetClippingRegion not yet implemented"));
8e10778e 179 }
e104adcd 180
d8416992 181 virtual void DoGetSizeMM( int *width, int *height ) const;
03647350 182
d8416992
RR
183 virtual wxSize GetPPI() const;
184
185 void Init (const wxString &filename, int width, int height, double dpi);
e104adcd 186
8e10778e 187 void NewGraphics();
e104adcd 188
8e10778e 189 void write( const wxString &s );
621b83d9
RR
190
191private:
8e10778e
VZ
192 wxFileOutputStream *m_outfile;
193 wxString m_filename;
194 int m_sub_images; // number of png format images we have
195 bool m_OK;
196 bool m_graphics_changed;
197 int m_width, m_height;
d8416992 198 double m_dpi;
8e10778e 199
621b83d9 200private:
888dde65 201 DECLARE_ABSTRACT_CLASS(wxSVGFileDCImpl)
d8416992
RR
202};
203
204
d8416992
RR
205class WXDLLIMPEXP_CORE wxSVGFileDC : public wxDC
206{
207public:
03647350 208 wxSVGFileDC(const wxString& filename,
f0875501
VZ
209 int width = 320,
210 int height = 240,
211 double dpi = 72.0)
212 : wxDC(new wxSVGFileDCImpl(this, filename, width, height, dpi))
03647350 213 {
d8416992 214 }
e104adcd
CE
215};
216
b0fc907f
VZ
217#endif // wxUSE_SVG
218
8e10778e 219#endif // _WX_DCSVG_H_