QAbstractPrintDialog

The QAbstractPrintDialog class provides a base implementation for print dialogs used to configure printers. More

Inheritance diagram of PySide6.QtPrintSupport.QAbstractPrintDialog

Inherited by: QPrintDialog

Synopsis

Functions

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.

class PySide6.QtPrintSupport.QAbstractPrintDialog(printer[, parent=None])
Parameters

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

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

PrintRange

Returns the print range.

See also

setPrintRange()

PySide6.QtPrintSupport.QAbstractPrintDialog.printer()
Return type

PySide6.QtPrintSupport.QPrinter

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

rangePrintRange

Sets the print range option in to be range.

See also

printRange()

PySide6.QtPrintSupport.QAbstractPrintDialog.toPage()
Return type

int

Returns the last page to be printed. By default, this value is set to 0.