1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxPrinterDC base header
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows Licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_DCPRINT_H_BASE_
12 #define _WX_DCPRINT_H_BASE_
16 #if wxUSE_PRINTING_ARCHITECTURE
20 //-----------------------------------------------------------------------------
22 //-----------------------------------------------------------------------------
24 class WXDLLIMPEXP_CORE wxPrinterDC
: public wxDC
28 wxPrinterDC(const wxPrintData
& data
);
30 wxRect
GetPaperRect() const;
31 int GetResolution() const;
34 wxPrinterDC(wxDCImpl
*impl
) : wxDC(impl
) { }
37 DECLARE_DYNAMIC_CLASS(wxPrinterDC
)
40 #endif // wxUSE_PRINTING_ARCHITECTURE
42 #endif // _WX_DCPRINT_H_BASE_