]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcprint.h
fixing 10.5 only compiles
[wxWidgets.git] / include / wx / dcprint.h
index d84dd73ad8933334f6dfd575684c9e51ed88e909..2ae605b7e4e40dc7a474cda0a7a45ce79573145f 100644 (file)
@@ -1,9 +1,44 @@
-#ifndef __DCPRINTH_BASE__
-#define __DCPRINTH_BASE__
+/////////////////////////////////////////////////////////////////////////////
+// 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_
+
+#include "wx/defs.h"
+
+#if wxUSE_PRINTING_ARCHITECTURE
+
+#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()
+};
 
-#if defined(__WINDOWS__)
-#include "wx/msw/dcprint.h"
-#endif
 
+#endif 
+    // wxUSE_PRINTING_ARCHITECTURE
+    
 #endif
-    // __DCPRINTH_BASE__
+    // _WX_DCPRINT_H_BASE_