]>
Commit | Line | Data |
---|---|---|
83df96d6 | 1 | ///////////////////////////////////////////////////////////////////////////// |
1b88201f | 2 | // Name: wx/x11/dcprint.h |
83df96d6 JS |
3 | // Purpose: wxPrinterDC class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
1b88201f | 9 | // Licence: wxWindows licence |
83df96d6 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_DCPRINT_H_ | |
13 | #define _WX_DCPRINT_H_ | |
14 | ||
83df96d6 JS |
15 | #include "wx/dc.h" |
16 | ||
53a2db12 | 17 | class WXDLLIMPEXP_CORE wxPrinterDC: public wxDC |
83df96d6 JS |
18 | { |
19 | public: | |
20 | DECLARE_CLASS(wxPrinterDC) | |
1b88201f | 21 | |
83df96d6 | 22 | // Create a printer DC |
af7e24c3 | 23 | wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, bool interactive = TRUE, wxPrintOrientation orientation = wxPORTRAIT); |
1b88201f | 24 | |
d3c7fc99 | 25 | virtual ~wxPrinterDC(); |
83df96d6 JS |
26 | }; |
27 | ||
28 | #endif | |
1b88201f | 29 | // _WX_DCPRINT_H_ |