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