]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dcprint.h
Changed wxHTML default font size for printing to be 12pt regardless
[wxWidgets.git] / include / wx / dcprint.h
index 8f976472f2455e9196dbdc96390d2e6d9603f2b8..65e725482fc0601478e91102862ebd217fa13ef2 100644 (file)
 #ifndef _WX_DCPRINT_H_BASE_
 #define _WX_DCPRINT_H_BASE_
 
-#if defined(__WXPALMOS__)
-#include "wx/palmos/dcprint.h"
-#elif defined(__WXMSW__)
-#include "wx/msw/dcprint.h"
-#endif
-#if defined(__WXPM__)
-#include "wx/os2/dcprint.h"
-#endif
-#if defined(__WXMAC__)
-#include "wx/mac/dcprint.h"
-#endif
-
-#endif
-    // _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);
+
+    wxRect GetPaperRect();
+    int GetResolution();
+
+protected:
+    wxPrinterDC(wxDCImpl *impl) : wxDC(impl) { }
+
+private:
+    DECLARE_DYNAMIC_CLASS(wxPrinterDC)
+};
+
+#endif // wxUSE_PRINTING_ARCHITECTURE
+
+#endif // _WX_DCPRINT_H_BASE_