106#include <QPainterPath>
108#include <QProgressDialog>
109#include <QRegularExpression>
111#include <QStringBuilder>
113#include <QUndoCommand>
119#include "moc_qgsvectorlayer.cpp"
121using namespace Qt::StringLiterals;
132#ifdef TESTPROVIDERLIB
137 const QString &uri,
const QString &qmlStyle,
const QString &sldStyle,
const QString &styleName,
const QString &styleDescription,
const QString &uiFileContent,
bool useAsDefault, QString &errCause
140typedef QString
loadStyle_t(
const QString &uri, QString &errCause );
142typedef int listStyles_t(
const QString &uri, QStringList &ids, QStringList &names, QStringList &descriptions, QString &errCause );
144typedef QString
getStyleById_t(
const QString &uri, QString styleID, QString &errCause );
154 , mAuxiliaryLayer( nullptr )
155 , mAuxiliaryLayerKey( QString() )
157 , mRefreshRendererTimer( new QTimer( this ) )
168 mGeometryOptions = std::make_unique<QgsGeometryOptions>();
170 mActions->setParent(
this );
173 mStoredExpressionManager->setParent(
this );
176 mJoinBuffer->setParent(
this );
179 mExpressionFieldBuffer = std::make_unique<QgsExpressionFieldBuffer>();
181 if ( !vectorLayerPath.isEmpty() && !
mProviderKey.isEmpty() )
192 mDataSourceReadOnly =
true;
194 setDataSource( vectorLayerPath, baseName, providerKey, providerOptions, providerFlags );
197 for (
const QgsField &field : std::as_const( mFields ) )
199 if ( !mAttributeAliasMap.contains( field.name() ) )
200 mAttributeAliasMap.insert( field.name(), QString() );
205 mTemporalProperties->setDefaultsFromDataProviderTemporalCapabilities( mDataProvider->temporalCapabilities() );
206 if ( !mTemporalProperties->isActive() )
210 mTemporalProperties->guessDefaultsFromFields( mFields );
213 mElevationProperties->setDefaultsFromLayer(
this );
230 connect( mRefreshRendererTimer, &QTimer::timeout,
this, [
this] {
triggerRepaint(
true ); } );
239 if ( mFeatureCounter )
240 mFeatureCounter->cancel();
242 qDeleteAll( mRendererGenerators );
256 dataSource = mDataProvider->dataSourceUri();
257 options.transformContext = mDataProvider->transformContext();
270 layer->mXmlExtent2D = mXmlExtent2D;
271 layer->mLazyExtent2D = mLazyExtent2D;
272 layer->mValidExtent2D = mValidExtent2D;
273 layer->mXmlExtent3D = mXmlExtent3D;
274 layer->mLazyExtent3D = mLazyExtent3D;
275 layer->mValidExtent3D = mValidExtent3D;
277 QList<QgsVectorLayerJoinInfo> joins =
vectorJoins();
278 const auto constJoins = joins;
299 for (
const QgsAction &action : constActions )
336 auto constraintIt = constraints.constBegin();
337 for ( ; constraintIt != constraints.constEnd(); ++constraintIt )
353 layer->mElevationProperties = mElevationProperties->
clone();
354 layer->mElevationProperties->setParent( layer );
356 layer->mSelectionProperties = mSelectionProperties->
clone();
357 layer->mSelectionProperties->setParent( layer );
368 return mDataProvider->storageType();
380 return mDataProvider->capabilitiesString();
389 return mDataProvider && mDataProvider->isSqlQuery();
405 return mDataProvider->dataComment();
431 mDataProvider->reloadData();
450 p.setPen( QColor( 50, 100, 120, 200 ) );
451 p.setBrush( QColor( 200, 200, 210, 120 ) );
452 p.drawEllipse( x - m, y - m, m * 2 + 1, m * 2 + 1 );
456 p.setPen( QColor( 255, 0, 0 ) );
457 p.drawLine( x - m, y + m, x + m, y - m );
458 p.drawLine( x - m, y - m, x + m, y + m );
470 mSelectedFeatureIds.insert( fid );
471 mPreviousSelectedFeatureIds.clear();
480 mSelectedFeatureIds.unite( featureIds );
481 mPreviousSelectedFeatureIds.clear();
490 mSelectedFeatureIds.remove( fid );
491 mPreviousSelectedFeatureIds.clear();
500 mSelectedFeatureIds.subtract( featureIds );
501 mPreviousSelectedFeatureIds.clear();
523 newSelection << feat.
id();
536 std::optional< QgsExpressionContext > defaultContext;
540 context = &defaultContext.value();
567 newSelection << feat.
id();
586 bool matches = exp.
evaluate( context ).toBool();
590 newSelection << feat.
id();
594 newSelection << feat.
id();
618 newSelection = idsToSelect;
622 newSelection = mSelectedFeatureIds + idsToSelect;
626 newSelection = mSelectedFeatureIds - idsToSelect;
630 newSelection = mSelectedFeatureIds.intersect( idsToSelect );
634 QgsFeatureIds deselectedFeatures = mSelectedFeatureIds - newSelection;
635 mSelectedFeatureIds = newSelection;
636 mPreviousSelectedFeatureIds.clear();
646 if ( !intersectingIds.isEmpty() )
648 QgsDebugMsgLevel( u
"Trying to select and deselect the same item at the same time. Unsure what to do. Selecting dubious items."_s, 3 );
651 mSelectedFeatureIds -= deselectIds;
652 mSelectedFeatureIds += selectIds;
653 mPreviousSelectedFeatureIds.clear();
663 ids.subtract( mSelectedFeatureIds );
690 if ( mSelectedFeatureIds.contains( fet.
id() ) )
692 deselectIds << fet.
id();
696 selectIds << fet.
id();
707 if ( mSelectedFeatureIds.isEmpty() )
712 mPreviousSelectedFeatureIds = previous;
719 if ( mPreviousSelectedFeatureIds.isEmpty() || !mSelectedFeatureIds.empty() )
730 return mDataProvider;
738 return mDataProvider;
746 return mSelectionProperties;
753 return mTemporalProperties;
760 return mElevationProperties;
776 if (
isValid() && mDataProvider && mDataProvider->encoding() != encoding )
778 mDataProvider->setEncoding( encoding );
787 mDiagramRenderer.reset( r );
811 if ( !
isValid() || !
isSpatial() || mSelectedFeatureIds.isEmpty() || !mDataProvider )
838 if ( mSelectedFeatureIds.contains( fet.
id() ) )
849 if ( retval.
width() == 0.0 || retval.
height() == 0.0 )
857 retval.
set( -1.0, -1.0, 1.0, 1.0 );
869 return mLabelsEnabled &&
static_cast< bool >( mLabeling );
876 mLabelsEnabled = enabled;
884 if ( !mDiagramRenderer || !mDiagramLayerSettings )
887 QList<QgsDiagramSettings> settingList = mDiagramRenderer->diagramSettings();
888 if ( !settingList.isEmpty() )
890 return settingList.at( 0 ).enabled;
899 if ( !mSymbolFeatureCounted )
902 return mSymbolFeatureCountMap.value( legendKey, -1 );
909 if ( !mSymbolFeatureCounted )
912 return mSymbolFeatureIdMap.value( legendKey,
QgsFeatureIds() );
918 if ( ( mSymbolFeatureCounted || mFeatureCounter ) && !( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
919 return mFeatureCounter;
921 mSymbolFeatureCountMap.clear();
922 mSymbolFeatureIdMap.clear();
927 return mFeatureCounter;
929 if ( !mDataProvider )
932 return mFeatureCounter;
937 return mFeatureCounter;
940 if ( !mFeatureCounter || ( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
943 connect( mFeatureCounter, &
QgsTask::taskCompleted,
this, &QgsVectorLayer::onFeatureCounterCompleted, Qt::UniqueConnection );
944 connect( mFeatureCounter, &
QgsTask::taskTerminated,
this, &QgsVectorLayer::onFeatureCounterTerminated, Qt::UniqueConnection );
948 return mFeatureCounter;
956 if ( force || !mReadExtentFromXml || ( mReadExtentFromXml && mXmlExtent2D.isNull() && mXmlExtent3D.isNull() ) )
958 mValidExtent2D =
false;
959 mValidExtent3D =
false;
968 mValidExtent2D =
true;
976 mValidExtent3D =
true;
983 if ( !mDefaultValueOnUpdateFields.isEmpty() )
988 int size = mFields.
size();
989 for (
int idx : std::as_const( mDefaultValueOnUpdateFields ) )
991 if ( idx < 0 || idx >= size )
1011 mLazyExtent2D =
false;
1018 updateExtent( mDataProvider->extent() );
1019 mValidExtent2D =
true;
1020 mLazyExtent2D =
false;
1024 if ( !mValidExtent2D && mLazyExtent2D && mReadExtentFromXml && !mXmlExtent2D.isNull() )
1026 updateExtent( mXmlExtent2D );
1027 mValidExtent2D =
true;
1028 mLazyExtent2D =
false;
1031 if ( !mValidExtent2D && mLazyExtent2D && mDataProvider && mDataProvider->isValid() )
1034 updateExtent( mDataProvider->extent() );
1035 mValidExtent2D =
true;
1036 mLazyExtent2D =
false;
1039 QgsDebugMsgLevel( u
"2D Extent of layer: %1"_s.arg( mExtent2D.toString() ), 3 );
1043 if ( mValidExtent2D )
1046 if ( !
isValid() || !mDataProvider )
1048 QgsDebugMsgLevel( u
"invoked with invalid layer or null mDataProvider"_s, 3 );
1053 || ( !mDataProvider->transaction() && ( mEditBuffer->deletedFeatureIds().isEmpty() && mEditBuffer->changedGeometries().isEmpty() ) )
1056 mDataProvider->updateExtents();
1060 if ( mDataProvider->featureCount() != 0 )
1066 if ( mEditBuffer && !mDataProvider->transaction() )
1068 const auto addedFeatures = mEditBuffer->addedFeatures();
1069 for ( QgsFeatureMap::const_iterator it = addedFeatures.constBegin(); it != addedFeatures.constEnd(); ++it )
1071 if ( it->hasGeometry() )
1094 if ( rect.xMinimum() > rect.xMaximum() && rect.yMinimum() > rect.yMaximum() )
1100 updateExtent( rect );
1101 mValidExtent2D =
true;
1114 if ( mDataProvider && mDataProvider->elevationProperties() && !mDataProvider->elevationProperties()->containsElevationData() )
1130 updateExtent( mDataProvider->extent3D() );
1131 mValidExtent3D =
true;
1132 mLazyExtent3D =
false;
1136 if ( !mValidExtent3D && mLazyExtent3D && mReadExtentFromXml && !mXmlExtent3D.isNull() )
1138 updateExtent( mXmlExtent3D );
1139 mValidExtent3D =
true;
1140 mLazyExtent3D =
false;
1143 if ( !mValidExtent3D && mLazyExtent3D && mDataProvider && mDataProvider->isValid() )
1146 updateExtent( mDataProvider->extent3D() );
1147 mValidExtent3D =
true;
1148 mLazyExtent3D =
false;
1151 QgsDebugMsgLevel( u
"3D Extent of layer: %1"_s.arg( mExtent3D.toString() ), 3 );
1155 if ( mValidExtent3D )
1158 if ( !
isValid() || !mDataProvider )
1160 QgsDebugMsgLevel( u
"invoked with invalid layer or null mDataProvider"_s, 3 );
1165 || ( !mDataProvider->transaction() && ( mEditBuffer->deletedFeatureIds().isEmpty() && mEditBuffer->changedGeometries().isEmpty() ) )
1168 mDataProvider->updateExtents();
1172 if ( mDataProvider->featureCount() != 0 )
1174 const QgsBox3D ext = mDataProvider->extent3D();
1175 extent.combineWith( ext );
1178 if ( mEditBuffer && !mDataProvider->transaction() )
1180 const auto addedFeatures = mEditBuffer->addedFeatures();
1181 for ( QgsFeatureMap::const_iterator it = addedFeatures.constBegin(); it != addedFeatures.constEnd(); ++it )
1183 if ( it->hasGeometry() )
1185 const QgsBox3D bbox = it->geometry().boundingBox3D();
1186 extent.combineWith( bbox );
1201 extent.combineWith( bb );
1213 mValidExtent3D =
true;
1239 if ( !
isValid() || !mDataProvider )
1241 QgsDebugMsgLevel( u
"invoked with invalid layer or null mDataProvider"_s, 3 );
1244 return mDataProvider->subsetString();
1251 if ( !
isValid() || !mDataProvider )
1253 QgsDebugMsgLevel( u
"invoked with invalid layer or null mDataProvider or while editing"_s, 3 );
1257 else if ( mEditBuffer )
1263 if ( subset == mDataProvider->subsetString() )
1266 bool res = mDataProvider->setSubsetString( subset );
1291 && ( mSimplifyMethod.simplifyHints() & simplifyHint )
1294 double maximumSimplificationScale = mSimplifyMethod.maximumScale();
1297 return !( maximumSimplificationScale > 1 && renderContext.
rendererScale() <= maximumSimplificationScale );
1306 return mConditionalStyles;
1314 if ( !
isValid() || !mDataProvider )
1326 if ( feature.isValid() )
1327 return feature.geometry();
1336 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1340 if ( mGeometryOptions->isActive() )
1343 mGeometryOptions->apply( geom );
1347 bool success = mEditBuffer->addFeature( feature );
1349 if ( success && mJoinBuffer->containsJoins() )
1351 success = mJoinBuffer->addFeature( feature );
1361 if ( !mEditBuffer || !mDataProvider )
1367 if ( currentFeature.
isValid() )
1369 bool hasChanged =
false;
1370 bool hasError =
false;
1382 QgsDebugMsgLevel( u
"geometry of feature %1 could not be changed."_s.arg( updatedFeature.
id() ), 3 );
1389 for (
int attr = 0; attr < fa.count(); ++attr )
1399 QgsDebugMsgLevel( u
"attribute %1 of feature %2 could not be changed."_s.arg( attr ).arg( updatedFeature.
id() ), 3 );
1404 if ( hasChanged && !mDefaultValueOnUpdateFields.isEmpty() && !skipDefaultValues )
1405 updateDefaultValues( updatedFeature.
id(), updatedFeature );
1411 QgsDebugMsgLevel( u
"feature %1 could not be retrieved"_s.arg( updatedFeature.
id() ), 3 );
1421 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1425 bool result = utils.
insertVertex( x, y, atFeatureId, beforeVertex );
1436 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1440 bool result = utils.
insertVertex( point, atFeatureId, beforeVertex );
1451 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1455 bool result = utils.
moveVertex( x, y, atFeatureId, atVertex );
1466 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1470 bool result = utils.
moveVertex( p, atFeatureId, atVertex );
1486 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1512 int count = mSelectedFeatureIds.size();
1525 *deletedCount = deleted;
1528 return deleted == count;
1531static const QgsPointSequence vectorPointXY2pointSequence(
const QVector<QgsPointXY> &points )
1534 pts.reserve( points.size() );
1535 QVector<QgsPointXY>::const_iterator it = points.constBegin();
1536 while ( it != points.constEnd() )
1547 return addRing( vectorPointXY2pointSequence( ring ), featureId );
1554 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1561 if ( !mSelectedFeatureIds.isEmpty() )
1563 result = utils.
addRing( ring, mSelectedFeatureIds, featureId );
1579 std::unique_ptr<QgsCurve> uniquePtrRing( ring );
1581 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1584 if ( !uniquePtrRing )
1587 if ( !uniquePtrRing->isClosed() )
1594 if ( !mSelectedFeatureIds.isEmpty() )
1596 result = utils.
addRing(
static_cast< QgsCurve *
>( uniquePtrRing->clone() ), mSelectedFeatureIds, featureId );
1613 pts.reserve( points.size() );
1614 for ( QList<QgsPointXY>::const_iterator it = points.constBegin(); it != points.constEnd(); ++it )
1625 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1630 if ( mSelectedFeatureIds.empty() )
1635 else if ( mSelectedFeatureIds.size() > 1 )
1653 std::unique_ptr<QgsCurve> uniquePtrRing( ring );
1655 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1660 if ( mSelectedFeatureIds.empty() )
1665 else if ( mSelectedFeatureIds.size() > 1 )
1683 std::unique_ptr<QgsCurvePolygon> uniquePtrPolygon( polygon );
1685 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1690 if ( mSelectedFeatureIds.empty() )
1695 else if ( mSelectedFeatureIds.size() > 1 )
1714 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1729 return splitParts( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1736 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1740 return utils.
splitParts( splitLine, topologicalEditing );
1747 return splitFeatures( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1756 bool preserveCircular =
false;
1757 return splitFeatures( &splitLineString, topologyTestPoints, preserveCircular, topologicalEditing );
1764 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1768 return utils.
splitFeatures( curve, topologyTestPoints, preserveCircular, topologicalEditing );
1775 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1793 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1804 if ( !
mValid || !mEditBuffer || !mDataProvider )
1828 if ( !
isValid() || !mDataProvider )
1845 mDataProvider->enterUpdateMode();
1862 if ( mDataProvider )
1878 if ( !mRenderer->accept( visitor ) )
1882 if ( !mLabeling->accept( visitor ) )
1894 const QList<QgsAction>
actions = mActions->actions();
1897 if ( action.command().isEmpty() )
1902 switch ( action.type() )
1929 switch ( mEditFormConfig.initCodeSource() )
1933 initCode = u
"# Calling function ’%1’\n\n%2"_s.arg( mEditFormConfig.initFunction(), mEditFormConfig.initCode() );
1940 if ( inputFile && inputFile->open( QFile::ReadOnly ) )
1943 QTextStream inf( inputFile );
1944 initCode = inf.readAll();
1946 initCode = u
"# Calling function ’%1’\n# From file %2\n\n"_s.arg( mEditFormConfig.initFunction(), mEditFormConfig.initFilePath() ) + initCode;
1953 initCode = u
"# Calling function ’%1’\n# From environment\n\n"_s.arg( mEditFormConfig.initFunction() );
1963 if ( !initCode.isEmpty() )
1982 QDomNode pkeyNode = layer_node.namedItem( u
"provider"_s );
1984 if ( pkeyNode.isNull() )
1990 QDomElement pkeyElt = pkeyNode.toElement();
2009 const QDomElement elem = layer_node.toElement();
2023 if ( elem.hasAttribute( u
"wkbType"_s ) )
2027 QDomElement pkeyElem = pkeyNode.toElement();
2028 if ( !pkeyElem.isNull() )
2030 QString encodingString = pkeyElem.attribute( u
"encoding"_s );
2031 if ( mDataProvider && !encodingString.isEmpty() )
2033 mDataProvider->setEncoding( encodingString );
2038 mJoinBuffer->readXml( layer_node );
2043 mSetLegendFromStyle =
false;
2053 QDomNode depsNode = layer_node.namedItem( u
"dataDependencies"_s );
2054 QDomNodeList depsNodes = depsNode.childNodes();
2055 QSet<QgsMapLayerDependency> sources;
2056 for (
int i = 0; i < depsNodes.count(); i++ )
2058 QString
source = depsNodes.at( i ).toElement().attribute( u
"id"_s );
2063 if ( !mSetLegendFromStyle )
2069 mReadExtentFromXml =
true;
2071 if ( mReadExtentFromXml )
2073 const QDomNode extentNode = layer_node.namedItem( u
"extent"_s );
2074 if ( !extentNode.isNull() )
2078 const QDomNode extent3DNode = layer_node.namedItem( u
"extent3D"_s );
2079 if ( !extent3DNode.isNull() )
2086 const QDomNode asNode = layer_node.namedItem( u
"auxiliaryLayer"_s );
2087 const QDomElement asElem = asNode.toElement();
2088 if ( !asElem.isNull() )
2090 mAuxiliaryLayerKey = asElem.attribute( u
"key"_s );
2094 mServerProperties->readXml( layer_node );
2109 setDataProvider( provider, options,
flags );
2119 bool loadDefaultStyleFlag =
false;
2122 loadDefaultStyleFlag =
true;
2128 std::unique_ptr< QgsScopedRuntimeProfile > profile;
2130 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Load layer style" ), u
"projectload"_s );
2132 bool defaultLoadedFlag =
false;
2140 mSetLegendFromStyle =
false;
2145 if ( !defaultLoadedFlag && loadDefaultStyleFlag )
2153 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->createRenderer() );
2154 if ( defaultRenderer )
2156 defaultLoadedFlag =
true;
2159 applyRendererSettings();
2164 if ( !defaultLoadedFlag )
2170 if ( !mSetLegendFromStyle )
2175 std::unique_ptr< QgsAbstractVectorLayerLabeling > defaultLabeling( mDataProvider->createLabeling() );
2176 if ( defaultLabeling )
2183 styleChangedSignalBlocker.release();
2200 QStringList ids, names, descriptions;
2201 QString errorMessage;
2203 const int relatedStylesCount {
listStylesInDatabase( ids, names, descriptions, errorMessage ) };
2204 Q_ASSERT( ids.count() == names.count() );
2205 const QString currentStyleName { mStyleManager->currentStyle() };
2206 for (
int i = 0; i < relatedStylesCount; ++i )
2208 if ( names.at( i ) == currentStyleName )
2212 errorMessage.clear();
2214 if ( !styleXml.isEmpty() && errorMessage.isEmpty() )
2220 QgsDebugMsgLevel( u
"Error retrieving style %1 from DB: %2"_s.arg( ids.at( i ), errorMessage ), 2 );
2230 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->createRenderer() );
2231 if ( defaultRenderer )
2236 applyRendererSettings();
2250 delete mDataProvider;
2257 if ( provider.compare(
"postgres"_L1 ) == 0 )
2259 const QString checkUnicityKey { u
"checkPrimaryKeyUnicity"_s };
2261 if ( !uri.hasParam( checkUnicityKey ) )
2263 uri.setParam( checkUnicityKey, mReadExtentFromXml ?
"0" :
"1" );
2268 std::unique_ptr< QgsScopedRuntimeProfile > profile;
2270 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Create %1 provider" ).arg( provider ), u
"projectload"_s );
2275 mDataProvider = qobject_cast< QgsVectorDataProvider * >(
mPreloadedProvider.release() );
2282 if ( !mDataProvider )
2289 mDataProvider->setParent(
this );
2294 setValid( mDataProvider->isValid() );
2302 profile->switchTask( tr(
"Read layer metadata" ) );
2307 QgsLayerMetadata newMetadata = mDataProvider->layerMetadata();
2309 newMetadata.
combine( &mMetadata );
2319 mWkbType = mDataProvider->wkbType();
2323 const QgsFields providerFields = mDataProvider->fields();
2324 for (
const QgsField &field : providerFields )
2327 if ( !field.editorWidgetSetup().isNull() && mFieldWidgetSetups.value( field.name() ).isNull() )
2329 mFieldWidgetSetups[field.name()] = field.editorWidgetSetup();
2331 if ( !field.alias().isEmpty() && mAttributeAliasMap.value( field.name() ).isEmpty() )
2333 mAttributeAliasMap[field.name()] = field.alias();
2335 if ( !mAttributeSplitPolicy.contains( field.name() ) )
2337 mAttributeSplitPolicy[field.name()] = field.splitPolicy();
2339 if ( !mAttributeDuplicatePolicy.contains( field.name() ) )
2341 mAttributeDuplicatePolicy[field.name()] = field.duplicatePolicy();
2343 if ( !mAttributeMergePolicy.contains( field.name() ) )
2345 mAttributeMergePolicy[field.name()] = field.mergePolicy();
2350 profile->switchTask( tr(
"Read layer fields" ) );
2356 mDataSource = mDataProvider->dataSourceUri(
false );
2361 const thread_local QRegularExpression reg( R
"lit("[^"]+"\."([^"] + )"( \([^)]+\))?)lit" );
2362 const QRegularExpressionMatch match = reg.match(
name() );
2363 if ( match.hasMatch() )
2365 QStringList stuff = match.capturedTexts();
2366 QString lName = stuff[1];
2370 QMap<QString, QgsMapLayer *>::const_iterator it;
2371 for ( it = layers.constBegin(); it != layers.constEnd() && ( *it )->name() != lName; ++it )
2374 if ( it != layers.constEnd() && stuff.size() > 2 )
2376 lName +=
'.' + stuff[2].mid( 2, stuff[2].length() - 3 );
2379 if ( !lName.isEmpty() )
2389 else if ( provider ==
"ogr"_L1 )
2396 else if ( provider ==
"memory"_L1 )
2401 else if ( provider ==
"hana"_L1 )
2404 mDataSource = mDataProvider->dataSourceUri(
false );
2421 QDomElement mapLayerNode = layer_node.toElement();
2423 if ( mapLayerNode.isNull() || (
"maplayer" != mapLayerNode.nodeName() ) )
2436 if ( mDataProvider )
2438 QDomElement provider = document.createElement( u
"provider"_s );
2439 provider.setAttribute( u
"encoding"_s, mDataProvider->encoding() );
2440 QDomText providerText = document.createTextNode(
providerType() );
2441 provider.appendChild( providerText );
2442 layer_node.appendChild( provider );
2446 mJoinBuffer->writeXml( layer_node, document );
2449 QDomElement dependenciesElement = document.createElement( u
"layerDependencies"_s );
2455 QDomElement depElem = document.createElement( u
"layer"_s );
2456 depElem.setAttribute( u
"id"_s, dep.layerId() );
2457 dependenciesElement.appendChild( depElem );
2459 layer_node.appendChild( dependenciesElement );
2462 QDomElement dataDependenciesElement = document.createElement( u
"dataDependencies"_s );
2467 QDomElement depElem = document.createElement( u
"layer"_s );
2468 depElem.setAttribute( u
"id"_s, dep.layerId() );
2469 dataDependenciesElement.appendChild( depElem );
2471 layer_node.appendChild( dataDependenciesElement );
2474 mExpressionFieldBuffer->writeXml( layer_node, document );
2479 QDomElement asElem = document.createElement( u
"auxiliaryLayer"_s );
2480 if ( mAuxiliaryLayer )
2482 const QString pkField = mAuxiliaryLayer->joinInfo().targetFieldName();
2483 asElem.setAttribute( u
"key"_s, pkField );
2485 layer_node.appendChild( asElem );
2489 return writeSymbology( layer_node, document, errorMsg, context );
2518 mJoinBuffer->resolveReferences(
project );
2526 if ( categories.testFlag(
Fields ) )
2528 if ( !mExpressionFieldBuffer )
2529 mExpressionFieldBuffer = std::make_unique<QgsExpressionFieldBuffer>();
2530 mExpressionFieldBuffer->readXml( layerNode );
2540 QDomNodeList referencedLayersNodeList = layerNode.toElement().elementsByTagName( u
"referencedLayers"_s );
2541 if ( referencedLayersNodeList.size() > 0 )
2543 const QDomNodeList relationNodes { referencedLayersNodeList.at( 0 ).childNodes() };
2544 for (
int i = 0; i < relationNodes.length(); ++i )
2546 const QDomElement relationElement = relationNodes.at( i ).toElement();
2553 QDomNodeList referencingLayersNodeList = layerNode.toElement().elementsByTagName( u
"referencingLayers"_s );
2554 if ( referencingLayersNodeList.size() > 0 )
2556 const QDomNodeList relationNodes { referencingLayersNodeList.at( 0 ).childNodes() };
2557 for (
int i = 0; i < relationNodes.length(); ++i )
2559 const QDomElement relationElement = relationNodes.at( i ).toElement();
2565 QDomElement layerElement = layerNode.toElement();
2569 readStyle( layerNode, errorMessage, context, categories );
2571 if ( categories.testFlag(
MapTips ) )
2573 QDomElement mapTipElem = layerNode.namedItem( u
"mapTip"_s ).toElement();
2579 mDisplayExpression = layerNode.namedItem( u
"previewExpression"_s ).toElement().text();
2582 QString
displayField = layerNode.namedItem( u
"displayfield"_s ).toElement().text();
2586 if ( mMapTipTemplate.isEmpty() && categories.testFlag(
MapTips ) )
2596 if ( categories.testFlag(
Actions ) )
2597 mActions->readXml( layerNode, context );
2599 if ( categories.testFlag(
Fields ) )
2604 QDomNode aliasesNode = layerNode.namedItem( u
"aliases"_s );
2605 if ( !aliasesNode.isNull() )
2607 QDomElement aliasElem;
2609 QDomNodeList aliasNodeList = aliasesNode.toElement().elementsByTagName( u
"alias"_s );
2610 for (
int i = 0; i < aliasNodeList.size(); ++i )
2612 aliasElem = aliasNodeList.at( i ).toElement();
2615 if ( aliasElem.hasAttribute( u
"field"_s ) )
2617 field = aliasElem.attribute( u
"field"_s );
2621 int index = aliasElem.attribute( u
"index"_s ).toInt();
2623 if ( index >= 0 && index <
fields().count() )
2629 if ( !aliasElem.attribute( u
"name"_s ).isEmpty() )
2632 alias = context.
projectTranslator()->
translate( u
"project:layers:%1:fieldaliases"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ), aliasElem.attribute( u
"name"_s ) );
2633 QgsDebugMsgLevel(
"context" + u
"project:layers:%1:fieldaliases"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ) +
" source " + aliasElem.attribute( u
"name"_s ), 3 );
2638 alias = context.
projectTranslator()->
translate( u
"project:layers:%1:fieldaliases"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ), field );
2639 QgsDebugMsgLevel(
"context" + u
"project:layers:%1:fieldaliases"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ) +
" source " + field, 3 );
2641 if ( alias == aliasElem.attribute( u
"field"_s ) )
2645 QgsDebugMsgLevel(
"field " + field +
" origalias " + aliasElem.attribute( u
"name"_s ) +
" trans " + alias, 3 );
2646 mAttributeAliasMap.insert( field, alias );
2652 mAttributeCustomCommentMap.clear();
2653 QDomNode customCommentsNode = layerNode.namedItem( u
"customComments"_s );
2654 if ( !customCommentsNode.isNull() )
2656 QDomElement customCommentEntryElem;
2658 QDomNodeList customCommentNodeList = customCommentsNode.toElement().elementsByTagName( u
"customComment"_s );
2659 for (
int i = 0; i < customCommentNodeList.size(); ++i )
2661 customCommentEntryElem = customCommentNodeList.at( i ).toElement();
2663 const QString field = customCommentEntryElem.attribute( u
"field"_s );
2666 const QString customCommentEntryValue = customCommentEntryElem.attribute( u
"value"_s );
2667 QString customComment = customCommentEntryValue;
2668 if ( !customCommentEntryValue.isEmpty() )
2671 customComment = context.
projectTranslator()->
translate( u
"project:layers:%1:fieldcustomcomments"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ), customCommentEntryValue );
2672 QgsDebugMsgLevel(
"context" + u
"project:layers:%1:fieldcustomcomments"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ) +
" source " + customCommentEntryValue, 3 );
2674 if (
fields().lookupField( field ) < 0 )
2676 QgsDebugMsgLevel( u
"Warning: Field %1 not found in layer %2 to load custom comment from setting "_s.arg( field,
name() ), 2 );
2679 mAttributeCustomCommentMap.insert( field, customComment );
2686 const QDomNode splitPoliciesNode = layerNode.namedItem( u
"splitPolicies"_s );
2687 if ( !splitPoliciesNode.isNull() )
2689 const QDomNodeList splitPolicyNodeList = splitPoliciesNode.toElement().elementsByTagName( u
"policy"_s );
2690 for (
int i = 0; i < splitPolicyNodeList.size(); ++i )
2692 const QDomElement splitPolicyElem = splitPolicyNodeList.at( i ).toElement();
2693 const QString field = splitPolicyElem.attribute( u
"field"_s );
2695 mAttributeSplitPolicy.insert( field, policy );
2700 mAttributeDuplicatePolicy.clear();
2701 const QDomNode duplicatePoliciesNode = layerNode.namedItem( u
"duplicatePolicies"_s );
2702 if ( !duplicatePoliciesNode.isNull() )
2704 const QDomNodeList duplicatePolicyNodeList = duplicatePoliciesNode.toElement().elementsByTagName( u
"policy"_s );
2705 for (
int i = 0; i < duplicatePolicyNodeList.size(); ++i )
2707 const QDomElement duplicatePolicyElem = duplicatePolicyNodeList.at( i ).toElement();
2708 const QString field = duplicatePolicyElem.attribute( u
"field"_s );
2710 mAttributeDuplicatePolicy.insert( field, policy );
2714 const QDomNode mergePoliciesNode = layerNode.namedItem( u
"mergePolicies"_s );
2715 if ( !mergePoliciesNode.isNull() )
2717 const QDomNodeList mergePolicyNodeList = mergePoliciesNode.toElement().elementsByTagName( u
"policy"_s );
2718 for (
int i = 0; i < mergePolicyNodeList.size(); ++i )
2720 const QDomElement mergePolicyElem = mergePolicyNodeList.at( i ).toElement();
2721 const QString field = mergePolicyElem.attribute( u
"field"_s );
2723 mAttributeMergePolicy.insert( field, policy );
2728 mDefaultExpressionMap.clear();
2729 QDomNode defaultsNode = layerNode.namedItem( u
"defaults"_s );
2730 if ( !defaultsNode.isNull() )
2732 QDomNodeList defaultNodeList = defaultsNode.toElement().elementsByTagName( u
"default"_s );
2733 for (
int i = 0; i < defaultNodeList.size(); ++i )
2735 QDomElement defaultElem = defaultNodeList.at( i ).toElement();
2737 QString field = defaultElem.attribute( u
"field"_s, QString() );
2738 QString expression = defaultElem.attribute( u
"expression"_s, QString() );
2739 bool applyOnUpdate = defaultElem.attribute( u
"applyOnUpdate"_s, u
"0"_s ) ==
"1"_L1;
2740 if ( field.isEmpty() || expression.isEmpty() )
2743 mDefaultExpressionMap.insert( field,
QgsDefaultValue( expression, applyOnUpdate ) );
2748 mFieldConstraints.clear();
2749 mFieldConstraintStrength.clear();
2750 QDomNode constraintsNode = layerNode.namedItem( u
"constraints"_s );
2751 if ( !constraintsNode.isNull() )
2753 QDomNodeList constraintNodeList = constraintsNode.toElement().elementsByTagName( u
"constraint"_s );
2754 for (
int i = 0; i < constraintNodeList.size(); ++i )
2756 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2758 QString field = constraintElem.attribute( u
"field"_s, QString() );
2759 int constraints = constraintElem.attribute( u
"constraints"_s, u
"0"_s ).toInt();
2760 if ( field.isEmpty() || constraints == 0 )
2765 int uniqueStrength = constraintElem.attribute( u
"unique_strength"_s, u
"1"_s ).toInt();
2766 int notNullStrength = constraintElem.attribute( u
"notnull_strength"_s, u
"1"_s ).toInt();
2767 int expStrength = constraintElem.attribute( u
"exp_strength"_s, u
"1"_s ).toInt();
2774 mFieldConstraintExpressions.clear();
2775 QDomNode constraintExpressionsNode = layerNode.namedItem( u
"constraintExpressions"_s );
2776 if ( !constraintExpressionsNode.isNull() )
2778 QDomNodeList constraintNodeList = constraintExpressionsNode.toElement().elementsByTagName( u
"constraint"_s );
2779 for (
int i = 0; i < constraintNodeList.size(); ++i )
2781 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2783 QString field = constraintElem.attribute( u
"field"_s, QString() );
2784 QString exp = constraintElem.attribute( u
"exp"_s, QString() );
2786 = context.
projectTranslator()->
translate( u
"project:layers:%1:constraintdescriptions"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ), constraintElem.attribute( u
"desc"_s, QString() ) );
2787 QgsDebugMsgLevel(
"context" + u
"project:layers:%1:constraintdescriptions"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text() ) +
" source " + constraintElem.attribute( u
"desc"_s, QString() ), 3 );
2788 if ( field.isEmpty() || exp.isEmpty() )
2791 mFieldConstraintExpressions.insert( field, qMakePair( exp, desc ) );
2799 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
2803 QDomElement widgetsElem = layerNode.namedItem( u
"fieldConfiguration"_s ).toElement();
2804 QDomNodeList fieldConfigurationElementList = widgetsElem.elementsByTagName( u
"field"_s );
2805 for (
int i = 0; i < fieldConfigurationElementList.size(); ++i )
2807 const QDomElement fieldConfigElement = fieldConfigurationElementList.at( i ).toElement();
2808 const QDomElement fieldWidgetElement = fieldConfigElement.elementsByTagName( u
"editWidget"_s ).at( 0 ).toElement();
2810 QString fieldName = fieldConfigElement.attribute( u
"name"_s );
2812 if ( categories.testFlag(
Fields ) )
2816 if ( categories.testFlag(
Forms ) )
2818 const QString widgetType = fieldWidgetElement.attribute( u
"type"_s );
2819 const QDomElement cfgElem = fieldConfigElement.elementsByTagName( u
"config"_s ).at( 0 ).toElement();
2820 const QDomElement optionsElem = cfgElem.childNodes().at( 0 ).toElement();
2823 if ( widgetType ==
"ValueRelation"_L1 )
2825 optionsMap[u
"Value"_s]
2826 = context.
projectTranslator()->
translate( u
"project:layers:%1:fields:%2:valuerelationvalue"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text(), fieldName ), optionsMap[u
"Value"_s].toString() );
2827 optionsMap[u
"Description"_s]
2829 ->
translate( u
"project:layers:%1:fields:%2:valuerelationdescription"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text(), fieldName ), optionsMap[u
"Description"_s].toString() );
2831 if ( widgetType ==
"ValueMap"_L1 )
2833 if ( optionsMap[u
"map"_s].canConvert<QList<QVariant>>() )
2835 QList<QVariant> translatedValueList;
2836 const QList<QVariant> valueList = optionsMap[u
"map"_s].toList();
2837 for (
int i = 0; i < valueList.count(); i++ )
2839 QMap<QString, QVariant> translatedValueMap;
2840 QString translatedKey
2842 ->
translate( u
"project:layers:%1:fields:%2:valuemapdescriptions"_s.arg( layerNode.namedItem( u
"id"_s ).toElement().text(), fieldName ), valueList[i].toMap().constBegin().key() );
2843 translatedValueMap.insert( translatedKey, valueList[i].toMap().constBegin().value() );
2844 translatedValueList.append( translatedValueMap );
2846 optionsMap.insert( u
"map"_s, translatedValueList );
2850 mFieldWidgetSetups[fieldName] = setup;
2857 if ( categories.testFlag(
Fields ) )
2859 const QList<QPair<QString, Qgis::FieldConfigurationFlag>>
2861 for (
const auto &config : legacyConfig )
2863 QDomNode excludeNode = layerNode.namedItem( config.first );
2864 if ( !excludeNode.isNull() )
2866 QDomNodeList attributeNodeList = excludeNode.toElement().elementsByTagName( u
"attribute"_s );
2867 for (
int i = 0; i < attributeNodeList.size(); ++i )
2869 QString fieldName = attributeNodeList.at( i ).toElement().text();
2870 if ( !mFieldConfigurationFlags.contains( fieldName ) )
2871 mFieldConfigurationFlags[fieldName] = config.second;
2873 mFieldConfigurationFlags[fieldName].setFlag( config.second,
true );
2880 mGeometryOptions->readXml( layerNode.namedItem( u
"geometryOptions"_s ) );
2882 if ( categories.testFlag(
Forms ) )
2883 mEditFormConfig.readXml( layerNode, context );
2887 mAttributeTableConfig.readXml( layerNode );
2888 mConditionalStyles->readXml( layerNode, context );
2889 mStoredExpressionManager->readXml( layerNode );
2895 QDomElement mapLayerNode = layerNode.toElement();
2896 if ( categories.testFlag(
LayerConfiguration ) && mapLayerNode.attribute( u
"readOnly"_s, u
"0"_s ).toInt() == 1 )
2901 if ( categories.testFlag(
Legend ) )
2905 const QDomElement legendElem = layerNode.firstChildElement( u
"legend"_s );
2906 if ( !legendElem.isNull() )
2909 legend->readXml( legendElem, context );
2911 mSetLegendFromStyle =
true;
2940 if ( !rendererElement.isNull() )
2958 if ( mSelectionProperties )
2959 mSelectionProperties->readXml( node.toElement(), context );
2963 if ( categories.testFlag(
Labeling ) )
2967 QDomElement labelingElement = node.firstChildElement( u
"labeling"_s );
2969 if ( labelingElement.isNull() || ( labelingElement.attribute( u
"type"_s ) ==
"simple"_L1 && labelingElement.firstChildElement( u
"settings"_s ).isNull() ) )
2977 labeling = readLabelingFromCustomProperties();
2985 if ( node.toElement().hasAttribute( u
"labelsEnabled"_s ) )
2986 mLabelsEnabled = node.toElement().attribute( u
"labelsEnabled"_s ).toInt();
2988 mLabelsEnabled =
true;
2994 QDomNode blendModeNode = node.namedItem( u
"blendMode"_s );
2995 if ( !blendModeNode.isNull() )
2997 QDomElement e = blendModeNode.toElement();
3002 QDomNode featureBlendModeNode = node.namedItem( u
"featureBlendMode"_s );
3003 if ( !featureBlendModeNode.isNull() )
3005 QDomElement e = featureBlendModeNode.toElement();
3013 QDomNode layerTransparencyNode = node.namedItem( u
"layerTransparency"_s );
3014 if ( !layerTransparencyNode.isNull() )
3016 QDomElement e = layerTransparencyNode.toElement();
3017 setOpacity( 1.0 - e.text().toInt() / 100.0 );
3019 QDomNode layerOpacityNode = node.namedItem( u
"layerOpacity"_s );
3020 if ( !layerOpacityNode.isNull() )
3022 QDomElement e = layerOpacityNode.toElement();
3026 const bool hasScaleBasedVisibiliy { node.attributes().namedItem( u
"hasScaleBasedVisibilityFlag"_s ).nodeValue() ==
'1' };
3029 const double maxScale { node.attributes().namedItem( u
"maxScale"_s ).nodeValue().toDouble( &ok ) };
3034 const double minScale { node.attributes().namedItem( u
"minScale"_s ).nodeValue().toDouble( &ok ) };
3040 QDomElement e = node.toElement();
3045 mSimplifyMethod.setThreshold( e.attribute( u
"simplifyDrawingTol"_s, u
"1"_s ).toFloat() );
3046 mSimplifyMethod.setForceLocalOptimization( e.attribute( u
"simplifyLocal"_s, u
"1"_s ).toInt() );
3047 mSimplifyMethod.setMaximumScale( e.attribute( u
"simplifyMaxScale"_s, u
"1"_s ).toFloat() );
3050 mRenderer->setReferenceScale( e.attribute( u
"symbologyReferenceScale"_s, u
"-1"_s ).toDouble() );
3054 if ( categories.testFlag(
Diagrams ) )
3058 mDiagramRenderer.reset();
3059 QDomElement singleCatDiagramElem = node.firstChildElement( u
"SingleCategoryDiagramRenderer"_s );
3060 if ( !singleCatDiagramElem.isNull() )
3062 mDiagramRenderer = std::make_unique<QgsSingleCategoryDiagramRenderer>();
3063 mDiagramRenderer->readXml( singleCatDiagramElem, context );
3065 QDomElement linearDiagramElem = node.firstChildElement( u
"LinearlyInterpolatedDiagramRenderer"_s );
3066 if ( !linearDiagramElem.isNull() )
3068 if ( linearDiagramElem.hasAttribute( u
"classificationAttribute"_s ) )
3071 int idx = linearDiagramElem.attribute( u
"classificationAttribute"_s ).toInt();
3072 if ( idx >= 0 && idx < mFields.count() )
3073 linearDiagramElem.setAttribute( u
"classificationField"_s, mFields.at( idx ).name() );
3076 mDiagramRenderer = std::make_unique<QgsLinearlyInterpolatedDiagramRenderer>();
3077 mDiagramRenderer->readXml( linearDiagramElem, context );
3079 QDomElement stackedDiagramElem = node.firstChildElement( u
"StackedDiagramRenderer"_s );
3080 if ( !stackedDiagramElem.isNull() )
3082 mDiagramRenderer = std::make_unique<QgsStackedDiagramRenderer>();
3083 mDiagramRenderer->readXml( stackedDiagramElem, context );
3086 if ( mDiagramRenderer )
3088 QDomElement diagramSettingsElem = node.firstChildElement( u
"DiagramLayerSettings"_s );
3089 if ( !diagramSettingsElem.isNull() )
3091 bool oldXPos = diagramSettingsElem.hasAttribute( u
"xPosColumn"_s );
3092 bool oldYPos = diagramSettingsElem.hasAttribute( u
"yPosColumn"_s );
3093 bool oldShow = diagramSettingsElem.hasAttribute( u
"showColumn"_s );
3094 if ( oldXPos || oldYPos || oldShow )
3100 int xPosColumn = diagramSettingsElem.attribute( u
"xPosColumn"_s ).toInt();
3101 if ( xPosColumn >= 0 && xPosColumn < mFields.count() )
3106 int yPosColumn = diagramSettingsElem.attribute( u
"yPosColumn"_s ).toInt();
3107 if ( yPosColumn >= 0 && yPosColumn < mFields.count() )
3112 int showColumn = diagramSettingsElem.attribute( u
"showColumn"_s ).toInt();
3113 if ( showColumn >= 0 && showColumn < mFields.count() )
3116 QDomElement propertiesElem = diagramSettingsElem.ownerDocument().createElement( u
"properties"_s );
3122 ddp.
writeXml( propertiesElem, defs );
3123 diagramSettingsElem.appendChild( propertiesElem );
3126 mDiagramLayerSettings = std::make_unique<QgsDiagramLayerSettings>();
3127 mDiagramLayerSettings->readXml( diagramSettingsElem );
3133 styleChangedSignalBlocker.release();
3144 QDomElement layerElement = node.toElement();
3147 ( void )
writeStyle( node, doc, errorMessage, context, categories );
3150 mGeometryOptions->writeXml( node );
3155 if ( !legendElement.isNull() )
3156 node.appendChild( legendElement );
3165 QDomElement referencedLayersElement = doc.createElement( u
"referencedLayers"_s );
3166 node.appendChild( referencedLayersElement );
3168 const QList<QgsRelation>
referencingRelations { p->relationManager()->referencingRelations(
this ) };
3171 switch ( rel.type() )
3182 QDomElement referencingLayersElement = doc.createElement( u
"referencingLayers"_s );
3183 node.appendChild( referencingLayersElement );
3185 const QList<QgsRelation> referencedRelations { p->relationManager()->referencedRelations(
this ) };
3186 for (
const QgsRelation &rel : referencedRelations )
3188 switch ( rel.type() )
3201 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
3203 QDomElement fieldConfigurationElement;
3205 fieldConfigurationElement = doc.createElement( u
"fieldConfiguration"_s );
3206 node.appendChild( fieldConfigurationElement );
3208 for (
const QgsField &field : std::as_const( mFields ) )
3210 QDomElement fieldElement = doc.createElement( u
"field"_s );
3211 fieldElement.setAttribute( u
"name"_s, field.name() );
3212 fieldConfigurationElement.appendChild( fieldElement );
3214 if ( categories.testFlag(
Fields ) )
3216 fieldElement.setAttribute( u
"configurationFlags"_s,
qgsFlagValueToKeys( field.configurationFlags() ) );
3219 if ( categories.testFlag(
Forms ) )
3224 QDomElement editWidgetElement = doc.createElement( u
"editWidget"_s );
3225 fieldElement.appendChild( editWidgetElement );
3226 editWidgetElement.setAttribute( u
"type"_s, field.editorWidgetSetup().type() );
3227 QDomElement editWidgetConfigElement = doc.createElement( u
"config"_s );
3230 editWidgetElement.appendChild( editWidgetConfigElement );
3236 if ( categories.testFlag(
Fields ) )
3239 QDomElement aliasElem = doc.createElement( u
"aliases"_s );
3240 for (
const QgsField &field : std::as_const( mFields ) )
3242 QDomElement aliasEntryElem = doc.createElement( u
"alias"_s );
3243 aliasEntryElem.setAttribute( u
"field"_s, field.name() );
3244 aliasEntryElem.setAttribute( u
"index"_s, mFields.indexFromName( field.name() ) );
3245 aliasEntryElem.setAttribute( u
"name"_s, field.alias() );
3246 aliasElem.appendChild( aliasEntryElem );
3248 node.appendChild( aliasElem );
3251 QDomElement customCommentElem = doc.createElement( u
"customComments"_s );
3252 bool hasCustomComments =
false;
3253 for (
const QgsField &field : std::as_const( mFields ) )
3256 const QString customComment = field.customComment();
3257 if ( customComment.isNull() )
3260 hasCustomComments =
true;
3261 QDomElement customCommentEntryElem = doc.createElement( u
"customComment"_s );
3262 customCommentEntryElem.setAttribute( u
"field"_s, field.name() );
3263 customCommentEntryElem.setAttribute( u
"value"_s, customComment );
3264 customCommentElem.appendChild( customCommentEntryElem );
3266 if ( hasCustomComments )
3268 node.appendChild( customCommentElem );
3273 QDomElement splitPoliciesElement = doc.createElement( u
"splitPolicies"_s );
3274 bool hasNonDefaultSplitPolicies =
false;
3275 for (
const QgsField &field : std::as_const( mFields ) )
3279 QDomElement splitPolicyElem = doc.createElement( u
"policy"_s );
3280 splitPolicyElem.setAttribute( u
"field"_s, field.name() );
3281 splitPolicyElem.setAttribute( u
"policy"_s,
qgsEnumValueToKey( field.splitPolicy() ) );
3282 splitPoliciesElement.appendChild( splitPolicyElem );
3283 hasNonDefaultSplitPolicies =
true;
3286 if ( hasNonDefaultSplitPolicies )
3287 node.appendChild( splitPoliciesElement );
3292 QDomElement duplicatePoliciesElement = doc.createElement( u
"duplicatePolicies"_s );
3293 bool hasNonDefaultDuplicatePolicies =
false;
3294 for (
const QgsField &field : std::as_const( mFields ) )
3298 QDomElement duplicatePolicyElem = doc.createElement( u
"policy"_s );
3299 duplicatePolicyElem.setAttribute( u
"field"_s, field.name() );
3300 duplicatePolicyElem.setAttribute( u
"policy"_s,
qgsEnumValueToKey( field.duplicatePolicy() ) );
3301 duplicatePoliciesElement.appendChild( duplicatePolicyElem );
3302 hasNonDefaultDuplicatePolicies =
true;
3305 if ( hasNonDefaultDuplicatePolicies )
3306 node.appendChild( duplicatePoliciesElement );
3311 QDomElement mergePoliciesElement = doc.createElement( u
"mergePolicies"_s );
3312 bool hasNonDefaultMergePolicies =
false;
3313 for (
const QgsField &field : std::as_const( mFields ) )
3317 QDomElement mergePolicyElem = doc.createElement( u
"policy"_s );
3318 mergePolicyElem.setAttribute( u
"field"_s, field.name() );
3319 mergePolicyElem.setAttribute( u
"policy"_s,
qgsEnumValueToKey( field.mergePolicy() ) );
3320 mergePoliciesElement.appendChild( mergePolicyElem );
3321 hasNonDefaultMergePolicies =
true;
3324 if ( hasNonDefaultMergePolicies )
3325 node.appendChild( mergePoliciesElement );
3329 QDomElement defaultsElem = doc.createElement( u
"defaults"_s );
3330 for (
const QgsField &field : std::as_const( mFields ) )
3332 QDomElement defaultElem = doc.createElement( u
"default"_s );
3333 defaultElem.setAttribute( u
"field"_s, field.name() );
3334 defaultElem.setAttribute( u
"expression"_s, field.defaultValueDefinition().expression() );
3335 defaultElem.setAttribute( u
"applyOnUpdate"_s, field.defaultValueDefinition().applyOnUpdate() ? u
"1"_s : u
"0"_s );
3336 defaultsElem.appendChild( defaultElem );
3338 node.appendChild( defaultsElem );
3341 QDomElement constraintsElem = doc.createElement( u
"constraints"_s );
3342 for (
const QgsField &field : std::as_const( mFields ) )
3344 QDomElement constraintElem = doc.createElement( u
"constraint"_s );
3345 constraintElem.setAttribute( u
"field"_s, field.name() );
3346 constraintElem.setAttribute( u
"constraints"_s, field.constraints().constraints() );
3351 constraintsElem.appendChild( constraintElem );
3353 node.appendChild( constraintsElem );
3356 QDomElement constraintExpressionsElem = doc.createElement( u
"constraintExpressions"_s );
3357 for (
const QgsField &field : std::as_const( mFields ) )
3359 QDomElement constraintExpressionElem = doc.createElement( u
"constraint"_s );
3360 constraintExpressionElem.setAttribute( u
"field"_s, field.name() );
3361 constraintExpressionElem.setAttribute( u
"exp"_s, field.constraints().constraintExpression() );
3362 constraintExpressionElem.setAttribute( u
"desc"_s, field.constraints().constraintDescription() );
3363 constraintExpressionsElem.appendChild( constraintExpressionElem );
3365 node.appendChild( constraintExpressionsElem );
3368 if ( !mExpressionFieldBuffer )
3376 mExpressionFieldBuffer->writeXml( node, doc );
3381 if ( categories.testFlag(
Actions ) )
3382 mActions->writeXml( node );
3386 mAttributeTableConfig.writeXml( node );
3387 mConditionalStyles->writeXml( node, doc, context );
3388 mStoredExpressionManager->writeXml( node );
3391 if ( categories.testFlag(
Forms ) )
3392 mEditFormConfig.writeXml( node, context );
3396 node.toElement().setAttribute( u
"readOnly"_s, mReadOnly );
3401 QDomElement prevExpElem = doc.createElement( u
"previewExpression"_s );
3402 QDomText prevExpText = doc.createTextNode( mDisplayExpression );
3403 prevExpElem.appendChild( prevExpText );
3404 node.appendChild( prevExpElem );
3408 if ( categories.testFlag(
MapTips ) )
3410 QDomElement mapTipElem = doc.createElement( u
"mapTip"_s );
3412 QDomText mapTipText = doc.createTextNode( mMapTipTemplate );
3413 mapTipElem.appendChild( mapTipText );
3414 node.toElement().appendChild( mapTipElem );
3424 QDomElement mapLayerNode = node.toElement();
3437 QDomElement rendererElement = mRenderer->save( doc, context );
3438 node.appendChild( rendererElement );
3440 if ( mSelectionProperties )
3442 mSelectionProperties->writeXml( mapLayerNode, doc, context );
3446 if ( categories.testFlag(
Labeling ) )
3450 QDomElement labelingElement = mLabeling->save( doc, context );
3451 node.appendChild( labelingElement );
3453 mapLayerNode.setAttribute( u
"labelsEnabled"_s, mLabelsEnabled ? u
"1"_s : u
"0"_s );
3459 mapLayerNode.setAttribute( u
"simplifyDrawingHints"_s, QString::number(
static_cast< int >( mSimplifyMethod.simplifyHints() ) ) );
3460 mapLayerNode.setAttribute( u
"simplifyAlgorithm"_s, QString::number(
static_cast< int >( mSimplifyMethod.simplifyAlgorithm() ) ) );
3461 mapLayerNode.setAttribute( u
"simplifyDrawingTol"_s, QString::number( mSimplifyMethod.threshold() ) );
3462 mapLayerNode.setAttribute( u
"simplifyLocal"_s, mSimplifyMethod.forceLocalOptimization() ? 1 : 0 );
3463 mapLayerNode.setAttribute( u
"simplifyMaxScale"_s, QString::number( mSimplifyMethod.maximumScale() ) );
3475 QDomElement blendModeElem = doc.createElement( u
"blendMode"_s );
3477 blendModeElem.appendChild( blendModeText );
3478 node.appendChild( blendModeElem );
3481 QDomElement featureBlendModeElem = doc.createElement( u
"featureBlendMode"_s );
3483 featureBlendModeElem.appendChild( featureBlendModeText );
3484 node.appendChild( featureBlendModeElem );
3490 QDomElement layerOpacityElem = doc.createElement( u
"layerOpacity"_s );
3491 QDomText layerOpacityText = doc.createTextNode( QString::number(
opacity() ) );
3492 layerOpacityElem.appendChild( layerOpacityText );
3493 node.appendChild( layerOpacityElem );
3495 mapLayerNode.setAttribute( u
"maxScale"_s,
maximumScale() );
3496 mapLayerNode.setAttribute( u
"minScale"_s,
minimumScale() );
3498 mapLayerNode.setAttribute( u
"symbologyReferenceScale"_s, mRenderer ? mRenderer->referenceScale() : -1 );
3501 if ( categories.testFlag(
Diagrams ) && mDiagramRenderer )
3503 mDiagramRenderer->writeXml( mapLayerNode, doc, context );
3504 if ( mDiagramLayerSettings )
3505 mDiagramLayerSettings->writeXml( mapLayerNode, doc );
3516 QDomElement nameElem = node.firstChildElement( u
"Name"_s );
3517 if ( nameElem.isNull() )
3519 errorMessage = u
"Warning: Name element not found within NamedLayer while it's required."_s;
3535 readSldLabeling( node );
3537 styleChangedSignalBlocker.release();
3547 context.setExtraProperties( props );
3566 QDomElement nameNode = doc.createElement( u
"se:Name"_s );
3567 nameNode.appendChild( doc.createTextNode(
name() ) );
3568 node.appendChild( nameNode );
3570 QDomElement userStyleElem = doc.createElement( u
"UserStyle"_s );
3571 node.appendChild( userStyleElem );
3573 QDomElement nameElem = doc.createElement( u
"se:Name"_s );
3574 nameElem.appendChild( doc.createTextNode(
name() ) );
3576 userStyleElem.appendChild( nameElem );
3578 QDomElement featureTypeStyleElem = doc.createElement( u
"se:FeatureTypeStyle"_s );
3579 userStyleElem.appendChild( featureTypeStyleElem );
3581 mRenderer->toSld( doc, featureTypeStyleElem, context );
3584 mLabeling->toSld( featureTypeStyleElem, context );
3594 if ( !mEditBuffer || !mDataProvider )
3599 if ( mGeometryOptions->isActive() )
3600 mGeometryOptions->apply( geom );
3604 bool result = mEditBuffer->changeGeometry( fid, geom );
3609 if ( !skipDefaultValue && !mDefaultValueOnUpdateFields.isEmpty() )
3610 updateDefaultValues( fid );
3620 bool result =
false;
3622 switch (
fields().fieldOrigin( field ) )
3625 result = mJoinBuffer->changeAttributeValue( fid, field, newValue, oldValue );
3634 if ( mEditBuffer && mDataProvider )
3635 result = mEditBuffer->changeAttributeValue( fid, field, newValue, oldValue );
3643 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3661 for (
auto it = newValues.constBegin(); it != newValues.constEnd(); ++it )
3663 const int field = it.key();
3664 const QVariant newValue = it.value();
3667 if ( oldValues.contains( field ) )
3668 oldValue = oldValues[field];
3670 switch (
fields().fieldOrigin( field ) )
3673 newValuesJoin[field] = newValue;
3674 oldValuesJoin[field] = oldValue;
3681 newValuesNotJoin[field] = newValue;
3682 oldValuesNotJoin[field] = oldValue;
3691 if ( !newValuesJoin.isEmpty() && mJoinBuffer )
3693 result = mJoinBuffer->changeAttributeValues( fid, newValuesJoin, oldValuesJoin );
3696 if ( !newValuesNotJoin.isEmpty() )
3698 if ( mEditBuffer && mDataProvider )
3699 result &= mEditBuffer->changeAttributeValues( fid, newValuesNotJoin, oldValues );
3704 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3716 if ( !mEditBuffer || !mDataProvider )
3719 return mEditBuffer->addAttribute( field );
3726 if ( attIndex < 0 || attIndex >=
fields().count() )
3730 mFields[attIndex].setAlias( QString() );
3731 if ( mAttributeAliasMap.contains(
name ) )
3733 mAttributeAliasMap.remove(
name );
3735 mEditFormConfig.setFields( mFields );
3744 if ( index < 0 || index >=
fields().count() )
3747 switch ( mFields.fieldOrigin( index ) )
3751 if ( mExpressionFieldBuffer )
3753 int oi = mFields.fieldOriginIndex( index );
3754 mExpressionFieldBuffer->renameExpression( oi, newName );
3767 if ( !mEditBuffer || !mDataProvider )
3770 return mEditBuffer->renameAttribute( index, newName );
3784 if ( attIndex < 0 || attIndex >=
fields().count() )
3789 mAttributeAliasMap.insert(
name, aliasString );
3790 mFields[attIndex].setAlias( aliasString );
3791 mEditFormConfig.setFields( mFields );
3799 if ( index < 0 || index >=
fields().count() )
3809 if ( attIndex < 0 || attIndex >=
fields().count() )
3814 mAttributeCustomCommentMap.insert(
name, customCommentString );
3815 mFields[attIndex].setCustomComment( customCommentString );
3816 mEditFormConfig.setFields( mFields );
3824 if ( attIndex < 0 || attIndex >=
fields().count() )
3828 mFields[attIndex].setCustomComment( QString() );
3829 if ( mAttributeCustomCommentMap.contains(
name ) )
3831 mAttributeCustomCommentMap.remove(
name );
3833 mEditFormConfig.setFields( mFields );
3842 if ( index < 0 || index >=
fields().count() )
3852 return mAttributeCustomCommentMap;
3859 if ( index >= 0 && index < mFields.count() )
3860 return mFields.at( index ).displayName();
3869 return mAttributeAliasMap;
3876 if ( index < 0 || index >=
fields().count() )
3881 mAttributeSplitPolicy.insert(
name, policy );
3882 mFields[index].setSplitPolicy( policy );
3883 mEditFormConfig.setFields( mFields );
3891 if ( index < 0 || index >=
fields().count() )
3896 mAttributeDuplicatePolicy.insert(
name, policy );
3897 mFields[index].setDuplicatePolicy( policy );
3898 mEditFormConfig.setFields( mFields );
3906 if ( index < 0 || index >=
fields().count() )
3911 mAttributeMergePolicy.insert(
name, policy );
3912 mFields[index].setMergePolicy( policy );
3913 mEditFormConfig.setFields( mFields );
3921 QSet<QString> excludeList;
3922 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3923 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3927 excludeList << flagsIt.key();
3937 QMap< QString, Qgis::FieldConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3938 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3949 QSet<QString> excludeList;
3950 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3951 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3955 excludeList << flagsIt.key();
3965 QMap< QString, Qgis::FieldConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3966 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3977 if ( index < 0 || index >=
fields().count() )
3986 if ( !mEditBuffer || !mDataProvider )
3989 return mEditBuffer->deleteAttribute( index );
3996 bool deleted =
false;
3999 QList<int> attrList = qgis::setToList( qgis::listToSet( attrs ) );
4001 std::sort( attrList.begin(), attrList.end(), std::greater<int>() );
4003 for (
int attr : std::as_const( attrList ) )
4021 if ( context && context->
cascade )
4024 const bool hasRelationsOrJoins = !relations.empty() || mJoinBuffer->
containsJoins();
4025 if ( hasRelationsOrJoins )
4030 if ( handledFeatureIds.contains( fid ) )
4038 handledFeatureIds << fid;
4047 for (
const QgsRelation &relation : relations )
4050 switch ( relation.strength() )
4055 QgsFeatureIterator relatedFeaturesIt = relation.getRelatedFeatures(
getFeature( fid ) );
4057 QgsFeature childFeature;
4058 while ( relatedFeaturesIt.
nextFeature( childFeature ) )
4060 childFeatureIds.insert( childFeature.
id() );
4062 if ( childFeatureIds.count() > 0 )
4064 relation.referencingLayer()->startEditing();
4065 relation.referencingLayer()->deleteFeatures( childFeatureIds, context );
4077 if ( mJoinBuffer->containsJoins() )
4078 mJoinBuffer->deleteFeature( fid, context );
4080 bool res = mEditBuffer->deleteFeature( fid );
4092 return deleteFeatureCascade( fid, context );
4101 if ( ( context && context->
cascade ) || mJoinBuffer->containsJoins() )
4105 res = deleteFeatureCascade( fid, context ) && res;
4109 res = mEditBuffer && mEditBuffer->deleteFeatures( fids );
4114 mSelectedFeatureIds.subtract( fids );
4134 if ( !mDataProvider )
4135 return pkAttributesList;
4138 for (
int i = 0; i < mFields.count(); ++i )
4141 pkAttributesList << i;
4144 return pkAttributesList;
4151 if ( !mDataProvider )
4153 return mDataProvider->featureCount() + ( mEditBuffer && !mDataProvider->transaction() ? mEditBuffer->addedFeatures().size() - mEditBuffer->deletedFeatureIds().size() : 0 );
4160 const QgsFeatureIds deletedFeatures( mEditBuffer && !mDataProvider->transaction() ? mEditBuffer->deletedFeatureIds() :
QgsFeatureIds() );
4161 const QgsFeatureMap addedFeatures( mEditBuffer && !mDataProvider->transaction() ? mEditBuffer->addedFeatures() :
QgsFeatureMap() );
4163 if ( mEditBuffer && !deletedFeatures.empty() )
4165 if ( addedFeatures.size() > deletedFeatures.size() )
4171 if ( ( !mEditBuffer || addedFeatures.empty() ) && mDataProvider && mDataProvider->empty() )
4184 mCommitErrors.clear();
4186 if ( !mDataProvider )
4188 mCommitErrors << tr(
"ERROR: no provider" );
4194 mCommitErrors << tr(
"ERROR: layer not editable" );
4200 if ( !mAllowCommit )
4203 mCommitChangesActive =
true;
4205 bool success =
false;
4206 if ( mEditBuffer->editBufferGroup() )
4207 success = mEditBuffer->editBufferGroup()->commitChanges( mCommitErrors, stopEditing );
4209 success = mEditBuffer->commitChanges( mCommitErrors );
4211 mCommitChangesActive =
false;
4213 if ( !mDeletedFids.empty() )
4216 mDeletedFids.clear();
4237 mDataProvider->updateExtents();
4241 mDataProvider->leaveUpdateMode();
4247 if ( mFields.names() != mDataProvider->fields().names() )
4261 return mCommitErrors;
4276 if ( !mDataProvider )
4278 mCommitErrors << tr(
"ERROR: no provider" );
4282 bool rollbackExtent = !mDataProvider->transaction() && ( !mEditBuffer->deletedFeatureIds().isEmpty() || !mEditBuffer->addedFeatures().isEmpty() || !mEditBuffer->changedGeometries().isEmpty() );
4286 mEditBuffer->rollBack();
4302 mEditBuffer =
nullptr;
4307 if ( rollbackExtent )
4310 mDataProvider->leaveUpdateMode();
4320 return mSelectedFeatureIds.size();
4328 return mSelectedFeatureIds;
4336 features.reserve( mSelectedFeatureIds.count() );
4343 features.push_back( f );
4353 if ( mSelectedFeatureIds.isEmpty() )
4359 if ( mSelectedFeatureIds.count() == 1 )
4360 request.
setFilterFid( *mSelectedFeatureIds.constBegin() );
4371 if ( !mEditBuffer || !mDataProvider )
4374 if ( mGeometryOptions->isActive() )
4376 for (
auto feature = features.begin(); feature != features.end(); ++feature )
4379 mGeometryOptions->apply( geom );
4384 bool res = mEditBuffer->addFeatures( features );
4387 if ( res && mJoinBuffer->containsJoins() )
4388 res = mJoinBuffer->addFeatures( features );
4406 if ( exp.isField() )
4429 if ( !mDisplayExpression.isEmpty() || mFields.isEmpty() )
4431 return mDisplayExpression;
4436 if ( !candidateName.isEmpty() )
4459 return ( mEditBuffer && mDataProvider );
4471bool QgsVectorLayer::isReadOnly()
const
4475 return mDataSourceReadOnly || mReadOnly;
4483 if ( readonly && mEditBuffer )
4487 if ( !readonly && mDataSourceReadOnly )
4490 mReadOnly = readonly;
4499 if ( !mDataProvider )
4502 if ( mDataSourceReadOnly )
4513 return mEditBuffer && mEditBuffer->isModified();
4520 bool auxiliaryField =
false;
4524 return auxiliaryField;
4531 auxiliaryField =
true;
4534 return auxiliaryField;
4550 if ( r != mRenderer.get() )
4552 mRenderer.reset( r );
4553 mSymbolFeatureCounted =
false;
4554 mSymbolFeatureCountMap.clear();
4555 mSymbolFeatureIdMap.clear();
4560 if ( refreshRate <= 0 )
4562 mRefreshRendererTimer->stop();
4563 mRefreshRendererTimer->setInterval( 0 );
4567 mRefreshRendererTimer->setInterval( 1000 / refreshRate );
4568 mRefreshRendererTimer->start();
4583 mRendererGenerators << generator;
4591 for (
int i = mRendererGenerators.count() - 1; i >= 0; --i )
4593 if ( mRendererGenerators.at( i )->id() ==
id )
4595 delete mRendererGenerators.at( i );
4596 mRendererGenerators.removeAt( i );
4606 QList< const QgsFeatureRendererGenerator * > res;
4616 if ( !mDataProvider )
4620 if ( mDataProvider->transaction() )
4622 QString ignoredError;
4623 mDataProvider->transaction()->createSavepoint( ignoredError );
4626 mEditCommandActive =
true;
4634 if ( !mDataProvider )
4639 mEditCommandActive =
false;
4640 if ( !mDeletedFids.isEmpty() )
4644 mSelectedFeatureIds.subtract( mDeletedFids );
4647 mDeletedFids.clear();
4656 if ( !mDataProvider )
4667 auto command = std::make_unique< QUndoCommand >();
4668 command->setObsolete(
true );
4671 mEditCommandActive =
false;
4672 mDeletedFids.clear();
4680 return mJoinBuffer->addJoin( joinInfo );
4687 return mJoinBuffer->removeJoin( joinLayerId );
4694 return mJoinBuffer->vectorJoins();
4702 mExpressionFieldBuffer->addExpression( exp, fld );
4704 int idx = mFields.indexFromName( fld.
name() );
4714 int oi = mFields.fieldOriginIndex( index );
4715 mExpressionFieldBuffer->removeExpression( oi );
4727 int oi = mFields.fieldOriginIndex( index );
4728 if ( oi < 0 || oi >= mExpressionFieldBuffer->expressions().size() )
4731 return mExpressionFieldBuffer->expressions().at( oi ).cachedExpression.expression();
4738 int oi = mFields.fieldOriginIndex( index );
4739 mExpressionFieldBuffer->updateExpression( oi, exp );
4747 if ( !mDataProvider )
4752 mFields = mDataProvider->fields();
4756 mEditBuffer->updateFields( mFields );
4759 if ( mJoinBuffer->containsJoins() )
4760 mJoinBuffer->updateFields( mFields );
4762 if ( mExpressionFieldBuffer )
4763 mExpressionFieldBuffer->updateFields( mFields );
4766 for (
auto aliasIt = mAttributeAliasMap.constBegin(); aliasIt != mAttributeAliasMap.constEnd(); ++aliasIt )
4768 int index = mFields.lookupField( aliasIt.key() );
4772 mFields[index].setAlias( aliasIt.value() );
4776 for (
auto customCommentIt = mAttributeCustomCommentMap.constBegin(); customCommentIt != mAttributeCustomCommentMap.constEnd(); ++customCommentIt )
4778 int index = mFields.lookupField( customCommentIt.key() );
4782 mFields[index].setCustomComment( customCommentIt.value() );
4785 for (
auto splitPolicyIt = mAttributeSplitPolicy.constBegin(); splitPolicyIt != mAttributeSplitPolicy.constEnd(); ++splitPolicyIt )
4787 int index = mFields.lookupField( splitPolicyIt.key() );
4791 mFields[index].setSplitPolicy( splitPolicyIt.value() );
4794 for (
auto duplicatePolicyIt = mAttributeDuplicatePolicy.constBegin(); duplicatePolicyIt != mAttributeDuplicatePolicy.constEnd(); ++duplicatePolicyIt )
4796 int index = mFields.lookupField( duplicatePolicyIt.key() );
4800 mFields[index].setDuplicatePolicy( duplicatePolicyIt.value() );
4803 for (
auto mergePolicyIt = mAttributeMergePolicy.constBegin(); mergePolicyIt != mAttributeMergePolicy.constEnd(); ++mergePolicyIt )
4805 int index = mFields.lookupField( mergePolicyIt.key() );
4809 mFields[index].setMergePolicy( mergePolicyIt.value() );
4813 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.
constBegin();
4814 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
4816 int index = mFields.lookupField( flagsIt.key() );
4820 mFields[index].setConfigurationFlags( flagsIt.value() );
4824 mDefaultValueOnUpdateFields.clear();
4825 QMap< QString, QgsDefaultValue >::const_iterator defaultIt = mDefaultExpressionMap.constBegin();
4826 for ( ; defaultIt != mDefaultExpressionMap.constEnd(); ++defaultIt )
4828 int index = mFields.lookupField( defaultIt.key() );
4832 mFields[index].setDefaultValueDefinition( defaultIt.value() );
4833 if ( defaultIt.value().applyOnUpdate() )
4834 mDefaultValueOnUpdateFields.insert( index );
4837 QMap< QString, QgsFieldConstraints::Constraints >::const_iterator constraintIt = mFieldConstraints.constBegin();
4838 for ( ; constraintIt != mFieldConstraints.constEnd(); ++constraintIt )
4840 int index = mFields.lookupField( constraintIt.key() );
4853 mFields[index].setConstraints( constraints );
4856 QMap< QString, QPair< QString, QString > >::const_iterator constraintExpIt = mFieldConstraintExpressions.constBegin();
4857 for ( ; constraintExpIt != mFieldConstraintExpressions.constEnd(); ++constraintExpIt )
4859 int index = mFields.lookupField( constraintExpIt.key() );
4870 mFields[index].setConstraints( constraints );
4874 for ( ; constraintStrengthIt != mFieldConstraintStrength.constEnd(); ++constraintStrengthIt )
4876 int index = mFields.lookupField( constraintStrengthIt.key().first );
4886 constraints.
setConstraintStrength( constraintStrengthIt.key().second, constraintStrengthIt.value() );
4887 mFields[index].setConstraints( constraints );
4890 auto fieldWidgetIterator = mFieldWidgetSetups.constBegin();
4891 for ( ; fieldWidgetIterator != mFieldWidgetSetups.constEnd(); ++fieldWidgetIterator )
4893 int index = mFields.indexOf( fieldWidgetIterator.key() );
4897 mFields[index].setEditorWidgetSetup( fieldWidgetIterator.value() );
4900 if ( oldFields != mFields )
4903 mEditFormConfig.setFields( mFields );
4911 if ( index < 0 || index >= mFields.count() || !mDataProvider )
4914 QString expression = mFields.at( index ).defaultValueDefinition().expression();
4915 if ( expression.isEmpty() )
4916 return mDataProvider->defaultValue( index );
4919 std::unique_ptr< QgsExpressionContext > tempContext;
4924 evalContext = tempContext.get();
4959 if ( index < 0 || index >= mFields.count() )
4964 mDefaultExpressionMap.insert( mFields.at( index ).name(), definition );
4968 mDefaultExpressionMap.remove( mFields.at( index ).name() );
4977 if ( index < 0 || index >= mFields.count() )
4980 return mFields.at( index ).defaultValueDefinition();
4988 if ( !mDataProvider )
5001 uniqueValues = mDataProvider->uniqueValues( index, limit );
5003 if ( mEditBuffer && !mDataProvider->transaction() )
5007 for (
const QVariant &v : constUniqueValues )
5009 vals << v.toString();
5013 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
5014 while ( addedIt.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
5017 QVariant v = addedIt.value().attribute( index );
5020 QString vs = v.toString();
5021 if ( !vals.contains( vs ) )
5029 QMapIterator< QgsFeatureId, QgsAttributeMap > it( mEditBuffer->changedAttributeValues() );
5030 while ( it.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
5033 QVariant v = it.value().value( index );
5036 QString vs = v.toString();
5037 if ( !vals.contains( vs ) )
5051 if ( mDataProvider->transaction()
5052 || ( mEditBuffer->deletedFeatureIds().isEmpty() && mEditBuffer->addedFeatures().isEmpty() && !mEditBuffer->deletedAttributeIds().contains( index ) && mEditBuffer->changedAttributeValues().isEmpty() ) )
5054 uniqueValues = mDataProvider->uniqueValues( index, limit );
5068 QVariant currentValue;
5069 QHash<QString, QVariant> val;
5073 val.insert( currentValue.toString(), currentValue );
5074 if ( limit >= 0 && val.size() >= limit )
5080 return qgis::listToSet( val.values() );
5084 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueValues()",
"Unknown source of the field!" );
5092 QStringList results;
5093 if ( !mDataProvider )
5106 results = mDataProvider->uniqueStringsMatching( index, substring, limit, feedback );
5108 if ( mEditBuffer && !mDataProvider->transaction() )
5111 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
5112 while ( addedIt.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
5115 QVariant v = addedIt.value().attribute( index );
5118 QString vs = v.toString();
5119 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
5126 QMapIterator< QgsFeatureId, QgsAttributeMap > it( mEditBuffer->changedAttributeValues() );
5127 while ( it.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
5130 QVariant v = it.value().value( index );
5133 QString vs = v.toString();
5134 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
5147 if ( mDataProvider->transaction()
5148 || ( mEditBuffer->deletedFeatureIds().isEmpty() && mEditBuffer->addedFeatures().isEmpty() && !mEditBuffer->deletedAttributeIds().contains( index ) && mEditBuffer->changedAttributeValues().isEmpty() ) )
5150 return mDataProvider->uniqueStringsMatching( index, substring, limit, feedback );
5163 QString fieldName = mFields.at( index ).name();
5168 QString currentValue;
5171 currentValue = f.
attribute( index ).toString();
5172 if ( !results.contains( currentValue ) )
5173 results << currentValue;
5175 if ( ( limit >= 0 && results.size() >= limit ) || ( feedback && feedback->
isCanceled() ) )
5185 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueStringsMatching()",
"Unknown source of the field!" );
5194 minimumOrMaximumValue( index, &minimum,
nullptr );
5203 minimumOrMaximumValue( index,
nullptr, &maximum );
5211 minimumOrMaximumValue( index, &minimum, &maximum );
5214void QgsVectorLayer::minimumOrMaximumValue(
int index, QVariant *minimum, QVariant *maximum )
const
5219 *minimum = QVariant();
5221 *maximum = QVariant();
5223 if ( !mDataProvider )
5240 *minimum = mDataProvider->minimumValue( index );
5242 *maximum = mDataProvider->maximumValue( index );
5243 if ( mEditBuffer && !mDataProvider->transaction() )
5246 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
5247 while ( addedIt.hasNext() )
5250 const QVariant v = addedIt.value().attribute( index );
5257 QMapIterator< QgsFeatureId, QgsAttributeMap > it( mEditBuffer->changedAttributeValues() );
5258 while ( it.hasNext() )
5261 const QVariant v = it.value().value( index );
5274 if ( mDataProvider->transaction()
5275 || ( mEditBuffer->deletedFeatureIds().isEmpty() && mEditBuffer->addedFeatures().isEmpty() && !mEditBuffer->deletedAttributeIds().contains( index ) && mEditBuffer->changedAttributeValues().isEmpty() ) )
5278 *minimum = mDataProvider->minimumValue( index );
5280 *maximum = mDataProvider->maximumValue( index );
5296 bool firstValue =
true;
5299 const QVariant currentValue = f.
attribute( index );
5306 *minimum = currentValue;
5308 *maximum = currentValue;
5313 if ( minimum && currentValue.isValid() &&
qgsVariantLessThan( currentValue, *minimum ) )
5314 *minimum = currentValue;
5316 *maximum = currentValue;
5323 Q_ASSERT_X(
false,
"QgsVectorLayer::minimumOrMaximumValue()",
"Unknown source of the field!" );
5326void QgsVectorLayer::createEditBuffer()
5333 if ( mDataProvider->transaction() )
5336 connect( mDataProvider->transaction(), &
QgsTransaction::dirtied,
this, &QgsVectorLayer::onDirtyTransaction, Qt::UniqueConnection );
5343 mEditBuffer->setParent(
this );
5363void QgsVectorLayer::clearEditBuffer()
5368 mEditBuffer =
nullptr;
5371void QgsVectorLayer::applyRendererSettings()
5373 const QgsLayerRenderingSettings *providerRenderingSettings = mDataProvider->renderingSettings();
5375 if ( !providerRenderingSettings )
5393 const QString &fieldOrExpression,
5410 if ( !mDataProvider )
5413 *
error = tr(
"Layer is invalid" );
5419 if ( attrIndex >= 0 )
5426 bool providerOk =
false;
5427 QVariant val = mDataProvider->aggregate(
aggregate, attrIndex, parameters, context, providerOk, fids );
5441 c.setFidsFilter( *fids );
5442 c.setParameters( parameters );
5443 bool aggregateOk =
false;
5444 const QVariant result =
c.calculate(
aggregate, fieldOrExpression, context, &aggregateOk, feedback );
5447 if ( !aggregateOk &&
error )
5470 return mFeatureBlendMode;
5473void QgsVectorLayer::readSldLabeling(
const QDomNode &node )
5480 QDomElement element = node.toElement();
5481 if ( element.isNull() )
5484 QDomElement userStyleElem = element.firstChildElement( u
"UserStyle"_s );
5485 if ( userStyleElem.isNull() )
5491 QDomElement featTypeStyleElem = userStyleElem.firstChildElement( u
"FeatureTypeStyle"_s );
5492 if ( featTypeStyleElem.isNull() )
5499 QDomElement mergedFeatTypeStyle = featTypeStyleElem.cloneNode(
false ).toElement();
5504 bool needRuleBasedLabeling =
false;
5507 while ( !featTypeStyleElem.isNull() )
5509 QDomElement ruleElem = featTypeStyleElem.firstChildElement( u
"Rule"_s );
5510 while ( !ruleElem.isNull() )
5514 bool hasTextSymbolizer =
false;
5515 bool hasRuleBased =
false;
5516 QDomElement ruleChildElem = ruleElem.firstChildElement();
5517 while ( !ruleChildElem.isNull() )
5520 if ( ruleChildElem.localName() ==
"Filter"_L1 || ruleChildElem.localName() ==
"MinScaleDenominator"_L1 || ruleChildElem.localName() ==
"MaxScaleDenominator"_L1 )
5522 hasRuleBased =
true;
5525 else if ( ruleChildElem.localName() ==
"TextSymbolizer"_L1 )
5528 hasTextSymbolizer =
true;
5531 ruleChildElem = ruleChildElem.nextSiblingElement();
5534 if ( hasTextSymbolizer )
5539 mergedFeatTypeStyle.appendChild( ruleElem.cloneNode().toElement() );
5543 QgsDebugMsgLevel( u
"Info: Filter or Min/MaxScaleDenominator element found: need a RuleBasedLabeling"_s, 4 );
5544 needRuleBasedLabeling =
true;
5549 if ( ruleCount > 1 )
5551 QgsDebugMsgLevel( u
"Info: More Rule elements found: need a RuleBasedLabeling"_s, 4 );
5552 needRuleBasedLabeling =
true;
5556 if ( ruleCount == 0 )
5558 needRuleBasedLabeling =
false;
5561 ruleElem = ruleElem.nextSiblingElement( u
"Rule"_s );
5563 featTypeStyleElem = featTypeStyleElem.nextSiblingElement( u
"FeatureTypeStyle"_s );
5566 if ( ruleCount == 0 )
5572 QDomElement ruleElem = mergedFeatTypeStyle.firstChildElement( u
"Rule"_s );
5574 if ( needRuleBasedLabeling )
5577 QgsRuleBasedLabeling::Rule *rootRule =
new QgsRuleBasedLabeling::Rule(
nullptr );
5578 while ( !ruleElem.isNull() )
5580 QString label, description, filterExp;
5581 int scaleMinDenom = 0, scaleMaxDenom = 0;
5582 QgsPalLayerSettings settings;
5585 QDomElement childElem = ruleElem.firstChildElement();
5586 while ( !childElem.isNull() )
5588 if ( childElem.localName() ==
"Name"_L1 )
5592 if ( label.isEmpty() )
5593 label = childElem.firstChild().nodeValue();
5595 else if ( childElem.localName() ==
"Description"_L1 )
5598 QDomElement titleElem = childElem.firstChildElement( u
"Title"_s );
5599 if ( !titleElem.isNull() )
5601 label = titleElem.firstChild().nodeValue();
5604 QDomElement abstractElem = childElem.firstChildElement( u
"Abstract"_s );
5605 if ( !abstractElem.isNull() )
5607 description = abstractElem.firstChild().nodeValue();
5610 else if ( childElem.localName() ==
"Abstract"_L1 )
5613 description = childElem.firstChild().nodeValue();
5615 else if ( childElem.localName() ==
"Title"_L1 )
5618 label = childElem.firstChild().nodeValue();
5620 else if ( childElem.localName() ==
"Filter"_L1 )
5636 else if ( childElem.localName() ==
"MinScaleDenominator"_L1 )
5639 int v = childElem.firstChild().nodeValue().toInt( &ok );
5643 else if ( childElem.localName() ==
"MaxScaleDenominator"_L1 )
5646 int v = childElem.firstChild().nodeValue().toInt( &ok );
5650 else if ( childElem.localName() ==
"TextSymbolizer"_L1 )
5652 readSldTextSymbolizer( childElem, settings );
5655 childElem = childElem.nextSiblingElement();
5658 QgsRuleBasedLabeling::Rule *ruleLabeling =
new QgsRuleBasedLabeling::Rule(
new QgsPalLayerSettings( settings ), scaleMinDenom, scaleMaxDenom, filterExp, label );
5661 ruleElem = ruleElem.nextSiblingElement();
5664 setLabeling(
new QgsRuleBasedLabeling( rootRule ) );
5671 QDomElement textSymbolizerElem = ruleElem.firstChildElement( u
"TextSymbolizer"_s );
5672 QgsPalLayerSettings s;
5673 if ( readSldTextSymbolizer( textSymbolizerElem, s ) )
5675 setLabeling(
new QgsVectorLayerSimpleLabeling( s ) );
5681bool QgsVectorLayer::readSldTextSymbolizer(
const QDomNode &node,
QgsPalLayerSettings &settings )
const
5685 if ( node.localName() !=
"TextSymbolizer"_L1 )
5687 QgsDebugMsgLevel( u
"Not a TextSymbolizer element: %1"_s.arg( node.localName() ), 3 );
5690 QDomElement textSymbolizerElem = node.toElement();
5692 QDomElement labelElem = textSymbolizerElem.firstChildElement( u
"Label"_s );
5693 if ( !labelElem.isNull() )
5695 QDomElement propertyNameElem = labelElem.firstChildElement( u
"PropertyName"_s );
5696 if ( !propertyNameElem.isNull() )
5701 QString labelAttribute = propertyNameElem.text();
5705 int fieldIndex = mFields.lookupField( labelAttribute );
5706 if ( fieldIndex == -1 )
5709 QgsExpression exp( labelAttribute );
5710 if ( !exp.hasEvalError() )
5716 QgsDebugMsgLevel( u
"SLD label attribute error: %1"_s.arg( exp.evalErrorString() ), 3 );
5733 if ( textSymbolizerElem.hasAttribute( u
"uom"_s ) )
5738 QString fontFamily = u
"Sans-Serif"_s;
5739 double fontPointSize = 10;
5741 int fontWeight = -1;
5742 bool fontItalic =
false;
5743 bool fontUnderline =
false;
5746 QDomElement fontElem = textSymbolizerElem.firstChildElement( u
"Font"_s );
5747 if ( !fontElem.isNull() )
5750 for ( QgsStringMap::iterator it = fontSvgParams.begin(); it != fontSvgParams.end(); ++it )
5752 QgsDebugMsgLevel( u
"found fontSvgParams %1: %2"_s.arg( it.key(), it.value() ), 4 );
5754 if ( it.key() ==
"font-family"_L1 )
5756 fontFamily = it.value();
5758 else if ( it.key() ==
"font-style"_L1 )
5760 fontItalic = ( it.value() ==
"italic"_L1 ) || ( it.value() ==
"Italic"_L1 );
5762 else if ( it.key() ==
"font-size"_L1 )
5765 double fontSize = it.value().toDouble( &ok );
5768 fontPointSize = fontSize;
5769 fontUnitSize = sldUnitSize;
5772 else if ( it.key() ==
"font-weight"_L1 )
5774 if ( ( it.value() ==
"bold"_L1 ) || ( it.value() ==
"Bold"_L1 ) )
5775 fontWeight = QFont::Bold;
5777 else if ( it.key() ==
"font-underline"_L1 )
5779 fontUnderline = ( it.value() ==
"underline"_L1 ) || ( it.value() ==
"Underline"_L1 );
5784 QgsTextFormat format;
5785 QFont font( fontFamily, 1, fontWeight, fontItalic );
5786 font.setUnderline( fontUnderline );
5788 format.
setSize( fontPointSize );
5792 QDomElement fillElem = textSymbolizerElem.firstChildElement( u
"Fill"_s );
5794 Qt::BrushStyle textBrush = Qt::SolidPattern;
5796 if ( textColor.isValid() )
5798 QgsDebugMsgLevel( u
"Info: textColor %1."_s.arg( QVariant( textColor ).toString() ), 4 );
5802 QgsTextBufferSettings bufferSettings;
5805 QDomElement haloElem = textSymbolizerElem.firstChildElement( u
"Halo"_s );
5806 if ( !haloElem.isNull() )
5811 QDomElement radiusElem = haloElem.firstChildElement( u
"Radius"_s );
5812 if ( !radiusElem.isNull() )
5815 double bufferSize = radiusElem.text().toDouble( &ok );
5818 bufferSettings.
setSize( bufferSize );
5823 QDomElement haloFillElem = haloElem.firstChildElement( u
"Fill"_s );
5825 Qt::BrushStyle bufferBrush = Qt::SolidPattern;
5827 if ( bufferColor.isValid() )
5829 QgsDebugMsgLevel( u
"Info: bufferColor %1."_s.arg( QVariant( bufferColor ).toString() ), 4 );
5830 bufferSettings.
setColor( bufferColor );
5835 QDomElement labelPlacementElem = textSymbolizerElem.firstChildElement( u
"LabelPlacement"_s );
5836 if ( !labelPlacementElem.isNull() )
5839 QDomElement pointPlacementElem = labelPlacementElem.firstChildElement( u
"PointPlacement"_s );
5840 if ( !pointPlacementElem.isNull() )
5848 QDomElement displacementElem = pointPlacementElem.firstChildElement( u
"Displacement"_s );
5849 if ( !displacementElem.isNull() )
5851 QDomElement displacementXElem = displacementElem.firstChildElement( u
"DisplacementX"_s );
5852 if ( !displacementXElem.isNull() )
5855 double xOffset = displacementXElem.text().toDouble( &ok );
5862 QDomElement displacementYElem = displacementElem.firstChildElement( u
"DisplacementY"_s );
5863 if ( !displacementYElem.isNull() )
5866 double yOffset = displacementYElem.text().toDouble( &ok );
5874 QDomElement anchorPointElem = pointPlacementElem.firstChildElement( u
"AnchorPoint"_s );
5875 if ( !anchorPointElem.isNull() )
5877 bool xOffsetOk =
false;
5878 double xOffset = 0.0;
5879 bool yOffsetOk =
false;
5880 double yOffset = 0.0;
5882 QDomElement anchorPointXElem = anchorPointElem.firstChildElement( u
"AnchorPointX"_s );
5883 if ( !anchorPointXElem.isNull() )
5885 xOffset = anchorPointXElem.text().toDouble( &xOffsetOk );
5887 QDomElement anchorPointYElem = anchorPointElem.firstChildElement( u
"AnchorPointY"_s );
5888 if ( !anchorPointYElem.isNull() )
5890 yOffset = anchorPointYElem.text().toDouble( &yOffsetOk );
5893 if ( xOffsetOk & yOffsetOk )
5896 xOffset = std::round( xOffset * 2.0 ) / 2.0;
5897 yOffset = std::round( yOffset * 2.0 ) / 2.0;
5899 if ( xOffset == 1.0 && yOffset == 0.0 )
5903 else if ( xOffset == 0.5 && yOffset == 0.0 )
5907 else if ( xOffset == 0.0 && yOffset == 0.0 )
5911 else if ( xOffset == 1.0 && yOffset == 0.5 )
5915 else if ( xOffset == 0.5 && yOffset == 0.5 )
5919 else if ( xOffset == 0.0 && yOffset == 0.5 )
5923 else if ( xOffset == 1.0 && yOffset == 1.0 )
5927 else if ( xOffset == 0.5 && yOffset == 1.0 )
5938 QDomElement rotationElem = pointPlacementElem.firstChildElement( u
"Rotation"_s );
5939 if ( !rotationElem.isNull() )
5942 double rotation = rotationElem.text().toDouble( &ok );
5952 QDomElement linePlacementElem = labelPlacementElem.firstChildElement( u
"LinePlacement"_s );
5953 if ( !linePlacementElem.isNull() )
5962 QDomElement vendorOptionElem = textSymbolizerElem.firstChildElement( u
"VendorOption"_s );
5963 while ( !vendorOptionElem.isNull() && vendorOptionElem.localName() ==
"VendorOption"_L1 )
5965 QString optionName = vendorOptionElem.attribute( u
"name"_s );
5966 QString optionValue;
5967 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::TextNode )
5969 optionValue = vendorOptionElem.firstChild().nodeValue();
5973 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::ElementNode && vendorOptionElem.firstChild().localName() ==
"Literal"_L1 )
5976 optionValue = vendorOptionElem.firstChild().firstChild().nodeValue();
5980 QgsDebugError( u
"unexpected child of %1 named %2"_s.arg( vendorOptionElem.localName(), optionName ) );
5984 if ( !optionName.isEmpty() && !optionValue.isEmpty() )
5986 vendorOptions[optionName] = optionValue;
5989 vendorOptionElem = vendorOptionElem.nextSiblingElement();
5991 if ( !vendorOptions.isEmpty() )
5993 for ( QgsStringMap::iterator it = vendorOptions.begin(); it != vendorOptions.end(); ++it )
5995 if ( it.key() ==
"underlineText"_L1 && it.value() ==
"true"_L1 )
5997 font.setUnderline(
true );
6000 else if ( it.key() ==
"strikethroughText"_L1 && it.value() ==
"true"_L1 )
6002 font.setStrikeOut(
true );
6005 else if ( it.key() ==
"maxDisplacement"_L1 )
6009 else if ( it.key() ==
"followLine"_L1 && it.value() ==
"true"_L1 )
6020 else if ( it.key() ==
"maxAngleDelta"_L1 )
6023 double angle = it.value().toDouble( &ok );
6031 else if ( it.key() ==
"conflictResolution"_L1 && it.value() ==
"false"_L1 )
6035 else if ( it.key() ==
"forceLeftToRight"_L1 && it.value() ==
"false"_L1 )
6039 else if ( it.key() ==
"group"_L1 && it.value() ==
"yes"_L1 )
6043 else if ( it.key() ==
"labelAllGroup"_L1 && it.value() ==
"true"_L1 )
6059 return mEditFormConfig;
6070 mEditFormConfig.onRelationsLoaded();
6080 if ( config.isEmpty() )
6116 if ( !mDiagramLayerSettings )
6117 mDiagramLayerSettings = std::make_unique<QgsDiagramLayerSettings>();
6118 *mDiagramLayerSettings = s;
6126 QString myMetadata = u
"<html><head></head>\n<body>\n"_s;
6131 myMetadata += u
"<h1>"_s + tr(
"Information from provider" ) + u
"</h1>\n<hr>\n"_s;
6132 myMetadata +=
"<table class=\"list-view\">\n"_L1;
6137 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Storage" ) + u
"</td><td>"_s +
storageType() + u
"</td></tr>\n"_s;
6143 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Comment" ) + u
"</td><td>"_s +
dataComment() + u
"</td></tr>\n"_s;
6149 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Encoding" ) + u
"</td><td>"_s + provider->encoding() + u
"</td></tr>\n"_s;
6150 myMetadata += provider->htmlMetadata();
6164 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Geometry type" ) + u
"</td><td>"_s + typeString + u
"</td></tr>\n"_s;
6170 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Geometry column" ) + u
"</td><td>"_s + provider->geometryColumnName() + u
"</td></tr>\n"_s;
6177 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Extent" ) + u
"</td><td>"_s + extentAsStr + u
"</td></tr>\n"_s;
6181 QLocale locale = QLocale();
6182 locale.setNumberOptions( locale.numberOptions() &= ~QLocale::NumberOption::OmitGroupSeparator );
6183 myMetadata += u
"<tr><td class=\"highlight\">"_s
6184 + tr(
"Feature count" )
6187 + u
"</td></tr>\n"_s;
6190 myMetadata +=
"</table>\n<br><br>"_L1;
6199 myMetadata += u
"<h1>"_s + tr(
"Identification" ) + u
"</h1>\n<hr>\n"_s;
6200 myMetadata += htmlFormatter.identificationSectionHtml();
6201 myMetadata +=
"<br><br>\n"_L1;
6204 myMetadata += u
"<h1>"_s + tr(
"Extent" ) + u
"</h1>\n<hr>\n"_s;
6205 myMetadata += htmlFormatter.extentSectionHtml(
isSpatial() );
6206 myMetadata +=
"<br><br>\n"_L1;
6209 myMetadata += u
"<h1>"_s + tr(
"Access" ) + u
"</h1>\n<hr>\n"_s;
6210 myMetadata += htmlFormatter.accessSectionHtml();
6211 myMetadata +=
"<br><br>\n"_L1;
6214 myMetadata += u
"<h1>"_s + tr(
"Fields" ) + u
"</h1>\n<hr>\n<table class=\"list-view\">\n"_s;
6218 if ( !pkAttrList.isEmpty() )
6220 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Primary key attributes" ) + u
"</td><td>"_s;
6221 const auto constPkAttrList = pkAttrList;
6222 for (
int idx : constPkAttrList )
6226 myMetadata +=
"</td></tr>\n"_L1;
6232 myMetadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Count" ) + u
"</td><td>"_s + QString::number( myFields.
size() ) + u
"</td></tr>\n"_s;
6234 myMetadata +=
"</table>\n<br><table width=\"100%\" class=\"tabular-view\">\n"_L1;
6235 myMetadata +=
"<tr><th>"_L1 + tr(
"Field" ) +
"</th><th>"_L1 + tr(
"Type" ) +
"</th><th>"_L1 + tr(
"Length" ) +
"</th><th>"_L1 + tr(
"Precision" ) +
"</th><th>"_L1 + tr(
"Comment" ) +
"</th></tr>\n"_L1;
6237 for (
int i = 0; i < myFields.
size(); ++i )
6242 rowClass = u
"class=\"odd-row\""_s;
6243 myMetadata +=
"<tr "_L1
6250 + QString::number( myField.
length() )
6252 + QString::number( myField.
precision() )
6255 +
"</td></tr>\n"_L1;
6259 myMetadata +=
"</table>\n<br><br>"_L1;
6262 myMetadata += u
"<h1>"_s + tr(
"Contacts" ) + u
"</h1>\n<hr>\n"_s;
6263 myMetadata += htmlFormatter.contactsSectionHtml();
6264 myMetadata +=
"<br><br>\n"_L1;
6267 myMetadata += u
"<h1>"_s + tr(
"Links" ) + u
"</h1>\n<hr>\n"_s;
6268 myMetadata += htmlFormatter.linksSectionHtml();
6269 myMetadata +=
"<br><br>\n"_L1;
6272 myMetadata += u
"<h1>"_s + tr(
"History" ) + u
"</h1>\n<hr>\n"_s;
6273 myMetadata += htmlFormatter.historySectionHtml();
6274 myMetadata +=
"<br><br>\n"_L1;
6278 myMetadata +=
"\n</body>\n</html>\n"_L1;
6282void QgsVectorLayer::invalidateSymbolCountedFlag()
6286 mSymbolFeatureCounted =
false;
6289void QgsVectorLayer::onFeatureCounterCompleted()
6294 mFeatureCounter =
nullptr;
6297void QgsVectorLayer::onFeatureCounterTerminated()
6301 mFeatureCounter =
nullptr;
6304void QgsVectorLayer::onJoinedFieldsChanged()
6321void QgsVectorLayer::onFeatureDeleted(
QgsFeatureId fid )
6327 if ( mEditCommandActive || mCommitChangesActive )
6329 mDeletedFids << fid;
6333 mSelectedFeatureIds.remove( fid );
6340void QgsVectorLayer::onRelationsLoaded()
6344 mEditFormConfig.onRelationsLoaded();
6347void QgsVectorLayer::onSymbolsCounted()
6351 if ( mFeatureCounter )
6353 mSymbolFeatureCounted =
true;
6354 mSymbolFeatureCountMap = mFeatureCounter->symbolFeatureCountMap();
6355 mSymbolFeatureIdMap = mFeatureCounter->symbolFeatureIdMap();
6365 return p->relationManager()->referencingRelations(
this, idx );
6374 return mWeakRelations;
6381 mWeakRelations = relations;
6390 QString joinKey = mAuxiliaryLayerKey;
6391 if ( !key.isEmpty() )
6394 if ( storage.
isValid() && !joinKey.isEmpty() )
6419 mAuxiliaryLayerKey.clear();
6421 if ( mAuxiliaryLayer )
6434 mAuxiliaryLayer.reset( alayer );
6435 if ( mAuxiliaryLayer )
6436 mAuxiliaryLayer->setParent(
this );
6444 return mAuxiliaryLayer.get();
6451 return mAuxiliaryLayer.get();
6458 if ( mDataProvider )
6463void QgsVectorLayer::emitDataChanged()
6467 if ( mDataChangedFired )
6474 if (
QgsVectorLayer *layerWeDependUpon = qobject_cast<QgsVectorLayer *>( sender() ); layerWeDependUpon && layerWeDependUpon->mCommitChangesActive )
6479 mDataChangedFired =
true;
6481 mDataChangedFired =
false;
6484void QgsVectorLayer::onDependencyAfterCommitChanges()
6489 mDataProvider->reloadData();
6498 QSet<QgsMapLayerDependency> deps;
6499 const auto constODeps = oDeps;
6506 QSet<QgsMapLayerDependency> toAdd = deps -
dependencies();
6526 if ( mDataProvider )
6550 if ( !toAdd.isEmpty() )
6560 if ( fieldIndex < 0 || fieldIndex >= mFields.count() || !mDataProvider )
6568 constraints |= mDataProvider->fieldConstraints( mFields.fieldOriginIndex( fieldIndex ) );
6578 QMap< QgsFieldConstraints::Constraint, QgsFieldConstraints::ConstraintStrength > m;
6580 if ( fieldIndex < 0 || fieldIndex >= mFields.count() )
6583 QString
name = mFields.at( fieldIndex ).name();
6586 for ( ; conIt != mFieldConstraintStrength.constEnd(); ++conIt )
6588 if ( conIt.key().first ==
name )
6590 m[conIt.key().second] = mFieldConstraintStrength.value( conIt.key() );
6601 if ( index < 0 || index >= mFields.count() )
6604 QString
name = mFields.at( index ).name();
6608 constraints |= constraint;
6609 mFieldConstraints.insert(
name, constraints );
6611 mFieldConstraintStrength.insert( qMakePair(
name, constraint ), strength );
6620 if ( index < 0 || index >= mFields.count() )
6623 QString
name = mFields.at( index ).name();
6627 constraints &= ~constraint;
6628 mFieldConstraints.insert(
name, constraints );
6630 mFieldConstraintStrength.remove( qMakePair(
name, constraint ) );
6639 if ( index < 0 || index >= mFields.count() )
6642 return mFields.at( index ).constraints().constraintExpression();
6649 if ( index < 0 || index >= mFields.count() )
6652 return mFields.at( index ).constraints().constraintDescription();
6659 if ( index < 0 || index >= mFields.count() )
6662 if ( expression.isEmpty() )
6664 mFieldConstraintExpressions.remove( mFields.at( index ).name() );
6668 mFieldConstraintExpressions.insert( mFields.at( index ).name(), qMakePair( expression, description ) );
6677 if ( index < 0 || index >= mFields.count() )
6680 mFieldConfigurationFlags.insert( mFields.at( index ).name(),
flags );
6688 if ( index < 0 || index >= mFields.count() )
6691 flags.setFlag( flag, active );
6699 if ( index < 0 || index >= mFields.count() )
6702 return mFields.at( index ).configurationFlags();
6709 if ( index < 0 || index >= mFields.count() )
6713 mFieldWidgetSetups.remove( mFields.at( index ).name() );
6715 mFieldWidgetSetups.insert( mFields.at( index ).name(), setup );
6723 if ( index < 0 || index >= mFields.count() )
6726 return mFields.at( index ).editorWidgetSetup();
6736 if (
customProperty( u
"labeling/enabled"_s, QVariant(
false ) ).toBool() )
6740 settings.readFromLayerCustomProperties(
this );
6747 for (
const QString &key : constCustomPropertyKeys )
6749 if ( key.startsWith(
"labeling/"_L1 ) )
6761 return mAllowCommit;
6779 return mGeometryOptions.get();
6793 return mReadExtentFromXml;
6796void QgsVectorLayer::onDirtyTransaction(
const QString &sql,
const QString &name )
6801 if ( tr && mEditBuffer )
6803 qobject_cast<QgsVectorLayerEditPassthrough *>( mEditBuffer )->update( tr, sql,
name );
6809 QList<QgsVectorLayer *> layers;
6810 QMap<QgsVectorLayer *, QgsFeatureIds>::const_iterator i;
6813 if ( includeAuxiliaryLayers || !qobject_cast< QgsAuxiliaryLayer * >( i.key() ) )
6814 layers.append( i.key() );
Provides global constants and enumerations for use throughout the application.
@ Action
Map layers' action.
@ FormInitCode
Attribute forms' initiation code.
@ SelectAtId
Fast access to features using their ID.
@ CacheData
Provider caches source data and should force provider data reloads when dependent layers are committe...
@ 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 or along a line feature....
@ 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.
@ EmptyGeometry
Edit operation resulted in an empty geometry.
@ 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.
Curve polygon geometry type.
Abstract base class for curved geometry type.
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.
bool isExactlyEqual(const QgsGeometry &geometry, Qgis::GeometryBackend backend=Qgis::GeometryBackend::QGIS) const
Compares the geometry with another geometry using the specified backend.
QgsBox3D boundingBox3D() const
Returns the 3D bounding box of the 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.
void setQuadrant(Qgis::LabelQuadrantPosition quadrant)
Sets the quadrant in which to offset labels from the point.
bool hasMaximumScale() const
Returns true if maximum scale is set.
double maximumScale() const
Returns maximum scale denominator.
bool hasMinimumScale() const
Returns true if minimum scale is set.
bool hasLayerOpacity() const
Returns true if layer opacity is set.
double layerOpacity() const
Returns layer opacity in the range [0, 1].
double minimumScale() const
Returns minimum scale denominator.
Line string geometry type, with support for z-dimension and m-values.
static void warning(const QString &msg)
Goes to qWarning.
Models dependencies with or between map layers.
@ DataDependency
The layer may be invalidated by data changes on another layer.
@ PresenceDependency
The layer must be already present (in the registry) for this dependency to be resolved.
@ FromUser
Dependency given by the user.
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 Q_INVOKABLE 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(), Qgis::StringFormat format=Qgis::StringFormat::PlainText)
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.
const QgsLabelPointSettings & pointSettings() const
Returns the label point settings, which contain settings related to how the label engine places and f...
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 rounded to the spec...
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
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.
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.
static QString threadDescription(QThread *thread)
Returns a descriptive identifier for a thread.
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.
Qgis::VectorEditResult deleteVertices(QgsFeatureId featureId, const QSet< int > &vertices)
Deletes a set of vertices from a feature.
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.
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...
static QgsFeatureIds filterValidFeatureIds(const QgsVectorLayer *layer, const QgsFeatureIds &featureIds)
Filters a set of feature IDs to only include those that exist in the layer.
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.
Q_INVOKABLE void selectByRect(const QgsRectangle &rect, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection)
Selects features found within the search rectangle (in layer's coordinates).
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 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.
Q_INVOKABLE 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.
Q_INVOKABLE 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.
Q_INVOKABLE QString attributeCustomComment(int index) const
Returns the custom comment for the field.
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.
Q_INVOKABLE void invertSelectionInRectangle(const QgsRectangle &rect)
Inverts selection of features found within the search rectangle (in layer's coordinates).
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.
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.
QgsStringMap attributeCustomComments() const
Returns a map of all the custom comments.
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.
Qgis::VectorEditResult deleteVertices(QgsFeatureId featureId, const QSet< int > &vertices)
Deletes a set of vertices from a feature.
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.
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.
Q_INVOKABLE void setFieldCustomComment(int index, const QString &customCommentString)
Sets the custom comment for the field.
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.
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 selectByIds(const QgsFeatureIds &ids, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection, bool validateIds=false)
Selects matching features using a list of feature IDs.
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.
Q_INVOKABLE QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const final
Calculates a list of unique values contained within an attribute in the layer.
Q_INVOKABLE void removeFieldCustomComment(int index)
Removes the custom comment for the field.
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.
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.