summaryrefslogtreecommitdiffstats
path: root/src/printsupport/doc/snippets/printing-qprinter/object.cpp
blob: 4d1dac176c8be5355b2fb5d7fbc3a49ce9e23698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include "object.h"

#include <QtWidgets>
#include <QtPrintSupport/qtprintsupportglobal.h>
#if QT_CONFIG(printdialog)
#include <QPrinter>
#endif

Object::Object(QObject *parent)
    : QObject(parent)
{
}

void Object::print()
{
    int numberOfPages = 10;
    int lastPage = numberOfPages - 1;

//! [0]
    QPrinter printer(QPrinter::HighResolution);
    printer.setOutputFileName("print.ps");
    QPainter painter;
    painter.begin(&printer);

    for (int page = 0; page < numberOfPages; ++page) {

        // Use the painter to draw on the page.

        if (page != lastPage)
            printer.newPage();
    }

    painter.end();
//! [0]
    qApp->quit();
}