source: trunk/src/gui/painting/qprinter.h@ 744

Last change on this file since 744 was 651, checked in by Dmitry A. Kuminov, 16 years ago

trunk: Merged in qt 4.6.2 sources.

File size: 9.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtGui module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
15**
16** GNU Lesser General Public License Usage
17** Alternatively, this file may be used under the terms of the GNU Lesser
18** General Public License version 2.1 as published by the Free Software
19** Foundation and appearing in the file LICENSE.LGPL included in the
20** packaging of this file. Please review the following information to
21** ensure the GNU Lesser General Public License version 2.1 requirements
22** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23**
24** In addition, as a special exception, Nokia gives you certain additional
25** rights. These rights are described in the Nokia Qt LGPL Exception
26** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42#ifndef QPRINTER_H
43#define QPRINTER_H
44
45#include <QtCore/qstring.h>
46#include <QtCore/qscopedpointer.h>
47#include <QtGui/qpaintdevice.h>
48
49QT_BEGIN_HEADER
50
51QT_BEGIN_NAMESPACE
52
53QT_MODULE(Gui)
54
55#ifndef QT_NO_PRINTER
56
57#if defined(B0)
58#undef B0 // Terminal hang-up. We assume that you do not want that.
59#endif
60
61class QPrinterPrivate;
62class QPaintEngine;
63class QPrintEngine;
64class QPrinterInfo;
65
66class Q_GUI_EXPORT QPrinter : public QPaintDevice
67{
68 Q_DECLARE_PRIVATE(QPrinter)
69public:
70 enum PrinterMode { ScreenResolution, PrinterResolution, HighResolution };
71
72 explicit QPrinter(PrinterMode mode = ScreenResolution);
73 explicit QPrinter(const QPrinterInfo& printer, PrinterMode mode = ScreenResolution);
74 ~QPrinter();
75
76 int devType() const;
77
78 enum Orientation { Portrait, Landscape };
79
80#ifndef Q_QDOC
81 enum PageSize { A4, B5, Letter, Legal, Executive,
82 A0, A1, A2, A3, A5, A6, A7, A8, A9, B0, B1,
83 B10, B2, B3, B4, B6, B7, B8, B9, C5E, Comm10E,
84 DLE, Folio, Ledger, Tabloid, Custom, NPageSize = Custom, NPaperSize = Custom };
85 typedef PageSize PaperSize;
86#else
87 enum PageSize { A4, B5, Letter, Legal, Executive,
88 A0, A1, A2, A3, A5, A6, A7, A8, A9, B0, B1,
89 B10, B2, B3, B4, B6, B7, B8, B9, C5E, Comm10E,
90 DLE, Folio, Ledger, Tabloid, Custom, NPageSize = Custom };
91 enum PaperSize { A4, B5, Letter, Legal, Executive,
92 A0, A1, A2, A3, A5, A6, A7, A8, A9, B0, B1,
93 B10, B2, B3, B4, B6, B7, B8, B9, C5E, Comm10E,
94 DLE, Folio, Ledger, Tabloid, Custom, NPageSize = Custom, NPaperSize = Custom };
95#endif
96
97 enum PageOrder { FirstPageFirst,
98 LastPageFirst };
99
100 enum ColorMode { GrayScale,
101 Color };
102
103 enum PaperSource { OnlyOne,
104 Lower,
105 Middle,
106 Manual,
107 Envelope,
108 EnvelopeManual,
109 Auto,
110 Tractor,
111 SmallFormat,
112 LargeFormat,
113 LargeCapacity,
114 Cassette,
115 FormSource,
116 MaxPageSource
117 };
118
119 enum PrinterState { Idle,
120 Active,
121 Aborted,
122 Error };
123
124 enum OutputFormat { NativeFormat, PdfFormat, PostScriptFormat };
125
126 // ### Qt 5: Merge with QAbstractPrintDialog::PrintRange
127 enum PrintRange { AllPages, Selection, PageRange };
128
129 enum Unit {
130 Millimeter,
131 Point,
132 Inch,
133 Pica,
134 Didot,
135 Cicero,
136 DevicePixel
137 };
138
139 enum DuplexMode {
140 DuplexNone = 0,
141 DuplexAuto,
142 DuplexLongSide,
143 DuplexShortSide
144 };
145
146#ifdef QT3_SUPPORT
147 enum PrinterOption { PrintToFile, PrintSelection, PrintPageRange };
148#endif // QT3_SUPPORT
149
150 void setOutputFormat(OutputFormat format);
151 OutputFormat outputFormat() const;
152
153 void setPrinterName(const QString &);
154 QString printerName() const;