Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprojectmetadata.cpp 3 : : -------------------- 4 : : begin : March 2018 5 : : copyright : (C) 2018 by Nyall Dawson 6 : : email : nyall dot dawson 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 "qgsprojectmetadata.h" 19 : : #include <QDomNode> 20 : : #include <QDomDocument> 21 : : 22 : 0 : bool QgsProjectMetadata::readMetadataXml( const QDomElement &metadataElement ) 23 : : { 24 : 0 : QgsAbstractMetadataBase::readMetadataXml( metadataElement ); 25 : : 26 : 0 : QDomNode mnl; 27 : : 28 : : // set author 29 : 0 : mnl = metadataElement.namedItem( QStringLiteral( "author" ) ); 30 : 0 : mAuthor = mnl.toElement().text(); 31 : : 32 : : // creation datetime 33 : 0 : mnl = metadataElement.namedItem( QStringLiteral( "creation" ) ); 34 : 0 : mCreationDateTime = QDateTime::fromString( mnl.toElement().text(), Qt::ISODate ); 35 : : 36 : : return true; 37 : 0 : } 38 : : 39 : 0 : bool QgsProjectMetadata::writeMetadataXml( QDomElement &metadataElement, QDomDocument &document ) const 40 : : { 41 : 0 : QgsAbstractMetadataBase::writeMetadataXml( metadataElement, document ); 42 : : 43 : : // author 44 : 0 : QDomElement author = document.createElement( QStringLiteral( "author" ) ); 45 : 0 : QDomText authorText = document.createTextNode( mAuthor ); 46 : 0 : author.appendChild( authorText ); 47 : 0 : metadataElement.appendChild( author ); 48 : : 49 : : // creation datetime 50 : 0 : QDomElement creation = document.createElement( QStringLiteral( "creation" ) ); 51 : 0 : QDomText creationText = document.createTextNode( mCreationDateTime.toString( Qt::ISODate ) ); 52 : 0 : creation.appendChild( creationText ); 53 : 0 : metadataElement.appendChild( creation ); 54 : : 55 : : return true; 56 : 0 : } 57 : : 58 : 0 : bool QgsProjectMetadata::operator==( const QgsProjectMetadata &metadataOther ) const 59 : : { 60 : 0 : return equals( metadataOther ) && 61 : 0 : mAuthor == metadataOther.mAuthor && 62 : 0 : mCreationDateTime == metadataOther.mCreationDateTime ; 63 : : } 64 : : 65 : 0 : QgsProjectMetadata *QgsProjectMetadata::clone() const 66 : : { 67 : 0 : return new QgsProjectMetadata( *this ); 68 : 0 : } 69 : : 70 : 1 : QString QgsProjectMetadata::author() const 71 : : { 72 : 1 : return mAuthor; 73 : : } 74 : : 75 : 8 : void QgsProjectMetadata::setAuthor( const QString &author ) 76 : : { 77 : 8 : mAuthor = author; 78 : 8 : } 79 : : 80 : 1 : QDateTime QgsProjectMetadata::creationDateTime() const 81 : : { 82 : 1 : return mCreationDateTime; 83 : : } 84 : : 85 : 8 : void QgsProjectMetadata::setCreationDateTime( const QDateTime &creationDateTime ) 86 : : { 87 : 8 : mCreationDateTime = creationDateTime; 88 : 8 : }