22using namespace Qt::StringLiterals;
40 if ( !input.isValid() )
50 if ( input.userType() == QMetaType::Type::QString )
52 if ( input.toString().isEmpty() )
61 else if ( input.userType() == QMetaType::Type::QVariantList )
63 if ( input.toList().isEmpty() )
66 const QVariantList layerList = input.toList();
67 for (
const QVariant &variantLayer : layerList )
78 if ( variantLayer.userType() == QMetaType::Type::QString )
87 else if ( variantLayer.userType() == QMetaType::Type::QVariantMap )
89 const QVariantMap layerMap = variantLayer.toMap();
91 if ( !layerMap.contains( u
"layer"_s )
92 && !layerMap.contains( u
"attributeIndex"_s )
93 && !layerMap.contains( u
"overriddenLayerName"_s )
94 && !layerMap.contains( u
"buildDataDefinedBlocks"_s )
95 && !layerMap.contains( u
"dataDefinedBlocksMaximumNumberOfClasses"_s ) )
102 if ( !vectorLayer || !vectorLayer->
isSpatial() )
105 if ( layerMap.value( u
"attributeIndex"_s ).toInt() >= vectorLayer->
fields().
count() )
115 else if ( input.userType() == QMetaType::Type::QStringList )
117 const auto constToStringList = input.toStringList();
118 if ( constToStringList.isEmpty() )
124 for (
const QString &v : constToStringList )
144 const QList<QgsDxfExport::DxfLayer> layers =
parameterAsLayers( value, context );
147 QStringList layerDefParts;
150 if ( layer.layerOutputAttributeIndex() >= -1 )
159 const QString layerDef = u
"{%1}"_s.arg( layerDefParts.join(
',' ) );
162 return parts.join(
',' ).prepend(
'[' ).append(
']' );
167 switch ( outputType )
190 QList<QgsDxfExport::DxfLayer> layers;
192 if (
QgsVectorLayer *layer = qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( layersVariant ) ) )
197 if ( layersVariant.userType() == QMetaType::Type::QString )
200 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
202 else if ( layersVariant.userType() == QMetaType::Type::QVariantList )
204 const QVariantList layersVariantList = layersVariant.toList();
205 for (
const QVariant &layerItem : layersVariantList )
207 if ( layerItem.userType() == QMetaType::Type::QVariantMap )
209 const QVariantMap layerVariantMap = layerItem.toMap();
212 else if ( layerItem.userType() == QMetaType::Type::QString )
215 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
219 else if ( layersVariant.userType() == QMetaType::Type::QStringList )
221 const auto layersStringList = layersVariant.toStringList();
222 for (
const QString &layerItem : layersStringList )
225 layers << QgsDxfExport::DxfLayer( static_cast<QgsVectorLayer *>( mapLayer ) );
234 const QVariant layerVariant = layerVariantMap[u
"layer"_s];
237 if ( ( inputLayer = qobject_cast< QgsVectorLayer * >( qvariant_cast<QObject *>( layerVariant ) ) ) )
252 layerVariantMap[u
"attributeIndex"_s].toInt(),
253 layerVariantMap[u
"buildDataDefinedBlocks"_s].toBool(),
254 layerVariantMap[u
"dataDefinedBlocksMaximumNumberOfClasses"_s].toInt(),
255 layerVariantMap[u
"overriddenLayerName"_s].toString()
263 if ( !layer.
layer() )
266 vm[u
"layer"_s] = layer.
layer()->
id();
@ Optional
Parameter is optional.
Base class for all map layer types.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
Contains information about the context in which a processing algorithm is executed.
QString valueAsStringPrivate(const QVariant &value, QgsProcessingContext &context, bool &ok, ValueAsStringFlags flags) const
Internal method for evaluating values as string.
Qgis::ProcessingParameterFlags mFlags
Parameter flags.
@ AllowMapLayerValues
Enable map layer value handling.
QString description() const
Returns the description for the parameter.
QgsProcessingParameterDefinition(const QString &name, const QString &description=QString(), const QVariant &defaultValue=QVariant(), bool optional=false, const QString &help=QString())
Constructor for QgsProcessingParameterDefinition.
QString name() const
Returns the name of the parameter.
QVariant valueAsJsonObjectPrivate(const QVariant &value, QgsProcessingContext &context, ValueAsStringFlags flags) const
Internal method for evaluating values as JSON objects.
static QVariantMap layerAsVariantMap(const QgsDxfExport::DxfLayer &layer)
Converts a single input layer to QVariant representation (a QVariantMap).
QgsProcessingParameterDefinition * clone() const override
Creates a clone of the parameter definition.
QString valueAsPythonString(const QVariant &value, QgsProcessingContext &context) const override
Returns a string version of the parameter input value, which is suitable for use as an input paramete...
QString asPythonString(QgsProcessing::PythonOutputType outputType=QgsProcessing::PythonOutputType::PythonQgsProcessingAlgorithmSubclass) const override
Returns the parameter definition as a Python command which can be used within a Python Processing scr...
QgsProcessingParameterDxfLayers(const QString &name, const QString &description=QString())
Constructor for QgsProcessingParameterDxfLayers.
QString type() const override
Unique parameter type name.
bool checkValueIsAcceptable(const QVariant &input, QgsProcessingContext *context=nullptr) const override
Checks whether the specified input value is acceptable for the parameter.
static QgsDxfExport::DxfLayer variantMapAsLayer(const QVariantMap &layerVariantMap, QgsProcessingContext &context)
Converts a QVariant value (a QVariantMap) to a single input layer.
static QString typeName()
Returns the type name for the parameter class.
QString valueAsString(const QVariant &value, QgsProcessingContext &context, bool &ok) const override
Returns a string version of the parameter input value (if possible).
static QList< QgsDxfExport::DxfLayer > parameterAsLayers(const QVariant &layersVariant, QgsProcessingContext &context)
Converts a QVariant value (a QVariantList) to a list of input layers.
QVariant valueAsJsonObject(const QVariant &value, QgsProcessingContext &context) const override
Returns a version of the parameter input value, which is suitable for use in a JSON object.
static QString stringToPythonLiteral(const QString &string)
Converts a string to a Python string literal.
static QString normalizeLayerSource(const QString &source)
Normalizes a layer source string for safe comparison across different operating system environments.
static QString variantToPythonLiteral(const QVariant &value)
Converts a variant to a Python literal.
static QgsMapLayer * mapLayerFromString(const QString &string, QgsProcessingContext &context, bool allowLoadingNewLayers=true, QgsProcessingUtils::LayerHint typeHint=QgsProcessingUtils::LayerHint::UnknownType, QgsProcessing::LayerOptionsFlags flags=QgsProcessing::LayerOptionsFlags())
Interprets a string as a map layer within the supplied context.
PythonOutputType
Available Python output types.
@ PythonQgsProcessingAlgorithmSubclass
Full Python QgsProcessingAlgorithm subclass.
Represents a vector layer which manages a vector based dataset.
bool isSpatial() const final
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
Encapsulates the properties of a vector layer containing features that will be exported to the DXF fi...
QString overriddenName() const
Returns the overridden layer name to be used in the exported DXF.
bool buildDataDefinedBlocks() const
Returns true if data defined point block symbols should be created.
QgsVectorLayer * layer() const
Returns the source vector layer.
int dataDefinedBlocksMaximumNumberOfClasses() const
Returns the maximum number of data defined symbol classes for which blocks are created.
int layerOutputAttributeIndex() const
Returns the attribute index used to split the source layer's features into multiple exported DXF laye...