Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsdatetimefieldformatter.cpp - QgsDateTimeFieldFormatter 3 : : 4 : : --------------------- 5 : : begin : 2.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 "qgsdatetimefieldformatter.h" 17 : : 18 : : #include "qgssettings.h" 19 : : #include "qgsfield.h" 20 : : #include "qgsvectorlayer.h" 21 : : #include "qgsapplication.h" 22 : : 23 : 10 : const QString QgsDateTimeFieldFormatter::DATE_FORMAT = QStringLiteral( "yyyy-MM-dd" ); 24 : 10 : const QString QgsDateTimeFieldFormatter::TIME_FORMAT = QStringLiteral( "HH:mm:ss" ); 25 : 10 : const QString QgsDateTimeFieldFormatter::DATETIME_FORMAT = QStringLiteral( "yyyy-MM-dd HH:mm:ss" ); 26 : : // we need to use Qt::ISODate rather than a string format definition in QDate::fromString 27 : 10 : const QString QgsDateTimeFieldFormatter::QT_ISO_FORMAT = QStringLiteral( "Qt ISO Date" ); 28 : : // but QDateTimeEdit::setDisplayFormat only accepts string formats, so use with time zone by default 29 : 10 : const QString QgsDateTimeFieldFormatter::DISPLAY_FOR_ISO_FORMAT = QStringLiteral( "yyyy-MM-dd HH:mm:ss+t" ); 30 : : 31 : : 32 : 5 : QString QgsDateTimeFieldFormatter::id() const 33 : : { 34 : 10 : return QStringLiteral( "DateTime" ); 35 : : } 36 : : 37 : 0 : QString QgsDateTimeFieldFormatter::representValue( QgsVectorLayer *layer, int fieldIndex, const QVariantMap &config, const QVariant &cache, const QVariant &value ) const 38 : : { 39 : 0 : Q_UNUSED( cache ) 40 : : 41 : 0 : QString result; 42 : : 43 : 0 : if ( value.isNull() ) 44 : : { 45 : 0 : return QgsApplication::nullRepresentation(); 46 : : } 47 : : 48 : 0 : const QgsField field = layer->fields().at( fieldIndex ); 49 : 0 : const bool fieldIsoFormat = config.value( QStringLiteral( "field_iso_format" ), false ).toBool(); 50 : 0 : const QString fieldFormat = config.value( QStringLiteral( "field_format" ), defaultFormat( field.type() ) ).toString(); 51 : 0 : const QString displayFormat = config.value( QStringLiteral( "display_format" ), defaultFormat( field.type() ) ).toString(); 52 : : 53 : 0 : QDateTime date; 54 : 0 : if ( static_cast<QMetaType::Type>( value.type() ) == QMetaType::QDate || static_cast<QMetaType::Type>( value.type() ) == QMetaType::QDateTime ) 55 : : { 56 : 0 : date = value.toDateTime(); 57 : 0 : } 58 : : else 59 : : { 60 : 0 : if ( fieldIsoFormat ) 61 : : { 62 : 0 : date = QDateTime::fromString( value.toString(), Qt::ISODate ); 63 : 0 : } 64 : : else 65 : : { 66 : 0 : date = QDateTime::fromString( value.toString(), fieldFormat ); 67 : : } 68 : : } 69 : : 70 : 0 : if ( date.isValid() ) 71 : : { 72 : 0 : result = date.toString( displayFormat ); 73 : 0 : } 74 : : else 75 : : { 76 : 0 : result = value.toString(); 77 : : } 78 : : 79 : 0 : return result; 80 : 0 : } 81 : : 82 : 0 : QString QgsDateTimeFieldFormatter::defaultFormat( QVariant::Type type ) 83 : : { 84 : 0 : switch ( type ) 85 : : { 86 : : case QVariant::DateTime: 87 : 0 : return QgsDateTimeFieldFormatter::DATETIME_FORMAT; 88 : : break; 89 : : case QVariant::Time: 90 : 0 : return QgsDateTimeFieldFormatter::TIME_FORMAT; 91 : : break; 92 : : default: 93 : 0 : return QgsDateTimeFieldFormatter::DATE_FORMAT; 94 : : } 95 : 0 : }