KReport

KReportPage.h
1/* This file is part of the KDE project
2 * Copyright (C) 2007-2008 by Adam Pigg (adam@piggz.co.uk)
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef KREPORTPAGE_H
19#define KREPORTPAGE_H
20
21#include "kreport_export.h"
22
23#include <QGraphicsRectItem>
24#include <QObject>
25
26class ORODocument;
27
28/*!
29 * @brief Provides a widget that renders a specific page of
30 * an ORODocument
31 * The widget is sized to the document size in pixels
32 */
33class KREPORT_EXPORT KReportPage : public QObject, public QGraphicsRectItem
34{
35 Q_OBJECT
36public:
37 KReportPage(QWidget *parent, ORODocument *document);
38
39 ~KReportPage() override;
40
41 //! Renders page @a page (counted from 1).
42 void renderPage(int page);
43
44public Q_SLOTS:
45 void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = nullptr) override;
46
47 void pageUpdated(int pageNo);
48
49private Q_SLOTS:
50 void renderCurrentPage();
51
52private:
53 Q_DISABLE_COPY(KReportPage)
54 class Private;
55 Private * const d;
56};
57
58#endif
Provides a widget that renders a specific page of an ORODocument The widget is sized to the document ...
Definition KReportPage.h:34
Represents a single document containing one or more OROPage elements.
virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) override
Q_SLOTSQ_SLOTS
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:21:31 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.