]> git.saurik.com Git - wxWidgets.git/commitdiff
Add wxSVGFileDC
authorRobin Dunn <robin@alldunn.com>
Mon, 16 Apr 2007 19:23:35 +0000 (19:23 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 16 Apr 2007 19:23:35 +0000 (19:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45507 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_dc.i

index 30f8df8e22c6fbdf4882422823c1bc689c92a2d7..6215187fcf5e15a89a02c290613e9862a8a1b234 100644 (file)
@@ -1890,5 +1890,23 @@ public:
 };
 #endif
 
+//---------------------------------------------------------------------------
+
+%{
+#include <wx/dcsvg.h>
+%}
+
+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();
+
+};
+
 //---------------------------------------------------------------------------
 //---------------------------------------------------------------------------