]>
Commit | Line | Data |
---|---|---|
0e320a79 | 1 | ///////////////////////////////////////////////////////////////////////////// |
f415cab9 | 2 | // Name: wx/os2/dcprint.h |
0e320a79 | 3 | // Purpose: wxPrinterDC class |
f0a56ab0 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
f0a56ab0 | 6 | // Created: 09/12/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
f0a56ab0 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_DCPRINT_H_ | |
13 | #define _WX_DCPRINT_H_ | |
14 | ||
ce44c50e DW |
15 | #if wxUSE_PRINTING_ARCHITECTURE |
16 | ||
0e320a79 | 17 | #include "wx/dc.h" |
ce44c50e | 18 | #include "wx/cmndata.h" |
0e320a79 DW |
19 | |
20 | class WXDLLEXPORT wxPrinterDC: public wxDC | |
21 | { | |
22 | public: | |
ac7fb818 DW |
23 | // Create a printer DC [obsolete] |
24 | wxPrinterDC( const wxString& rsDriver | |
25 | ,const wxString& rsDevice | |
26 | ,const wxString& rsOutput | |
27 | ,bool bInteractive = TRUE | |
28 | ,int nOrientation = wxPORTRAIT | |
29 | ); | |
0e320a79 | 30 | |
ac7fb818 DW |
31 | // Create from print data |
32 | wxPrinterDC(const wxPrintData& rData); | |
33 | wxPrinterDC(WXHDC hTheDC); | |
ce44c50e | 34 | |
ac7fb818 | 35 | bool StartDoc(const wxString& rsMessage); |
ce44c50e DW |
36 | void EndDoc(void); |
37 | void StartPage(void); | |
38 | void EndPage(void); | |
39 | ||
f415cab9 JS |
40 | wxRect GetPaperRect(); |
41 | ||
ce44c50e | 42 | protected: |
ac7fb818 DW |
43 | virtual void DoDrawBitmap( const wxBitmap& rBmp |
44 | ,wxCoord vX | |
45 | ,wxCoord vY | |
46 | ,bool bUseMask = FALSE | |
47 | ); | |
48 | virtual bool DoBlit( wxCoord vXdest | |
49 | ,wxCoord vYdest | |
50 | ,wxCoord vWidth | |
51 | ,wxCoord vHeight | |
52 | ,wxDC* pSource | |
53 | ,wxCoord vXsrc | |
54 | ,wxCoord vYsrc | |
55 | ,int nRop = wxCOPY | |
56 | ,bool bUseMask = FALSE | |
6835592c DW |
57 | ,wxCoord vXsrcMask = -1 |
58 | ,wxCoord vYsrcMask = -1 | |
ac7fb818 DW |
59 | ); |
60 | ||
61 | // init the dc | |
62 | void Init(void); | |
63 | ||
64 | wxPrintData m_printData; | |
65 | private: | |
66 | DECLARE_CLASS(wxPrinterDC) | |
67 | }; // end of CLASS wxPrinterDC | |
0e320a79 | 68 | |
ce44c50e | 69 | // Gets an HDC for the specified printer configuration |
ac7fb818 | 70 | WXHDC WXDLLEXPORT wxGetPrinterDC(const wxPrintData& rData); |
ce44c50e DW |
71 | |
72 | #endif // wxUSE_PRINTING_ARCHITECTURE | |
73 | ||
0e320a79 DW |
74 | #endif |
75 | // _WX_DCPRINT_H_ | |
76 |