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