Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsattributeeditorqmlelement.cpp - QgsAttributeEditorQmlelement 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 "qgsattributeeditorqmlelement.h" 17 : : 18 : : 19 : : 20 : 0 : QgsAttributeEditorElement *QgsAttributeEditorQmlElement::clone( QgsAttributeEditorElement *parent ) const 21 : : { 22 : 0 : QgsAttributeEditorQmlElement *element = new QgsAttributeEditorQmlElement( name(), parent ); 23 : 0 : element->setQmlCode( mQmlCode ); 24 : : 25 : 0 : return element; 26 : 0 : } 27 : : 28 : 0 : QString QgsAttributeEditorQmlElement::qmlCode() const 29 : : { 30 : 0 : return mQmlCode; 31 : : } 32 : : 33 : 0 : void QgsAttributeEditorQmlElement::setQmlCode( const QString &qmlCode ) 34 : : { 35 : 0 : mQmlCode = qmlCode; 36 : 0 : } 37 : : 38 : 0 : void QgsAttributeEditorQmlElement::saveConfiguration( QDomElement &elem, QDomDocument &doc ) const 39 : : { 40 : 0 : QDomText codeElem = doc.createTextNode( mQmlCode ); 41 : 0 : elem.appendChild( codeElem ); 42 : 0 : } 43 : : 44 : 0 : void QgsAttributeEditorQmlElement::loadConfiguration( const QDomElement &element, const QString &layerId, const QgsReadWriteContext &context, const QgsFields &fields ) 45 : : { 46 : 0 : Q_UNUSED( layerId ) 47 : 0 : Q_UNUSED( context ) 48 : 0 : Q_UNUSED( fields ) 49 : 0 : setQmlCode( element.text() ); 50 : 0 : } 51 : : 52 : 0 : QString QgsAttributeEditorQmlElement::typeIdentifier() const 53 : : { 54 : 0 : return QStringLiteral( "attributeEditorQmlElement" ); 55 : : } 56 : :