Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgslocaldefaultsettings.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 "qgslocaldefaultsettings.h" 17 : : #include "qgsbearingnumericformat.h" 18 : : #include "qgis.h" 19 : : #include "qgsreadwritecontext.h" 20 : : #include "qgssettings.h" 21 : : #include "qgsapplication.h" 22 : : #include "qgsnumericformatregistry.h" 23 : : 24 : : #include <memory> 25 : : 26 : 0 : void QgsLocalDefaultSettings::setBearingFormat( const QgsBearingNumericFormat *format ) 27 : : { 28 : 0 : const QVariantMap config = format->configuration( QgsReadWriteContext() ); 29 : : 30 : 0 : QSettings s; 31 : 0 : s.beginGroup( QStringLiteral( "defaults/bearing_format" ) ); 32 : 0 : for ( auto it = config.constBegin(); it != config.constEnd(); ++it ) 33 : : { 34 : 0 : s.setValue( it.key(), it.value() ); 35 : 0 : } 36 : 0 : s.endGroup(); 37 : 0 : } 38 : : 39 : 8 : QgsBearingNumericFormat *QgsLocalDefaultSettings::bearingFormat() 40 : : { 41 : 8 : QVariantMap config; 42 : 8 : QSettings s; 43 : 16 : s.beginGroup( QStringLiteral( "defaults/bearing_format" ) ); 44 : 8 : const QStringList keys = s.childKeys(); 45 : 8 : for ( const QString &key : keys ) 46 : : { 47 : 0 : const QVariant value = s.value( key ); 48 : 0 : config.insert( key, value ); 49 : 0 : } 50 : 8 : s.endGroup(); 51 : : 52 : 8 : std::unique_ptr< QgsBearingNumericFormat > res = std::make_unique< QgsBearingNumericFormat >(); 53 : 8 : res->setConfiguration( config, QgsReadWriteContext() ); 54 : 8 : return res.release(); 55 : 8 : }