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