105#include <QPainterPath>
107#include <QProgressDialog>
108#include <QRegularExpression>
110#include <QStringBuilder>
112#include <QUndoCommand>
118#include "moc_qgsvectorlayer.cpp"
127#ifdef TESTPROVIDERLIB
133 const QString &qmlStyle,
134 const QString &sldStyle,
135 const QString &styleName,
136 const QString &styleDescription,
137 const QString &uiFileContent,
151 QStringList &descriptions,
169 const QString &baseName,
170 const QString &providerKey,
176 , mAuxiliaryLayer( nullptr )
177 , mAuxiliaryLayerKey( QString() )
179 , mRefreshRendererTimer( new QTimer( this ) )
190 mGeometryOptions = std::make_unique<QgsGeometryOptions>();
194 mStoredExpressionManager->setParent(
this );
197 mJoinBuffer->setParent(
this );
202 if ( !vectorLayerPath.isEmpty() && !
mProviderKey.isEmpty() )
213 mDataSourceReadOnly =
true;
215 setDataSource( vectorLayerPath, baseName, providerKey, providerOptions, providerFlags );
218 for (
const QgsField &field : std::as_const( mFields ) )
220 if ( !mAttributeAliasMap.contains( field.name() ) )
221 mAttributeAliasMap.insert( field.name(), QString() );
226 mTemporalProperties->setDefaultsFromDataProviderTemporalCapabilities( mDataProvider->temporalCapabilities() );
227 if ( !mTemporalProperties->isActive() )
231 mTemporalProperties->guessDefaultsFromFields( mFields );
234 mElevationProperties->setDefaultsFromLayer(
this );
252 connect( mRefreshRendererTimer, &QTimer::timeout,
this, [
this] {
triggerRepaint(
true ); } );
261 delete mDataProvider;
264 delete mExpressionFieldBuffer;
266 delete mDiagramLayerSettings;
267 delete mDiagramRenderer;
272 delete mConditionalStyles;
273 delete mStoredExpressionManager;
275 if ( mFeatureCounter )
276 mFeatureCounter->cancel();
278 qDeleteAll( mRendererGenerators );
292 dataSource = mDataProvider->dataSourceUri();
293 options.transformContext = mDataProvider->transformContext();
306 layer->mXmlExtent2D = mXmlExtent2D;
307 layer->mLazyExtent2D = mLazyExtent2D;
308 layer->mValidExtent2D = mValidExtent2D;
309 layer->mXmlExtent3D = mXmlExtent3D;
310 layer->mLazyExtent3D = mLazyExtent3D;
311 layer->mValidExtent3D = mValidExtent3D;
313 QList<QgsVectorLayerJoinInfo> joins =
vectorJoins();
314 const auto constJoins = joins;
336 for (
const QgsAction &action : constActions )
373 auto constraintIt = constraints.constBegin();
374 for ( ; constraintIt != constraints.constEnd(); ++ constraintIt )
390 layer->mElevationProperties = mElevationProperties->
clone();
391 layer->mElevationProperties->setParent( layer );
393 layer->mSelectionProperties = mSelectionProperties->
clone();
394 layer->mSelectionProperties->setParent( layer );
405 return mDataProvider->storageType();
417 return mDataProvider->capabilitiesString();
426 return mDataProvider && mDataProvider->isSqlQuery();
442 return mDataProvider->dataComment();
468 mDataProvider->reloadData();
487 p.setPen( QColor( 50, 100, 120, 200 ) );
488 p.setBrush( QColor( 200, 200, 210, 120 ) );
489 p.drawEllipse( x - m, y - m, m * 2 + 1, m * 2 + 1 );
493 p.setPen( QColor( 255, 0, 0 ) );
494 p.drawLine( x - m, y + m, x + m, y - m );
495 p.drawLine( x - m, y - m, x + m, y + m );
507 mSelectedFeatureIds.insert( fid );
508 mPreviousSelectedFeatureIds.clear();
517 mSelectedFeatureIds.unite( featureIds );
518 mPreviousSelectedFeatureIds.clear();
527 mSelectedFeatureIds.remove( fid );
528 mPreviousSelectedFeatureIds.clear();
537 mSelectedFeatureIds.subtract( featureIds );
538 mPreviousSelectedFeatureIds.clear();
553 .setFilterRect( rect )
555 .setNoAttributes() );
560 newSelection << feat.
id();
573 std::optional< QgsExpressionContext > defaultContext;
577 context = &defaultContext.value();
605 newSelection << feat.
id();
613 QgsFeatureRequest request = QgsFeatureRequest().
setFilterFids( oldSelection );
620 QgsFeatureIterator features =
getFeatures( request );
625 bool matches = exp.
evaluate( context ).toBool();
629 newSelection << feat.
id();
633 newSelection << feat.
id();
654 newSelection = mSelectedFeatureIds + ids;
658 newSelection = mSelectedFeatureIds - ids;
662 newSelection = mSelectedFeatureIds.intersect( ids );
666 QgsFeatureIds deselectedFeatures = mSelectedFeatureIds - newSelection;
667 mSelectedFeatureIds = newSelection;
668 mPreviousSelectedFeatureIds.clear();
678 if ( !intersectingIds.isEmpty() )
680 QgsDebugMsgLevel( QStringLiteral(
"Trying to select and deselect the same item at the same time. Unsure what to do. Selecting dubious items." ), 3 );
683 mSelectedFeatureIds -= deselectIds;
684 mSelectedFeatureIds += selectIds;
685 mPreviousSelectedFeatureIds.clear();
695 ids.subtract( mSelectedFeatureIds );
714 .setFilterRect( rect )
716 .setNoAttributes() );
724 if ( mSelectedFeatureIds.contains( fet.
id() ) )
726 deselectIds << fet.
id();
730 selectIds << fet.
id();
741 if ( mSelectedFeatureIds.isEmpty() )
746 mPreviousSelectedFeatureIds = previous;
753 if ( mPreviousSelectedFeatureIds.isEmpty() || !mSelectedFeatureIds.empty() )
764 return mDataProvider;
772 return mDataProvider;
780 return mSelectionProperties;
787 return mTemporalProperties;
794 return mElevationProperties;
810 if (
isValid() && mDataProvider && mDataProvider->encoding() != encoding )
812 mDataProvider->setEncoding( encoding );
821 delete mDiagramRenderer;
822 mDiagramRenderer = r;
846 if ( !
isValid() || !
isSpatial() || mSelectedFeatureIds.isEmpty() || !mDataProvider )
858 .setFilterFids( mSelectedFeatureIds )
859 .setNoAttributes() );
872 .setNoAttributes() );
876 if ( mSelectedFeatureIds.contains( fet.
id() ) )
887 if ( retval.
width() == 0.0 || retval.
height() == 0.0 )
896 retval.
set( -1.0, -1.0, 1.0, 1.0 );
908 return mLabelsEnabled &&
static_cast< bool >( mLabeling );
915 mLabelsEnabled = enabled;
923 if ( !mDiagramRenderer || !mDiagramLayerSettings )
926 QList<QgsDiagramSettings> settingList = mDiagramRenderer->diagramSettings();
927 if ( !settingList.isEmpty() )
929 return settingList.at( 0 ).enabled;
938 if ( !mSymbolFeatureCounted )
941 return mSymbolFeatureCountMap.value( legendKey, -1 );
948 if ( !mSymbolFeatureCounted )
951 return mSymbolFeatureIdMap.value( legendKey,
QgsFeatureIds() );
957 if ( ( mSymbolFeatureCounted || mFeatureCounter ) && !( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
958 return mFeatureCounter;
960 mSymbolFeatureCountMap.clear();
961 mSymbolFeatureIdMap.clear();
966 return mFeatureCounter;
968 if ( !mDataProvider )
971 return mFeatureCounter;
976 return mFeatureCounter;
979 if ( !mFeatureCounter || ( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
982 connect( mFeatureCounter, &
QgsTask::taskCompleted,
this, &QgsVectorLayer::onFeatureCounterCompleted, Qt::UniqueConnection );
983 connect( mFeatureCounter, &
QgsTask::taskTerminated,
this, &QgsVectorLayer::onFeatureCounterTerminated, Qt::UniqueConnection );
987 return mFeatureCounter;
995 if ( force || !mReadExtentFromXml || ( mReadExtentFromXml && mXmlExtent2D.isNull() && mXmlExtent3D.isNull() ) )
997 mValidExtent2D =
false;
998 mValidExtent3D =
false;
1007 mValidExtent2D =
true;
1015 mValidExtent3D =
true;
1022 if ( !mDefaultValueOnUpdateFields.isEmpty() )
1027 int size = mFields.
size();
1028 for (
int idx : std::as_const( mDefaultValueOnUpdateFields ) )
1030 if ( idx < 0 || idx >= size )
1050 mLazyExtent2D =
false;
1057 updateExtent( mDataProvider->extent() );
1058 mValidExtent2D =
true;
1059 mLazyExtent2D =
false;
1063 if ( !mValidExtent2D && mLazyExtent2D && mReadExtentFromXml && !mXmlExtent2D.isNull() )
1065 updateExtent( mXmlExtent2D );
1066 mValidExtent2D =
true;
1067 mLazyExtent2D =
false;
1070 if ( !mValidExtent2D && mLazyExtent2D && mDataProvider && mDataProvider->isValid() )
1073 updateExtent( mDataProvider->extent() );
1074 mValidExtent2D =
true;
1075 mLazyExtent2D =
false;
1078 QgsDebugMsgLevel( QStringLiteral(
"2D Extent of layer: %1" ).arg( mExtent2D.toString() ), 3 );
1082 if ( mValidExtent2D )
1085 if ( !
isValid() || !mDataProvider )
1087 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1091 if ( !mEditBuffer ||
1092 ( !mDataProvider->transaction() && ( mEditBuffer->deletedFeatureIds().isEmpty() && mEditBuffer->changedGeometries().isEmpty() ) ) ||
1095 mDataProvider->updateExtents();
1099 if ( mDataProvider->featureCount() != 0 )
1105 if ( mEditBuffer && !mDataProvider->transaction() )
1107 const auto addedFeatures = mEditBuffer->addedFeatures();
1108 for ( QgsFeatureMap::const_iterator it = addedFeatures.constBegin(); it != addedFeatures.constEnd(); ++it )
1110 if ( it->hasGeometry() )
1121 .setNoAttributes() );
1134 if ( rect.xMinimum() > rect.xMaximum() && rect.yMinimum() > rect.yMaximum() )
1140 updateExtent( rect );
1141 mValidExtent2D =
true;
1154 if ( mDataProvider && mDataProvider->elevationProperties() && !mDataProvider->elevationProperties()->containsElevationData() )
1170 updateExtent( mDataProvider->extent3D() );
1171 mValidExtent3D =
true;
1172 mLazyExtent3D =
false;
1176 if ( !mValidExtent3D && mLazyExtent3D && mReadExtentFromXml && !mXmlExtent3D.isNull() )
1178 updateExtent( mXmlExtent3D );
1179 mValidExtent3D =
true;
1180 mLazyExtent3D =
false;
1183 if ( !mValidExtent3D && mLazyExtent3D && mDataProvider && mDataProvider->isValid() )
1186 updateExtent( mDataProvider->extent3D() );
1187 mValidExtent3D =
true;
1188 mLazyExtent3D =
false;
1191 QgsDebugMsgLevel( QStringLiteral(
"3D Extent of layer: %1" ).arg( mExtent3D.toString() ), 3 );
1195 if ( mValidExtent3D )
1198 if ( !
isValid() || !mDataProvider )
1200 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1204 if ( !mEditBuffer ||
1205 ( !mDataProvider->transaction() && ( mEditBuffer->deletedFeatureIds().isEmpty() && mEditBuffer->changedGeometries().isEmpty() ) ) ||
1208 mDataProvider->updateExtents();
1212 if ( mDataProvider->featureCount() != 0 )
1214 const QgsBox3D ext = mDataProvider->extent3D();
1215 extent.combineWith( ext );
1218 if ( mEditBuffer && !mDataProvider->transaction() )
1220 const auto addedFeatures = mEditBuffer->addedFeatures();
1221 for ( QgsFeatureMap::const_iterator it = addedFeatures.constBegin(); it != addedFeatures.constEnd(); ++it )
1223 if ( it->hasGeometry() )
1225 const QgsBox3D bbox = it->geometry().boundingBox3D();
1226 extent.combineWith( bbox );
1234 .setNoAttributes() );
1242 extent.combineWith( bb );
1254 mValidExtent3D =
true;
1280 if ( !
isValid() || !mDataProvider )
1282 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1283 return customProperty( QStringLiteral(
"storedSubsetString" ) ).toString();
1285 return mDataProvider->subsetString();
1292 if ( !
isValid() || !mDataProvider )
1294 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider or while editing" ), 3 );
1298 else if ( mEditBuffer )
1304 if ( subset == mDataProvider->subsetString() )
1307 bool res = mDataProvider->setSubsetString( subset );
1330 double maximumSimplificationScale = mSimplifyMethod.maximumScale();
1333 return !( maximumSimplificationScale > 1 && renderContext.
rendererScale() <= maximumSimplificationScale );
1342 return mConditionalStyles;
1350 if ( !
isValid() || !mDataProvider )
1362 if ( feature.isValid() )
1363 return feature.geometry();
1372 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1376 if ( mGeometryOptions->isActive() )
1379 mGeometryOptions->apply( geom );
1383 bool success = mEditBuffer->addFeature( feature );
1385 if ( success && mJoinBuffer->containsJoins() )
1387 success = mJoinBuffer->addFeature( feature );
1397 if ( !mEditBuffer || !mDataProvider )
1403 if ( currentFeature.
isValid() )
1405 bool hasChanged =
false;
1406 bool hasError =
false;
1418 QgsDebugMsgLevel( QStringLiteral(
"geometry of feature %1 could not be changed." ).arg( updatedFeature.
id() ), 3 );
1425 for (
int attr = 0; attr < fa.count(); ++attr )
1435 QgsDebugMsgLevel( QStringLiteral(
"attribute %1 of feature %2 could not be changed." ).arg( attr ).arg( updatedFeature.
id() ), 3 );
1440 if ( hasChanged && !mDefaultValueOnUpdateFields.isEmpty() && !skipDefaultValues )
1441 updateDefaultValues( updatedFeature.
id(), updatedFeature );
1447 QgsDebugMsgLevel( QStringLiteral(
"feature %1 could not be retrieved" ).arg( updatedFeature.
id() ), 3 );
1457 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1461 bool result = utils.
insertVertex( x, y, atFeatureId, beforeVertex );
1472 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1476 bool result = utils.
insertVertex( point, atFeatureId, beforeVertex );
1487 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1491 bool result = utils.
moveVertex( x, y, atFeatureId, atVertex );
1502 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1506 bool result = utils.
moveVertex( p, atFeatureId, atVertex );
1517 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1544 int count = mSelectedFeatureIds.size();
1557 *deletedCount = deleted;
1560 return deleted == count;
1563static const QgsPointSequence vectorPointXY2pointSequence(
const QVector<QgsPointXY> &points )
1566 pts.reserve( points.size() );
1567 QVector<QgsPointXY>::const_iterator it = points.constBegin();
1568 while ( it != points.constEnd() )
1579 return addRing( vectorPointXY2pointSequence( ring ), featureId );
1586 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1593 if ( !mSelectedFeatureIds.isEmpty() )
1595 result = utils.
addRing( ring, mSelectedFeatureIds, featureId );
1611 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1632 if ( !mSelectedFeatureIds.isEmpty() )
1634 result = utils.
addRing(
static_cast< QgsCurve *
>( ring->
clone() ), mSelectedFeatureIds, featureId );
1652 pts.reserve( points.size() );
1653 for ( QList<QgsPointXY>::const_iterator it = points.constBegin(); it != points.constEnd() ; ++it )
1660#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
1665 return addPart( vectorPointXY2pointSequence( points ) );
1673 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1678 if ( mSelectedFeatureIds.empty() )
1683 else if ( mSelectedFeatureIds.size() > 1 )
1701 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1706 if ( mSelectedFeatureIds.empty() )
1711 else if ( mSelectedFeatureIds.size() > 1 )
1730 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1745 return splitParts( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1752 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1756 return utils.
splitParts( splitLine, topologicalEditing );
1763 return splitFeatures( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1772 bool preserveCircular =
false;
1773 return splitFeatures( &splitLineString, topologyTestPoints, preserveCircular, topologicalEditing );
1780 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1784 return utils.
splitFeatures( curve, topologyTestPoints, preserveCircular, topologicalEditing );
1791 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1809 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1820 if ( !
mValid || !mEditBuffer || !mDataProvider )
1845 if ( !
isValid() || !mDataProvider )
1862 mDataProvider->enterUpdateMode();
1879 if ( mDataProvider )
1895 if ( !mRenderer->accept( visitor ) )
1899 if ( !mLabeling->accept( visitor ) )
1911 const QList<QgsAction>
actions = mActions->actions();
1914 if ( action.command().isEmpty() )
1919 switch ( action.type() )
1946 switch ( mEditFormConfig.initCodeSource() )
1950 initCode = QStringLiteral(
"# Calling function ’%1’\n\n%2" ).arg( mEditFormConfig.initFunction(), mEditFormConfig.initCode() );
1957 if ( inputFile && inputFile->open( QFile::ReadOnly ) )
1960 QTextStream inf( inputFile );
1961#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
1962 inf.setCodec(
"UTF-8" );
1964 initCode = inf.readAll();
1966 initCode = QStringLiteral(
"# Calling function ’%1’\n# From file %2\n\n" ).arg( mEditFormConfig.initFunction(), mEditFormConfig.initFilePath() ) + initCode;
1973 initCode = QStringLiteral(
"# Calling function ’%1’\n# From environment\n\n" ).arg( mEditFormConfig.initFunction() );
1983 if ( !initCode.isEmpty() )
2002 QDomNode pkeyNode = layer_node.namedItem( QStringLiteral(
"provider" ) );
2004 if ( pkeyNode.isNull() )
2010 QDomElement pkeyElt = pkeyNode.toElement();
2020 else if (
mDataSource.contains( QLatin1String(
"dbname=" ) ) )
2029 const QDomElement elem = layer_node.toElement();
2043 if ( elem.hasAttribute( QStringLiteral(
"wkbType" ) ) )
2044 mWkbType =
qgsEnumKeyToValue( elem.attribute( QStringLiteral(
"wkbType" ) ), mWkbType );
2047 QDomElement pkeyElem = pkeyNode.toElement();
2048 if ( !pkeyElem.isNull() )
2050 QString encodingString = pkeyElem.attribute( QStringLiteral(
"encoding" ) );
2051 if ( mDataProvider && !encodingString.isEmpty() )
2053 mDataProvider->setEncoding( encodingString );
2058 mJoinBuffer->readXml( layer_node );
2063 mSetLegendFromStyle =
false;
2073 QDomNode depsNode = layer_node.namedItem( QStringLiteral(
"dataDependencies" ) );
2074 QDomNodeList depsNodes = depsNode.childNodes();
2075 QSet<QgsMapLayerDependency> sources;
2076 for (
int i = 0; i < depsNodes.count(); i++ )
2078 QString
source = depsNodes.at( i ).toElement().attribute( QStringLiteral(
"id" ) );
2083 if ( !mSetLegendFromStyle )
2089 mReadExtentFromXml =
true;
2091 if ( mReadExtentFromXml )
2093 const QDomNode extentNode = layer_node.namedItem( QStringLiteral(
"extent" ) );
2094 if ( !extentNode.isNull() )
2098 const QDomNode extent3DNode = layer_node.namedItem( QStringLiteral(
"extent3D" ) );
2099 if ( !extent3DNode.isNull() )
2106 const QDomNode asNode = layer_node.namedItem( QStringLiteral(
"auxiliaryLayer" ) );
2107 const QDomElement asElem = asNode.toElement();
2108 if ( !asElem.isNull() )
2110 mAuxiliaryLayerKey = asElem.attribute( QStringLiteral(
"key" ) );
2114 mServerProperties->readXml( layer_node );
2121void QgsVectorLayer::setDataSourcePrivate(
const QString &dataSource,
const QString &baseName,
const QString &provider,
2130 setDataProvider( provider, options,
flags );
2140 bool loadDefaultStyleFlag =
false;
2143 loadDefaultStyleFlag =
true;
2149 std::unique_ptr< QgsScopedRuntimeProfile > profile;
2151 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Load layer style" ), QStringLiteral(
"projectload" ) );
2153 bool defaultLoadedFlag =
false;
2161 mSetLegendFromStyle =
false;
2166 if ( !defaultLoadedFlag && loadDefaultStyleFlag )
2174 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->createRenderer() );
2175 if ( defaultRenderer )
2177 defaultLoadedFlag =
true;
2183 if ( !defaultLoadedFlag )
2189 if ( !mSetLegendFromStyle )
2194 std::unique_ptr< QgsAbstractVectorLayerLabeling > defaultLabeling( mDataProvider->createLabeling() );
2195 if ( defaultLabeling )
2202 styleChangedSignalBlocker.release();
2219 QStringList ids, names, descriptions;
2220 QString errorMessage;
2222 const int relatedStylesCount {
listStylesInDatabase( ids, names, descriptions, errorMessage ) };
2223 Q_ASSERT( ids.count() == names.count() );
2224 const QString currentStyleName { mStyleManager->currentStyle() };
2225 for (
int i = 0; i < relatedStylesCount; ++i )
2227 if ( names.at( i ) == currentStyleName )
2231 errorMessage.clear();
2233 if ( ! styleXml.isEmpty() && errorMessage.isEmpty() )
2239 QgsDebugMsgLevel( QStringLiteral(
"Error retrieving style %1 from DB: %2" ).arg( ids.at( i ), errorMessage ), 2 );
2249 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->createRenderer() );
2250 if ( defaultRenderer )
2266 delete mDataProvider;
2273 if ( provider.compare( QLatin1String(
"postgres" ) ) == 0 )
2275 const QString checkUnicityKey { QStringLiteral(
"checkPrimaryKeyUnicity" ) };
2277 if ( ! uri.hasParam( checkUnicityKey ) )
2279 uri.setParam( checkUnicityKey, mReadExtentFromXml ?
"0" :
"1" );
2284 std::unique_ptr< QgsScopedRuntimeProfile > profile;
2286 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Create %1 provider" ).arg( provider ), QStringLiteral(
"projectload" ) );
2289 mDataProvider = qobject_cast< QgsVectorDataProvider * >(
mPreloadedProvider.release() );
2293 if ( !mDataProvider )
2300 mDataProvider->setParent(
this );
2303 QgsDebugMsgLevel( QStringLiteral(
"Instantiated the data provider plugin" ), 2 );
2305 setValid( mDataProvider->isValid() );
2313 profile->switchTask( tr(
"Read layer metadata" ) );
2318 QgsLayerMetadata newMetadata = mDataProvider->layerMetadata();
2320 newMetadata.
combine( &mMetadata );
2323 QgsDebugMsgLevel( QStringLiteral(
"Set Data provider QgsLayerMetadata identifier[%1]" ).arg(
metadata().identifier() ), 4 );
2330 mWkbType = mDataProvider->wkbType();
2334 const QgsFields providerFields = mDataProvider->fields();
2335 for (
const QgsField &field : providerFields )
2338 if ( !field.editorWidgetSetup().isNull() && mFieldWidgetSetups.value( field.name() ).isNull() )
2340 mFieldWidgetSetups[ field.name() ] = field.editorWidgetSetup();
2342 if ( !field.alias().isEmpty() && mAttributeAliasMap.value( field.name() ).isEmpty() )
2344 mAttributeAliasMap[ field.name() ] = field.alias();
2346 if ( !mAttributeSplitPolicy.contains( field.name() ) )
2348 mAttributeSplitPolicy[ field.name() ] = field.splitPolicy();
2350 if ( !mAttributeDuplicatePolicy.contains( field.name() ) )
2352 mAttributeDuplicatePolicy[ field.name() ] = field.duplicatePolicy();
2354 if ( !mAttributeMergePolicy.contains( field.name() ) )
2356 mAttributeMergePolicy[ field.name() ] = field.mergePolicy();
2361 profile->switchTask( tr(
"Read layer fields" ) );
2367 mDataSource = mDataProvider->dataSourceUri(
false );
2372 const thread_local QRegularExpression reg( R
"lit("[^"]+"\."([^"] + )"( \([^)]+\))?)lit" );
2373 const QRegularExpressionMatch match = reg.match(
name() );
2374 if ( match.hasMatch() )
2376 QStringList stuff = match.capturedTexts();
2377 QString lName = stuff[1];
2381 QMap<QString, QgsMapLayer *>::const_iterator it;
2382 for ( it = layers.constBegin(); it != layers.constEnd() && ( *it )->name() != lName; ++it )
2385 if ( it != layers.constEnd() && stuff.size() > 2 )
2387 lName +=
'.' + stuff[2].mid( 2, stuff[2].length() - 3 );
2390 if ( !lName.isEmpty() )
2400 else if ( provider == QLatin1String(
"ogr" ) )
2404 if (
mDataSource.right( 10 ) == QLatin1String(
"|layerid=0" ) )
2407 else if ( provider == QLatin1String(
"memory" ) )
2412 else if ( provider == QLatin1String(
"hana" ) )
2415 mDataSource = mDataProvider->dataSourceUri(
false );
2429 QDomDocument &document,
2436 QDomElement mapLayerNode = layer_node.toElement();
2438 if ( mapLayerNode.isNull() || (
"maplayer" != mapLayerNode.nodeName() ) )
2451 if ( mDataProvider )
2453 QDomElement provider = document.createElement( QStringLiteral(
"provider" ) );
2454 provider.setAttribute( QStringLiteral(
"encoding" ), mDataProvider->encoding() );
2455 QDomText providerText = document.createTextNode(
providerType() );
2456 provider.appendChild( providerText );
2457 layer_node.appendChild( provider );
2461 mJoinBuffer->writeXml( layer_node, document );
2464 QDomElement dependenciesElement = document.createElement( QStringLiteral(
"layerDependencies" ) );
2470 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
2471 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
2472 dependenciesElement.appendChild( depElem );
2474 layer_node.appendChild( dependenciesElement );
2477 QDomElement dataDependenciesElement = document.createElement( QStringLiteral(
"dataDependencies" ) );
2482 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
2483 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
2484 dataDependenciesElement.appendChild( depElem );
2486 layer_node.appendChild( dataDependenciesElement );
2489 mExpressionFieldBuffer->writeXml( layer_node, document );
2494 QDomElement asElem = document.createElement( QStringLiteral(
"auxiliaryLayer" ) );
2495 if ( mAuxiliaryLayer )
2497 const QString pkField = mAuxiliaryLayer->joinInfo().targetFieldName();
2498 asElem.setAttribute( QStringLiteral(
"key" ), pkField );
2500 layer_node.appendChild( asElem );
2504 return writeSymbology( layer_node, document, errorMsg, context );
2534 mJoinBuffer->resolveReferences(
project );
2543 if ( categories.testFlag(
Fields ) )
2545 if ( !mExpressionFieldBuffer )
2547 mExpressionFieldBuffer->readXml( layerNode );
2557 QDomNodeList referencedLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencedLayers" ) );
2558 if ( referencedLayersNodeList.size() > 0 )
2560 const QDomNodeList relationNodes { referencedLayersNodeList.at( 0 ).childNodes() };
2561 for (
int i = 0; i < relationNodes.length(); ++i )
2563 const QDomElement relationElement = relationNodes.at( i ).toElement();
2570 QDomNodeList referencingLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencingLayers" ) );
2571 if ( referencingLayersNodeList.size() > 0 )
2573 const QDomNodeList relationNodes { referencingLayersNodeList.at( 0 ).childNodes() };
2574 for (
int i = 0; i < relationNodes.length(); ++i )
2576 const QDomElement relationElement = relationNodes.at( i ).toElement();
2582 QDomElement layerElement = layerNode.toElement();
2586 readStyle( layerNode, errorMessage, context, categories );
2588 if ( categories.testFlag(
MapTips ) )
2590 QDomElement mapTipElem = layerNode.namedItem( QStringLiteral(
"mapTip" ) ).toElement();
2592 setMapTipsEnabled( mapTipElem.attribute( QStringLiteral(
"enabled" ), QStringLiteral(
"1" ) ).toInt() == 1 );
2596 mDisplayExpression = layerNode.namedItem( QStringLiteral(
"previewExpression" ) ).toElement().text();
2599 QString
displayField = layerNode.namedItem( QStringLiteral(
"displayfield" ) ).toElement().text();
2603 if ( mMapTipTemplate.isEmpty() && categories.testFlag(
MapTips ) )
2613 if ( categories.testFlag(
Actions ) )
2614 mActions->readXml( layerNode );
2616 if ( categories.testFlag(
Fields ) )
2621 QDomNode aliasesNode = layerNode.namedItem( QStringLiteral(
"aliases" ) );
2622 if ( !aliasesNode.isNull() )
2624 QDomElement aliasElem;
2626 QDomNodeList aliasNodeList = aliasesNode.toElement().elementsByTagName( QStringLiteral(
"alias" ) );
2627 for (
int i = 0; i < aliasNodeList.size(); ++i )
2629 aliasElem = aliasNodeList.at( i ).toElement();
2632 if ( aliasElem.hasAttribute( QStringLiteral(
"field" ) ) )
2634 field = aliasElem.attribute( QStringLiteral(
"field" ) );
2638 int index = aliasElem.attribute( QStringLiteral(
"index" ) ).toInt();
2640 if ( index >= 0 && index <
fields().count() )
2646 if ( !aliasElem.attribute( QStringLiteral(
"name" ) ).isEmpty() )
2649 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), aliasElem.attribute( QStringLiteral(
"name" ) ) );
2650 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " + aliasElem.attribute( QStringLiteral(
"name" ) ), 3 );
2655 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), field );
2656 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " + field, 3 );
2658 if ( alias == aliasElem.attribute( QStringLiteral(
"field" ) ) )
2662 QgsDebugMsgLevel(
"field " + field +
" origalias " + aliasElem.attribute( QStringLiteral(
"name" ) ) +
" trans " + alias, 3 );
2663 mAttributeAliasMap.insert( field, alias );
2670 const QDomNode splitPoliciesNode = layerNode.namedItem( QStringLiteral(
"splitPolicies" ) );
2671 if ( !splitPoliciesNode.isNull() )
2673 const QDomNodeList splitPolicyNodeList = splitPoliciesNode.toElement().elementsByTagName( QStringLiteral(
"policy" ) );
2674 for (
int i = 0; i < splitPolicyNodeList.size(); ++i )
2676 const QDomElement splitPolicyElem = splitPolicyNodeList.at( i ).toElement();
2677 const QString field = splitPolicyElem.attribute( QStringLiteral(
"field" ) );
2679 mAttributeSplitPolicy.insert( field, policy );
2684 mAttributeDuplicatePolicy.clear();
2685 const QDomNode duplicatePoliciesNode = layerNode.namedItem( QStringLiteral(
"duplicatePolicies" ) );
2686 if ( !duplicatePoliciesNode.isNull() )
2688 const QDomNodeList duplicatePolicyNodeList = duplicatePoliciesNode.toElement().elementsByTagName( QStringLiteral(
"policy" ) );
2689 for (
int i = 0; i < duplicatePolicyNodeList.size(); ++i )
2691 const QDomElement duplicatePolicyElem = duplicatePolicyNodeList.at( i ).toElement();
2692 const QString field = duplicatePolicyElem.attribute( QStringLiteral(
"field" ) );
2694 mAttributeDuplicatePolicy.insert( field, policy );
2698 const QDomNode mergePoliciesNode = layerNode.namedItem( QStringLiteral(
"mergePolicies" ) );
2699 if ( !mergePoliciesNode.isNull() )
2701 const QDomNodeList mergePolicyNodeList = mergePoliciesNode.toElement().elementsByTagName( QStringLiteral(
"policy" ) );
2702 for (
int i = 0; i < mergePolicyNodeList.size(); ++i )
2704 const QDomElement mergePolicyElem = mergePolicyNodeList.at( i ).toElement();
2705 const QString field = mergePolicyElem.attribute( QStringLiteral(
"field" ) );
2707 mAttributeMergePolicy.insert( field, policy );
2712 mDefaultExpressionMap.clear();
2713 QDomNode defaultsNode = layerNode.namedItem( QStringLiteral(
"defaults" ) );
2714 if ( !defaultsNode.isNull() )
2716 QDomNodeList defaultNodeList = defaultsNode.toElement().elementsByTagName( QStringLiteral(
"default" ) );
2717 for (
int i = 0; i < defaultNodeList.size(); ++i )
2719 QDomElement defaultElem = defaultNodeList.at( i ).toElement();
2721 QString field = defaultElem.attribute( QStringLiteral(
"field" ), QString() );
2722 QString expression = defaultElem.attribute( QStringLiteral(
"expression" ), QString() );
2723 bool applyOnUpdate = defaultElem.attribute( QStringLiteral(
"applyOnUpdate" ), QStringLiteral(
"0" ) ) == QLatin1String(
"1" );
2724 if ( field.isEmpty() || expression.isEmpty() )
2727 mDefaultExpressionMap.insert( field,
QgsDefaultValue( expression, applyOnUpdate ) );
2732 mFieldConstraints.clear();
2733 mFieldConstraintStrength.clear();
2734 QDomNode constraintsNode = layerNode.namedItem( QStringLiteral(
"constraints" ) );
2735 if ( !constraintsNode.isNull() )
2737 QDomNodeList constraintNodeList = constraintsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2738 for (
int i = 0; i < constraintNodeList.size(); ++i )
2740 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2742 QString field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2743 int constraints = constraintElem.attribute( QStringLiteral(
"constraints" ), QStringLiteral(
"0" ) ).toInt();
2744 if ( field.isEmpty() || constraints == 0 )
2749 int uniqueStrength = constraintElem.attribute( QStringLiteral(
"unique_strength" ), QStringLiteral(
"1" ) ).toInt();
2750 int notNullStrength = constraintElem.attribute( QStringLiteral(
"notnull_strength" ), QStringLiteral(
"1" ) ).toInt();
2751 int expStrength = constraintElem.attribute( QStringLiteral(
"exp_strength" ), QStringLiteral(
"1" ) ).toInt();
2758 mFieldConstraintExpressions.clear();
2759 QDomNode constraintExpressionsNode = layerNode.namedItem( QStringLiteral(
"constraintExpressions" ) );
2760 if ( !constraintExpressionsNode.isNull() )
2762 QDomNodeList constraintNodeList = constraintExpressionsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2763 for (
int i = 0; i < constraintNodeList.size(); ++i )
2765 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2767 QString field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2768 QString exp = constraintElem.attribute( QStringLiteral(
"exp" ), QString() );
2769 QString desc = constraintElem.attribute( QStringLiteral(
"desc" ), QString() );
2770 if ( field.isEmpty() || exp.isEmpty() )
2773 mFieldConstraintExpressions.insert( field, qMakePair( exp, desc ) );
2781 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
2785 QDomElement widgetsElem = layerNode.namedItem( QStringLiteral(
"fieldConfiguration" ) ).toElement();
2786 QDomNodeList fieldConfigurationElementList = widgetsElem.elementsByTagName( QStringLiteral(
"field" ) );
2787 for (
int i = 0; i < fieldConfigurationElementList.size(); ++i )
2789 const QDomElement fieldConfigElement = fieldConfigurationElementList.at( i ).toElement();
2790 const QDomElement fieldWidgetElement = fieldConfigElement.elementsByTagName( QStringLiteral(
"editWidget" ) ).at( 0 ).toElement();
2792 QString fieldName = fieldConfigElement.attribute( QStringLiteral(
"name" ) );
2794 if ( categories.testFlag(
Fields ) )
2798 if ( categories.testFlag(
Forms ) )
2800 const QString widgetType = fieldWidgetElement.attribute( QStringLiteral(
"type" ) );
2801 const QDomElement cfgElem = fieldConfigElement.elementsByTagName( QStringLiteral(
"config" ) ).at( 0 ).toElement();
2802 const QDomElement optionsElem = cfgElem.childNodes().at( 0 ).toElement();
2805 if ( widgetType == QLatin1String(
"ValueRelation" ) )
2807 optionsMap[ QStringLiteral(
"Value" ) ] = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fields:%2:valuerelationvalue" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text(), fieldName ), optionsMap[ QStringLiteral(
"Value" ) ].toString() );
2809 if ( widgetType == QLatin1String(
"ValueMap" ) )
2811 if ( optionsMap[ QStringLiteral(
"map" ) ].canConvert<QList<QVariant>>() )
2813 QList<QVariant> translatedValueList;
2814 const QList<QVariant> valueList = optionsMap[ QStringLiteral(
"map" )].toList();
2815 for (
int i = 0, row = 0; i < valueList.count(); i++, row++ )
2817 QMap<QString, QVariant> translatedValueMap;
2818 QString translatedKey = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fields:%2:valuemapdescriptions" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text(), fieldName ), valueList[i].toMap().constBegin().key() );
2819 translatedValueMap.insert( translatedKey, valueList[i].toMap().constBegin().value() );
2820 translatedValueList.append( translatedValueMap );
2822 optionsMap.insert( QStringLiteral(
"map" ), translatedValueList );
2826 mFieldWidgetSetups[fieldName] = setup;
2833 if ( categories.testFlag(
Fields ) )
2835 const QList<QPair<QString, Qgis::FieldConfigurationFlag>> legacyConfig
2840 for (
const auto &config : legacyConfig )
2842 QDomNode excludeNode = layerNode.namedItem( config.first );
2843 if ( !excludeNode.isNull() )
2845 QDomNodeList attributeNodeList = excludeNode.toElement().elementsByTagName( QStringLiteral(
"attribute" ) );
2846 for (
int i = 0; i < attributeNodeList.size(); ++i )
2848 QString fieldName = attributeNodeList.at( i ).toElement().text();
2849 if ( !mFieldConfigurationFlags.contains( fieldName ) )
2850 mFieldConfigurationFlags[fieldName] = config.second;
2852 mFieldConfigurationFlags[fieldName].setFlag( config.second,
true );
2859 mGeometryOptions->readXml( layerNode.namedItem( QStringLiteral(
"geometryOptions" ) ) );
2861 if ( categories.testFlag(
Forms ) )
2862 mEditFormConfig.readXml( layerNode, context );
2866 mAttributeTableConfig.readXml( layerNode );
2867 mConditionalStyles->readXml( layerNode, context );
2868 mStoredExpressionManager->readXml( layerNode );
2874 QDomElement mapLayerNode = layerNode.toElement();
2876 && mapLayerNode.attribute( QStringLiteral(
"readOnly" ), QStringLiteral(
"0" ) ).toInt() == 1 )
2881 if ( categories.testFlag(
Legend ) )
2885 const QDomElement legendElem = layerNode.firstChildElement( QStringLiteral(
"legend" ) );
2886 if ( !legendElem.isNull() )
2889 legend->readXml( legendElem, context );
2891 mSetLegendFromStyle =
true;
2921 if ( !rendererElement.isNull() )
2939 if ( mSelectionProperties )
2940 mSelectionProperties->readXml( node.toElement(), context );
2944 if ( categories.testFlag(
Labeling ) )
2948 QDomElement labelingElement = node.firstChildElement( QStringLiteral(
"labeling" ) );
2950 if ( labelingElement.isNull() ||
2951 ( labelingElement.attribute( QStringLiteral(
"type" ) ) == QLatin1String(
"simple" ) && labelingElement.firstChildElement( QStringLiteral(
"settings" ) ).isNull() ) )
2959 labeling = readLabelingFromCustomProperties();
2967 if ( node.toElement().hasAttribute( QStringLiteral(
"labelsEnabled" ) ) )
2968 mLabelsEnabled = node.toElement().attribute( QStringLiteral(
"labelsEnabled" ) ).toInt();
2970 mLabelsEnabled =
true;
2976 QDomNode blendModeNode = node.namedItem( QStringLiteral(
"blendMode" ) );
2977 if ( !blendModeNode.isNull() )
2979 QDomElement e = blendModeNode.toElement();
2984 QDomNode featureBlendModeNode = node.namedItem( QStringLiteral(
"featureBlendMode" ) );
2985 if ( !featureBlendModeNode.isNull() )
2987 QDomElement e = featureBlendModeNode.toElement();
2995 QDomNode layerTransparencyNode = node.namedItem( QStringLiteral(
"layerTransparency" ) );
2996 if ( !layerTransparencyNode.isNull() )
2998 QDomElement e = layerTransparencyNode.toElement();
2999 setOpacity( 1.0 - e.text().toInt() / 100.0 );
3001 QDomNode layerOpacityNode = node.namedItem( QStringLiteral(
"layerOpacity" ) );
3002 if ( !layerOpacityNode.isNull() )
3004 QDomElement e = layerOpacityNode.toElement();
3008 const bool hasScaleBasedVisibiliy { node.attributes().namedItem( QStringLiteral(
"hasScaleBasedVisibilityFlag" ) ).nodeValue() ==
'1' };
3011 const double maxScale { node.attributes().namedItem( QStringLiteral(
"maxScale" ) ).nodeValue().toDouble( &ok ) };
3016 const double minScale { node.attributes().namedItem( QStringLiteral(
"minScale" ) ).nodeValue().toDouble( &ok ) };
3022 QDomElement e = node.toElement();
3026 mSimplifyMethod.setSimplifyAlgorithm(
static_cast< Qgis::VectorSimplificationAlgorithm >( e.attribute( QStringLiteral(
"simplifyAlgorithm" ), QStringLiteral(
"0" ) ).toInt() ) );
3027 mSimplifyMethod.setThreshold( e.attribute( QStringLiteral(
"simplifyDrawingTol" ), QStringLiteral(
"1" ) ).toFloat() );
3028 mSimplifyMethod.setForceLocalOptimization( e.attribute( QStringLiteral(
"simplifyLocal" ), QStringLiteral(
"1" ) ).toInt() );
3029 mSimplifyMethod.setMaximumScale( e.attribute( QStringLiteral(
"simplifyMaxScale" ), QStringLiteral(
"1" ) ).toFloat() );
3032 mRenderer->setReferenceScale( e.attribute( QStringLiteral(
"symbologyReferenceScale" ), QStringLiteral(
"-1" ) ).toDouble() );
3036 if ( categories.testFlag(
Diagrams ) )
3040 delete mDiagramRenderer;
3041 mDiagramRenderer =
nullptr;
3042 QDomElement singleCatDiagramElem = node.firstChildElement( QStringLiteral(
"SingleCategoryDiagramRenderer" ) );
3043 if ( !singleCatDiagramElem.isNull() )
3046 mDiagramRenderer->readXml( singleCatDiagramElem, context );
3048 QDomElement linearDiagramElem = node.firstChildElement( QStringLiteral(
"LinearlyInterpolatedDiagramRenderer" ) );
3049 if ( !linearDiagramElem.isNull() )
3051 if ( linearDiagramElem.hasAttribute( QStringLiteral(
"classificationAttribute" ) ) )
3054 int idx = linearDiagramElem.attribute( QStringLiteral(
"classificationAttribute" ) ).toInt();
3055 if ( idx >= 0 && idx < mFields.count() )
3056 linearDiagramElem.setAttribute( QStringLiteral(
"classificationField" ), mFields.at( idx ).name() );
3060 mDiagramRenderer->readXml( linearDiagramElem, context );
3062 QDomElement stackedDiagramElem = node.firstChildElement( QStringLiteral(
"StackedDiagramRenderer" ) );
3063 if ( !stackedDiagramElem.isNull() )
3066 mDiagramRenderer->readXml( stackedDiagramElem, context );
3069 if ( mDiagramRenderer )
3071 QDomElement diagramSettingsElem = node.firstChildElement( QStringLiteral(
"DiagramLayerSettings" ) );
3072 if ( !diagramSettingsElem.isNull() )
3074 bool oldXPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"xPosColumn" ) );
3075 bool oldYPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"yPosColumn" ) );
3076 bool oldShow = diagramSettingsElem.hasAttribute( QStringLiteral(
"showColumn" ) );
3077 if ( oldXPos || oldYPos || oldShow )
3083 int xPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"xPosColumn" ) ).toInt();
3084 if ( xPosColumn >= 0 && xPosColumn < mFields.count() )
3089 int yPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"yPosColumn" ) ).toInt();
3090 if ( yPosColumn >= 0 && yPosColumn < mFields.count() )
3095 int showColumn = diagramSettingsElem.attribute( QStringLiteral(
"showColumn" ) ).toInt();
3096 if ( showColumn >= 0 && showColumn < mFields.count() )
3099 QDomElement propertiesElem = diagramSettingsElem.ownerDocument().createElement( QStringLiteral(
"properties" ) );
3106 ddp.
writeXml( propertiesElem, defs );
3107 diagramSettingsElem.appendChild( propertiesElem );
3110 delete mDiagramLayerSettings;
3112 mDiagramLayerSettings->readXml( diagramSettingsElem );
3118 styleChangedSignalBlocker.release();
3130 QDomElement layerElement = node.toElement();
3133 ( void )
writeStyle( node, doc, errorMessage, context, categories );
3136 mGeometryOptions->writeXml( node );
3141 if ( !legendElement.isNull() )
3142 node.appendChild( legendElement );
3151 QDomElement referencedLayersElement = doc.createElement( QStringLiteral(
"referencedLayers" ) );
3152 node.appendChild( referencedLayersElement );
3154 const QList<QgsRelation>
referencingRelations { p->relationManager()->referencingRelations(
this ) };
3157 switch ( rel.type() )
3168 QDomElement referencingLayersElement = doc.createElement( QStringLiteral(
"referencingLayers" ) );
3169 node.appendChild( referencingLayersElement );
3171 const QList<QgsRelation> referencedRelations { p->relationManager()->referencedRelations(
this ) };
3172 for (
const QgsRelation &rel : referencedRelations )
3174 switch ( rel.type() )
3187 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
3189 QDomElement fieldConfigurationElement;
3191 fieldConfigurationElement = doc.createElement( QStringLiteral(
"fieldConfiguration" ) );
3192 node.appendChild( fieldConfigurationElement );
3194 for (
const QgsField &field : std::as_const( mFields ) )
3196 QDomElement fieldElement = doc.createElement( QStringLiteral(
"field" ) );
3197 fieldElement.setAttribute( QStringLiteral(
"name" ), field.name() );
3198 fieldConfigurationElement.appendChild( fieldElement );
3200 if ( categories.testFlag(
Fields ) )
3202 fieldElement.setAttribute( QStringLiteral(
"configurationFlags" ),
qgsFlagValueToKeys( field.configurationFlags() ) );
3205 if ( categories.testFlag(
Forms ) )
3210 QDomElement editWidgetElement = doc.createElement( QStringLiteral(
"editWidget" ) );
3211 fieldElement.appendChild( editWidgetElement );
3212 editWidgetElement.setAttribute( QStringLiteral(
"type" ), field.editorWidgetSetup().type() );
3213 QDomElement editWidgetConfigElement = doc.createElement( QStringLiteral(
"config" ) );
3216 editWidgetElement.appendChild( editWidgetConfigElement );
3222 if ( categories.testFlag(
Fields ) )
3225 QDomElement aliasElem = doc.createElement( QStringLiteral(
"aliases" ) );
3226 for (
const QgsField &field : std::as_const( mFields ) )
3228 QDomElement aliasEntryElem = doc.createElement( QStringLiteral(
"alias" ) );
3229 aliasEntryElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3230 aliasEntryElem.setAttribute( QStringLiteral(
"index" ), mFields.indexFromName( field.name() ) );
3231 aliasEntryElem.setAttribute( QStringLiteral(
"name" ), field.alias() );
3232 aliasElem.appendChild( aliasEntryElem );
3234 node.appendChild( aliasElem );
3238 QDomElement splitPoliciesElement = doc.createElement( QStringLiteral(
"splitPolicies" ) );
3239 bool hasNonDefaultSplitPolicies =
false;
3240 for (
const QgsField &field : std::as_const( mFields ) )
3244 QDomElement splitPolicyElem = doc.createElement( QStringLiteral(
"policy" ) );
3245 splitPolicyElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3246 splitPolicyElem.setAttribute( QStringLiteral(
"policy" ),
qgsEnumValueToKey( field.splitPolicy() ) );
3247 splitPoliciesElement.appendChild( splitPolicyElem );
3248 hasNonDefaultSplitPolicies =
true;
3251 if ( hasNonDefaultSplitPolicies )
3252 node.appendChild( splitPoliciesElement );
3257 QDomElement duplicatePoliciesElement = doc.createElement( QStringLiteral(
"duplicatePolicies" ) );
3258 bool hasNonDefaultDuplicatePolicies =
false;
3259 for (
const QgsField &field : std::as_const( mFields ) )
3263 QDomElement duplicatePolicyElem = doc.createElement( QStringLiteral(
"policy" ) );
3264 duplicatePolicyElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3265 duplicatePolicyElem.setAttribute( QStringLiteral(
"policy" ),
qgsEnumValueToKey( field.duplicatePolicy() ) );
3266 duplicatePoliciesElement.appendChild( duplicatePolicyElem );
3267 hasNonDefaultDuplicatePolicies =
true;
3270 if ( hasNonDefaultDuplicatePolicies )
3271 node.appendChild( duplicatePoliciesElement );
3276 QDomElement mergePoliciesElement = doc.createElement( QStringLiteral(
"mergePolicies" ) );
3277 bool hasNonDefaultMergePolicies =
false;
3278 for (
const QgsField &field : std::as_const( mFields ) )
3282 QDomElement mergePolicyElem = doc.createElement( QStringLiteral(
"policy" ) );
3283 mergePolicyElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3284 mergePolicyElem.setAttribute( QStringLiteral(
"policy" ),
qgsEnumValueToKey( field.mergePolicy() ) );
3285 mergePoliciesElement.appendChild( mergePolicyElem );
3286 hasNonDefaultMergePolicies =
true;
3289 if ( hasNonDefaultMergePolicies )
3290 node.appendChild( mergePoliciesElement );
3294 QDomElement defaultsElem = doc.createElement( QStringLiteral(
"defaults" ) );
3295 for (
const QgsField &field : std::as_const( mFields ) )
3297 QDomElement defaultElem = doc.createElement( QStringLiteral(
"default" ) );
3298 defaultElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3299 defaultElem.setAttribute( QStringLiteral(
"expression" ), field.defaultValueDefinition().expression() );
3300 defaultElem.setAttribute( QStringLiteral(
"applyOnUpdate" ), field.defaultValueDefinition().applyOnUpdate() ? QStringLiteral(
"1" ) : QStringLiteral(
"0" ) );
3301 defaultsElem.appendChild( defaultElem );
3303 node.appendChild( defaultsElem );
3306 QDomElement constraintsElem = doc.createElement( QStringLiteral(
"constraints" ) );
3307 for (
const QgsField &field : std::as_const( mFields ) )
3309 QDomElement constraintElem = doc.createElement( QStringLiteral(
"constraint" ) );
3310 constraintElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3311 constraintElem.setAttribute( QStringLiteral(
"constraints" ), field.constraints().constraints() );
3316 constraintsElem.appendChild( constraintElem );
3318 node.appendChild( constraintsElem );
3321 QDomElement constraintExpressionsElem = doc.createElement( QStringLiteral(
"constraintExpressions" ) );
3322 for (
const QgsField &field : std::as_const( mFields ) )
3324 QDomElement constraintExpressionElem = doc.createElement( QStringLiteral(
"constraint" ) );
3325 constraintExpressionElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3326 constraintExpressionElem.setAttribute( QStringLiteral(
"exp" ), field.constraints().constraintExpression() );
3327 constraintExpressionElem.setAttribute( QStringLiteral(
"desc" ), field.constraints().constraintDescription() );
3328 constraintExpressionsElem.appendChild( constraintExpressionElem );
3330 node.appendChild( constraintExpressionsElem );
3333 if ( !mExpressionFieldBuffer )
3341 mExpressionFieldBuffer->writeXml( node, doc );
3346 if ( categories.testFlag(
Actions ) )
3347 mActions->writeXml( node );
3351 mAttributeTableConfig.writeXml( node );
3352 mConditionalStyles->writeXml( node, doc, context );
3353 mStoredExpressionManager->writeXml( node );
3356 if ( categories.testFlag(
Forms ) )
3357 mEditFormConfig.writeXml( node, context );
3361 node.toElement().setAttribute( QStringLiteral(
"readOnly" ), mReadOnly );
3366 QDomElement prevExpElem = doc.createElement( QStringLiteral(
"previewExpression" ) );
3367 QDomText prevExpText = doc.createTextNode( mDisplayExpression );
3368 prevExpElem.appendChild( prevExpText );
3369 node.appendChild( prevExpElem );
3373 if ( categories.testFlag(
MapTips ) )
3375 QDomElement mapTipElem = doc.createElement( QStringLiteral(
"mapTip" ) );
3376 mapTipElem.setAttribute( QStringLiteral(
"enabled" ),
mapTipsEnabled() );
3377 QDomText mapTipText = doc.createTextNode( mMapTipTemplate );
3378 mapTipElem.appendChild( mapTipText );
3379 node.toElement().appendChild( mapTipElem );
3390 QDomElement mapLayerNode = node.toElement();
3403 QDomElement rendererElement = mRenderer->save( doc, context );
3404 node.appendChild( rendererElement );
3406 if ( mSelectionProperties )
3408 mSelectionProperties->writeXml( mapLayerNode, doc, context );
3412 if ( categories.testFlag(
Labeling ) )
3416 QDomElement labelingElement = mLabeling->save( doc, context );
3417 node.appendChild( labelingElement );
3419 mapLayerNode.setAttribute( QStringLiteral(
"labelsEnabled" ), mLabelsEnabled ? QStringLiteral(
"1" ) : QStringLiteral(
"0" ) );
3425 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingHints" ), QString::number(
static_cast< int >( mSimplifyMethod.simplifyHints() ) ) );
3426 mapLayerNode.setAttribute( QStringLiteral(
"simplifyAlgorithm" ), QString::number(
static_cast< int >( mSimplifyMethod.simplifyAlgorithm() ) ) );
3427 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingTol" ), QString::number( mSimplifyMethod.threshold() ) );
3428 mapLayerNode.setAttribute( QStringLiteral(
"simplifyLocal" ), mSimplifyMethod.forceLocalOptimization() ? 1 : 0 );
3429 mapLayerNode.setAttribute( QStringLiteral(
"simplifyMaxScale" ), QString::number( mSimplifyMethod.maximumScale() ) );
3441 QDomElement blendModeElem = doc.createElement( QStringLiteral(
"blendMode" ) );
3443 blendModeElem.appendChild( blendModeText );
3444 node.appendChild( blendModeElem );
3447 QDomElement featureBlendModeElem = doc.createElement( QStringLiteral(
"featureBlendMode" ) );
3449 featureBlendModeElem.appendChild( featureBlendModeText );
3450 node.appendChild( featureBlendModeElem );
3456 QDomElement layerOpacityElem = doc.createElement( QStringLiteral(
"layerOpacity" ) );
3457 QDomText layerOpacityText = doc.createTextNode( QString::number(
opacity() ) );
3458 layerOpacityElem.appendChild( layerOpacityText );
3459 node.appendChild( layerOpacityElem );
3460 mapLayerNode.setAttribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ),
hasScaleBasedVisibility() ? 1 : 0 );
3461 mapLayerNode.setAttribute( QStringLiteral(
"maxScale" ),
maximumScale() );
3462 mapLayerNode.setAttribute( QStringLiteral(
"minScale" ),
minimumScale() );
3464 mapLayerNode.setAttribute( QStringLiteral(
"symbologyReferenceScale" ), mRenderer ? mRenderer->referenceScale() : -1 );
3467 if ( categories.testFlag(
Diagrams ) && mDiagramRenderer )
3469 mDiagramRenderer->writeXml( mapLayerNode, doc, context );
3470 if ( mDiagramLayerSettings )
3471 mDiagramLayerSettings->writeXml( mapLayerNode, doc );
3482 QDomElement nameElem = node.firstChildElement( QStringLiteral(
"Name" ) );
3483 if ( nameElem.isNull() )
3485 errorMessage = QStringLiteral(
"Warning: Name element not found within NamedLayer while it's required." );
3501 readSldLabeling( node );
3503 styleChangedSignalBlocker.release();
3513 context.setExtraProperties( props );
3532 QDomElement nameNode = doc.createElement( QStringLiteral(
"se:Name" ) );
3533 nameNode.appendChild( doc.createTextNode(
name() ) );
3534 node.appendChild( nameNode );
3536 QDomElement userStyleElem = doc.createElement( QStringLiteral(
"UserStyle" ) );
3537 node.appendChild( userStyleElem );
3539 QDomElement nameElem = doc.createElement( QStringLiteral(
"se:Name" ) );
3540 nameElem.appendChild( doc.createTextNode(
name() ) );
3542 userStyleElem.appendChild( nameElem );
3544 QDomElement featureTypeStyleElem = doc.createElement( QStringLiteral(
"se:FeatureTypeStyle" ) );
3545 userStyleElem.appendChild( featureTypeStyleElem );
3547 mRenderer->toSld( doc, featureTypeStyleElem, context );
3550 mLabeling->toSld( featureTypeStyleElem, context );
3560 if ( !mEditBuffer || !mDataProvider )
3565 if ( mGeometryOptions->isActive() )
3566 mGeometryOptions->apply( geom );
3570 bool result = mEditBuffer->changeGeometry( fid, geom );
3575 if ( !skipDefaultValue && !mDefaultValueOnUpdateFields.isEmpty() )
3576 updateDefaultValues( fid );
3586 bool result =
false;
3588 switch (
fields().fieldOrigin( field ) )
3591 result = mJoinBuffer->changeAttributeValue( fid, field, newValue, oldValue );
3600 if ( mEditBuffer && mDataProvider )
3601 result = mEditBuffer->changeAttributeValue( fid, field, newValue, oldValue );
3609 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3627 for (
auto it = newValues.constBegin(); it != newValues.constEnd(); ++it )
3629 const int field = it.key();
3630 const QVariant newValue = it.value();
3633 if ( oldValues.contains( field ) )
3634 oldValue = oldValues[field];
3636 switch (
fields().fieldOrigin( field ) )
3639 newValuesJoin[field] = newValue;
3640 oldValuesJoin[field] = oldValue;
3647 newValuesNotJoin[field] = newValue;
3648 oldValuesNotJoin[field] = oldValue;
3657 if ( ! newValuesJoin.isEmpty() && mJoinBuffer )
3659 result = mJoinBuffer->changeAttributeValues( fid, newValuesJoin, oldValuesJoin );
3662 if ( ! newValuesNotJoin.isEmpty() )
3664 if ( mEditBuffer && mDataProvider )
3665 result &= mEditBuffer->changeAttributeValues( fid, newValuesNotJoin, oldValues );
3670 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3682 if ( !mEditBuffer || !mDataProvider )
3685 return mEditBuffer->addAttribute( field );
3692 if ( attIndex < 0 || attIndex >=
fields().count() )
3696 mFields[ attIndex ].setAlias( QString() );
3697 if ( mAttributeAliasMap.contains(
name ) )
3699 mAttributeAliasMap.remove(
name );
3701 mEditFormConfig.setFields( mFields );
3710 if ( index < 0 || index >=
fields().count() )
3713 switch ( mFields.fieldOrigin( index ) )
3717 if ( mExpressionFieldBuffer )
3719 int oi = mFields.fieldOriginIndex( index );
3720 mExpressionFieldBuffer->renameExpression( oi, newName );
3733 if ( !mEditBuffer || !mDataProvider )
3736 return mEditBuffer->renameAttribute( index, newName );
3751 if ( attIndex < 0 || attIndex >=
fields().count() )
3756 mAttributeAliasMap.insert(
name, aliasString );
3757 mFields[ attIndex ].setAlias( aliasString );
3758 mEditFormConfig.setFields( mFields );
3766 if ( index < 0 || index >=
fields().count() )
3776 if ( index >= 0 && index < mFields.count() )
3777 return mFields.at( index ).displayName();
3786 return mAttributeAliasMap;
3793 if ( index < 0 || index >=
fields().count() )
3798 mAttributeSplitPolicy.insert(
name, policy );
3799 mFields[ index ].setSplitPolicy( policy );
3800 mEditFormConfig.setFields( mFields );
3808 if ( index < 0 || index >=
fields().count() )
3813 mAttributeDuplicatePolicy.insert(
name, policy );
3814 mFields[ index ].setDuplicatePolicy( policy );
3815 mEditFormConfig.setFields( mFields );
3823 if ( index < 0 || index >=
fields().count() )
3828 mAttributeMergePolicy.insert(
name, policy );
3829 mFields[ index ].setMergePolicy( policy );
3830 mEditFormConfig.setFields( mFields );
3838 QSet<QString> excludeList;
3839 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3840 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3844 excludeList << flagsIt.key();
3854 QMap< QString, Qgis::FieldConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3855 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3866 QSet<QString> excludeList;
3867 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3868 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3872 excludeList << flagsIt.key();
3882 QMap< QString, Qgis::FieldConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3883 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3894 if ( index < 0 || index >=
fields().count() )
3903 if ( !mEditBuffer || !mDataProvider )
3906 return mEditBuffer->deleteAttribute( index );
3913 bool deleted =
false;
3916 QList<int> attrList = qgis::setToList( qgis::listToSet( attrs ) );
3918 std::sort( attrList.begin(), attrList.end(), std::greater<int>() );
3920 for (
int attr : std::as_const( attrList ) )
3938 if ( context && context->
cascade )
3941 const bool hasRelationsOrJoins = !relations.empty() || mJoinBuffer->
containsJoins();
3942 if ( hasRelationsOrJoins )
3947 if ( handledFeatureIds.contains( fid ) )
3955 handledFeatureIds << fid;
3964 for (
const QgsRelation &relation : relations )
3967 switch ( relation.strength() )
3972 QgsFeatureIterator relatedFeaturesIt = relation.getRelatedFeatures(
getFeature( fid ) );
3974 QgsFeature childFeature;
3975 while ( relatedFeaturesIt.
nextFeature( childFeature ) )
3977 childFeatureIds.insert( childFeature.
id() );
3979 if ( childFeatureIds.count() > 0 )
3981 relation.referencingLayer()->startEditing();
3982 relation.referencingLayer()->deleteFeatures( childFeatureIds, context );
3994 if ( mJoinBuffer->containsJoins() )
3995 mJoinBuffer->deleteFeature( fid, context );
3997 bool res = mEditBuffer->deleteFeature( fid );
4009 return deleteFeatureCascade( fid, context );
4018 if ( ( context && context->
cascade ) || mJoinBuffer->containsJoins() )
4022 res = deleteFeatureCascade( fid, context ) && res;
4026 res = mEditBuffer && mEditBuffer->deleteFeatures( fids );
4031 mSelectedFeatureIds.subtract( fids );
4051 if ( !mDataProvider )
4052 return pkAttributesList;
4055 for (
int i = 0; i < mFields.count(); ++i )
4058 providerIndexes.contains( mFields.fieldOriginIndex( i ) ) )
4059 pkAttributesList << i;
4062 return pkAttributesList;
4069 if ( !mDataProvider )
4071 return mDataProvider->featureCount() +
4072 ( mEditBuffer && ! mDataProvider->transaction() ? mEditBuffer->addedFeatures().size() - mEditBuffer->deletedFeatureIds().size() : 0 );
4079 const QgsFeatureIds deletedFeatures( mEditBuffer && ! mDataProvider->transaction() ? mEditBuffer->deletedFeatureIds() :
QgsFeatureIds() );
4080 const QgsFeatureMap addedFeatures( mEditBuffer && ! mDataProvider->transaction() ? mEditBuffer->addedFeatures() :
QgsFeatureMap() );
4082 if ( mEditBuffer && !deletedFeatures.empty() )
4084 if ( addedFeatures.size() > deletedFeatures.size() )
4090 if ( ( !mEditBuffer || addedFeatures.empty() ) && mDataProvider && mDataProvider->empty() )
4103 mCommitErrors.clear();
4105 if ( !mDataProvider )
4107 mCommitErrors << tr(
"ERROR: no provider" );
4113 mCommitErrors << tr(
"ERROR: layer not editable" );
4119 if ( !mAllowCommit )
4122 mCommitChangesActive =
true;
4124 bool success =
false;
4125 if ( mEditBuffer->editBufferGroup() )
4126 success = mEditBuffer->editBufferGroup()->commitChanges( mCommitErrors, stopEditing );
4128 success = mEditBuffer->commitChanges( mCommitErrors );
4130 mCommitChangesActive =
false;
4132 if ( !mDeletedFids.empty() )
4135 mDeletedFids.clear();
4156 mDataProvider->updateExtents();
4160 mDataProvider->leaveUpdateMode();
4166 if ( mFields.names() != mDataProvider->fields().names() )
4180 return mCommitErrors;
4195 if ( !mDataProvider )
4197 mCommitErrors << tr(
"ERROR: no provider" );
4201 bool rollbackExtent = !mDataProvider->transaction() && ( !mEditBuffer->deletedFeatureIds().isEmpty() ||
4202 !mEditBuffer->addedFeatures().isEmpty() ||
4203 !mEditBuffer->changedGeometries().isEmpty() );
4207 mEditBuffer->rollBack();
4223 mEditBuffer =
nullptr;
4228 if ( rollbackExtent )
4231 mDataProvider->leaveUpdateMode();
4241 return mSelectedFeatureIds.size();
4249 return mSelectedFeatureIds;
4257 features.reserve( mSelectedFeatureIds.count() );
4264 features.push_back( f );
4274 if ( mSelectedFeatureIds.isEmpty() )
4280 if ( mSelectedFeatureIds.count() == 1 )
4281 request.
setFilterFid( *mSelectedFeatureIds.constBegin() );
4292 if ( !mEditBuffer || !mDataProvider )
4295 if ( mGeometryOptions->isActive() )
4297 for (
auto feature = features.begin(); feature != features.end(); ++feature )
4300 mGeometryOptions->apply( geom );
4305 bool res = mEditBuffer->addFeatures( features );
4308 if ( res && mJoinBuffer->containsJoins() )
4309 res = mJoinBuffer->addFeatures( features );
4327 if ( exp.isField() )
4350 if ( !mDisplayExpression.isEmpty() || mFields.isEmpty() )
4352 return mDisplayExpression;
4357 if ( !candidateName.isEmpty() )
4380 return ( mEditBuffer && mDataProvider );
4392bool QgsVectorLayer::isReadOnly()
const
4396 return mDataSourceReadOnly || mReadOnly;
4404 if ( readonly && mEditBuffer )
4408 if ( !readonly && mDataSourceReadOnly )
4411 mReadOnly = readonly;
4420 if ( ! mDataProvider )
4423 if ( mDataSourceReadOnly )
4434 return mEditBuffer && mEditBuffer->isModified();
4441 bool auxiliaryField =
false;
4445 return auxiliaryField;
4452 auxiliaryField =
true;
4455 return auxiliaryField;
4471 if ( r != mRenderer )
4475 mSymbolFeatureCounted =
false;
4476 mSymbolFeatureCountMap.clear();
4477 mSymbolFeatureIdMap.clear();
4482 if ( refreshRate <= 0 )
4484 mRefreshRendererTimer->stop();
4485 mRefreshRendererTimer->setInterval( 0 );
4489 mRefreshRendererTimer->setInterval( 1000 / refreshRate );
4490 mRefreshRendererTimer->start();
4505 mRendererGenerators << generator;
4513 for (
int i = mRendererGenerators.count() - 1; i >= 0; --i )
4515 if ( mRendererGenerators.at( i )->id() ==
id )
4517 delete mRendererGenerators.at( i );
4518 mRendererGenerators.removeAt( i );
4528 QList< const QgsFeatureRendererGenerator * > res;
4538 if ( !mDataProvider )
4542 if ( mDataProvider->transaction() )
4544 QString ignoredError;
4545 mDataProvider->transaction()->createSavepoint( ignoredError );
4548 mEditCommandActive =
true;
4556 if ( !mDataProvider )
4561 mEditCommandActive =
false;
4562 if ( !mDeletedFids.isEmpty() )
4566 mSelectedFeatureIds.subtract( mDeletedFids );
4569 mDeletedFids.clear();
4578 if ( !mDataProvider )
4589 auto command = std::make_unique< QUndoCommand >();
4590 command->setObsolete(
true );
4593 mEditCommandActive =
false;
4594 mDeletedFids.clear();
4602 return mJoinBuffer->addJoin( joinInfo );
4609 return mJoinBuffer->removeJoin( joinLayerId );
4616 return mJoinBuffer->vectorJoins();
4624 mExpressionFieldBuffer->addExpression( exp, fld );
4626 int idx = mFields.indexFromName( fld.
name() );
4636 int oi = mFields.fieldOriginIndex( index );
4637 mExpressionFieldBuffer->removeExpression( oi );
4649 int oi = mFields.fieldOriginIndex( index );
4650 if ( oi < 0 || oi >= mExpressionFieldBuffer->expressions().size() )
4653 return mExpressionFieldBuffer->expressions().at( oi ).cachedExpression.expression();
4660 int oi = mFields.fieldOriginIndex( index );
4661 mExpressionFieldBuffer->updateExpression( oi, exp );
4669 if ( !mDataProvider )
4674 mFields = mDataProvider->fields();
4678 mEditBuffer->updateFields( mFields );
4681 if ( mJoinBuffer->containsJoins() )
4682 mJoinBuffer->updateFields( mFields );
4684 if ( mExpressionFieldBuffer )
4685 mExpressionFieldBuffer->updateFields( mFields );
4688 for (
auto aliasIt = mAttributeAliasMap.constBegin(); aliasIt != mAttributeAliasMap.constEnd(); ++aliasIt )
4690 int index = mFields.lookupField( aliasIt.key() );
4694 mFields[ index ].setAlias( aliasIt.value() );
4697 for (
auto splitPolicyIt = mAttributeSplitPolicy.constBegin(); splitPolicyIt != mAttributeSplitPolicy.constEnd(); ++splitPolicyIt )
4699 int index = mFields.lookupField( splitPolicyIt.key() );
4703 mFields[ index ].setSplitPolicy( splitPolicyIt.value() );
4706 for (
auto duplicatePolicyIt = mAttributeDuplicatePolicy.constBegin(); duplicatePolicyIt != mAttributeDuplicatePolicy.constEnd(); ++duplicatePolicyIt )
4708 int index = mFields.lookupField( duplicatePolicyIt.key() );
4712 mFields[ index ].setDuplicatePolicy( duplicatePolicyIt.value() );
4715 for (
auto mergePolicyIt = mAttributeMergePolicy.constBegin(); mergePolicyIt != mAttributeMergePolicy.constEnd(); ++mergePolicyIt )
4717 int index = mFields.lookupField( mergePolicyIt.key() );
4721 mFields[ index ].setMergePolicy( mergePolicyIt.value() );
4725 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.
constBegin();
4726 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
4728 int index = mFields.lookupField( flagsIt.key() );
4732 mFields[index].setConfigurationFlags( flagsIt.value() );
4736 mDefaultValueOnUpdateFields.clear();
4737 QMap< QString, QgsDefaultValue >::const_iterator defaultIt = mDefaultExpressionMap.constBegin();
4738 for ( ; defaultIt != mDefaultExpressionMap.constEnd(); ++defaultIt )
4740 int index = mFields.lookupField( defaultIt.key() );
4744 mFields[ index ].setDefaultValueDefinition( defaultIt.value() );
4745 if ( defaultIt.value().applyOnUpdate() )
4746 mDefaultValueOnUpdateFields.insert( index );
4749 QMap< QString, QgsFieldConstraints::Constraints >::const_iterator constraintIt = mFieldConstraints.constBegin();
4750 for ( ; constraintIt != mFieldConstraints.constEnd(); ++constraintIt )
4752 int index = mFields.lookupField( constraintIt.key() );
4765 mFields[ index ].setConstraints( constraints );
4768 QMap< QString, QPair< QString, QString > >::const_iterator constraintExpIt = mFieldConstraintExpressions.constBegin();
4769 for ( ; constraintExpIt != mFieldConstraintExpressions.constEnd(); ++constraintExpIt )
4771 int index = mFields.lookupField( constraintExpIt.key() );
4782 mFields[ index ].setConstraints( constraints );
4786 for ( ; constraintStrengthIt != mFieldConstraintStrength.constEnd(); ++constraintStrengthIt )
4788 int index = mFields.lookupField( constraintStrengthIt.key().first );
4798 constraints.
setConstraintStrength( constraintStrengthIt.key().second, constraintStrengthIt.value() );
4799 mFields[ index ].setConstraints( constraints );
4802 auto fieldWidgetIterator = mFieldWidgetSetups.constBegin();
4803 for ( ; fieldWidgetIterator != mFieldWidgetSetups.constEnd(); ++ fieldWidgetIterator )
4805 int index = mFields.indexOf( fieldWidgetIterator.key() );
4809 mFields[index].setEditorWidgetSetup( fieldWidgetIterator.value() );
4812 if ( oldFields != mFields )
4815 mEditFormConfig.setFields( mFields );
4824 if ( index < 0 || index >= mFields.count() || !mDataProvider )
4827 QString expression = mFields.at( index ).defaultValueDefinition().expression();
4828 if ( expression.isEmpty() )
4829 return mDataProvider->defaultValue( index );
4832 std::unique_ptr< QgsExpressionContext > tempContext;
4837 evalContext = tempContext.get();
4872 if ( index < 0 || index >= mFields.count() )
4877 mDefaultExpressionMap.insert( mFields.at( index ).name(), definition );
4881 mDefaultExpressionMap.remove( mFields.at( index ).name() );
4890 if ( index < 0 || index >= mFields.count() )
4893 return mFields.at( index ).defaultValueDefinition();
4901 if ( !mDataProvider )
4914 uniqueValues = mDataProvider->uniqueValues( index, limit );
4916 if ( mEditBuffer && ! mDataProvider->transaction() )
4920 for (
const QVariant &v : constUniqueValues )
4922 vals << v.toString();
4926 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4927 while ( addedIt.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4930 QVariant v = addedIt.value().attribute( index );
4933 QString vs = v.toString();
4934 if ( !vals.contains( vs ) )
4942 QMapIterator< QgsFeatureId, QgsAttributeMap > it( mEditBuffer->changedAttributeValues() );
4943 while ( it.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4946 QVariant v = it.value().value( index );
4949 QString vs = v.toString();
4950 if ( !vals.contains( vs ) )
4964 if ( mDataProvider->transaction() || (
4965 mEditBuffer->deletedFeatureIds().isEmpty() &&
4966 mEditBuffer->addedFeatures().isEmpty() &&
4967 !mEditBuffer->deletedAttributeIds().contains( index ) &&
4968 mEditBuffer->changedAttributeValues().isEmpty() ) )
4970 uniqueValues = mDataProvider->uniqueValues( index, limit );
4983 .setSubsetOfAttributes( attList ) );
4986 QVariant currentValue;
4987 QHash<QString, QVariant> val;
4991 val.insert( currentValue.toString(), currentValue );
4992 if ( limit >= 0 && val.size() >= limit )
4998 return qgis::listToSet( val.values() );
5002 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueValues()",
"Unknown source of the field!" );
5010 QStringList results;
5011 if ( !mDataProvider )
5024 results = mDataProvider->uniqueStringsMatching( index, substring, limit, feedback );
5026 if ( mEditBuffer && ! mDataProvider->transaction() )
5029 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
5030 while ( addedIt.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
5033 QVariant v = addedIt.value().attribute( index );
5036 QString vs = v.toString();
5037 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
5044 QMapIterator< QgsFeatureId, QgsAttributeMap > it( mEditBuffer->changedAttributeValues() );
5045 while ( it.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
5048 QVariant v = it.value().value( index );
5051 QString vs = v.toString();
5052 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
5065 if ( mDataProvider->transaction() || ( mEditBuffer->deletedFeatureIds().isEmpty() &&
5066 mEditBuffer->addedFeatures().isEmpty() &&
5067 !mEditBuffer->deletedAttributeIds().contains( index ) &&
5068 mEditBuffer->changedAttributeValues().isEmpty() ) )
5070 return mDataProvider->uniqueStringsMatching( index, substring, limit, feedback );
5083 QString fieldName = mFields.at( index ).name();
5084 request.
setFilterExpression( QStringLiteral(
"\"%1\" ILIKE '%%2%'" ).arg( fieldName, substring ) );
5088 QString currentValue;
5091 currentValue = f.
attribute( index ).toString();
5092 if ( !results.contains( currentValue ) )
5093 results << currentValue;
5095 if ( ( limit >= 0 && results.size() >= limit ) || ( feedback && feedback->
isCanceled() ) )
5105 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueStringsMatching()",
"Unknown source of the field!" );
5114 minimumOrMaximumValue( index, &minimum,
nullptr );
5123 minimumOrMaximumValue( index,
nullptr, &maximum );
5131 minimumOrMaximumValue( index, &minimum, &maximum );
5134void QgsVectorLayer::minimumOrMaximumValue(
int index, QVariant *minimum, QVariant *maximum )
const
5139 *minimum = QVariant();
5141 *maximum = QVariant();
5143 if ( !mDataProvider )
5160 *minimum = mDataProvider->minimumValue( index );
5162 *maximum = mDataProvider->maximumValue( index );
5163 if ( mEditBuffer && ! mDataProvider->transaction() )
5166 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
5167 while ( addedIt.hasNext() )
5170 const QVariant v = addedIt.value().attribute( index );
5177 QMapIterator< QgsFeatureId, QgsAttributeMap > it( mEditBuffer->changedAttributeValues() );
5178 while ( it.hasNext() )
5181 const QVariant v = it.value().value( index );
5194 if ( mDataProvider->transaction() || ( mEditBuffer->deletedFeatureIds().isEmpty() &&
5195 mEditBuffer->addedFeatures().isEmpty() &&
5196 !mEditBuffer->deletedAttributeIds().contains( index ) &&
5197 mEditBuffer->changedAttributeValues().isEmpty() ) )
5200 *minimum = mDataProvider->minimumValue( index );
5202 *maximum = mDataProvider->maximumValue( index );
5215 QgsFeatureIterator fit =
getFeatures( QgsFeatureRequest()
5217 .setSubsetOfAttributes( attList ) );
5220 bool firstValue =
true;
5223 const QVariant currentValue = f.
attribute( index );
5230 *minimum = currentValue;
5232 *maximum = currentValue;
5237 if ( minimum && currentValue.isValid() &&
qgsVariantLessThan( currentValue, *minimum ) )
5238 *minimum = currentValue;
5240 *maximum = currentValue;
5247 Q_ASSERT_X(
false,
"QgsVectorLayer::minimumOrMaximumValue()",
"Unknown source of the field!" );
5250void QgsVectorLayer::createEditBuffer()
5257 if ( mDataProvider->transaction() )
5261 connect( mDataProvider->transaction(), &
QgsTransaction::dirtied,
this, &QgsVectorLayer::onDirtyTransaction, Qt::UniqueConnection );
5286void QgsVectorLayer::clearEditBuffer()
5291 mEditBuffer =
nullptr;
5306 if ( !mDataProvider )
5309 *
error = tr(
"Layer is invalid" );
5315 if ( attrIndex >= 0 )
5322 bool providerOk =
false;
5323 QVariant val = mDataProvider->aggregate(
aggregate, attrIndex, parameters, context, providerOk, fids );
5337 c.setFidsFilter( *fids );
5338 c.setParameters( parameters );
5339 bool aggregateOk =
false;
5340 const QVariant result =
c.calculate(
aggregate, fieldOrExpression, context, &aggregateOk, feedback );
5343 if ( !aggregateOk &&
error )
5366 return mFeatureBlendMode;
5369void QgsVectorLayer::readSldLabeling(
const QDomNode &node )
5376 QDomElement element = node.toElement();
5377 if ( element.isNull() )
5380 QDomElement userStyleElem = element.firstChildElement( QStringLiteral(
"UserStyle" ) );
5381 if ( userStyleElem.isNull() )
5383 QgsDebugMsgLevel( QStringLiteral(
"Info: UserStyle element not found." ), 4 );
5387 QDomElement featTypeStyleElem = userStyleElem.firstChildElement( QStringLiteral(
"FeatureTypeStyle" ) );
5388 if ( featTypeStyleElem.isNull() )
5390 QgsDebugMsgLevel( QStringLiteral(
"Info: FeatureTypeStyle element not found." ), 4 );
5395 QDomElement mergedFeatTypeStyle = featTypeStyleElem.cloneNode(
false ).toElement();
5400 bool needRuleBasedLabeling =
false;
5403 while ( !featTypeStyleElem.isNull() )
5405 QDomElement ruleElem = featTypeStyleElem.firstChildElement( QStringLiteral(
"Rule" ) );
5406 while ( !ruleElem.isNull() )
5410 bool hasTextSymbolizer =
false;
5411 bool hasRuleBased =
false;
5412 QDomElement ruleChildElem = ruleElem.firstChildElement();
5413 while ( !ruleChildElem.isNull() )
5416 if ( ruleChildElem.localName() == QLatin1String(
"Filter" ) ||
5417 ruleChildElem.localName() == QLatin1String(
"MinScaleDenominator" ) ||
5418 ruleChildElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
5420 hasRuleBased =
true;
5423 else if ( ruleChildElem.localName() == QLatin1String(
"TextSymbolizer" ) )
5425 QgsDebugMsgLevel( QStringLiteral(
"Info: TextSymbolizer element found" ), 4 );
5426 hasTextSymbolizer =
true;
5429 ruleChildElem = ruleChildElem.nextSiblingElement();
5432 if ( hasTextSymbolizer )
5437 mergedFeatTypeStyle.appendChild( ruleElem.cloneNode().toElement() );
5441 QgsDebugMsgLevel( QStringLiteral(
"Info: Filter or Min/MaxScaleDenominator element found: need a RuleBasedLabeling" ), 4 );
5442 needRuleBasedLabeling =
true;
5447 if ( ruleCount > 1 )
5449 QgsDebugMsgLevel( QStringLiteral(
"Info: More Rule elements found: need a RuleBasedLabeling" ), 4 );
5450 needRuleBasedLabeling =
true;
5454 if ( ruleCount == 0 )
5456 needRuleBasedLabeling =
false;
5459 ruleElem = ruleElem.nextSiblingElement( QStringLiteral(
"Rule" ) );
5461 featTypeStyleElem = featTypeStyleElem.nextSiblingElement( QStringLiteral(
"FeatureTypeStyle" ) );
5464 if ( ruleCount == 0 )
5466 QgsDebugMsgLevel( QStringLiteral(
"Info: No TextSymbolizer element." ), 4 );
5470 QDomElement ruleElem = mergedFeatTypeStyle.firstChildElement( QStringLiteral(
"Rule" ) );
5472 if ( needRuleBasedLabeling )
5475 QgsRuleBasedLabeling::Rule *rootRule =
new QgsRuleBasedLabeling::Rule(
nullptr );
5476 while ( !ruleElem.isNull() )
5479 QString label, description, filterExp;
5480 int scaleMinDenom = 0, scaleMaxDenom = 0;
5481 QgsPalLayerSettings settings;
5484 QDomElement childElem = ruleElem.firstChildElement();
5485 while ( !childElem.isNull() )
5487 if ( childElem.localName() == QLatin1String(
"Name" ) )
5491 if ( label.isEmpty() )
5492 label = childElem.firstChild().nodeValue();
5494 else if ( childElem.localName() == QLatin1String(
"Description" ) )
5497 QDomElement titleElem = childElem.firstChildElement( QStringLiteral(
"Title" ) );
5498 if ( !titleElem.isNull() )
5500 label = titleElem.firstChild().nodeValue();
5503 QDomElement abstractElem = childElem.firstChildElement( QStringLiteral(
"Abstract" ) );
5504 if ( !abstractElem.isNull() )
5506 description = abstractElem.firstChild().nodeValue();
5509 else if ( childElem.localName() == QLatin1String(
"Abstract" ) )
5512 description = childElem.firstChild().nodeValue();
5514 else if ( childElem.localName() == QLatin1String(
"Title" ) )
5517 label = childElem.firstChild().nodeValue();
5519 else if ( childElem.localName() == QLatin1String(
"Filter" ) )
5535 else if ( childElem.localName() == QLatin1String(
"MinScaleDenominator" ) )
5538 int v = childElem.firstChild().nodeValue().toInt( &ok );
5542 else if ( childElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
5545 int v = childElem.firstChild().nodeValue().toInt( &ok );
5549 else if ( childElem.localName() == QLatin1String(
"TextSymbolizer" ) )
5551 readSldTextSymbolizer( childElem, settings );
5554 childElem = childElem.nextSiblingElement();
5557 QgsRuleBasedLabeling::Rule *ruleLabeling =
new QgsRuleBasedLabeling::Rule(
new QgsPalLayerSettings( settings ), scaleMinDenom, scaleMaxDenom, filterExp, label );
5560 ruleElem = ruleElem.nextSiblingElement();
5563 setLabeling(
new QgsRuleBasedLabeling( rootRule ) );
5570 QDomElement textSymbolizerElem = ruleElem.firstChildElement( QStringLiteral(
"TextSymbolizer" ) );
5571 QgsPalLayerSettings s;
5572 if ( readSldTextSymbolizer( textSymbolizerElem, s ) )
5574 setLabeling(
new QgsVectorLayerSimpleLabeling( s ) );
5580bool QgsVectorLayer::readSldTextSymbolizer(
const QDomNode &node,
QgsPalLayerSettings &settings )
const
5584 if ( node.localName() != QLatin1String(
"TextSymbolizer" ) )
5586 QgsDebugMsgLevel( QStringLiteral(
"Not a TextSymbolizer element: %1" ).arg( node.localName() ), 3 );
5589 QDomElement textSymbolizerElem = node.toElement();
5591 QDomElement labelElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Label" ) );
5592 if ( !labelElem.isNull() )
5594 QDomElement propertyNameElem = labelElem.firstChildElement( QStringLiteral(
"PropertyName" ) );
5595 if ( !propertyNameElem.isNull() )
5600 QString labelAttribute = propertyNameElem.text();
5604 int fieldIndex = mFields.lookupField( labelAttribute );
5605 if ( fieldIndex == -1 )
5608 QgsExpression exp( labelAttribute );
5621 QgsDebugMsgLevel( QStringLiteral(
"Info: PropertyName element not found." ), 4 );
5632 if ( textSymbolizerElem.hasAttribute( QStringLiteral(
"uom" ) ) )
5637 QString fontFamily = QStringLiteral(
"Sans-Serif" );
5638 int fontPointSize = 10;
5640 int fontWeight = -1;
5641 bool fontItalic =
false;
5642 bool fontUnderline =
false;
5645 QDomElement fontElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Font" ) );
5646 if ( !fontElem.isNull() )
5649 for ( QgsStringMap::iterator it = fontSvgParams.begin(); it != fontSvgParams.end(); ++it )
5651 QgsDebugMsgLevel( QStringLiteral(
"found fontSvgParams %1: %2" ).arg( it.key(), it.value() ), 4 );
5653 if ( it.key() == QLatin1String(
"font-family" ) )
5655 fontFamily = it.value();
5657 else if ( it.key() == QLatin1String(
"font-style" ) )
5659 fontItalic = ( it.value() == QLatin1String(
"italic" ) ) || ( it.value() == QLatin1String(
"Italic" ) );
5661 else if ( it.key() == QLatin1String(
"font-size" ) )
5664 int fontSize = it.value().toInt( &ok );
5667 fontPointSize = fontSize;
5668 fontUnitSize = sldUnitSize;
5671 else if ( it.key() == QLatin1String(
"font-weight" ) )
5673 if ( ( it.value() == QLatin1String(
"bold" ) ) || ( it.value() == QLatin1String(
"Bold" ) ) )
5674 fontWeight = QFont::Bold;
5676 else if ( it.key() == QLatin1String(
"font-underline" ) )
5678 fontUnderline = ( it.value() == QLatin1String(
"underline" ) ) || ( it.value() == QLatin1String(
"Underline" ) );
5683 QgsTextFormat format;
5684 QFont font( fontFamily, fontPointSize, fontWeight, fontItalic );
5685 font.setUnderline( fontUnderline );
5687 format.
setSize( fontPointSize );
5691 QDomElement fillElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Fill" ) );
5693 Qt::BrushStyle textBrush = Qt::SolidPattern;
5695 if ( textColor.isValid() )
5697 QgsDebugMsgLevel( QStringLiteral(
"Info: textColor %1." ).arg( QVariant( textColor ).toString() ), 4 );
5701 QgsTextBufferSettings bufferSettings;
5704 QDomElement haloElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Halo" ) );
5705 if ( !haloElem.isNull() )
5710 QDomElement radiusElem = haloElem.firstChildElement( QStringLiteral(
"Radius" ) );
5711 if ( !radiusElem.isNull() )
5714 double bufferSize = radiusElem.text().toDouble( &ok );
5717 bufferSettings.
setSize( bufferSize );
5722 QDomElement haloFillElem = haloElem.firstChildElement( QStringLiteral(
"Fill" ) );
5724 Qt::BrushStyle bufferBrush = Qt::SolidPattern;
5726 if ( bufferColor.isValid() )
5728 QgsDebugMsgLevel( QStringLiteral(
"Info: bufferColor %1." ).arg( QVariant( bufferColor ).toString() ), 4 );
5729 bufferSettings.
setColor( bufferColor );
5734 QDomElement labelPlacementElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"LabelPlacement" ) );
5735 if ( !labelPlacementElem.isNull() )
5738 QDomElement pointPlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"PointPlacement" ) );
5739 if ( !pointPlacementElem.isNull() )
5747 QDomElement displacementElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Displacement" ) );
5748 if ( !displacementElem.isNull() )
5750 QDomElement displacementXElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementX" ) );
5751 if ( !displacementXElem.isNull() )
5754 double xOffset = displacementXElem.text().toDouble( &ok );
5761 QDomElement displacementYElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementY" ) );
5762 if ( !displacementYElem.isNull() )
5765 double yOffset = displacementYElem.text().toDouble( &ok );
5773 QDomElement anchorPointElem = pointPlacementElem.firstChildElement( QStringLiteral(
"AnchorPoint" ) );
5774 if ( !anchorPointElem.isNull() )
5776 QDomElement anchorPointXElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointX" ) );
5777 if ( !anchorPointXElem.isNull() )
5780 double xOffset = anchorPointXElem.text().toDouble( &ok );
5787 QDomElement anchorPointYElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointY" ) );
5788 if ( !anchorPointYElem.isNull() )
5791 double yOffset = anchorPointYElem.text().toDouble( &ok );
5800 QDomElement rotationElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Rotation" ) );
5801 if ( !rotationElem.isNull() )
5804 double rotation = rotationElem.text().toDouble( &ok );
5814 QDomElement linePlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"LinePlacement" ) );
5815 if ( !linePlacementElem.isNull() )
5824 QDomElement vendorOptionElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"VendorOption" ) );
5825 while ( !vendorOptionElem.isNull() && vendorOptionElem.localName() == QLatin1String(
"VendorOption" ) )
5827 QString optionName = vendorOptionElem.attribute( QStringLiteral(
"name" ) );
5828 QString optionValue;
5829 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::TextNode )
5831 optionValue = vendorOptionElem.firstChild().nodeValue();
5835 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::ElementNode &&
5836 vendorOptionElem.firstChild().localName() == QLatin1String(
"Literal" ) )
5839 optionValue = vendorOptionElem.firstChild().firstChild().nodeValue();
5843 QgsDebugError( QStringLiteral(
"unexpected child of %1 named %2" ).arg( vendorOptionElem.localName(), optionName ) );
5847 if ( !optionName.isEmpty() && !optionValue.isEmpty() )
5849 vendorOptions[ optionName ] = optionValue;
5852 vendorOptionElem = vendorOptionElem.nextSiblingElement();
5854 if ( !vendorOptions.isEmpty() )
5856 for ( QgsStringMap::iterator it = vendorOptions.begin(); it != vendorOptions.end(); ++it )
5858 if ( it.key() == QLatin1String(
"underlineText" ) && it.value() == QLatin1String(
"true" ) )
5860 font.setUnderline(
true );
5863 else if ( it.key() == QLatin1String(
"strikethroughText" ) && it.value() == QLatin1String(
"true" ) )
5865 font.setStrikeOut(
true );
5868 else if ( it.key() == QLatin1String(
"maxDisplacement" ) )
5872 else if ( it.key() == QLatin1String(
"followLine" ) && it.value() == QLatin1String(
"true" ) )
5883 else if ( it.key() == QLatin1String(
"maxAngleDelta" ) )
5886 double angle = it.value().toDouble( &ok );
5894 else if ( it.key() == QLatin1String(
"conflictResolution" ) && it.value() == QLatin1String(
"false" ) )
5898 else if ( it.key() == QLatin1String(
"forceLeftToRight" ) && it.value() == QLatin1String(
"false" ) )
5902 else if ( it.key() == QLatin1String(
"group" ) && it.value() == QLatin1String(
"yes" ) )
5906 else if ( it.key() == QLatin1String(
"labelAllGroup" ) && it.value() == QLatin1String(
"true" ) )
5922 return mEditFormConfig;
5933 mEditFormConfig.onRelationsLoaded();
5943 if ( config.isEmpty() )
5979 if ( !mDiagramLayerSettings )
5981 *mDiagramLayerSettings = s;
5989 QString myMetadata = QStringLiteral(
"<html><head></head>\n<body>\n" );
5994 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Information from provider" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5995 myMetadata += QLatin1String(
"<table class=\"list-view\">\n" );
6000 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Storage" ) + QStringLiteral(
"</td><td>" ) +
storageType() + QStringLiteral(
"</td></tr>\n" );
6006 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Comment" ) + QStringLiteral(
"</td><td>" ) +
dataComment() + QStringLiteral(
"</td></tr>\n" );
6012 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Encoding" ) + QStringLiteral(
"</td><td>" ) + provider->encoding() + QStringLiteral(
"</td></tr>\n" );
6013 myMetadata += provider->htmlMetadata();
6028 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Geometry type" ) + QStringLiteral(
"</td><td>" ) + typeString + QStringLiteral(
"</td></tr>\n" );
6034 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Geometry column" ) + QStringLiteral(
"</td><td>" ) + provider->geometryColumnName() + QStringLiteral(
"</td></tr>\n" );
6041 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Extent" ) + QStringLiteral(
"</td><td>" ) + extentAsStr + QStringLiteral(
"</td></tr>\n" );
6045 QLocale locale = QLocale();
6046 locale.setNumberOptions( locale.numberOptions() &= ~QLocale::NumberOption::OmitGroupSeparator );
6047 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
6048 + tr(
"Feature count" ) + QStringLiteral(
"</td><td>" )
6050 + QStringLiteral(
"</td></tr>\n" );
6053 myMetadata += QLatin1String(
"</table>\n<br><br>" );
6062 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Identification" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6063 myMetadata += htmlFormatter.identificationSectionHtml( );
6064 myMetadata += QLatin1String(
"<br><br>\n" );
6067 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Extent" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6068 myMetadata += htmlFormatter.extentSectionHtml(
isSpatial() );
6069 myMetadata += QLatin1String(
"<br><br>\n" );
6072 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Access" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6073 myMetadata += htmlFormatter.accessSectionHtml( );
6074 myMetadata += QLatin1String(
"<br><br>\n" );
6077 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Fields" ) + QStringLiteral(
"</h1>\n<hr>\n<table class=\"list-view\">\n" );
6081 if ( !pkAttrList.isEmpty() )
6083 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Primary key attributes" ) + QStringLiteral(
"</td><td>" );
6084 const auto constPkAttrList = pkAttrList;
6085 for (
int idx : constPkAttrList )
6089 myMetadata += QLatin1String(
"</td></tr>\n" );
6095 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Count" ) + QStringLiteral(
"</td><td>" ) + QString::number( myFields.
size() ) + QStringLiteral(
"</td></tr>\n" );
6097 myMetadata += QLatin1String(
"</table>\n<br><table width=\"100%\" class=\"tabular-view\">\n" );
6098 myMetadata += QLatin1String(
"<tr><th>" ) + tr(
"Field" ) + QLatin1String(
"</th><th>" ) + tr(
"Type" ) + QLatin1String(
"</th><th>" ) + tr(
"Length" ) + QLatin1String(
"</th><th>" ) + tr(
"Precision" ) + QLatin1String(
"</th><th>" ) + tr(
"Comment" ) + QLatin1String(
"</th></tr>\n" );
6100 for (
int i = 0; i < myFields.
size(); ++i )
6105 rowClass = QStringLiteral(
"class=\"odd-row\"" );
6106 myMetadata += QLatin1String(
"<tr " ) + rowClass + QLatin1String(
"><td>" ) + myField.
displayNameWithAlias() + QLatin1String(
"</td><td>" ) + myField.
typeName() + QLatin1String(
"</td><td>" ) + QString::number( myField.
length() ) + QLatin1String(
"</td><td>" ) + QString::number( myField.
precision() ) + QLatin1String(
"</td><td>" ) + myField.
comment() + QLatin1String(
"</td></tr>\n" );
6110 myMetadata += QLatin1String(
"</table>\n<br><br>" );
6113 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Contacts" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6114 myMetadata += htmlFormatter.contactsSectionHtml( );
6115 myMetadata += QLatin1String(
"<br><br>\n" );
6118 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Links" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6119 myMetadata += htmlFormatter.linksSectionHtml( );
6120 myMetadata += QLatin1String(
"<br><br>\n" );
6123 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"History" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6124 myMetadata += htmlFormatter.historySectionHtml( );
6125 myMetadata += QLatin1String(
"<br><br>\n" );
6129 myMetadata += QLatin1String(
"\n</body>\n</html>\n" );
6133void QgsVectorLayer::invalidateSymbolCountedFlag()
6137 mSymbolFeatureCounted =
false;
6140void QgsVectorLayer::onFeatureCounterCompleted()
6145 mFeatureCounter =
nullptr;
6148void QgsVectorLayer::onFeatureCounterTerminated()
6152 mFeatureCounter =
nullptr;
6155void QgsVectorLayer::onJoinedFieldsChanged()
6172void QgsVectorLayer::onFeatureDeleted(
QgsFeatureId fid )
6178 if ( mEditCommandActive || mCommitChangesActive )
6180 mDeletedFids << fid;
6184 mSelectedFeatureIds.remove( fid );
6191void QgsVectorLayer::onRelationsLoaded()
6195 mEditFormConfig.onRelationsLoaded();
6198void QgsVectorLayer::onSymbolsCounted()
6202 if ( mFeatureCounter )
6204 mSymbolFeatureCounted =
true;
6205 mSymbolFeatureCountMap = mFeatureCounter->symbolFeatureCountMap();
6206 mSymbolFeatureIdMap = mFeatureCounter->symbolFeatureIdMap();
6216 return p->relationManager()->referencingRelations(
this, idx );
6225 return mWeakRelations;
6232 mWeakRelations = relations;
6241 QString joinKey = mAuxiliaryLayerKey;
6242 if ( !key.isEmpty() )
6245 if ( storage.
isValid() && !joinKey.isEmpty() )
6270 mAuxiliaryLayerKey.clear();
6272 if ( mAuxiliaryLayer )
6285 mAuxiliaryLayer.reset( alayer );
6286 if ( mAuxiliaryLayer )
6287 mAuxiliaryLayer->setParent(
this );
6295 return mAuxiliaryLayer.get();
6302 return mAuxiliaryLayer.get();
6309 if ( mDataProvider )
6314void QgsVectorLayer::emitDataChanged()
6318 if ( mDataChangedFired )
6325 if (
QgsVectorLayer *layerWeDependUpon = qobject_cast<QgsVectorLayer *>( sender() );
6326 layerWeDependUpon && layerWeDependUpon->mCommitChangesActive )
6331 mDataChangedFired =
true;
6333 mDataChangedFired =
false;
6340 QSet<QgsMapLayerDependency> deps;
6341 const auto constODeps = oDeps;
6348 QSet<QgsMapLayerDependency> toAdd = deps -
dependencies();
6368 if ( mDataProvider )
6392 if ( ! toAdd.isEmpty() )
6402 if ( fieldIndex < 0 || fieldIndex >= mFields.count() || !mDataProvider )
6410 constraints |= mDataProvider->fieldConstraints( mFields.fieldOriginIndex( fieldIndex ) );
6420 QMap< QgsFieldConstraints::Constraint, QgsFieldConstraints::ConstraintStrength > m;
6422 if ( fieldIndex < 0 || fieldIndex >= mFields.count() )
6425 QString
name = mFields.at( fieldIndex ).name();
6428 for ( ; conIt != mFieldConstraintStrength.constEnd(); ++conIt )
6430 if ( conIt.key().first ==
name )
6432 m[ conIt.key().second ] = mFieldConstraintStrength.value( conIt.key() );
6443 if ( index < 0 || index >= mFields.count() )
6446 QString
name = mFields.at( index ).name();
6450 constraints |= constraint;
6451 mFieldConstraints.insert(
name, constraints );
6453 mFieldConstraintStrength.insert( qMakePair(
name, constraint ), strength );
6462 if ( index < 0 || index >= mFields.count() )
6465 QString
name = mFields.at( index ).name();
6469 constraints &= ~constraint;
6470 mFieldConstraints.insert(
name, constraints );
6472 mFieldConstraintStrength.remove( qMakePair(
name, constraint ) );
6481 if ( index < 0 || index >= mFields.count() )
6484 return mFields.at( index ).constraints().constraintExpression();
6491 if ( index < 0 || index >= mFields.count() )
6494 return mFields.at( index ).constraints().constraintDescription();
6501 if ( index < 0 || index >= mFields.count() )
6504 if ( expression.isEmpty() )
6506 mFieldConstraintExpressions.remove( mFields.at( index ).name() );
6510 mFieldConstraintExpressions.insert( mFields.at( index ).name(), qMakePair( expression, description ) );
6519 if ( index < 0 || index >= mFields.count() )
6522 mFieldConfigurationFlags.insert( mFields.at( index ).name(),
flags );
6530 if ( index < 0 || index >= mFields.count() )
6533 flags.setFlag( flag, active );
6541 if ( index < 0 || index >= mFields.count() )
6544 return mFields.at( index ).configurationFlags();
6551 if ( index < 0 || index >= mFields.count() )
6555 mFieldWidgetSetups.remove( mFields.at( index ).name() );
6557 mFieldWidgetSetups.insert( mFields.at( index ).name(), setup );
6565 if ( index < 0 || index >= mFields.count() )
6568 return mFields.at( index ).editorWidgetSetup();
6576 if (
customProperty( QStringLiteral(
"labeling" ) ).toString() == QLatin1String(
"pal" ) )
6578 if (
customProperty( QStringLiteral(
"labeling/enabled" ), QVariant(
false ) ).toBool() )
6582 settings.readFromLayerCustomProperties(
this );
6589 for (
const QString &key : constCustomPropertyKeys )
6591 if ( key.startsWith( QLatin1String(
"labeling/" ) ) )
6603 return mAllowCommit;
6621 return mGeometryOptions.get();
6635 return mReadExtentFromXml;
6638void QgsVectorLayer::onDirtyTransaction(
const QString &sql,
const QString &name )
6643 if ( tr && mEditBuffer )
6645 qobject_cast<QgsVectorLayerEditPassthrough *>( mEditBuffer )->update( tr, sql,
name );
6651 QList<QgsVectorLayer *> layers;
6652 QMap<QgsVectorLayer *, QgsFeatureIds>::const_iterator i;
6655 if ( includeAuxiliaryLayers || !qobject_cast< QgsAuxiliaryLayer * >( i.key() ) )
6656 layers.append( i.key() );
Provides global constants and enumerations for use throughout the application.
@ Action
Expression functions.
@ FormInitCode
Map layers' action.
@ SelectAtId
Fast access to features using their ID.
@ CreateRenderer
Provider can create feature renderers using backend-specific formatting information....
@ CreateLabeling
Provider can set labeling settings using backend-specific formatting information. Since QGIS 3....
@ ReadLayerMetadata
Provider can read layer metadata from data store. Since QGIS 3.0. See QgsDataProvider::layerMetadata(...
@ DeleteFeatures
Allows deletion of features.
QFlags< VectorRenderingSimplificationFlag > VectorRenderingSimplificationFlags
Simplification flags for vector feature rendering.
@ Composition
Fix relation, related elements are part of the parent and a parent copy will copy any children or del...
@ Association
Loose relation, related elements are not part of the parent and a parent copy will not copy any child...
GeometryOperationResult
Success or failure of a geometry operation.
@ InvalidInputGeometryType
The input geometry (ring, part, split line, etc.) has not the correct geometry type.
@ Success
Operation succeeded.
@ SelectionIsEmpty
No features were selected.
@ AddRingNotInExistingFeature
The input ring doesn't have any existing ring to fit into.
@ AddRingNotClosed
The input ring is not closed.
@ SelectionIsGreaterThanOne
More than one features were selected.
@ LayerNotEditable
Cannot edit layer.
SpatialIndexPresence
Enumeration of spatial index presence states.
@ Unknown
Spatial index presence cannot be determined, index may or may not exist.
VectorRenderingSimplificationFlag
Simplification flags for vector feature rendering.
@ NoSimplification
No simplification can be applied.
@ OverPoint
Arranges candidates over a point (or centroid of a polygon), or at a preset offset from the point....
@ Curved
Arranges candidates following the curvature of a line feature. Applies to line layers only.
@ AroundPoint
Arranges candidates in a circle around a point (or centroid of a polygon). Applies to point or polygo...
@ Line
Arranges candidates parallel to a generalised line representing the feature or parallel to a polygon'...
@ Horizontal
Arranges horizontal candidates scattered throughout a polygon feature. Applies to polygon layers only...
@ PerimeterCurved
Arranges candidates following the curvature of a polygon's boundary. Applies to polygon layers only.
QFlags< VectorLayerTypeFlag > VectorLayerTypeFlags
Vector layer type flags.
VectorSimplificationAlgorithm
Simplification algorithms for vector features.
@ Distance
The simplification uses the distance between points to remove duplicate points.
@ File
Load the Python code from an external file.
@ Environment
Use the Python code available in the Python environment.
@ NoSource
Do not use Python code at all.
@ Dialog
Use the Python code provided in the dialog.
@ ExactIntersect
Use exact geometry intersection (slower) instead of bounding boxes.
@ SubsetOfAttributes
Fetch only a subset of attributes (setSubsetOfAttributes sets this flag).
@ NoGeometry
Geometry is not required. It may still be returned if e.g. required for a filter condition.
@ FastExtent3D
Provider's 3D extent retrieval via QgsDataProvider::extent3D() is always guaranteed to be trivial/fas...
@ FastExtent2D
Provider's 2D extent retrieval via QgsDataProvider::extent() is always guaranteed to be trivial/fast ...
@ BufferedGroups
Buffered transactional editing means that all editable layers in the buffered transaction group are t...
@ OpenUrl
Open URL action.
@ SubmitUrlMultipart
POST data to an URL using "multipart/form-data".
@ Windows
Windows specific.
@ SubmitUrlEncoded
POST data to an URL, using "application/x-www-form-urlencoded" or "application/json" if the body is v...
FieldDomainMergePolicy
Merge policy for field domains.
@ UnsetField
Clears the field value so that the data provider backend will populate using any backend triggers or ...
FieldDomainSplitPolicy
Split policy for field domains.
@ Duplicate
Duplicate original value.
BlendMode
Blending modes defining the available composition modes that can be used when painting.
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
@ Generated
A generated relation is a child of a polymorphic relation.
@ Normal
A normal relation.
FieldDuplicatePolicy
Duplicate policy for fields.
@ Duplicate
Duplicate original value.
static const float DEFAULT_MAPTOPIXEL_THRESHOLD
Default threshold between map coordinates and device coordinates for map2pixel simplification.
QFlags< DataProviderReadFlag > DataProviderReadFlags
Flags which control data provider construction.
FeatureAvailability
Possible return value for QgsFeatureSource::hasFeatures() to determine if a source is empty.
@ FeaturesMaybeAvailable
There may be features available in this source.
@ FeaturesAvailable
There is at least one feature available in this source.
@ NoFeaturesAvailable
There are certainly no features available in this source.
@ Provider
Field originates from the underlying data provider of the vector layer.
@ Edit
Field has been temporarily added in editing mode.
@ Unknown
The field origin has not been specified.
@ Expression
Field is calculated from an expression.
@ Join
Field originates from a joined layer.
RenderUnit
Rendering size units.
@ Points
Points (e.g., for font sizes).
@ LoadDefaultStyle
Reset the layer's style to the default for the datasource.
@ ForceReadOnly
Open layer in a read-only mode.
Aggregate
Available aggregates to calculate.
VertexMarkerType
Editing vertex markers, used for showing vertices during a edit operation.
@ SemiTransparentCircle
Semi-transparent circle marker.
VectorEditResult
Specifies the result of a vector layer edit operation.
@ Success
Edit operation was successful.
@ InvalidLayer
Edit failed due to invalid layer.
WkbType
The WKB type describes the number of dimensions a geometry has.
FieldConfigurationFlag
Configuration flags for fields These flags are meant to be user-configurable and are not describing a...
@ HideFromWfs
Field is not available if layer is served as WFS from QGIS server.
@ NoFlag
No flag is defined.
@ HideFromWms
Field is not available if layer is served as WMS from QGIS server.
@ AllowOverlapIfRequired
Avoids overlapping labels when possible, but permit overlaps if labels for features cannot otherwise ...
QFlags< FieldConfigurationFlag > FieldConfigurationFlags
Configuration flags for fields These flags are meant to be user-configurable and are not describing a...
@ AlwaysAllowUpsideDown
Show upside down for all labels, including dynamic ones.
SelectBehavior
Specifies how a selection should be applied.
@ SetSelection
Set selection, removing any existing selection.
@ AddToSelection
Add selection to current selection.
@ IntersectSelection
Modify current selection to include only select features which match.
@ RemoveFromSelection
Remove from current selection.
Abstract base class for objects which generate elevation profiles.
virtual bool writeXml(QDomElement &collectionElem, const QgsPropertiesDefinition &definitions) const
Writes the current state of the property collection into an XML element.
Abstract base class - its implementations define different approaches to the labeling of a vector lay...
static QgsAbstractVectorLayerLabeling * create(const QDomElement &element, const QgsReadWriteContext &context)
Try to create instance of an implementation based on the XML data.
Storage and management of actions associated with a layer.
QList< QgsAction > actions(const QString &actionScope=QString()) const
Returns a list of actions that are available in the given action scope.
QUuid addAction(Qgis::AttributeActionType type, const QString &name, const QString &command, bool capture=false)
Add an action with the given name and action details.
Utility class that encapsulates an action based on vector attributes.
Utility class for calculating aggregates for a field (or expression) over the features from a vector ...
static QgsNetworkContentFetcherRegistry * networkContentFetcherRegistry()
Returns the application's network content registry used for fetching temporary files during QGIS sess...
static QgsRuntimeProfiler * profiler()
Returns the application runtime profiler.
static QgsTaskManager * taskManager()
Returns the application's task manager, used for managing application wide background task handling.
A container for configuration of the attribute table.
void update(const QgsFields &fields)
Update the configuration with the given fields.
Allows managing the auxiliary storage for a vector layer.
QgsVectorLayerJoinInfo joinInfo() const
Returns information to use for joining with primary key and so on.
Providing some utility methods to manage auxiliary storage.
QgsAuxiliaryLayer * createAuxiliaryLayer(const QgsField &field, QgsVectorLayer *layer) const
Creates an auxiliary layer for a vector layer.
bool isValid() const
Returns the status of the auxiliary storage currently defined.
A 3-dimensional box composed of x, y, z coordinates.
QString toString(int precision=16) const
Returns a string representation of form xmin,ymin,zmin : xmax,ymax,zmax Coordinates will be truncated...
bool isEmpty() const
Returns true if the box is empty.
Holds conditional style information for a layer.
Represents a coordinate reference system (CRS).
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
Contains information about the context in which a coordinate transform is executed.
Abstract base class for curved geometry type.
virtual bool isClosed() const
Returns true if the curve is closed.
QgsCurve * clone() const override=0
Clones the geometry by performing a deep copy.
void dataChanged()
Emitted whenever a change is made to the data provider which may have caused changes in the provider'...
void fullExtentCalculated()
Emitted whenever a deferred extent calculation is completed by the provider.
virtual QString dataSourceUri(bool expandAuthConfig=false) const
Gets the data source specification.
Stores the component parts of a data source URI (e.g.
bool useEstimatedMetadata() const
Returns true if estimated metadata should be used for the connection.
Provides a container for managing client side default values for fields.
bool isValid() const
Returns if this default value should be applied.
Stores the settings for rendering of all diagrams for a layer.
@ PositionX
X-coordinate data defined diagram position.
@ PositionY
Y-coordinate data defined diagram position.
@ Show
Whether to show the diagram.
Evaluates and returns the diagram settings relating to a diagram for a specific feature.
A embedded script entity for QgsObjectEntityVisitorInterface.
Single scope for storing variables and functions for use within a QgsExpressionContext.
void setFields(const QgsFields &fields)
Convenience function for setting a fields for the scope.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the scope.
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsExpressionContextScope * popScope()
Removes the last scope from the expression context and return it.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Buffers information about expression fields for a vector layer.
void writeXml(QDomNode &layer_node, QDomDocument &document) const
Saves expressions to xml under the layer node.
An expression node which takes its value from a feature's field.
QString name() const
The name of the column.
Handles parsing and evaluation of expressions (formerly called "search strings").
bool prepare(const QgsExpressionContext *context)
Gets the expression ready for evaluation - find out column indexes.
QString expression() const
Returns the original, unmodified expression string.
bool hasParserError() const
Returns true if an error occurred when parsing the input expression.
QString evalErrorString() const
Returns evaluation error.
QString parserErrorString() const
Returns parser error.
QSet< QString > referencedColumns() const
Gets list of columns referenced by the expression.
static QString quotedColumnRef(QString name)
Returns a quoted column reference (in double quotes).
bool hasEvalError() const
Returns true if an error occurred when evaluating last input.
static int expressionToLayerFieldIndex(const QString &expression, const QgsVectorLayer *layer)
Attempts to resolve an expression to a field index from the given layer.
bool needsGeometry() const
Returns true if the expression uses feature geometry for some computation.
QVariant evaluate()
Evaluate the feature and return the result.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
bool close()
Call to end the iteration.
An interface for objects which generate feature renderers for vector layers.
Abstract base class for all 2D vector feature renderers.
static QgsFeatureRenderer * defaultRenderer(Qgis::GeometryType geomType)
Returns a new renderer - used by default in vector layers.
static QgsFeatureRenderer * load(QDomElement &symbologyElem, const QgsReadWriteContext &context)
create a renderer from XML element
static QgsFeatureRenderer * loadSld(const QDomNode &node, Qgis::GeometryType geomType, QString &errorMessage)
Create a new renderer according to the information contained in the UserStyle element of a SLD style ...
Wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFlags(Qgis::FeatureRequestFlags flags)
Sets flags that affect how features will be fetched.
QgsFeatureRequest & setFilterFids(const QgsFeatureIds &fids)
Sets the feature IDs that should be fetched.
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be fetched.
QgsFeatureRequest & setFilterExpression(const QString &expression)
Set the filter expression.
QgsFeatureRequest & setExpressionContext(const QgsExpressionContext &context)
Sets the expression context used to evaluate filter expressions.
QgsFeatureRequest & setFilterFid(QgsFeatureId fid)
Sets the feature ID that should be fetched.
virtual QgsFeatureIds allFeatureIds() const
Returns a list of all feature IDs for features present in the source.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Q_INVOKABLE bool setAttribute(int field, const QVariant &attr)
Sets an attribute's value by field index.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
bool isValid() const
Returns the validity of this feature.
Q_INVOKABLE QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
bool isCanceled() const
Tells whether the operation has been canceled already.
Stores information about constraints which may be present on a field.
ConstraintStrength
Strength of constraints.
void setConstraintStrength(Constraint constraint, ConstraintStrength strength)
Sets the strength of a constraint.
void setConstraintExpression(const QString &expression, const QString &description=QString())
Set the constraint expression for the field.
@ ConstraintOriginProvider
Constraint was set at data provider.
@ ConstraintOriginLayer
Constraint was set by layer.
ConstraintOrigin constraintOrigin(Constraint constraint) const
Returns the origin of a field constraint, or ConstraintOriginNotSet if the constraint is not present ...
Constraint
Constraints which may be present on a field.
@ ConstraintNotNull
Field may not be null.
@ ConstraintUnique
Field must have a unique value.
@ ConstraintExpression
Field has an expression constraint set. See constraintExpression().
void setConstraint(Constraint constraint, ConstraintOrigin origin=ConstraintOriginLayer)
Sets a constraint on the field.
QFlags< Constraint > Constraints
Encapsulate a field in an attribute table or data source.
QString typeName() const
Gets the field type.
QString displayNameWithAlias() const
Returns the name to use when displaying this field and adds the alias in parenthesis if it is defined...
Container of fields for a vector layer.
int size() const
Returns number of items.
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
Q_INVOKABLE int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
const_iterator constBegin() const noexcept
Returns a const STL-style iterator pointing to the first item in the list.
Contains options to automatically adjust geometries to constraints on a layer.
A geometry is the spatial representation of a feature.
QgsBox3D boundingBox3D() const
Returns the 3D bounding box of the geometry.
bool equals(const QgsGeometry &geometry) const
Test if this geometry is exactly equal to another geometry.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
void setMergeLines(bool merge)
Sets whether connected line features with identical label text should be merged prior to generating l...
void setOverlapHandling(Qgis::LabelOverlapHandling handling)
Sets the technique used to handle overlapping labels.
Line string geometry type, with support for z-dimension and m-values.
Alters the size of rendered diagrams using linear scaling.
static void warning(const QString &msg)
Goes to qWarning.
Models dependencies with or between map layers.
Base class for storage of map layer elevation properties.
static QString typeToString(Qgis::LayerType type)
Converts a map layer type to a string value.
virtual QDomElement writeXml(QDomDocument &doc, const QgsReadWriteContext &context) const
Writes configuration to a DOM element, to be used later with readXml().
static QgsMapLayerLegend * defaultVectorLegend(QgsVectorLayer *vl)
Create new legend implementation for vector layer.
Base class for utility classes that encapsulate information necessary for rendering of map layers.
Base class for storage of map layer selection properties.
Stores style information (renderer, opacity, labeling, diagrams etc.) applicable to a map layer.
Base class for storage of map layer temporal properties.
void readStyleManager(const QDomNode &layerNode)
Read style manager's configuration (if any). To be called by subclasses.
void dependenciesChanged()
Emitted when dependencies are changed.
void writeStyleManager(QDomNode &layerNode, QDomDocument &doc) const
Write style manager's configuration (if exists). To be called by subclasses.
QgsMapLayerLegend * legend() const
Can be nullptr.
void editingStopped()
Emitted when edited changes have been successfully written to the data provider.
void recalculateExtents() const
This is used to send a request that any mapcanvas using this layer update its extents.
virtual QgsRectangle extent() const
Returns the extent of the layer.
QString source() const
Returns the source for the layer.
Q_INVOKABLE QVariant customProperty(const QString &value, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
int mBlockStyleChangedSignal
If non-zero, the styleChanged signal should not be emitted.
QString providerType() const
Returns the provider type (provider key) for this layer.
virtual void setExtent3D(const QgsBox3D &box)
Sets the extent.
void removeCustomProperty(const QString &key)
Remove a custom property from layer.
void setBlendMode(QPainter::CompositionMode blendMode)
Set the blending mode used for rendering a layer.
void configChanged()
Emitted whenever the configuration is changed.
void setMinimumScale(double scale)
Sets the minimum map scale (i.e.
static Qgis::DataProviderReadFlags providerReadFlags(const QDomNode &layerNode, QgsMapLayer::ReadFlags layerReadFlags)
Returns provider read flag deduced from layer read flags layerReadFlags and a dom node layerNode that...
void editingStarted()
Emitted when editing on this layer has started.
QgsCoordinateReferenceSystem crs
friend class QgsVectorLayer
void writeCustomProperties(QDomNode &layerNode, QDomDocument &doc) const
Write custom properties to project file.
virtual int listStylesInDatabase(QStringList &ids, QStringList &names, QStringList &descriptions, QString &msgError)
Lists all the style in db split into related to the layer and not related to.
virtual QString loadDefaultStyle(bool &resultFlag)
Retrieve the default style for this layer if one exists (either as a .qml file on disk or as a record...
void setDataSource(const QString &dataSource, const QString &baseName=QString(), const QString &provider=QString(), bool loadDefaultStyleFlag=false)
Updates the data source of the layer.
void triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted.
QString crsHtmlMetadata() const
Returns a HTML fragment containing the layer's CRS metadata, for use in the htmlMetadata() method.
void setMaximumScale(double scale)
Sets the maximum map scale (i.e.
QgsLayerMetadata metadata
QgsMapLayer(Qgis::LayerType type=Qgis::LayerType::Vector, const QString &name=QString(), const QString &source=QString())
Constructor for QgsMapLayer.
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
virtual void setOpacity(double opacity)
Sets the opacity for the layer, where opacity is a value between 0 (totally transparent) and 1....
void setFlags(QgsMapLayer::LayerFlags flags)
Returns the flags for this layer.
QString publicSource(bool hidePassword=false) const
Gets a version of the internal layer definition that has sensitive bits removed (for example,...
QSet< QgsMapLayerDependency > mDependencies
List of layers that may modify this layer on modification.
void readCustomProperties(const QDomNode &layerNode, const QString &keyStartsWith=QString())
Read custom properties from project file.
virtual void setMetadata(const QgsLayerMetadata &metadata)
Sets the layer's metadata store.
QFlags< StyleCategory > StyleCategories
Q_INVOKABLE void setCustomProperty(const QString &key, const QVariant &value)
Set a custom property for layer.
QString mProviderKey
Data provider key (name of the data provider).
QgsCoordinateTransformContext transformContext() const
Returns the layer data provider coordinate transform context or a default transform context if the la...
void styleChanged()
Signal emitted whenever a change affects the layer's style.
QUndoStack * undoStack()
Returns pointer to layer's undo stack.
std::unique_ptr< QgsDataProvider > mPreloadedProvider
Optionally used when loading a project, it is released when the layer is effectively created.
void rendererChanged()
Signal emitted when renderer is changed.
virtual QgsError error() const
Gets current status error.
void setScaleBasedVisibility(bool enabled)
Sets whether scale based visibility is enabled for the layer.
void dataSourceChanged()
Emitted whenever the layer's data source has been changed.
QgsMapLayer::LayerFlags flags
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
virtual QString getStyleFromDatabase(const QString &styleId, QString &msgError)
Returns the named style corresponding to style id provided.
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
void dataChanged()
Data of layer changed.
void willBeDeleted()
Emitted in the destructor when the layer is about to be deleted, but it is still in a perfectly valid...
virtual QgsBox3D extent3D() const
Returns the 3D extent of the layer.
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
void setName(const QString &name)
Set the display name of the layer.
virtual void setExtent(const QgsRectangle &rect)
Sets the extent.
virtual void resolveReferences(QgsProject *project)
Resolve references to other layers (kept as layer IDs after reading XML) into layer objects.
QString mDataSource
Data source description string, varies by layer type.
void setMapTipsEnabled(bool enabled)
Enable or disable map tips for this layer.
@ FlagReadExtentFromXml
Read extent from xml and skip get extent from provider.
@ FlagForceReadOnly
Force open as read only.
@ FlagDontResolveLayers
Don't resolve layer paths or create data providers for layers.
void setValid(bool valid)
Sets whether layer is valid or not.
void readCommonStyle(const QDomElement &layerElement, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read style data common to all layer types.
QgsMapLayer::ReadFlags mReadFlags
Read flags. It's up to the subclass to respect these when restoring state from XML.
double minimumScale() const
Returns the minimum map scale (i.e.
void repaintRequested(bool deferredUpdate=false)
By emitting this signal the layer tells that either appearance or content have been changed and any v...
void setMapTipTemplate(const QString &mapTipTemplate)
The mapTip is a pretty, html representation for feature information.
Q_INVOKABLE QStringList customPropertyKeys() const
Returns list of all keys within custom properties.
QgsProject * project() const
Returns the parent project if this map layer is added to a project.
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
bool mValid
Indicates if the layer is valid and can be drawn.
@ GeometryOptions
Geometry validation configuration.
@ AttributeTable
Attribute table settings: choice and order of columns, conditional styling.
@ LayerConfiguration
General configuration: identifiable, removable, searchable, display expression, read-only.
@ Rendering
Rendering: scale visibility, simplify method, opacity.
@ CustomProperties
Custom properties (by plugins for instance).
@ Fields
Aliases, widgets, WMS/WFS, expressions, constraints, virtual fields.
void layerModified()
Emitted when modifications has been done on layer.
void setProviderType(const QString &providerType)
Sets the providerType (provider key).
QString customPropertyHtmlMetadata() const
Returns an HTML fragment containing custom property information, for use in the htmlMetadata() method...
QString generalHtmlMetadata() const
Returns an HTML fragment containing general metadata information, for use in the htmlMetadata() metho...
void writeCommonStyle(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write style data common to all layer types.
double maximumScale() const
Returns the maximum map scale (i.e.
bool mShouldValidateCrs
true if the layer's CRS should be validated and invalid CRSes are not permitted.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE())
Adds a message to the log instance (and creates it if necessary).
QFile * localFile(const QString &filePathOrUrl)
Returns a QFile from a local file or to a temporary file previously fetched by the registry.
An interface for classes which can visit various object entity (e.g.
virtual bool visitEmbeddedScript(const QgsEmbeddedScriptEntity &entity, const QgsObjectVisitorContext &context)
Called when the visitor will visit an embedded script entity.
A QgsObjectEntityVisitorInterface context object.
static QgsExpression * expressionFromOgcFilter(const QDomElement &element, QgsVectorLayer *layer=nullptr)
Parse XML with OGC filter into QGIS expression.
static Qgis::BlendMode getBlendModeEnum(QPainter::CompositionMode blendMode)
Returns a Qgis::BlendMode corresponding to a QPainter::CompositionMode.
static QPainter::CompositionMode getCompositionMode(Qgis::BlendMode blendMode)
Returns a QPainter::CompositionMode corresponding to a Qgis::BlendMode.
Contains settings for how a map layer will be labeled.
double yOffset
Vertical offset of label.
const QgsLabelPlacementSettings & placementSettings() const
Returns the label placement settings.
double maxCurvedCharAngleIn
Maximum angle between inside curved label characters (valid range 20.0 to 60.0).
void setFormat(const QgsTextFormat &format)
Sets the label text formatting settings, e.g., font settings, buffer settings, etc.
double xOffset
Horizontal offset of label.
Qgis::LabelPlacement placement
Label placement mode.
double angleOffset
Label rotation, in degrees clockwise.
double maxCurvedCharAngleOut
Maximum angle between outside curved label characters (valid range -20.0 to -95.0).
Qgis::RenderUnit offsetUnits
Units for offsets of label.
bool isExpression
true if this label is made from a expression string, e.g., FieldName || 'mm'
const QgsLabelLineSettings & lineSettings() const
Returns the label line settings, which contain settings related to how the label engine places and fo...
Qgis::UpsideDownLabelHandling upsidedownLabels
Controls whether upside down labels are displayed and how they are handled.
QString fieldName
Name of field (or an expression) to use for label text.
Point geometry type, with support for z-dimension and m-values.
Encapsulates properties and constraints relating to fetching elevation profiles from different source...
virtual QString translate(const QString &context, const QString &sourceText, const char *disambiguation=nullptr, int n=-1) const =0
Translates a string using the Qt QTranslator mechanism.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
QgsRelationManager * relationManager
bool commitChanges(QStringList &commitErrors, bool stopEditing=true, QgsVectorLayer *vectorLayer=nullptr)
Attempts to commit to the underlying data provider any buffered changes made since the last to call t...
static QgsProject * instance()
Returns the QgsProject singleton instance.
bool rollBack(QStringList &rollbackErrors, bool stopEditing=true, QgsVectorLayer *vectorLayer=nullptr)
Stops a current editing operation on vectorLayer and discards any uncommitted edits.
bool startEditing(QgsVectorLayer *vectorLayer=nullptr)
Makes the layer editable.
QMap< QString, QgsMapLayer * > mapLayers(const bool validOnly=false) const
Returns a map of all registered layers by layer ID.
A grouped map of multiple QgsProperty objects, each referenced by an integer key value.
void setProperty(int key, const QgsProperty &property)
Adds a property to the collection and takes ownership of it.
Definition for a property.
@ Double
Double value (including negative values).
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
QString absoluteToRelativeUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts absolute path(s) to relative path(s) in the given provider-specific URI.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
QString relativeToAbsoluteUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts relative path(s) to absolute path(s) in the given provider-specific URI.
Allows entering a context category and takes care of leaving this category on deletion of the class.
A container for the context for various read/write operations on objects.
QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString()) const
Push a category to the stack.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
const QgsPathResolver & pathResolver() const
Returns path resolver for conversion between relative and absolute paths.
A rectangle specified with double values.
Q_INVOKABLE QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
void set(const QgsPointXY &p1, const QgsPointXY &p2, bool normalize=true)
Sets the rectangle from two QgsPoints.
void combineExtentWith(const QgsRectangle &rect)
Expands the rectangle so that it covers both the original rectangle and the given rectangle.
void normalize()
Normalize the rectangle so it has non-negative width/height.
void setNull()
Mark a rectangle as being null (holding no spatial information).
QList< QgsRelation > referencedRelations(const QgsVectorLayer *layer=nullptr) const
Gets all relations where this layer is the referenced part (i.e.
void relationsLoaded()
Emitted when the relations were loaded after reading a project.
Represents a relationship between two vector layers.
Contains information about the context of a rendering operation.
double rendererScale() const
Returns the renderer map scale.
bool useRenderingOptimization() const
Returns true if the rendering optimization (geometry simplification) can be executed.
void appendChild(QgsRuleBasedLabeling::Rule *rule)
add child rule, take ownership, sets this as parent
A boolean settings entry.
A template class for enum and flag settings entry.
static QgsSettingsTreeNode * sTreeQgis
Stores settings for use within QGIS.
Renders the diagrams for all features with the same settings.
Holds SLD export options and other information related to SLD export of a QGIS layer style.
void setExtraProperties(const QVariantMap &properties)
Sets the open ended set of properties that can drive/inform the SLD encoding.
QVariantMap extraProperties() const
Returns the open ended set of properties that can drive/inform the SLD encoding.
Renders diagrams using mixed diagram render types.
Manages stored expressions regarding creation, modification and storing in the project.
An interface for classes which can visit style entity (e.g.
static double rendererFrameRate(const QgsFeatureRenderer *renderer)
Calculates the frame rate (in frames per second) at which the given renderer must be redrawn.
static QgsStringMap getSvgParameterList(QDomElement &element)
static void mergeScaleDependencies(double mScaleMinDenom, double mScaleMaxDenom, QVariantMap &props)
Merges the local scale limits, if any, with the ones already in the map, if any.
static bool fillFromSld(QDomElement &element, Qt::BrushStyle &brushStyle, QColor &color)
static Qgis::RenderUnit decodeSldUom(const QString &str, double *scaleFactor=nullptr)
Decodes a SLD unit of measure string to a render unit.
long addTask(QgsTask *task, int priority=0)
Adds a task to the manager.
void taskCompleted()
Will be emitted by task to indicate its successful completion.
void taskTerminated()
Will be emitted by task if it has terminated for any reason other then completion (e....
void setColor(const QColor &color)
Sets the color for the buffer.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units used for the buffer size.
void setEnabled(bool enabled)
Sets whether the text buffer will be drawn.
void setSize(double size)
Sets the size of the buffer.
void setColor(const QColor &color)
Sets the color that text will be rendered in.
void setSize(double size)
Sets the size for rendered text.
void setFont(const QFont &font)
Sets the font used for rendering text.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units for the size of rendered text.
void setBuffer(const QgsTextBufferSettings &bufferSettings)
Sets the text's buffer settings.
Allows creation of a multi-layer database-side transaction.
void dirtied(const QString &sql, const QString &name)
Emitted if a sql query is executed and the underlying data is modified.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
Base class for vector data providers.
static const int EditingCapabilities
Bitmask of all provider's editing capabilities.
virtual QString geometryColumnName() const
Returns the name of the column storing geometry, if applicable.
void raiseError(const QString &msg) const
Signals an error in this provider.
virtual void handlePostCloneOperations(QgsVectorDataProvider *source)
Handles any post-clone operations required after this vector data provider was cloned from the source...
virtual QgsTransaction * transaction() const
Returns the transaction this data provider is included in, if any.
void committedAttributesDeleted(const QString &layerId, const QgsAttributeList &deletedAttributes)
Emitted after attribute deletion has been committed to the layer.
void committedAttributeValuesChanges(const QString &layerId, const QgsChangedAttributesMap &changedAttributesValues)
Emitted after feature attribute value changes have been committed to the layer.
void geometryChanged(QgsFeatureId fid, const QgsGeometry &geom)
Emitted when a feature's geometry is changed.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
Emitted after attribute addition has been committed to the layer.
void committedFeaturesAdded(const QString &layerId, const QgsFeatureList &addedFeatures)
Emitted after feature addition has been committed to the layer.
void featureDeleted(QgsFeatureId fid)
Emitted when a feature was deleted from the buffer.
void attributeAdded(int idx)
Emitted when an attribute was added to the buffer.
void committedGeometriesChanges(const QString &layerId, const QgsGeometryMap &changedGeometries)
Emitted after feature geometry changes have been committed to the layer.
void attributeValueChanged(QgsFeatureId fid, int idx, const QVariant &value)
Emitted when a feature's attribute value has been changed.
void attributeDeleted(int idx)
Emitted when an attribute was deleted from the buffer.
void featureAdded(QgsFeatureId fid)
Emitted when a feature has been added to the buffer.
void layerModified()
Emitted when modifications has been done on layer.
void committedFeaturesRemoved(const QString &layerId, const QgsFeatureIds &deletedFeatureIds)
Emitted after feature removal has been committed to the layer.
Contains utility functions for editing vector layers.
int translateFeature(QgsFeatureId featureId, double dx, double dy)
Translates feature by dx, dy.
bool insertVertex(double x, double y, QgsFeatureId atFeatureId, int beforeVertex)
Insert a new vertex before the given vertex number, in the given ring, item (first number is index 0)...
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addPart(const QVector< QgsPointXY > &ring, QgsFeatureId featureId)
Adds a new part polygon to a multipart feature.
Qgis::VectorEditResult deleteVertex(QgsFeatureId featureId, int vertex)
Deletes a vertex from a feature.
int addTopologicalPoints(const QgsGeometry &geom)
Adds topological points for every vertex of the geometry.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitParts(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits parts cut by the given line.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitFeatures(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits features cut by the given line.
bool moveVertex(double x, double y, QgsFeatureId atFeatureId, int atVertex)
Moves the vertex at the given position number, ring and item (first number is index 0),...
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addRing(const QVector< QgsPointXY > &ring, const QgsFeatureIds &targetFeatureIds=QgsFeatureIds(), QgsFeatureId *modifiedFeatureId=nullptr)
Adds a ring to polygon/multipolygon features.
Vector layer specific subclass of QgsMapLayerElevationProperties.
QgsVectorLayerElevationProperties * clone() const override
Creates a clone of the properties.
Counts the features in a QgsVectorLayer in task.
A feature iterator which iterates over features from a QgsVectorLayer.
Manages joined fields for a vector layer.
bool containsJoins() const
Quick way to test if there is any join at all.
void joinedFieldsChanged()
Emitted whenever the list of joined fields changes (e.g.
Defines left outer join from our vector layer to some other vector layer.
QString targetFieldName() const
Returns name of the field of our layer that will be used for join.
QString joinLayerId() const
ID of the joined layer - may be used to resolve reference to the joined layer.
Implementation of QgsAbstractProfileGenerator for vector layers.
Implementation of threaded rendering for vector layers.
Implementation of layer selection properties for vector layers.
QgsVectorLayerSelectionProperties * clone() const override
Creates a clone of the properties.
Basic implementation of the labeling interface.
Implementation of map layer temporal properties for vector layers.
Contains settings which reflect the context in which vector layer tool operations should be considere...
QgsExpressionContext * expressionContext() const
Returns the optional expression context used by the vector layer tools.
static QString guessFriendlyIdentifierField(const QgsFields &fields, bool *foundFriendly=nullptr)
Given a set of fields, attempts to pick the "most useful" field for user-friendly identification of f...
Represents a vector layer which manages a vector based dataset.
void setLabeling(QgsAbstractVectorLayerLabeling *labeling)
Sets labeling configuration.
Q_INVOKABLE QString attributeDisplayName(int index) const
Convenience function that returns the attribute alias if defined or the field name else.
bool writeSymbology(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) const final
Write the style for the layer into the document provided.
QSet< QgsMapLayerDependency > dependencies() const final
Gets the list of dependencies.
int addExpressionField(const QString &exp, const QgsField &fld)
Add a new field which is calculated by the expression specified.
void committedFeaturesAdded(const QString &layerId, const QgsFeatureList &addedFeatures)
Emitted when features are added to the provider if not in transaction mode.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addPart(const QList< QgsPointXY > &ring)
Adds a new part polygon to a multipart feature.
static const QgsSettingsEntryEnumFlag< Qgis::VectorRenderingSimplificationFlags > * settingsSimplifyDrawingHints
void featureBlendModeChanged(QPainter::CompositionMode blendMode)
Signal emitted when setFeatureBlendMode() is called.
bool labelsEnabled() const
Returns whether the layer contains labels which are enabled and should be drawn.
bool isModified() const override
Returns true if the provider has been modified since the last commit.
bool isEditable() const final
Returns true if the provider is in editing mode.
void addFeatureRendererGenerator(QgsFeatureRendererGenerator *generator)
Adds a new feature renderer generator to the layer.
Q_DECL_DEPRECATED void setExcludeAttributesWfs(const QSet< QString > &att)
A set of attributes that are not advertised in WFS requests with QGIS server.
Q_INVOKABLE bool deleteSelectedFeatures(int *deletedCount=nullptr, QgsVectorLayer::DeleteContext *context=nullptr)
Deletes the selected features.
Q_INVOKABLE void selectByRect(QgsRectangle &rect, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection)
Selects features found within the search rectangle (in layer's coordinates).
Q_INVOKABLE void removeFieldAlias(int index)
Removes an alias (a display name) for attributes to display in dialogs.
void setAuxiliaryLayer(QgsAuxiliaryLayer *layer=nullptr)
Sets the current auxiliary layer.
QVariant minimumValue(int index) const final
Returns the minimum value for an attribute column or an invalid variant in case of error.
void beforeRemovingExpressionField(int idx)
Will be emitted, when an expression field is going to be deleted from this vector layer.
Q_INVOKABLE bool deleteFeatures(const QgsFeatureIds &fids, QgsVectorLayer::DeleteContext *context=nullptr)
Deletes a set of features from the layer (but does not commit it).
void committedGeometriesChanges(const QString &layerId, const QgsGeometryMap &changedGeometries)
Emitted when geometry changes are saved to the provider if not in transaction mode.
void beforeCommitChanges(bool stopEditing)
Emitted before changes are committed to the data provider.
Q_INVOKABLE bool startEditing()
Makes the layer editable.
void setFieldConfigurationFlags(int index, Qgis::FieldConfigurationFlags flags)
Sets the configuration flags of the field at given index.
QVariant maximumValue(int index) const final
Returns the maximum value for an attribute column or an invalid variant in case of error.
QMap< QgsFieldConstraints::Constraint, QgsFieldConstraints::ConstraintStrength > fieldConstraintsAndStrength(int fieldIndex) const
Returns a map of constraint with their strength for a specific field of the layer.
bool addJoin(const QgsVectorLayerJoinInfo &joinInfo)
Joins another vector layer to this layer.
QgsVectorLayer(const QString &path=QString(), const QString &baseName=QString(), const QString &providerLib="ogr", const QgsVectorLayer::LayerOptions &options=QgsVectorLayer::LayerOptions())
Constructor - creates a vector layer.
QgsMapLayerTemporalProperties * temporalProperties() override
Returns the layer's temporal properties.
QgsExpressionContext createExpressionContext() const final
This method needs to be reimplemented in all classes which implement this interface and return an exp...
Q_INVOKABLE bool changeAttributeValue(QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant(), bool skipDefaultValues=false, QgsVectorLayerToolsContext *context=nullptr)
Changes an attribute value for a feature (but does not immediately commit the changes).
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitFeatures(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits features cut by the given line.
QgsDefaultValue defaultValueDefinition(int index) const
Returns the definition of the expression used when calculating the default value for a field.
QgsVectorLayerFeatureCounter * countSymbolFeatures(bool storeSymbolFids=false)
Count features for symbols.
QPainter::CompositionMode featureBlendMode() const
Returns the current blending mode for features.
QString constraintExpression(int index) const
Returns the constraint expression for for a specified field index, if set.
Q_INVOKABLE bool addAttribute(const QgsField &field)
Add an attribute field (but does not commit it) returns true if the field was added.
void attributeAdded(int idx)
Will be emitted, when a new attribute has been added to this vector layer.
QString capabilitiesString() const
Capabilities for this layer, comma separated and translated.
void deselect(QgsFeatureId featureId)
Deselects feature by its ID.
void allowCommitChanged()
Emitted whenever the allowCommit() property of this layer changes.
friend class QgsVectorLayerEditBuffer
void editCommandStarted(const QString &text)
Signal emitted when a new edit command has been started.
void updateFields()
Will regenerate the fields property of this layer by obtaining all fields from the dataProvider,...
QgsBox3D extent3D() const final
Returns the 3D extent of the layer.
const QgsDiagramLayerSettings * diagramLayerSettings() const
void setFieldConstraint(int index, QgsFieldConstraints::Constraint constraint, QgsFieldConstraints::ConstraintStrength strength=QgsFieldConstraints::ConstraintStrengthHard)
Sets a constraint for a specified field index.
bool loadAuxiliaryLayer(const QgsAuxiliaryStorage &storage, const QString &key=QString())
Loads the auxiliary layer for this vector layer.
bool insertVertex(double x, double y, QgsFeatureId atFeatureId, int beforeVertex)
Inserts a new vertex before the given vertex number, in the given ring, item (first number is index 0...
QgsAbstractProfileGenerator * createProfileGenerator(const QgsProfileRequest &request) override
Given a profile request, returns a new profile generator ready for generating elevation profiles.
bool readSymbology(const QDomNode &layerNode, QString &errorMessage, QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) final
Read the symbology for the current layer from the DOM node supplied.
Q_INVOKABLE QgsRectangle boundingBoxOfSelected() const
Returns the bounding box of the selected features. If there is no selection, QgsRectangle(0,...
bool isSpatial() const final
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
Q_INVOKABLE QgsFeatureList selectedFeatures() const
Returns a copy of the user-selected features.
QString expressionField(int index) const
Returns the expression used for a given expression field.
void removeFeatureRendererGenerator(const QString &id)
Removes the feature renderer with matching id from the layer.
Q_INVOKABLE bool deleteFeature(QgsFeatureId fid, QgsVectorLayer::DeleteContext *context=nullptr)
Deletes a feature from the layer (but does not commit it).
friend class QgsVectorLayerEditPassthrough
void setSimplifyMethod(const QgsVectorSimplifyMethod &simplifyMethod)
Sets the simplification settings for fast rendering of features.
void editCommandDestroyed()
Signal emitted, when an edit command is destroyed.
QVariant aggregate(Qgis::Aggregate aggregate, const QString &fieldOrExpression, const QgsAggregateCalculator::AggregateParameters ¶meters=QgsAggregateCalculator::AggregateParameters(), QgsExpressionContext *context=nullptr, bool *ok=nullptr, QgsFeatureIds *fids=nullptr, QgsFeedback *feedback=nullptr, QString *error=nullptr) const
Calculates an aggregated value from the layer's features.
QgsRectangle sourceExtent() const final
Returns the extent of all geometries from the source.
QgsFieldConstraints::Constraints fieldConstraints(int fieldIndex) const
Returns any constraints which are present for a specified field index.
static const QgsSettingsEntryEnumFlag< Qgis::VectorSimplificationAlgorithm > * settingsSimplifyAlgorithm
Q_DECL_DEPRECATED QSet< QString > excludeAttributesWms() const
A set of attributes that are not advertised in WMS requests with QGIS server.
QgsFeatureIds symbolFeatureIds(const QString &legendKey) const
Ids of features rendered with specified legend key.
void removeFieldConstraint(int index, QgsFieldConstraints::Constraint constraint)
Removes a constraint for a specified field index.
int selectedFeatureCount() const
Returns the number of features that are selected in this layer.
void featuresDeleted(const QgsFeatureIds &fids)
Emitted when features have been deleted.
Qgis::VectorLayerTypeFlags vectorLayerTypeFlags() const
Returns the vector layer type flags.
void setLabelsEnabled(bool enabled)
Sets whether labels should be enabled for the layer.
void subsetStringChanged()
Emitted when the layer's subset string has changed.
bool setDependencies(const QSet< QgsMapLayerDependency > &layers) final
Sets the list of dependencies.
QgsAuxiliaryLayer * auxiliaryLayer()
Returns the current auxiliary layer.
void setCoordinateSystem()
Setup the coordinate system transformation for the layer.
void committedFeaturesRemoved(const QString &layerId, const QgsFeatureIds &deletedFeatureIds)
Emitted when features are deleted from the provider if not in transaction mode.
void setFieldMergePolicy(int index, Qgis::FieldDomainMergePolicy policy)
Sets a merge policy for the field with the specified index.
void updateExpressionField(int index, const QString &exp)
Changes the expression used to define an expression based (virtual) field.
Q_INVOKABLE void selectByExpression(const QString &expression, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection, QgsExpressionContext *context=nullptr)
Selects matching features using an expression.
static const QgsSettingsEntryDouble * settingsSimplifyMaxScale
void reload() final
Synchronises with changes in the datasource.
long long featureCount() const final
Returns feature count including changes which have not yet been committed If you need only the count ...
~QgsVectorLayer() override
QgsRectangle extent() const final
Returns the extent of the layer.
void endEditCommand()
Finish edit command and add it to undo/redo stack.
void destroyEditCommand()
Destroy active command and reverts all changes in it.
bool isAuxiliaryField(int index, int &srcIndex) const
Returns true if the field comes from the auxiliary layer, false otherwise.
bool hasMapTips() const final
Returns true if the layer contains map tips.
Q_INVOKABLE Qgis::WkbType wkbType() const final
Returns the WKBType or WKBUnknown in case of error.
void setExtent(const QgsRectangle &rect) final
Sets the extent.
QList< QgsRelation > referencingRelations(int idx) const
Returns the layer's relations, where the foreign key is on this layer.
Q_DECL_DEPRECATED QSet< QString > excludeAttributesWfs() const
A set of attributes that are not advertised in WFS requests with QGIS server.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitParts(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits parts cut by the given line.
void setDefaultValueDefinition(int index, const QgsDefaultValue &definition)
Sets the definition of the expression to use when calculating the default value for a field.
bool diagramsEnabled() const
Returns whether the layer contains diagrams which are enabled and should be drawn.
void setAllowCommit(bool allowCommit)
Controls, if the layer is allowed to commit changes.
QgsBox3D sourceExtent3D() const final
Returns the 3D extent of all geometries from the source.
void symbolFeatureCountMapChanged()
Emitted when the feature count for symbols on this layer has been recalculated.
Q_INVOKABLE const QgsFeatureIds & selectedFeatureIds() const
Returns a list of the selected features IDs in this layer.
Qgis::VectorEditResult deleteVertex(QgsFeatureId featureId, int vertex)
Deletes a vertex from a feature.
Qgis::FeatureAvailability hasFeatures() const final
Determines if this vector layer has features.
void setFeatureBlendMode(QPainter::CompositionMode blendMode)
Sets the blending mode used for rendering each feature.
QString constraintDescription(int index) const
Returns the descriptive name for the constraint expression for a specified field index.
void writeCustomSymbology(QDomElement &element, QDomDocument &doc, QString &errorMessage) const
Signal emitted whenever the symbology (QML-file) for this layer is being written.
const QgsAbstractVectorLayerLabeling * labeling() const
Access to const labeling configuration.
bool writeStyle(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) const final
Write just the symbology information for the layer into the document.
void setProviderEncoding(const QString &encoding)
Sets the text encoding of the data provider.
Q_DECL_DEPRECATED bool writeSld(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QVariantMap &props=QVariantMap()) const
Writes the symbology of the layer into the document provided in SLD 1.1 format.
void setDisplayExpression(const QString &displayExpression)
Set the preview expression, used to create a human readable preview string.
virtual Q_INVOKABLE bool deleteAttribute(int attr)
Deletes an attribute field (but does not commit it).
static const QgsSettingsEntryBool * settingsSimplifyLocal
QString loadDefaultStyle(bool &resultFlag) final
Retrieve the default style for this layer if one exists (either as a .qml file on disk or as a record...
bool simplifyDrawingCanbeApplied(const QgsRenderContext &renderContext, Qgis::VectorRenderingSimplificationFlag simplifyHint) const
Returns whether the VectorLayer can apply the specified simplification hint.
QString htmlMetadata() const final
Obtain a formatted HTML string containing assorted metadata for this layer.
QgsMapLayerElevationProperties * elevationProperties() override
Returns the layer's elevation properties.
bool removeJoin(const QString &joinLayerId)
Removes a vector layer join.
Q_INVOKABLE void invertSelectionInRectangle(QgsRectangle &rect)
Inverts selection of features found within the search rectangle (in layer's coordinates).
void setRenderer(QgsFeatureRenderer *r)
Sets the feature renderer which will be invoked to represent this layer in 2D map views.
Q_INVOKABLE void selectAll()
Select all the features.
QStringList commitErrors() const
Returns a list containing any error messages generated when attempting to commit changes to the layer...
QString decodedSource(const QString &source, const QString &provider, const QgsReadWriteContext &context) const final
Called by readLayerXML(), used by derived classes to decode provider's specific data source from proj...
QString storageType() const
Returns the permanent storage type for this layer as a friendly name.
QString encodedSource(const QString &source, const QgsReadWriteContext &context) const final
Called by writeLayerXML(), used by derived classes to encode provider's specific data source to proje...
bool readExtentFromXml() const
Returns true if the extent is read from the XML document when data source has no metadata,...
QString dataComment() const
Returns a description for this layer as defined in the data provider.
bool accept(QgsStyleEntityVisitorInterface *visitor) const override
QgsExpressionContextScope * createExpressionContextScope() const final
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QgsGeometryOptions * geometryOptions() const
Configuration and logic to apply automatically on any edit happening on this layer.
QgsStringMap attributeAliases() const
Returns a map of field name to attribute alias.
Q_INVOKABLE int translateFeature(QgsFeatureId featureId, double dx, double dy)
Translates feature by dx, dy.
virtual void updateExtents(bool force=false)
Update the extents for the layer.
void attributeDeleted(int idx)
Will be emitted, when an attribute has been deleted from this vector layer.
QgsFeatureRenderer * renderer()
Returns the feature renderer used for rendering the features in the layer in 2D map views.
void beforeEditingStarted()
Emitted before editing on this layer is started.
void committedAttributeValuesChanges(const QString &layerId, const QgsChangedAttributesMap &changedAttributesValues)
Emitted when attribute value changes are saved to the provider if not in transaction mode.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
Emitted when attributes are added to the provider if not in transaction mode.
void setEditFormConfig(const QgsEditFormConfig &editFormConfig)
Sets the editFormConfig (configuration) of the form used to represent this vector layer.
Qgis::FieldConfigurationFlags fieldConfigurationFlags(int index) const
Returns the configuration flags of the field at given index.
void committedAttributesDeleted(const QString &layerId, const QgsAttributeList &deletedAttributes)
Emitted when attributes are deleted from the provider if not in transaction mode.
QString displayExpression
void displayExpressionChanged()
Emitted when the display expression changes.
QgsFeatureIterator getSelectedFeatures(QgsFeatureRequest request=QgsFeatureRequest()) const
Returns an iterator of the selected features.
void setEditorWidgetSetup(int index, const QgsEditorWidgetSetup &setup)
Sets the editor widget setup for the field at the specified index.
void setConstraintExpression(int index, const QString &expression, const QString &description=QString())
Sets the constraint expression for the specified field index.
Q_INVOKABLE bool rollBack(bool deleteBuffer=true)
Stops a current editing operation and discards any uncommitted edits.
QString sourceName() const final
Returns a friendly display name for the source.
bool readStyle(const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) final
Read the style for the current layer from the DOM node supplied.
Q_INVOKABLE bool updateFeature(QgsFeature &feature, bool skipDefaultValues=false)
Updates an existing feature in the layer, replacing the attributes and geometry for the feature with ...
Q_INVOKABLE bool commitChanges(bool stopEditing=true)
Attempts to commit to the underlying data provider any buffered changes made since the last to call t...
void setFieldConfigurationFlag(int index, Qgis::FieldConfigurationFlag flag, bool active)
Sets the given configuration flag for the field at given index to be active or not.
void setFieldDuplicatePolicy(int index, Qgis::FieldDuplicatePolicy policy)
Sets a duplicate policy for the field with the specified index.
bool setReadOnly(bool readonly=true)
Makes layer read-only (editing disabled) or not.
void editFormConfigChanged()
Will be emitted whenever the edit form configuration of this layer changes.
Q_INVOKABLE void modifySelection(const QgsFeatureIds &selectIds, const QgsFeatureIds &deselectIds)
Modifies the current selection on this layer.
void setWeakRelations(const QList< QgsWeakRelation > &relations)
Sets the layer's weak relations.
void resolveReferences(QgsProject *project) final
Resolves references to other layers (kept as layer IDs after reading XML) into layer objects.
void reselect()
Reselects the previous set of selected features.
void select(QgsFeatureId featureId)
Selects feature by its ID.
QgsEditorWidgetSetup editorWidgetSetup(int index) const
Returns the editor widget setup for the field at the specified index.
bool readSld(const QDomNode &node, QString &errorMessage) final
QgsMapLayerRenderer * createMapRenderer(QgsRenderContext &rendererContext) final
Returns new instance of QgsMapLayerRenderer that will be used for rendering of given context.
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const final
Queries the layer for features specified in request.
void setReadExtentFromXml(bool readExtentFromXml)
Flag allowing to indicate if the extent has to be read from the XML document when data source has no ...
void afterCommitChanges()
Emitted after changes are committed to the data provider.
QgsVectorLayer * clone() const override
Returns a new instance equivalent to this one.
QgsAttributeTableConfig attributeTableConfig() const
Returns the attribute table configuration object.
QgsActionManager * actions()
Returns all layer actions defined on this layer.
Q_INVOKABLE void selectByIds(const QgsFeatureIds &ids, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection)
Selects matching features using a list of feature IDs.
QStringList uniqueStringsMatching(int index, const QString &substring, int limit=-1, QgsFeedback *feedback=nullptr) const
Returns unique string values of an attribute which contain a specified subset string.
void raiseError(const QString &msg)
Signals an error related to this vector layer.
void editCommandEnded()
Signal emitted, when an edit command successfully ended.
void supportsEditingChanged()
Emitted when the read only state or the data provider of this layer is changed.
QgsCoordinateReferenceSystem sourceCrs() const final
Returns the coordinate reference system for features in the source.
void readOnlyChanged()
Emitted when the read only state of this layer is changed.
void removeExpressionField(int index)
Removes an expression field.
void setTransformContext(const QgsCoordinateTransformContext &transformContext) override
Sets the coordinate transform context to transformContext.
void attributeValueChanged(QgsFeatureId fid, int idx, const QVariant &value)
Emitted whenever an attribute value change is done in the edit buffer.
static Q_DECL_DEPRECATED void drawVertexMarker(double x, double y, QPainter &p, Qgis::VertexMarkerType type, int vertexSize)
Draws a vertex symbol at (screen) coordinates x, y.
Q_INVOKABLE void setFieldAlias(int index, const QString &aliasString)
Sets an alias (a display name) for attributes to display in dialogs.
friend class QgsVectorLayerFeatureSource
void minimumAndMaximumValue(int index, QVariant &minimum, QVariant &maximum) const
Calculates both the minimum and maximum value for an attribute column.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
Q_DECL_DEPRECATED void setExcludeAttributesWms(const QSet< QString > &att)
A set of attributes that are not advertised in WMS requests with QGIS server.
void setAttributeTableConfig(const QgsAttributeTableConfig &attributeTableConfig)
Sets the attribute table configuration object.
virtual bool setSubsetString(const QString &subset)
Sets the string (typically sql) used to define a subset of the layer.
void afterRollBack()
Emitted after changes are rolled back.
bool writeXml(QDomNode &layer_node, QDomDocument &doc, const QgsReadWriteContext &context) const final
Writes vector layer specific state to project file Dom node.
void setDiagramLayerSettings(const QgsDiagramLayerSettings &s)
bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context) final
Reads vector layer specific state from project file Dom node.
QList< QgsWeakRelation > weakRelations() const
Returns the layer's weak relations as specified in the layer's style.
const QgsVectorSimplifyMethod & simplifyMethod() const
Returns the simplification settings for fast rendering of features.
void selectionChanged(const QgsFeatureIds &selected, const QgsFeatureIds &deselected, bool clearAndSelect)
Emitted when selection was changed.
void beforeAddingExpressionField(const QString &fieldName)
Will be emitted, when an expression field is going to be added to this vector layer.
Q_INVOKABLE bool deleteAttributes(const QList< int > &attrs)
Deletes a list of attribute fields (but does not commit it).
void updatedFields()
Emitted whenever the fields available from this layer have been changed.
QVariant defaultValue(int index, const QgsFeature &feature=QgsFeature(), QgsExpressionContext *context=nullptr) const
Returns the calculated default value for the specified field index.
void featureAdded(QgsFeatureId fid)
Emitted when a new feature has been added to the layer.
Q_INVOKABLE QString attributeAlias(int index) const
Returns the alias of an attribute name or a null string if there is no alias.
void featureDeleted(QgsFeatureId fid)
Emitted when a feature has been deleted.
Q_INVOKABLE void removeSelection()
Clear selection.
bool allowCommit() const
Controls, if the layer is allowed to commit changes.
QgsConditionalLayerStyles * conditionalStyles() const
Returns the conditional styles that are set for this layer.
void readCustomSymbology(const QDomElement &element, QString &errorMessage)
Signal emitted whenever the symbology (QML-file) for this layer is being read.
void setExtent3D(const QgsBox3D &rect) final
Sets the extent.
const QList< QgsVectorLayerJoinInfo > vectorJoins() const
Q_INVOKABLE bool renameAttribute(int index, const QString &newName)
Renames an attribute field (but does not commit it).
bool isSqlQuery() const
Returns true if the layer is a query (SQL) layer.
void beforeRollBack()
Emitted before changes are rolled back.
QgsAttributeList primaryKeyAttributes() const
Returns the list of attributes which make up the layer's primary keys.
void beginEditCommand(const QString &text)
Create edit command for undo/redo operations.
QString displayField() const
This is a shorthand for accessing the displayExpression if it is a simple field.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addRing(const QVector< QgsPointXY > &ring, QgsFeatureId *featureId=nullptr)
Adds a ring to polygon/multipolygon features.
bool addFeatures(QgsFeatureList &features, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) final
Adds a list of features to the sink.
void setDiagramRenderer(QgsDiagramRenderer *r)
Sets diagram rendering object (takes ownership).
void geometryChanged(QgsFeatureId fid, const QgsGeometry &geometry)
Emitted whenever a geometry change is done in the edit buffer.
QgsEditFormConfig editFormConfig
QList< const QgsFeatureRendererGenerator * > featureRendererGenerators() const
Returns a list of the feature renderer generators owned by the layer.
QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const final
Calculates a list of unique values contained within an attribute in the layer.
bool moveVertex(double x, double y, QgsFeatureId atFeatureId, int atVertex)
Moves the vertex at the given position number, ring and item (first number is index 0),...
QgsGeometry getGeometry(QgsFeatureId fid) const
Queries the layer for the geometry at the given id.
int addTopologicalPoints(const QgsGeometry &geom)
Adds topological points for every vertex of the geometry.
bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) final
Adds a single feature to the sink.
void beforeModifiedCheck() const
Emitted when the layer is checked for modifications. Use for last-minute additions.
Q_INVOKABLE QgsFeature getFeature(QgsFeatureId fid) const
Queries the layer for the feature with the given id.
Q_INVOKABLE void invertSelection()
Selects not selected features and deselects selected ones.
const QgsDiagramRenderer * diagramRenderer() const
Q_INVOKABLE bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues=QgsAttributeMap(), bool skipDefaultValues=false, QgsVectorLayerToolsContext *context=nullptr)
Changes attributes' values for a feature (but does not immediately commit the changes).
QgsMapLayerSelectionProperties * selectionProperties() override
Returns the layer's selection properties.
QgsVectorDataProvider * dataProvider() final
Returns the layer's data provider, it may be nullptr.
Q_INVOKABLE bool changeGeometry(QgsFeatureId fid, QgsGeometry &geometry, bool skipDefaultValue=false)
Changes a feature's geometry within the layer's edit buffer (but does not immediately commit the chan...
static const QgsSettingsEntryDouble * settingsSimplifyDrawingTol
Qgis::SpatialIndexPresence hasSpatialIndex() const override
void setFieldSplitPolicy(int index, Qgis::FieldDomainSplitPolicy policy)
Sets a split policy for the field with the specified index.
@ Referencing
The layer is referencing (or the "child" / "right" layer in the relationship).
@ Referenced
The layer is referenced (or the "parent" / "left" left in the relationship).
static void writeXml(const QgsVectorLayer *layer, WeakRelationType type, const QgsRelation &relation, QDomNode &node, QDomDocument &doc)
Writes a weak relation infoto an XML structure.
static QgsWeakRelation readXml(const QgsVectorLayer *layer, WeakRelationType type, const QDomNode &node, const QgsPathResolver resolver)
Returns a weak relation for the given layer.
static Qgis::GeometryType geometryType(Qgis::WkbType type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
static Q_INVOKABLE QString displayString(Qgis::WkbType type)
Returns a non-translated display string type for a WKB type, e.g., the geometry name used in WKT geom...
static Q_INVOKABLE QString geometryDisplayString(Qgis::GeometryType type)
Returns a display string for a geometry type.
static QDomElement writeVariant(const QVariant &value, QDomDocument &doc)
Write a QVariant to a QDomElement.
static QgsBox3D readBox3D(const QDomElement &element)
Decodes a DOM element to a 3D box.
static QVariant readVariant(const QDomElement &element)
Read a QVariant from a QDomElement.
static QgsRectangle readRectangle(const QDomElement &element)
@ UnknownCount
Provider returned an unknown feature count.
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored).
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
bool qgsVariantEqual(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether they are equal, two NULL values are always treated a...
bool qgsVariantLessThan(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether the first is less than the second.
bool qgsVariantGreaterThan(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether the first is greater than the second.
T qgsEnumKeyToValue(const QString &key, const T &defaultValue, bool tryValueAsKey=true, bool *returnOk=nullptr)
Returns the value corresponding to the given key of an enum.
QString qgsEnumValueToKey(const T &value, bool *returnOk=nullptr)
Returns the value for the given key of an enum.
QString qgsFlagValueToKeys(const T &value, bool *returnOk=nullptr)
Returns the value for the given keys of a flag.
T qgsFlagKeysToValue(const QString &keys, const T &defaultValue, bool tryValueAsKey=true, bool *returnOk=nullptr)
Returns the value corresponding to the given keys of a flag.
QMap< QString, QString > QgsStringMap
QVector< QgsPoint > QgsPointSequence
QMap< int, QVariant > QgsAttributeMap
QList< QgsFeature > QgsFeatureList
QSet< QgsFeatureId > QgsFeatureIds
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
QMap< int, QgsPropertyDefinition > QgsPropertiesDefinition
Definition of available properties.
#define RENDERER_TAG_NAME
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS_NON_FATAL
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS
bool saveStyle_t(const QString &uri, const QString &qmlStyle, const QString &sldStyle, const QString &styleName, const QString &styleDescription, const QString &uiFileContent, bool useAsDefault, QString &errCause)
int listStyles_t(const QString &uri, QStringList &ids, QStringList &names, QStringList &descriptions, QString &errCause)
QString getStyleById_t(const QString &uri, QString styleID, QString &errCause)
bool deleteStyleById_t(const QString &uri, QString styleID, QString &errCause)
QString loadStyle_t(const QString &uri, QString &errCause)
QList< int > QgsAttributeList
QMap< QgsFeatureId, QgsFeature > QgsFeatureMap
A bundle of parameters controlling aggregate calculation.
Setting options for creating vector data providers.
Context for cascade delete features.
QList< QgsVectorLayer * > handledLayers(bool includeAuxiliaryLayers=true) const
Returns a list of all layers affected by the delete operation.
QMap< QgsVectorLayer *, QgsFeatureIds > mHandledFeatures
QgsFeatureIds handledFeatures(QgsVectorLayer *layer) const
Returns a list of feature IDs from the specified layer affected by the delete operation.
Setting options for loading vector layers.
bool skipCrsValidation
Controls whether the layer is allowed to have an invalid/unknown CRS.
bool forceReadOnly
Controls whether the layer is forced to be load as Read Only.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
QgsCoordinateReferenceSystem fallbackCrs
Fallback layer coordinate reference system.
Qgis::WkbType fallbackWkbType
Fallback geometry type.
bool loadAllStoredStyles
Controls whether the stored styles will be all loaded.