QGIS API Documentation 3.43.0-Master (37eec98dbf6)
qgsvectorfilewriter.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsvectorfilewriter.h
3 generic vector file writer
4 -------------------
5 begin : Jun 6 2004
6 copyright : (C) 2004 by Tim Sutton
7 email : tim at linfiniti.com
8 ***************************************************************************/
9
10/***************************************************************************
11 * *
12 * This program is free software; you can redistribute it and/or modify *
13 * it under the terms of the GNU General Public License as published by *
14 * the Free Software Foundation; either version 2 of the License, or *
15 * (at your option) any later version. *
16 * *
17 ***************************************************************************/
18
19#ifndef QGSVECTORFILEWRITER_H
20#define QGSVECTORFILEWRITER_H
21
22#include "qgis_core.h"
23#include "qgis_sip.h"
25#include "qgsfields.h"
26#include "qgsfeedback.h"
27#include "qgsogrutils.h"
28#include "qgsrenderer.h"
29#include "qgsgeometryengine.h"
30#include "qgsfeaturesink.h"
31#include "qgsrendercontext.h"
32#include <ogr_api.h>
33
34class QgsSymbolLayer;
35class QTextCodec;
37
47class CORE_EXPORT QgsVectorFileWriter : public QgsFeatureSink
48{
49 public:
51 {
55 Hidden
56 };
57
62 class Option
63 {
64 public:
65 Option( const QString &docString, QgsVectorFileWriter::OptionType type )
66 : docString( docString )
67 , type( type ) {}
68 virtual ~Option() = default;
69
70 QString docString;
72 };
73
79 {
80 public:
81 SetOption( const QString &docString, const QStringList &values, const QString &defaultValue, bool allowNone = false )
82 : Option( docString, Set )
83 , values( values.begin(), values.end() )
84 , defaultValue( defaultValue )
85 , allowNone( allowNone )
86 {}
87
88 QSet<QString> values;
89 QString defaultValue;
91 };
92
98 {
99 public:
100 StringOption( const QString &docString, const QString &defaultValue = QString() )
101 : Option( docString, String )
102 , defaultValue( defaultValue )
103 {}
104
106 };
107
113 {
114 public:
115 IntOption( const QString &docString, int defaultValue )
116 : Option( docString, Int )
117 , defaultValue( defaultValue )
118 {}
119
121 };
122
128 {
129 public:
130 BoolOption( const QString &docString, bool defaultValue )
131 : SetOption( docString, QStringList() << QStringLiteral( "YES" ) << QStringLiteral( "NO" ), defaultValue ? "YES" : "NO" )
132 {}
133 };
134
140 {
141 public:
142 explicit HiddenOption( const QString &value )
143 : Option( QString(), Hidden )
144 , mValue( value )
145 {}
146
147 QString mValue;
148 };
149
150 struct MetaData
151 {
152
153 MetaData() = default;
154
155 MetaData( const QString &longName, const QString &trLongName, const QString &glob, const QString &ext, const QMap<QString, QgsVectorFileWriter::Option *> &driverOptions, const QMap<QString, QgsVectorFileWriter::Option *> &layerOptions, const QString &compulsoryEncoding = QString() )
156 : longName( longName )
157 , trLongName( trLongName )
158 , glob( glob )
159 , ext( ext )
160 , driverOptions( driverOptions )
161 , layerOptions( layerOptions )
162 , compulsoryEncoding( compulsoryEncoding )
163 {}
164
165 QString longName;
166 QString trLongName;
167 QString glob;
168 QString ext;
169 QMap<QString, QgsVectorFileWriter::Option *> driverOptions;
170 QMap<QString, QgsVectorFileWriter::Option *> layerOptions;
173 };
174
189
196 {
197 Original = 0,
199 };
200
205 {
206 SortRecommended = 1 << 1,
207 SkipNonSpatialFormats = 1 << 2,
208 SupportsMultipleLayers = 1 << 3,
209 };
211
212
216 class CORE_EXPORT FieldValueConverter
217 {
218 public:
219
221
222 virtual ~FieldValueConverter() = default;
223
229 virtual QgsField fieldDefinition( const QgsField &field );
230
237 virtual QVariant convert( int fieldIdxInLayer, const QVariant &value );
238
243 };
244
249 {
251 CanAddNewLayer = 1 << 0,
252
254 CanAppendToExistingLayer = 1 << 1,
255
257 CanAddNewFieldsToExistingLayer = 1 << 2,
258
260 CanDeleteLayer = 1 << 3
261 };
262
267
268
285
286#ifndef SIP_RUN
287
313#else
314
339#endif
340 Q_DECL_DEPRECATED static QgsVectorFileWriter::WriterError writeAsVectorFormat( QgsVectorLayer *layer,
341 const QString &fileName,
342 const QString &fileEncoding,
344 const QString &driverName = "GPKG",
345 bool onlySelected = false,
346 QString *errorMessage SIP_OUT = nullptr,
347 const QStringList &datasourceOptions = QStringList(),
348 const QStringList &layerOptions = QStringList(),
349 bool skipAttributeCreation = false,
350 QString *newFilename = nullptr,
352 double symbologyScale = 1.0,
353 const QgsRectangle *filterExtent = nullptr,
354 Qgis::WkbType overrideGeometryType = Qgis::WkbType::Unknown,
355 bool forceMulti = false,
356 bool includeZ = false,
357 const QgsAttributeList &attributes = QgsAttributeList(),
358 QgsVectorFileWriter::FieldValueConverter *fieldValueConverter = nullptr
359#ifndef SIP_RUN
360 , QString *newLayer = nullptr );
361#else
363#endif
364
365#ifndef SIP_RUN
366
393#else
394
420#endif
421 Q_DECL_DEPRECATED static QgsVectorFileWriter::WriterError writeAsVectorFormat( QgsVectorLayer *layer,
422 const QString &fileName,
423 const QString &fileEncoding,
424 const QgsCoordinateTransform &ct,
425 const QString &driverName = "GPKG",
426 bool onlySelected = false,
427 QString *errorMessage SIP_OUT = nullptr,
428 const QStringList &datasourceOptions = QStringList(),
429 const QStringList &layerOptions = QStringList(),
430 bool skipAttributeCreation = false,
431 QString *newFilename = nullptr,
433 double symbologyScale = 1.0,
434 const QgsRectangle *filterExtent = nullptr,
435 Qgis::WkbType overrideGeometryType = Qgis::WkbType::Unknown,
436 bool forceMulti = false,
437 bool includeZ = false,
438 const QgsAttributeList &attributes = QgsAttributeList(),
439 QgsVectorFileWriter::FieldValueConverter *fieldValueConverter = nullptr
440#ifndef SIP_RUN
441 , QString *newLayer = nullptr );
442#else
444#endif
445
450 class CORE_EXPORT SaveVectorOptions
451 {
452 public:
453
455
456 virtual ~SaveVectorOptions() = default;
457
459 QString driverName;
460
462 QString layerName;
463
465 QgsVectorFileWriter::ActionOnExistingFile actionOnExistingFile = CreateOrOverwriteFile;
466
469
475
477 bool onlySelectedFeatures = false;
478
480 QStringList datasourceOptions;
481
483 QStringList layerOptions;
484
486 bool skipAttributeCreation = false;
487
490
493
496
498 double symbologyScale = 1.0;
499
502
507 Qgis::WkbType overrideGeometryType = Qgis::WkbType::Unknown;
508
510 bool forceMulti = false;
511
513 bool includeZ = false;
514
521 QgsVectorFileWriter::FieldValueConverter *fieldValueConverter = nullptr;
522
524 QgsFeedback *feedback = nullptr;
525
532
539 bool saveMetadata = false;
540
548
556 bool includeConstraints = false;
557
566 bool setFieldDomains = true;
567
576 const QgsAbstractDatabaseProviderConnection *sourceDatabaseProviderConnection = nullptr;
577 };
578
579#ifndef SIP_RUN
580
591#else
592
602#endif
603 Q_DECL_DEPRECATED static QgsVectorFileWriter::WriterError writeAsVectorFormat( QgsVectorLayer *layer,
604 const QString &fileName,
606 QString *newFilename = nullptr,
607 QString *errorMessage SIP_OUT = nullptr
608#ifndef SIP_RUN
609 , QString *newLayer = nullptr );
610#else
612#endif
613
618 Q_DECL_DEPRECATED QgsVectorFileWriter( const QString &vectorFileName,
619 const QString &fileEncoding,
620 const QgsFields &fields,
621 Qgis::WkbType geometryType,
623 const QString &driverName = "GPKG",
624 const QStringList &datasourceOptions = QStringList(),
625 const QStringList &layerOptions = QStringList(),
626 QString *newFilename = nullptr,
629#ifndef SIP_RUN
630 , QString *newLayer = nullptr,
632 FieldNameSource fieldNameSource = Original
633#endif
635
661 Q_DECL_DEPRECATED QgsVectorFileWriter( const QString &vectorFileName,
662 const QString &fileEncoding,
663 const QgsFields &fields,
664 Qgis::WkbType geometryType,
666 const QString &driverName,
667 const QStringList &datasourceOptions,
668 const QStringList &layerOptions,
669 QString *newFilename,
670 Qgis::FeatureSymbologyExport symbologyExport,
671 QgsVectorFileWriter::FieldValueConverter *fieldValueConverter,
672 const QString &layerName,
674 QString *newLayer = nullptr,
677 FieldNameSource fieldNameSource = Original,
678 bool includeConstraints = false,
679 bool setFieldDomains = true,
680 const QgsAbstractDatabaseProviderConnection *sourceDatabaseProviderConnection = nullptr
681 ) SIP_SKIP;
682
684 QgsVectorFileWriter &operator=( const QgsVectorFileWriter &rh ) = delete;
685
699 static QgsVectorFileWriter *create( const QString &fileName,
700 const QgsFields &fields,
701 Qgis::WkbType geometryType,
703 const QgsCoordinateTransformContext &transformContext,
706 QString *newFilename = nullptr,
707 QString *newLayer = nullptr ) SIP_FACTORY;
708
721 Q_DECL_DEPRECATED static QgsVectorFileWriter::WriterError writeAsVectorFormatV2( QgsVectorLayer *layer,
722 const QString &fileName,
723 const QgsCoordinateTransformContext &transformContext,
725 QString *newFilename = nullptr,
726 QString *newLayer = nullptr,
727 QString *errorMessage SIP_OUT = nullptr ) SIP_DEPRECATED;
728
741 static QgsVectorFileWriter::WriterError writeAsVectorFormatV3( QgsVectorLayer *layer,
742 const QString &fileName,
743 const QgsCoordinateTransformContext &transformContext,
745 QString *errorMessage SIP_OUT = nullptr,
746 QString *newFilename SIP_OUT = nullptr,
747 QString *newLayer SIP_OUT = nullptr );
748
753 {
755 QString driverName;
756
759
764 QStringList globs;
765 };
766
775 static QList< QgsVectorFileWriter::FilterFormatDetails > supportedFiltersAndFormats( VectorFormatOptions options = SortRecommended );
776
785 static QStringList supportedFormatExtensions( VectorFormatOptions options = SortRecommended );
786
793 static bool supportsFeatureStyles( const QString &driverName );
794
799 {
801 QString longName;
802
804 QString driverName;
805 };
806
818 static QList< QgsVectorFileWriter::DriverDetails > ogrDriverList( VectorFormatOptions options = SortRecommended );
819
825 static QString driverForExtension( const QString &extension );
826
833 static QString fileFilterString( VectorFormatOptions options = SortRecommended );
834
836 static QString filterForDriver( const QString &driverName );
837
839 static QString convertCodecNameForEncodingOption( const QString &codecName );
840
842 QgsVectorFileWriter::WriterError hasError() const;
843
845 QString errorMessage() const;
846
853 QString driver() const;
854
861 QString driverLongName() const;
862
868 Qgis::VectorFileWriterCapabilities capabilities() const;
869
870 bool addFeature( QgsFeature &feature, QgsFeatureSink::Flags flags = QgsFeatureSink::Flags() ) override;
871 bool addFeatures( QgsFeatureList &features, QgsFeatureSink::Flags flags = QgsFeatureSink::Flags() ) override;
872 QString lastError() const override;
873
877 bool addFeatureWithStyle( QgsFeature &feature, QgsFeatureRenderer *renderer, Qgis::DistanceUnit outputUnit = Qgis::DistanceUnit::Meters );
878
880 QMap<int, int> attrIdxToOgrIdx() const SIP_SKIP { return mAttrIdxToOgrIdx; }
881
883 ~QgsVectorFileWriter() override;
884
890 static bool deleteShapeFile( const QString &fileName );
891
897 Qgis::FeatureSymbologyExport symbologyExport() const { return mSymbologyExport; }
898
904 void setSymbologyExport( Qgis::FeatureSymbologyExport symExport ) { mSymbologyExport = symExport; }
905
911 double symbologyScale() const { return mSymbologyScale; }
912
918 void setSymbologyScale( double scale );
919
920 static bool driverMetadata( const QString &driverName, MetaData &driverMetadata );
921
927 static QStringList defaultDatasetOptions( const QString &driverName );
928
934 static QStringList defaultLayerOptions( const QString &driverName );
935
942 static OGRwkbGeometryType ogrTypeFromWkbType( Qgis::WkbType type ) SIP_SKIP;
943
947 static QgsVectorFileWriter::EditionCapabilities editionCapabilities( const QString &datasetName );
948
952 static bool targetLayerExists( const QString &datasetName,
953 const QString &layerName );
954
958 static bool areThereNewFieldsToCreate( const QString &datasetName,
959 const QString &layerName,
960 QgsVectorLayer *layer,
961 const QgsAttributeList &attributes );
962
963 protected:
965 OGRGeometryH createEmptyGeometry( Qgis::WkbType wkbType ) SIP_SKIP;
966
968 OGRLayerH mLayer = nullptr;
969 OGRSpatialReferenceH mOgrRef = nullptr;
970
972
976
977 QTextCodec *mCodec = nullptr;
978
981
983 QMap<int, int> mAttrIdxToOgrIdx;
984
986
987 QMap< QgsSymbolLayer *, QString > mSymbolLayerTable;
988
991
994
996 FieldValueConverter *mFieldValueConverter = nullptr;
997
999 bool mIncludeConstraints = false;
1000
1002 bool mSetFieldDomains = true;
1003
1004 private:
1005#ifdef SIP_RUN
1007#endif
1008
1009 struct PreparedWriterDetails
1010 {
1011 std::unique_ptr< QgsFeatureRenderer > renderer;
1013 Qgis::WkbType sourceWkbType = Qgis::WkbType::Unknown;
1014 QgsFields sourceFields;
1015 QString providerType;
1016 long long featureCount = 0;
1017 QgsFeatureIds selectedFeatureIds;
1018 QString dataSourceUri;
1019 QString storageType;
1020 QgsFeatureIterator geometryTypeScanIterator;
1021 QgsExpressionContext expressionContext;
1022 QSet< int > fieldsToConvertToInt;
1023 QgsRenderContext renderContext;
1024 bool shallTransform = false;
1027 QgsAttributeList attributes;
1028 QgsFields outputFields;
1029 QgsFeatureIterator sourceFeatureIterator;
1030 QgsGeometry filterRectGeometry;
1031 std::unique_ptr< QgsGeometryEngine > filterRectEngine;
1032 QVariantMap providerUriParams;
1033 std::unique_ptr< QgsAbstractDatabaseProviderConnection > sourceDatabaseProviderConnection;
1034 };
1035
1040 static QgsVectorFileWriter::WriterError prepareWriteAsVectorFormat( QgsVectorLayer *layer,
1042 PreparedWriterDetails &details );
1043
1058 static QgsVectorFileWriter::WriterError writeAsVectorFormatV2( PreparedWriterDetails &details,
1059 const QString &fileName,
1060 const QgsCoordinateTransformContext &transformContext,
1062 QString *newFilename = nullptr,
1063 QString *newLayer = nullptr,
1064 QString *errorMessage SIP_OUT = nullptr,
1066
1072 Q_DECL_DEPRECATED static QgsVectorFileWriter::WriterError writeAsVectorFormat( PreparedWriterDetails &details,
1073 const QString &fileName,
1075 QString *newFilename = nullptr,
1076 QString *errorMessage SIP_OUT = nullptr,
1077 QString *newLayer = nullptr ) SIP_DEPRECATED;
1078
1079 void init( QString vectorFileName, QString fileEncoding, const QgsFields &fields,
1080 Qgis::WkbType geometryType, QgsCoordinateReferenceSystem srs,
1081 const QString &driverName, QStringList datasourceOptions,
1082 QStringList layerOptions, QString *newFilename,
1083 QgsVectorFileWriter::FieldValueConverter *fieldValueConverter,
1084 const QString &layerName,
1085 QgsVectorFileWriter::ActionOnExistingFile action, QString *newLayer, QgsFeatureSink::SinkFlags sinkFlags,
1086 const QgsCoordinateTransformContext &transformContext,
1087 FieldNameSource fieldNameSource,
1088 const QgsAbstractDatabaseProviderConnection *sourceDatabaseProviderConnection );
1089 void resetMap( const QgsAttributeList &attributes );
1090
1091 std::unique_ptr< QgsFeatureRenderer > mRenderer;
1092 QgsRenderContext mRenderContext;
1093
1094
1095 std::unique_ptr< QgsCoordinateTransform > mCoordinateTransform;
1096
1097 bool mUsingTransaction = false;
1098 QSet< QMetaType::Type > mSupportedListSubTypes;
1099
1100 Qgis::VectorFileWriterCapabilities mCapabilities;
1101
1102 void createSymbolLayerTable( QgsVectorLayer *vl, const QgsCoordinateTransform &ct, OGRDataSourceH ds );
1103 gdal::ogr_feature_unique_ptr createFeature( const QgsFeature &feature );
1104 bool writeFeature( OGRLayerH layer, OGRFeatureH feature );
1105
1107 QgsVectorFileWriter::WriterError exportFeaturesSymbolLevels( const PreparedWriterDetails &details, QgsFeatureIterator &fit, const QgsCoordinateTransform &ct, QString *errorMessage = nullptr );
1108 double mmScaleFactor( double scale, Qgis::RenderUnit symbolUnits, Qgis::DistanceUnit mapUnits );
1109 double mapUnitScaleFactor( double scale, Qgis::RenderUnit symbolUnits, Qgis::DistanceUnit mapUnits );
1110
1111 void startRender( QgsFeatureRenderer *sourceRenderer, const QgsFields &fields );
1112 void stopRender();
1113 std::unique_ptr< QgsFeatureRenderer > createSymbologyRenderer( QgsFeatureRenderer *sourceRenderer ) const;
1115 static void addRendererAttributes( QgsFeatureRenderer *renderer, QgsRenderContext &context, const QgsFields &fields, QgsAttributeList &attList );
1116
1118 static QStringList concatenateOptions( const QMap<QString, Option *> &options );
1119
1121 friend class TestQgsVectorFileWriter;
1122};
1123
1126
1127// clazy:excludeall=qstring-allocations
1128
1129#endif
Provides global constants and enumerations for use throughout the application.
Definition qgis.h:54
DistanceUnit
Units of distance.
Definition qgis.h:4843
QFlags< VectorFileWriterCapability > VectorFileWriterCapabilities
Capabilities supported by a QgsVectorFileWriter object.
Definition qgis.h:1047
WkbType
The WKB type describes the number of dimensions a geometry has.
Definition qgis.h:256
@ Unknown
Unknown.
FeatureSymbologyExport
Options for exporting features considering their symbology.
Definition qgis.h:5337
@ NoSymbology
Export only data.
Provides common functionality for database based connections.
Represents a coordinate reference system (CRS).
Contains information about the context in which a coordinate transform is executed.
Handles coordinate transforms between two coordinate systems.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Wrapper for iterator of features from vector data provider or vector layer.
Abstract base class for all 2D vector feature renderers.
An interface for objects which accept features via addFeature(s) methods.
QFlags< SinkFlag > SinkFlags
virtual bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags())
Adds a single feature to the sink.
virtual QString lastError() const
Returns the most recent error encountered by the sink, e.g.
virtual bool addFeatures(QgsFeatureList &features, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags())=0
Adds a list of features to the sink.
QFlags< Flag > Flags
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:58
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
Encapsulate a field in an attribute table or data source.
Definition qgsfield.h:53
Container of fields for a vector layer.
Definition qgsfields.h:46
A geometry is the spatial representation of a feature.
A structured metadata store for a map layer.
A rectangle specified with double values.
Contains information about the context of a rendering operation.
Abstract base class for symbol layers.
QgsTask task which performs a QgsVectorFileWriter layer saving operation as a background task.
An available option for configuring file writing for a particular output format, presenting an boolea...
BoolOption(const QString &docString, bool defaultValue)
Interface to convert raw field values to their user-friendly values.
A hidden option for file writing for a particular output format.
An available option for configuring file writing for a particular output format, presenting an intege...
IntOption(const QString &docString, int defaultValue)
Describes an available option for configuring file writing for a particular output format.
Option(const QString &docString, QgsVectorFileWriter::OptionType type)
QgsVectorFileWriter::OptionType type
virtual ~Option()=default
Options to pass to QgsVectorFileWriter::writeAsVectorFormat().
QgsCoordinateTransform ct
Transform to reproject exported geometries with, or invalid transform for no transformation.
QStringList attributesExportNames
Attributes export names.
QgsLayerMetadata layerMetadata
Layer metadata to save for the exported vector file.
QString layerName
Layer name. If let empty, it will be derived from the filename.
QgsRectangle filterExtent
If not empty, only features intersecting the extent will be saved.
QStringList layerOptions
List of OGR layer creation options.
QgsAttributeList attributes
Attributes to export (empty means all unless skipAttributeCreation is set)
QStringList datasourceOptions
List of OGR data source creation options.
An available option for configuring file writing for a particular output format, presenting a choice ...
SetOption(const QString &docString, const QStringList &values, const QString &defaultValue, bool allowNone=false)
An available option for configuring file writing for a particular output format, presenting a freefor...
StringOption(const QString &docString, const QString &defaultValue=QString())
A convenience class for writing vector layers to disk based formats (e.g.
EditionCapability
Edition capability flags.
Qgis::WkbType mWkbType
Geometry type which is being used.
double mSymbologyScale
Scale for symbology export (e.g. for symbols units in map units)
QMap< int, int > attrIdxToOgrIdx() const
QMap< int, int > mAttrIdxToOgrIdx
Map attribute indizes to OGR field indexes.
@ Canceled
Writing was interrupted by manual cancellation.
@ ErrSavingMetadata
Metadata saving failed.
gdal::ogr_datasource_unique_ptr mDS
QFlags< EditionCapability > EditionCapabilities
Combination of CanAddNewLayer, CanAppendToExistingLayer, CanAddNewFieldsToExistingLayer or CanDeleteL...
double symbologyScale() const
Returns the reference scale for output.
VectorFormatOption
Options for sorting and filtering vector formats.
QFlags< VectorFormatOption > VectorFormatOptions
WriterError mError
Contains error value if construction was not successful.
Qgis::FeatureSymbologyExport symbologyExport() const
Returns the feature symbology export handling for the writer.
FieldNameSource
Source for exported field names.
@ PreferAlias
Use the field alias as the exported field name, wherever one is set. Otherwise use the original field...
@ Original
Use original field names.
void setSymbologyExport(Qgis::FeatureSymbologyExport symExport)
Sets the feature symbology export handling for the writer.
QMap< QgsSymbolLayer *, QString > mSymbolLayerTable
ActionOnExistingFile
Enumeration to describe how to handle existing files.
@ CreateOrOverwriteLayer
Create or overwrite layer.
@ CreateOrOverwriteFile
Create or overwrite file.
@ AppendToLayerNoNewFields
Append features to existing layer, but do not create new fields.
Represents a vector layer which manages a vector based dataset.
std::unique_ptr< std::remove_pointer< OGRDataSourceH >::type, OGRDataSourceDeleter > ogr_datasource_unique_ptr
Scoped OGR data source.
#define SIP_DEPRECATED
Definition qgis_sip.h:106
#define SIP_ENUM_BASETYPE(type)
Definition qgis_sip.h:278
#define SIP_SKIP
Definition qgis_sip.h:126
#define SIP_OUT
Definition qgis_sip.h:58
#define SIP_FACTORY
Definition qgis_sip.h:76
QList< QgsFeature > QgsFeatureList
QSet< QgsFeatureId > QgsFeatureIds
QList< int > QgsAttributeList
Definition qgsfield.h:27
Q_DECLARE_OPERATORS_FOR_FLAGS(QgsTextRendererUtils::CurvedTextFlags)
const QgsCoordinateReferenceSystem & outputCrs
Details of available driver formats.
QString longName
Descriptive, user friendly name for the driver.
QString driverName
Unique driver name.
Details of available filters and formats.
QString filterString
Filter string for file picker dialogs.
QStringList globs
Matching glob patterns for format, e.g.
MetaData(const QString &longName, const QString &trLongName, const QString &glob, const QString &ext, const QMap< QString, QgsVectorFileWriter::Option * > &driverOptions, const QMap< QString, QgsVectorFileWriter::Option * > &layerOptions, const QString &compulsoryEncoding=QString())
QMap< QString, QgsVectorFileWriter::Option * > driverOptions
QMap< QString, QgsVectorFileWriter::Option * > layerOptions
QString compulsoryEncoding
Some formats require a compulsory encoding, typically UTF-8. If no compulsory encoding,...