1999-07-29 01:11:30 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-10-27 09:07:40 -04:00
|
|
|
// Name: wx/os2/dcprint.h
|
1999-07-29 01:11:30 -04:00
|
|
|
// Purpose: wxPrinterDC class
|
1999-10-05 18:10:56 -04:00
|
|
|
// Author: David Webster
|
1999-07-29 01:11:30 -04:00
|
|
|
// Modified by:
|
1999-10-05 18:10:56 -04:00
|
|
|
// Created: 09/12/99
|
1999-07-29 01:11:30 -04:00
|
|
|
// RCS-ID: $Id$
|
1999-10-05 18:10:56 -04:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 01:11:30 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DCPRINT_H_
|
|
|
|
#define _WX_DCPRINT_H_
|
|
|
|
|
1999-10-01 21:44:39 -04:00
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
|
1999-07-29 01:11:30 -04:00
|
|
|
#include "wx/dc.h"
|
1999-10-01 21:44:39 -04:00
|
|
|
#include "wx/cmndata.h"
|
2008-01-06 17:37:10 -05:00
|
|
|
#include "wx/os2/dc.h"
|
1999-07-29 01:11:30 -04:00
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxPrinterDCImpl: public wxPMDCImpl
|
1999-07-29 01:11:30 -04:00
|
|
|
{
|
|
|
|
public:
|
2008-01-06 17:37:10 -05:00
|
|
|
// Create a printer DC
|
1999-07-29 01:11:30 -04:00
|
|
|
|
2001-04-11 14:04:54 -04:00
|
|
|
// Create from print data
|
2008-01-06 17:37:10 -05:00
|
|
|
wxPrinterDCImpl( wxPrinterDC *owner, const wxPrintData& rData );
|
|
|
|
wxPrinterDCImpl( wxPrinterDC *owner, WXHDC hTheDC);
|
1999-10-01 21:44:39 -04:00
|
|
|
|
2008-01-06 17:37:10 -05:00
|
|
|
// override some base class virtuals
|
|
|
|
virtual bool StartDoc(const wxString& rsMessage);
|
|
|
|
virtual void EndDoc(void);
|
|
|
|
virtual void StartPage(void);
|
|
|
|
virtual void EndPage(void);
|
1999-10-01 21:44:39 -04:00
|
|
|
|
2008-11-15 06:10:34 -05:00
|
|
|
virtual wxRect GetPaperRect() const;
|
2006-10-27 09:07:40 -04:00
|
|
|
|
1999-10-01 21:44:39 -04:00
|
|
|
protected:
|
2001-04-11 14:04:54 -04:00
|
|
|
virtual void DoDrawBitmap( const wxBitmap& rBmp
|
|
|
|
,wxCoord vX
|
|
|
|
,wxCoord vY
|
|
|
|
,bool bUseMask = FALSE
|
|
|
|
);
|
|
|
|
virtual bool DoBlit( wxCoord vXdest
|
|
|
|
,wxCoord vYdest
|
|
|
|
,wxCoord vWidth
|
|
|
|
,wxCoord vHeight
|
|
|
|
,wxDC* pSource
|
|
|
|
,wxCoord vXsrc
|
|
|
|
,wxCoord vYsrc
|
2009-01-08 09:21:53 -05:00
|
|
|
,wxRasterOperationMode nRop = wxCOPY
|
2001-04-11 14:04:54 -04:00
|
|
|
,bool bUseMask = FALSE
|
2001-07-13 13:41:54 -04:00
|
|
|
,wxCoord vXsrcMask = -1
|
|
|
|
,wxCoord vYsrcMask = -1
|
2001-04-11 14:04:54 -04:00
|
|
|
);
|
|
|
|
|
|
|
|
// init the dc
|
|
|
|
void Init(void);
|
|
|
|
|
|
|
|
wxPrintData m_printData;
|
|
|
|
private:
|
2008-01-06 17:37:10 -05:00
|
|
|
DECLARE_CLASS(wxPrinterDCImpl)
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxPrinterDCImpl);
|
2001-04-11 14:04:54 -04:00
|
|
|
}; // end of CLASS wxPrinterDC
|
1999-07-29 01:11:30 -04:00
|
|
|
|
1999-10-01 21:44:39 -04:00
|
|
|
// Gets an HDC for the specified printer configuration
|
2008-03-26 11:06:00 -04:00
|
|
|
WXHDC WXDLLIMPEXP_CORE wxGetPrinterDC(const wxPrintData& rData);
|
1999-10-01 21:44:39 -04:00
|
|
|
|
|
|
|
#endif // wxUSE_PRINTING_ARCHITECTURE
|
|
|
|
|
1999-07-29 01:11:30 -04:00
|
|
|
#endif
|
|
|
|
// _WX_DCPRINT_H_
|
|
|
|
|