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