QPrintPreviewDialog¶
The
QPrintPreviewDialog
class provides a dialog for previewing and configuring page layouts for printer output. More…
Synopsis¶
Functions¶
Signals¶
def
paintRequested
(printer)
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 PySide2.QtPrintSupport.QPrintPreviewDialog(printer[, parent=None[, flags=Qt.WindowFlags()]])¶
PySide2.QtPrintSupport.QPrintPreviewDialog([parent=None[, flags=Qt.WindowFlags()]])
- param parent:
- param flags:
WindowFlags
- param printer:
Constructs a
QPrintPreviewDialog
based onprinter
and withparent
as the parent widget. The widget flagsflags
are passed on to theQWidget
constructor.See also
setWindowFlags()
This is an overloaded function.
This will create an internal
QPrinter
object, which will use the system default printer.
- PySide2.QtPrintSupport.QPrintPreviewDialog.open(receiver, member)¶
- Parameters:
receiver –
PySide2.QtCore.QObject
member – str
This is an overloaded function.
Opens the dialog and connects its finished(int) signal to the slot specified by
receiver
andmember
.The signal will be disconnected from the slot when the dialog is closed.
- PySide2.QtPrintSupport.QPrintPreviewDialog.paintRequested(printer)¶
- Parameters:
printer –
PySide2.QtPrintSupport.QPrinter
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.