- 
    Bug 
- 
    Resolution: Done
- 
    P2: Important 
- 
    4.8.2, 5.2.1
- 
    Windows 7 + Qt4.8.2
- 
        071098b08b12fc1af6341ff6d7ba6713e5de1481 (5.3)
The attached example application demonstrates the use case.
Use case:
Widget has some child widgets on the layout.
Render the widget into the QPicture.
Render the QPicture to the printer:
MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent)
{
    widget = new QWidget;
    QGridLayout *layout = new QGridLayout(widget);
    layout->addWidget( new QRadioButton("Radio button"), 0,0 );
    layout->addWidget( new QLabel("Label"), 0,1 );
    layout->addWidget( new QPushButton( "Button 1" ), 1,0 );
    layout->addWidget( new QPushButton("Button 2"), 1,1 );
    setCentralWidget(widget);
    QTimer::singleShot(2000, this, SLOT(pic()));
}
void MainWindow::pic()
{
    qDebug("MainWindow::pic()");
    QPicture pic;
    widget->render(&pic); // render to QPicture
    QPrinter printer;
    printer.setOutputFileName( "test.pdf" );
    QPainter painter(&printer);
    pic.play(&painter); // render QPicture to printer.
}
Error: only the last added child widget is visible on the generated PDF.
- is required for
- 
                    QTBUG-37693 QtPrintSupport - Painting Issues -         
- Open
 
-         
- 
                    QTBUG-37713 QtPrintSupport - 5.3 issues -         
- Open
 
-         
- resulted in
- 
                    QTBUG-43968 [REGRESSION] QWidget::grab() ignores alpha and QGraphicsEffect -         
- Closed
 
-