#include <wx/wfstream.h>
#include <wx/string.h>
+#ifdef WXMAKINGDLL_SVG
+ #define WXDLLIMPEXP_SVG WXEXPORT
+#elif defined(WXUSINGDLL)
+ #define WXDLLIMPEXP_SVG WXIMPORT
+#else // not making nor using DLL
+ #define WXDLLIMPEXP_SVG
+#endif
+
#define wxSVGVersion wxT("v0100")
#ifdef __BORLANDC__
#pragma warn -rch
#define mm2pt 2.83464566929
#define pt2mm 0.352777777778
-class wxSVGFileDC : public wxDC
+class WXDLLIMPEXP_SVG wxSVGFileDC : public wxDC
{
private:
int m_sub_images ;
bool m_OK, m_graphics_changed ;
int m_width, m_height ;
-
- double
+
+ double
m_logicalScaleX,
m_logicalScaleY,
m_userScaleX,
m_userScaleY,
m_scaleX,
m_scaleY,
- m_OriginX,
+ m_OriginX,
m_OriginY,
m_mm_to_pix_x,
m_mm_to_pix_y;
- bool
- m_needComputeScaleX,
+ bool
+ m_needComputeScaleX,
m_needComputeScaleY; // not yet used
-
- bool DoGetPixel(wxCoord, wxCoord, class wxColour *) const
- { wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::DoGetPixel Call not implemented")); return TRUE ; };
+
+ bool DoGetPixel(wxCoord, wxCoord, class wxColour *) const
+ { wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::DoGetPixel Call not implemented")); return true; };
virtual bool DoBlit(wxCoord, wxCoord, wxCoord, wxCoord, class wxDC *,
wxCoord, wxCoord, int = wxCOPY, bool = 0, int = -1, int = -1) ;
- void DoCrossHair(wxCoord, wxCoord)
+ void DoCrossHair(wxCoord, wxCoord)
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::CrossHair Call not implemented")); return ; };
void DoDrawArc(wxCoord, wxCoord, wxCoord, wxCoord, wxCoord, wxCoord);
void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
- bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
- int style = wxFLOOD_SURFACE)
+ bool DoFloodFill(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), const wxColour& WXUNUSED(col),
+ int WXUNUSED(style) = wxFLOOD_SURFACE)
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::DoFloodFill Call not implemented")); return FALSE ; };
void DoGetSize(int * x, int *y) const { *x = m_width; *y = m_height ; return ; } ;
void DoGetTextExtent(const wxString& string, wxCoord *w, wxCoord *h, wxCoord *descent = NULL, wxCoord *externalLeading = NULL, wxFont *font = NULL) const ;
- void DoSetClippingRegionAsRegion(const class wxRegion &)
+ void DoSetClippingRegionAsRegion(const class wxRegion &)
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::DoSetClippingRegionAsRegion Call not yet implemented")); return ; };
void Init (wxString f, int Width, int Height, float dpi);
return (wxCoord)((double)(y) * m_scaleY - 0.5);
}
+ void write(const wxString &s);
public:
~wxSVGFileDC();
- bool CanDrawBitmap() const { return TRUE ; };
+ bool CanDrawBitmap() const { return true; };
- bool CanGetTextExtent() const { return TRUE ; };
+ bool CanGetTextExtent() const { return true; };
int GetDepth() const
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::GetDepth Call not implemented")); return -1 ; };
-
+
void BeginDrawing() { return;};
bool Blit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, wxDC* source, wxCoord xsrc, wxCoord ysrc, int logicalFunc = wxCOPY, bool useMask = FALSE)
void DrawBitmap(const wxBitmap& bitmap, wxCoord x, wxCoord y, bool transparent)
{ DoDrawBitmap ( bitmap, x, y, transparent ) ; return ;};
-
void DrawIcon(const wxIcon& icon, wxCoord x, wxCoord y)
{DoDrawIcon(icon, x, y) ; return ; };
wxCoord GetCharWidth() const;
- void GetClippingBox(wxCoord *x, wxCoord *y, wxCoord *width, wxCoord *height)
+ void GetClippingBox(wxCoord *WXUNUSED(x), wxCoord *WXUNUSED(y), wxCoord * WXUNUSED(width), wxCoord * WXUNUSED(height))
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::GetClippingBox Call not yet implemented")); return ; };
int GetLogicalFunction()
int GetMapMode() ;
- bool GetOptimization()
- { wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::GetOptimization() No optimization code used")); return TRUE ; };
-
bool GetPixel(wxCoord x, wxCoord y, wxColour *colour)
{ return DoGetPixel (x, y, colour) ; } ;
void SetAxisOrientation( bool xLeftRight, bool yBottomUp ) ;
- void SetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
+ void SetClippingRegion(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), wxCoord WXUNUSED(width), wxCoord WXUNUSED(height))
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::SetClippingRegion Call not yet implemented")); return ; };
- void SetPalette(const wxPalette& palette)
+ void SetPalette(const wxPalette& WXUNUSED(palette))
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::SetPalette Call not yet implemented")); return ; };
void SetBackground( const wxBrush &brush ) ;
void SetFont(const wxFont& font) ;
- void SetLogicalFunction(int function)
+ void SetLogicalFunction(int WXUNUSED(function))
{ wxASSERT_MSG (FALSE, wxT("wxSVGFILEDC::SetLogicalFunction Call implemented")); return ; };
void SetLogicalScale( double x, double y ) ;
void SetMapMode(int anint) ;
- void SetOptimization(bool optimize) { return ; };
-
void SetPen(const wxPen& pen) ;
void SetUserScale(double xScale, double yScale) ;
- bool StartDoc(const wxString& message)
+ bool StartDoc(const wxString& WXUNUSED(message))
{ return FALSE; };
void StartPage()