27#include "moc_qgsvectorlayer.cpp"
95#include <QPainterPath>
97#include <QProgressDialog>
101#include <QStringBuilder>
103#include <QUndoCommand>
106#include <QRegularExpression>
123#ifdef TESTPROVIDERLIB
129 const QString &qmlStyle,
130 const QString &sldStyle,
131 const QString &styleName,
132 const QString &styleDescription,
133 const QString &uiFileContent,
147 QStringList &descriptions,
165 const QString &baseName,
166 const QString &providerKey,
172 , mAuxiliaryLayer( nullptr )
173 , mAuxiliaryLayerKey( QString() )
174 , mReadExtentFromXml( options.readExtentFromXml )
175 , mRefreshRendererTimer( new QTimer( this ) )
186 mGeometryOptions = std::make_unique<QgsGeometryOptions>();
190 mStoredExpressionManager->setParent(
this );
193 mJoinBuffer->setParent(
this );
198 if ( !vectorLayerPath.isEmpty() && !
mProviderKey.isEmpty() )
209 mDataSourceReadOnly =
true;
211 setDataSource( vectorLayerPath, baseName, providerKey, providerOptions, providerFlags );
214 for (
const QgsField &field : std::as_const( mFields ) )
216 if ( !mAttributeAliasMap.contains( field.name() ) )
217 mAttributeAliasMap.insert( field.name(), QString() );
223 if ( !mTemporalProperties->
isActive() )
248 connect( mRefreshRendererTimer, &QTimer::timeout,
this, [
this] {
triggerRepaint(
true ); } );
257 delete mDataProvider;
260 delete mExpressionFieldBuffer;
262 delete mDiagramLayerSettings;
263 delete mDiagramRenderer;
268 delete mConditionalStyles;
269 delete mStoredExpressionManager;
271 if ( mFeatureCounter )
272 mFeatureCounter->
cancel();
274 qDeleteAll( mRendererGenerators );
295 options.forceReadOnly = mDataSourceReadOnly;
302 layer->mXmlExtent2D = mXmlExtent2D;
303 layer->mLazyExtent2D = mLazyExtent2D;
304 layer->mValidExtent2D = mValidExtent2D;
305 layer->mXmlExtent3D = mXmlExtent3D;
306 layer->mLazyExtent3D = mLazyExtent3D;
307 layer->mValidExtent3D = mValidExtent3D;
309 QList<QgsVectorLayerJoinInfo> joins =
vectorJoins();
310 const auto constJoins = joins;
332 for (
const QgsAction &action : constActions )
369 auto constraintIt = constraints.constBegin();
370 for ( ; constraintIt != constraints.constEnd(); ++ constraintIt )
386 layer->mElevationProperties = mElevationProperties->
clone();
387 layer->mElevationProperties->setParent( layer );
389 layer->mSelectionProperties = mSelectionProperties->
clone();
390 layer->mSelectionProperties->setParent( layer );
422 return mDataProvider && mDataProvider->
isSqlQuery();
483 p.setPen( QColor( 50, 100, 120, 200 ) );
484 p.setBrush( QColor( 200, 200, 210, 120 ) );
485 p.drawEllipse( x - m, y - m, m * 2 + 1, m * 2 + 1 );
489 p.setPen( QColor( 255, 0, 0 ) );
490 p.drawLine( x - m, y + m, x + m, y - m );
491 p.drawLine( x - m, y - m, x + m, y + m );
503 mSelectedFeatureIds.insert( fid );
504 mPreviousSelectedFeatureIds.clear();
513 mSelectedFeatureIds.unite( featureIds );
514 mPreviousSelectedFeatureIds.clear();
523 mSelectedFeatureIds.remove( fid );
524 mPreviousSelectedFeatureIds.clear();
533 mSelectedFeatureIds.subtract( featureIds );
534 mPreviousSelectedFeatureIds.clear();
549 .setFilterRect( rect )
551 .setNoAttributes() );
556 newSelection << feat.
id();
569 std::optional< QgsExpressionContext > defaultContext;
573 context = &defaultContext.value();
592 newSelection << feat.
id();
614 bool matches = exp.
evaluate( context ).toBool();
618 newSelection << feat.
id();
622 newSelection << feat.
id();
643 newSelection = mSelectedFeatureIds + ids;
647 newSelection = mSelectedFeatureIds - ids;
651 newSelection = mSelectedFeatureIds.intersect( ids );
655 QgsFeatureIds deselectedFeatures = mSelectedFeatureIds - newSelection;
656 mSelectedFeatureIds = newSelection;
657 mPreviousSelectedFeatureIds.clear();
667 if ( !intersectingIds.isEmpty() )
669 QgsDebugMsgLevel( QStringLiteral(
"Trying to select and deselect the same item at the same time. Unsure what to do. Selecting dubious items." ), 3 );
672 mSelectedFeatureIds -= deselectIds;
673 mSelectedFeatureIds += selectIds;
674 mPreviousSelectedFeatureIds.clear();
684 ids.subtract( mSelectedFeatureIds );
703 .setFilterRect( rect )
705 .setNoAttributes() );
713 if ( mSelectedFeatureIds.contains( fet.
id() ) )
715 deselectIds << fet.
id();
719 selectIds << fet.
id();
730 if ( mSelectedFeatureIds.isEmpty() )
735 mPreviousSelectedFeatureIds = previous;
742 if ( mPreviousSelectedFeatureIds.isEmpty() || !mSelectedFeatureIds.empty() )
753 return mDataProvider;
761 return mDataProvider;
769 return mSelectionProperties;
776 return mTemporalProperties;
783 return mElevationProperties;
799 if (
isValid() && mDataProvider && mDataProvider->
encoding() != encoding )
810 delete mDiagramRenderer;
811 mDiagramRenderer = r;
835 if ( !
isValid() || !
isSpatial() || mSelectedFeatureIds.isEmpty() || !mDataProvider )
847 .setFilterFids( mSelectedFeatureIds )
848 .setNoAttributes() );
861 .setNoAttributes() );
865 if ( mSelectedFeatureIds.contains( fet.
id() ) )
876 if ( retval.
width() == 0.0 || retval.
height() == 0.0 )
885 retval.
set( -1.0, -1.0, 1.0, 1.0 );
897 return mLabelsEnabled &&
static_cast< bool >( mLabeling );
904 mLabelsEnabled = enabled;
912 if ( !mDiagramRenderer || !mDiagramLayerSettings )
915 QList<QgsDiagramSettings> settingList = mDiagramRenderer->
diagramSettings();
916 if ( !settingList.isEmpty() )
918 return settingList.at( 0 ).enabled;
927 if ( !mSymbolFeatureCounted )
930 return mSymbolFeatureCountMap.value( legendKey, -1 );
937 if ( !mSymbolFeatureCounted )
940 return mSymbolFeatureIdMap.value( legendKey,
QgsFeatureIds() );
946 if ( ( mSymbolFeatureCounted || mFeatureCounter ) && !( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
947 return mFeatureCounter;
949 mSymbolFeatureCountMap.clear();
950 mSymbolFeatureIdMap.clear();
955 return mFeatureCounter;
957 if ( !mDataProvider )
960 return mFeatureCounter;
965 return mFeatureCounter;
968 if ( !mFeatureCounter || ( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
971 connect( mFeatureCounter, &
QgsTask::taskCompleted,
this, &QgsVectorLayer::onFeatureCounterCompleted, Qt::UniqueConnection );
972 connect( mFeatureCounter, &
QgsTask::taskTerminated,
this, &QgsVectorLayer::onFeatureCounterTerminated, Qt::UniqueConnection );
976 return mFeatureCounter;
984 if ( force || !mReadExtentFromXml || ( mReadExtentFromXml && mXmlExtent2D.
isNull() && mXmlExtent3D.
isNull() ) )
986 mValidExtent2D =
false;
987 mValidExtent3D =
false;
996 mValidExtent2D =
true;
1004 mValidExtent3D =
true;
1011 if ( !mDefaultValueOnUpdateFields.isEmpty() )
1016 int size = mFields.
size();
1017 for (
int idx : std::as_const( mDefaultValueOnUpdateFields ) )
1019 if ( idx < 0 || idx >= size )
1039 mLazyExtent2D =
false;
1046 updateExtent( mDataProvider->
extent() );
1047 mValidExtent2D =
true;
1048 mLazyExtent2D =
false;
1052 if ( !mValidExtent2D && mLazyExtent2D && mReadExtentFromXml && !mXmlExtent2D.
isNull() )
1054 updateExtent( mXmlExtent2D );
1055 mValidExtent2D =
true;
1056 mLazyExtent2D =
false;
1059 if ( !mValidExtent2D && mLazyExtent2D && mDataProvider && mDataProvider->
isValid() )
1062 updateExtent( mDataProvider->
extent() );
1063 mValidExtent2D =
true;
1064 mLazyExtent2D =
false;
1067 QgsDebugMsgLevel( QStringLiteral(
"2D Extent of layer: %1" ).arg( mExtent2D.toString() ), 3 );
1071 if ( mValidExtent2D )
1074 if ( !
isValid() || !mDataProvider )
1076 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1080 if ( !mEditBuffer ||
1094 if ( mEditBuffer && !mDataProvider->
transaction() )
1097 for ( QgsFeatureMap::const_iterator it = addedFeatures.constBegin(); it != addedFeatures.constEnd(); ++it )
1099 if ( it->hasGeometry() )
1110 .setNoAttributes() );
1123 if ( rect.xMinimum() > rect.xMaximum() && rect.yMinimum() > rect.yMaximum() )
1129 updateExtent( rect );
1130 mValidExtent2D =
true;
1159 updateExtent( mDataProvider->
extent3D() );
1160 mValidExtent3D =
true;
1161 mLazyExtent3D =
false;
1165 if ( !mValidExtent3D && mLazyExtent3D && mReadExtentFromXml && !mXmlExtent3D.
isNull() )
1167 updateExtent( mXmlExtent3D );
1168 mValidExtent3D =
true;
1169 mLazyExtent3D =
false;
1172 if ( !mValidExtent3D && mLazyExtent3D && mDataProvider && mDataProvider->
isValid() )
1175 updateExtent( mDataProvider->
extent3D() );
1176 mValidExtent3D =
true;
1177 mLazyExtent3D =
false;
1180 QgsDebugMsgLevel( QStringLiteral(
"3D Extent of layer: %1" ).arg( mExtent3D.toString() ), 3 );
1184 if ( mValidExtent3D )
1187 if ( !
isValid() || !mDataProvider )
1189 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1193 if ( !mEditBuffer ||
1204 extent.combineWith( ext );
1207 if ( mEditBuffer && !mDataProvider->
transaction() )
1210 for ( QgsFeatureMap::const_iterator it = addedFeatures.constBegin(); it != addedFeatures.constEnd(); ++it )
1212 if ( it->hasGeometry() )
1214 const QgsBox3D bbox = it->geometry().boundingBox3D();
1215 extent.combineWith( bbox );
1223 .setNoAttributes() );
1231 extent.combineWith( bb );
1243 mValidExtent3D =
true;
1269 if ( !
isValid() || !mDataProvider )
1271 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1272 return customProperty( QStringLiteral(
"storedSubsetString" ) ).toString();
1281 if ( !
isValid() || !mDataProvider )
1283 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider or while editing" ), 3 );
1287 else if ( mEditBuffer )
1319 double maximumSimplificationScale = mSimplifyMethod.
maximumScale();
1322 return !( maximumSimplificationScale > 1 && renderContext.
rendererScale() <= maximumSimplificationScale );
1331 return mConditionalStyles;
1339 if ( !
isValid() || !mDataProvider )
1351 if ( feature.isValid() )
1352 return feature.geometry();
1361 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1365 if ( mGeometryOptions->isActive() )
1368 mGeometryOptions->apply( geom );
1372 bool success = mEditBuffer->
addFeature( feature );
1376 success = mJoinBuffer->
addFeature( feature );
1386 if ( !mEditBuffer || !mDataProvider )
1392 if ( currentFeature.
isValid() )
1394 bool hasChanged =
false;
1395 bool hasError =
false;
1407 QgsDebugMsgLevel( QStringLiteral(
"geometry of feature %1 could not be changed." ).arg( updatedFeature.
id() ), 3 );
1414 for (
int attr = 0; attr < fa.count(); ++attr )
1424 QgsDebugMsgLevel( QStringLiteral(
"attribute %1 of feature %2 could not be changed." ).arg( attr ).arg( updatedFeature.
id() ), 3 );
1429 if ( hasChanged && !mDefaultValueOnUpdateFields.isEmpty() && !skipDefaultValues )
1430 updateDefaultValues( updatedFeature.
id(), updatedFeature );
1436 QgsDebugMsgLevel( QStringLiteral(
"feature %1 could not be retrieved" ).arg( updatedFeature.
id() ), 3 );
1446 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1450 bool result = utils.
insertVertex( x, y, atFeatureId, beforeVertex );
1461 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1465 bool result = utils.
insertVertex( point, atFeatureId, beforeVertex );
1476 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1480 bool result = utils.
moveVertex( x, y, atFeatureId, atVertex );
1491 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1495 bool result = utils.
moveVertex( p, atFeatureId, atVertex );
1506 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1533 int count = mSelectedFeatureIds.size();
1546 *deletedCount = deleted;
1549 return deleted == count;
1552static const QgsPointSequence vectorPointXY2pointSequence(
const QVector<QgsPointXY> &points )
1555 pts.reserve( points.size() );
1556 QVector<QgsPointXY>::const_iterator it = points.constBegin();
1557 while ( it != points.constEnd() )
1568 return addRing( vectorPointXY2pointSequence( ring ), featureId );
1575 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1582 if ( !mSelectedFeatureIds.isEmpty() )
1584 result = utils.
addRing( ring, mSelectedFeatureIds, featureId );
1600 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1621 if ( !mSelectedFeatureIds.isEmpty() )
1623 result = utils.
addRing(
static_cast< QgsCurve *
>( ring->
clone() ), mSelectedFeatureIds, featureId );
1641 pts.reserve( points.size() );
1642 for ( QList<QgsPointXY>::const_iterator it = points.constBegin(); it != points.constEnd() ; ++it )
1649#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
1654 return addPart( vectorPointXY2pointSequence( points ) );
1662 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1667 if ( mSelectedFeatureIds.empty() )
1672 else if ( mSelectedFeatureIds.size() > 1 )
1690 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1695 if ( mSelectedFeatureIds.empty() )
1700 else if ( mSelectedFeatureIds.size() > 1 )
1719 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1734 return splitParts( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1741 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1745 return utils.
splitParts( splitLine, topologicalEditing );
1752 return splitFeatures( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1761 bool preserveCircular =
false;
1762 return splitFeatures( &splitLineString, topologyTestPoints, preserveCircular, topologicalEditing );
1769 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1773 return utils.
splitFeatures( curve, topologyTestPoints, preserveCircular, topologicalEditing );
1780 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1798 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1809 if ( !
mValid || !mEditBuffer || !mDataProvider )
1834 if ( !
isValid() || !mDataProvider )
1868 if ( mDataProvider )
1884 if ( !mRenderer->
accept( visitor ) )
1888 if ( !mLabeling->
accept( visitor ) )
1901 QDomNode pkeyNode = layer_node.namedItem( QStringLiteral(
"provider" ) );
1903 if ( pkeyNode.isNull() )
1909 QDomElement pkeyElt = pkeyNode.toElement();
1919 else if (
mDataSource.contains( QLatin1String(
"dbname=" ) ) )
1928 const QDomElement elem = layer_node.toElement();
1942 if ( elem.hasAttribute( QStringLiteral(
"wkbType" ) ) )
1943 mWkbType =
qgsEnumKeyToValue( elem.attribute( QStringLiteral(
"wkbType" ) ), mWkbType );
1946 QDomElement pkeyElem = pkeyNode.toElement();
1947 if ( !pkeyElem.isNull() )
1949 QString encodingString = pkeyElem.attribute( QStringLiteral(
"encoding" ) );
1950 if ( mDataProvider && !encodingString.isEmpty() )
1957 mJoinBuffer->
readXml( layer_node );
1962 mSetLegendFromStyle =
false;
1972 QDomNode depsNode = layer_node.namedItem( QStringLiteral(
"dataDependencies" ) );
1973 QDomNodeList depsNodes = depsNode.childNodes();
1974 QSet<QgsMapLayerDependency> sources;
1975 for (
int i = 0; i < depsNodes.count(); i++ )
1977 QString
source = depsNodes.at( i ).toElement().attribute( QStringLiteral(
"id" ) );
1982 if ( !mSetLegendFromStyle )
1988 mReadExtentFromXml =
true;
1990 if ( mReadExtentFromXml )
1992 const QDomNode extentNode = layer_node.namedItem( QStringLiteral(
"extent" ) );
1993 if ( !extentNode.isNull() )
1997 const QDomNode extent3DNode = layer_node.namedItem( QStringLiteral(
"extent3D" ) );
1998 if ( !extent3DNode.isNull() )
2005 const QDomNode asNode = layer_node.namedItem( QStringLiteral(
"auxiliaryLayer" ) );
2006 const QDomElement asElem = asNode.toElement();
2007 if ( !asElem.isNull() )
2009 mAuxiliaryLayerKey = asElem.attribute( QStringLiteral(
"key" ) );
2013 mServerProperties->readXml( layer_node );
2020void QgsVectorLayer::setDataSourcePrivate(
const QString &dataSource,
const QString &baseName,
const QString &provider,
2029 setDataProvider( provider, options,
flags );
2039 bool loadDefaultStyleFlag =
false;
2042 loadDefaultStyleFlag =
true;
2048 std::unique_ptr< QgsScopedRuntimeProfile > profile;
2050 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Load layer style" ), QStringLiteral(
"projectload" ) );
2052 bool defaultLoadedFlag =
false;
2060 mSetLegendFromStyle =
false;
2065 if ( !defaultLoadedFlag && loadDefaultStyleFlag )
2073 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->
createRenderer() );
2074 if ( defaultRenderer )
2076 defaultLoadedFlag =
true;
2082 if ( !defaultLoadedFlag )
2088 if ( !mSetLegendFromStyle )
2093 std::unique_ptr< QgsAbstractVectorLayerLabeling > defaultLabeling( mDataProvider->
createLabeling() );
2094 if ( defaultLabeling )
2101 styleChangedSignalBlocker.release();
2118 QStringList ids, names, descriptions;
2119 QString errorMessage;
2121 const int relatedStylesCount {
listStylesInDatabase( ids, names, descriptions, errorMessage ) };
2122 Q_ASSERT( ids.count() == names.count() );
2123 const QString currentStyleName { mStyleManager->currentStyle() };
2124 for (
int i = 0; i < relatedStylesCount; ++i )
2126 if ( names.at( i ) == currentStyleName )
2130 errorMessage.clear();
2132 if ( ! styleXml.isEmpty() && errorMessage.isEmpty() )
2138 QgsDebugMsgLevel( QStringLiteral(
"Error retrieving style %1 from DB: %2" ).arg( ids.at( i ), errorMessage ), 2 );
2148 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->
createRenderer() );
2149 if ( defaultRenderer )
2165 delete mDataProvider;
2172 if ( provider.compare( QLatin1String(
"postgres" ) ) == 0 )
2174 const QString checkUnicityKey { QStringLiteral(
"checkPrimaryKeyUnicity" ) };
2176 if ( ! uri.hasParam( checkUnicityKey ) )
2178 uri.setParam( checkUnicityKey, mReadExtentFromXml ?
"0" :
"1" );
2183 std::unique_ptr< QgsScopedRuntimeProfile > profile;
2185 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Create %1 provider" ).arg( provider ), QStringLiteral(
"projectload" ) );
2188 mDataProvider = qobject_cast< QgsVectorDataProvider * >(
mPreloadedProvider.release() );
2192 if ( !mDataProvider )
2199 mDataProvider->setParent(
this );
2202 QgsDebugMsgLevel( QStringLiteral(
"Instantiated the data provider plugin" ), 2 );
2212 profile->switchTask( tr(
"Read layer metadata" ) );
2219 newMetadata.
combine( &mMetadata );
2222 QgsDebugMsgLevel( QStringLiteral(
"Set Data provider QgsLayerMetadata identifier[%1]" ).arg(
metadata().identifier() ), 4 );
2229 mWkbType = mDataProvider->
wkbType();
2234 for (
const QgsField &field : providerFields )
2237 if ( !field.editorWidgetSetup().isNull() && mFieldWidgetSetups.value( field.name() ).isNull() )
2239 mFieldWidgetSetups[ field.name() ] = field.editorWidgetSetup();
2241 if ( !field.alias().isEmpty() && mAttributeAliasMap.value( field.name() ).isEmpty() )
2243 mAttributeAliasMap[ field.name() ] = field.alias();
2245 if ( !mAttributeSplitPolicy.contains( field.name() ) )
2247 mAttributeSplitPolicy[ field.name() ] = field.splitPolicy();
2249 if ( !mAttributeDuplicatePolicy.contains( field.name() ) )
2251 mAttributeDuplicatePolicy[ field.name() ] = field.duplicatePolicy();
2253 if ( !mAttributeMergePolicy.contains( field.name() ) )
2255 mAttributeMergePolicy[ field.name() ] = field.mergePolicy();
2260 profile->switchTask( tr(
"Read layer fields" ) );
2271 const thread_local QRegularExpression reg( R
"lit("[^"]+"\."([^"] + )"( \([^)]+\))?)lit" );
2272 const QRegularExpressionMatch match = reg.match(
name() );
2273 if ( match.hasMatch() )
2275 QStringList stuff = match.capturedTexts();
2276 QString lName = stuff[1];
2280 QMap<QString, QgsMapLayer *>::const_iterator it;
2281 for ( it = layers.constBegin(); it != layers.constEnd() && ( *it )->name() != lName; ++it )
2284 if ( it != layers.constEnd() && stuff.size() > 2 )
2286 lName +=
'.' + stuff[2].mid( 2, stuff[2].length() - 3 );
2289 if ( !lName.isEmpty() )
2299 else if ( provider == QLatin1String(
"ogr" ) )
2303 if (
mDataSource.right( 10 ) == QLatin1String(
"|layerid=0" ) )
2306 else if ( provider == QLatin1String(
"memory" ) )
2311 else if ( provider == QLatin1String(
"hana" ) )
2328 QDomDocument &document,
2335 QDomElement mapLayerNode = layer_node.toElement();
2337 if ( mapLayerNode.isNull() || (
"maplayer" != mapLayerNode.nodeName() ) )
2350 if ( mDataProvider )
2352 QDomElement provider = document.createElement( QStringLiteral(
"provider" ) );
2353 provider.setAttribute( QStringLiteral(
"encoding" ), mDataProvider->
encoding() );
2354 QDomText providerText = document.createTextNode(
providerType() );
2355 provider.appendChild( providerText );
2356 layer_node.appendChild( provider );
2360 mJoinBuffer->
writeXml( layer_node, document );
2363 QDomElement dependenciesElement = document.createElement( QStringLiteral(
"layerDependencies" ) );
2369 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
2370 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
2371 dependenciesElement.appendChild( depElem );
2373 layer_node.appendChild( dependenciesElement );
2376 QDomElement dataDependenciesElement = document.createElement( QStringLiteral(
"dataDependencies" ) );
2381 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
2382 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
2383 dataDependenciesElement.appendChild( depElem );
2385 layer_node.appendChild( dataDependenciesElement );
2388 mExpressionFieldBuffer->
writeXml( layer_node, document );
2393 QDomElement asElem = document.createElement( QStringLiteral(
"auxiliaryLayer" ) );
2394 if ( mAuxiliaryLayer )
2396 const QString pkField = mAuxiliaryLayer->joinInfo().targetFieldName();
2397 asElem.setAttribute( QStringLiteral(
"key" ), pkField );
2399 layer_node.appendChild( asElem );
2403 return writeSymbology( layer_node, document, errorMsg, context );
2442 if ( categories.testFlag(
Fields ) )
2444 if ( !mExpressionFieldBuffer )
2446 mExpressionFieldBuffer->
readXml( layerNode );
2456 QDomNodeList referencedLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencedLayers" ) );
2457 if ( referencedLayersNodeList.size() > 0 )
2459 const QDomNodeList relationNodes { referencedLayersNodeList.at( 0 ).childNodes() };
2460 for (
int i = 0; i < relationNodes.length(); ++i )
2462 const QDomElement relationElement = relationNodes.at( i ).toElement();
2469 QDomNodeList referencingLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencingLayers" ) );
2470 if ( referencingLayersNodeList.size() > 0 )
2472 const QDomNodeList relationNodes { referencingLayersNodeList.at( 0 ).childNodes() };
2473 for (
int i = 0; i < relationNodes.length(); ++i )
2475 const QDomElement relationElement = relationNodes.at( i ).toElement();
2481 QDomElement layerElement = layerNode.toElement();
2485 readStyle( layerNode, errorMessage, context, categories );
2487 if ( categories.testFlag(
MapTips ) )
2489 QDomElement mapTipElem = layerNode.namedItem( QStringLiteral(
"mapTip" ) ).toElement();
2491 setMapTipsEnabled( mapTipElem.attribute( QStringLiteral(
"enabled" ), QStringLiteral(
"1" ) ).toInt() == 1 );
2495 mDisplayExpression = layerNode.namedItem( QStringLiteral(
"previewExpression" ) ).toElement().text();
2498 QString
displayField = layerNode.namedItem( QStringLiteral(
"displayfield" ) ).toElement().text();
2502 if ( mMapTipTemplate.isEmpty() && categories.testFlag(
MapTips ) )
2512 if ( categories.testFlag(
Actions ) )
2513 mActions->
readXml( layerNode );
2515 if ( categories.testFlag(
Fields ) )
2520 QDomNode aliasesNode = layerNode.namedItem( QStringLiteral(
"aliases" ) );
2521 if ( !aliasesNode.isNull() )
2523 QDomElement aliasElem;
2525 QDomNodeList aliasNodeList = aliasesNode.toElement().elementsByTagName( QStringLiteral(
"alias" ) );
2526 for (
int i = 0; i < aliasNodeList.size(); ++i )
2528 aliasElem = aliasNodeList.at( i ).toElement();
2531 if ( aliasElem.hasAttribute( QStringLiteral(
"field" ) ) )
2533 field = aliasElem.attribute( QStringLiteral(
"field" ) );
2537 int index = aliasElem.attribute( QStringLiteral(
"index" ) ).toInt();
2539 if ( index >= 0 && index <
fields().count() )
2545 if ( !aliasElem.attribute( QStringLiteral(
"name" ) ).isEmpty() )
2548 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), aliasElem.attribute( QStringLiteral(
"name" ) ) );
2549 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " + aliasElem.attribute( QStringLiteral(
"name" ) ), 3 );
2554 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), field );
2555 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " + field, 3 );
2557 if ( alias == aliasElem.attribute( QStringLiteral(
"field" ) ) )
2561 QgsDebugMsgLevel(
"field " + field +
" origalias " + aliasElem.attribute( QStringLiteral(
"name" ) ) +
" trans " + alias, 3 );
2562 mAttributeAliasMap.insert( field, alias );
2569 const QDomNode splitPoliciesNode = layerNode.namedItem( QStringLiteral(
"splitPolicies" ) );
2570 if ( !splitPoliciesNode.isNull() )
2572 const QDomNodeList splitPolicyNodeList = splitPoliciesNode.toElement().elementsByTagName( QStringLiteral(
"policy" ) );
2573 for (
int i = 0; i < splitPolicyNodeList.size(); ++i )
2575 const QDomElement splitPolicyElem = splitPolicyNodeList.at( i ).toElement();
2576 const QString field = splitPolicyElem.attribute( QStringLiteral(
"field" ) );
2578 mAttributeSplitPolicy.insert( field, policy );
2583 mAttributeDuplicatePolicy.clear();
2584 const QDomNode duplicatePoliciesNode = layerNode.namedItem( QStringLiteral(
"duplicatePolicies" ) );
2585 if ( !duplicatePoliciesNode.isNull() )
2587 const QDomNodeList duplicatePolicyNodeList = duplicatePoliciesNode.toElement().elementsByTagName( QStringLiteral(
"policy" ) );
2588 for (
int i = 0; i < duplicatePolicyNodeList.size(); ++i )
2590 const QDomElement duplicatePolicyElem = duplicatePolicyNodeList.at( i ).toElement();
2591 const QString field = duplicatePolicyElem.attribute( QStringLiteral(
"field" ) );
2593 mAttributeDuplicatePolicy.insert( field, policy );
2597 const QDomNode mergePoliciesNode = layerNode.namedItem( QStringLiteral(
"mergePolicies" ) );
2598 if ( !mergePoliciesNode.isNull() )
2600 const QDomNodeList mergePolicyNodeList = mergePoliciesNode.toElement().elementsByTagName( QStringLiteral(
"policy" ) );
2601 for (
int i = 0; i < mergePolicyNodeList.size(); ++i )
2603 const QDomElement mergePolicyElem = mergePolicyNodeList.at( i ).toElement();
2604 const QString field = mergePolicyElem.attribute( QStringLiteral(
"field" ) );
2606 mAttributeMergePolicy.insert( field, policy );
2611 mDefaultExpressionMap.clear();
2612 QDomNode defaultsNode = layerNode.namedItem( QStringLiteral(
"defaults" ) );
2613 if ( !defaultsNode.isNull() )
2615 QDomNodeList defaultNodeList = defaultsNode.toElement().elementsByTagName( QStringLiteral(
"default" ) );
2616 for (
int i = 0; i < defaultNodeList.size(); ++i )
2618 QDomElement defaultElem = defaultNodeList.at( i ).toElement();
2620 QString field = defaultElem.attribute( QStringLiteral(
"field" ), QString() );
2621 QString expression = defaultElem.attribute( QStringLiteral(
"expression" ), QString() );
2622 bool applyOnUpdate = defaultElem.attribute( QStringLiteral(
"applyOnUpdate" ), QStringLiteral(
"0" ) ) == QLatin1String(
"1" );
2623 if ( field.isEmpty() || expression.isEmpty() )
2626 mDefaultExpressionMap.insert( field,
QgsDefaultValue( expression, applyOnUpdate ) );
2631 mFieldConstraints.clear();
2632 mFieldConstraintStrength.clear();
2633 QDomNode constraintsNode = layerNode.namedItem( QStringLiteral(
"constraints" ) );
2634 if ( !constraintsNode.isNull() )
2636 QDomNodeList constraintNodeList = constraintsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2637 for (
int i = 0; i < constraintNodeList.size(); ++i )
2639 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2641 QString field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2642 int constraints = constraintElem.attribute( QStringLiteral(
"constraints" ), QStringLiteral(
"0" ) ).toInt();
2643 if ( field.isEmpty() || constraints == 0 )
2648 int uniqueStrength = constraintElem.attribute( QStringLiteral(
"unique_strength" ), QStringLiteral(
"1" ) ).toInt();
2649 int notNullStrength = constraintElem.attribute( QStringLiteral(
"notnull_strength" ), QStringLiteral(
"1" ) ).toInt();
2650 int expStrength = constraintElem.attribute( QStringLiteral(
"exp_strength" ), QStringLiteral(
"1" ) ).toInt();
2657 mFieldConstraintExpressions.clear();
2658 QDomNode constraintExpressionsNode = layerNode.namedItem( QStringLiteral(
"constraintExpressions" ) );
2659 if ( !constraintExpressionsNode.isNull() )
2661 QDomNodeList constraintNodeList = constraintExpressionsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2662 for (
int i = 0; i < constraintNodeList.size(); ++i )
2664 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2666 QString field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2667 QString exp = constraintElem.attribute( QStringLiteral(
"exp" ), QString() );
2668 QString desc = constraintElem.attribute( QStringLiteral(
"desc" ), QString() );
2669 if ( field.isEmpty() || exp.isEmpty() )
2672 mFieldConstraintExpressions.insert( field, qMakePair( exp, desc ) );
2680 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
2684 QDomElement widgetsElem = layerNode.namedItem( QStringLiteral(
"fieldConfiguration" ) ).toElement();
2685 QDomNodeList fieldConfigurationElementList = widgetsElem.elementsByTagName( QStringLiteral(
"field" ) );
2686 for (
int i = 0; i < fieldConfigurationElementList.size(); ++i )
2688 const QDomElement fieldConfigElement = fieldConfigurationElementList.at( i ).toElement();
2689 const QDomElement fieldWidgetElement = fieldConfigElement.elementsByTagName( QStringLiteral(
"editWidget" ) ).at( 0 ).toElement();
2691 QString fieldName = fieldConfigElement.attribute( QStringLiteral(
"name" ) );
2693 if ( categories.testFlag(
Fields ) )
2697 if ( categories.testFlag(
Forms ) )
2699 const QString widgetType = fieldWidgetElement.attribute( QStringLiteral(
"type" ) );
2700 const QDomElement cfgElem = fieldConfigElement.elementsByTagName( QStringLiteral(
"config" ) ).at( 0 ).toElement();
2701 const QDomElement optionsElem = cfgElem.childNodes().at( 0 ).toElement();
2704 if ( widgetType == QStringLiteral(
"ValueRelation" ) )
2706 optionsMap[ QStringLiteral(
"Value" ) ] = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fields:%2:valuerelationvalue" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text(), fieldName ), optionsMap[ QStringLiteral(
"Value" ) ].toString() );
2708 if ( widgetType == QStringLiteral(
"ValueMap" ) )
2710 if ( optionsMap[ QStringLiteral(
"map" ) ].canConvert<QList<QVariant>>() )
2712 QList<QVariant> translatedValueList;
2713 const QList<QVariant> valueList = optionsMap[ QStringLiteral(
"map" )].toList();
2714 for (
int i = 0, row = 0; i < valueList.count(); i++, row++ )
2716 QMap<QString, QVariant> translatedValueMap;
2717 QString translatedKey = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fields:%2:valuemapdescriptions" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text(), fieldName ), valueList[i].toMap().constBegin().key() );
2718 translatedValueMap.insert( translatedKey, valueList[i].toMap().constBegin().value() );
2719 translatedValueList.append( translatedValueMap );
2721 optionsMap.insert( QStringLiteral(
"map" ), translatedValueList );
2725 mFieldWidgetSetups[fieldName] = setup;
2732 if ( categories.testFlag(
Fields ) )
2734 const QList<QPair<QString, Qgis::FieldConfigurationFlag>> legacyConfig
2739 for (
const auto &config : legacyConfig )
2741 QDomNode excludeNode = layerNode.namedItem( config.first );
2742 if ( !excludeNode.isNull() )
2744 QDomNodeList attributeNodeList = excludeNode.toElement().elementsByTagName( QStringLiteral(
"attribute" ) );
2745 for (
int i = 0; i < attributeNodeList.size(); ++i )
2747 QString fieldName = attributeNodeList.at( i ).toElement().text();
2748 if ( !mFieldConfigurationFlags.contains( fieldName ) )
2749 mFieldConfigurationFlags[fieldName] = config.second;
2751 mFieldConfigurationFlags[fieldName].setFlag( config.second,
true );
2758 mGeometryOptions->readXml( layerNode.namedItem( QStringLiteral(
"geometryOptions" ) ) );
2760 if ( categories.testFlag(
Forms ) )
2761 mEditFormConfig.
readXml( layerNode, context );
2765 mAttributeTableConfig.
readXml( layerNode );
2766 mConditionalStyles->
readXml( layerNode, context );
2767 mStoredExpressionManager->
readXml( layerNode );
2773 QDomElement mapLayerNode = layerNode.toElement();
2775 && mapLayerNode.attribute( QStringLiteral(
"readOnly" ), QStringLiteral(
"0" ) ).toInt() == 1 )
2780 if ( categories.testFlag(
Legend ) )
2784 const QDomElement legendElem = layerNode.firstChildElement( QStringLiteral(
"legend" ) );
2785 if ( !legendElem.isNull() )
2790 mSetLegendFromStyle =
true;
2820 if ( !rendererElement.isNull() )
2838 if ( mSelectionProperties )
2839 mSelectionProperties->
readXml( node.toElement(), context );
2843 if ( categories.testFlag(
Labeling ) )
2847 QDomElement labelingElement = node.firstChildElement( QStringLiteral(
"labeling" ) );
2849 if ( labelingElement.isNull() ||
2850 ( labelingElement.attribute( QStringLiteral(
"type" ) ) == QLatin1String(
"simple" ) && labelingElement.firstChildElement( QStringLiteral(
"settings" ) ).isNull() ) )
2858 labeling = readLabelingFromCustomProperties();
2866 if ( node.toElement().hasAttribute( QStringLiteral(
"labelsEnabled" ) ) )
2867 mLabelsEnabled = node.toElement().attribute( QStringLiteral(
"labelsEnabled" ) ).toInt();
2869 mLabelsEnabled =
true;
2875 QDomNode blendModeNode = node.namedItem( QStringLiteral(
"blendMode" ) );
2876 if ( !blendModeNode.isNull() )
2878 QDomElement e = blendModeNode.toElement();
2883 QDomNode featureBlendModeNode = node.namedItem( QStringLiteral(
"featureBlendMode" ) );
2884 if ( !featureBlendModeNode.isNull() )
2886 QDomElement e = featureBlendModeNode.toElement();
2894 QDomNode layerTransparencyNode = node.namedItem( QStringLiteral(
"layerTransparency" ) );
2895 if ( !layerTransparencyNode.isNull() )
2897 QDomElement e = layerTransparencyNode.toElement();
2898 setOpacity( 1.0 - e.text().toInt() / 100.0 );
2900 QDomNode layerOpacityNode = node.namedItem( QStringLiteral(
"layerOpacity" ) );
2901 if ( !layerOpacityNode.isNull() )
2903 QDomElement e = layerOpacityNode.toElement();
2907 const bool hasScaleBasedVisibiliy { node.attributes().namedItem( QStringLiteral(
"hasScaleBasedVisibilityFlag" ) ).nodeValue() ==
'1' };
2910 const double maxScale { node.attributes().namedItem( QStringLiteral(
"maxScale" ) ).nodeValue().toDouble( &ok ) };
2915 const double minScale { node.attributes().namedItem( QStringLiteral(
"minScale" ) ).nodeValue().toDouble( &ok ) };
2921 QDomElement e = node.toElement();
2926 mSimplifyMethod.
setThreshold( e.attribute( QStringLiteral(
"simplifyDrawingTol" ), QStringLiteral(
"1" ) ).toFloat() );
2927 mSimplifyMethod.
setForceLocalOptimization( e.attribute( QStringLiteral(
"simplifyLocal" ), QStringLiteral(
"1" ) ).toInt() );
2928 mSimplifyMethod.
setMaximumScale( e.attribute( QStringLiteral(
"simplifyMaxScale" ), QStringLiteral(
"1" ) ).toFloat() );
2931 mRenderer->
setReferenceScale( e.attribute( QStringLiteral(
"symbologyReferenceScale" ), QStringLiteral(
"-1" ) ).toDouble() );
2935 if ( categories.testFlag(
Diagrams ) )
2939 delete mDiagramRenderer;
2940 mDiagramRenderer =
nullptr;
2941 QDomElement singleCatDiagramElem = node.firstChildElement( QStringLiteral(
"SingleCategoryDiagramRenderer" ) );
2942 if ( !singleCatDiagramElem.isNull() )
2945 mDiagramRenderer->
readXml( singleCatDiagramElem, context );
2947 QDomElement linearDiagramElem = node.firstChildElement( QStringLiteral(
"LinearlyInterpolatedDiagramRenderer" ) );
2948 if ( !linearDiagramElem.isNull() )
2950 if ( linearDiagramElem.hasAttribute( QStringLiteral(
"classificationAttribute" ) ) )
2953 int idx = linearDiagramElem.attribute( QStringLiteral(
"classificationAttribute" ) ).toInt();
2954 if ( idx >= 0 && idx < mFields.
count() )
2955 linearDiagramElem.setAttribute( QStringLiteral(
"classificationField" ), mFields.
at( idx ).
name() );
2959 mDiagramRenderer->
readXml( linearDiagramElem, context );
2961 QDomElement stackedDiagramElem = node.firstChildElement( QStringLiteral(
"StackedDiagramRenderer" ) );
2962 if ( !stackedDiagramElem.isNull() )
2965 mDiagramRenderer->
readXml( stackedDiagramElem, context );
2968 if ( mDiagramRenderer )
2970 QDomElement diagramSettingsElem = node.firstChildElement( QStringLiteral(
"DiagramLayerSettings" ) );
2971 if ( !diagramSettingsElem.isNull() )
2973 bool oldXPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"xPosColumn" ) );
2974 bool oldYPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"yPosColumn" ) );
2975 bool oldShow = diagramSettingsElem.hasAttribute( QStringLiteral(
"showColumn" ) );
2976 if ( oldXPos || oldYPos || oldShow )
2982 int xPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"xPosColumn" ) ).toInt();
2983 if ( xPosColumn >= 0 && xPosColumn < mFields.
count() )
2988 int yPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"yPosColumn" ) ).toInt();
2989 if ( yPosColumn >= 0 && yPosColumn < mFields.
count() )
2994 int showColumn = diagramSettingsElem.attribute( QStringLiteral(
"showColumn" ) ).toInt();
2995 if ( showColumn >= 0 && showColumn < mFields.
count() )
2998 QDomElement propertiesElem = diagramSettingsElem.ownerDocument().createElement( QStringLiteral(
"properties" ) );
3005 ddp.
writeXml( propertiesElem, defs );
3006 diagramSettingsElem.appendChild( propertiesElem );
3009 delete mDiagramLayerSettings;
3011 mDiagramLayerSettings->
readXml( diagramSettingsElem );
3017 styleChangedSignalBlocker.release();
3029 QDomElement layerElement = node.toElement();
3032 ( void )
writeStyle( node, doc, errorMessage, context, categories );
3035 mGeometryOptions->writeXml( node );
3040 if ( !legendElement.isNull() )
3041 node.appendChild( legendElement );
3050 QDomElement referencedLayersElement = doc.createElement( QStringLiteral(
"referencedLayers" ) );
3051 node.appendChild( referencedLayersElement );
3053 const QList<QgsRelation>
referencingRelations { p->relationManager()->referencingRelations(
this ) };
3056 switch ( rel.type() )
3067 QDomElement referencingLayersElement = doc.createElement( QStringLiteral(
"referencingLayers" ) );
3068 node.appendChild( referencedLayersElement );
3070 const QList<QgsRelation> referencedRelations { p->relationManager()->referencedRelations(
this ) };
3071 for (
const QgsRelation &rel : referencedRelations )
3073 switch ( rel.type() )
3086 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
3088 QDomElement fieldConfigurationElement;
3090 fieldConfigurationElement = doc.createElement( QStringLiteral(
"fieldConfiguration" ) );
3091 node.appendChild( fieldConfigurationElement );
3093 for (
const QgsField &field : std::as_const( mFields ) )
3095 QDomElement fieldElement = doc.createElement( QStringLiteral(
"field" ) );
3096 fieldElement.setAttribute( QStringLiteral(
"name" ), field.name() );
3097 fieldConfigurationElement.appendChild( fieldElement );
3099 if ( categories.testFlag(
Fields ) )
3101 fieldElement.setAttribute( QStringLiteral(
"configurationFlags" ),
qgsFlagValueToKeys( field.configurationFlags() ) );
3104 if ( categories.testFlag(
Forms ) )
3109 QDomElement editWidgetElement = doc.createElement( QStringLiteral(
"editWidget" ) );
3110 fieldElement.appendChild( editWidgetElement );
3111 editWidgetElement.setAttribute( QStringLiteral(
"type" ), field.editorWidgetSetup().type() );
3112 QDomElement editWidgetConfigElement = doc.createElement( QStringLiteral(
"config" ) );
3115 editWidgetElement.appendChild( editWidgetConfigElement );
3121 if ( categories.testFlag(
Fields ) )
3124 QDomElement aliasElem = doc.createElement( QStringLiteral(
"aliases" ) );
3125 for (
const QgsField &field : std::as_const( mFields ) )
3127 QDomElement aliasEntryElem = doc.createElement( QStringLiteral(
"alias" ) );
3128 aliasEntryElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3129 aliasEntryElem.setAttribute( QStringLiteral(
"index" ), mFields.
indexFromName( field.name() ) );
3130 aliasEntryElem.setAttribute( QStringLiteral(
"name" ), field.alias() );
3131 aliasElem.appendChild( aliasEntryElem );
3133 node.appendChild( aliasElem );
3137 QDomElement splitPoliciesElement = doc.createElement( QStringLiteral(
"splitPolicies" ) );
3138 bool hasNonDefaultSplitPolicies =
false;
3139 for (
const QgsField &field : std::as_const( mFields ) )
3143 QDomElement splitPolicyElem = doc.createElement( QStringLiteral(
"policy" ) );
3144 splitPolicyElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3145 splitPolicyElem.setAttribute( QStringLiteral(
"policy" ),
qgsEnumValueToKey( field.splitPolicy() ) );
3146 splitPoliciesElement.appendChild( splitPolicyElem );
3147 hasNonDefaultSplitPolicies =
true;
3150 if ( hasNonDefaultSplitPolicies )
3151 node.appendChild( splitPoliciesElement );
3156 QDomElement duplicatePoliciesElement = doc.createElement( QStringLiteral(
"duplicatePolicies" ) );
3157 bool hasNonDefaultDuplicatePolicies =
false;
3158 for (
const QgsField &field : std::as_const( mFields ) )
3162 QDomElement duplicatePolicyElem = doc.createElement( QStringLiteral(
"policy" ) );
3163 duplicatePolicyElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3164 duplicatePolicyElem.setAttribute( QStringLiteral(
"policy" ),
qgsEnumValueToKey( field.duplicatePolicy() ) );
3165 duplicatePoliciesElement.appendChild( duplicatePolicyElem );
3166 hasNonDefaultDuplicatePolicies =
true;
3169 if ( hasNonDefaultDuplicatePolicies )
3170 node.appendChild( duplicatePoliciesElement );
3175 QDomElement mergePoliciesElement = doc.createElement( QStringLiteral(
"mergePolicies" ) );
3176 bool hasNonDefaultMergePolicies =
false;
3177 for (
const QgsField &field : std::as_const( mFields ) )
3181 QDomElement mergePolicyElem = doc.createElement( QStringLiteral(
"policy" ) );
3182 mergePolicyElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3183 mergePolicyElem.setAttribute( QStringLiteral(
"policy" ),
qgsEnumValueToKey( field.mergePolicy() ) );
3184 mergePoliciesElement.appendChild( mergePolicyElem );
3185 hasNonDefaultMergePolicies =
true;
3188 if ( hasNonDefaultMergePolicies )
3189 node.appendChild( mergePoliciesElement );
3193 QDomElement defaultsElem = doc.createElement( QStringLiteral(
"defaults" ) );
3194 for (
const QgsField &field : std::as_const( mFields ) )
3196 QDomElement defaultElem = doc.createElement( QStringLiteral(
"default" ) );
3197 defaultElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3198 defaultElem.setAttribute( QStringLiteral(
"expression" ), field.defaultValueDefinition().expression() );
3199 defaultElem.setAttribute( QStringLiteral(
"applyOnUpdate" ), field.defaultValueDefinition().applyOnUpdate() ? QStringLiteral(
"1" ) : QStringLiteral(
"0" ) );
3200 defaultsElem.appendChild( defaultElem );
3202 node.appendChild( defaultsElem );
3205 QDomElement constraintsElem = doc.createElement( QStringLiteral(
"constraints" ) );
3206 for (
const QgsField &field : std::as_const( mFields ) )
3208 QDomElement constraintElem = doc.createElement( QStringLiteral(
"constraint" ) );
3209 constraintElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3210 constraintElem.setAttribute( QStringLiteral(
"constraints" ), field.constraints().constraints() );
3215 constraintsElem.appendChild( constraintElem );
3217 node.appendChild( constraintsElem );
3220 QDomElement constraintExpressionsElem = doc.createElement( QStringLiteral(
"constraintExpressions" ) );
3221 for (
const QgsField &field : std::as_const( mFields ) )
3223 QDomElement constraintExpressionElem = doc.createElement( QStringLiteral(
"constraint" ) );
3224 constraintExpressionElem.setAttribute( QStringLiteral(
"field" ), field.name() );
3225 constraintExpressionElem.setAttribute( QStringLiteral(
"exp" ), field.constraints().constraintExpression() );
3226 constraintExpressionElem.setAttribute( QStringLiteral(
"desc" ), field.constraints().constraintDescription() );
3227 constraintExpressionsElem.appendChild( constraintExpressionElem );
3229 node.appendChild( constraintExpressionsElem );
3232 if ( !mExpressionFieldBuffer )
3240 mExpressionFieldBuffer->
writeXml( node, doc );
3245 if ( categories.testFlag(
Actions ) )
3250 mAttributeTableConfig.
writeXml( node );
3251 mConditionalStyles->
writeXml( node, doc, context );
3252 mStoredExpressionManager->
writeXml( node );
3255 if ( categories.testFlag(
Forms ) )
3256 mEditFormConfig.
writeXml( node, context );
3260 node.toElement().setAttribute( QStringLiteral(
"readOnly" ), mReadOnly );
3265 QDomElement prevExpElem = doc.createElement( QStringLiteral(
"previewExpression" ) );
3266 QDomText prevExpText = doc.createTextNode( mDisplayExpression );
3267 prevExpElem.appendChild( prevExpText );
3268 node.appendChild( prevExpElem );
3272 if ( categories.testFlag(
MapTips ) )
3274 QDomElement mapTipElem = doc.createElement( QStringLiteral(
"mapTip" ) );
3275 mapTipElem.setAttribute( QStringLiteral(
"enabled" ),
mapTipsEnabled() );
3276 QDomText mapTipText = doc.createTextNode( mMapTipTemplate );
3277 mapTipElem.appendChild( mapTipText );
3278 node.toElement().appendChild( mapTipElem );
3289 QDomElement mapLayerNode = node.toElement();
3302 QDomElement rendererElement = mRenderer->
save( doc, context );
3303 node.appendChild( rendererElement );
3305 if ( mSelectionProperties )
3307 mSelectionProperties->
writeXml( mapLayerNode, doc, context );
3311 if ( categories.testFlag(
Labeling ) )
3315 QDomElement labelingElement = mLabeling->
save( doc, context );
3316 node.appendChild( labelingElement );
3318 mapLayerNode.setAttribute( QStringLiteral(
"labelsEnabled" ), mLabelsEnabled ? QStringLiteral(
"1" ) : QStringLiteral(
"0" ) );
3324 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingHints" ), QString::number(
static_cast< int >( mSimplifyMethod.
simplifyHints() ) ) );
3325 mapLayerNode.setAttribute( QStringLiteral(
"simplifyAlgorithm" ), QString::number(
static_cast< int >( mSimplifyMethod.
simplifyAlgorithm() ) ) );
3326 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingTol" ), QString::number( mSimplifyMethod.
threshold() ) );
3327 mapLayerNode.setAttribute( QStringLiteral(
"simplifyLocal" ), mSimplifyMethod.
forceLocalOptimization() ? 1 : 0 );
3328 mapLayerNode.setAttribute( QStringLiteral(
"simplifyMaxScale" ), QString::number( mSimplifyMethod.
maximumScale() ) );
3340 QDomElement blendModeElem = doc.createElement( QStringLiteral(
"blendMode" ) );
3342 blendModeElem.appendChild( blendModeText );
3343 node.appendChild( blendModeElem );
3346 QDomElement featureBlendModeElem = doc.createElement( QStringLiteral(
"featureBlendMode" ) );
3348 featureBlendModeElem.appendChild( featureBlendModeText );
3349 node.appendChild( featureBlendModeElem );
3355 QDomElement layerOpacityElem = doc.createElement( QStringLiteral(
"layerOpacity" ) );
3356 QDomText layerOpacityText = doc.createTextNode( QString::number(
opacity() ) );
3357 layerOpacityElem.appendChild( layerOpacityText );
3358 node.appendChild( layerOpacityElem );
3359 mapLayerNode.setAttribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ),
hasScaleBasedVisibility() ? 1 : 0 );
3360 mapLayerNode.setAttribute( QStringLiteral(
"maxScale" ),
maximumScale() );
3361 mapLayerNode.setAttribute( QStringLiteral(
"minScale" ),
minimumScale() );
3363 mapLayerNode.setAttribute( QStringLiteral(
"symbologyReferenceScale" ), mRenderer ? mRenderer->
referenceScale() : -1 );
3366 if ( categories.testFlag(
Diagrams ) && mDiagramRenderer )
3368 mDiagramRenderer->
writeXml( mapLayerNode, doc, context );
3369 if ( mDiagramLayerSettings )
3370 mDiagramLayerSettings->
writeXml( mapLayerNode, doc );
3381 QDomElement nameElem = node.firstChildElement( QStringLiteral(
"Name" ) );
3382 if ( nameElem.isNull() )
3384 errorMessage = QStringLiteral(
"Warning: Name element not found within NamedLayer while it's required." );
3400 readSldLabeling( node );
3402 styleChangedSignalBlocker.release();
3412 context.setExtraProperties( props );
3431 QDomElement nameNode = doc.createElement( QStringLiteral(
"se:Name" ) );
3432 nameNode.appendChild( doc.createTextNode(
name() ) );
3433 node.appendChild( nameNode );
3435 QDomElement userStyleElem = doc.createElement( QStringLiteral(
"UserStyle" ) );
3436 node.appendChild( userStyleElem );
3438 QDomElement nameElem = doc.createElement( QStringLiteral(
"se:Name" ) );
3439 nameElem.appendChild( doc.createTextNode(
name() ) );
3441 userStyleElem.appendChild( nameElem );
3443 QDomElement featureTypeStyleElem = doc.createElement( QStringLiteral(
"se:FeatureTypeStyle" ) );
3444 userStyleElem.appendChild( featureTypeStyleElem );
3446 mRenderer->
toSld( doc, featureTypeStyleElem, context );
3449 mLabeling->
toSld( featureTypeStyleElem, context );
3459 if ( !mEditBuffer || !mDataProvider )
3464 if ( mGeometryOptions->isActive() )
3465 mGeometryOptions->apply( geom );
3474 if ( !skipDefaultValue && !mDefaultValueOnUpdateFields.isEmpty() )
3475 updateDefaultValues( fid );
3485 bool result =
false;
3487 switch (
fields().fieldOrigin( field ) )
3499 if ( mEditBuffer && mDataProvider )
3508 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3526 for (
auto it = newValues.constBegin(); it != newValues.constEnd(); ++it )
3528 const int field = it.key();
3529 const QVariant newValue = it.value();
3532 if ( oldValues.contains( field ) )
3533 oldValue = oldValues[field];
3538 newValuesJoin[field] = newValue;
3539 oldValuesJoin[field] = oldValue;
3546 newValuesNotJoin[field] = newValue;
3547 oldValuesNotJoin[field] = oldValue;
3556 if ( ! newValuesJoin.isEmpty() && mJoinBuffer )
3561 if ( ! newValuesNotJoin.isEmpty() )
3563 if ( mEditBuffer && mDataProvider )
3569 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3581 if ( !mEditBuffer || !mDataProvider )
3591 if ( attIndex < 0 || attIndex >=
fields().count() )
3595 mFields[ attIndex ].setAlias( QString() );
3596 if ( mAttributeAliasMap.contains(
name ) )
3598 mAttributeAliasMap.remove(
name );
3600 mEditFormConfig.setFields( mFields );
3609 if ( index < 0 || index >=
fields().count() )
3616 if ( mExpressionFieldBuffer )
3632 if ( !mEditBuffer || !mDataProvider )
3650 if ( attIndex < 0 || attIndex >=
fields().count() )
3655 mAttributeAliasMap.insert(
name, aliasString );
3656 mFields[ attIndex ].setAlias( aliasString );
3657 mEditFormConfig.setFields( mFields );
3665 if ( index < 0 || index >=
fields().count() )
3675 if ( index >= 0 && index < mFields.
count() )
3685 return mAttributeAliasMap;
3692 if ( index < 0 || index >=
fields().count() )
3697 mAttributeSplitPolicy.insert(
name, policy );
3698 mFields[ index ].setSplitPolicy( policy );
3699 mEditFormConfig.setFields( mFields );
3707 if ( index < 0 || index >=
fields().count() )
3712 mAttributeDuplicatePolicy.insert(
name, policy );
3713 mFields[ index ].setDuplicatePolicy( policy );
3714 mEditFormConfig.setFields( mFields );
3722 if ( index < 0 || index >=
fields().count() )
3727 mAttributeMergePolicy.insert(
name, policy );
3728 mFields[ index ].setMergePolicy( policy );
3729 mEditFormConfig.setFields( mFields );
3737 QSet<QString> excludeList;
3738 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3739 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3743 excludeList << flagsIt.key();
3753 QMap< QString, Qgis::FieldConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3754 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3765 QSet<QString> excludeList;
3766 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3767 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3771 excludeList << flagsIt.key();
3781 QMap< QString, Qgis::FieldConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3782 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3793 if ( index < 0 || index >=
fields().count() )
3802 if ( !mEditBuffer || !mDataProvider )
3812 bool deleted =
false;
3815 QList<int> attrList = qgis::setToList( qgis::listToSet( attrs ) );
3817 std::sort( attrList.begin(), attrList.end(), std::greater<int>() );
3819 for (
int attr : std::as_const( attrList ) )
3837 if ( context && context->
cascade )
3840 const bool hasRelationsOrJoins = !relations.empty() || mJoinBuffer->
containsJoins();
3841 if ( hasRelationsOrJoins )
3846 if ( handledFeatureIds.contains( fid ) )
3854 handledFeatureIds << fid;
3866 switch ( relation.strength() )
3874 while ( relatedFeaturesIt.
nextFeature( childFeature ) )
3876 childFeatureIds.insert( childFeature.
id() );
3878 if ( childFeatureIds.count() > 0 )
3880 relation.referencingLayer()->startEditing();
3881 relation.referencingLayer()->deleteFeatures( childFeatureIds, context );
3908 return deleteFeatureCascade( fid, context );
3921 res = deleteFeatureCascade( fid, context ) && res;
3930 mSelectedFeatureIds.subtract( fids );
3950 if ( !mDataProvider )
3951 return pkAttributesList;
3954 for (
int i = 0; i < mFields.
count(); ++i )
3958 pkAttributesList << i;
3961 return pkAttributesList;
3968 if ( !mDataProvider )
3981 if ( mEditBuffer && !deletedFeatures.empty() )
3983 if ( addedFeatures.size() > deletedFeatures.size() )
3989 if ( ( !mEditBuffer || addedFeatures.empty() ) && mDataProvider && mDataProvider->
empty() )
4002 mCommitErrors.clear();
4004 if ( !mDataProvider )
4006 mCommitErrors << tr(
"ERROR: no provider" );
4012 mCommitErrors << tr(
"ERROR: layer not editable" );
4018 if ( !mAllowCommit )
4021 mCommitChangesActive =
true;
4023 bool success =
false;
4029 mCommitChangesActive =
false;
4031 if ( !mDeletedFids.empty() )
4034 mDeletedFids.clear();
4079 return mCommitErrors;
4094 if ( !mDataProvider )
4096 mCommitErrors << tr(
"ERROR: no provider" );
4122 mEditBuffer =
nullptr;
4127 if ( rollbackExtent )
4140 return mSelectedFeatureIds.size();
4148 return mSelectedFeatureIds;
4156 features.reserve( mSelectedFeatureIds.count() );
4163 features.push_back( f );
4173 if ( mSelectedFeatureIds.isEmpty() )
4179 if ( mSelectedFeatureIds.count() == 1 )
4180 request.
setFilterFid( *mSelectedFeatureIds.constBegin() );
4191 if ( !mEditBuffer || !mDataProvider )
4194 if ( mGeometryOptions->isActive() )
4196 for (
auto feature = features.begin(); feature != features.end(); ++feature )
4199 mGeometryOptions->apply( geom );
4226 if ( exp.isField() )
4249 if ( !mDisplayExpression.isEmpty() || mFields.
isEmpty() )
4251 return mDisplayExpression;
4256 if ( !candidateName.isEmpty() )
4279 return ( mEditBuffer && mDataProvider );
4291bool QgsVectorLayer::isReadOnly()
const
4295 return mDataSourceReadOnly || mReadOnly;
4303 if ( readonly && mEditBuffer )
4307 if ( !readonly && mDataSourceReadOnly )
4310 mReadOnly = readonly;
4319 if ( ! mDataProvider )
4322 if ( mDataSourceReadOnly )
4333 return mEditBuffer && mEditBuffer->
isModified();
4340 bool auxiliaryField =
false;
4344 return auxiliaryField;
4351 auxiliaryField =
true;
4354 return auxiliaryField;
4370 if ( r != mRenderer )
4374 mSymbolFeatureCounted =
false;
4375 mSymbolFeatureCountMap.clear();
4376 mSymbolFeatureIdMap.clear();
4381 if ( refreshRate <= 0 )
4383 mRefreshRendererTimer->stop();
4384 mRefreshRendererTimer->setInterval( 0 );
4388 mRefreshRendererTimer->setInterval( 1000 / refreshRate );
4389 mRefreshRendererTimer->start();
4404 mRendererGenerators << generator;
4412 for (
int i = mRendererGenerators.count() - 1; i >= 0; --i )
4414 if ( mRendererGenerators.at( i )->id() ==
id )
4416 delete mRendererGenerators.at( i );
4417 mRendererGenerators.removeAt( i );
4427 QList< const QgsFeatureRendererGenerator * > res;
4437 if ( !mDataProvider )
4443 QString ignoredError;
4447 mEditCommandActive =
true;
4455 if ( !mDataProvider )
4460 mEditCommandActive =
false;
4461 if ( !mDeletedFids.isEmpty() )
4465 mSelectedFeatureIds.subtract( mDeletedFids );
4468 mDeletedFids.clear();
4477 if ( !mDataProvider )
4488 auto command = std::make_unique< QUndoCommand >();
4489 command->setObsolete(
true );
4492 mEditCommandActive =
false;
4493 mDeletedFids.clear();
4501 return mJoinBuffer->
addJoin( joinInfo );
4508 return mJoinBuffer->
removeJoin( joinLayerId );
4549 if ( oi < 0 || oi >= mExpressionFieldBuffer->
expressions().size() )
4552 return mExpressionFieldBuffer->
expressions().at( oi ).cachedExpression.expression();
4568 if ( !mDataProvider )
4573 mFields = mDataProvider->
fields();
4583 if ( mExpressionFieldBuffer )
4587 for (
auto aliasIt = mAttributeAliasMap.constBegin(); aliasIt != mAttributeAliasMap.constEnd(); ++aliasIt )
4593 mFields[ index ].setAlias( aliasIt.value() );
4596 for (
auto splitPolicyIt = mAttributeSplitPolicy.constBegin(); splitPolicyIt != mAttributeSplitPolicy.constEnd(); ++splitPolicyIt )
4598 int index = mFields.
lookupField( splitPolicyIt.key() );
4602 mFields[ index ].setSplitPolicy( splitPolicyIt.value() );
4605 for (
auto duplicatePolicyIt = mAttributeDuplicatePolicy.constBegin(); duplicatePolicyIt != mAttributeDuplicatePolicy.constEnd(); ++duplicatePolicyIt )
4607 int index = mFields.
lookupField( duplicatePolicyIt.key() );
4611 mFields[ index ].setDuplicatePolicy( duplicatePolicyIt.value() );
4614 for (
auto mergePolicyIt = mAttributeMergePolicy.constBegin(); mergePolicyIt != mAttributeMergePolicy.constEnd(); ++mergePolicyIt )
4616 int index = mFields.
lookupField( mergePolicyIt.key() );
4620 mFields[ index ].setMergePolicy( mergePolicyIt.value() );
4624 QMap< QString, Qgis::FieldConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
4625 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
4631 mFields[index].setConfigurationFlags( flagsIt.value() );
4635 mDefaultValueOnUpdateFields.clear();
4636 QMap< QString, QgsDefaultValue >::const_iterator defaultIt = mDefaultExpressionMap.constBegin();
4637 for ( ; defaultIt != mDefaultExpressionMap.constEnd(); ++defaultIt )
4639 int index = mFields.
lookupField( defaultIt.key() );
4643 mFields[ index ].setDefaultValueDefinition( defaultIt.value() );
4644 if ( defaultIt.value().applyOnUpdate() )
4645 mDefaultValueOnUpdateFields.insert( index );
4648 QMap< QString, QgsFieldConstraints::Constraints >::const_iterator constraintIt = mFieldConstraints.constBegin();
4649 for ( ; constraintIt != mFieldConstraints.constEnd(); ++constraintIt )
4651 int index = mFields.
lookupField( constraintIt.key() );
4664 mFields[ index ].setConstraints( constraints );
4667 QMap< QString, QPair< QString, QString > >::const_iterator constraintExpIt = mFieldConstraintExpressions.constBegin();
4668 for ( ; constraintExpIt != mFieldConstraintExpressions.constEnd(); ++constraintExpIt )
4670 int index = mFields.
lookupField( constraintExpIt.key() );
4681 mFields[ index ].setConstraints( constraints );
4685 for ( ; constraintStrengthIt != mFieldConstraintStrength.constEnd(); ++constraintStrengthIt )
4687 int index = mFields.
lookupField( constraintStrengthIt.key().first );
4697 constraints.
setConstraintStrength( constraintStrengthIt.key().second, constraintStrengthIt.value() );
4698 mFields[ index ].setConstraints( constraints );
4701 auto fieldWidgetIterator = mFieldWidgetSetups.constBegin();
4702 for ( ; fieldWidgetIterator != mFieldWidgetSetups.constEnd(); ++ fieldWidgetIterator )
4704 int index = mFields.
indexOf( fieldWidgetIterator.key() );
4708 mFields[index].setEditorWidgetSetup( fieldWidgetIterator.value() );
4711 if ( oldFields != mFields )
4714 mEditFormConfig.setFields( mFields );
4723 if ( index < 0 || index >= mFields.
count() || !mDataProvider )
4727 if ( expression.isEmpty() )
4731 std::unique_ptr< QgsExpressionContext > tempContext;
4736 evalContext = tempContext.get();
4771 if ( index < 0 || index >= mFields.
count() )
4776 mDefaultExpressionMap.insert( mFields.
at( index ).
name(), definition );
4780 mDefaultExpressionMap.remove( mFields.
at( index ).
name() );
4789 if ( index < 0 || index >= mFields.
count() )
4800 if ( !mDataProvider )
4815 if ( mEditBuffer && ! mDataProvider->
transaction() )
4819 for (
const QVariant &v : constUniqueValues )
4821 vals << v.toString();
4825 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4826 while ( addedIt.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4829 QVariant v = addedIt.value().attribute( index );
4832 QString vs = v.toString();
4833 if ( !vals.contains( vs ) )
4842 while ( it.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4845 QVariant v = it.value().value( index );
4848 QString vs = v.toString();
4849 if ( !vals.contains( vs ) )
4882 .setSubsetOfAttributes( attList ) );
4885 QVariant currentValue;
4886 QHash<QString, QVariant> val;
4890 val.insert( currentValue.toString(), currentValue );
4891 if ( limit >= 0 && val.size() >= limit )
4897 return qgis::listToSet( val.values() );
4901 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueValues()",
"Unknown source of the field!" );
4909 QStringList results;
4910 if ( !mDataProvider )
4925 if ( mEditBuffer && ! mDataProvider->
transaction() )
4928 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4929 while ( addedIt.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
4932 QVariant v = addedIt.value().attribute( index );
4935 QString vs = v.toString();
4936 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
4944 while ( it.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
4947 QVariant v = it.value().value( index );
4950 QString vs = v.toString();
4951 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
4982 QString fieldName = mFields.
at( index ).
name();
4983 request.
setFilterExpression( QStringLiteral(
"\"%1\" ILIKE '%%2%'" ).arg( fieldName, substring ) );
4987 QString currentValue;
4990 currentValue = f.
attribute( index ).toString();
4991 if ( !results.contains( currentValue ) )
4992 results << currentValue;
4994 if ( ( limit >= 0 && results.size() >= limit ) || ( feedback && feedback->
isCanceled() ) )
5004 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueStringsMatching()",
"Unknown source of the field!" );
5013 minimumOrMaximumValue( index, &minimum,
nullptr );
5022 minimumOrMaximumValue( index,
nullptr, &maximum );
5030 minimumOrMaximumValue( index, &minimum, &maximum );
5033void QgsVectorLayer::minimumOrMaximumValue(
int index, QVariant *minimum, QVariant *maximum )
const
5038 *minimum = QVariant();
5040 *maximum = QVariant();
5042 if ( !mDataProvider )
5062 if ( mEditBuffer && ! mDataProvider->
transaction() )
5065 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
5066 while ( addedIt.hasNext() )
5069 const QVariant v = addedIt.value().attribute( index );
5077 while ( it.hasNext() )
5080 const QVariant v = it.value().value( index );
5116 .setSubsetOfAttributes( attList ) );
5119 bool firstValue =
true;
5122 const QVariant currentValue = f.
attribute( index );
5129 *minimum = currentValue;
5131 *maximum = currentValue;
5136 if ( minimum && currentValue.isValid() &&
qgsVariantLessThan( currentValue, *minimum ) )
5137 *minimum = currentValue;
5139 *maximum = currentValue;
5146 Q_ASSERT_X(
false,
"QgsVectorLayer::minimumOrMaximumValue()",
"Unknown source of the field!" );
5149void QgsVectorLayer::createEditBuffer()
5185void QgsVectorLayer::clearEditBuffer()
5190 mEditBuffer =
nullptr;
5205 if ( !mDataProvider )
5208 *
error = tr(
"Layer is invalid" );
5214 if ( attrIndex >= 0 )
5221 bool providerOk =
false;
5222 QVariant val = mDataProvider->
aggregate(
aggregate, attrIndex, parameters, context, providerOk, fids );
5236 c.setFidsFilter( *fids );
5237 c.setParameters( parameters );
5238 bool aggregateOk =
false;
5239 const QVariant result =
c.calculate(
aggregate, fieldOrExpression, context, &aggregateOk, feedback );
5242 if ( !aggregateOk &&
error )
5265 return mFeatureBlendMode;
5268void QgsVectorLayer::readSldLabeling(
const QDomNode &node )
5275 QDomElement element = node.toElement();
5276 if ( element.isNull() )
5279 QDomElement userStyleElem = element.firstChildElement( QStringLiteral(
"UserStyle" ) );
5280 if ( userStyleElem.isNull() )
5282 QgsDebugMsgLevel( QStringLiteral(
"Info: UserStyle element not found." ), 4 );
5286 QDomElement featTypeStyleElem = userStyleElem.firstChildElement( QStringLiteral(
"FeatureTypeStyle" ) );
5287 if ( featTypeStyleElem.isNull() )
5289 QgsDebugMsgLevel( QStringLiteral(
"Info: FeatureTypeStyle element not found." ), 4 );
5294 QDomElement mergedFeatTypeStyle = featTypeStyleElem.cloneNode(
false ).toElement();
5299 bool needRuleBasedLabeling =
false;
5302 while ( !featTypeStyleElem.isNull() )
5304 QDomElement ruleElem = featTypeStyleElem.firstChildElement( QStringLiteral(
"Rule" ) );
5305 while ( !ruleElem.isNull() )
5309 bool hasTextSymbolizer =
false;
5310 bool hasRuleBased =
false;
5311 QDomElement ruleChildElem = ruleElem.firstChildElement();
5312 while ( !ruleChildElem.isNull() )
5315 if ( ruleChildElem.localName() == QLatin1String(
"Filter" ) ||
5316 ruleChildElem.localName() == QLatin1String(
"MinScaleDenominator" ) ||
5317 ruleChildElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
5319 hasRuleBased =
true;
5322 else if ( ruleChildElem.localName() == QLatin1String(
"TextSymbolizer" ) )
5324 QgsDebugMsgLevel( QStringLiteral(
"Info: TextSymbolizer element found" ), 4 );
5325 hasTextSymbolizer =
true;
5328 ruleChildElem = ruleChildElem.nextSiblingElement();
5331 if ( hasTextSymbolizer )
5336 mergedFeatTypeStyle.appendChild( ruleElem.cloneNode().toElement() );
5340 QgsDebugMsgLevel( QStringLiteral(
"Info: Filter or Min/MaxScaleDenominator element found: need a RuleBasedLabeling" ), 4 );
5341 needRuleBasedLabeling =
true;
5346 if ( ruleCount > 1 )
5348 QgsDebugMsgLevel( QStringLiteral(
"Info: More Rule elements found: need a RuleBasedLabeling" ), 4 );
5349 needRuleBasedLabeling =
true;
5353 if ( ruleCount == 0 )
5355 needRuleBasedLabeling =
false;
5358 ruleElem = ruleElem.nextSiblingElement( QStringLiteral(
"Rule" ) );
5360 featTypeStyleElem = featTypeStyleElem.nextSiblingElement( QStringLiteral(
"FeatureTypeStyle" ) );
5363 if ( ruleCount == 0 )
5365 QgsDebugMsgLevel( QStringLiteral(
"Info: No TextSymbolizer element." ), 4 );
5369 QDomElement ruleElem = mergedFeatTypeStyle.firstChildElement( QStringLiteral(
"Rule" ) );
5371 if ( needRuleBasedLabeling )
5375 while ( !ruleElem.isNull() )
5378 QString label, description, filterExp;
5379 int scaleMinDenom = 0, scaleMaxDenom = 0;
5383 QDomElement childElem = ruleElem.firstChildElement();
5384 while ( !childElem.isNull() )
5386 if ( childElem.localName() == QLatin1String(
"Name" ) )
5390 if ( label.isEmpty() )
5391 label = childElem.firstChild().nodeValue();
5393 else if ( childElem.localName() == QLatin1String(
"Description" ) )
5396 QDomElement titleElem = childElem.firstChildElement( QStringLiteral(
"Title" ) );
5397 if ( !titleElem.isNull() )
5399 label = titleElem.firstChild().nodeValue();
5402 QDomElement abstractElem = childElem.firstChildElement( QStringLiteral(
"Abstract" ) );
5403 if ( !abstractElem.isNull() )
5405 description = abstractElem.firstChild().nodeValue();
5408 else if ( childElem.localName() == QLatin1String(
"Abstract" ) )
5411 description = childElem.firstChild().nodeValue();
5413 else if ( childElem.localName() == QLatin1String(
"Title" ) )
5416 label = childElem.firstChild().nodeValue();
5418 else if ( childElem.localName() == QLatin1String(
"Filter" ) )
5434 else if ( childElem.localName() == QLatin1String(
"MinScaleDenominator" ) )
5437 int v = childElem.firstChild().nodeValue().toInt( &ok );
5441 else if ( childElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
5444 int v = childElem.firstChild().nodeValue().toInt( &ok );
5448 else if ( childElem.localName() == QLatin1String(
"TextSymbolizer" ) )
5450 readSldTextSymbolizer( childElem, settings );
5453 childElem = childElem.nextSiblingElement();
5459 ruleElem = ruleElem.nextSiblingElement();
5469 QDomElement textSymbolizerElem = ruleElem.firstChildElement( QStringLiteral(
"TextSymbolizer" ) );
5471 if ( readSldTextSymbolizer( textSymbolizerElem, s ) )
5479bool QgsVectorLayer::readSldTextSymbolizer(
const QDomNode &node,
QgsPalLayerSettings &settings )
const
5483 if ( node.localName() != QLatin1String(
"TextSymbolizer" ) )
5485 QgsDebugMsgLevel( QStringLiteral(
"Not a TextSymbolizer element: %1" ).arg( node.localName() ), 3 );
5488 QDomElement textSymbolizerElem = node.toElement();
5490 QDomElement labelElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Label" ) );
5491 if ( !labelElem.isNull() )
5493 QDomElement propertyNameElem = labelElem.firstChildElement( QStringLiteral(
"PropertyName" ) );
5494 if ( !propertyNameElem.isNull() )
5499 QString labelAttribute = propertyNameElem.text();
5503 int fieldIndex = mFields.
lookupField( labelAttribute );
5504 if ( fieldIndex == -1 )
5520 QgsDebugMsgLevel( QStringLiteral(
"Info: PropertyName element not found." ), 4 );
5531 if ( textSymbolizerElem.hasAttribute( QStringLiteral(
"uom" ) ) )
5536 QString fontFamily = QStringLiteral(
"Sans-Serif" );
5537 int fontPointSize = 10;
5539 int fontWeight = -1;
5540 bool fontItalic =
false;
5541 bool fontUnderline =
false;
5544 QDomElement fontElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Font" ) );
5545 if ( !fontElem.isNull() )
5548 for ( QgsStringMap::iterator it = fontSvgParams.begin(); it != fontSvgParams.end(); ++it )
5550 QgsDebugMsgLevel( QStringLiteral(
"found fontSvgParams %1: %2" ).arg( it.key(), it.value() ), 4 );
5552 if ( it.key() == QLatin1String(
"font-family" ) )
5554 fontFamily = it.value();
5556 else if ( it.key() == QLatin1String(
"font-style" ) )
5558 fontItalic = ( it.value() == QLatin1String(
"italic" ) ) || ( it.value() == QLatin1String(
"Italic" ) );
5560 else if ( it.key() == QLatin1String(
"font-size" ) )
5563 int fontSize = it.value().toInt( &ok );
5566 fontPointSize = fontSize;
5567 fontUnitSize = sldUnitSize;
5570 else if ( it.key() == QLatin1String(
"font-weight" ) )
5572 if ( ( it.value() == QLatin1String(
"bold" ) ) || ( it.value() == QLatin1String(
"Bold" ) ) )
5573 fontWeight = QFont::Bold;
5575 else if ( it.key() == QLatin1String(
"font-underline" ) )
5577 fontUnderline = ( it.value() == QLatin1String(
"underline" ) ) || ( it.value() == QLatin1String(
"Underline" ) );
5583 QFont font( fontFamily, fontPointSize, fontWeight, fontItalic );
5584 font.setUnderline( fontUnderline );
5586 format.
setSize( fontPointSize );
5590 QDomElement fillElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Fill" ) );
5592 Qt::BrushStyle textBrush = Qt::SolidPattern;
5594 if ( textColor.isValid() )
5596 QgsDebugMsgLevel( QStringLiteral(
"Info: textColor %1." ).arg( QVariant( textColor ).toString() ), 4 );
5603 QDomElement haloElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Halo" ) );
5604 if ( !haloElem.isNull() )
5609 QDomElement radiusElem = haloElem.firstChildElement( QStringLiteral(
"Radius" ) );
5610 if ( !radiusElem.isNull() )
5613 double bufferSize = radiusElem.text().toDouble( &ok );
5616 bufferSettings.
setSize( bufferSize );
5621 QDomElement haloFillElem = haloElem.firstChildElement( QStringLiteral(
"Fill" ) );
5623 Qt::BrushStyle bufferBrush = Qt::SolidPattern;
5625 if ( bufferColor.isValid() )
5627 QgsDebugMsgLevel( QStringLiteral(
"Info: bufferColor %1." ).arg( QVariant( bufferColor ).toString() ), 4 );
5628 bufferSettings.
setColor( bufferColor );
5633 QDomElement labelPlacementElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"LabelPlacement" ) );
5634 if ( !labelPlacementElem.isNull() )
5637 QDomElement pointPlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"PointPlacement" ) );
5638 if ( !pointPlacementElem.isNull() )
5646 QDomElement displacementElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Displacement" ) );
5647 if ( !displacementElem.isNull() )
5649 QDomElement displacementXElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementX" ) );
5650 if ( !displacementXElem.isNull() )
5653 double xOffset = displacementXElem.text().toDouble( &ok );
5660 QDomElement displacementYElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementY" ) );
5661 if ( !displacementYElem.isNull() )
5664 double yOffset = displacementYElem.text().toDouble( &ok );
5672 QDomElement anchorPointElem = pointPlacementElem.firstChildElement( QStringLiteral(
"AnchorPoint" ) );
5673 if ( !anchorPointElem.isNull() )
5675 QDomElement anchorPointXElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointX" ) );
5676 if ( !anchorPointXElem.isNull() )
5679 double xOffset = anchorPointXElem.text().toDouble( &ok );
5686 QDomElement anchorPointYElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointY" ) );
5687 if ( !anchorPointYElem.isNull() )
5690 double yOffset = anchorPointYElem.text().toDouble( &ok );
5699 QDomElement rotationElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Rotation" ) );
5700 if ( !rotationElem.isNull() )
5703 double rotation = rotationElem.text().toDouble( &ok );
5713 QDomElement linePlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"LinePlacement" ) );
5714 if ( !linePlacementElem.isNull() )
5723 QDomElement vendorOptionElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"VendorOption" ) );
5724 while ( !vendorOptionElem.isNull() && vendorOptionElem.localName() == QLatin1String(
"VendorOption" ) )
5726 QString optionName = vendorOptionElem.attribute( QStringLiteral(
"name" ) );
5727 QString optionValue;
5728 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::TextNode )
5730 optionValue = vendorOptionElem.firstChild().nodeValue();
5734 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::ElementNode &&
5735 vendorOptionElem.firstChild().localName() == QLatin1String(
"Literal" ) )
5738 optionValue = vendorOptionElem.firstChild().firstChild().nodeValue();
5742 QgsDebugError( QStringLiteral(
"unexpected child of %1 named %2" ).arg( vendorOptionElem.localName(), optionName ) );
5746 if ( !optionName.isEmpty() && !optionValue.isEmpty() )
5748 vendorOptions[ optionName ] = optionValue;
5751 vendorOptionElem = vendorOptionElem.nextSiblingElement();
5753 if ( !vendorOptions.isEmpty() )
5755 for ( QgsStringMap::iterator it = vendorOptions.begin(); it != vendorOptions.end(); ++it )
5757 if ( it.key() == QLatin1String(
"underlineText" ) && it.value() == QLatin1String(
"true" ) )
5759 font.setUnderline(
true );
5762 else if ( it.key() == QLatin1String(
"strikethroughText" ) && it.value() == QLatin1String(
"true" ) )
5764 font.setStrikeOut(
true );
5767 else if ( it.key() == QLatin1String(
"maxDisplacement" ) )
5771 else if ( it.key() == QLatin1String(
"followLine" ) && it.value() == QLatin1String(
"true" ) )
5782 else if ( it.key() == QLatin1String(
"maxAngleDelta" ) )
5785 double angle = it.value().toDouble( &ok );
5793 else if ( it.key() == QLatin1String(
"conflictResolution" ) && it.value() == QLatin1String(
"false" ) )
5797 else if ( it.key() == QLatin1String(
"forceLeftToRight" ) && it.value() == QLatin1String(
"false" ) )
5801 else if ( it.key() == QLatin1String(
"group" ) && it.value() == QLatin1String(
"yes" ) )
5805 else if ( it.key() == QLatin1String(
"labelAllGroup" ) && it.value() == QLatin1String(
"true" ) )
5821 return mEditFormConfig;
5832 mEditFormConfig.onRelationsLoaded();
5842 if ( config.isEmpty() )
5878 if ( !mDiagramLayerSettings )
5880 *mDiagramLayerSettings = s;
5888 QString myMetadata = QStringLiteral(
"<html><head></head>\n<body>\n" );
5893 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Information from provider" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5894 myMetadata += QLatin1String(
"<table class=\"list-view\">\n" );
5899 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Storage" ) + QStringLiteral(
"</td><td>" ) +
storageType() + QStringLiteral(
"</td></tr>\n" );
5905 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Comment" ) + QStringLiteral(
"</td><td>" ) +
dataComment() + QStringLiteral(
"</td></tr>\n" );
5911 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Encoding" ) + QStringLiteral(
"</td><td>" ) + provider->encoding() + QStringLiteral(
"</td></tr>\n" );
5912 myMetadata += provider->htmlMetadata();
5927 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Geometry" ) + QStringLiteral(
"</td><td>" ) + typeString + QStringLiteral(
"</td></tr>\n" );
5934 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Extent" ) + QStringLiteral(
"</td><td>" ) + extentAsStr + QStringLiteral(
"</td></tr>\n" );
5938 QLocale locale = QLocale();
5939 locale.setNumberOptions( locale.numberOptions() &= ~QLocale::NumberOption::OmitGroupSeparator );
5940 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
5941 + tr(
"Feature count" ) + QStringLiteral(
"</td><td>" )
5943 + QStringLiteral(
"</td></tr>\n" );
5946 myMetadata += QLatin1String(
"</table>\n<br><br>" );
5955 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Identification" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5956 myMetadata += htmlFormatter.identificationSectionHtml( );
5957 myMetadata += QLatin1String(
"<br><br>\n" );
5960 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Extent" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5961 myMetadata += htmlFormatter.extentSectionHtml(
isSpatial() );
5962 myMetadata += QLatin1String(
"<br><br>\n" );
5965 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Access" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5966 myMetadata += htmlFormatter.accessSectionHtml( );
5967 myMetadata += QLatin1String(
"<br><br>\n" );
5970 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Fields" ) + QStringLiteral(
"</h1>\n<hr>\n<table class=\"list-view\">\n" );
5974 if ( !pkAttrList.isEmpty() )
5976 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Primary key attributes" ) + QStringLiteral(
"</td><td>" );
5977 const auto constPkAttrList = pkAttrList;
5978 for (
int idx : constPkAttrList )
5982 myMetadata += QLatin1String(
"</td></tr>\n" );
5988 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Count" ) + QStringLiteral(
"</td><td>" ) + QString::number( myFields.
size() ) + QStringLiteral(
"</td></tr>\n" );
5990 myMetadata += QLatin1String(
"</table>\n<br><table width=\"100%\" class=\"tabular-view\">\n" );
5991 myMetadata += QLatin1String(
"<tr><th>" ) + tr(
"Field" ) + QLatin1String(
"</th><th>" ) + tr(
"Type" ) + QLatin1String(
"</th><th>" ) + tr(
"Length" ) + QLatin1String(
"</th><th>" ) + tr(
"Precision" ) + QLatin1String(
"</th><th>" ) + tr(
"Comment" ) + QLatin1String(
"</th></tr>\n" );
5993 for (
int i = 0; i < myFields.
size(); ++i )
5998 rowClass = QStringLiteral(
"class=\"odd-row\"" );
5999 myMetadata += QLatin1String(
"<tr " ) + rowClass + QLatin1String(
"><td>" ) + myField.
displayNameWithAlias() + QLatin1String(
"</td><td>" ) + myField.
typeName() + QLatin1String(
"</td><td>" ) + QString::number( myField.
length() ) + QLatin1String(
"</td><td>" ) + QString::number( myField.
precision() ) + QLatin1String(
"</td><td>" ) + myField.
comment() + QLatin1String(
"</td></tr>\n" );
6003 myMetadata += QLatin1String(
"</table>\n<br><br>" );
6006 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Contacts" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6007 myMetadata += htmlFormatter.contactsSectionHtml( );
6008 myMetadata += QLatin1String(
"<br><br>\n" );
6011 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Links" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6012 myMetadata += htmlFormatter.linksSectionHtml( );
6013 myMetadata += QLatin1String(
"<br><br>\n" );
6016 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"History" ) + QStringLiteral(
"</h1>\n<hr>\n" );
6017 myMetadata += htmlFormatter.historySectionHtml( );
6018 myMetadata += QLatin1String(
"<br><br>\n" );
6022 myMetadata += QLatin1String(
"\n</body>\n</html>\n" );
6026void QgsVectorLayer::invalidateSymbolCountedFlag()
6030 mSymbolFeatureCounted =
false;
6033void QgsVectorLayer::onFeatureCounterCompleted()
6038 mFeatureCounter =
nullptr;
6041void QgsVectorLayer::onFeatureCounterTerminated()
6045 mFeatureCounter =
nullptr;
6048void QgsVectorLayer::onJoinedFieldsChanged()
6065void QgsVectorLayer::onFeatureDeleted(
QgsFeatureId fid )
6071 if ( mEditCommandActive || mCommitChangesActive )
6073 mDeletedFids << fid;
6077 mSelectedFeatureIds.remove( fid );
6084void QgsVectorLayer::onRelationsLoaded()
6088 mEditFormConfig.onRelationsLoaded();
6091void QgsVectorLayer::onSymbolsCounted()
6095 if ( mFeatureCounter )
6097 mSymbolFeatureCounted =
true;
6109 return p->relationManager()->referencingRelations(
this, idx );
6118 return mWeakRelations;
6125 mWeakRelations = relations;
6134 QString joinKey = mAuxiliaryLayerKey;
6135 if ( !key.isEmpty() )
6138 if ( storage.
isValid() && !joinKey.isEmpty() )
6163 mAuxiliaryLayerKey.clear();
6165 if ( mAuxiliaryLayer )
6178 mAuxiliaryLayer.reset( alayer );
6179 if ( mAuxiliaryLayer )
6180 mAuxiliaryLayer->setParent(
this );
6188 return mAuxiliaryLayer.get();
6195 return mAuxiliaryLayer.get();
6202 if ( mDataProvider )
6207void QgsVectorLayer::emitDataChanged()
6211 if ( mDataChangedFired )
6218 if (
QgsVectorLayer *layerWeDependUpon = qobject_cast<QgsVectorLayer *>( sender() );
6219 layerWeDependUpon && layerWeDependUpon->mCommitChangesActive )
6224 mDataChangedFired =
true;
6226 mDataChangedFired =
false;
6233 QSet<QgsMapLayerDependency> deps;
6234 const auto constODeps = oDeps;
6241 QSet<QgsMapLayerDependency> toAdd = deps -
dependencies();
6261 if ( mDataProvider )
6285 if ( ! toAdd.isEmpty() )
6295 if ( fieldIndex < 0 || fieldIndex >= mFields.
count() || !mDataProvider )
6313 QMap< QgsFieldConstraints::Constraint, QgsFieldConstraints::ConstraintStrength > m;
6315 if ( fieldIndex < 0 || fieldIndex >= mFields.
count() )
6318 QString
name = mFields.
at( fieldIndex ).
name();
6321 for ( ; conIt != mFieldConstraintStrength.constEnd(); ++conIt )
6323 if ( conIt.key().first ==
name )
6325 m[ conIt.key().second ] = mFieldConstraintStrength.value( conIt.key() );
6336 if ( index < 0 || index >= mFields.
count() )
6343 constraints |= constraint;
6344 mFieldConstraints.insert(
name, constraints );
6346 mFieldConstraintStrength.insert( qMakePair(
name, constraint ), strength );
6355 if ( index < 0 || index >= mFields.
count() )
6362 constraints &= ~constraint;
6363 mFieldConstraints.insert(
name, constraints );
6365 mFieldConstraintStrength.remove( qMakePair(
name, constraint ) );
6374 if ( index < 0 || index >= mFields.
count() )
6384 if ( index < 0 || index >= mFields.
count() )
6394 if ( index < 0 || index >= mFields.
count() )
6397 if ( expression.isEmpty() )
6399 mFieldConstraintExpressions.remove( mFields.
at( index ).
name() );
6403 mFieldConstraintExpressions.insert( mFields.
at( index ).
name(), qMakePair( expression, description ) );
6412 if ( index < 0 || index >= mFields.
count() )
6415 mFieldConfigurationFlags.insert( mFields.
at( index ).
name(),
flags );
6423 if ( index < 0 || index >= mFields.
count() )
6426 flags.setFlag( flag, active );
6434 if ( index < 0 || index >= mFields.
count() )
6444 if ( index < 0 || index >= mFields.
count() )
6448 mFieldWidgetSetups.remove( mFields.
at( index ).
name() );
6450 mFieldWidgetSetups.insert( mFields.
at( index ).
name(), setup );
6458 if ( index < 0 || index >= mFields.
count() )
6469 if (
customProperty( QStringLiteral(
"labeling" ) ).toString() == QLatin1String(
"pal" ) )
6471 if (
customProperty( QStringLiteral(
"labeling/enabled" ), QVariant(
false ) ).toBool() )
6475 settings.readFromLayerCustomProperties(
this );
6482 for (
const QString &key : constCustomPropertyKeys )
6484 if ( key.startsWith( QLatin1String(
"labeling/" ) ) )
6496 return mAllowCommit;
6514 return mGeometryOptions.get();
6528 return mReadExtentFromXml;
6531void QgsVectorLayer::onDirtyTransaction(
const QString &sql,
const QString &name )
6536 if ( tr && mEditBuffer )
6538 qobject_cast<QgsVectorLayerEditPassthrough *>( mEditBuffer )->update( tr, sql,
name );
6544 QList<QgsVectorLayer *> layers;
6545 QMap<QgsVectorLayer *, QgsFeatureIds>::const_iterator i;
6548 if ( includeAuxiliaryLayers || !qobject_cast< QgsAuxiliaryLayer * >( i.key() ) )
6549 layers.append( i.key() );
6556 return mHandledFeatures[layer];
Provides global constants and enumerations for use throughout the application.
@ SelectAtId
Fast access to features using their ID.
@ CreateRenderer
Provider can create feature renderers using backend-specific formatting information....
@ CreateLabeling
Provider can set labeling settings using backend-specific formatting information. Since QGIS 3....
@ ReadLayerMetadata
Provider can read layer metadata from data store. Since QGIS 3.0. See QgsDataProvider::layerMetadata(...
@ DeleteFeatures
Allows deletion of features.
QFlags< VectorRenderingSimplificationFlag > VectorRenderingSimplificationFlags
Simplification flags for vector feature rendering.
@ Composition
Fix relation, related elements are part of the parent and a parent copy will copy any children or del...
@ Association
Loose relation, related elements are not part of the parent and a parent copy will not copy any child...
GeometryOperationResult
Success or failure of a geometry operation.
@ InvalidInputGeometryType
The input geometry (ring, part, split line, etc.) has not the correct geometry type.
@ Success
Operation succeeded.
@ SelectionIsEmpty
No features were selected.
@ AddRingNotInExistingFeature
The input ring doesn't have any existing ring to fit into.
@ AddRingNotClosed
The input ring is not closed.
@ SelectionIsGreaterThanOne
More than one features were selected.
@ LayerNotEditable
Cannot edit layer.
SpatialIndexPresence
Enumeration of spatial index presence states.
@ Unknown
Spatial index presence cannot be determined, index may or may not exist.
VectorRenderingSimplificationFlag
Simplification flags for vector feature rendering.
@ NoSimplification
No simplification can be applied.
@ OverPoint
Arranges candidates over a point (or centroid of a polygon), or at a preset offset from the point....
@ Curved
Arranges candidates following the curvature of a line feature. Applies to line layers only.
@ AroundPoint
Arranges candidates in a circle around a point (or centroid of a polygon). Applies to point or polygo...
@ Line
Arranges candidates parallel to a generalised line representing the feature or parallel to a polygon'...
@ Horizontal
Arranges horizontal candidates scattered throughout a polygon feature. Applies to polygon layers only...
@ PerimeterCurved
Arranges candidates following the curvature of a polygon's boundary. Applies to polygon layers only.
QFlags< VectorLayerTypeFlag > VectorLayerTypeFlags
Vector layer type flags.
VectorSimplificationAlgorithm
Simplification algorithms for vector features.
@ Distance
The simplification uses the distance between points to remove duplicate points.
@ 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...
FieldDomainMergePolicy
Merge policy for field domains.
@ UnsetField
Clears the field value so that the data provider backend will populate using any backend triggers or ...
FieldDomainSplitPolicy
Split policy for field domains.
@ Duplicate
Duplicate original value.
BlendMode
Blending modes defining the available composition modes that can be used when painting.
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
@ Generated
A generated relation is a child of a polymorphic relation.
@ Normal
A normal relation.
FieldDuplicatePolicy
Duplicate policy for fields.
@ Duplicate
Duplicate original value.
static const float DEFAULT_MAPTOPIXEL_THRESHOLD
Default threshold between map coordinates and device coordinates for map2pixel simplification.
QFlags< DataProviderReadFlag > DataProviderReadFlags
Flags which control data provider construction.
FeatureAvailability
Possible return value for QgsFeatureSource::hasFeatures() to determine if a source is empty.
@ FeaturesMaybeAvailable
There may be features available in this source.
@ FeaturesAvailable
There is at least one feature available in this source.
@ NoFeaturesAvailable
There are certainly no features available in this source.
@ Provider
Field originates from the underlying data provider of the vector layer.
@ Edit
Field has been temporarily added in editing mode.
@ Unknown
The field origin has not been specified.
@ Expression
Field is calculated from an expression.
@ Join
Field originates from a joined layer.
RenderUnit
Rendering size units.
@ Points
Points (e.g., for font sizes)
@ LoadDefaultStyle
Reset the layer's style to the default for the datasource.
@ ForceReadOnly
Open layer in a read-only mode.
Aggregate
Available aggregates to calculate.
VertexMarkerType
Editing vertex markers, used for showing vertices during a edit operation.
@ SemiTransparentCircle
Semi-transparent circle marker.
VectorEditResult
Specifies the result of a vector layer edit operation.
@ Success
Edit operation was successful.
@ InvalidLayer
Edit failed due to invalid layer.
WkbType
The WKB type describes the number of dimensions a geometry has.
FieldConfigurationFlag
Configuration flags for fields These flags are meant to be user-configurable and are not describing a...
@ HideFromWfs
Field is not available if layer is served as WFS from QGIS server.
@ NoFlag
No flag is defined.
@ HideFromWms
Field is not available if layer is served as WMS from QGIS server.
@ AllowOverlapIfRequired
Avoids overlapping labels when possible, but permit overlaps if labels for features cannot otherwise ...
QFlags< FieldConfigurationFlag > FieldConfigurationFlags
Configuration flags for fields These flags are meant to be user-configurable and are not describing a...
@ AlwaysAllowUpsideDown
Show upside down for all labels, including dynamic ones.
SelectBehavior
Specifies how a selection should be applied.
@ SetSelection
Set selection, removing any existing selection.
@ AddToSelection
Add selection to current selection.
@ IntersectSelection
Modify current selection to include only select features which match.
@ RemoveFromSelection
Remove from current selection.
Abstract base class for objects which generate elevation profiles.
virtual bool writeXml(QDomElement &collectionElem, const QgsPropertiesDefinition &definitions) const
Writes the current state of the property collection into an XML element.
Abstract base class - its implementations define different approaches to the labeling of a vector lay...
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the labeling...
virtual Q_DECL_DEPRECATED void toSld(QDomNode &parent, const QVariantMap &props) const
Writes the SE 1.1 TextSymbolizer element based on the current layer labeling settings.
static QgsAbstractVectorLayerLabeling * create(const QDomElement &element, const QgsReadWriteContext &context)
Try to create instance of an implementation based on the XML data.
virtual QDomElement save(QDomDocument &doc, const QgsReadWriteContext &context) const =0
Returns labeling configuration as XML element.
Storage and management of actions associated with a layer.
bool writeXml(QDomNode &layer_node) const
Writes the actions out in XML format.
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.
bool readXml(const QDomNode &layer_node)
Reads the actions in in XML format.
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 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 readXml(const QDomNode &node)
Deserialize to XML on layer load.
void update(const QgsFields &fields)
Update the configuration with the given fields.
void writeXml(QDomNode &node) const
Serialize to XML on layer save.
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 isNull() const
Test if the box is null (holding no spatial information).
bool isEmpty() const
Returns true if the box is empty.
Holds conditional style information for a layer.
bool readXml(const QDomNode &node, const QgsReadWriteContext &context)
Reads the condition styles state from a DOM node.
bool writeXml(QDomNode &node, QDomDocument &doc, const QgsReadWriteContext &context) const
Writes the condition styles state to a DOM node.
Represents a coordinate reference system (CRS).
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
Contains information about the context in which a coordinate transform is executed.
Abstract base class for curved geometry type.
virtual bool isClosed() const
Returns true if the curve is closed.
QgsCurve * clone() const override=0
Clones the geometry by performing a deep copy.
virtual bool containsElevationData() const
Returns true if the data provider definitely contains elevation related data.
virtual bool leaveUpdateMode()
Leave update mode.
virtual QString subsetString() const
Returns the subset definition string currently in use by the layer and used by the provider to limit ...
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
virtual Qgis::DataProviderFlags flags() const
Returns the generic data provider flags.
virtual QgsCoordinateReferenceSystem crs() const =0
Returns the coordinate system for the data source.
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 Qgis::ProviderStyleStorageCapabilities styleStorageCapabilities() const
Returns the style storage capabilities.
virtual QgsBox3D extent3D() const
Returns the 3D extent of the layer.
virtual QgsLayerMetadata layerMetadata() const
Returns layer metadata collected from the provider's source.
virtual bool isValid() const =0
Returns true if this is a valid layer.
virtual bool setSubsetString(const QString &subset, bool updateFeatureCount=true)
Set the subset string used to create a subset of features in the layer.
virtual QString dataSourceUri(bool expandAuthConfig=false) const
Gets the data source specification.
virtual void updateExtents()
Update the extents of the layer.
virtual void reloadData()
Reloads the data from the source for providers with data caches to synchronize, changes in the data s...
virtual bool enterUpdateMode()
Enter update mode.
virtual QgsRectangle extent() const =0
Returns the extent of the layer.
virtual void setTransformContext(const QgsCoordinateTransformContext &transformContext)
Sets data coordinate transform context to transformContext.
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.
void readXml(const QDomElement &elem)
Reads the diagram settings from a DOM element.
void writeXml(QDomElement &layerElem, QDomDocument &doc) const
Writes the diagram settings to a DOM element.
Evaluates and returns the diagram settings relating to a diagram for a specific feature.
virtual void writeXml(QDomElement &layerElem, QDomDocument &doc, const QgsReadWriteContext &context) const =0
Writes diagram state to a DOM element.
virtual QList< QgsDiagramSettings > diagramSettings() const =0
Returns list with all diagram settings in the renderer.
virtual void readXml(const QDomElement &elem, const QgsReadWriteContext &context)=0
Reads diagram state from a DOM element.
void clear()
Clear error messages.
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 removeExpression(int index)
Remove an expression from the buffer.
void writeXml(QDomNode &layer_node, QDomDocument &document) const
Saves expressions to xml under the layer node.
void readXml(const QDomNode &layer_node)
Reads expressions from project file.
void updateFields(QgsFields &flds) const
Adds fields with the expressions buffered in this object to a QgsFields object.
void addExpression(const QString &exp, const QgsField &fld)
Add an expression to the buffer.
QList< QgsExpressionFieldBuffer::ExpressionField > expressions() const
void updateExpression(int index, const QString &exp)
Changes the expression at a given index.
void renameExpression(int index, const QString &name)
Renames an expression field at a given index.
An expression node which takes its value from a feature's field.
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.
virtual QDomElement save(QDomDocument &doc, const QgsReadWriteContext &context)
Stores renderer properties to an XML element.
double referenceScale() const
Returns the symbology reference scale.
void setReferenceScale(double scale)
Sets the symbology reference scale.
virtual Q_DECL_DEPRECATED void toSld(QDomDocument &doc, QDomElement &element, const QVariantMap &props=QVariantMap()) const
Used from subclasses to create SLD Rule elements following SLD v1.1 specs.
static QgsFeatureRenderer * load(QDomElement &symbologyElem, const QgsReadWriteContext &context)
create a renderer from XML element
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the renderer...
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 & setNoAttributes()
Set that no attributes will be fetched.
QgsFeatureRequest & setFilterFid(QgsFeatureId fid)
Sets the feature ID that should be fetched.
virtual bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags())
Adds a single feature to the sink.
virtual QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const
Returns the set of unique values contained within the specified fieldIndex from this source.
virtual Qgis::SpatialIndexPresence hasSpatialIndex() const
Returns an enum value representing the presence of a valid spatial index on the source,...
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 ...
QString constraintExpression() const
Returns the constraint expression for the field, if set.
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().
QString constraintDescription() const
Returns the descriptive name for the constraint expression.
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...
QString displayName() const
Returns the name to use when displaying this field.
Qgis::FieldConfigurationFlags configurationFlags
QgsDefaultValue defaultValueDefinition
QgsFieldConstraints constraints
QgsEditorWidgetSetup editorWidgetSetup() const
Gets the editor widget setup for the field.
Container of fields for a vector layer.
Q_INVOKABLE int indexFromName(const QString &fieldName) const
Gets the field index from the field name.
Q_INVOKABLE int indexOf(const QString &fieldName) const
Gets the field index from the field name.
Qgis::FieldOrigin fieldOrigin(int fieldIdx) const
Returns the field's origin (value from an enumeration).
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).
int fieldOriginIndex(int fieldIdx) const
Returns the field's origin index (its meaning is specific to each type of origin).
Q_INVOKABLE int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
Contains options to automatically adjust geometries to constraints on a layer.
A geometry is the spatial representation of a feature.
QgsBox3D boundingBox3D() const
Returns the 3D bounding box of the geometry.
bool equals(const QgsGeometry &geometry) const
Test if this geometry is exactly equal to another geometry.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
void setMergeLines(bool merge)
Sets whether connected line features with identical label text should be merged prior to generating l...
void setOverlapHandling(Qgis::LabelOverlapHandling handling)
Sets the technique used to handle overlapping labels.
Line string geometry type, with support for z-dimension and m-values.
Alters the size of rendered diagrams using linear scaling.
static void warning(const QString &msg)
Goes to qWarning.
Models dependencies with or between map layers.
Base class for storage of map layer elevation properties.
static QString typeToString(Qgis::LayerType type)
Converts a map layer type to a string value.
virtual void readXml(const QDomElement &elem, const QgsReadWriteContext &context)
Reads configuration from a DOM element previously written by writeXml()
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.
Base class for all map layer types.
void readStyleManager(const QDomNode &layerNode)
Read style manager's configuration (if any). To be called by subclasses.
void dependenciesChanged()
Emitted when dependencies are changed.
void writeStyleManager(QDomNode &layerNode, QDomDocument &doc) const
Write style manager's configuration (if exists). To be called by subclasses.
QgsMapLayerLegend * legend() const
Can be nullptr.
void editingStopped()
Emitted when edited changes have been successfully written to the data provider.
void recalculateExtents() const
This is used to send a request that any mapcanvas using this layer update its extents.
virtual QgsRectangle extent() const
Returns the extent of the layer.
QString source() const
Returns the source for the layer.
Q_INVOKABLE QVariant customProperty(const QString &value, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
int mBlockStyleChangedSignal
If non-zero, the styleChanged signal should not be emitted.
QString providerType() const
Returns the provider type (provider key) for this layer.
virtual void setExtent3D(const QgsBox3D &box)
Sets the extent.
void removeCustomProperty(const QString &key)
Remove a custom property from layer.
void setBlendMode(QPainter::CompositionMode blendMode)
Set the blending mode used for rendering a layer.
void configChanged()
Emitted whenever the configuration is changed.
void setMinimumScale(double scale)
Sets the minimum map scale (i.e.
static Qgis::DataProviderReadFlags providerReadFlags(const QDomNode &layerNode, QgsMapLayer::ReadFlags layerReadFlags)
Returns provider read flag deduced from layer read flags layerReadFlags and a dom node layerNode that...
QgsMapLayer::LayerFlags flags() const
Returns the flags for this layer.
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
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.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
virtual QString getStyleFromDatabase(const QString &styleId, QString &msgError)
Returns the named style corresponding to style id provided.
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
void dataChanged()
Data of layer changed.
void willBeDeleted()
Emitted in the destructor when the layer is about to be deleted, but it is still in a perfectly valid...
virtual QgsBox3D extent3D() const
Returns the 3D extent of the layer.
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
void setName(const QString &name)
Set the display name of the layer.
virtual void setExtent(const QgsRectangle &rect)
Sets the extent.
virtual void resolveReferences(QgsProject *project)
Resolve references to other layers (kept as layer IDs after reading XML) into layer objects.
QString mDataSource
Data source description string, varies by layer type.
void setMapTipsEnabled(bool enabled)
Enable or disable map tips for this layer.
@ FlagReadExtentFromXml
Read extent from xml and skip get extent from provider.
@ FlagForceReadOnly
Force open as read only.
@ FlagDontResolveLayers
Don't resolve layer paths or create data providers for layers.
void setValid(bool valid)
Sets whether layer is valid or not.
void readCommonStyle(const QDomElement &layerElement, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read style data common to all layer types.
QgsMapLayer::ReadFlags mReadFlags
Read flags. It's up to the subclass to respect these when restoring state from XML.
double minimumScale() const
Returns the minimum map scale (i.e.
void repaintRequested(bool deferredUpdate=false)
By emitting this signal the layer tells that either appearance or content have been changed and any v...
void setMapTipTemplate(const QString &mapTipTemplate)
The mapTip is a pretty, html representation for feature information.
Q_INVOKABLE QStringList customPropertyKeys() const
Returns list of all keys within custom properties.
QgsProject * project() const
Returns the parent project if this map layer is added to a project.
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
bool mValid
Indicates if the layer is valid and can be drawn.
@ GeometryOptions
Geometry validation configuration.
@ AttributeTable
Attribute table settings: choice and order of columns, conditional styling.
@ LayerConfiguration
General configuration: identifiable, removable, searchable, display expression, read-only.
@ Rendering
Rendering: scale visibility, simplify method, opacity.
@ CustomProperties
Custom properties (by plugins for instance)
@ Fields
Aliases, widgets, WMS/WFS, expressions, constraints, virtual fields.
void layerModified()
Emitted when modifications has been done on layer.
void setProviderType(const QString &providerType)
Sets the providerType (provider key)
QString customPropertyHtmlMetadata() const
Returns an HTML fragment containing custom property information, for use in the htmlMetadata() method...
QString generalHtmlMetadata() const
Returns an HTML fragment containing general metadata information, for use in the htmlMetadata() metho...
void writeCommonStyle(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write style data common to all layer types.
double maximumScale() const
Returns the maximum map scale (i.e.
bool mShouldValidateCrs
true if the layer's CRS should be validated and invalid CRSes are not permitted.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE())
Adds a message to the log instance (and creates it if necessary).
static QgsExpression * expressionFromOgcFilter(const QDomElement &element, QgsVectorLayer *layer=nullptr)
Parse XML with OGC filter into QGIS expression.
static Qgis::BlendMode getBlendModeEnum(QPainter::CompositionMode blendMode)
Returns a Qgis::BlendMode corresponding to a QPainter::CompositionMode.
static QPainter::CompositionMode getCompositionMode(Qgis::BlendMode blendMode)
Returns a QPainter::CompositionMode corresponding to a Qgis::BlendMode.
Contains settings for how a map layer will be labeled.
double yOffset
Vertical offset of label.
const QgsLabelPlacementSettings & placementSettings() const
Returns the label placement settings.
double maxCurvedCharAngleIn
Maximum angle between inside curved label characters (valid range 20.0 to 60.0).
void setFormat(const QgsTextFormat &format)
Sets the label text formatting settings, e.g., font settings, buffer settings, etc.
double xOffset
Horizontal offset of label.
Qgis::LabelPlacement placement
Label placement mode.
double angleOffset
Label rotation, in degrees clockwise.
double maxCurvedCharAngleOut
Maximum angle between outside curved label characters (valid range -20.0 to -95.0)
Qgis::RenderUnit offsetUnits
Units for offsets of label.
bool isExpression
true if this label is made from a expression string, e.g., FieldName || 'mm'
const QgsLabelLineSettings & lineSettings() const
Returns the label line settings, which contain settings related to how the label engine places and fo...
Qgis::UpsideDownLabelHandling upsidedownLabels
Controls whether upside down labels are displayed and how they are handled.
QString fieldName
Name of field (or an expression) to use for label text.
Point geometry type, with support for z-dimension and m-values.
Encapsulates properties and constraints relating to fetching elevation profiles from different source...
virtual QString translate(const QString &context, const QString &sourceText, const char *disambiguation=nullptr, int n=-1) const =0
Translates a string using the Qt QTranslator mechanism.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
QgsRelationManager * relationManager
bool commitChanges(QStringList &commitErrors, bool stopEditing=true, QgsVectorLayer *vectorLayer=nullptr)
Attempts to commit to the underlying data provider any buffered changes made since the last to call t...
static QgsProject * instance()
Returns the QgsProject singleton instance.
bool rollBack(QStringList &rollbackErrors, bool stopEditing=true, QgsVectorLayer *vectorLayer=nullptr)
Stops a current editing operation on vectorLayer and discards any uncommitted edits.
bool startEditing(QgsVectorLayer *vectorLayer=nullptr)
Makes the layer editable.
QMap< QString, QgsMapLayer * > mapLayers(const bool validOnly=false) const
Returns a map of all registered layers by layer ID.
A grouped map of multiple QgsProperty objects, each referenced by an integer key value.
void setProperty(int key, const QgsProperty &property)
Adds a property to the collection and takes ownership of it.
Definition for a property.
@ Double
Double value (including negative values)
static QgsProperty fromField(const QString &fieldName, bool isActive=true)
Returns a new FieldBasedProperty created from the specified field name.
QString absoluteToRelativeUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts absolute path(s) to relative path(s) in the given provider-specific URI.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
QString relativeToAbsoluteUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts relative path(s) to absolute path(s) in the given provider-specific URI.
Allows entering a context category and takes care of leaving this category on deletion of the class.
A container for the context for various read/write operations on objects.
MAYBE_UNUSED NODISCARD QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString()) const
Push a category to the stack.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
const QgsPathResolver & pathResolver() const
Returns path resolver for conversion between relative and absolute paths.
A rectangle specified with double values.
Q_INVOKABLE QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
void set(const QgsPointXY &p1, const QgsPointXY &p2, bool normalize=true)
Sets the rectangle from two QgsPoints.
void combineExtentWith(const QgsRectangle &rect)
Expands the rectangle so that it covers both the original rectangle and the given rectangle.
void normalize()
Normalize the rectangle so it has non-negative width/height.
void setNull()
Mark a rectangle as being null (holding no spatial information).
QList< QgsRelation > referencedRelations(const QgsVectorLayer *layer=nullptr) const
Gets all relations where this layer is the referenced part (i.e.
void relationsLoaded()
Emitted when the relations were loaded after reading a project.
Represents a relationship between two vector layers.
Contains information about the context of a rendering operation.
double rendererScale() const
Returns the renderer map scale.
bool useRenderingOptimization() const
Returns true if the rendering optimization (geometry simplification) can be executed.
A child rule for QgsRuleBasedLabeling.
void appendChild(QgsRuleBasedLabeling::Rule *rule)
add child rule, take ownership, sets this as parent
Rule based labeling for a vector layer.
A boolean settings entry.
A template class for enum and flag settings entry.
static QgsSettingsTreeNode * sTreeQgis
Stores settings for use within QGIS.
Renders the diagrams for all features with the same settings.
Holds SLD export options and other information related to SLD export of a QGIS layer style.
void setExtraProperties(const QVariantMap &properties)
Sets the open ended set of properties that can drive/inform the SLD encoding.
QVariantMap extraProperties() const
Returns the open ended set of properties that can drive/inform the SLD encoding.
Renders diagrams using mixed diagram render types.
Manages stored expressions regarding creation, modification and storing in the project.
bool writeXml(QDomNode &layerNode) const
Writes the stored expressions out in XML format.
bool readXml(const QDomNode &layerNode)
Reads the stored expressions in in XML format.
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....
bool isActive() const
Returns true if the temporal property is active.
Container for settings relating to a text buffer.
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.
Container for all settings relating to text rendering.
void setColor(const QColor &color)
Sets the color that text will be rendered in.
void setSize(double size)
Sets the size for rendered text.
void setFont(const QFont &font)
Sets the font used for rendering text.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units for the size of rendered text.
void setBuffer(const QgsTextBufferSettings &bufferSettings)
Sets the text's buffer settings.
Allows creation of a multi-layer database-side transaction.
QString createSavepoint(QString &error)
creates a save point returns empty string on error returns the last created savepoint if it's not dir...
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.
virtual QString dataComment() const override
Returns a short comment for the data that this provider is providing access to (e....
virtual QVariant aggregate(Qgis::Aggregate aggregate, int index, const QgsAggregateCalculator::AggregateParameters ¶meters, QgsExpressionContext *context, bool &ok, QgsFeatureIds *fids=nullptr) const
Calculates an aggregated value from the layer's features.
static const int EditingCapabilities
Bitmask of all provider's editing capabilities.
long long featureCount() const override=0
Number of features in the layer.
virtual QgsFeatureRenderer * createRenderer(const QVariantMap &configuration=QVariantMap()) const
Creates a new vector layer feature renderer, using provider backend specific information.
virtual QString storageType() const
Returns the permanent storage type for this layer as a friendly name.
virtual 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) const
Signals an error in this provider.
virtual bool isSqlQuery() const
Returns true if the layer is a query (SQL) layer.
virtual bool empty() const
Returns true if the layer does not contain any feature.
virtual Q_INVOKABLE Qgis::VectorProviderCapabilities capabilities() const
Returns flags containing the supported capabilities.
virtual QgsAttributeList pkAttributeIndexes() const
Returns list of indexes of fields that make up the primary key.
virtual void handlePostCloneOperations(QgsVectorDataProvider *source)
Handles any post-clone operations required after this vector data provider was cloned from the source...
virtual QSet< QgsMapLayerDependency > dependencies() const
Gets the list of layer ids on which this layer depends.
virtual void setEncoding(const QString &e)
Set encoding used for accessing data from layer.
virtual Qgis::VectorLayerTypeFlags vectorLayerTypeFlags() const
Returns the vector layer type flags.
QVariant maximumValue(int index) const override
Returns the maximum value of an attribute.
QgsDataProviderElevationProperties * elevationProperties() override
Returns the provider's elevation properties.
QgsFields fields() const override=0
Returns the fields associated with this data provider.
Qgis::WkbType wkbType() const override=0
Returns the geometry type which is returned by this layer.
QVariant minimumValue(int index) const override
Returns the minimum value of an attribute.
QString encoding() const
Returns the encoding which is used for accessing data.
virtual QVariant defaultValue(int fieldIndex) const
Returns any literal default values which are present at the provider for a specified field index.
QgsFieldConstraints::Constraints fieldConstraints(int fieldIndex) const
Returns any constraints which are present at the provider for a specified field index.
virtual QgsTransaction * transaction() const
Returns the transaction this data provider is included in, if any.
virtual QgsAbstractVectorLayerLabeling * createLabeling(const QVariantMap &configuration=QVariantMap()) const
Creates labeling settings, using provider backend specific information.
QgsVectorDataProviderTemporalCapabilities * temporalCapabilities() override
Returns the provider's temporal capabilities.
QString capabilitiesString() const
Returns the above in friendly format.
bool commitChanges(QStringList &commitErrors, bool stopEditing=true)
Attempts to commit any changes to disk.
void committedAttributesDeleted(const QString &layerId, const QgsAttributeList &deletedAttributes)
Emitted after attribute deletion has been committed to the layer.
virtual bool deleteFeature(QgsFeatureId fid)
Delete a feature from the layer (but does not commit it)
QgsFeatureIds deletedFeatureIds() const
Returns a list of deleted feature IDs which are not committed.
QgsChangedAttributesMap changedAttributeValues() const
Returns a map of features with changed attributes values which are not committed.
void committedAttributeValuesChanges(const QString &layerId, const QgsChangedAttributesMap &changedAttributesValues)
Emitted after feature attribute value changes have been committed to the layer.
virtual bool renameAttribute(int attr, const QString &newName)
Renames an attribute field (but does not commit it)
void geometryChanged(QgsFeatureId fid, const QgsGeometry &geom)
Emitted when a feature's geometry is changed.
virtual bool deleteFeatures(const QgsFeatureIds &fid)
Deletes a set of features from the layer (but does not commit it)
virtual bool addAttribute(const QgsField &field)
Adds an attribute field (but does not commit it) returns true if the field was added.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
Emitted after attribute addition has been committed to the layer.
virtual bool addFeatures(QgsFeatureList &features)
Insert a copy of the given features into the layer (but does not commit it)
virtual bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues)
Changes values of attributes (but does not commit it).
QgsFeatureMap addedFeatures() const
Returns a map of new features which are not committed.
virtual bool isModified() const
Returns true if the provider has been modified since the last commit.
void updateFields(QgsFields &fields)
Updates fields.
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.
QgsGeometryMap changedGeometries() const
Returns a map of features with changed geometries which are not committed.
QgsVectorLayerEditBufferGroup * editBufferGroup() const
Returns the parent edit buffer group for this edit buffer, or nullptr if not part of a group.
QgsAttributeList deletedAttributeIds() const
Returns a list of deleted attributes fields which are not committed.
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.
virtual bool addFeature(QgsFeature &f)
Adds a feature.
virtual void rollBack()
Stop editing and discard the edits.
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.
virtual bool commitChanges(QStringList &commitErrors)
Attempts to commit any changes to disk.
virtual bool deleteAttribute(int attr)
Deletes an attribute field (but does not commit it)
virtual bool changeAttributeValue(QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant())
Changed an attribute value (but does not commit it)
virtual bool changeGeometry(QgsFeatureId fid, const QgsGeometry &geom)
Change feature's geometry.
void layerModified()
Emitted when modifications has been done on layer.
void committedFeaturesRemoved(const QString &layerId, const QgsFeatureIds &deletedFeatureIds)
Emitted after feature removal has been committed to the layer.
Contains utility functions for editing vector layers.
int translateFeature(QgsFeatureId featureId, double dx, double dy)
Translates feature by dx, dy.
bool insertVertex(double x, double y, QgsFeatureId atFeatureId, int beforeVertex)
Insert a new vertex before the given vertex number, in the given ring, item (first number is index 0)...
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addPart(const QVector< QgsPointXY > &ring, QgsFeatureId featureId)
Adds a new part polygon to a multipart feature.
Qgis::VectorEditResult deleteVertex(QgsFeatureId featureId, int vertex)
Deletes a vertex from a feature.
int addTopologicalPoints(const QgsGeometry &geom)
Adds topological points for every vertex of the geometry.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitParts(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits parts cut by the given line.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitFeatures(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits features cut by the given line.
bool moveVertex(double x, double y, QgsFeatureId atFeatureId, int atVertex)
Moves the vertex at the given position number, ring and item (first number is index 0),...
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addRing(const QVector< QgsPointXY > &ring, const QgsFeatureIds &targetFeatureIds=QgsFeatureIds(), QgsFeatureId *modifiedFeatureId=nullptr)
Adds a ring to polygon/multipolygon features.
Vector layer specific subclass of QgsMapLayerElevationProperties.
void setDefaultsFromLayer(QgsMapLayer *layer) override
Sets default properties based on sensible choices for the given map layer.
QgsVectorLayerElevationProperties * clone() const override
Creates a clone of the properties.
Counts the features in a QgsVectorLayer in task.
QHash< QString, long long > symbolFeatureCountMap() const
Returns the count for each symbol.
void cancel() override
Notifies the task that it should terminate.
QHash< QString, QgsFeatureIds > symbolFeatureIdMap() const
Returns the QgsFeatureIds for each symbol.
A feature iterator which iterates over features from a QgsVectorLayer.
Manages joined fields for a vector layer.
void resolveReferences(QgsProject *project)
Resolves layer IDs of joined layers using given project's available layers.
bool addJoin(const QgsVectorLayerJoinInfo &joinInfo)
Joins another vector layer to this layer.
void readXml(const QDomNode &layer_node)
Reads joins from project file.
void writeXml(QDomNode &layer_node, QDomDocument &document) const
Saves mVectorJoins to xml under the layer node.
const QgsVectorLayerJoinInfo * joinForFieldIndex(int index, const QgsFields &fields, int &sourceFieldIndex) const
Finds the vector join for a layer field index.
bool changeAttributeValue(QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant())
Changes attribute value in joined layers.
bool removeJoin(const QString &joinLayerId)
Removes a vector layer join.
bool containsJoins() const
Quick way to test if there is any join at all.
bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues=QgsAttributeMap())
Changes attributes' values in joined layers.
bool addFeatures(QgsFeatureList &features, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a list of features in joined layers.
void joinedFieldsChanged()
Emitted whenever the list of joined fields changes (e.g.
void updateFields(QgsFields &fields)
Updates field map with joined attributes.
bool deleteFeature(QgsFeatureId fid, QgsVectorLayer::DeleteContext *context=nullptr) const
Deletes a feature from joined layers.
const QgsVectorJoinList & vectorJoins() const
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.
QDomElement writeXml(QDomElement &element, QDomDocument &doc, const QgsReadWriteContext &context) override
Writes the properties to a DOM element, to be used later with readXml().
bool readXml(const QDomElement &element, const QgsReadWriteContext &context) override
Reads temporal properties from a DOM element previously written by writeXml().
Basic implementation of the labeling interface.
Implementation of map layer temporal properties for vector layers.
void guessDefaultsFromFields(const QgsFields &fields)
Attempts to setup the temporal properties by scanning a set of fields and looking for standard naming...
void setDefaultsFromDataProviderTemporalCapabilities(const QgsDataProviderTemporalCapabilities *capabilities) override
Sets the layers temporal settings to appropriate defaults based on a provider's temporal capabilities...
Contains settings which reflect the context in which vector layer tool operations should be considere...
QgsExpressionContext * expressionContext() const
Returns the optional expression context used by the vector layer tools.
static QString guessFriendlyIdentifierField(const QgsFields &fields, bool *foundFriendly=nullptr)
Given a set of fields, attempts to pick the "most useful" field for user-friendly identification of f...
Represents a vector layer which manages a vector based dataset.
void setLabeling(QgsAbstractVectorLayerLabeling *labeling)
Sets labeling configuration.
QString attributeDisplayName(int index) const
Convenience function that returns the attribute alias if defined or the field name else.
QVariant maximumValue(int index) const FINAL
Returns the maximum value for an attribute column or an invalid variant in case of error.
int addExpressionField(const QString &exp, const QgsField &fld)
Add a new field which is calculated by the expression specified.
void committedFeaturesAdded(const QString &layerId, const QgsFeatureList &addedFeatures)
Emitted when features are added to the provider if not in transaction mode.
void setExtent(const QgsRectangle &rect) FINAL
Sets the extent.
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
QgsRectangle sourceExtent() const FINAL
Returns the extent of all geometries from the source.
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 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.
bool isModified() const override
Returns true if the provider has been modified since the last commit.
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 addFeatureRendererGenerator(QgsFeatureRendererGenerator *generator)
Adds a new feature renderer generator to the layer.
Q_DECL_DEPRECATED void setExcludeAttributesWfs(const QSet< QString > &att)
A set of attributes that are not advertised in WFS requests with QGIS server.
Q_INVOKABLE bool deleteSelectedFeatures(int *deletedCount=nullptr, QgsVectorLayer::DeleteContext *context=nullptr)
Deletes the selected features.
Q_INVOKABLE void selectByRect(QgsRectangle &rect, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection)
Selects features found within the search rectangle (in layer's coordinates)
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.
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)
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...
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.
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.
QSet< QgsMapLayerDependency > dependencies() const FINAL
Gets the list of dependencies.
QgsMapLayerTemporalProperties * temporalProperties() override
Returns the layer's temporal properties.
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.
QgsExpressionContextScope * createExpressionContextScope() const FINAL
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QgsMapLayerRenderer * createMapRenderer(QgsRenderContext &rendererContext) FINAL
Returns new instance of QgsMapLayerRenderer that will be used for rendering of given context.
QgsVectorLayerFeatureCounter * countSymbolFeatures(bool storeSymbolFids=false)
Count features for symbols.
QPainter::CompositionMode featureBlendMode() const
Returns the current blending mode for features.
bool hasMapTips() const FINAL
Returns true if the layer contains map tips.
QString constraintExpression(int index) const
Returns the constraint expression for for a specified field index, if set.
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,...
bool isSpatial() const FINAL
Returns true if this is a geometry layer and false in case of NoGeometry (table only) or UnknownGeome...
const QgsDiagramLayerSettings * diagramLayerSettings() const
void setFieldConstraint(int index, QgsFieldConstraints::Constraint constraint, QgsFieldConstraints::ConstraintStrength strength=QgsFieldConstraints::ConstraintStrengthHard)
Sets a constraint for a specified field index.
bool loadAuxiliaryLayer(const QgsAuxiliaryStorage &storage, const QString &key=QString())
Loads the auxiliary layer for this vector layer.
bool insertVertex(double x, double y, QgsFeatureId atFeatureId, int beforeVertex)
Inserts a new vertex before the given vertex number, in the given ring, item (first number is index 0...
QgsFeatureIterator getFeatures(const QgsFeatureRequest &request=QgsFeatureRequest()) const FINAL
Queries the layer for features specified in request.
QgsAbstractProfileGenerator * createProfileGenerator(const QgsProfileRequest &request) override
Given a profile request, returns a new profile generator ready for generating elevation profiles.
QString htmlMetadata() const FINAL
Obtain a formatted HTML string containing assorted metadata for this layer.
Q_INVOKABLE QgsRectangle boundingBoxOfSelected() const
Returns the bounding box of the selected features. If there is no selection, QgsRectangle(0,...
bool addFeatures(QgsFeatureList &features, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) FINAL
Adds a list of features to the sink.
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.
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.
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.
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.
QgsBox3D sourceExtent3D() const FINAL
Returns the 3D extent of all geometries from the source.
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.
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
~QgsVectorLayer() override
QgsCoordinateReferenceSystem sourceCrs() const FINAL
Returns the coordinate reference system for features in the source.
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.
QgsExpressionContext createExpressionContext() const FINAL
This method needs to be reimplemented in all classes which implement this interface and return an exp...
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.
bool setDependencies(const QSet< QgsMapLayerDependency > &layers) FINAL
Sets the list of dependencies.
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.
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.
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 bool deleteAttribute(int attr)
Deletes an attribute field (but does not commit it).
static const QgsSettingsEntryBool * settingsSimplifyLocal
void resolveReferences(QgsProject *project) FINAL
Resolves references to other layers (kept as layer IDs after reading XML) into layer objects.
bool simplifyDrawingCanbeApplied(const QgsRenderContext &renderContext, Qgis::VectorRenderingSimplificationFlag simplifyHint) const
Returns whether the VectorLayer can apply the specified simplification hint.
QgsMapLayerElevationProperties * elevationProperties() override
Returns the layer's elevation properties.
bool removeJoin(const QString &joinLayerId)
Removes a vector layer join.
Q_INVOKABLE void invertSelectionInRectangle(QgsRectangle &rect)
Inverts selection of features found within the search rectangle (in layer's coordinates)
void setRenderer(QgsFeatureRenderer *r)
Sets the feature renderer which will be invoked to represent this layer in 2D map views.
Q_INVOKABLE void selectAll()
Select all the features.
bool isEditable() const FINAL
Returns true if the provider is in editing mode.
QStringList commitErrors() const
Returns a list containing any error messages generated when attempting to commit changes to the layer...
QString storageType() const
Returns the permanent storage type for this layer as a friendly name.
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
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.
Q_INVOKABLE Qgis::WkbType wkbType() const FINAL
Returns the WKBType or WKBUnknown in case of error.
virtual void updateExtents(bool force=false)
Update the extents for the layer.
void attributeDeleted(int idx)
Will be emitted, when an attribute has been deleted from this vector layer.
QgsFeatureRenderer * renderer()
Returns the feature renderer used for rendering the features in the layer in 2D map views.
void beforeEditingStarted()
Emitted before editing on this layer is started.
void committedAttributeValuesChanges(const QString &layerId, const QgsChangedAttributesMap &changedAttributesValues)
Emitted when attribute value changes are saved to the provider if not in transaction mode.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
Emitted when attributes are added to the provider if not in transaction mode.
void setEditFormConfig(const QgsEditFormConfig &editFormConfig)
Sets the editFormConfig (configuration) of the form used to represent this vector layer.
Qgis::FieldConfigurationFlags fieldConfigurationFlags(int index) const
Returns the configuration flags of the field at given index.
void committedAttributesDeleted(const QString &layerId, const QgsAttributeList &deletedAttributes)
Emitted when attributes are deleted from the provider if not in transaction mode.
QString displayExpression
void displayExpressionChanged()
Emitted when the display expression changes.
QVariant minimumValue(int index) const FINAL
Returns the minimum value for an attribute column or an invalid variant in case of error.
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.
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.
QgsVectorDataProvider * dataProvider() FINAL
Returns the layer's data provider, it may be nullptr.
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 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.
long long featureCount() const FINAL
Returns feature count including changes which have not yet been committed If you need only the count ...
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.
bool readSld(const QDomNode &node, QString &errorMessage) FINAL
Q_INVOKABLE void selectByIds(const QgsFeatureIds &ids, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection)
Selects matching features using a list of feature IDs.
QStringList uniqueStringsMatching(int index, const QString &substring, int limit=-1, QgsFeedback *feedback=nullptr) const
Returns unique string values of an attribute which contain a specified subset string.
void raiseError(const QString &msg)
Signals an error related to this vector layer.
void editCommandEnded()
Signal emitted, when an edit command successfully ended.
void supportsEditingChanged()
Emitted when the read only state or the data provider of this layer is changed.
void readOnlyChanged()
Emitted when the read only state of this layer is changed.
void removeExpressionField(int index)
Removes an expression field.
virtual 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.
bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) FINAL
Adds a single feature to the sink.
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.
QgsRectangle extent() const FINAL
Returns the extent of the layer.
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.
bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context) FINAL
Reads vector layer specific state from project file Dom node.
void afterRollBack()
Emitted after changes are rolled back.
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...
void setDiagramLayerSettings(const QgsDiagramLayerSettings &s)
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.
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.
QString sourceName() const FINAL
Returns a friendly display name for the source.
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.
QgsBox3D extent3D() const FINAL
Returns the 3D extent of the layer.
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 reload() FINAL
Synchronises with changes in the datasource.
const QList< QgsVectorLayerJoinInfo > vectorJoins() const
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.
bool writeXml(QDomNode &layer_node, QDomDocument &doc, const QgsReadWriteContext &context) const FINAL
Writes vector layer specific state to project file Dom node.
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...
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.
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.
Qgis::FeatureAvailability hasFeatures() const FINAL
Determines if this vector layer has features.
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.
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
void setExtent3D(const QgsBox3D &rect) FINAL
Sets the extent.
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.
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
QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const FINAL
Calculates a list of unique values contained within an attribute in the layer.
void setFieldSplitPolicy(int index, Qgis::FieldDomainSplitPolicy policy)
Sets a split policy for the field with the specified index.
bool forceLocalOptimization() const
Gets where the simplification executes, after fetch the geometries from provider, or when supported,...
Qgis::VectorRenderingSimplificationFlags simplifyHints() const
Gets the simplification hints of the vector layer managed.
float maximumScale() const
Gets the maximum scale at which the layer should be simplified.
Qgis::VectorSimplificationAlgorithm simplifyAlgorithm() const
Gets the local simplification algorithm of the vector layer managed.
void setThreshold(float threshold)
Sets the simplification threshold of the vector layer managed.
void setForceLocalOptimization(bool localOptimization)
Sets where the simplification executes, after fetch the geometries from provider, or when supported,...
void setSimplifyHints(Qgis::VectorRenderingSimplificationFlags simplifyHints)
Sets the simplification hints of the vector layer managed.
float threshold() const
Gets the simplification threshold of the vector layer managed.
void setMaximumScale(float maximumScale)
Sets the maximum scale at which the layer should be simplified.
void setSimplifyAlgorithm(Qgis::VectorSimplificationAlgorithm simplifyAlgorithm)
Sets the local simplification algorithm of the vector layer managed.
@ 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
QList< int > QgsAttributeList
#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.