QGIS API Documentation 3.99.0-Master (d270888f95f)
Loading...
Searching...
No Matches
qgskeyvaluefieldformatter.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgskeyvaluefieldformatter.cpp - QgsKeyValueFieldFormatter
3
4 ---------------------
5 begin : 3.12.2016
6 copyright : (C) 2016 by Matthias Kuhn
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 ***************************************************************************/
17
18#include "qgsapplication.h"
19#include "qgsvariantutils.h"
20
21#include <QSettings>
22#include <QString>
23
24using namespace Qt::StringLiterals;
25
27{
28 return u"KeyValue"_s;
29}
30
31QString QgsKeyValueFieldFormatter::representValue( QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value ) const
32{
33 Q_UNUSED( layer )
34 Q_UNUSED( fieldIndex )
35 Q_UNUSED( config )
36 Q_UNUSED( cache )
37
38 if ( QgsVariantUtils::isNull( value ) )
39 {
41 }
42
43 QString result;
44 const QVariantMap map = value.toMap();
45 for ( QVariantMap::const_iterator i = map.constBegin(); i != map.constEnd(); ++i )
46 {
47 if ( !result.isEmpty() )
48 result.append( ", " );
49 result.append( i.key() ).append( ": " ).append( i.value().toString() );
50 }
51 return result;
52}
static QString nullRepresentation()
Returns the string used to represent the value NULL throughout QGIS.
QString id() const override
Returns a unique id for this field formatter.
QString representValue(QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value) const override
Create a pretty String representation of the value.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
Represents a vector layer which manages a vector based dataset.