Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprojectdisplaysettings.cpp 3 : : ----------------------------- 4 : : begin : January 2020 5 : : copyright : (C) 2020 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgsprojectdisplaysettings.h" 17 : : #include "qgis.h" 18 : : #include "qgsbearingnumericformat.h" 19 : : #include "qgsnumericformatregistry.h" 20 : : #include "qgsapplication.h" 21 : : #include "qgslocaldefaultsettings.h" 22 : : 23 : : #include <QDomElement> 24 : : 25 : 5 : QgsProjectDisplaySettings::QgsProjectDisplaySettings( QObject *parent ) 26 : 5 : : QObject( parent ) 27 : 5 : , mBearingFormat( std::make_unique< QgsBearingNumericFormat >() ) 28 : 10 : { 29 : : 30 : 5 : } 31 : : 32 : 6 : QgsProjectDisplaySettings::~QgsProjectDisplaySettings() = default; 33 : : 34 : 8 : void QgsProjectDisplaySettings::reset() 35 : : { 36 : : // inherit local default settings 37 : 8 : mBearingFormat.reset( QgsLocalDefaultSettings::bearingFormat() ); 38 : : 39 : 8 : emit bearingFormatChanged(); 40 : 8 : } 41 : : 42 : 0 : void QgsProjectDisplaySettings::setBearingFormat( QgsBearingNumericFormat *format ) 43 : : { 44 : 0 : mBearingFormat.reset( format ); 45 : 0 : emit bearingFormatChanged(); 46 : 0 : } 47 : : 48 : 0 : const QgsBearingNumericFormat *QgsProjectDisplaySettings::bearingFormat() const 49 : : { 50 : 0 : return mBearingFormat.get(); 51 : : } 52 : : 53 : 0 : bool QgsProjectDisplaySettings::readXml( const QDomElement &element, const QgsReadWriteContext &context ) 54 : : { 55 : 0 : QDomElement bearingElement = element.firstChildElement( QStringLiteral( "BearingFormat" ) ); 56 : 0 : mBearingFormat.reset( static_cast< QgsBearingNumericFormat * >( QgsApplication::numericFormatRegistry()->createFromXml( bearingElement, context ) ) ); 57 : 0 : emit bearingFormatChanged(); 58 : : 59 : : return true; 60 : 0 : } 61 : : 62 : 0 : QDomElement QgsProjectDisplaySettings::writeXml( QDomDocument &doc, const QgsReadWriteContext &context ) const 63 : : { 64 : 0 : QDomElement element = doc.createElement( QStringLiteral( "ProjectDisplaySettings" ) ); 65 : : 66 : 0 : QDomElement bearingElement = doc.createElement( QStringLiteral( "BearingFormat" ) ); 67 : 0 : mBearingFormat->writeXml( bearingElement, doc, context ); 68 : 0 : element.appendChild( bearingElement ); 69 : : 70 : 0 : return element; 71 : 0 : }