Branch data Line data Source code
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 : : 20 : : ///@cond NOT_STABLE 21 : : 22 : 0 : QgsReport::QgsReport( QgsProject *project ) 23 : 0 : : QgsAbstractReportSection( nullptr ) 24 : 0 : , mProject( project ) 25 : 0 : {} 26 : : 27 : 0 : QIcon QgsReport::icon() const 28 : : { 29 : 0 : return QgsApplication::getThemeIcon( QStringLiteral( "mIconReport.svg" ) ); 30 : 0 : } 31 : : 32 : 0 : QgsReport *QgsReport::clone() const 33 : : { 34 : 0 : std::unique_ptr< QgsReport > copy = std::make_unique< QgsReport >( mProject ); 35 : 0 : copyCommonProperties( copy.get() ); 36 : 0 : return copy.release(); 37 : 0 : } 38 : : 39 : 0 : void QgsReport::setName( const QString &name ) 40 : : { 41 : 0 : mName = name; 42 : 0 : emit nameChanged( mName ); 43 : 0 : } 44 : : 45 : 0 : QDomElement QgsReport::writeLayoutXml( QDomDocument &document, const QgsReadWriteContext &context ) const 46 : : { 47 : 0 : QDomElement element = document.createElement( QStringLiteral( "Report" ) ); 48 : 0 : writeXml( element, document, context ); 49 : 0 : element.setAttribute( QStringLiteral( "name" ), mName ); 50 : 0 : return element; 51 : 0 : } 52 : : 53 : 0 : bool QgsReport::readLayoutXml( const QDomElement &layoutElement, const QDomDocument &document, const QgsReadWriteContext &context ) 54 : : { 55 : 0 : const QDomNodeList sectionList = layoutElement.elementsByTagName( QStringLiteral( "Section" ) ); 56 : 0 : if ( sectionList.count() > 0 ) 57 : : { 58 : 0 : readXml( sectionList.at( 0 ).toElement(), document, context ); 59 : 0 : } 60 : 0 : setName( layoutElement.attribute( QStringLiteral( "name" ) ) ); 61 : : return true; 62 : 0 : } 63 : : 64 : 0 : void QgsReport::updateSettings() 65 : : { 66 : 0 : reloadSettings(); 67 : 0 : } 68 : : 69 : 0 : bool QgsReport::layoutAccept( QgsStyleEntityVisitorInterface *visitor ) const 70 : : { 71 : 0 : return accept( visitor ); 72 : : } 73 : : 74 : 0 : QgsMasterLayoutInterface::Type QgsReport::layoutType() const 75 : : { 76 : 0 : return QgsMasterLayoutInterface::Report; 77 : : } 78 : : 79 : : ///@endcond