QPrintPreviewDialog Class Reference [модуль QtGui]
The QPrintPreviewDialog class provides a dialog for previewing and configuring page layouts for printer output. Далее...
#include <QPrintPreviewDialog> Унаследован от QDialog.
Этот класс был введён в Qt 4.4.
Открытые функции
- 5 открытых функций, унаследованных от QDialog
- 206 открытых функций, унаследованных от QWidget
- 29 открытых функций, унаследованных от QObject
- 12 открытых функций, унаследованных от QPaintDevice
Сигналы
- 3 сигнала, унаследованные от QDialog
- 1 сигнал, унаследованный от QWidget
- 1 сигнал, унаследованный от QObject
Дополнительные унаследованные члены
- 2 свойства, унаследованные от QDialog
- 57 свойств, унаследованных от QWidget
- 1 свойство, унаследованное от QObject
- 4 открытых слота, унаследованные от QDialog
- 19 открытых слотов, унаследованных от QWidget
- 1 открытый слот, унаследованный от QObject
- 4 статических открытых члена, унаследованных от QWidget
- 5 статических открытых членов, унаследованных от QObject
- 1 статический открытый член, унаследованный от QPaintDevice
- 38 защищенных функций, унаследованных от QWidget
- 7 защищенных функций, унаследованных от QObject
- 1 защищённая функция, унаследованная от QPaintDevice
- 1 защищенный слот, унаследованный от QWidget
Подробное описание
The QPrintPreviewDialog class provides a dialog for previewing and configuring page layouts for printer output.
Using QPrintPreviewDialog in your existing application is straightforward:
- Create the QPrintPreviewDialog.
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.
- Connect the paintRequested() signal to a slot.
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.
- Call exec().
Call QPrintPreviewDialog::exec() to show the preview dialog.
See also QPrinter, QPrintDialog, QPageSetupDialog, and QPrintPreviewWidget.
Описание функций-членов
QPrintPreviewDialog::QPrintPreviewDialog ( QPrinter * printer, QWidget * parent = 0, Qt::WindowFlags flags = 0 )
Constructs a QPrintPreviewDialog based on printer and with parent as the parent widget. The widget flags flags are passed on to the QWidget constructor.
See also QWidget::setWindowFlags().
QPrintPreviewDialog::QPrintPreviewDialog ( QWidget * parent = 0, Qt::WindowFlags flags = 0 )
This will create an internal QPrinter object, which will use the system default printer.
QPrintPreviewDialog::~QPrintPreviewDialog ()
Destroys the QPrintPreviewDialog.
void QPrintPreviewDialog::paintRequested ( QPrinter * printer ) [signal]
This signal is emitted when the 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.
|