]>
Commit | Line | Data |
---|---|---|
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 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "dcprint.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/dc.h" | |
20 | #include "wx/cmndata.h" | |
21 | ||
22 | class wxNativePrinterDC ; | |
23 | ||
24 | class WXDLLEXPORT wxPrinterDC: public wxDC | |
25 | { | |
26 | public: | |
27 | DECLARE_CLASS(wxPrinterDC) | |
28 | ||
29 | #if wxUSE_PRINTING_ARCHITECTURE | |
30 | // Create a printer DC | |
31 | wxPrinterDC(const wxPrintData& printdata ); | |
32 | ~wxPrinterDC(); | |
33 | ||
34 | virtual bool StartDoc( const wxString& WXUNUSED(message) ) ; | |
35 | virtual void EndDoc(void) ; | |
36 | virtual void StartPage(void) ; | |
37 | virtual void EndPage(void) ; | |
38 | wxPrintData& GetPrintData() { return m_printData; } | |
39 | virtual void DoGetSize( int *width, int *height ) const; | |
40 | ||
41 | protected: | |
42 | wxPrintData m_printData ; | |
43 | wxNativePrinterDC* m_nativePrinterDC ; | |
44 | #endif // wxUSE_PRINTING_ARCHITECTURE | |
45 | }; | |
46 | ||
47 | #endif | |
48 | // _WX_DCPRINT_H_ | |
49 |