QGIS API Documentation  3.14.0-Pi (9f7028fd23)
qgsreport.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsreport.cpp
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 
17 #include "qgsreport.h"
18 #include "qgslayout.h"
19 
21 
22 QgsReport::QgsReport( QgsProject *project )
23  : QgsAbstractReportSection( nullptr )
24  , mProject( project )
25 {}
26 
27 QIcon QgsReport::icon() const
28 {
29  return QgsApplication::getThemeIcon( QStringLiteral( "mIconReport.svg" ) );
30 }
31 
32 QgsReport *QgsReport::clone() const
33 {
34  std::unique_ptr< QgsReport > copy = qgis::make_unique< QgsReport >( mProject );
35  copyCommonProperties( copy.get() );
36  return copy.release();
37 }
38 
39 void QgsReport::setName( const QString &name )
40 {
41  mName = name;
42  emit nameChanged( mName );
43 }
44 
45 QDomElement QgsReport::writeLayoutXml( QDomDocument &document, const QgsReadWriteContext &context ) const
46 {
47  QDomElement element = document.createElement( QStringLiteral( "Report" ) );
48  writeXml( element, document, context );
49  element.setAttribute( QStringLiteral( "name" ), mName );
50  return element;
51 }
52 
53 bool QgsReport::readLayoutXml( const QDomElement &layoutElement, const QDomDocument &document, const QgsReadWriteContext &context )
54 {
55  const QDomNodeList sectionList = layoutElement.elementsByTagName( QStringLiteral( "Section" ) );
56  if ( sectionList.count() > 0 )
57  {
58  readXml( sectionList.at( 0 ).toElement(), document, context );
59  }
60  setName( layoutElement.attribute( QStringLiteral( "name" ) ) );
61  return true;
62 }
63 
64 void QgsReport::updateSettings()
65 {
66  reloadSettings();
67 }
68 
69 bool QgsReport::layoutAccept( QgsStyleEntityVisitorInterface *visitor ) const
70 {
71  return accept( visitor );
72 }
73 
74 QgsMasterLayoutInterface::Type QgsReport::layoutType() const
75 {
77 }
78 
QgsApplication::getThemeIcon
static QIcon getThemeIcon(const QString &name)
Helper to get a theme icon.
Definition: qgsapplication.cpp:605
QgsReadWriteContext
Definition: qgsreadwritecontext.h:34
QgsStyleEntityVisitorInterface
Definition: qgsstyleentityvisitor.h:33
QgsProject
Definition: qgsproject.h:92
qgsreport.h
QgsMasterLayoutInterface::Type
Type
Master layout type.
Definition: qgsmasterlayoutinterface.h:66
qgslayout.h
QgsMasterLayoutInterface::Report
@ Report
Report (QgsReport)
Definition: qgsmasterlayoutinterface.h:69