Home · All Classes · Modules

QAbstractPrintDialog Class Reference
[QtGui module]

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

Inherits QDialog.

Inherited by QPrintDialog.

Types

Methods


Detailed Description

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

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 QPrintDialog, QPrinter, and Printing with Qt.


Type Documentation

QAbstractPrintDialog.PrintDialogOption

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

ConstantValueDescription
QAbstractPrintDialog.None0x0000None of the options are enabled.
QAbstractPrintDialog.PrintToFile0x0001The print to file option is enabled.
QAbstractPrintDialog.PrintSelection0x0002The print selection option is enalbed.
QAbstractPrintDialog.PrintPageRange0x0004The page range selection option is enabled.
QAbstractPrintDialog.PrintCollateCopies0x0010 
QAbstractPrintDialog.DontUseSheet0x0020Do not make the native print dialog a sheet. By default on Mac OS X, the native dialog is made a sheet if it has a parent that can accept sheets and is visible. Internally, Mac OS X tracks whether a printing session and not which particular dialog should be a sheet or not. Therefore, make sure this value matches between the page setup dialog and the print dialog or you can potentially end up in a modal loop that you can't break.
QAbstractPrintDialog.PrintShowPageSize0x0008Show the page size + margins page only if this is enabled.

The PrintDialogOptions type is a typedef for QFlags<PrintDialogOption>. It stores an OR combination of PrintDialogOption values.

QAbstractPrintDialog.PrintRange

Used to specify the print range selection option.

ConstantValueDescription
QAbstractPrintDialog.AllPages0All pages should be printed.
QAbstractPrintDialog.Selection1Only the selection should be printed.
QAbstractPrintDialog.PageRange2The specified page range should be printed.

See also QPrinter.PrintRange.


Method Documentation

QAbstractPrintDialog.__init__ (self, QPrinter printer, QWidget parent = None)

The parent argument, if not None, causes self to be owned by Qt instead of PyQt.

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

QAbstractPrintDialog.addEnabledOption (self, PrintDialogOption option)

Adds the option option to the set of enabled options in this dialog.

Except for the DontUseSheet option, this function has no effect on Mac OS X. See the QPrintDialog documentation for more information.

PrintDialogOptions QAbstractPrintDialog.enabledOptions (self)

Returns the set of enabled options in this dialog.

See also setEnabledOptions().

int QAbstractPrintDialog.exec_ (self)

This method is abstract and should be reimplemented in any sub-class.

This virtual function is called to pop up the dialog. It must be reimplemented in subclasses.

int QAbstractPrintDialog.fromPage (self)

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

bool QAbstractPrintDialog.isOptionEnabled (self, PrintDialogOption option)

Returns true if the specified option is enabled; otherwise returns false

int QAbstractPrintDialog.maxPage (self)

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.

int QAbstractPrintDialog.minPage (self)

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

QPrinter QAbstractPrintDialog.printer (self)

Returns the printer that this printer dialog operates on.

PrintRange QAbstractPrintDialog.printRange (self)

Returns the print range.

See also setPrintRange().

QAbstractPrintDialog.setEnabledOptions (self, PrintDialogOptions options)

Sets the set of options that should be enabled in the print dialog to options.

Except for the DontUseSheet option, this function has no effect on Mac OS X. See the QPrintDialog documentation for more information.

See also enabledOptions().

QAbstractPrintDialog.setFromTo (self, int fromPage, int toPage)

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

QAbstractPrintDialog.setMinMax (self, int min, int max)

Sets the page range in this dialog to be from min to max. This also enables the PrintPageRange option.

QAbstractPrintDialog.setOptionTabs (self, QWidget-list 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.

This function was introduced in Qt 4.4.

QAbstractPrintDialog.setPrintRange (self, PrintRange range)

Sets the print range option in to be range.

See also printRange().

int QAbstractPrintDialog.toPage (self)

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


PyQt 4.4.3 for X11Copyright © Riverbank Computing Ltd and Trolltech AS 2008Qt 4.4.1