Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprocessingmodelgroupbox.cpp 3 : : -------------------------- 4 : : begin : March 2020 5 : : copyright : (C) 2020 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 "qgsprocessingmodelgroupbox.h" 19 : : #include <QUuid> 20 : : 21 : : ///@cond NOT_STABLE 22 : : 23 : 0 : QgsProcessingModelGroupBox::QgsProcessingModelGroupBox( const QString &description ) 24 : 0 : : QgsProcessingModelComponent( description ) 25 : 0 : , mUuid( QUuid::createUuid().toString() ) 26 : 0 : { 27 : 0 : setSize( QSizeF( 400, 360 ) ); 28 : 0 : } 29 : : 30 : 0 : QgsProcessingModelGroupBox *QgsProcessingModelGroupBox::clone() const 31 : : { 32 : 0 : return new QgsProcessingModelGroupBox( *this ); 33 : : } 34 : : 35 : 0 : QVariant QgsProcessingModelGroupBox::toVariant() const 36 : : { 37 : 0 : QVariantMap map; 38 : 0 : map.insert( QStringLiteral( "uuid" ), mUuid ); 39 : 0 : saveCommonProperties( map ); 40 : 0 : return map; 41 : 0 : } 42 : : 43 : 0 : bool QgsProcessingModelGroupBox::loadVariant( const QVariantMap &map, bool ignoreUuid ) 44 : : { 45 : 0 : restoreCommonProperties( map ); 46 : 0 : if ( !ignoreUuid ) 47 : 0 : mUuid = map.value( QStringLiteral( "uuid" ) ).toString(); 48 : 0 : return true; 49 : 0 : } 50 : : 51 : 0 : QString QgsProcessingModelGroupBox::uuid() const 52 : : { 53 : 0 : return mUuid; 54 : : } 55 : : 56 : : 57 : : ///@endcond