]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: printwin.h | |
3 | // Purpose: wxWindowsPrinter, wxWindowsPrintPreview classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
bbcdf8bc | 8 | // Copyright: (c) Julian Smart |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_PRINTWIN_H_ |
13 | #define _WX_PRINTWIN_H_ | |
2bda0e17 | 14 | |
2bda0e17 KB |
15 | #include "wx/prntbase.h" |
16 | ||
103aec29 VZ |
17 | // --------------------------------------------------------------------------- |
18 | // Represents the printer: manages printing a wxPrintout object | |
19 | // --------------------------------------------------------------------------- | |
20 | ||
21 | class WXDLLEXPORT wxWindowsPrinter : public wxPrinterBase | |
2bda0e17 | 22 | { |
103aec29 | 23 | DECLARE_DYNAMIC_CLASS(wxWindowsPrinter) |
2bda0e17 | 24 | |
103aec29 VZ |
25 | public: |
26 | wxWindowsPrinter(wxPrintDialogData *data = NULL); | |
27 | virtual ~wxWindowsPrinter(); | |
2bda0e17 | 28 | |
103aec29 VZ |
29 | virtual bool Print(wxWindow *parent, |
30 | wxPrintout *printout, | |
078cf5cb | 31 | bool prompt = true); |
103aec29 VZ |
32 | virtual wxDC* PrintDialog(wxWindow *parent); |
33 | virtual bool Setup(wxWindow *parent); | |
34da0970 | 34 | |
103aec29 VZ |
35 | private: |
36 | WXFARPROC m_lpAbortProc; | |
22f3361e VZ |
37 | |
38 | DECLARE_NO_COPY_CLASS(wxWindowsPrinter) | |
2bda0e17 KB |
39 | }; |
40 | ||
103aec29 VZ |
41 | // --------------------------------------------------------------------------- |
42 | // wxPrintPreview: programmer creates an object of this class to preview a | |
43 | // wxPrintout. | |
44 | // --------------------------------------------------------------------------- | |
45 | ||
46 | class WXDLLEXPORT wxWindowsPrintPreview : public wxPrintPreviewBase | |
2bda0e17 | 47 | { |
103aec29 VZ |
48 | public: |
49 | wxWindowsPrintPreview(wxPrintout *printout, | |
50 | wxPrintout *printoutForPrinting = NULL, | |
51 | wxPrintDialogData *data = NULL); | |
52 | wxWindowsPrintPreview(wxPrintout *printout, | |
53 | wxPrintout *printoutForPrinting, | |
54 | wxPrintData *data); | |
55 | virtual ~wxWindowsPrintPreview(); | |
2bda0e17 | 56 | |
103aec29 VZ |
57 | virtual bool Print(bool interactive); |
58 | virtual void DetermineScaling(); | |
fc7a2a60 VZ |
59 | |
60 | private: | |
61 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxWindowsPrintPreview) | |
2bda0e17 KB |
62 | }; |
63 | ||
64 | #endif | |
103aec29 | 65 | // _WX_PRINTWIN_H_ |