]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/dc.h
compilation fix for windows compilers: _wrename is declared in io.h
[wxWidgets.git] / include / wx / msw / dc.h
index 9e6f7fcab813261351df1b4965333718ef6a58b0..7f2abb4bf673e35a80db3f864cc43cd8bc643cc8 100644 (file)
@@ -78,13 +78,14 @@ public:
     virtual int GetDepth() const;
     virtual wxSize GetPPI() const;
 
+
     virtual void SetMapMode(int mode);
     virtual void SetUserScale(double x, double y);
-    virtual void SetSystemScale(double x, double y);
     virtual void SetLogicalScale(double x, double y);
     virtual void SetLogicalOrigin(wxCoord x, wxCoord y);
     virtual void SetDeviceOrigin(wxCoord x, wxCoord y);
     virtual void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
+    
     virtual void SetLogicalFunction(int function);
 
     // implementation from now on
@@ -162,11 +163,13 @@ protected:
     // classes
     wxDC() { Init(); }
 
+    void RealizeScaleAndOrigin();
+
     virtual void DoGetTextExtent(const wxString& string,
                                  wxCoord *x, wxCoord *y,
                                  wxCoord *descent = NULL,
                                  wxCoord *externalLeading = NULL,
-                                 wxFont *theFont = NULL) const;
+                                 const wxFont *theFont = NULL) const;
     virtual bool DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths) const;
 
     virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,