Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsmaskidprovider.cpp 3 : : --------------------- 4 : : begin : August 2019 5 : : copyright : (C) 2019 by Hugo Mercier / Oslandia 6 : : email : infos at oslandia dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgsmaskidprovider.h" 17 : : 18 : 0 : int QgsMaskIdProvider::insertLabelLayer( const QString &layerId, const QString &ruleId, const QSet<QgsSymbolLayerReference> &maskedSymbolLayers ) 19 : : { 20 : 0 : QString strId = layerId + ruleId; 21 : : // look for an existing symbol layer set 22 : 0 : int maskId = mLabelLayers.indexOf( maskedSymbolLayers ); 23 : 0 : if ( maskId != -1 ) 24 : : { 25 : : // add the layer id / rule id to the existing mask id 26 : 0 : mMaskIds[maskId].insert( strId ); 27 : 0 : return maskId; 28 : : } 29 : : // else 30 : 0 : mLabelLayers.push_back( maskedSymbolLayers ); 31 : 0 : mMaskIds.push_back( QSet<QString>() << strId ); 32 : 0 : return mMaskIds.size() - 1; 33 : 0 : } 34 : : 35 : 0 : int QgsMaskIdProvider::maskId( const QString &labelLayerId, const QString &labelRuleId ) const 36 : : { 37 : 0 : if ( labelLayerId.isEmpty() ) 38 : 0 : return -1; 39 : : 40 : 0 : QString id = labelLayerId + labelRuleId; 41 : 0 : for ( int i = 0; i < mMaskIds.size(); i++ ) 42 : : { 43 : 0 : if ( mMaskIds[i].contains( id ) ) 44 : 0 : return i; 45 : 0 : } 46 : 0 : return -1; 47 : 0 : } 48 : : 49 : 0 : int QgsMaskIdProvider::size() const 50 : : { 51 : 0 : return mMaskIds.size(); 52 : : }