Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslayoutrendercontext.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 "qgslayoutrendercontext.h" 18 : : #include "qgslayout.h" 19 : : 20 : 0 : QgsLayoutRenderContext::QgsLayoutRenderContext( QgsLayout *layout ) 21 : 0 : : QObject( layout ) 22 : 0 : , mFlags( FlagAntialiasing | FlagUseAdvancedEffects ) 23 : 0 : , mLayout( layout ) 24 : 0 : { 25 : 0 : mSimplifyMethod.setSimplifyHints( QgsVectorSimplifyMethod::NoSimplification ); 26 : 0 : } 27 : : 28 : 0 : void QgsLayoutRenderContext::setFlags( const QgsLayoutRenderContext::Flags flags ) 29 : : { 30 : 0 : if ( flags == mFlags ) 31 : 0 : return; 32 : : 33 : 0 : mFlags = flags; 34 : 0 : emit flagsChanged( mFlags ); 35 : 0 : } 36 : : 37 : 0 : void QgsLayoutRenderContext::setFlag( const QgsLayoutRenderContext::Flag flag, const bool on ) 38 : : { 39 : 0 : Flags newFlags = mFlags; 40 : 0 : if ( on ) 41 : 0 : newFlags |= flag; 42 : : else 43 : 0 : newFlags &= ~flag; 44 : : 45 : 0 : if ( newFlags == mFlags ) 46 : 0 : return; 47 : : 48 : 0 : mFlags = newFlags; 49 : 0 : emit flagsChanged( mFlags ); 50 : 0 : } 51 : : 52 : 0 : QgsLayoutRenderContext::Flags QgsLayoutRenderContext::flags() const 53 : : { 54 : 0 : return mFlags; 55 : : } 56 : : 57 : 0 : bool QgsLayoutRenderContext::testFlag( const QgsLayoutRenderContext::Flag flag ) const 58 : : { 59 : 0 : return mFlags.testFlag( flag ); 60 : : } 61 : : 62 : 0 : QgsRenderContext::Flags QgsLayoutRenderContext::renderContextFlags() const 63 : : { 64 : 0 : QgsRenderContext::Flags flags = QgsRenderContext::Flags(); 65 : 0 : if ( mFlags & FlagAntialiasing ) 66 : 0 : flags = flags | QgsRenderContext::Antialiasing; 67 : 0 : if ( mFlags & FlagUseAdvancedEffects ) 68 : 0 : flags = flags | QgsRenderContext::UseAdvancedEffects; 69 : 0 : if ( mFlags & FlagLosslessImageRendering ) 70 : 0 : flags = flags | QgsRenderContext::LosslessImageRendering; 71 : : 72 : : // TODO - expose as layout context flag? 73 : 0 : flags |= QgsRenderContext::ForceVectorOutput; 74 : 0 : return flags; 75 : : } 76 : : 77 : 0 : void QgsLayoutRenderContext::setDpi( double dpi ) 78 : : { 79 : 0 : if ( qgsDoubleNear( dpi, mMeasurementConverter.dpi() ) ) 80 : 0 : return; 81 : : 82 : 0 : mMeasurementConverter.setDpi( dpi ); 83 : 0 : emit dpiChanged(); 84 : 0 : } 85 : : 86 : 0 : double QgsLayoutRenderContext::dpi() const 87 : : { 88 : 0 : return mMeasurementConverter.dpi(); 89 : : } 90 : : 91 : 0 : bool QgsLayoutRenderContext::gridVisible() const 92 : : { 93 : 0 : return mGridVisible; 94 : : } 95 : : 96 : 0 : void QgsLayoutRenderContext::setGridVisible( bool visible ) 97 : : { 98 : 0 : mGridVisible = visible; 99 : 0 : } 100 : : 101 : 0 : bool QgsLayoutRenderContext::boundingBoxesVisible() const 102 : : { 103 : 0 : return mBoundingBoxesVisible; 104 : : } 105 : : 106 : 0 : void QgsLayoutRenderContext::setBoundingBoxesVisible( bool visible ) 107 : : { 108 : 0 : mBoundingBoxesVisible = visible; 109 : 0 : } 110 : : 111 : 0 : void QgsLayoutRenderContext::setPagesVisible( bool visible ) 112 : : { 113 : 0 : mPagesVisible = visible; 114 : 0 : } 115 : : 116 : 0 : QStringList QgsLayoutRenderContext::exportThemes() const 117 : : { 118 : 0 : return mExportThemes; 119 : : } 120 : : 121 : 0 : void QgsLayoutRenderContext::setExportThemes( const QStringList &exportThemes ) 122 : : { 123 : 0 : mExportThemes = exportThemes; 124 : 0 : } 125 : : 126 : 0 : void QgsLayoutRenderContext::setPredefinedScales( const QVector<qreal> &scales ) 127 : : { 128 : 0 : if ( scales == mPredefinedScales ) 129 : 0 : return; 130 : : 131 : 0 : mPredefinedScales = scales; 132 : : // make sure the list is sorted 133 : 0 : std::sort( mPredefinedScales.begin(), mPredefinedScales.end() ); // clazy:exclude=detaching-member 134 : 0 : emit predefinedScalesChanged(); 135 : 0 : } 136 : : 137 : 0 : QgsFeatureFilterProvider *QgsLayoutRenderContext::featureFilterProvider() const 138 : : { 139 : 0 : return mFeatureFilterProvider; 140 : : } 141 : : 142 : 0 : void QgsLayoutRenderContext::setFeatureFilterProvider( QgsFeatureFilterProvider *featureFilterProvider ) 143 : : { 144 : 0 : mFeatureFilterProvider = featureFilterProvider; 145 : 0 : }