]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
move wx11 and (the rest of) wxMGL specific checks into /chkconf.h file
[wxWidgets.git] / include / wx / gdicmn.h
index 16888e6ae5686270faad941984d0ef67352767e9..bc7cd6d11464a6b6b25a394751eee5831dc8bf6d 100644 (file)
@@ -229,6 +229,9 @@ public:
     void DecTo(const wxSize& sz)
         { if ( sz.x < x ) x = sz.x; if ( sz.y < y ) y = sz.y; }
 
+    void Scale(float xscale, float yscale)
+        { x = (int)(x*xscale); y = (int)(y*yscale); }
+
     // accessors
     void Set(int xx, int yy) { x = xx; y = yy; }
     void SetWidth(int w) { x = w; }