]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: dcprint.h | |
3 | // Purpose: wxPrinterDC class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DCPRINT_H_ | |
13 | #define _WX_DCPRINT_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "dcprint.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/dc.h" | |
20 | #include "wx/cmndata.h" | |
21 | ||
22 | class WXDLLEXPORT wxPrinterDC: public wxDC | |
23 | { | |
24 | public: | |
25 | DECLARE_CLASS(wxPrinterDC) | |
26 | ||
27 | // Create a printer DC (obsolete function: use wxPrintData version now) | |
28 | wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, bool interactive = TRUE, int orientation = wxPORTRAIT); | |
29 | ||
30 | // Create from print data | |
31 | wxPrinterDC(const wxPrintData& data); | |
32 | ||
33 | wxPrinterDC(WXHDC theDC); | |
34 | ||
35 | ~wxPrinterDC(void); | |
36 | ||
37 | bool StartDoc(const wxString& message); | |
38 | void EndDoc(void); | |
39 | void StartPage(void); | |
40 | void EndPage(void); | |
41 | ||
42 | protected: | |
43 | wxPrintData m_printData; | |
44 | }; | |
45 | ||
46 | // Gets an HDC for the default printer configuration | |
47 | // WXHDC WXDLLEXPORT wxGetPrinterDC(int orientation); | |
48 | ||
49 | // Gets an HDC for the specified printer configuration | |
50 | WXHDC WXDLLEXPORT wxGetPrinterDC(const wxPrintData& data); | |
51 | ||
52 | #endif | |
53 | // _WX_DCPRINT_H_ | |
54 |