]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dc.h
Remove now unused GetSelection from the OSX WebKit backend.
[wxWidgets.git] / include / wx / dc.h
index 1f1731d4a6eae8af3d5b7c0885afd1b7c9072b19..f6346888ace075c14a8262b786829996aba7e057 100644 (file)
@@ -512,6 +512,19 @@ public:
     // this needs to overidden if the axis is inverted
     virtual void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
 
+#ifdef __WXMSW__
+    // Native Windows functions using the underlying HDC don't honour GDI+
+    // transformations which may be applied to it. Using this function we can
+    // transform the coordinates manually before passing them to such functions
+    // (as in e.g. wxRendererMSW code). It doesn't do anything if this is not a
+    // wxGCDC.
+    virtual wxRect MSWApplyGDIPlusTransform(const wxRect& r) const
+    {
+        return r;
+    }
+#endif // __WXMSW__
+
+
     // ---------------------------------------------------------
     // the actual drawing API