QAbstractPrintDialog

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

Inheritance diagram of PySide2.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 PySide2.QtPrintSupport.QAbstractPrintDialog(printer[, parent=None])

Constructs an abstract print dialog for printer with parent as parent widget.

PySide2.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

PySide2.QtPrintSupport.QAbstractPrintDialog.PrintDialogOption

Used to specify which parts of the print dialog should be visible.

Constant

Description

QAbstractPrintDialog.None

None of the options are enabled.

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

This value is obsolete and does nothing since Qt 4.5:

Constant

Description

QAbstractPrintDialog.DontUseSheet

In previous versions of Qt, exec() the print dialog would create a sheet by default the dialog was given a parent. This is no longer supported in Qt 4.5. If you want to use sheets, use open() instead.

PySide2.QtPrintSupport.QAbstractPrintDialog.addEnabledOption(option)
Parameters:

optionPrintDialogOption

Use setOption (option , true) instead.

PySide2.QtPrintSupport.QAbstractPrintDialog.enabledOptions()
Return type:

PrintDialogOptions

Use options() instead.

PySide2.QtPrintSupport.QAbstractPrintDialog.fromPage()
Return type:

int

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

PySide2.QtPrintSupport.QAbstractPrintDialog.isOptionEnabled(option)
Parameters:

optionPrintDialogOption

Return type:

bool

Use testOption (option ) instead.

PySide2.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.

PySide2.QtPrintSupport.QAbstractPrintDialog.minPage()
Return type:

int

Returns the minimum page in the page range. By default, this value is set to 1.

PySide2.QtPrintSupport.QAbstractPrintDialog.printRange()
Return type:

PrintRange

Returns the print range.

See also

setPrintRange()

PySide2.QtPrintSupport.QAbstractPrintDialog.printer()
Return type:

PySide2.QtPrintSupport.QPrinter

Returns the printer that this printer dialog operates on.

PySide2.QtPrintSupport.QAbstractPrintDialog.setEnabledOptions(options)
Parameters:

optionsPrintDialogOptions

Use setOptions() instead.

See also

enabledOptions()

PySide2.QtPrintSupport.QAbstractPrintDialog.setFromTo(fromPage, toPage)
Parameters:
  • fromPage – int

  • toPage – int

Sets the range in the print dialog to be from from to to .

PySide2.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.

PySide2.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.

PySide2.QtPrintSupport.QAbstractPrintDialog.setPrintRange(range)
Parameters:

rangePrintRange

Sets the print range option in to be range .

See also

printRange()

PySide2.QtPrintSupport.QAbstractPrintDialog.toPage()
Return type:

int

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