blob: 15e0271ba0d777c47d2f561a4a721a4e1a99ec20 [file] [log] [blame]
Bill Yibe1c96f2015-07-15 10:09:15 -07001/****************************************************************************
2**
3** Copyright (C) 2015 The Qt Company Ltd.
4** Contact: http://www.qt.io/licensing/
5**
6** This file is part of the QtGui module of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL21$
9** Commercial License Usage
10** Licensees holding valid commercial Qt licenses may use this file in
11** accordance with the commercial license agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and The Qt Company. For licensing terms
14** and conditions see http://www.qt.io/terms-conditions. For further
15** information use the contact form at http://www.qt.io/contact-us.
16**
17** GNU Lesser General Public License Usage
18** Alternatively, this file may be used under the terms of the GNU Lesser
19** General Public License version 2.1 or version 3 as published by the Free
20** Software Foundation and appearing in the file LICENSE.LGPLv21 and
21** LICENSE.LGPLv3 included in the packaging of this file. Please review the
22** following information to ensure the GNU Lesser General Public License
23** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
24** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
25**
26** As a special exception, The Qt Company gives you certain additional
27** rights. These rights are described in The Qt Company LGPL Exception
28** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
29**
30** $QT_END_LICENSE$
31**
32****************************************************************************/
33
34#ifndef QPRINTPREVIEWDIALOG_H
35#define QPRINTPREVIEWDIALOG_H
36
37#include <QtWidgets/qdialog.h>
38#include <QtPrintSupport/qtprintsupportglobal.h>
39
40#ifndef QT_NO_PRINTPREVIEWDIALOG
41
42QT_BEGIN_NAMESPACE
43
44
45class QGraphicsView;
46class QPrintPreviewDialogPrivate;
47class QPrinter;
48
49class Q_PRINTSUPPORT_EXPORT QPrintPreviewDialog : public QDialog
50{
51 Q_OBJECT
52 Q_DECLARE_PRIVATE(QPrintPreviewDialog)
53
54public:
55 explicit QPrintPreviewDialog(QWidget *parent = 0, Qt::WindowFlags flags = 0);
56 explicit QPrintPreviewDialog(QPrinter *printer, QWidget *parent = 0, Qt::WindowFlags flags = 0);
57 ~QPrintPreviewDialog();
58
59 using QDialog::open;
60 void open(QObject *receiver, const char *member);
61
62 QPrinter *printer();
63
64 void setVisible(bool visible) Q_DECL_OVERRIDE;
65 void done(int result) Q_DECL_OVERRIDE;
66
67Q_SIGNALS:
68 void paintRequested(QPrinter *printer);
69
70private:
71 Q_PRIVATE_SLOT(d_func(), void _q_fit(QAction *action))
72 Q_PRIVATE_SLOT(d_func(), void _q_zoomIn())
73 Q_PRIVATE_SLOT(d_func(), void _q_zoomOut())
74 Q_PRIVATE_SLOT(d_func(), void _q_navigate(QAction *action))
75 Q_PRIVATE_SLOT(d_func(), void _q_setMode(QAction *action))
76 Q_PRIVATE_SLOT(d_func(), void _q_pageNumEdited())
77 Q_PRIVATE_SLOT(d_func(), void _q_print())
78 Q_PRIVATE_SLOT(d_func(), void _q_pageSetup())
79 Q_PRIVATE_SLOT(d_func(), void _q_previewChanged())
80 Q_PRIVATE_SLOT(d_func(), void _q_zoomFactorChanged())
81};
82
83
84QT_END_NAMESPACE
85
86#endif // QT_NO_PRINTPREVIEWDIALOG
87
88#endif // QPRINTPREVIEWDIALOG_H