X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2049ba38adafa0ec146880de29f26e32dd69a125..e8ec9749cf1d2b65efdb076f8696e454843bb9b8:/include/wx/dcprint.h diff --git a/include/wx/dcprint.h b/include/wx/dcprint.h index cad351f7d8..338f2f017a 100644 --- a/include/wx/dcprint.h +++ b/include/wx/dcprint.h @@ -1,9 +1,59 @@ -#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 +///////////////////////////////////////////////////////////////////////////// -#if defined(__WXMSW__) +#ifndef _WX_DCPRINT_H_BASE_ +#define _WX_DCPRINT_H_BASE_ + +#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__) +#include "wx/os2/dcprint.h" +#endif +#if defined(__WXMAC__) +#include "wx/mac/dcprint.h" +#endif +#endif // wxUSE_NEW_DC +#endif // wxUSE_PRINTING_ARCHITECTURE #endif - // __DCPRINTH_BASE__ + // _WX_DCPRINT_H_BASE_