QPrintPreviewDialog Class▲
-
Header: QPrintPreviewDialog
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS PrintSupport)
target_link_libraries(mytarget PRIVATE Qt6::PrintSupport)
-
qmake: QT += printsupport
-
Inherits: QDialog
-
Group: QPrintPreviewDialog is part of standard-dialogs, Printer and Printing APIs
Detailed Description▲
Using QPrintPreviewDialog in your existing application is straightforward:
-
Create the QPrintPreviewDialog.
You can construct a QPrintPreviewDialog with an existing QPrinter object, or you can have QPrintPreviewDialog create one for you, which will be the system default printer.
-
Connect the paintRequested() signal to a slot.
When the dialog needs to generate a set of preview pages, the paintRequested() signal will be emitted. You can use the exact same code for the actual printing as for having the preview generated, including calling QPrinter::newPage() to start a new page in the preview. Connect a slot to the paintRequested() signal, where you draw onto the QPrinter object that is passed into the slot.
-
Call exec().
Call QPrintPreviewDialog::exec() to show the preview dialog.
See Also▲
See also QPrinter, QPrintDialog, QPageSetupDialog, QPrintPreviewWidget
Member Function Documentation▲
[explicit] QPrintPreviewDialog::QPrintPreviewDialog(QPrinter *printer, QWidget *parent = nullptr, Qt::WindowFlags flags = Qt::WindowFlags())▲
Constructs a QPrintPreviewDialog based on printer and with parent as the parent widget. The widget flags flags are passed on to the QWidget constructor.
See Also▲
See also QWidget::setWindowFlags()
[explicit] QPrintPreviewDialog::QPrintPreviewDialog(QWidget *parent = nullptr, Qt::WindowFlags flags = Qt::WindowFlags())▲
This is an overloaded function.
This will create an internal QPrinter object, which will use the system default printer.
[virtual] QPrintPreviewDialog::~QPrintPreviewDialog()▲
Destroys the QPrintPreviewDialog.
[override virtual] void QPrintPreviewDialog::done(int result)▲
Reimplements: QDialog::done(int r).
void QPrintPreviewDialog::open(QObject *receiver, const char *member)▲
This is an overloaded function.
Opens the dialog and connects its finished(int) signal to the slot specified by receiver and member.
The signal will be disconnected from the slot when the dialog is closed.
void QPrintPreviewDialog::paintRequested(QPrinter *printer)▲
This signal is emitted when the QPrintPreviewDialog needs to generate a set of preview pages.
The printer instance supplied is the paint device onto which you should paint the contents of each page, using the QPrinter instance in the same way as you would when printing directly.
QPrinter *QPrintPreviewDialog::printer()▲
Returns a pointer to the QPrinter object this dialog is currently operating on.
[override virtual] void QPrintPreviewDialog::setVisible(bool visible)▲
Reimplements: QDialog::setVisible(bool visible).