]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dc.h
OnEnter/OnDragOver API update (compiles, links, somewhat runs under wxGTK)
[wxWidgets.git] / include / wx / dc.h
index 4fe6bda1a1aa4467269a8dd1eaa5127e50f9ff1d..2c66232f81e32d415c13f4de3fdb8a9acf082323 100644 (file)
@@ -251,6 +251,7 @@ public:
 
     virtual wxCoord GetCharHeight() const = 0;
     virtual wxCoord GetCharWidth() const = 0;
+    
     void GetTextExtent(const wxString& string,
                        wxCoord *x, wxCoord *y,
                        wxCoord *descent = NULL,
@@ -441,6 +442,15 @@ public:
         if ( y )
             *y = y2;
     }
+    void GetClippingBox(long *x, long *y, long *w, long *h) const
+    { 
+       wxCoord xx,yy,ww,hh;
+       DoGetClippingBox(&xx, &yy, &ww, &hh);
+       if (x) *x = xx;
+       if (y) *y = yy;
+       if (w) *w = ww;
+       if (h) *h = hh;
+    }
 #endif // !Win16
 
 #if WXWIN_COMPATIBILITY