]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/dc.h
fix the run-time behaviour after the last compilation fixing patch
[wxWidgets.git] / include / wx / motif / dc.h
index fb6316232e8bf120395fe75b0b88c8b9a539f717..8d60b16414811186dd9d21ba22e961a383bcbff7 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        dc.h
+// Name:        wx/motif/dc.h
 // Purpose:     wxDC class
 // Author:      Julian Smart
 // Modified by:
 #ifndef _WX_DC_H_
 #define _WX_DC_H_
 
-#ifdef __GNUG__
-    #pragma interface "dc.h"
-#endif
-
 #include "wx/pen.h"
 #include "wx/brush.h"
 #include "wx/icon.h"
 //-----------------------------------------------------------------------------
 
 #ifndef MM_TEXT
-    #define MM_TEXT         0
-    #define MM_ISOTROPIC    1
-    #define MM_ANISOTROPIC  2
-    #define MM_LOMETRIC     3
-    #define MM_HIMETRIC     4
-    #define MM_TWIPS        5
-    #define MM_POINTS       6
-    #define MM_METRIC       7
+#define MM_TEXT         0
+#define MM_ISOTROPIC    1
+#define MM_ANISOTROPIC  2
+#define MM_LOMETRIC     3
+#define MM_HIMETRIC     4
+#define MM_TWIPS        5
+#define MM_POINTS       6
+#define MM_METRIC       7
 #endif
 
 //-----------------------------------------------------------------------------
@@ -47,13 +43,11 @@ class WXDLLEXPORT wxDC : public wxDCBase
 
 public:
     wxDC();
-    ~wxDC() { }
+    virtual ~wxDC() { }
 
     // implement base class pure virtuals
     // ----------------------------------
 
-    virtual void DestroyClippingRegion();
-
     virtual wxSize GetPPI() const;
 
     virtual void SetMapMode(int mode);
@@ -66,15 +60,15 @@ public:
 protected:
     virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
     virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
-                              bool useMask = FALSE);
+        bool useMask = false);
 
     virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
-                                     wxCoord width, wxCoord height);
+        wxCoord width, wxCoord height);
     virtual void DoGetSize(int *width, int *height) const;
     virtual void DoGetSizeMM(int* width, int* height) const;
 
 public:
-    void ComputeScaleAndOrigin();
+    virtual void ComputeScaleAndOrigin();
 
     wxCoord XDEV2LOG(wxCoord x) const
     {
@@ -162,9 +156,7 @@ public:
     // recompute scale?
     bool         m_needComputeScaleX, m_needComputeScaleY;
 
-    // wxPSDC wants to have this. Will disappear.
-    float        m_scaleFactor;
 };
 
 #endif
-    // _WX_DC_H_
+// _WX_DC_H_