QAbstractPrintDialog#
The QAbstractPrintDialog
class provides a base implementation for print dialogs used to configure printers. More…
Inherited by: QPrintDialog
Synopsis#
Functions#
def
fromPage
()def
maxPage
()def
minPage
()def
printRange
()def
printer
()def
setFromTo
(fromPage, toPage)def
setMinMax
(min, max)def
setOptionTabs
(tabs)def
setPrintRange
(range)def
toPage
()
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#
This class implements getter and setter functions that are used to customize settings shown in print dialogs, but it is not used directly. Use QPrintDialog
to display a print dialog in your application.
See also
- class PySide6.QtPrintSupport.QAbstractPrintDialog(printer[, parent=None])#
- Parameters:
printer –
PySide6.QtPrintSupport.QPrinter
parent –
PySide6.QtWidgets.QWidget
Constructs an abstract print dialog for printer
with parent
as parent widget.
- PySide6.QtPrintSupport.QAbstractPrintDialog.PrintRange#
Used to specify the print range selection option.
Constant
Description
QAbstractPrintDialog.AllPages
All pages should be printed.
QAbstractPrintDialog.Selection
Only the selection should be printed.
QAbstractPrintDialog.PageRange
The specified page range should be printed.
QAbstractPrintDialog.CurrentPage
Only the currently visible page should be printed.
See also
PrintRange
- PySide6.QtPrintSupport.QAbstractPrintDialog.PrintDialogOption#
(inherits enum.Flag
) Used to specify which parts of the print dialog should be visible.
Constant
Description
QAbstractPrintDialog.PrintToFile
The print to file option is enabled.
QAbstractPrintDialog.PrintSelection
The print selection option is enabled.
QAbstractPrintDialog.PrintPageRange
The page range selection option is enabled.
QAbstractPrintDialog.PrintShowPageSize
Show the page size + margins page only if this is enabled.
QAbstractPrintDialog.PrintCollateCopies
The collate copies option is enabled
QAbstractPrintDialog.PrintCurrentPage
The print current page option is enabled
- PySide6.QtPrintSupport.QAbstractPrintDialog.fromPage()#
- Return type:
int
Returns the first page to be printed By default, this value is set to 0.
- PySide6.QtPrintSupport.QAbstractPrintDialog.maxPage()#
- Return type:
int
Returns the maximum page in the page range. As of Qt 4.4, this function returns INT_MAX by default. Previous versions returned 1 by default.
- PySide6.QtPrintSupport.QAbstractPrintDialog.minPage()#
- Return type:
int
Returns the minimum page in the page range. By default, this value is set to 1.
- PySide6.QtPrintSupport.QAbstractPrintDialog.printRange()#
- Return type:
Returns the print range.
See also
- PySide6.QtPrintSupport.QAbstractPrintDialog.printer()#
- Return type:
Returns the printer that this printer dialog operates on.
- PySide6.QtPrintSupport.QAbstractPrintDialog.setFromTo(fromPage, toPage)#
- Parameters:
fromPage – int
toPage – int
Sets the range in the print dialog to be from from
to to
.
- PySide6.QtPrintSupport.QAbstractPrintDialog.setMinMax(min, max)#
- Parameters:
min – int
max – int
Sets the page range in this dialog to be from min
to max
. This also enables the PrintPageRange
option.
- PySide6.QtPrintSupport.QAbstractPrintDialog.setOptionTabs(tabs)#
- Parameters:
tabs –
Set a list of widgets as tabs
to be shown on the print dialog, if supported.
Currently this option is only supported on X11.
Setting the option tabs will transfer their ownership to the print dialog.
- PySide6.QtPrintSupport.QAbstractPrintDialog.setPrintRange(range)#
- Parameters:
range –
PrintRange
Sets the print range option in to be range
.
See also
- PySide6.QtPrintSupport.QAbstractPrintDialog.toPage()#
- Return type:
int
Returns the last page to be printed. By default, this value is set to 0.