]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/carbon/dcprint.h
added a couple of base classes
[wxWidgets.git] / include / wx / mac / carbon / dcprint.h
CommitLineData
8cf73271
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcprint.h
3// Purpose: wxPrinterDC class
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
65571936 9// Licence: wxWindows licence
8cf73271
SC
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DCPRINT_H_
13#define _WX_DCPRINT_H_
14
8cf73271
SC
15#include "wx/dc.h"
16#include "wx/cmndata.h"
17
18class wxNativePrinterDC ;
19
20class WXDLLEXPORT wxPrinterDC: public wxDC
21{
22 public:
179e085f 23#if wxUSE_PRINTING_ARCHITECTURE
8cf73271
SC
24 DECLARE_CLASS(wxPrinterDC)
25
8cf73271
SC
26 // Create a printer DC
27 wxPrinterDC(const wxPrintData& printdata );
28 ~wxPrinterDC();
29
30 virtual bool StartDoc( const wxString& WXUNUSED(message) ) ;
31 virtual void EndDoc(void) ;
32 virtual void StartPage(void) ;
33 virtual void EndPage(void) ;
34 wxPrintData& GetPrintData() { return m_printData; }
db49000e 35 virtual wxSize GetPPI() const;
20b69855
SC
36#if wxMAC_USE_CORE_GRAPHICS
37 void MacSetCGContext( void * cg ) ;
38#endif
8cf73271 39 protected:
6f02a879 40 virtual void DoGetSize( int *width, int *height ) const;
8cf73271
SC
41 wxPrintData m_printData ;
42 wxNativePrinterDC* m_nativePrinterDC ;
43#endif // wxUSE_PRINTING_ARCHITECTURE
44};
45
46#endif
47 // _WX_DCPRINT_H_
48