The QPrintPreviewDialog class provides a dialog for previewing and configuring page layouts for printer output. 更多...
| 頭: | #include <QPrintPreviewDialog> |
| qmake: | QT += printsupport |
| Since: | Qt 4.4 |
| 繼承: | QDialog |
| QPrintPreviewDialog (QPrinter * printer , QWidget * parent = nullptr, Qt::WindowFlags flags = Qt::WindowFlags()) | |
| QPrintPreviewDialog (QWidget * parent = nullptr, Qt::WindowFlags flags = Qt::WindowFlags()) | |
| virtual | ~QPrintPreviewDialog () |
| void | open (QObject * receiver , const char * member ) |
| QPrinter * | printer () |
| virtual void | done (int result ) override |
| virtual void | setVisible (bool visible ) override |
| void | paintRequested (QPrinter * printer ) |
| const QMetaObject | staticMetaObject |
The QPrintPreviewDialog class provides a dialog for previewing and configuring page layouts for printer output.
使用 QPrintPreviewDialog in your existing application is straightforward:
You can construct a QPrintPreviewDialog with an existing QPrinter object, or you can have QPrintPreviewDialog create one for you, which will be the system default printer.
When the dialog needs to generate a set of preview pages, the paintRequested () signal will be emitted. You can use the exact same code for the actual printing as for having the preview generated, including calling QPrinter::newPage () to start a new page in the preview. Connect a slot to the paintRequested () signal, where you draw onto the QPrinter object that is passed into the slot.
調用 QPrintPreviewDialog::exec () to show the preview dialog.
另請參閱 QPrinter , QPrintDialog , QPageSetupDialog ,和 QPrintPreviewWidget .
構造 QPrintPreviewDialog 基於 printer 和采用 parent as the parent widget. The widget flags flags 被傳遞給 QWidget 構造函數。
另請參閱 QWidget::setWindowFlags ().
這是重載函數。
This will create an internal QPrinter object, which will use the system default printer.
[虛擬]
QPrintPreviewDialog::
~QPrintPreviewDialog
()
銷毀 QPrintPreviewDialog .
[override virtual]
void
QPrintPreviewDialog::
done
(
int
result
)
重實現自 QDialog::done ().
這是重載函數。
Opens the dialog and connects its finished(int) signal to the slot specified by receiver and member .
將從槽斷開信號連接,當關閉對話框時。
該函數在 Qt 4.5 引入。
[signal]
void
QPrintPreviewDialog::
paintRequested
(
QPrinter
*
printer
)
此信號發射,當 QPrintPreviewDialog needs to generate a set of preview pages.
The printer instance supplied is the paint device onto which you should paint the contents of each page, using the QPrinter instance in the same way as you would when printing directly.
返迴指針指嚮 QPrinter object this dialog is currently operating on.
[override virtual]
void
QPrintPreviewDialog::
setVisible
(
bool
visible
)
重實現自 QDialog::setVisible ().