519cb848a8
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4366 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
43 lines
950 B
C++
43 lines
950 B
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: dcprint.h
|
|
// Purpose: wxPrinterDC class
|
|
// Author: AUTHOR
|
|
// Modified by:
|
|
// Created: ??/??/98
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) AUTHOR
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_DCPRINT_H_
|
|
#define _WX_DCPRINT_H_
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface "dcprint.h"
|
|
#endif
|
|
|
|
#include "wx/dc.h"
|
|
#include "wx/cmndata.h"
|
|
|
|
class WXDLLEXPORT wxPrinterDC: public wxDC
|
|
{
|
|
public:
|
|
DECLARE_CLASS(wxPrinterDC)
|
|
|
|
// Create a printer DC
|
|
wxPrinterDC(const wxPrintData& printdata );
|
|
~wxPrinterDC();
|
|
|
|
virtual bool StartDoc( const wxString& WXUNUSED(message) ) ;
|
|
virtual void EndDoc(void) ;
|
|
virtual void StartPage(void) ;
|
|
virtual void EndPage(void) ;
|
|
protected :
|
|
TPPrPort m_macPrintPort ;
|
|
wxPrintData m_printData ;
|
|
};
|
|
|
|
#endif
|
|
// _WX_DCPRINT_H_
|
|
|