Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsabstract3dsymbol.cpp 3 : : -------------------------------------- 4 : : Date : July 2017 5 : : Copyright : (C) 2017 by Martin Dobias 6 : : Email : wonder dot sk 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 "qgsabstract3dsymbol.h" 17 : : 18 : : 19 : 5 : QgsPropertiesDefinition QgsAbstract3DSymbol::sPropertyDefinitions; 20 : : 21 : : 22 : 0 : QList<QgsWkbTypes::GeometryType> QgsAbstract3DSymbol::compatibleGeometryTypes() const 23 : : { 24 : 0 : return QList< QgsWkbTypes::GeometryType >(); 25 : : } 26 : : 27 : 0 : const QgsPropertiesDefinition &QgsAbstract3DSymbol::propertyDefinitions() 28 : : { 29 : 0 : initPropertyDefinitions(); 30 : 0 : return sPropertyDefinitions; 31 : : } 32 : : 33 : 0 : void QgsAbstract3DSymbol::copyBaseSettings( QgsAbstract3DSymbol *destination ) const 34 : : { 35 : 0 : destination->mDataDefinedProperties = mDataDefinedProperties; 36 : 0 : } 37 : : 38 : 0 : void QgsAbstract3DSymbol::initPropertyDefinitions() 39 : : { 40 : 0 : if ( !sPropertyDefinitions.isEmpty() ) 41 : 0 : return; 42 : : 43 : 0 : QString origin = QStringLiteral( "symbol3d" ); 44 : : 45 : 0 : sPropertyDefinitions = QgsPropertiesDefinition 46 : 0 : { 47 : 0 : { PropertyHeight, QgsPropertyDefinition( "height", QObject::tr( "Height" ), QgsPropertyDefinition::Double, origin ) }, 48 : 0 : { PropertyExtrusionHeight, QgsPropertyDefinition( "extrusionHeight", QObject::tr( "ExtrusionHeight" ), QgsPropertyDefinition::DoublePositive, origin ) }, 49 : : }; 50 : : 51 : 0 : } 52 : : 53 : 0 : bool QgsAbstract3DSymbol::exportGeometries( Qgs3DSceneExporter *exporter, Qt3DCore::QEntity *entity, const QString &objectNamePrefix ) const 54 : : { 55 : : Q_UNUSED( exporter ); 56 : : Q_UNUSED( entity ); 57 : 0 : Q_UNUSED( objectNamePrefix ); 58 : 0 : return false; 59 : : }