From 3eddc6bc00bcbdea23d52a8724f46ad56768f8b6 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 16 Apr 2007 19:23:35 +0000 Subject: [PATCH] Add wxSVGFileDC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/_dc.i | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/wxPython/src/_dc.i b/wxPython/src/_dc.i index 30f8df8e22..6215187fcf 100644 --- a/wxPython/src/_dc.i +++ b/wxPython/src/_dc.i @@ -1890,5 +1890,23 @@ public: }; #endif +//--------------------------------------------------------------------------- + +%{ +#include +%} + +class wxSVGFileDC : public wxDC +{ + %nokwargs wxSVGFileDC; + + wxSVGFileDC(wxString f); + wxSVGFileDC(wxString f, int Width, int Height); + wxSVGFileDC(wxString f, int Width, int Height, float dpi); + + ~wxSVGFileDC(); + +}; + //--------------------------------------------------------------------------- //--------------------------------------------------------------------------- -- 2.45.2