QPrintPreviewDialog#
The QPrintPreviewDialog
class provides a dialog for previewing and configuring page layouts for printer output. More…
Synopsis#
Functions#
Signals#
def
paintRequested
(printer)
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
Using QPrintPreviewDialog
in your existing application is straightforward:
Create the
QPrintPreviewDialog
.You can construct a
QPrintPreviewDialog
with an existingQPrinter
object, or you can haveQPrintPreviewDialog
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 callingnewPage()
to start a new page in the preview. Connect a slot to thepaintRequested()
signal, where you draw onto theQPrinter
object that is passed into the slot.Call
exec()
.Call
exec()
to show the preview dialog.
- class PySide6.QtPrintSupport.QPrintPreviewDialog(printer[, parent=None[, flags=Qt.WindowFlags()]])#
PySide6.QtPrintSupport.QPrintPreviewDialog([parent=None[, flags=Qt.WindowFlags()]])
- Parameters:
printer –
PySide6.QtPrintSupport.QPrinter
flags –
WindowFlags
parent –
PySide6.QtWidgets.QWidget
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
setWindowFlags()
This is an overloaded function.
This will create an internal QPrinter
object, which will use the system default printer.
- PySide6.QtPrintSupport.QPrintPreviewDialog.open(receiver, member)#
- Parameters:
receiver –
PySide6.QtCore.QObject
member – str
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.
- PySide6.QtPrintSupport.QPrintPreviewDialog.paintRequested(printer)#
- Parameters:
printer –
PySide6.QtPrintSupport.QPrinter
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.
- PySide6.QtPrintSupport.QPrintPreviewDialog.printer()#
- Return type:
Returns a pointer to the QPrinter
object this dialog is currently operating on.