Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsreportsectionlayout.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 "qgsreportsectionlayout.h" 18 : : #include "qgslayout.h" 19 : : 20 : : ///@cond NOT_STABLE 21 : : 22 : 0 : QgsReportSectionLayout::QgsReportSectionLayout( QgsAbstractReportSection *parent ) 23 : 0 : : QgsAbstractReportSection( parent ) 24 : 0 : {} 25 : : 26 : 0 : QIcon QgsReportSectionLayout::icon() const 27 : : { 28 : 0 : return QgsApplication::getThemeIcon( QStringLiteral( "/mIconLayout.svg" ) ); 29 : 0 : } 30 : : 31 : 0 : QgsReportSectionLayout *QgsReportSectionLayout::clone() const 32 : : { 33 : 0 : std::unique_ptr< QgsReportSectionLayout > copy = std::make_unique< QgsReportSectionLayout >( nullptr ); 34 : 0 : copyCommonProperties( copy.get() ); 35 : : 36 : 0 : if ( mBody ) 37 : : { 38 : 0 : copy->mBody.reset( mBody->clone() ); 39 : 0 : } 40 : : else 41 : 0 : copy->mBody.reset(); 42 : : 43 : 0 : copy->mBodyEnabled = mBodyEnabled; 44 : : 45 : 0 : return copy.release(); 46 : 0 : } 47 : : 48 : 0 : bool QgsReportSectionLayout::beginRender() 49 : : { 50 : 0 : mExportedBody = false; 51 : 0 : return QgsAbstractReportSection::beginRender(); 52 : : } 53 : : 54 : 0 : QgsLayout *QgsReportSectionLayout::nextBody( bool &ok ) 55 : : { 56 : 0 : if ( !mExportedBody && mBody && mBodyEnabled ) 57 : : { 58 : 0 : mExportedBody = true; 59 : 0 : ok = true; 60 : 0 : return mBody.get(); 61 : : } 62 : : else 63 : : { 64 : 0 : ok = false; 65 : 0 : return nullptr; 66 : : } 67 : 0 : } 68 : : 69 : 0 : void QgsReportSectionLayout::reloadSettings() 70 : : { 71 : 0 : QgsAbstractReportSection::reloadSettings(); 72 : 0 : if ( mBody ) 73 : 0 : mBody->reloadSettings(); 74 : 0 : } 75 : : 76 : 0 : bool QgsReportSectionLayout::writePropertiesToElement( QDomElement &element, QDomDocument &doc, const QgsReadWriteContext &context ) const 77 : : { 78 : 0 : if ( mBody ) 79 : : { 80 : 0 : QDomElement bodyElement = doc.createElement( QStringLiteral( "body" ) ); 81 : 0 : bodyElement.appendChild( mBody->writeXml( doc, context ) ); 82 : 0 : element.appendChild( bodyElement ); 83 : 0 : } 84 : 0 : element.setAttribute( QStringLiteral( "bodyEnabled" ), mBodyEnabled ? QStringLiteral( "1" ) : QStringLiteral( "0" ) ); 85 : 0 : return true; 86 : 0 : } 87 : : 88 : 0 : bool QgsReportSectionLayout::readPropertiesFromElement( const QDomElement &element, const QDomDocument &doc, const QgsReadWriteContext &context ) 89 : : { 90 : 0 : const QDomElement bodyElement = element.firstChildElement( QStringLiteral( "body" ) ); 91 : 0 : if ( !bodyElement.isNull() ) 92 : : { 93 : 0 : const QDomElement bodyLayoutElem = bodyElement.firstChild().toElement(); 94 : 0 : std::unique_ptr< QgsLayout > body = std::make_unique< QgsLayout >( project() ); 95 : 0 : body->readXml( bodyLayoutElem, doc, context ); 96 : 0 : mBody = std::move( body ); 97 : 0 : } 98 : 0 : mBodyEnabled = element.attribute( QStringLiteral( "bodyEnabled" ) ).toInt(); 99 : : return true; 100 : 0 : } 101 : : 102 : : ///@endcond 103 : :