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
21 //-----------------------------------------------------------------------------
23 //-----------------------------------------------------------------------------
25 class WXDLLIMPEXP_CORE wxPrinterDC
: public wxDC
29 wxPrinterDC(const wxPrintData
& data
);
31 wxRect
GetPaperRect() const;
32 int GetResolution() const;
35 wxPrinterDC(wxDCImpl
*impl
) : wxDC(impl
) { }
38 DECLARE_DYNAMIC_CLASS(wxPrinterDC
)
41 #endif // wxUSE_PRINTING_ARCHITECTURE
43 #endif // _WX_DCPRINT_H_BASE_