Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsprocessingmodelcomment.cpp 3 : : -------------------------- 4 : : begin : February 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 "qgsprocessingmodelcomment.h" 19 : : 20 : : ///@cond NOT_STABLE 21 : : 22 : 0 : QgsProcessingModelComment::QgsProcessingModelComment( const QString &description ) 23 : 0 : : QgsProcessingModelComponent( description ) 24 : 0 : { 25 : 0 : setSize( QSizeF( 100, 60 ) ); 26 : 0 : } 27 : : 28 : 0 : QgsProcessingModelComment *QgsProcessingModelComment::clone() const 29 : : { 30 : 0 : return new QgsProcessingModelComment( *this ); 31 : : } 32 : : 33 : 0 : QVariant QgsProcessingModelComment::toVariant() const 34 : : { 35 : 0 : QVariantMap map; 36 : 0 : saveCommonProperties( map ); 37 : 0 : return map; 38 : 0 : } 39 : : 40 : 0 : bool QgsProcessingModelComment::loadVariant( const QVariantMap &map ) 41 : : { 42 : 0 : restoreCommonProperties( map ); 43 : 0 : return true; 44 : : } 45 : : 46 : : 47 : : ///@endcond