23using namespace Qt::StringLiterals;
27QString QgsDxfExportAlgorithm::name()
const
29 return u
"dxfexport"_s;
32QString QgsDxfExportAlgorithm::displayName()
const
34 return QObject::tr(
"Export layers to DXF" );
37QStringList QgsDxfExportAlgorithm::tags()
const
39 return QObject::tr(
"layer,export,dxf,cad,dwg" ).split(
',' );
42QString QgsDxfExportAlgorithm::group()
const
44 return QObject::tr(
"Vector general" );
47QString QgsDxfExportAlgorithm::groupId()
const
49 return u
"vectorgeneral"_s;
52QString QgsDxfExportAlgorithm::shortHelpString()
const
55 "Exports layers to a DXF file. For each layer, you can choose a field whose values are used to split features in generated destination layers in the DXF output.\n\n"
56 "If no field is chosen, you can still override the output layer name by directly entering a new output layer name in the Configure Layer panel or by preferring layer title (set in layer "
57 "properties) to layer name."
61QString QgsDxfExportAlgorithm::shortDescription()
const
63 return QObject::tr(
"Exports layers to a DXF file." );
66QgsDxfExportAlgorithm *QgsDxfExportAlgorithm::createInstance()
const
68 return new QgsDxfExportAlgorithm();
71void QgsDxfExportAlgorithm::initAlgorithm(
const QVariantMap & )
75 new QgsProcessingParameterEnum( u
"SYMBOLOGY_MODE"_s, QObject::tr(
"Symbology mode" ), QStringList() << QObject::tr(
"No Symbology" ) << QObject::tr(
"Feature Symbology" ) << QObject::tr(
"Symbol Layer Symbology" ),
false, 0 )
78 auto mapThemeParam = std::make_unique<QgsProcessingParameterMapTheme>( u
"MAP_THEME"_s, QObject::tr(
"Map theme" ), QVariant(),
true );
79 mapThemeParam->setHelp( QObject::tr(
"Match layer styling to the provided map theme" ) );
80 addParameter( mapThemeParam.release() );
82 addParameter(
new QgsProcessingParameterEnum( u
"ENCODING"_s, QObject::tr(
"Encoding" ), encodings,
false, encodings.at( 0 ),
false,
true ) );
84 auto extentParam = std::make_unique<QgsProcessingParameterExtent>( u
"EXTENT"_s, QObject::tr(
"Extent" ), QVariant(),
true );
85 extentParam->setHelp( QObject::tr(
"Limit exported features to those with geometries intersecting the provided extent" ) );
86 addParameter( extentParam.release() );
88 auto useTitleParam = std::make_unique<QgsProcessingParameterBoolean>( u
"USE_LAYER_TITLE"_s, QObject::tr(
"Use layer title as name" ),
false );
89 useTitleParam->setHelp( QObject::tr(
"If no attribute is chosen and layer name is not being overridden, prefer layer title (set in layer properties) to layer name" ) );
90 addParameter( useTitleParam.release() );
100 const QString mapTheme = parameterAsString( parameters, u
"MAP_THEME"_s, context );
116 QList<QgsVectorLayer *> mapLayers;
118 const QVariant layersVariant = parameters.value( parameterDefinition( u
"LAYERS"_s )->name() );
122 if ( !layer.layer() )
125 mapLayers.push_back( layer.layer() );
129 const double symbologyScale = parameterAsDouble( parameters, u
"SYMBOLOGY_SCALE"_s, context );
130 const QString encoding = parameterAsEnumString( parameters, u
"ENCODING"_s, context );
132 const bool selectedFeaturesOnly = parameterAsBool( parameters, u
"SELECTED_FEATURES_ONLY"_s, context );
133 const bool useLayerTitle = parameterAsBool( parameters, u
"USE_LAYER_TITLE"_s, context );
134 const bool useMText = parameterAsBool( parameters, u
"MTEXT"_s, context );
135 const bool force2D = parameterAsBool( parameters, u
"FORCE_2D"_s, context );
136 const bool exportLinesWithZeroWidth = parameterAsBool( parameters, u
"EXPORT_LINES_WITH_ZERO_WIDTH"_s, context );
139 if ( parameters.value( u
"EXTENT"_s ).isValid() )
141 extent = parameterAsExtent( parameters, u
"EXTENT"_s, context, crs );
144 const QString outputFile = parameterAsFileOutput( parameters, u
"OUTPUT"_s, context );
164 if ( selectedFeaturesOnly )
166 if ( exportLinesWithZeroWidth )
170 QFile dxfFile( outputFile );
171 switch ( dxfExport.
writeToFile( &dxfFile, encoding ) )
178 feedback->
pushInfo( QObject::tr(
"DXF export completed" ) );
195 outputs.insert( u
"OUTPUT"_s, outputFile );
FeatureSymbologyExport
Options for exporting features considering their symbology.
Represents a coordinate reference system (CRS).
Exports QGIS layers to the DXF format.
void setForce2d(bool force2d)
Force 2d output (eg.
@ DeviceNotWritableError
Device not writable error.
@ Success
Successful export.
@ EmptyExtentError
Empty extent, no extent given and no extent could be derived from layers.
@ InvalidDeviceError
Invalid device error.
ExportResult writeToFile(QIODevice *d, const QString &codec)
Export to a dxf file in the given encoding.
void setFlags(QgsDxfExport::Flags flags)
Sets the export flags.
@ FlagHairlineWidthExport
@ FlagOnlySelectedFeatures
Use only selected features for the export.
@ FlagNoMText
Export text as TEXT elements. If not set, text will be exported as MTEXT elements.
void setDestinationCrs(const QgsCoordinateReferenceSystem &crs)
Set destination CRS.
void addLayers(const QList< QgsDxfExport::DxfLayer > &layers)
Add layers to export.
void setSymbologyScale(double scale)
Set reference scale for output.
const QString feedbackMessage() const
Returns any feedback message produced while export to dxf file.
void setExtent(const QgsRectangle &r)
Set extent of area to export.
void setSymbologyExport(Qgis::FeatureSymbologyExport e)
Set symbology export mode.
static QStringList encodings()
Returns list of available DXF encodings.
void setMapSettings(const QgsMapSettings &settings)
Set map settings and assign layer name attributes.
void setLayerTitleAsName(bool layerTitleAsName)
Enable use of title (where set) instead of layer name, when attribute index of corresponding layer in...
Contains configuration for rendering maps.
void setScaleMethod(Qgis::ScaleCalculationMethod method)
Sets the method to use for scale calculations for the map.
void setLayerStyleOverrides(const QMap< QString, QString > &overrides)
Sets the map of map layer style overrides (key: layer ID, value: style name) where a different style ...
void setTransformContext(const QgsCoordinateTransformContext &context)
Sets the coordinate transform context, which stores various information regarding which datum transfo...
bool hasMapTheme(const QString &name) const
Returns whether a map theme with a matching name exists.
QMap< QString, QString > mapThemeStyleOverrides(const QString &name)
Gets layer style overrides (for QgsMapSettings) of the visible layers for given map theme.
Contains information about the context in which a processing algorithm is executed.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context.
QgsProject * project() const
Returns the project in which the algorithm is being executed.
Custom exception class for processing related exceptions.
Base class for providing feedback from a processing algorithm.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
A boolean parameter for processing algorithms.
A coordinate reference system parameter for processing algorithms.
A parameter for Processing algorithms that need a list of input vector layers to export as DXF file.
static QList< QgsDxfExport::DxfLayer > parameterAsLayers(const QVariant &layersVariant, QgsProcessingContext &context)
Converts a QVariant value (a QVariantList) to a list of input layers.
An enum based parameter for processing algorithms, allowing for selection from predefined values.
A generic file based destination parameter, for specifying the destination path for a file (non-map l...
A double numeric parameter for map scale values.
QgsMapThemeCollection * mapThemeCollection
Qgis::ScaleCalculationMethod scaleMethod
A rectangle specified with double values.
Encapsulates the properties of a vector layer containing features that will be exported to the DXF fi...