]>
Commit | Line | Data |
---|---|---|
0e320a79 DW |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: print.h | |
3 | // Purpose: wxPrinter, wxPrintPreview classes | |
11e59d47 | 4 | // Author: David Webster |
0e320a79 | 5 | // Modified by: |
11e59d47 | 6 | // Created: 10/14/99 |
0e320a79 | 7 | // RCS-ID: $Id$ |
11e59d47 | 8 | // Copyright: (c) David Webster |
65571936 | 9 | // Licence: wxWindows licence |
0e320a79 DW |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_PRINT_H_ | |
13 | #define _WX_PRINT_H_ | |
14 | ||
0e320a79 DW |
15 | #include "wx/prntbase.h" |
16 | ||
17 | /* | |
18 | * Represents the printer: manages printing a wxPrintout object | |
19 | */ | |
11e59d47 | 20 | |
53a2db12 | 21 | class WXDLLIMPEXP_CORE wxOS2Printer: public wxPrinterBase |
0e320a79 DW |
22 | { |
23 | DECLARE_DYNAMIC_CLASS(wxPrinter) | |
24 | ||
25 | public: | |
b5f10b01 | 26 | wxOS2Printer(wxPrintData *data = NULL); |
d3c7fc99 | 27 | virtual ~wxOS2Printer(); |
0e320a79 DW |
28 | |
29 | virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = TRUE); | |
11e59d47 | 30 | virtual wxDC* PrintDialog(wxWindow *parent); |
0e320a79 | 31 | virtual bool Setup(wxWindow *parent); |
11e59d47 | 32 | private: |
0e320a79 DW |
33 | }; |
34 | ||
35 | /* | |
36 | * wxPrintPreview | |
37 | * Programmer creates an object of this class to preview a wxPrintout. | |
38 | */ | |
11e59d47 | 39 | |
53a2db12 | 40 | class WXDLLIMPEXP_CORE wxOS2PrintPreview: public wxPrintPreviewBase |
0e320a79 DW |
41 | { |
42 | DECLARE_CLASS(wxPrintPreview) | |
43 | ||
44 | public: | |
b5f10b01 | 45 | wxOS2PrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting = NULL, wxPrintData *data = NULL); |
d3c7fc99 | 46 | virtual ~wxOS2PrintPreview(); |
0e320a79 DW |
47 | |
48 | virtual bool Print(bool interactive); | |
49 | virtual void DetermineScaling(); | |
50 | }; | |
51 | ||
52 | #endif | |
53 | // _WX_PRINT_H_ |