]>
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$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef __PRINTWINH__ | |
13 | #define __PRINTWINH__ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "printwin.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/prntbase.h" | |
20 | ||
21 | /* | |
22 | * Represents the printer: manages printing a wxPrintout object | |
23 | */ | |
24 | ||
25 | class WXDLLEXPORT wxWindowsPrinter: public wxPrinterBase | |
26 | { | |
27 | DECLARE_DYNAMIC_CLASS(wxWindowsPrinter) | |
28 | ||
29 | private: | |
30 | WXFARPROC lpAbortProc; | |
31 | public: | |
32 | wxWindowsPrinter(wxPrintData *data = NULL); | |
33 | ~wxWindowsPrinter(void); | |
34 | ||
35 | virtual bool Print(wxWindow *parent, wxPrintout *printout, bool prompt = TRUE); | |
36 | virtual bool PrintDialog(wxWindow *parent); | |
37 | virtual bool Setup(wxWindow *parent); | |
38 | }; | |
39 | ||
40 | /* | |
41 | * wxPrintPreview | |
42 | * Programmer creates an object of this class to preview a wxPrintout. | |
43 | */ | |
44 | ||
45 | class WXDLLEXPORT wxWindowsPrintPreview: public wxPrintPreviewBase | |
46 | { | |
47 | DECLARE_CLASS(wxWindowsPrintPreview) | |
48 | ||
49 | public: | |
50 | wxWindowsPrintPreview(wxPrintout *printout, wxPrintout *printoutForPrinting = NULL, wxPrintData *data = NULL); | |
51 | ~wxWindowsPrintPreview(void); | |
52 | ||
53 | virtual bool Print(bool interactive); | |
54 | virtual void DetermineScaling(void); | |
55 | }; | |
56 | ||
57 | #endif | |
58 | // __PRINTWINH__ |