1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPrinterDC base header
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
9 // Licence: wxWindows Licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DCPRINT_H_BASE_
13 #define _WX_DCPRINT_H_BASE_
17 #if wxUSE_PRINTING_ARCHITECTURE
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
27 class WXDLLIMPEXP_CORE wxPrinterDC
: public wxDC
31 wxPrinterDC( const wxPrintData
& data
);
34 wxRect
GetPaperRect();
38 DECLARE_DYNAMIC_CLASS()
44 #if defined(__WXPALMOS__)
45 #include "wx/palmos/dcprint.h"
46 #elif defined(__WXMSW__)
47 #include "wx/msw/dcprint.h"
50 #include "wx/os2/dcprint.h"
52 #if defined(__WXMAC__)
53 #include "wx/mac/dcprint.h"
56 #endif // wxUSE_NEW_DC
57 #endif // wxUSE_PRINTING_ARCHITECTURE
59 // _WX_DCPRINT_H_BASE_