Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsattributeeditorfield.cpp - QgsAttributeEditorField 3 : : 4 : : --------------------- 5 : : begin : 12.01.2021 6 : : copyright : (C) 2021 by Denis Rouzaud 7 : : email : denis@opengis.ch 8 : : *************************************************************************** 9 : : * * 10 : : * This program is free software; you can redistribute it and/or modify * 11 : : * it under the terms of the GNU General Public License as published by * 12 : : * the Free Software Foundation; either version 2 of the License, or * 13 : : * (at your option) any later version. * 14 : : * * 15 : : ***************************************************************************/ 16 : : #include "qgsattributeeditorfield.h" 17 : : 18 : 0 : QgsAttributeEditorElement *QgsAttributeEditorField::clone( QgsAttributeEditorElement *parent ) const 19 : : { 20 : 0 : QgsAttributeEditorField *element = new QgsAttributeEditorField( name(), mIdx, parent ); 21 : 0 : return element; 22 : 0 : } 23 : : 24 : : 25 : 0 : void QgsAttributeEditorField::saveConfiguration( QDomElement &elem, QDomDocument &doc ) const 26 : : { 27 : 0 : Q_UNUSED( doc ) 28 : 0 : elem.setAttribute( QStringLiteral( "index" ), mIdx ); 29 : 0 : } 30 : : 31 : 0 : void QgsAttributeEditorField::loadConfiguration( const QDomElement &element, const QString &layerId, const QgsReadWriteContext &context, const QgsFields &fields ) 32 : : { 33 : 0 : Q_UNUSED( element ) 34 : 0 : Q_UNUSED( layerId ) 35 : 0 : Q_UNUSED( context ) 36 : 0 : Q_UNUSED( fields ) 37 : 0 : } 38 : : 39 : 0 : QString QgsAttributeEditorField::typeIdentifier() const 40 : : { 41 : 0 : return QStringLiteral( "attributeEditorField" ); 42 : : }