]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dc.cpp
PCH-less build fix
[wxWidgets.git] / src / gtk / dc.cpp
index be84d8994eefb5412be93e1d2b42774f4940c831..fc3b0012821247a6a286fee7618e7b1590474849 100644 (file)
 
 #include "wx/dc.h"
 
+
 //-----------------------------------------------------------------------------
 // wxDC
 //-----------------------------------------------------------------------------
 
-IMPLEMENT_ABSTRACT_CLASS(wxDC, wxDCBase)
+#if wxUSE_NEW_DC
+IMPLEMENT_ABSTRACT_CLASS(wxGTKImplDC, wxImplDC)
+#else
+IMPLEMENT_ABSTRACT_CLASS(wxGTKImplDC, wxDCBase)
+#endif
 
+#if wxUSE_NEW_DC
+wxGTKImplDC::wxGTKImplDC( wxDC *owner ) 
+   : wxImplDC( owner )
+#else
 wxDC::wxDC()
+#endif
 {
     m_ok = FALSE;
 
@@ -27,7 +37,11 @@ wxDC::wxDC()
     m_brush = *wxWHITE_BRUSH;
 }
 
-void wxDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
+wxGTKImplDC::~wxGTKImplDC()
+{
+}
+
+void wxGTKImplDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
 {
     m_clipping = TRUE;
     m_clipX1 = x;
@@ -40,17 +54,17 @@ void wxDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord hei
 // get DC capabilities
 // ---------------------------------------------------------------------------
 
-void wxDC::DoGetSizeMM( int* width, int* height ) const
+void wxGTKImplDC::DoGetSizeMM( int* width, int* height ) const
 {
     int w = 0;
     int h = 0;
-    GetSize( &w, &h );
+    GetOwner()->GetSize( &w, &h );
     if (width) *width = int( double(w) / (m_userScaleX*m_mm_to_pix_x) );
     if (height) *height = int( double(h) / (m_userScaleY*m_mm_to_pix_y) );
 }
 
 // Resolution in pixels per logical inch
-wxSize wxDC::GetPPI() const
+wxSize wxGTKImplDC::GetPPI() const
 {
     // TODO (should probably be pure virtual)
     return wxSize(0, 0);