]> git.saurik.com Git - wxWidgets.git/commitdiff
Override SetLogicalOrigin and SetDeviceOrigin in GNOME
authorRobert Roebling <robert@roebling.de>
Fri, 24 Nov 2006 10:48:56 +0000 (10:48 +0000)
committerRobert Roebling <robert@roebling.de>
Fri, 24 Nov 2006 10:48:56 +0000 (10:48 +0000)
    print DC as this will probably be needed to fix the
    printing bug reported recently.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/gtk/gnome/gprint.h
src/gtk/gnome/gprint.cpp

index 15869d68c696cdab16eed8d302a2423d923043b7..317dced92df3f84f7b3e9ea9c4d5703557ab0a98 100644 (file)
@@ -262,6 +262,9 @@ public:
     wxSize GetPPI() const;
     void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
 
+    void SetLogicalOrigin( wxCoord x, wxCoord y );
+    void SetDeviceOrigin( wxCoord x, wxCoord y );
+
     virtual int GetDepth() const { return 24; }
 
     void SetBackgroundMode(int WXUNUSED(mode)) { }
index 2b6b50d6b83156791a4deaa5de345c51e96c3418..aae14b599384ae5b497382463d3cb6e0320802a2 100644 (file)
@@ -1828,6 +1828,16 @@ void wxGnomePrintDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
     ComputeScaleAndOrigin();
 }
 
+void wxGnomePrintDC::SetLogicalOrigin( wxCoord x, wxCoord y )
+{
+    wxDC::SetLogicalOrigin( x, y );
+}
+
+void wxGnomePrintDC::SetDeviceOrigin( wxCoord x, wxCoord y )
+{
+    wxDC::SetDeviceOrigin( x, y );
+}
+
 void wxGnomePrintDC::SetResolution(int ppi)
 {
 }