]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/dc.h
Reverted conflict with Darwin.
[wxWidgets.git] / include / wx / motif / dc.h
index ae62ca7ab8026d01e4a3435b3346be98db4024da..f726723241011f2d4cf3d3e52e1dd4f6e1ae46b2 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_DC_H_
 #define _WX_DC_H_
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "dc.h"
 #endif
 
 class WXDLLEXPORT wxDC : public wxDCBase
 {
     DECLARE_DYNAMIC_CLASS(wxDC)
-        
+
 public:
     wxDC();
     ~wxDC() { }
-    
+
     // implement base class pure virtuals
     // ----------------------------------
-    
-    virtual void DestroyClippingRegion();
-    
+
     virtual wxSize GetPPI() const;
-    
+
     virtual void SetMapMode(int mode);
     virtual void SetUserScale(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);
-    
+
 protected:
     virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
     virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
         bool useMask = FALSE);
-    
+
     virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
         wxCoord width, wxCoord height);
     virtual void DoGetSize(int *width, int *height) const;
     virtual void DoGetSizeMM(int* width, int* height) const;
-    
+
 public:
     void ComputeScaleAndOrigin();
-    
+
     wxCoord XDEV2LOG(wxCoord x) const
     {
         wxCoord new_x = x - m_deviceOriginX;
@@ -154,14 +152,14 @@ public:
         else
             return (wxCoord)((double)(y) * m_scaleY - 0.5);
     }
-    
+
 public:
     // not sure what for, but what is a mm on a screen you don't know the size of?
     double       m_mm_to_pix_x,m_mm_to_pix_y;
-    
+
     // recompute scale?
     bool         m_needComputeScaleX, m_needComputeScaleY;
-    
+
 };
 
 #endif