QGIS API Documentation 3.99.0-Master (09f76ad7019)
Loading...
Searching...
No Matches
qgsreport.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsreport.h
3 ---------------------------
4 begin : December 2017
5 copyright : (C) 2017 by Nyall Dawson
6 email : nyall dot dawson at gmail dot com
7 ***************************************************************************/
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16#ifndef QGSREPORT_H
17#define QGSREPORT_H
18
19#include "qgis_core.h"
22
23#include <QString>
24
25using namespace Qt::StringLiterals;
26
28
29// This is not considered stable API - it is exposed to python bindings only for unit testing!
30
43class CORE_EXPORT QgsReport : public QObject, public QgsAbstractReportSection, public QgsMasterLayoutInterface
44{
45
46 Q_OBJECT
47
48 public:
49
56 QgsReport( QgsProject *project );
57
59 QString type() const override { return u"SectionReport"_s; }
60 QString description() const override { return QObject::tr( "Report" ); }
61 QIcon icon() const override;
62 QgsProject *layoutProject() const override { return mProject; }
63 QgsReport *clone() const override SIP_FACTORY;
64 QString name() const override { return mName; }
65 void setName( const QString &name ) override;
66 QDomElement writeLayoutXml( QDomDocument &document, const QgsReadWriteContext &context ) const override;
67 bool readLayoutXml( const QDomElement &layoutElement, const QDomDocument &document, const QgsReadWriteContext &context ) override;
68 void updateSettings() override;
69 bool layoutAccept( QgsStyleEntityVisitorInterface *visitor ) const override;
70
71 signals:
72
77 void nameChanged( const QString &name );
78
79 private:
80
81 QgsProject *mProject = nullptr;
82 QString mName;
83
84};
85
87
88#endif //QGSREPORT_H
Interface for master layout type objects, such as print layouts and reports.
virtual QgsProject * layoutProject() const =0
The project associated with the layout.
virtual QDomElement writeLayoutXml(QDomDocument &document, const QgsReadWriteContext &context) const =0
Returns the layout's state encapsulated in a DOM element.
virtual QIcon icon() const =0
Returns an icon for the layout.
virtual QgsMasterLayoutInterface::Type layoutType() const =0
Returns the master layout type.
virtual void updateSettings()=0
Refreshes the layout when global layout related options change.
virtual QgsMasterLayoutInterface * clone() const =0
Creates a clone of the layout.
virtual bool layoutAccept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified style entity visitor, causing it to visit all style entities associated with th...
virtual void setName(const QString &name)=0
Sets the layout's name.
virtual bool readLayoutXml(const QDomElement &layoutElement, const QDomDocument &document, const QgsReadWriteContext &context)=0
Sets the layout's state from a DOM element.
#define SIP_FACTORY
Definition qgis_sip.h:84