QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsmesh3dsymbol.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmesh3dsymbol.cpp
3  -------------------
4  Date : January 2019
5  Copyright : (C) 2019 by Peter Petrik
6  Email : zilolv at gmail dot com
7  ***************************************************************************
8  * *
9  * This program is free software; you can redistribute it and/or modify *
10  * it under the terms of the GNU General Public License as published by *
11  * the Free Software Foundation; either version 2 of the License, or *
12  * (at your option) any later version. *
13  * *
14  ***************************************************************************/
15 
16 #include "qgsmesh3dsymbol.h"
17 
18 #include "qgs3dutils.h"
19 
21 {
22  return new QgsMesh3DSymbol( *this );
23 }
24 
25 void QgsMesh3DSymbol::writeXml( QDomElement &elem, const QgsReadWriteContext &context ) const
26 {
27  Q_UNUSED( context )
28 
29  QDomDocument doc = elem.ownerDocument();
30 
31  QDomElement elemDataProperties = doc.createElement( QStringLiteral( "data" ) );
32  elemDataProperties.setAttribute( QStringLiteral( "alt-clamping" ), Qgs3DUtils::altClampingToString( mAltClamping ) );
33  elemDataProperties.setAttribute( QStringLiteral( "height" ), mHeight );
34  elemDataProperties.setAttribute( QStringLiteral( "add-back-faces" ), mAddBackFaces ? QStringLiteral( "1" ) : QStringLiteral( "0" ) );
35  elem.appendChild( elemDataProperties );
36 
37  QDomElement elemMaterial = doc.createElement( QStringLiteral( "material" ) );
38  mMaterial.writeXml( elemMaterial );
39  elem.appendChild( elemMaterial );
40 
41  QDomElement elemDDP = doc.createElement( QStringLiteral( "data-defined-properties" ) );
43  elem.appendChild( elemDDP );
44 }
45 
46 void QgsMesh3DSymbol::readXml( const QDomElement &elem, const QgsReadWriteContext &context )
47 {
48  Q_UNUSED( context )
49 
50  QDomElement elemDataProperties = elem.firstChildElement( QStringLiteral( "data" ) );
51  mAltClamping = Qgs3DUtils::altClampingFromString( elemDataProperties.attribute( QStringLiteral( "alt-clamping" ) ) );
52  mHeight = elemDataProperties.attribute( QStringLiteral( "height" ) ).toFloat();
53  mAddBackFaces = elemDataProperties.attribute( QStringLiteral( "add-back-faces" ) ).toInt();
54 
55  QDomElement elemMaterial = elem.firstChildElement( QStringLiteral( "material" ) );
56  mMaterial.readXml( elemMaterial );
57 
58  QDomElement elemDDP = elem.firstChildElement( QStringLiteral( "data-defined-properties" ) );
59  if ( !elemDDP.isNull() )
61 }
The class is used as a container of context for various read/write operations on other objects...
static QString altClampingToString(Qgs3DTypes::AltitudeClamping altClamp)
Converts a value from AltitudeClamping enum to a string.
Definition: qgs3dutils.cpp:184
QgsPropertyCollection mDataDefinedProperties
virtual bool readXml(const QDomElement &collectionElem, const QgsPropertiesDefinition &definitions)
Reads property collection state from an XML element.
QgsMesh3DSymbol()=default
Constructor for QgsMesh3DSymbol.
static Qgs3DTypes::AltitudeClamping altClampingFromString(const QString &str)
Converts a string to a value from AltitudeClamping enum.
Definition: qgs3dutils.cpp:196
3 Abstract base class for 3D symbols that are used by VectorLayer3DRenderer objects.
void readXml(const QDomElement &elem)
Reads settings from a DOM element.
static const QgsPropertiesDefinition & propertyDefinitions()
Returns the symbol layer property definitions.
QgsAbstract3DSymbol * clone() const override
Returns a new instance of the symbol with the same settings.
void writeXml(QDomElement &elem) const
Writes settings to a DOM element.
void writeXml(QDomElement &elem, const QgsReadWriteContext &context) const override
Writes symbol configuration to the given DOM element.
virtual bool writeXml(QDomElement &collectionElem, const QgsPropertiesDefinition &definitions) const
Writes the current state of the property collection into an XML element.
void readXml(const QDomElement &elem, const QgsReadWriteContext &context) override
Reads symbol configuration from the given DOM element.