2013-11-01 11:46:42 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2014-08-21 13:51:22 +00:00
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
2013-11-01 11:46:42 +00:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2014-08-21 13:51:22 +00:00
|
|
|
** $QT_BEGIN_LICENSE:LGPL21$
|
2013-11-01 11:46:42 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2014-08-21 13:51:22 +00:00
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
2013-11-01 11:46:42 +00:00
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-08-21 13:51:22 +00:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2013-11-01 11:46:42 +00:00
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
2014-08-21 13:51:22 +00:00
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2013-11-01 11:46:42 +00:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PRINTDIALOGPANEL_H
|
|
|
|
#define PRINTDIALOGPANEL_H
|
|
|
|
|
|
|
|
#ifndef QT_NO_PRINTER
|
|
|
|
|
2014-03-23 16:07:26 +00:00
|
|
|
#include "ui_printdialogpanel.h"
|
|
|
|
|
2014-03-24 10:51:05 +00:00
|
|
|
#if QT_VERSION >= 0x050300
|
|
|
|
#include <QPageLayout>
|
|
|
|
#endif
|
|
|
|
#include <QPrinter>
|
2013-11-01 11:46:42 +00:00
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
class QPrinter;
|
|
|
|
class QComboBox;
|
|
|
|
class QGroupBox;
|
|
|
|
class QPushButton;
|
|
|
|
class QCheckBox;
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
|
|
class PageSizeControl;
|
|
|
|
class OptionsControl;
|
|
|
|
|
2014-03-24 10:51:05 +00:00
|
|
|
#if QT_VERSION < 0x050300
|
|
|
|
// Copied from class QPageLayout introduced in Qt 5.3
|
|
|
|
namespace QPageLayout
|
|
|
|
{
|
|
|
|
enum Unit {
|
|
|
|
Millimeter,
|
|
|
|
Point,
|
|
|
|
Inch,
|
|
|
|
Pica,
|
|
|
|
Didot,
|
|
|
|
Cicero
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Orientation {
|
|
|
|
Portrait,
|
|
|
|
Landscape
|
|
|
|
};
|
|
|
|
|
|
|
|
enum Mode {
|
|
|
|
StandardMode, // Paint Rect includes margins
|
|
|
|
FullPageMode // Paint Rect excludes margins
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-11-01 11:46:42 +00:00
|
|
|
class PrintDialogPanel : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit PrintDialogPanel(QWidget *parent = 0);
|
|
|
|
~PrintDialogPanel();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void createPrinter();
|
|
|
|
void deletePrinter();
|
|
|
|
void showPrintDialog();
|
|
|
|
void showPreviewDialog();
|
2014-01-20 12:21:23 +00:00
|
|
|
void showPageSetupDialog();
|
2014-03-24 17:53:06 +00:00
|
|
|
void directPrint();
|
2014-03-24 10:51:05 +00:00
|
|
|
void unitsChanged();
|
|
|
|
void pageSizeChanged();
|
|
|
|
void pageDimensionsChanged();
|
|
|
|
void orientationChanged();
|
|
|
|
void marginsChanged();
|
|
|
|
void layoutModeChanged();
|
|
|
|
void printerChanged();
|
2013-11-01 11:46:42 +00:00
|
|
|
|
|
|
|
private:
|
2014-03-24 10:51:05 +00:00
|
|
|
QSizeF customPageSize() const;
|
2013-11-01 11:46:42 +00:00
|
|
|
void applySettings(QPrinter *printer) const;
|
|
|
|
void retrieveSettings(const QPrinter *printer);
|
2014-03-24 10:51:05 +00:00
|
|
|
void updatePageLayoutWidgets();
|
2013-11-01 11:46:42 +00:00
|
|
|
void enablePanels();
|
|
|
|
|
2014-03-24 10:51:05 +00:00
|
|
|
bool m_blockSignals;
|
2014-03-23 16:07:26 +00:00
|
|
|
Ui::PrintDialogPanel m_panel;
|
|
|
|
|
2014-03-24 10:51:05 +00:00
|
|
|
#if QT_VERSION >= 0x050300
|
|
|
|
QPageLayout m_pageLayout;
|
|
|
|
#else
|
|
|
|
QPrinter m_printerLayout;
|
|
|
|
QPrinter::Unit m_units;
|
|
|
|
#endif
|
2013-11-01 11:46:42 +00:00
|
|
|
QScopedPointer<QPrinter> m_printer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !QT_NO_PRINTER
|
|
|
|
#endif // PRINTDIALOGPANEL_H
|