1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/motif/dcprint.h
3 // Purpose: wxPrinterDC class
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_DCPRINT_H_
12 #define _WX_DCPRINT_H_
14 #include "wx/motif/dc.h"
16 class WXDLLIMPEXP_CORE wxPrinterDC
: public wxMotifDCImpl
19 // Create a printer DC
20 wxPrinterDCImpl(const wxString
& driver
, const wxString
& device
,
21 const wxString
& output
,
22 bool interactive
= true,
23 wxPrintOrientation orientation
= wxPORTRAIT
);
24 virtual ~wxPrinterDC();
26 wxRect
GetPaperRect() const;
28 DECLARE_CLASS(wxPrinterDCImpl
)
31 #endif // _WX_DCPRINT_H_