Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsmeshtimesettings.cpp 3 : : -- --------------------- 4 : : begin : March 2019 5 : : copyright : (C) 2019 by Peter Petrik 6 : : email : zilolv at gmail dot com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : 18 : : #include "qgsmeshtimesettings.h" 19 : : 20 : 0 : QgsMeshTimeSettings::QgsMeshTimeSettings() = default; 21 : : 22 : : 23 : 0 : QDomElement QgsMeshTimeSettings::writeXml( QDomDocument &doc, const QgsReadWriteContext &context ) const 24 : : { 25 : 0 : Q_UNUSED( context ) 26 : 0 : QDomElement elem = doc.createElement( QStringLiteral( "mesh-time-settings" ) ); 27 : 0 : elem.setAttribute( QStringLiteral( "relative-time-format" ), mRelativeTimeFormat ); 28 : 0 : elem.setAttribute( QStringLiteral( "absolute-time-format" ), mAbsoluteTimeFormat ); 29 : 0 : return elem; 30 : 0 : } 31 : : 32 : 0 : void QgsMeshTimeSettings::readXml( const QDomElement &elem, const QgsReadWriteContext &context ) 33 : : { 34 : 0 : Q_UNUSED( context ) 35 : 0 : mRelativeTimeFormat = elem.attribute( QStringLiteral( "relative-time-format" ) ); 36 : 0 : mAbsoluteTimeFormat = elem.attribute( QStringLiteral( "absolute-time-format" ) ); 37 : 0 : } 38 : : 39 : 0 : QString QgsMeshTimeSettings::relativeTimeFormat() const 40 : : { 41 : 0 : return mRelativeTimeFormat; 42 : : } 43 : : 44 : 0 : void QgsMeshTimeSettings::setRelativeTimeFormat( const QString &relativeTimeFormat ) 45 : : { 46 : 0 : mRelativeTimeFormat = relativeTimeFormat; 47 : 0 : } 48 : : 49 : 0 : QString QgsMeshTimeSettings::absoluteTimeFormat() const 50 : : { 51 : 0 : return mAbsoluteTimeFormat; 52 : : } 53 : : 54 : 0 : void QgsMeshTimeSettings::setAbsoluteTimeFormat( const QString &absoluteTimeFormat ) 55 : : { 56 : 0 : mAbsoluteTimeFormat = absoluteTimeFormat; 57 : 0 : }