1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/dcprint.h
3 // Purpose: wxPrinterDC class
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DCPRINT_H_
13 #define _WX_DCPRINT_H_
15 #if wxUSE_PRINTING_ARCHITECTURE
18 #include "wx/cmndata.h"
20 class WXDLLIMPEXP_CORE wxPrinterDC
: public wxDC
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
);
26 // Create from print data
27 wxPrinterDC(const wxPrintData
& data
);
29 wxPrinterDC(WXHDC theDC
);
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();
37 wxRect
GetPaperRect() const;
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);
50 wxPrintData m_printData
;
53 DECLARE_DYNAMIC_CLASS_NO_COPY(wxPrinterDC
)
56 // Gets an HDC for the default printer configuration
57 // WXHDC WXDLLIMPEXP_CORE wxGetPrinterDC(int orientation);
59 // Gets an HDC for the specified printer configuration
60 WXHDC WXDLLIMPEXP_CORE
wxGetPrinterDC(const wxPrintData
& data
);
62 #endif // wxUSE_PRINTING_ARCHITECTURE