X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/38dd8ed40423d980243d95e4d54e1f500c32f557..24f86c43c427160b7fb5a1b06c4c0861cc6cc72f:/include/wx/dcprint.h?ds=inline diff --git a/include/wx/dcprint.h b/include/wx/dcprint.h index 338f2f017a..65e725482f 100644 --- a/include/wx/dcprint.h +++ b/include/wx/dcprint.h @@ -16,44 +16,28 @@ #if wxUSE_PRINTING_ARCHITECTURE -#if wxUSE_NEW_DC - #include "wx/dc.h" //----------------------------------------------------------------------------- // wxPrinterDC //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxPrinterDC: public wxDC +class WXDLLIMPEXP_CORE wxPrinterDC : public wxDC { public: wxPrinterDC(); - wxPrinterDC( const wxPrintData& data ); - ~wxPrinterDC(); - + wxPrinterDC(const wxPrintData& data); + wxRect GetPaperRect(); int GetResolution(); - -private: - DECLARE_DYNAMIC_CLASS() -}; -#else +protected: + wxPrinterDC(wxDCImpl *impl) : wxDC(impl) { } +private: + DECLARE_DYNAMIC_CLASS(wxPrinterDC) +}; -#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 // wxUSE_NEW_DC #endif // wxUSE_PRINTING_ARCHITECTURE -#endif - // _WX_DCPRINT_H_BASE_ + +#endif // _WX_DCPRINT_H_BASE_