2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-11-01 11:46:42 +00:00
|
|
|
|
|
|
|
#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
|
|
|
#include <QPageLayout>
|
|
|
|
#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;
|
|
|
|
|
|
|
|
class PrintDialogPanel : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2020-10-07 11:05:48 +00:00
|
|
|
explicit PrintDialogPanel(QWidget *parent = nullptr);
|
2013-11-01 11:46:42 +00:00
|
|
|
~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
|
|
|
QPageLayout m_pageLayout;
|
2013-11-01 11:46:42 +00:00
|
|
|
QScopedPointer<QPrinter> m_printer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !QT_NO_PRINTER
|
|
|
|
#endif // PRINTDIALOGPANEL_H
|