]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcprint.h
fixing cases for mac / quickdraw
[wxWidgets.git] / include / wx / dcprint.h
index 040f8dc3908c653c9648d2c669ea88845d20d8e2..338f2f017a48bc303400d78f67b4a5b2228dffb2 100644 (file)
@@ -1,7 +1,49 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name:        wx/dcprint.h
+// Purpose:     wxPrinterDC base header
+// Author:      Julian Smart
+// Modified by:
+// Created:
+// Copyright:   (c) Julian Smart
+// RCS-ID:      $Id$
+// Licence:     wxWindows Licence
+/////////////////////////////////////////////////////////////////////////////
+
 #ifndef _WX_DCPRINT_H_BASE_
 #define _WX_DCPRINT_H_BASE_
 
-#if defined(__WXMSW__)
+#include "wx/defs.h"
+
+#if wxUSE_PRINTING_ARCHITECTURE
+
+#if wxUSE_NEW_DC
+
+#include "wx/dc.h"
+
+//-----------------------------------------------------------------------------
+// wxPrinterDC
+//-----------------------------------------------------------------------------
+
+class WXDLLIMPEXP_CORE wxPrinterDC: public wxDC
+{
+public:
+    wxPrinterDC();
+    wxPrinterDC( const wxPrintData& data );
+    ~wxPrinterDC();
+    
+    wxRect GetPaperRect();
+    int GetResolution();
+    
+private:
+    DECLARE_DYNAMIC_CLASS()
+};
+
+#else
+
+
+#if defined(__WXPALMOS__)
+#include "wx/palmos/dcprint.h"
+#elif defined(__WXMSW__)
 #include "wx/msw/dcprint.h"
 #endif
 #if defined(__WXPM__)
@@ -11,5 +53,7 @@
 #include "wx/mac/dcprint.h"
 #endif
 
+#endif // wxUSE_NEW_DC
+#endif // wxUSE_PRINTING_ARCHITECTURE
 #endif
     // _WX_DCPRINT_H_BASE_