Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslayoutreportcontext.cpp 3 : : -------------------- 4 : : begin : July 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 "qgslayoutreportcontext.h" 18 : : #include "qgsfeature.h" 19 : : #include "qgslayout.h" 20 : : #include "qgsvectorlayer.h" 21 : : 22 : 0 : QgsLayoutReportContext::QgsLayoutReportContext( QgsLayout *layout ) 23 : 0 : : QObject( layout ) 24 : 0 : , mLayout( layout ) 25 : 0 : {} 26 : : 27 : 0 : void QgsLayoutReportContext::setFeature( const QgsFeature &feature ) 28 : : { 29 : 0 : mFeature = feature; 30 : 0 : mGeometryCache.clear(); 31 : 0 : emit changed(); 32 : 0 : } 33 : : 34 : 0 : QgsGeometry QgsLayoutReportContext::currentGeometry( const QgsCoordinateReferenceSystem &crs ) const 35 : : { 36 : 0 : if ( !crs.isValid() ) 37 : : { 38 : : // no projection, return the native geometry 39 : 0 : return mFeature.geometry(); 40 : : } 41 : : 42 : 0 : if ( !mLayer || !mFeature.isValid() || !mFeature.hasGeometry() ) 43 : : { 44 : 0 : return QgsGeometry(); 45 : : } 46 : : 47 : 0 : if ( mLayer->crs() == crs ) 48 : : { 49 : : // no projection, return the native geometry 50 : 0 : return mFeature.geometry(); 51 : : } 52 : : 53 : 0 : auto it = mGeometryCache.constFind( crs.srsid() ); 54 : 0 : if ( it != mGeometryCache.constEnd() ) 55 : : { 56 : : // we have it in cache, return it 57 : 0 : return it.value(); 58 : : } 59 : : 60 : 0 : QgsGeometry transformed = mFeature.geometry(); 61 : 0 : transformed.transform( QgsCoordinateTransform( mLayer->crs(), crs, mLayout->project() ) ); 62 : 0 : mGeometryCache[crs.srsid()] = transformed; 63 : 0 : return transformed; 64 : 0 : } 65 : : 66 : 0 : QgsVectorLayer *QgsLayoutReportContext::layer() const 67 : : { 68 : 0 : return mLayer; 69 : : } 70 : : 71 : 0 : void QgsLayoutReportContext::setLayer( QgsVectorLayer *layer ) 72 : : { 73 : 0 : mLayer = layer; 74 : 0 : emit layerChanged( layer ); 75 : 0 : emit changed(); 76 : 0 : } 77 : : 78 : 0 : void QgsLayoutReportContext::setPredefinedScales( const QVector<qreal> &scales ) 79 : : { 80 : 0 : mPredefinedScales = scales; 81 : : // make sure the list is sorted 82 : 0 : std::sort( mPredefinedScales.begin(), mPredefinedScales.end() ); // clazy:exclude=detaching-member 83 : 0 : }