]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dc.h
added cmdline.h/.cpp to the makefiles
[wxWidgets.git] / include / wx / dc.h
index 4fe6bda1a1aa4467269a8dd1eaa5127e50f9ff1d..b49bbaacca9bc47ac14f6cca600af7529d6034b0 100644 (file)
@@ -181,6 +181,11 @@ public:
     void DrawText(const wxString& text, const wxPoint& pt)
         { DoDrawText(text, pt.x, pt.y); }
 
+    void DrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle)
+        { DoDrawRotatedText(text, x, y, angle); }
+    void DrawRotatedText(const wxString& text, const wxPoint& pt, double angle)
+        { DoDrawRotatedText(text, pt.x, pt.y, angle); }
+
     bool Blit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
               wxDC *source, wxCoord xsrc, wxCoord ysrc,
               int rop = wxCOPY, bool useMask = FALSE)
@@ -244,13 +249,19 @@ public:
     void GetClippingBox(wxCoord *x, wxCoord *y, wxCoord *w, wxCoord *h) const
         { DoGetClippingBox(x, y, w, h); }
     void GetClippingBox(wxRect& rect) const
-        { DoGetClippingBox(&rect.x, &rect.y, &rect.width, &rect.height); }
+        {
+          // Necessary to use intermediate variables for 16-bit compilation
+          wxCoord x, y, w, h;
+          DoGetClippingBox(&x, &y, &w, &h);
+          rect.x = x; rect.y = y; rect.width = w; rect.height = h;
+        }
 
     // text extent
     // -----------
 
     virtual wxCoord GetCharHeight() const = 0;
     virtual wxCoord GetCharWidth() const = 0;
+    
     void GetTextExtent(const wxString& string,
                        wxCoord *x, wxCoord *y,
                        wxCoord *descent = NULL,
@@ -441,6 +452,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
@@ -482,6 +502,8 @@ protected:
                               bool useMask = FALSE) = 0;
 
     virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y) = 0;
+    virtual void DoDrawRotatedText(const wxString& text,
+                                   wxCoord x, wxCoord y, double angle) = 0;
 
     virtual bool DoBlit(wxCoord xdest, wxCoord ydest,
                         wxCoord width, wxCoord height,