]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/dcprint.h | |
3 | // Purpose: wxPrinterDC class | |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DCPRINT_H_ | |
13 | #define _WX_DCPRINT_H_ | |
14 | ||
ffecfa5a JS |
15 | #if wxUSE_PRINTING_ARCHITECTURE |
16 | ||
17 | #include "wx/dc.h" | |
18 | #include "wx/cmndata.h" | |
19 | ||
20 | class WXDLLEXPORT wxPrinterDC : public wxDC | |
21 | { | |
22 | public: | |
23 | // Create a printer DC (obsolete function: use wxPrintData version now) | |
24 | wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, bool interactive = TRUE, int orientation = wxPORTRAIT); | |
25 | ||
26 | // Create from print data | |
27 | wxPrinterDC(const wxPrintData& data); | |
28 | ||
29 | wxPrinterDC(WXHDC theDC); | |
30 | ||
31 | // override some base class virtuals | |
32 | virtual bool StartDoc(const wxString& message); | |
33 | virtual void EndDoc(); | |
34 | virtual void StartPage(); | |
35 | virtual void EndPage(); | |
36 | ||
f415cab9 JS |
37 | wxRect GetPaperRect(); |
38 | ||
ffecfa5a JS |
39 | protected: |
40 | virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y, | |
41 | bool useMask = FALSE); | |
42 | virtual bool DoBlit(wxCoord xdest, wxCoord ydest, | |
43 | wxCoord width, wxCoord height, | |
44 | wxDC *source, wxCoord xsrc, wxCoord ysrc, | |
45 | int rop = wxCOPY, bool useMask = FALSE, wxCoord xsrcMask = -1, wxCoord ysrcMask = -1); | |
46 | ||
47 | // init the dc | |
48 | void Init(); | |
49 | ||
50 | wxPrintData m_printData; | |
51 | ||
52 | private: | |
53 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxPrinterDC) | |
54 | }; | |
55 | ||
56 | // Gets an HDC for the default printer configuration | |
57 | // WXHDC WXDLLEXPORT wxGetPrinterDC(int orientation); | |
58 | ||
59 | // Gets an HDC for the specified printer configuration | |
60 | WXHDC WXDLLEXPORT wxGetPrinterDC(const wxPrintData& data); | |
61 | ||
62 | #endif // wxUSE_PRINTING_ARCHITECTURE | |
63 | ||
64 | #endif | |
65 | // _WX_DCPRINT_H_ | |
66 |