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