Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsvaluemapfieldformatter.cpp - QgsValueMapFieldFormatter 3 : : 4 : : --------------------- 5 : : begin : 3.12.2016 6 : : copyright : (C) 2016 by Matthias Kuhn 7 : : email : matthias@opengis.ch 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 : : #include "qgsvaluemapfieldformatter.h" 17 : : 18 : : #include "qgsvectorlayer.h" 19 : : 20 : 10 : const QString QgsValueMapFieldFormatter::NULL_VALUE = QStringLiteral( "{2839923C-8B7D-419E-B84B-CA2FE9B80EC7}" ); 21 : : 22 : 5 : QgsValueMapFieldFormatter::QgsValueMapFieldFormatter() 23 : 10 : { 24 : 5 : setFlags( flags() | QgsFieldFormatter::CanProvideAvailableValues ); 25 : 5 : } 26 : : 27 : 5 : QString QgsValueMapFieldFormatter::id() const 28 : : { 29 : 10 : return QStringLiteral( "ValueMap" ); 30 : : } 31 : : 32 : 0 : QString QgsValueMapFieldFormatter::representValue( QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value ) const 33 : : { 34 : 0 : Q_UNUSED( cache ) 35 : : 36 : 0 : QString valueInternalText; 37 : 0 : if ( value.isNull() ) 38 : 0 : valueInternalText = NULL_VALUE; 39 : : else 40 : 0 : valueInternalText = value.toString(); 41 : : 42 : 0 : const QVariant v = config.value( QStringLiteral( "map" ) ); 43 : 0 : const QVariantList list = v.toList(); 44 : 0 : if ( !list.empty() ) 45 : : { 46 : 0 : for ( const QVariant &item : list ) 47 : : { 48 : 0 : const QVariantMap map = item.toMap(); 49 : : // no built-in Qt way to check if a map contains a value, so iterate through each value 50 : 0 : for ( auto it = map.constBegin(); it != map.constEnd(); ++it ) 51 : : { 52 : 0 : if ( it.value().toString() == valueInternalText ) 53 : 0 : return it.key(); 54 : 0 : } 55 : 0 : } 56 : 0 : return QStringLiteral( "(%1)" ).arg( layer->fields().at( fieldIndex ).displayString( value ) ); 57 : : } 58 : : else 59 : : { 60 : : // old style config 61 : 0 : QVariantMap map = v.toMap(); 62 : 0 : return map.key( valueInternalText, QVariant( QStringLiteral( "(%1)" ).arg( layer->fields().at( fieldIndex ).displayString( value ) ) ).toString() ); 63 : 0 : } 64 : 0 : } 65 : : 66 : 0 : QVariant QgsValueMapFieldFormatter::sortValue( QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value ) const 67 : : { 68 : 0 : return representValue( layer, fieldIndex, config, cache, value ); 69 : 0 : } 70 : : 71 : 0 : QVariantList QgsValueMapFieldFormatter::availableValues( const QVariantMap &config, int countLimit, const QgsFieldFormatterContext &context ) const 72 : : { 73 : 0 : Q_UNUSED( context ) 74 : : 75 : 0 : QVariantList values; 76 : 0 : const QList<QVariant> valueList = config.value( QStringLiteral( "map" ) ).toList(); 77 : 0 : for ( const QVariant &item : valueList ) 78 : : { 79 : 0 : values.append( item.toMap().constBegin().value() ); 80 : 0 : if ( values.count() == countLimit ) 81 : 0 : break; 82 : : } 83 : : 84 : 0 : return values; 85 : 0 : }