]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/dcprint.h
added EVT_COMMAND_SCROLL_THUMBRELEASE event
[wxWidgets.git] / include / wx / mac / dcprint.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcprint.h
3// Purpose: wxPrinterDC class
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_DCPRINT_H_
13#define _WX_DCPRINT_H_
14
15#ifdef __GNUG__
16#pragma interface "dcprint.h"
17#endif
18
19#include "wx/dc.h"
519cb848 20#include "wx/cmndata.h"
0dbd6262
SC
21
22class WXDLLEXPORT wxPrinterDC: public wxDC
23{
24 public:
25 DECLARE_CLASS(wxPrinterDC)
26
03e11df5 27#if wxUSE_PRINTING_ARCHITECTURE
0dbd6262 28 // Create a printer DC
519cb848 29 wxPrinterDC(const wxPrintData& printdata );
0dbd6262 30 ~wxPrinterDC();
519cb848
SC
31
32 virtual bool StartDoc( const wxString& WXUNUSED(message) ) ;
33 virtual void EndDoc(void) ;
34 virtual void StartPage(void) ;
35 virtual void EndPage(void) ;
36 protected :
5b781a67
SC
37 #if TARGET_CARBON
38 PMPrintContext m_macPrintPort ;
39 #else
519cb848 40 TPPrPort m_macPrintPort ;
5b781a67 41 #endif
519cb848 42 wxPrintData m_printData ;
03e11df5 43#endif // wxUSE_PRINTING_ARCHITECTURE
0dbd6262
SC
44};
45
46#endif
47 // _WX_DCPRINT_H_
48