initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
87
libs/wxWidgets-3.3.1/include/wx/msw/dcprint.h
Normal file
87
libs/wxWidgets-3.3.1/include/wx/msw/dcprint.h
Normal file
@@ -0,0 +1,87 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/msw/dcprint.h
|
||||
// Purpose: wxPrinterDC class
|
||||
// Author: Julian Smart
|
||||
// Created: 01/02/97
|
||||
// Copyright: (c) Julian Smart
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_MSW_DCPRINT_H_
|
||||
#define _WX_MSW_DCPRINT_H_
|
||||
|
||||
#if wxUSE_PRINTING_ARCHITECTURE
|
||||
|
||||
#include "wx/dcprint.h"
|
||||
#include "wx/cmndata.h"
|
||||
#include "wx/msw/dc.h"
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// wxPrinterDCImpl
|
||||
//
|
||||
|
||||
class WXDLLIMPEXP_CORE wxPrinterDCImpl : public wxMSWDCImpl
|
||||
{
|
||||
public:
|
||||
// Create from print data
|
||||
wxPrinterDCImpl( wxPrinterDC *owner, const wxPrintData& data );
|
||||
wxPrinterDCImpl( wxPrinterDC *owner, WXHDC theDC );
|
||||
|
||||
// override some base class virtuals
|
||||
virtual bool StartDoc(const wxString& message) override;
|
||||
virtual void EndDoc() override;
|
||||
virtual void StartPage() override;
|
||||
virtual void EndPage() override;
|
||||
|
||||
virtual wxRect GetPaperRect() const override;
|
||||
|
||||
virtual wxSize FromDIP(const wxSize& sz) const override;
|
||||
|
||||
virtual wxSize ToDIP(const wxSize& sz) const override;
|
||||
|
||||
void SetFont(const wxFont& font) override;
|
||||
|
||||
protected:
|
||||
virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
|
||||
bool useMask = false) override;
|
||||
virtual bool DoBlit(wxCoord xdest, wxCoord ydest,
|
||||
wxCoord width, wxCoord height,
|
||||
wxDC *source, wxCoord xsrc, wxCoord ysrc,
|
||||
wxRasterOperationMode rop = wxCOPY, bool useMask = false,
|
||||
wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord) override;
|
||||
virtual void DoGetSize(int *w, int *h) const override
|
||||
{
|
||||
GetDeviceSize(w, h);
|
||||
}
|
||||
|
||||
|
||||
// init the dc
|
||||
void Init();
|
||||
|
||||
wxPrintData m_printData;
|
||||
|
||||
private:
|
||||
wxDECLARE_CLASS(wxPrinterDCImpl);
|
||||
wxDECLARE_NO_COPY_CLASS(wxPrinterDCImpl);
|
||||
};
|
||||
|
||||
// Gets an HDC for the specified printer configuration
|
||||
WXHDC WXDLLIMPEXP_CORE wxGetPrinterDC(const wxPrintData& data);
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// wxPrinterDCromHDC
|
||||
//
|
||||
|
||||
class WXDLLIMPEXP_CORE wxPrinterDCFromHDC: public wxPrinterDC
|
||||
{
|
||||
public:
|
||||
wxPrinterDCFromHDC( WXHDC theDC )
|
||||
: wxPrinterDC(new wxPrinterDCImpl(this, theDC))
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
#endif // wxUSE_PRINTING_ARCHITECTURE
|
||||
|
||||
#endif // _WX_MSW_DCPRINT_H_
|
||||
|
||||
Reference in New Issue
Block a user