]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/dcprint.h
1. regenerated the makefiles to include menucmn.cpp
[wxWidgets.git] / include / wx / msw / dcprint.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcprint.h
3// Purpose: wxPrinterDC class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_DCPRINT_H_
13#define _WX_DCPRINT_H_
2bda0e17
KB
14
15#ifdef __GNUG__
16#pragma interface "dcprint.h"
17#endif
18
d427503c
VZ
19#if wxUSE_PRINTING_ARCHITECTURE
20
2bda0e17 21#include "wx/dc.h"
7bcb11d3 22#include "wx/cmndata.h"
2bda0e17
KB
23
24class WXDLLEXPORT wxPrinterDC: public wxDC
25{
7bcb11d3
JS
26public:
27DECLARE_CLASS(wxPrinterDC)
2bda0e17 28
7bcb11d3
JS
29 // Create a printer DC (obsolete function: use wxPrintData version now)
30 wxPrinterDC(const wxString& driver, const wxString& device, const wxString& output, bool interactive = TRUE, int orientation = wxPORTRAIT);
2bda0e17 31
7bcb11d3
JS
32 // Create from print data
33 wxPrinterDC(const wxPrintData& data);
34
35 wxPrinterDC(WXHDC theDC);
36
37 ~wxPrinterDC(void);
38
39 bool StartDoc(const wxString& message);
40 void EndDoc(void);
41 void StartPage(void);
42 void EndPage(void);
43
44protected:
45 wxPrintData m_printData;
2bda0e17
KB
46};
47
48// Gets an HDC for the default printer configuration
7bcb11d3
JS
49// WXHDC WXDLLEXPORT wxGetPrinterDC(int orientation);
50
51// Gets an HDC for the specified printer configuration
52WXHDC WXDLLEXPORT wxGetPrinterDC(const wxPrintData& data);
2bda0e17 53
d427503c
VZ
54#endif // wxUSE_PRINTING_ARCHITECTURE
55
2bda0e17 56#endif
bbcdf8bc 57 // _WX_DCPRINT_H_
2bda0e17 58