Home · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The QAbstractPrintDialog class provides a base implementation for print dialogs used to configure printers. More...
#include <QAbstractPrintDialog>
Inherits QDialog.
Inherited by QPrintDialog.
The QAbstractPrintDialog class provides a base implementation for print dialogs used to configure printers.
Used to specify which parts of the print dialog should be enabled.
Constant | Value | Description |
---|---|---|
QAbstractPrintDialog::None | 0x0000 | None of the options are enabled. |
QAbstractPrintDialog::PrintToFile | 0x0001 | The print to file option is enabled. |
QAbstractPrintDialog::PrintSelection | 0x0002 | The print selection option is enalbed. |
QAbstractPrintDialog::PrintPageRange | 0x0004 | The page range selection option is enabled. |
QAbstractPrintDialog::PrintCollateCopies | 0x0010 |
The PrintDialogOptions type is a typedef for QFlags<PrintDialogOption>. It stores an OR combination of PrintDialogOption values.
Used to specify the print range selection option.
Constant | Value | Description |
---|---|---|
QAbstractPrintDialog::AllPages | 0 | All pages should be printed. |
QAbstractPrintDialog::Selection | 1 | Only the selection should be printed. |
QAbstractPrintDialog::PageRange | 2 | The specified page range should be printed. |
See also QPrinter::PrintRange.
Constructs an abstract print dialog for printer with parent as parent widget.
Adds the option option to the set of enabled options in this dialog.
Returns the set of enabled options in this dialog.
See also setEnabledOptions().
This virtual function is called to pop up the dialog. It must be reimplemented in subclasses.
Returns the first page to be printed
Returns true if the specified option is enabled; otherwise returns false
Returns the maximum page in the page range.
Returns the minimum page in the page range.
Returns the print range.
See also setPrintRange().
Returns the printer that this printer dialog operates on.
Sets the set of options that should be enabled in the print dialog to options.
See also enabledOptions().
Sets the range in the print dialog to be from from to to.
Sets the page range in this dialog to be from min to max. This also enables the PrintPageRange option.
Sets the print range option in to be range.
See also printRange().
Returns the last page to be printed.
Copyright © 2005 Trolltech | Trademarks | Qt 4.1.0 |