30 #include <QPainterPath>
32 #include <QProgressDialog>
36 #include <QStringBuilder>
38 #include <QUndoCommand>
111 #ifdef TESTPROVIDERLIB
117 const QString &qmlStyle,
118 const QString &sldStyle,
119 const QString &styleName,
120 const QString &styleDescription,
121 const QString &uiFileContent,
135 QStringList &descriptions,
153 const QString &baseName,
154 const QString &providerKey,
159 , mAuxiliaryLayer( nullptr )
160 , mAuxiliaryLayerKey( QString() )
161 , mReadExtentFromXml( options.readExtentFromXml )
171 mGeometryOptions = qgis::make_unique<QgsGeometryOptions>();
175 mStoredExpressionManager->setParent(
this );
178 mJoinBuffer->setParent(
this );
183 if ( !vectorLayerPath.isEmpty() && !
mProviderKey.isEmpty() )
191 mAttributeAliasMap.insert(
field.
name(), QString() );
197 if ( !mTemporalProperties->
isActive() )
216 mSimplifyMethod.
setThreshold( settings.
value( QStringLiteral(
"qgis/simplifyDrawingTol" ), mSimplifyMethod.
threshold() ).toFloat() );
228 delete mDataProvider;
231 delete mExpressionFieldBuffer;
233 delete mDiagramLayerSettings;
234 delete mDiagramRenderer;
239 delete mConditionalStyles;
240 delete mStoredExpressionManager;
242 if ( mFeatureCounter )
243 mFeatureCounter->
cancel();
245 qDeleteAll( mRendererGenerators );
271 QList<QgsVectorLayerJoinInfo> joins =
vectorJoins();
272 const auto constJoins = joins;
291 for (
const QgsAction &action : constActions )
328 auto constraintIt = constraints.constBegin();
329 for ( ; constraintIt != constraints.constEnd(); ++ constraintIt )
405 p.setPen( QColor( 50, 100, 120, 200 ) );
406 p.setBrush( QColor( 200, 200, 210, 120 ) );
407 p.drawEllipse( x - m, y - m, m * 2 + 1, m * 2 + 1 );
411 p.setPen( QColor( 255, 0, 0 ) );
412 p.drawLine( x - m, y + m, x + m, y - m );
413 p.drawLine( x - m, y - m, x + m, y + m );
419 mSelectedFeatureIds.insert( fid );
420 mPreviousSelectedFeatureIds.clear();
427 mSelectedFeatureIds.unite( featureIds );
428 mPreviousSelectedFeatureIds.clear();
435 mSelectedFeatureIds.remove( fid );
436 mPreviousSelectedFeatureIds.clear();
443 mSelectedFeatureIds.subtract( featureIds );
444 mPreviousSelectedFeatureIds.clear();
457 .setFilterRect( rect )
459 .setNoAttributes() );
464 newSelection << feat.
id();
493 newSelection << feat.
id();
515 bool matches = exp.
evaluate( &context ).toBool();
519 newSelection << feat.
id();
523 newSelection << feat.
id();
542 newSelection = mSelectedFeatureIds + ids;
546 newSelection = mSelectedFeatureIds - ids;
550 newSelection = mSelectedFeatureIds.intersect( ids );
554 QgsFeatureIds deselectedFeatures = mSelectedFeatureIds - newSelection;
555 mSelectedFeatureIds = newSelection;
556 mPreviousSelectedFeatureIds.clear();
564 if ( !intersectingIds.isEmpty() )
566 QgsDebugMsgLevel( QStringLiteral(
"Trying to select and deselect the same item at the same time. Unsure what to do. Selecting dubious items." ), 3 );
569 mSelectedFeatureIds -= deselectIds;
570 mSelectedFeatureIds += selectIds;
571 mPreviousSelectedFeatureIds.clear();
579 ids.subtract( mSelectedFeatureIds );
594 .setFilterRect( rect )
596 .setNoAttributes() );
604 if ( mSelectedFeatureIds.contains( fet.
id() ) )
606 deselectIds << fet.
id();
610 selectIds << fet.
id();
619 if ( mSelectedFeatureIds.isEmpty() )
624 mPreviousSelectedFeatureIds = previous;
629 if ( mPreviousSelectedFeatureIds.isEmpty() || !mSelectedFeatureIds.empty() )
637 return mDataProvider;
642 return mDataProvider;
647 return mTemporalProperties;
652 if (
isValid() && mDataProvider && mDataProvider->
encoding() != encoding )
661 delete mDiagramRenderer;
662 mDiagramRenderer = r;
679 if ( !
isValid() || !
isSpatial() || mSelectedFeatureIds.isEmpty() || !mDataProvider )
691 .setFilterFids( mSelectedFeatureIds )
692 .setNoAttributes() );
705 .setNoAttributes() );
709 if ( mSelectedFeatureIds.contains( fet.
id() ) )
720 if ( retval.
width() == 0.0 || retval.
height() == 0.0 )
729 retval.
set( -1.0, -1.0, 1.0, 1.0 );
738 return mLabelsEnabled &&
static_cast< bool >( mLabeling );
743 mLabelsEnabled = enabled;
748 if ( !mDiagramRenderer || !mDiagramLayerSettings )
751 QList<QgsDiagramSettings> settingList = mDiagramRenderer->
diagramSettings();
752 if ( !settingList.isEmpty() )
754 return settingList.at( 0 ).enabled;
761 if ( !mSymbolFeatureCounted )
764 return mSymbolFeatureCountMap.value( legendKey, -1 );
769 if ( !mSymbolFeatureCounted )
772 return mSymbolFeatureIdMap.value( legendKey,
QgsFeatureIds() );
776 if ( ( mSymbolFeatureCounted || mFeatureCounter ) && !( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
777 return mFeatureCounter;
779 mSymbolFeatureCountMap.clear();
780 mSymbolFeatureIdMap.clear();
785 return mFeatureCounter;
787 if ( !mDataProvider )
790 return mFeatureCounter;
795 return mFeatureCounter;
798 if ( !mFeatureCounter || ( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
801 connect( mFeatureCounter, &
QgsTask::taskCompleted,
this, &QgsVectorLayer::onFeatureCounterCompleted, Qt::UniqueConnection );
802 connect( mFeatureCounter, &
QgsTask::taskTerminated,
this, &QgsVectorLayer::onFeatureCounterTerminated, Qt::UniqueConnection );
806 return mFeatureCounter;
812 if ( force || !mReadExtentFromXml || ( mReadExtentFromXml && mXmlExtent.
isNull() ) )
813 mValidExtent =
false;
824 if ( !mDefaultValueOnUpdateFields.isEmpty() )
829 int size = mFields.
size();
830 for (
int idx : qgis::as_const( mDefaultValueOnUpdateFields ) )
832 if ( idx < 0 || idx >= size )
849 if ( !mValidExtent && mLazyExtent && mDataProvider && !mDataProvider->
hasMetadata() && mReadExtentFromXml && !mXmlExtent.
isNull() )
856 if ( !mValidExtent && mLazyExtent && mDataProvider && mDataProvider->
isValid() )
873 if ( !
isValid() || !mDataProvider )
875 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
897 if ( it->hasGeometry() )
908 .setNoAttributes() );
943 if ( !
isValid() || !mDataProvider )
945 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
946 return customProperty( QStringLiteral(
"storedSubsetString" ) ).toString();
953 if ( !
isValid() || !mDataProvider )
955 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider or while editing" ), 3 );
959 else if ( mEditBuffer )
988 double maximumSimplificationScale = mSimplifyMethod.
maximumScale();
991 return !( maximumSimplificationScale > 1 && renderContext.
rendererScale() <= maximumSimplificationScale );
998 return mConditionalStyles;
1003 if ( !
isValid() || !mDataProvider )
1021 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1025 if ( mGeometryOptions->isActive() )
1028 mGeometryOptions->apply( geom );
1032 bool success = mEditBuffer->
addFeature( feature );
1039 success = mJoinBuffer->
addFeature( feature );
1047 if ( !mEditBuffer || !mDataProvider )
1053 if ( currentFeature.
isValid() )
1055 bool hasChanged =
false;
1056 bool hasError =
false;
1068 QgsDebugMsgLevel( QStringLiteral(
"geometry of feature %1 could not be changed." ).arg( updatedFeature.
id() ), 3 );
1075 for (
int attr = 0; attr < fa.count(); ++attr )
1077 if ( fa.at( attr ) != ca.at( attr ) )
1085 QgsDebugMsgLevel( QStringLiteral(
"attribute %1 of feature %2 could not be changed." ).arg( attr ).arg( updatedFeature.
id() ), 3 );
1090 if ( hasChanged && !mDefaultValueOnUpdateFields.isEmpty() && !skipDefaultValues )
1091 updateDefaultValues( updatedFeature.
id(), updatedFeature );
1097 QgsDebugMsgLevel( QStringLiteral(
"feature %1 could not be retrieved" ).arg( updatedFeature.
id() ), 3 );
1105 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1109 bool result = utils.
insertVertex( x, y, atFeatureId, beforeVertex );
1118 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1122 bool result = utils.
insertVertex( point, atFeatureId, beforeVertex );
1131 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1135 bool result = utils.
moveVertex( x, y, atFeatureId, atVertex );
1144 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1148 bool result = utils.
moveVertex( p, atFeatureId, atVertex );
1157 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1182 int count = mSelectedFeatureIds.size();
1196 *deletedCount = deleted;
1199 return deleted == count;
1202 static const QgsPointSequence vectorPointXY2pointSequence(
const QVector<QgsPointXY> &points )
1205 pts.reserve( points.size() );
1206 QVector<const QgsPointXY>::iterator it = points.constBegin();
1207 while ( it != points.constEnd() )
1216 return addRing( vectorPointXY2pointSequence( ring ), featureId );
1221 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1222 return QgsGeometry::OperationResult::LayerNotEditable;
1228 if ( !mSelectedFeatureIds.isEmpty() )
1230 result = utils.
addRing( ring, mSelectedFeatureIds, featureId );
1233 if ( result != QgsGeometry::OperationResult::Success )
1244 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1247 return QgsGeometry::OperationResult::LayerNotEditable;
1252 return QgsGeometry::OperationResult::InvalidInputGeometryType;
1258 return QgsGeometry::OperationResult::AddRingNotClosed;
1265 if ( !mSelectedFeatureIds.isEmpty() )
1267 result = utils.
addRing(
static_cast< QgsCurve *
>( ring->
clone() ), mSelectedFeatureIds, featureId );
1270 if ( result != QgsGeometry::OperationResult::Success )
1283 pts.reserve( points.size() );
1284 for ( QList<QgsPointXY>::const_iterator it = points.constBegin(); it != points.constEnd() ; ++it )
1293 return addPart( vectorPointXY2pointSequence( points ) );
1298 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1299 return QgsGeometry::OperationResult::LayerNotEditable;
1303 if ( mSelectedFeatureIds.empty() )
1306 return QgsGeometry::OperationResult::SelectionIsEmpty;
1308 else if ( mSelectedFeatureIds.size() > 1 )
1311 return QgsGeometry::OperationResult::SelectionIsGreaterThanOne;
1317 if ( result == QgsGeometry::OperationResult::Success )
1324 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1325 return QgsGeometry::OperationResult::LayerNotEditable;
1329 if ( mSelectedFeatureIds.empty() )
1332 return QgsGeometry::OperationResult::SelectionIsEmpty;
1334 else if ( mSelectedFeatureIds.size() > 1 )
1337 return QgsGeometry::OperationResult::SelectionIsGreaterThanOne;
1343 if ( result == QgsGeometry::OperationResult::Success )
1350 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1351 return QgsGeometry::OperationResult::LayerNotEditable;
1356 if ( result == QgsGeometry::OperationResult::Success )
1363 return splitParts( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1367 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1368 return QgsGeometry::OperationResult::LayerNotEditable;
1371 return utils.
splitParts( splitLine, topologicalEditing );
1375 return splitFeatures( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1382 bool preserveCircular =
false;
1383 return splitFeatures( &splitLineString, topologyTestPoints, preserveCircular, topologicalEditing );
1388 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1389 return QgsGeometry::OperationResult::LayerNotEditable;
1392 return utils.
splitFeatures( curve, topologyTestPoints, preserveCircular, topologicalEditing );
1397 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1411 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1420 if ( !
mValid || !mEditBuffer || !mDataProvider )
1438 if ( !
isValid() || !mDataProvider )
1495 if ( mDataProvider )
1507 if ( !mRenderer->
accept( visitor ) )
1511 if ( !mLabeling->
accept( visitor ) )
1522 QDomNode pkeyNode = layer_node.namedItem( QStringLiteral(
"provider" ) );
1524 if ( pkeyNode.isNull() )
1530 QDomElement pkeyElt = pkeyNode.toElement();
1540 else if (
mDataSource.contains( QLatin1String(
"dbname=" ) ) )
1550 QgsDataProvider::ReadFlags
flags;
1561 const QDomElement elem = layer_node.toElement();
1564 if ( elem.hasAttribute( QStringLiteral(
"wkbType" ) ) )
1565 mWkbType =
qgsEnumKeyToValue( elem.attribute( QStringLiteral(
"wkbType" ) ), mWkbType );
1568 QDomElement pkeyElem = pkeyNode.toElement();
1569 if ( !pkeyElem.isNull() )
1571 QString encodingString = pkeyElem.attribute( QStringLiteral(
"encoding" ) );
1572 if ( mDataProvider && !encodingString.isEmpty() )
1579 mJoinBuffer->
readXml( layer_node );
1584 mSetLegendFromStyle =
false;
1594 QDomNode depsNode = layer_node.namedItem( QStringLiteral(
"dataDependencies" ) );
1595 QDomNodeList depsNodes = depsNode.childNodes();
1596 QSet<QgsMapLayerDependency> sources;
1597 for (
int i = 0; i < depsNodes.count(); i++ )
1599 QString
source = depsNodes.at( i ).toElement().attribute( QStringLiteral(
"id" ) );
1604 if ( !mSetLegendFromStyle )
1608 if ( mReadExtentFromXml )
1610 QDomNode extentNode = layer_node.namedItem( QStringLiteral(
"extent" ) );
1611 if ( !extentNode.isNull() )
1618 const QDomNode asNode = layer_node.namedItem( QStringLiteral(
"auxiliaryLayer" ) );
1619 const QDomElement asElem = asNode.toElement();
1620 if ( !asElem.isNull() )
1622 mAuxiliaryLayerKey = asElem.attribute( QStringLiteral(
"key" ) );
1626 mServerProperties->readXml( layer_node );
1636 setDataSource( dataSource, baseName, provider, options, loadDefaultStyleFlag );
1646 QgsDataProvider::ReadFlags
flags = QgsDataProvider::ReadFlags();
1651 setDataProvider( provider, options,
flags );
1665 std::unique_ptr< QgsScopedRuntimeProfile > profile;
1667 profile = qgis::make_unique< QgsScopedRuntimeProfile >( tr(
"Load layer style" ), QStringLiteral(
"projectload" ) );
1669 bool defaultLoadedFlag =
false;
1674 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->
createRenderer() );
1675 if ( defaultRenderer )
1677 defaultLoadedFlag =
true;
1684 mSetLegendFromStyle =
false;
1688 if ( !defaultLoadedFlag && loadDefaultStyleFlag )
1694 if ( !defaultLoadedFlag &&
isSpatial() )
1700 if ( !mSetLegendFromStyle )
1705 std::unique_ptr< QgsAbstractVectorLayerLabeling > defaultLabeling( mDataProvider->
createLabeling() );
1706 if ( defaultLabeling )
1723 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->
createRenderer() );
1724 if ( defaultRenderer )
1739 delete mDataProvider;
1746 if ( provider.compare( QLatin1String(
"postgres" ) ) == 0 )
1748 const QString checkUnicityKey { QStringLiteral(
"checkPrimaryKeyUnicity" ) };
1750 if ( ! uri.hasParam( checkUnicityKey ) )
1752 uri.setParam( checkUnicityKey, mReadExtentFromXml ?
"0" :
"1" );
1757 std::unique_ptr< QgsScopedRuntimeProfile > profile;
1759 profile = qgis::make_unique< QgsScopedRuntimeProfile >( tr(
"Create %1 provider" ).arg( provider ), QStringLiteral(
"projectload" ) );
1762 if ( !mDataProvider )
1769 mDataProvider->setParent(
this );
1772 QgsDebugMsgLevel( QStringLiteral(
"Instantiated the data provider plugin" ), 2 );
1782 profile->switchTask( tr(
"Read layer metadata" ) );
1786 QgsDebugMsgLevel( QStringLiteral(
"Set Data provider QgsLayerMetadata identifier[%1]" ).arg(
metadata().identifier() ), 4 );
1793 mWkbType = mDataProvider->
wkbType();
1796 profile->switchTask( tr(
"Read layer fields" ) );
1807 QRegExp reg( R
"lit("[^"]+"\."([^"] + )"( \([^)]+\))?)lit" );
1808 if ( reg.indexIn(
name() ) >= 0 )
1810 QStringList stuff = reg.capturedTexts();
1811 QString lName = stuff[1];
1815 QMap<QString, QgsMapLayer *>::const_iterator it;
1816 for ( it = layers.constBegin(); it != layers.constEnd() && ( *it )->name() != lName; ++it )
1819 if ( it != layers.constEnd() && stuff.size() > 2 )
1821 lName +=
'.' + stuff[2].mid( 2, stuff[2].length() - 3 );
1824 if ( !lName.isEmpty() )
1834 else if ( provider == QLatin1String(
"ogr" ) )
1838 if (
mDataSource.right( 10 ) == QLatin1String(
"|layerid=0" ) )
1841 else if ( provider == QLatin1String(
"memory" ) )
1858 QDomDocument &document,
1863 QDomElement mapLayerNode = layer_node.toElement();
1865 if ( mapLayerNode.isNull() || (
"maplayer" != mapLayerNode.nodeName() ) )
1878 if ( mDataProvider )
1880 QDomElement provider = document.createElement( QStringLiteral(
"provider" ) );
1881 provider.setAttribute( QStringLiteral(
"encoding" ), mDataProvider->
encoding() );
1882 QDomText providerText = document.createTextNode(
providerType() );
1883 provider.appendChild( providerText );
1884 layer_node.appendChild( provider );
1888 mJoinBuffer->
writeXml( layer_node, document );
1891 QDomElement dependenciesElement = document.createElement( QStringLiteral(
"layerDependencies" ) );
1897 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
1898 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
1899 dependenciesElement.appendChild( depElem );
1901 layer_node.appendChild( dependenciesElement );
1904 QDomElement dataDependenciesElement = document.createElement( QStringLiteral(
"dataDependencies" ) );
1909 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
1910 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
1911 dataDependenciesElement.appendChild( depElem );
1913 layer_node.appendChild( dataDependenciesElement );
1916 mExpressionFieldBuffer->
writeXml( layer_node, document );
1921 QDomElement asElem = document.createElement( QStringLiteral(
"auxiliaryLayer" ) );
1922 if ( mAuxiliaryLayer )
1924 const QString pkField = mAuxiliaryLayer->joinInfo().targetFieldName();
1925 asElem.setAttribute( QStringLiteral(
"key" ), pkField );
1927 layer_node.appendChild( asElem );
1930 mServerProperties->writeXml( layer_node, document );
1934 return writeSymbology( layer_node, document, errorMsg, context );
1951 QStringList theURIParts = src.split(
'|' );
1953 src = theURIParts.join( QLatin1Char(
'|' ) );
1957 QStringList theURIParts = src.split(
'?' );
1959 src = theURIParts.join( QLatin1Char(
'?' ) );
1961 else if (
providerType() == QLatin1String(
"delimitedtext" ) )
1963 QUrl urlSource = QUrl::fromEncoded( src.toLatin1() );
1965 urlDest.setQuery( urlSource.query() );
1966 src = QString::fromLatin1( urlDest.toEncoded() );
1968 else if (
providerType() == QLatin1String(
"memory" ) )
1973 else if (
providerType() == QLatin1String(
"virtual" ) )
1975 QUrl urlSource = QUrl::fromEncoded( src.toLatin1() );
1976 QStringList theURIParts;
1978 QUrlQuery query = QUrlQuery( urlSource.query() );
1979 QList<QPair<QString, QString> > queryItems = query.queryItems();
1981 for (
int i = 0; i < queryItems.size(); i++ )
1983 QString key = queryItems.at( i ).first;
1984 QString value = queryItems.at( i ).second;
1985 if ( key == QLatin1String(
"layer" ) )
1988 theURIParts = value.split(
':' );
1989 theURIParts[1] = QUrl::fromPercentEncoding( theURIParts[1].toUtf8() );
1991 if ( theURIParts[0] == QLatin1String(
"delimitedtext" ) )
1993 QUrl urlSource = QUrl( theURIParts[1] );
1995 urlDest.setQuery( urlSource.query() );
1996 theURIParts[1] = QUrl::toPercentEncoding( urlDest.toString(), QByteArray(
"" ), QByteArray(
":" ) );
2001 theURIParts[1] = QUrl::toPercentEncoding( theURIParts[1] );
2004 queryItems[i].second = theURIParts.join( QLatin1Char(
':' ) ) ;
2008 query.setQueryItems( queryItems );
2010 QUrl urlDest = QUrl( urlSource );
2011 urlDest.setQuery( query.query() );
2012 src = QString::fromLatin1( urlDest.toEncoded() );
2026 if ( provider == QLatin1String(
"spatialite" ) )
2032 else if ( provider == QLatin1String(
"ogr" ) )
2034 QStringList theURIParts = src.split(
'|' );
2036 src = theURIParts.join( QLatin1Char(
'|' ) );
2038 else if ( provider == QLatin1String(
"gpx" ) )
2040 QStringList theURIParts = src.split(
'?' );
2042 src = theURIParts.join( QLatin1Char(
'?' ) );
2044 else if ( provider == QLatin1String(
"delimitedtext" ) )
2046 QUrl urlSource = QUrl::fromEncoded( src.toLatin1() );
2048 if ( !src.startsWith( QLatin1String(
"file:" ) ) )
2050 QUrl file = QUrl::fromLocalFile( src.left( src.indexOf(
'?' ) ) );
2051 urlSource.setScheme( QStringLiteral(
"file" ) );
2052 urlSource.setPath( file.path() );
2055 QUrl urlDest = QUrl::fromLocalFile( context.
pathResolver().
readPath( urlSource.toLocalFile() ) );
2056 urlDest.setQuery( urlSource.query() );
2057 src = QString::fromLatin1( urlDest.toEncoded() );
2059 else if ( provider == QLatin1String(
"virtual" ) )
2061 QUrl urlSource = QUrl::fromEncoded( src.toLatin1() );
2062 QStringList theURIParts;
2064 QUrlQuery query = QUrlQuery( urlSource.query() );
2065 QList<QPair<QString, QString> > queryItems = query.queryItems();
2067 for (
int i = 0; i < queryItems.size(); i++ )
2069 QString key = queryItems.at( i ).first;
2070 QString value = queryItems.at( i ).second;
2071 if ( key == QLatin1String(
"layer" ) )
2074 theURIParts = value.split(
':' );
2075 theURIParts[1] = QUrl::fromPercentEncoding( theURIParts[1].toUtf8() );
2077 if ( theURIParts[0] == QLatin1String(
"delimitedtext" ) )
2079 QUrl urlSource = QUrl( theURIParts[1] );
2081 if ( !theURIParts[1].startsWith( QLatin1String(
"file:" ) ) )
2083 QUrl file = QUrl::fromLocalFile( theURIParts[1].left( theURIParts[1].indexOf(
'?' ) ) );
2084 urlSource.setScheme( QStringLiteral(
"file" ) );
2085 urlSource.setPath( file.path() );
2088 QUrl urlDest = QUrl::fromLocalFile( context.
pathResolver().
readPath( urlSource.toLocalFile() ) );
2089 urlDest.setQuery( urlSource.query() );
2091 theURIParts[1] = urlDest.toString();
2098 theURIParts[1] = QUrl::toPercentEncoding( theURIParts[1] );
2099 queryItems[i].second = theURIParts.join( QLatin1Char(
':' ) ) ;
2103 query.setQueryItems( queryItems );
2105 QUrl urlDest = QUrl( urlSource );
2106 urlDest.setQuery( query.query() );
2107 src = QString::fromLatin1( urlDest.toEncoded() );
2131 if ( categories.testFlag(
Fields ) )
2133 if ( !mExpressionFieldBuffer )
2135 mExpressionFieldBuffer->
readXml( layerNode );
2146 QDomNodeList referencedLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencedLayers" ) );
2147 if ( referencedLayersNodeList.size() > 0 )
2149 const QDomNodeList relationNodes { referencedLayersNodeList.at( 0 ).childNodes() };
2150 for (
int i = 0; i < relationNodes.length(); ++i )
2152 const QDomElement relationElement = relationNodes.at( i ).toElement();
2159 QDomNodeList referencingLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencingLayers" ) );
2160 if ( referencingLayersNodeList.size() > 0 )
2162 const QDomNodeList relationNodes { referencingLayersNodeList.at( 0 ).childNodes() };
2163 for (
int i = 0; i < relationNodes.length(); ++i )
2165 const QDomElement relationElement = relationNodes.at( i ).toElement();
2171 QDomElement layerElement = layerNode.toElement();
2175 readStyle( layerNode, errorMessage, context, categories );
2177 if ( categories.testFlag(
MapTips ) )
2178 mMapTipTemplate = layerNode.namedItem( QStringLiteral(
"mapTip" ) ).toElement().text();
2181 mDisplayExpression = layerNode.namedItem( QStringLiteral(
"previewExpression" ) ).toElement().text();
2184 QString
displayField = layerNode.namedItem( QStringLiteral(
"displayfield" ) ).toElement().text();
2188 if ( mMapTipTemplate.isEmpty() && categories.testFlag(
MapTips ) )
2198 if ( categories.testFlag(
Actions ) )
2199 mActions->
readXml( layerNode );
2201 if ( categories.testFlag(
Fields ) )
2203 mAttributeAliasMap.clear();
2204 QDomNode aliasesNode = layerNode.namedItem( QStringLiteral(
"aliases" ) );
2205 if ( !aliasesNode.isNull() )
2207 QDomElement aliasElem;
2209 QDomNodeList aliasNodeList = aliasesNode.toElement().elementsByTagName( QStringLiteral(
"alias" ) );
2210 for (
int i = 0; i < aliasNodeList.size(); ++i )
2212 aliasElem = aliasNodeList.at( i ).toElement();
2215 if ( aliasElem.hasAttribute( QStringLiteral(
"field" ) ) )
2217 field = aliasElem.attribute( QStringLiteral(
"field" ) );
2221 int index = aliasElem.attribute( QStringLiteral(
"index" ) ).toInt();
2223 if ( index >= 0 && index <
fields().count() )
2229 if ( !aliasElem.attribute( QStringLiteral(
"name" ) ).isEmpty() )
2232 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), aliasElem.attribute( QStringLiteral(
"name" ) ) );
2233 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " + aliasElem.attribute( QStringLiteral(
"name" ) ), 3 );
2238 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ),
field );
2239 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " +
field, 3 );
2241 if ( alias == aliasElem.attribute( QStringLiteral(
"field" ) ) )
2245 QgsDebugMsgLevel(
"field " +
field +
" origalias " + aliasElem.attribute( QStringLiteral(
"name" ) ) +
" trans " + alias, 3 );
2246 mAttributeAliasMap.insert(
field, alias );
2251 mDefaultExpressionMap.clear();
2252 QDomNode defaultsNode = layerNode.namedItem( QStringLiteral(
"defaults" ) );
2253 if ( !defaultsNode.isNull() )
2255 QDomNodeList defaultNodeList = defaultsNode.toElement().elementsByTagName( QStringLiteral(
"default" ) );
2256 for (
int i = 0; i < defaultNodeList.size(); ++i )
2258 QDomElement defaultElem = defaultNodeList.at( i ).toElement();
2260 QString
field = defaultElem.attribute( QStringLiteral(
"field" ), QString() );
2261 QString expression = defaultElem.attribute( QStringLiteral(
"expression" ), QString() );
2262 bool applyOnUpdate = defaultElem.attribute( QStringLiteral(
"applyOnUpdate" ), QStringLiteral(
"0" ) ) == QLatin1String(
"1" );
2263 if (
field.isEmpty() || expression.isEmpty() )
2271 mFieldConstraints.clear();
2272 mFieldConstraintStrength.clear();
2273 QDomNode constraintsNode = layerNode.namedItem( QStringLiteral(
"constraints" ) );
2274 if ( !constraintsNode.isNull() )
2276 QDomNodeList constraintNodeList = constraintsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2277 for (
int i = 0; i < constraintNodeList.size(); ++i )
2279 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2281 QString
field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2282 int constraints = constraintElem.attribute( QStringLiteral(
"constraints" ), QStringLiteral(
"0" ) ).toInt();
2283 if (
field.isEmpty() || constraints == 0 )
2286 mFieldConstraints.insert(
field,
static_cast< QgsFieldConstraints::Constraints
>( constraints ) );
2288 int uniqueStrength = constraintElem.attribute( QStringLiteral(
"unique_strength" ), QStringLiteral(
"1" ) ).toInt();
2289 int notNullStrength = constraintElem.attribute( QStringLiteral(
"notnull_strength" ), QStringLiteral(
"1" ) ).toInt();
2290 int expStrength = constraintElem.attribute( QStringLiteral(
"exp_strength" ), QStringLiteral(
"1" ) ).toInt();
2297 mFieldConstraintExpressions.clear();
2298 QDomNode constraintExpressionsNode = layerNode.namedItem( QStringLiteral(
"constraintExpressions" ) );
2299 if ( !constraintExpressionsNode.isNull() )
2301 QDomNodeList constraintNodeList = constraintExpressionsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2302 for (
int i = 0; i < constraintNodeList.size(); ++i )
2304 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2306 QString
field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2307 QString exp = constraintElem.attribute( QStringLiteral(
"exp" ), QString() );
2308 QString desc = constraintElem.attribute( QStringLiteral(
"desc" ), QString() );
2309 if (
field.isEmpty() || exp.isEmpty() )
2312 mFieldConstraintExpressions.insert(
field, qMakePair( exp, desc ) );
2320 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
2322 QDomElement widgetsElem = layerNode.namedItem( QStringLiteral(
"fieldConfiguration" ) ).toElement();
2323 QDomNodeList fieldConfigurationElementList = widgetsElem.elementsByTagName( QStringLiteral(
"field" ) );
2324 for (
int i = 0; i < fieldConfigurationElementList.size(); ++i )
2326 const QDomElement fieldConfigElement = fieldConfigurationElementList.at( i ).toElement();
2327 const QDomElement fieldWidgetElement = fieldConfigElement.elementsByTagName( QStringLiteral(
"editWidget" ) ).at( 0 ).toElement();
2329 QString fieldName = fieldConfigElement.attribute( QStringLiteral(
"name" ) );
2331 if ( categories.testFlag(
Fields ) )
2335 if ( categories.testFlag(
Forms ) )
2337 const QString widgetType = fieldWidgetElement.attribute( QStringLiteral(
"type" ) );
2338 const QDomElement cfgElem = fieldConfigElement.elementsByTagName( QStringLiteral(
"config" ) ).at( 0 ).toElement();
2339 const QDomElement optionsElem = cfgElem.childNodes().at( 0 ).toElement();
2341 if ( widgetType == QLatin1String(
"ValueRelation" ) )
2343 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() );
2346 mFieldWidgetSetups[fieldName] = setup;
2353 if ( categories.testFlag(
Fields ) )
2355 const QList<QPair<QString, QgsField::ConfigurationFlag>> legacyConfig
2360 for (
const auto &config : legacyConfig )
2362 QDomNode excludeNode = layerNode.namedItem( config.first );
2363 if ( !excludeNode.isNull() )
2365 QDomNodeList attributeNodeList = excludeNode.toElement().elementsByTagName( QStringLiteral(
"attribute" ) );
2366 for (
int i = 0; i < attributeNodeList.size(); ++i )
2368 QString fieldName = attributeNodeList.at( i ).toElement().text();
2369 if ( !mFieldConfigurationFlags.contains( fieldName ) )
2370 mFieldConfigurationFlags[fieldName] = config.second;
2372 mFieldConfigurationFlags[fieldName].setFlag( config.second,
true );
2379 mGeometryOptions->readXml( layerNode.namedItem( QStringLiteral(
"geometryOptions" ) ) );
2381 if ( categories.testFlag(
Forms ) )
2382 mEditFormConfig.readXml( layerNode, context );
2386 mAttributeTableConfig.
readXml( layerNode );
2387 mConditionalStyles->
readXml( layerNode, context );
2388 mStoredExpressionManager->
readXml( layerNode );
2394 QDomElement mapLayerNode = layerNode.toElement();
2396 && mapLayerNode.attribute( QStringLiteral(
"readOnly" ), QStringLiteral(
"0" ) ).toInt() == 1 )
2401 if ( categories.testFlag(
Legend ) )
2403 const QDomElement legendElem = layerNode.firstChildElement( QStringLiteral(
"legend" ) );
2404 if ( !legendElem.isNull() )
2409 mSetLegendFromStyle =
true;
2431 if ( !rendererElement.isNull() )
2451 if ( categories.testFlag(
Labeling ) )
2453 QDomElement labelingElement = node.firstChildElement( QStringLiteral(
"labeling" ) );
2455 if ( labelingElement.isNull() ||
2456 ( labelingElement.attribute( QStringLiteral(
"type" ) ) == QLatin1String(
"simple" ) && labelingElement.firstChildElement( QStringLiteral(
"settings" ) ).isNull() ) )
2464 labeling = readLabelingFromCustomProperties();
2472 if ( node.toElement().hasAttribute( QStringLiteral(
"labelsEnabled" ) ) )
2473 mLabelsEnabled = node.toElement().attribute( QStringLiteral(
"labelsEnabled" ) ).toInt();
2475 mLabelsEnabled =
true;
2481 QDomNode blendModeNode = node.namedItem( QStringLiteral(
"blendMode" ) );
2482 if ( !blendModeNode.isNull() )
2484 QDomElement e = blendModeNode.toElement();
2489 QDomNode featureBlendModeNode = node.namedItem( QStringLiteral(
"featureBlendMode" ) );
2490 if ( !featureBlendModeNode.isNull() )
2492 QDomElement e = featureBlendModeNode.toElement();
2500 QDomNode layerTransparencyNode = node.namedItem( QStringLiteral(
"layerTransparency" ) );
2501 if ( !layerTransparencyNode.isNull() )
2503 QDomElement e = layerTransparencyNode.toElement();
2504 setOpacity( 1.0 - e.text().toInt() / 100.0 );
2506 QDomNode layerOpacityNode = node.namedItem( QStringLiteral(
"layerOpacity" ) );
2507 if ( !layerOpacityNode.isNull() )
2509 QDomElement e = layerOpacityNode.toElement();
2513 const bool hasScaleBasedVisibiliy { node.attributes().namedItem( QStringLiteral(
"hasScaleBasedVisibilityFlag" ) ).nodeValue() ==
'1' };
2516 const double maxScale { node.attributes().namedItem( QStringLiteral(
"maxScale" ) ).nodeValue().toDouble( &ok ) };
2521 const double minScale { node.attributes().namedItem( QStringLiteral(
"minScale" ) ).nodeValue().toDouble( &ok ) };
2530 QDomElement e = node.toElement();
2533 mSimplifyMethod.
setSimplifyHints(
static_cast< QgsVectorSimplifyMethod::SimplifyHints
>( e.attribute( QStringLiteral(
"simplifyDrawingHints" ), QStringLiteral(
"1" ) ).toInt() ) );
2535 mSimplifyMethod.
setThreshold( e.attribute( QStringLiteral(
"simplifyDrawingTol" ), QStringLiteral(
"1" ) ).toFloat() );
2536 mSimplifyMethod.
setForceLocalOptimization( e.attribute( QStringLiteral(
"simplifyLocal" ), QStringLiteral(
"1" ) ).toInt() );
2537 mSimplifyMethod.
setMaximumScale( e.attribute( QStringLiteral(
"simplifyMaxScale" ), QStringLiteral(
"1" ) ).toFloat() );
2541 if ( categories.testFlag(
Diagrams ) )
2543 delete mDiagramRenderer;
2544 mDiagramRenderer =
nullptr;
2545 QDomElement singleCatDiagramElem = node.firstChildElement( QStringLiteral(
"SingleCategoryDiagramRenderer" ) );
2546 if ( !singleCatDiagramElem.isNull() )
2549 mDiagramRenderer->
readXml( singleCatDiagramElem, context );
2551 QDomElement linearDiagramElem = node.firstChildElement( QStringLiteral(
"LinearlyInterpolatedDiagramRenderer" ) );
2552 if ( !linearDiagramElem.isNull() )
2554 if ( linearDiagramElem.hasAttribute( QStringLiteral(
"classificationAttribute" ) ) )
2557 int idx = linearDiagramElem.attribute( QStringLiteral(
"classificationAttribute" ) ).toInt();
2558 if ( idx >= 0 && idx < mFields.
count() )
2559 linearDiagramElem.setAttribute( QStringLiteral(
"classificationField" ), mFields.
at( idx ).
name() );
2563 mDiagramRenderer->
readXml( linearDiagramElem, context );
2566 if ( mDiagramRenderer )
2568 QDomElement diagramSettingsElem = node.firstChildElement( QStringLiteral(
"DiagramLayerSettings" ) );
2569 if ( !diagramSettingsElem.isNull() )
2571 bool oldXPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"xPosColumn" ) );
2572 bool oldYPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"yPosColumn" ) );
2573 bool oldShow = diagramSettingsElem.hasAttribute( QStringLiteral(
"showColumn" ) );
2574 if ( oldXPos || oldYPos || oldShow )
2580 int xPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"xPosColumn" ) ).toInt();
2581 if ( xPosColumn >= 0 && xPosColumn < mFields.
count() )
2586 int yPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"yPosColumn" ) ).toInt();
2587 if ( yPosColumn >= 0 && yPosColumn < mFields.
count() )
2592 int showColumn = diagramSettingsElem.attribute( QStringLiteral(
"showColumn" ) ).toInt();
2593 if ( showColumn >= 0 && showColumn < mFields.
count() )
2596 QDomElement propertiesElem = diagramSettingsElem.ownerDocument().createElement( QStringLiteral(
"properties" ) );
2603 ddp.
writeXml( propertiesElem, defs );
2604 diagramSettingsElem.appendChild( propertiesElem );
2607 delete mDiagramLayerSettings;
2609 mDiagramLayerSettings->
readXml( diagramSettingsElem );
2622 QDomElement layerElement = node.toElement();
2625 ( void )
writeStyle( node, doc, errorMessage, context, categories );
2628 mGeometryOptions->writeXml( node );
2633 if ( !legendElement.isNull() )
2634 node.appendChild( legendElement );
2641 QDomElement referencedLayersElement = doc.createElement( QStringLiteral(
"referencedLayers" ) );
2642 node.appendChild( referencedLayersElement );
2645 for (
const auto &rel : constReferencingRelations )
2654 QDomElement referencingLayersElement = doc.createElement( QStringLiteral(
"referencingLayers" ) );
2655 node.appendChild( referencedLayersElement );
2658 for (
const auto &rel : constReferencedRelations )
2669 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
2671 QDomElement fieldConfigurationElement;
2673 fieldConfigurationElement = doc.createElement( QStringLiteral(
"fieldConfiguration" ) );
2674 node.appendChild( fieldConfigurationElement );
2678 QDomElement fieldElement = doc.createElement( QStringLiteral(
"field" ) );
2679 fieldElement.setAttribute( QStringLiteral(
"name" ),
field.
name() );
2680 fieldConfigurationElement.appendChild( fieldElement );
2682 if ( categories.testFlag(
Fields ) )
2687 if ( categories.testFlag(
Forms ) )
2692 QDomElement editWidgetElement = doc.createElement( QStringLiteral(
"editWidget" ) );
2693 fieldElement.appendChild( editWidgetElement );
2695 QDomElement editWidgetConfigElement = doc.createElement( QStringLiteral(
"config" ) );
2698 editWidgetElement.appendChild( editWidgetConfigElement );
2704 if ( categories.testFlag(
Fields ) )
2707 QDomElement aliasElem = doc.createElement( QStringLiteral(
"aliases" ) );
2710 QDomElement aliasEntryElem = doc.createElement( QStringLiteral(
"alias" ) );
2711 aliasEntryElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2713 aliasEntryElem.setAttribute( QStringLiteral(
"name" ),
field.
alias() );
2714 aliasElem.appendChild( aliasEntryElem );
2716 node.appendChild( aliasElem );
2719 QDomElement defaultsElem = doc.createElement( QStringLiteral(
"defaults" ) );
2722 QDomElement defaultElem = doc.createElement( QStringLiteral(
"default" ) );
2723 defaultElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2726 defaultsElem.appendChild( defaultElem );
2728 node.appendChild( defaultsElem );
2731 QDomElement constraintsElem = doc.createElement( QStringLiteral(
"constraints" ) );
2734 QDomElement constraintElem = doc.createElement( QStringLiteral(
"constraint" ) );
2735 constraintElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2740 constraintsElem.appendChild( constraintElem );
2742 node.appendChild( constraintsElem );
2745 QDomElement constraintExpressionsElem = doc.createElement( QStringLiteral(
"constraintExpressions" ) );
2748 QDomElement constraintExpressionElem = doc.createElement( QStringLiteral(
"constraint" ) );
2749 constraintExpressionElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2752 constraintExpressionsElem.appendChild( constraintExpressionElem );
2754 node.appendChild( constraintExpressionsElem );
2757 if ( !mExpressionFieldBuffer )
2765 mExpressionFieldBuffer->
writeXml( node, doc );
2770 if ( categories.testFlag(
Actions ) )
2775 mAttributeTableConfig.
writeXml( node );
2776 mConditionalStyles->
writeXml( node, doc, context );
2777 mStoredExpressionManager->
writeXml( node );
2780 if ( categories.testFlag(
Forms ) )
2781 mEditFormConfig.writeXml( node, context );
2785 node.toElement().setAttribute( QStringLiteral(
"readOnly" ), mReadOnly );
2790 QDomElement prevExpElem = doc.createElement( QStringLiteral(
"previewExpression" ) );
2791 QDomText prevExpText = doc.createTextNode( mDisplayExpression );
2792 prevExpElem.appendChild( prevExpText );
2793 node.appendChild( prevExpElem );
2797 if ( categories.testFlag(
MapTips ) )
2799 QDomElement mapTipElem = doc.createElement( QStringLiteral(
"mapTip" ) );
2800 QDomText mapTipText = doc.createTextNode( mMapTipTemplate );
2801 mapTipElem.appendChild( mapTipText );
2802 node.toElement().appendChild( mapTipElem );
2811 QDomElement mapLayerNode = node.toElement();
2824 QDomElement rendererElement = mRenderer->
save( doc, context );
2825 node.appendChild( rendererElement );
2829 if ( categories.testFlag(
Labeling ) )
2833 QDomElement labelingElement = mLabeling->
save( doc, context );
2834 node.appendChild( labelingElement );
2836 mapLayerNode.setAttribute( QStringLiteral(
"labelsEnabled" ), mLabelsEnabled ? QStringLiteral(
"1" ) : QStringLiteral(
"0" ) );
2842 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingHints" ), QString::number( mSimplifyMethod.
simplifyHints() ) );
2843 mapLayerNode.setAttribute( QStringLiteral(
"simplifyAlgorithm" ), QString::number( mSimplifyMethod.
simplifyAlgorithm() ) );
2844 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingTol" ), QString::number( mSimplifyMethod.
threshold() ) );
2845 mapLayerNode.setAttribute( QStringLiteral(
"simplifyLocal" ), mSimplifyMethod.
forceLocalOptimization() ? 1 : 0 );
2846 mapLayerNode.setAttribute( QStringLiteral(
"simplifyMaxScale" ), QString::number( mSimplifyMethod.
maximumScale() ) );
2858 QDomElement blendModeElem = doc.createElement( QStringLiteral(
"blendMode" ) );
2860 blendModeElem.appendChild( blendModeText );
2861 node.appendChild( blendModeElem );
2864 QDomElement featureBlendModeElem = doc.createElement( QStringLiteral(
"featureBlendMode" ) );
2866 featureBlendModeElem.appendChild( featureBlendModeText );
2867 node.appendChild( featureBlendModeElem );
2873 QDomElement layerOpacityElem = doc.createElement( QStringLiteral(
"layerOpacity" ) );
2874 QDomText layerOpacityText = doc.createTextNode( QString::number(
opacity() ) );
2875 layerOpacityElem.appendChild( layerOpacityText );
2876 node.appendChild( layerOpacityElem );
2877 mapLayerNode.setAttribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ),
hasScaleBasedVisibility() ? 1 : 0 );
2878 mapLayerNode.setAttribute( QStringLiteral(
"maxScale" ),
maximumScale() );
2879 mapLayerNode.setAttribute( QStringLiteral(
"minScale" ),
minimumScale() );
2882 if ( categories.testFlag(
Diagrams ) && mDiagramRenderer )
2884 mDiagramRenderer->
writeXml( mapLayerNode, doc, context );
2885 if ( mDiagramLayerSettings )
2886 mDiagramLayerSettings->
writeXml( mapLayerNode, doc );
2895 QDomElement nameElem = node.firstChildElement( QStringLiteral(
"Name" ) );
2896 if ( nameElem.isNull() )
2898 errorMessage = QStringLiteral(
"Warning: Name element not found within NamedLayer while it's required." );
2910 readSldLabeling( node );
2917 Q_UNUSED( errorMessage )
2919 QVariantMap localProps = QVariantMap( props );
2928 QDomElement nameNode = doc.createElement( QStringLiteral(
"se:Name" ) );
2929 nameNode.appendChild( doc.createTextNode(
name() ) );
2930 node.appendChild( nameNode );
2932 QDomElement userStyleElem = doc.createElement( QStringLiteral(
"UserStyle" ) );
2933 node.appendChild( userStyleElem );
2935 QDomElement nameElem = doc.createElement( QStringLiteral(
"se:Name" ) );
2936 nameElem.appendChild( doc.createTextNode(
name() ) );
2938 userStyleElem.appendChild( nameElem );
2940 QDomElement featureTypeStyleElem = doc.createElement( QStringLiteral(
"se:FeatureTypeStyle" ) );
2941 userStyleElem.appendChild( featureTypeStyleElem );
2943 mRenderer->
toSld( doc, featureTypeStyleElem, localProps );
2946 mLabeling->
toSld( featureTypeStyleElem, localProps );
2955 if ( !mEditBuffer || !mDataProvider )
2960 if ( mGeometryOptions->isActive() )
2961 mGeometryOptions->apply( geom );
2970 if ( !skipDefaultValue && !mDefaultValueOnUpdateFields.isEmpty() )
2971 updateDefaultValues( fid );
2979 bool result =
false;
2993 if ( mEditBuffer && mDataProvider )
3002 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3003 updateDefaultValues( fid );
3018 for (
auto it = newValues.constBegin(); it != newValues.constEnd(); ++it )
3020 const int field = it.key();
3021 const QVariant newValue = it.value();
3024 if ( oldValues.contains(
field ) )
3025 oldValue = oldValues[
field];
3030 newValuesJoin[
field] = newValue;
3031 oldValuesJoin[
field] = oldValue;
3038 newValuesNotJoin[
field] = newValue;
3039 oldValuesNotJoin[
field] = oldValue;
3048 if ( ! newValuesJoin.isEmpty() && mJoinBuffer )
3053 if ( ! newValuesNotJoin.isEmpty() && mEditBuffer && mDataProvider )
3058 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3060 updateDefaultValues( fid );
3068 if ( !mEditBuffer || !mDataProvider )
3076 if ( attIndex < 0 || attIndex >=
fields().count() )
3080 mFields[ attIndex ].setAlias( QString() );
3081 if ( mAttributeAliasMap.contains(
name ) )
3083 mAttributeAliasMap.remove(
name );
3085 mEditFormConfig.setFields( mFields );
3092 if ( index < 0 || index >=
fields().count() )
3099 if ( mExpressionFieldBuffer )
3115 if ( !mEditBuffer || !mDataProvider )
3131 if ( attIndex < 0 || attIndex >=
fields().count() )
3136 mAttributeAliasMap.insert(
name, aliasString );
3137 mFields[ attIndex ].setAlias( aliasString );
3138 mEditFormConfig.setFields( mFields );
3144 if ( index < 0 || index >=
fields().count() )
3152 if ( index >= 0 && index < mFields.
count() )
3160 return mAttributeAliasMap;
3165 QSet<QString> excludeList;
3166 QMap< QString, QgsField::ConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3167 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3171 excludeList << flagsIt.key();
3179 QMap< QString, QgsField::ConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3180 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3189 QSet<QString> excludeList;
3190 QMap< QString, QgsField::ConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3191 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3195 excludeList << flagsIt.key();
3203 QMap< QString, QgsField::ConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3204 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3213 if ( index < 0 || index >=
fields().count() )
3222 if ( !mEditBuffer || !mDataProvider )
3230 bool deleted =
false;
3233 QList<int> attrList = qgis::setToList( qgis::listToSet( attrs ) );
3235 std::sort( attrList.begin(), attrList.end(), std::greater<int>() );
3237 for (
int attr : qgis::as_const( attrList ) )
3253 if ( context && context->
cascade )
3256 const bool hasRelationsOrJoins = !relations.empty() || mJoinBuffer->
containsJoins();
3257 if ( hasRelationsOrJoins )
3262 if ( handledFeatureIds.contains( fid ) )
3270 handledFeatureIds << fid;
3288 while ( relatedFeaturesIt.
nextFeature( childFeature ) )
3290 childFeatureIds.insert( childFeature.
id() );
3292 if ( childFeatureIds.count() > 0 )
3294 relation.referencingLayer()->startEditing();
3295 relation.referencingLayer()->deleteFeatures( childFeatureIds, context );
3315 bool res = deleteFeatureCascade( fid, context );
3319 mSelectedFeatureIds.remove( fid );
3329 const auto constFids = fids;
3331 res = deleteFeatureCascade( fid, context ) && res;
3335 mSelectedFeatureIds.subtract( fids );
3350 if ( !mDataProvider )
3351 return pkAttributesList;
3354 for (
int i = 0; i < mFields.
count(); ++i )
3358 pkAttributesList << i;
3361 return pkAttributesList;
3366 if ( ! mDataProvider )
3377 if ( mEditBuffer && !deletedFeatures.empty() )
3379 if ( addedFeatures.size() > deletedFeatures.size() )
3380 return QgsFeatureSource::FeatureAvailability::FeaturesAvailable;
3382 return QgsFeatureSource::FeatureAvailability::FeaturesMaybeAvailable;
3385 if ( ( !mEditBuffer || addedFeatures.empty() ) && mDataProvider && mDataProvider->
empty() )
3386 return QgsFeatureSource::FeatureAvailability::NoFeaturesAvailable;
3388 return QgsFeatureSource::FeatureAvailability::FeaturesAvailable;
3393 mCommitErrors.clear();
3395 if ( !mDataProvider )
3397 mCommitErrors << tr(
"ERROR: no provider" );
3403 mCommitErrors << tr(
"ERROR: layer not editable" );
3409 if ( !mAllowCommit )
3419 mEditBuffer =
nullptr;
3443 return mCommitErrors;
3453 if ( !mDataProvider )
3455 mCommitErrors << tr(
"ERROR: no provider" );
3481 mEditBuffer =
nullptr;
3486 if ( rollbackExtent )
3497 return mSelectedFeatureIds.size();
3502 return mSelectedFeatureIds;
3508 features.reserve( mSelectedFeatureIds.count() );
3511 if ( mSelectedFeatureIds.count() <= 8 )
3515 const auto constMSelectedFeatureIds = mSelectedFeatureIds;
3528 features.push_back( f );
3537 if ( mSelectedFeatureIds.isEmpty() )
3543 if ( mSelectedFeatureIds.count() == 1 )
3544 request.
setFilterFid( *mSelectedFeatureIds.constBegin() );
3553 if ( !mEditBuffer || !mDataProvider )
3556 if ( mGeometryOptions->isActive() )
3558 for (
auto feature = features.begin(); feature != features.end(); ++feature )
3561 mGeometryOptions->apply( geom );
3603 if ( !mDisplayExpression.isEmpty() || mFields.
isEmpty() )
3605 return mDisplayExpression;
3610 if ( !candidateName.isEmpty() )
3623 return ( mEditBuffer && mDataProvider );
3632 bool QgsVectorLayer::isReadOnly()
const
3640 if ( readonly && mEditBuffer )
3643 mReadOnly = readonly;
3650 if ( ! mDataProvider )
3659 return mEditBuffer && mEditBuffer->
isModified();
3664 bool auxiliaryField =
false;
3668 return auxiliaryField;
3675 auxiliaryField =
true;
3678 return auxiliaryField;
3689 if ( r != mRenderer )
3693 mSymbolFeatureCounted =
false;
3694 mSymbolFeatureCountMap.clear();
3695 mSymbolFeatureIdMap.clear();
3704 mRendererGenerators << generator;
3709 for (
int i = mRendererGenerators.count() - 1; i >= 0; --i )
3711 if ( mRendererGenerators.at( i )->id() ==
id )
3713 delete mRendererGenerators.at( i );
3714 mRendererGenerators.removeAt( i );
3721 QList< const QgsFeatureRendererGenerator * > res;
3729 if ( !mDataProvider )
3735 QString ignoredError;
3739 mEditCommandActive =
true;
3745 if ( !mDataProvider )
3750 mEditCommandActive =
false;
3751 if ( !mDeletedFids.isEmpty() )
3754 mDeletedFids.clear();
3761 if ( !mDataProvider )
3772 std::unique_ptr< QUndoCommand > command = qgis::make_unique< QUndoCommand >();
3773 command->setObsolete(
true );
3776 mEditCommandActive =
false;
3777 mDeletedFids.clear();
3783 return mJoinBuffer->
addJoin( joinInfo );
3789 return mJoinBuffer->
removeJoin( joinLayerId );
3819 if ( oi < 0 || oi >= mExpressionFieldBuffer->
expressions().size() )
3822 return mExpressionFieldBuffer->
expressions().at( oi ).cachedExpression.expression();
3833 if ( !mDataProvider )
3838 mFields = mDataProvider->
fields();
3848 if ( mExpressionFieldBuffer )
3852 QMap< QString, QString >::const_iterator aliasIt = mAttributeAliasMap.constBegin();
3853 for ( ; aliasIt != mAttributeAliasMap.constEnd(); ++aliasIt )
3859 mFields[ index ].setAlias( aliasIt.value() );
3863 QMap< QString, QgsField::ConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3864 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3870 mFields[index].setConfigurationFlags( flagsIt.value() );
3874 mDefaultValueOnUpdateFields.clear();
3875 QMap< QString, QgsDefaultValue >::const_iterator defaultIt = mDefaultExpressionMap.constBegin();
3876 for ( ; defaultIt != mDefaultExpressionMap.constEnd(); ++defaultIt )
3878 int index = mFields.
lookupField( defaultIt.key() );
3882 mFields[ index ].setDefaultValueDefinition( defaultIt.value() );
3883 if ( defaultIt.value().applyOnUpdate() )
3884 mDefaultValueOnUpdateFields.insert( index );
3887 QMap< QString, QgsFieldConstraints::Constraints >::const_iterator constraintIt = mFieldConstraints.constBegin();
3888 for ( ; constraintIt != mFieldConstraints.constEnd(); ++constraintIt )
3890 int index = mFields.
lookupField( constraintIt.key() );
3903 mFields[ index ].setConstraints( constraints );
3906 QMap< QString, QPair< QString, QString > >::const_iterator constraintExpIt = mFieldConstraintExpressions.constBegin();
3907 for ( ; constraintExpIt != mFieldConstraintExpressions.constEnd(); ++constraintExpIt )
3909 int index = mFields.
lookupField( constraintExpIt.key() );
3920 mFields[ index ].setConstraints( constraints );
3924 for ( ; constraintStrengthIt != mFieldConstraintStrength.constEnd(); ++constraintStrengthIt )
3926 int index = mFields.
lookupField( constraintStrengthIt.key().first );
3936 constraints.
setConstraintStrength( constraintStrengthIt.key().second, constraintStrengthIt.value() );
3937 mFields[ index ].setConstraints( constraints );
3940 auto fieldWidgetIterator = mFieldWidgetSetups.constBegin();
3941 for ( ; fieldWidgetIterator != mFieldWidgetSetups.constEnd(); ++ fieldWidgetIterator )
3943 int index = mFields.
indexOf( fieldWidgetIterator.key() );
3947 mFields[index].setEditorWidgetSetup( fieldWidgetIterator.value() );
3950 if ( oldFields != mFields )
3953 mEditFormConfig.setFields( mFields );
3960 if ( index < 0 || index >= mFields.
count() || !mDataProvider )
3964 if ( expression.isEmpty() )
3968 std::unique_ptr< QgsExpressionContext > tempContext;
3973 evalContext = tempContext.get();
4006 if ( index < 0 || index >= mFields.
count() )
4011 mDefaultExpressionMap.insert( mFields.
at( index ).
name(), definition );
4015 mDefaultExpressionMap.remove( mFields.
at( index ).
name() );
4022 if ( index < 0 || index >= mFields.
count() )
4031 if ( !mDataProvider )
4050 for (
const QVariant &v : constUniqueValues )
4052 vals << v.toString();
4056 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4057 while ( addedIt.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4060 QVariant v = addedIt.value().attribute( index );
4063 QString vs = v.toString();
4064 if ( !vals.contains( vs ) )
4073 while ( it.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4076 QVariant v = it.value().value( index );
4079 QString vs = v.toString();
4080 if ( !vals.contains( vs ) )
4112 .setSubsetOfAttributes( attList ) );
4115 QVariant currentValue;
4116 QHash<QString, QVariant> val;
4120 val.insert( currentValue.toString(), currentValue );
4121 if ( limit >= 0 && val.size() >= limit )
4127 return qgis::listToSet( val.values() );
4131 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueValues()",
"Unknown source of the field!" );
4137 QStringList results;
4138 if ( !mDataProvider )
4156 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4157 while ( addedIt.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
4160 QVariant v = addedIt.value().attribute( index );
4163 QString vs = v.toString();
4164 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
4172 while ( it.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
4175 QVariant v = it.value().value( index );
4178 QString vs = v.toString();
4179 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
4210 QString fieldName = mFields.
at( index ).
name();
4211 request.
setFilterExpression( QStringLiteral(
"\"%1\" ILIKE '%%2%'" ).arg( fieldName, substring ) );
4215 QString currentValue;
4218 currentValue = f.
attribute( index ).toString();
4219 if ( !results.contains( currentValue ) )
4220 results << currentValue;
4222 if ( ( limit >= 0 && results.size() >= limit ) || ( feedback && feedback->
isCanceled() ) )
4232 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueStringsMatching()",
"Unknown source of the field!" );
4238 return minimumOrMaximumValue( index,
true );
4243 return minimumOrMaximumValue( index,
false );
4246 QVariant QgsVectorLayer::minimumOrMaximumValue(
int index,
bool minimum )
const
4248 if ( !mDataProvider )
4266 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4267 while ( addedIt.hasNext() )
4270 QVariant v = addedIt.value().attribute( index );
4279 while ( it.hasNext() )
4282 QVariant v = it.value().value( index );
4315 .setSubsetOfAttributes( attList ) );
4319 QVariant currentValue;
4320 bool firstValue =
true;
4324 if ( currentValue.isNull() )
4328 value = currentValue;
4335 value = currentValue;
4343 Q_ASSERT_X(
false,
"QgsVectorLayer::minimumOrMaximum()",
"Unknown source of the field!" );
4354 if ( !mDataProvider )
4360 int attrIndex = mFields.
lookupField( fieldOrExpression );
4361 if ( attrIndex >= 0 )
4368 bool providerOk =
false;
4369 QVariant val = mDataProvider->
aggregate(
aggregate, attrIndex, parameters, context, providerOk, fids );
4383 c.setFidsFilter( *fids );
4384 c.setParameters( parameters );
4385 return c.calculate(
aggregate, fieldOrExpression, context, ok );
4400 return mFeatureBlendMode;
4403 void QgsVectorLayer::readSldLabeling(
const QDomNode &node )
4408 QDomElement element = node.toElement();
4409 if ( element.isNull() )
4412 QDomElement userStyleElem = element.firstChildElement( QStringLiteral(
"UserStyle" ) );
4413 if ( userStyleElem.isNull() )
4415 QgsDebugMsgLevel( QStringLiteral(
"Info: UserStyle element not found." ), 4 );
4419 QDomElement featTypeStyleElem = userStyleElem.firstChildElement( QStringLiteral(
"FeatureTypeStyle" ) );
4420 if ( featTypeStyleElem.isNull() )
4422 QgsDebugMsgLevel( QStringLiteral(
"Info: FeatureTypeStyle element not found." ), 4 );
4427 QDomElement mergedFeatTypeStyle = featTypeStyleElem.cloneNode(
false ).toElement();
4432 bool needRuleBasedLabeling =
false;
4435 while ( !featTypeStyleElem.isNull() )
4437 QDomElement ruleElem = featTypeStyleElem.firstChildElement( QStringLiteral(
"Rule" ) );
4438 while ( !ruleElem.isNull() )
4442 bool hasTextSymbolizer =
false;
4443 bool hasRuleBased =
false;
4444 QDomElement ruleChildElem = ruleElem.firstChildElement();
4445 while ( !ruleChildElem.isNull() )
4448 if ( ruleChildElem.localName() == QLatin1String(
"Filter" ) ||
4449 ruleChildElem.localName() == QLatin1String(
"MinScaleDenominator" ) ||
4450 ruleChildElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
4452 hasRuleBased =
true;
4455 else if ( ruleChildElem.localName() == QLatin1String(
"TextSymbolizer" ) )
4457 QgsDebugMsgLevel( QStringLiteral(
"Info: TextSymbolizer element found" ), 4 );
4458 hasTextSymbolizer =
true;
4461 ruleChildElem = ruleChildElem.nextSiblingElement();
4464 if ( hasTextSymbolizer )
4469 mergedFeatTypeStyle.appendChild( ruleElem.cloneNode().toElement() );
4473 QgsDebugMsgLevel( QStringLiteral(
"Info: Filter or Min/MaxScaleDenominator element found: need a RuleBasedLabeling" ), 4 );
4474 needRuleBasedLabeling =
true;
4479 if ( ruleCount > 1 )
4481 QgsDebugMsgLevel( QStringLiteral(
"Info: More Rule elements found: need a RuleBasedLabeling" ), 4 );
4482 needRuleBasedLabeling =
true;
4486 if ( ruleCount == 0 )
4488 needRuleBasedLabeling =
false;
4491 ruleElem = ruleElem.nextSiblingElement( QStringLiteral(
"Rule" ) );
4493 featTypeStyleElem = featTypeStyleElem.nextSiblingElement( QStringLiteral(
"FeatureTypeStyle" ) );
4496 if ( ruleCount == 0 )
4498 QgsDebugMsgLevel( QStringLiteral(
"Info: No TextSymbolizer element." ), 4 );
4502 QDomElement ruleElem = mergedFeatTypeStyle.firstChildElement( QStringLiteral(
"Rule" ) );
4504 if ( needRuleBasedLabeling )
4508 while ( !ruleElem.isNull() )
4511 QString label, description, filterExp;
4512 int scaleMinDenom = 0, scaleMaxDenom = 0;
4516 QDomElement childElem = ruleElem.firstChildElement();
4517 while ( !childElem.isNull() )
4519 if ( childElem.localName() == QLatin1String(
"Name" ) )
4523 if ( label.isEmpty() )
4524 label = childElem.firstChild().nodeValue();
4526 else if ( childElem.localName() == QLatin1String(
"Description" ) )
4529 QDomElement titleElem = childElem.firstChildElement( QStringLiteral(
"Title" ) );
4530 if ( !titleElem.isNull() )
4532 label = titleElem.firstChild().nodeValue();
4535 QDomElement abstractElem = childElem.firstChildElement( QStringLiteral(
"Abstract" ) );
4536 if ( !abstractElem.isNull() )
4538 description = abstractElem.firstChild().nodeValue();
4541 else if ( childElem.localName() == QLatin1String(
"Abstract" ) )
4544 description = childElem.firstChild().nodeValue();
4546 else if ( childElem.localName() == QLatin1String(
"Title" ) )
4549 label = childElem.firstChild().nodeValue();
4551 else if ( childElem.localName() == QLatin1String(
"Filter" ) )
4567 else if ( childElem.localName() == QLatin1String(
"MinScaleDenominator" ) )
4570 int v = childElem.firstChild().nodeValue().toInt( &ok );
4574 else if ( childElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
4577 int v = childElem.firstChild().nodeValue().toInt( &ok );
4581 else if ( childElem.localName() == QLatin1String(
"TextSymbolizer" ) )
4583 readSldTextSymbolizer( childElem, settings );
4586 childElem = childElem.nextSiblingElement();
4592 ruleElem = ruleElem.nextSiblingElement();
4602 QDomElement textSymbolizerElem = ruleElem.firstChildElement( QStringLiteral(
"TextSymbolizer" ) );
4604 if ( readSldTextSymbolizer( textSymbolizerElem, s ) )
4612 bool QgsVectorLayer::readSldTextSymbolizer(
const QDomNode &node,
QgsPalLayerSettings &settings )
const
4614 if ( node.localName() != QLatin1String(
"TextSymbolizer" ) )
4616 QgsDebugMsgLevel( QStringLiteral(
"Not a TextSymbolizer element: %1" ).arg( node.localName() ), 3 );
4619 QDomElement textSymbolizerElem = node.toElement();
4621 QDomElement labelElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Label" ) );
4622 if ( !labelElem.isNull() )
4624 QDomElement propertyNameElem = labelElem.firstChildElement( QStringLiteral(
"PropertyName" ) );
4625 if ( !propertyNameElem.isNull() )
4630 QString labelAttribute = propertyNameElem.text();
4634 int fieldIndex = mFields.
lookupField( labelAttribute );
4635 if ( fieldIndex == -1 )
4639 if ( !exp.hasEvalError() )
4645 QgsDebugMsgLevel( QStringLiteral(
"SLD label attribute error: %1" ).arg( exp.evalErrorString() ), 3 );
4651 QgsDebugMsgLevel( QStringLiteral(
"Info: PropertyName element not found." ), 4 );
4662 if ( textSymbolizerElem.hasAttribute( QStringLiteral(
"uom" ) ) )
4667 QString fontFamily = QStringLiteral(
"Sans-Serif" );
4668 int fontPointSize = 10;
4670 int fontWeight = -1;
4671 bool fontItalic =
false;
4672 bool fontUnderline =
false;
4675 QDomElement fontElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Font" ) );
4676 if ( !fontElem.isNull() )
4679 for ( QgsStringMap::iterator it = fontSvgParams.begin(); it != fontSvgParams.end(); ++it )
4681 QgsDebugMsgLevel( QStringLiteral(
"found fontSvgParams %1: %2" ).arg( it.key(), it.value() ), 4 );
4683 if ( it.key() == QLatin1String(
"font-family" ) )
4685 fontFamily = it.value();
4687 else if ( it.key() == QLatin1String(
"font-style" ) )
4689 fontItalic = ( it.value() == QLatin1String(
"italic" ) ) || ( it.value() == QLatin1String(
"Italic" ) );
4691 else if ( it.key() == QLatin1String(
"font-size" ) )
4694 int fontSize = it.value().toInt( &ok );
4697 fontPointSize = fontSize;
4698 fontUnitSize = sldUnitSize;
4701 else if ( it.key() == QLatin1String(
"font-weight" ) )
4703 if ( ( it.value() == QLatin1String(
"bold" ) ) || ( it.value() == QLatin1String(
"Bold" ) ) )
4704 fontWeight = QFont::Bold;
4706 else if ( it.key() == QLatin1String(
"font-underline" ) )
4708 fontUnderline = ( it.value() == QLatin1String(
"underline" ) ) || ( it.value() == QLatin1String(
"Underline" ) );
4714 QFont font( fontFamily, fontPointSize, fontWeight, fontItalic );
4715 font.setUnderline( fontUnderline );
4717 format.
setSize( fontPointSize );
4721 QDomElement fillElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Fill" ) );
4723 Qt::BrushStyle textBrush = Qt::SolidPattern;
4725 if ( textColor.isValid() )
4727 QgsDebugMsgLevel( QStringLiteral(
"Info: textColor %1." ).arg( QVariant( textColor ).toString() ), 4 );
4734 QDomElement haloElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Halo" ) );
4735 if ( !haloElem.isNull() )
4740 QDomElement radiusElem = haloElem.firstChildElement( QStringLiteral(
"Radius" ) );
4741 if ( !radiusElem.isNull() )
4744 double bufferSize = radiusElem.text().toDouble( &ok );
4747 bufferSettings.
setSize( bufferSize );
4752 QDomElement haloFillElem = haloElem.firstChildElement( QStringLiteral(
"Fill" ) );
4754 Qt::BrushStyle bufferBrush = Qt::SolidPattern;
4756 if ( bufferColor.isValid() )
4758 QgsDebugMsgLevel( QStringLiteral(
"Info: bufferColor %1." ).arg( QVariant( bufferColor ).toString() ), 4 );
4759 bufferSettings.
setColor( bufferColor );
4764 QDomElement labelPlacementElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"LabelPlacement" ) );
4765 if ( !labelPlacementElem.isNull() )
4768 QDomElement pointPlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"PointPlacement" ) );
4769 if ( !pointPlacementElem.isNull() )
4777 QDomElement displacementElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Displacement" ) );
4778 if ( !displacementElem.isNull() )
4780 QDomElement displacementXElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementX" ) );
4781 if ( !displacementXElem.isNull() )
4784 double xOffset = displacementXElem.text().toDouble( &ok );
4791 QDomElement displacementYElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementY" ) );
4792 if ( !displacementYElem.isNull() )
4795 double yOffset = displacementYElem.text().toDouble( &ok );
4803 QDomElement anchorPointElem = pointPlacementElem.firstChildElement( QStringLiteral(
"AnchorPoint" ) );
4804 if ( !anchorPointElem.isNull() )
4806 QDomElement anchorPointXElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointX" ) );
4807 if ( !anchorPointXElem.isNull() )
4810 double xOffset = anchorPointXElem.text().toDouble( &ok );
4817 QDomElement anchorPointYElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointY" ) );
4818 if ( !anchorPointYElem.isNull() )
4821 double yOffset = anchorPointYElem.text().toDouble( &ok );
4830 QDomElement rotationElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Rotation" ) );
4831 if ( !rotationElem.isNull() )
4834 double rotation = rotationElem.text().toDouble( &ok );
4844 QDomElement linePlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"LinePlacement" ) );
4845 if ( !linePlacementElem.isNull() )
4854 QDomElement vendorOptionElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"VendorOption" ) );
4855 while ( !vendorOptionElem.isNull() && vendorOptionElem.localName() == QLatin1String(
"VendorOption" ) )
4857 QString optionName = vendorOptionElem.attribute( QStringLiteral(
"name" ) );
4858 QString optionValue;
4859 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::TextNode )
4861 optionValue = vendorOptionElem.firstChild().nodeValue();
4865 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::ElementNode &&
4866 vendorOptionElem.firstChild().localName() == QLatin1String(
"Literal" ) )
4868 QgsDebugMsg( vendorOptionElem.firstChild().localName() );
4869 optionValue = vendorOptionElem.firstChild().firstChild().nodeValue();
4873 QgsDebugMsg( QStringLiteral(
"unexpected child of %1 named %2" ).arg( vendorOptionElem.localName(), optionName ) );
4877 if ( !optionName.isEmpty() && !optionValue.isEmpty() )
4879 vendorOptions[ optionName ] = optionValue;
4882 vendorOptionElem = vendorOptionElem.nextSiblingElement();
4884 if ( !vendorOptions.isEmpty() )
4886 for ( QgsStringMap::iterator it = vendorOptions.begin(); it != vendorOptions.end(); ++it )
4888 if ( it.key() == QLatin1String(
"underlineText" ) && it.value() == QLatin1String(
"true" ) )
4890 font.setUnderline(
true );
4893 else if ( it.key() == QLatin1String(
"strikethroughText" ) && it.value() == QLatin1String(
"true" ) )
4895 font.setStrikeOut(
true );
4898 else if ( it.key() == QLatin1String(
"maxDisplacement" ) )
4902 else if ( it.key() == QLatin1String(
"followLine" ) && it.value() == QLatin1String(
"true" ) )
4913 else if ( it.key() == QLatin1String(
"maxAngleDelta" ) )
4916 double angle = it.value().toDouble( &ok );
4924 else if ( it.key() == QLatin1String(
"conflictResolution" ) && it.value() == QLatin1String(
"false" ) )
4928 else if ( it.key() == QLatin1String(
"forceLeftToRight" ) && it.value() == QLatin1String(
"false" ) )
4932 else if ( it.key() == QLatin1String(
"group" ) && it.value() == QLatin1String(
"yes" ) )
4936 else if ( it.key() == QLatin1String(
"labelAllGroup" ) && it.value() == QLatin1String(
"true" ) )
4950 return mEditFormConfig;
4959 mEditFormConfig.onRelationsLoaded();
4965 return mMapTipTemplate;
4970 if ( mMapTipTemplate == mapTip )
4973 mMapTipTemplate = mapTip;
5008 if ( !mDiagramLayerSettings )
5010 *mDiagramLayerSettings = s;
5016 QString myMetadata = QStringLiteral(
"<html>\n<body>\n" );
5019 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Information from provider" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5020 myMetadata += QLatin1String(
"<table class=\"list-view\">\n" );
5023 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Name" ) + QStringLiteral(
"</td><td>" ) +
name() + QStringLiteral(
"</td></tr>\n" );
5028 bool isLocalPath =
false;
5029 if ( uriComponents.contains( QStringLiteral(
"path" ) ) )
5031 path = uriComponents[QStringLiteral(
"path" )].toString();
5032 if ( QFile::exists( path ) )
5035 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Path" ) + QStringLiteral(
"</td><td>%1" ).arg( QStringLiteral(
"<a href=\"%1\">%2</a>" ).arg( QUrl::fromLocalFile( path ).toString(), QDir::toNativeSeparators( path ) ) ) + QStringLiteral(
"</td></tr>\n" );
5038 if ( uriComponents.contains( QStringLiteral(
"url" ) ) )
5040 const QString url = uriComponents[QStringLiteral(
"url" )].toString();
5041 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"URL" ) + QStringLiteral(
"</td><td>%1" ).arg( QStringLiteral(
"<a href=\"%1\">%2</a>" ).arg( QUrl( url ).toString(), url ) ) + QStringLiteral(
"</td></tr>\n" );
5046 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Source" ) + QStringLiteral(
"</td><td>%1" ).arg(
publicSource() != path ?
publicSource() : path ) + QStringLiteral(
"</td></tr>\n" );
5049 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Storage" ) + QStringLiteral(
"</td><td>" ) +
storageType() + QStringLiteral(
"</td></tr>\n" );
5052 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Comment" ) + QStringLiteral(
"</td><td>" ) +
dataComment() + QStringLiteral(
"</td></tr>\n" );
5058 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Encoding" ) + QStringLiteral(
"</td><td>" ) + provider->
encoding() + QStringLiteral(
"</td></tr>\n" );
5073 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Geometry" ) + QStringLiteral(
"</td><td>" ) + typeString + QStringLiteral(
"</td></tr>\n" );
5077 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"CRS" ) + QStringLiteral(
"</td><td>" );
5081 if (
crs().isGeographic() )
5082 myMetadata += tr(
"Geographic" );
5084 myMetadata += tr(
"Projected" );
5086 myMetadata += QLatin1String(
"</td></tr>\n" );
5089 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Extent" ) + QStringLiteral(
"</td><td>" ) +
extent().
toString() + QStringLiteral(
"</td></tr>\n" );
5092 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Unit" ) + QStringLiteral(
"</td><td>" ) +
QgsUnitTypes::toString(
crs().mapUnits() ) + QStringLiteral(
"</td></tr>\n" );
5097 QLocale locale = QLocale();
5098 locale.setNumberOptions( locale.numberOptions() &= ~QLocale::NumberOption::OmitGroupSeparator );
5099 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
5100 + tr(
"Feature count" ) + QStringLiteral(
"</td><td>" )
5102 + QStringLiteral(
"</td></tr>\n" );
5105 myMetadata += QLatin1String(
"</table>\n<br><br>" );
5108 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Identification" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5110 myMetadata += QLatin1String(
"<br><br>\n" );
5113 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Extent" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5115 myMetadata += QLatin1String(
"<br><br>\n" );
5118 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Access" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5120 myMetadata += QLatin1String(
"<br><br>\n" );
5123 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Fields" ) + QStringLiteral(
"</h1>\n<hr>\n<table class=\"list-view\">\n" );
5127 if ( !pkAttrList.isEmpty() )
5129 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Primary key attributes" ) + QStringLiteral(
"</td><td>" );
5130 const auto constPkAttrList = pkAttrList;
5131 for (
int idx : constPkAttrList )
5135 myMetadata += QLatin1String(
"</td></tr>\n" );
5141 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Count" ) + QStringLiteral(
"</td><td>" ) + QString::number( myFields.
size() ) + QStringLiteral(
"</td></tr>\n" );
5143 myMetadata += QLatin1String(
"</table>\n<br><table width=\"100%\" class=\"tabular-view\">\n" );
5144 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" );
5146 for (
int i = 0; i < myFields.
size(); ++i )
5151 rowClass = QStringLiteral(
"class=\"odd-row\"" );
5152 myMetadata += QLatin1String(
"<tr " ) + rowClass + QLatin1String(
"><td>" ) + myField.
name() + 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" );
5156 myMetadata += QLatin1String(
"</table>\n<br><br>" );
5159 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Contacts" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5161 myMetadata += QLatin1String(
"<br><br>\n" );
5164 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Links" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5166 myMetadata += QLatin1String(
"<br><br>\n" );
5169 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"History" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5171 myMetadata += QLatin1String(
"<br><br>\n" );
5173 myMetadata += QLatin1String(
"\n</body>\n</html>\n" );
5177 void QgsVectorLayer::invalidateSymbolCountedFlag()
5179 mSymbolFeatureCounted =
false;
5182 void QgsVectorLayer::onFeatureCounterCompleted()
5185 mFeatureCounter =
nullptr;
5188 void QgsVectorLayer::onFeatureCounterTerminated()
5190 mFeatureCounter =
nullptr;
5193 void QgsVectorLayer::onJoinedFieldsChanged()
5199 void QgsVectorLayer::onFeatureDeleted(
QgsFeatureId fid )
5201 if ( mEditCommandActive )
5202 mDeletedFids << fid;
5209 void QgsVectorLayer::onRelationsLoaded()
5211 mEditFormConfig.onRelationsLoaded();
5214 void QgsVectorLayer::onSymbolsCounted()
5216 if ( mFeatureCounter )
5218 mSymbolFeatureCounted =
true;
5232 return mWeakRelations;
5252 bool useAsDefault,
const QString &uiFileContent, QString &msgError )
5255 QString sldStyle, qmlStyle;
5256 QDomDocument qmlDocument, sldDocument;
5259 if ( !msgError.isNull() )
5263 qmlStyle = qmlDocument.toString();
5266 if ( !msgError.isNull() )
5270 sldStyle = sldDocument.toString();
5274 description, uiFileContent, useAsDefault, msgError );
5288 QString joinKey = mAuxiliaryLayerKey;
5289 if ( !key.isEmpty() )
5292 if ( storage.
isValid() && !joinKey.isEmpty() )
5315 mAuxiliaryLayerKey.clear();
5317 if ( mAuxiliaryLayer )
5330 mAuxiliaryLayer.reset( alayer );
5331 if ( mAuxiliaryLayer )
5332 mAuxiliaryLayer->setParent(
this );
5338 return mAuxiliaryLayer.get();
5343 return mAuxiliaryLayer.get();
5349 QString returnMessage;
5350 QString qml, errorMsg;
5355 if ( !qml.isEmpty() )
5357 QDomDocument myDocument( QStringLiteral(
"qgis" ) );
5358 myDocument.setContent( qml );
5360 returnMessage = QObject::tr(
"Loaded from Provider" );
5370 return returnMessage;
5375 if ( mDataProvider )
5380 void QgsVectorLayer::emitDataChanged()
5382 if ( mDataChangedFired )
5387 mDataChangedFired =
true;
5389 mDataChangedFired =
false;
5392 void QgsVectorLayer::onAfterCommitChangesDependency()
5394 mDataChangedFired =
true;
5400 QSet<QgsMapLayerDependency> deps;
5401 const auto constODeps = oDeps;
5408 QSet<QgsMapLayerDependency> toAdd = deps -
dependencies();
5425 if ( mDataProvider )
5446 if ( ! toAdd.isEmpty() )
5454 if ( fieldIndex < 0 || fieldIndex >= mFields.
count() || !mDataProvider )
5455 return QgsFieldConstraints::Constraints();
5470 QMap< QgsFieldConstraints::Constraint, QgsFieldConstraints::ConstraintStrength > m;
5472 if ( fieldIndex < 0 || fieldIndex >= mFields.
count() )
5475 QString
name = mFields.
at( fieldIndex ).
name();
5478 for ( ; conIt != mFieldConstraintStrength.constEnd(); ++conIt )
5480 if ( conIt.key().first ==
name )
5482 m[ conIt.key().second ] = mFieldConstraintStrength.value( conIt.key() );
5491 if ( index < 0 || index >= mFields.
count() )
5497 QgsFieldConstraints::Constraints constraints = mFieldConstraints.value(
name, QgsFieldConstraints::Constraints() );
5498 constraints |= constraint;
5499 mFieldConstraints.insert(
name, constraints );
5501 mFieldConstraintStrength.insert( qMakePair(
name, constraint ), strength );
5508 if ( index < 0 || index >= mFields.
count() )
5514 QgsFieldConstraints::Constraints constraints = mFieldConstraints.value(
name, QgsFieldConstraints::Constraints() );
5515 constraints &= ~constraint;
5516 mFieldConstraints.insert(
name, constraints );
5518 mFieldConstraintStrength.remove( qMakePair(
name, constraint ) );
5525 if ( index < 0 || index >= mFields.
count() )
5533 if ( index < 0 || index >= mFields.
count() )
5541 if ( index < 0 || index >= mFields.
count() )
5544 if ( expression.isEmpty() )
5546 mFieldConstraintExpressions.remove( mFields.
at( index ).
name() );
5550 mFieldConstraintExpressions.insert( mFields.
at( index ).
name(), qMakePair( expression, description ) );
5557 if ( index < 0 || index >= mFields.
count() )
5560 mFieldConfigurationFlags.insert( mFields.
at( index ).
name(),
flags );
5566 if ( index < 0 || index >= mFields.
count() )
5569 flags.setFlag( flag, active );
5576 if ( index < 0 || index >= mFields.
count() )
5584 if ( index < 0 || index >= mFields.
count() )
5588 mFieldWidgetSetups.remove( mFields.
at( index ).
name() );
5590 mFieldWidgetSetups.insert( mFields.
at( index ).
name(), setup );
5597 if ( index < 0 || index >= mFields.
count() )
5606 if (
customProperty( QStringLiteral(
"labeling" ) ).toString() == QLatin1String(
"pal" ) )
5608 if (
customProperty( QStringLiteral(
"labeling/enabled" ), QVariant(
false ) ).toBool() )
5612 settings.readFromLayerCustomProperties(
this );
5619 for (
const QString &key : constCustomPropertyKeys )
5621 if ( key.startsWith( QLatin1String(
"labeling/" ) ) )
5631 return mAllowCommit;
5645 return mGeometryOptions.get();
5655 return mReadExtentFromXml;
5658 void QgsVectorLayer::onDirtyTransaction(
const QString &sql,
const QString &name )
5661 if ( tr && mEditBuffer )
5663 qobject_cast<QgsVectorLayerEditPassthrough *>( mEditBuffer )->update( tr, sql,
name );
5669 QList<QgsVectorLayer *> layers;
5670 QMap<QgsVectorLayer *, QgsFeatureIds>::const_iterator i;
5673 if ( includeAuxiliaryLayers || !qobject_cast< QgsAuxiliaryLayer * >( i.key() ) )
5674 layers.append( i.key() );
5681 return mHandledFeatures[layer];
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 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(QgsAction::ActionType 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 ...
Aggregate
Available aggregates to calculate.
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.
This is a container for configuration of the attribute table.
bool isEmpty() const
Returns true if the configuration is empty, ie it contains no columns.
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.
Class allowing to manage the auxiliary storage for a vector layer.
QgsVectorLayerJoinInfo joinInfo() const
Returns information to use for joining with primary key and so on.
Class 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.
The QgsConditionalLayerStyles class 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.
This class represents a coordinate reference system (CRS).
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
@ FullString
Full definition – possibly a very lengthy string, e.g. with no truncation of custom WKT definitions.
QString userFriendlyIdentifier(IdentifierType type=MediumString) const
Returns a user friendly identifier for the CRS.
Contains information about the context in which a coordinate transform is executed.
Abstract base class for curved geometry type.
virtual bool isClosed() const SIP_HOLDGIL
Returns true if the curve is closed.
QgsCurve * clone() const override=0
Clones the geometry by performing a deep copy.
virtual bool leaveUpdateMode()
Leave update mode.
@ FlagTrustDataSource
Trust datasource config (primary key unicity, geometry type and srid, etc). Improves provider load ti...
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
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 QString subsetString() const
Returns the subset definition string (typically sql) currently in use by the layer and used by the pr...
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 QString dataSourceUri(bool expandAuthConfig=false) const
Gets the data source specification.
virtual void updateExtents()
Update the extents of the 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 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.
Class for storing the component parts of a RDBMS data source URI (e.g.
void setConnection(const QString &aHost, const QString &aPort, const QString &aDatabase, const QString &aUsername, const QString &aPassword, SslMode sslmode=SslPrefer, const QString &authConfigId=QString())
Sets all connection related members at once.
QString uri(bool expandAuthConfig=true) const
Returns the complete URI as a string.
QString username() const
Returns the username stored in the URI.
QString host() const
Returns the host name stored in the URI.
bool useEstimatedMetadata() const
Returns true if estimated metadata should be used for the connection.
QString password() const
Returns the password stored in the URI.
QString port() const
Returns the port stored in the URI.
QString database() const
Returns the database name stored in the URI.
void setDatabase(const QString &database)
Sets the URI database name.
The QgsDefaultValue class provides a container for managing client side default values for fields.
Q_GADGET QString expression
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.
@ Show
Whether to show the diagram.
@ PositionY
Y-coordinate data defined diagram position.
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.
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 updateFields(QgsFields &flds)
Adds fields with the expressions buffered in this object to a QgsFields object.
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.
QList< QgsExpressionFieldBuffer::ExpressionField > expressions() const
void addExpression(const QString &exp, const QgsField &fld)
Add an expression to the buffer.
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 it value from a feature's field.
Class for 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.
bool isField() const
Checks whether an expression consists only of a single field reference.
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)
const QgsExpressionNode * rootNode() const
Returns the root node of the expression.
bool hasEvalError() const
Returns true if an error occurred when evaluating last input.
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)
An interface for objects which generate feature renderers for vector layers.
static QgsFeatureRenderer * defaultRenderer(QgsWkbTypes::GeometryType geomType)
Returns a new renderer - used by default in vector layers.
virtual void toSld(QDomDocument &doc, QDomElement &element, const QVariantMap &props=QVariantMap()) const
used from subclasses to create SLD Rule elements following SLD v1.1 specs
virtual QDomElement save(QDomDocument &doc, const QgsReadWriteContext &context)
store renderer info to XML element
static QgsFeatureRenderer * loadSld(const QDomNode &node, QgsWkbTypes::GeometryType geomType, QString &errorMessage)
Create a new renderer according to the information contained in the UserStyle element of a SLD style ...
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...
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFilterFids(const QgsFeatureIds &fids)
Sets feature IDs that should be fetched.
QgsFeatureRequest & setFlags(QgsFeatureRequest::Flags flags)
Sets flags that affect how features will 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.
@ SubsetOfAttributes
Fetch only a subset of attributes (setSubsetOfAttributes sets this flag)
@ ExactIntersect
Use exact geometry intersection (slower) instead of bounding boxes.
@ NoGeometry
Geometry is not required. It may still be returned if e.g. required for a filter condition.
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 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.
SpatialIndexPresence
Enumeration of spatial index presence states.
@ SpatialIndexUnknown
Spatial index presence cannot be determined, index may or may not exist.
FeatureAvailability
Possible return value for hasFeatures() to determine if a source is empty.
virtual QgsFeatureIds allFeatureIds() const
Returns a list of all feature IDs for features present in the source.
virtual SpatialIndexPresence hasSpatialIndex() const
Returns an enum value representing the presence of a valid spatial index on the source,...
The feature class encapsulates a single feature including its id, geometry and a list of field/values...
bool setAttribute(int field, const QVariant &attr)
Set 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.
QVariant attribute(const QString &name) const
Lookup attribute value from 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.
ConstraintStrength constraintStrength(Constraint constraint) const
Returns the strength of a field constraint, or ConstraintStrengthNotSet if the constraint is not pres...
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.
Q_GADGET Constraints constraints
void setConstraint(Constraint constraint, ConstraintOrigin origin=ConstraintOriginLayer)
Sets a constraint on the field.
Encapsulate a field in an attribute table or data source.
QString typeName() const
Gets the field type.
QString displayName() const
Returns the name to use when displaying this field.
ConfigurationFlags configurationFlags
QgsDefaultValue defaultValueDefinition
QgsFieldConstraints constraints
ConfigurationFlag
Configuration flags for fields These flags are meant to be user-configurable and are not describing a...
@ HideFromWfs
Fields is available if layer is served as WFS from QGIS server.
@ None
No flag is defined.
@ HideFromWms
Fields is available if layer is served as WMS from QGIS server.
QgsEditorWidgetSetup editorWidgetSetup() const
Gets the editor widget setup for the field.
Container of fields for a vector layer.
int indexFromName(const QString &fieldName) const
Gets the field index from the field name.
int indexOf(const QString &fieldName) const
Gets the field index from the field name.
@ OriginExpression
Field is calculated from an expression.
@ OriginEdit
Field has been temporarily added in editing mode (originIndex = index in the list of added attributes...
@ OriginUnknown
It has not been specified where the field comes from.
@ OriginJoin
Field comes from a joined layer (originIndex / 1000 = index of the join, originIndex % 1000 = index w...
@ OriginProvider
Field comes from the underlying data provider of the vector layer (originIndex = index in provider's ...
int count() const
Returns number of items.
FieldOrigin fieldOrigin(int fieldIdx) const
Gets field's origin (value from an enumeration)
bool isEmpty() const
Checks whether the container is empty.
int size() const
Returns number of items.
QgsField at(int i) const
Gets field at particular index (must be in range 0..N-1)
int fieldOriginIndex(int fieldIdx) const
Gets field's origin index (its meaning is specific to each type of origin)
int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
The QgsGeometryOptions class contains options to automatically adjust geometries to constraints on a ...
A geometry is the spatial representation of a feature.
bool equals(const QgsGeometry &geometry) const
Test if this geometry is exactly equal to another geometry.
QgsWkbTypes::GeometryType type
OperationResult
Success or failure of a geometry operation.
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...
Line string geometry type, with support for z-dimension and m-values.
static void warning(const QString &msg)
Goes to qWarning.
This class models dependencies with or between map layers.
static QString typeToString(QgsMapLayerType 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 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.
virtual void exportNamedStyle(QDomDocument &doc, QString &errorMsg, const QgsReadWriteContext &context=QgsReadWriteContext(), QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) const
Export the properties of this layer as named style in a QDomDocument.
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.
virtual bool importNamedStyle(QDomDocument &doc, QString &errorMsg, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Import the properties of this layer from a QDomDocument.
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.
QString providerType() const
Returns the provider type (provider key) for this layer.
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.
QString publicSource() const
Gets a version of the internal layer definition that has sensitive bits removed (for example,...
QgsMapLayer::LayerFlags flags() const
Returns the flags for this layer.
QgsCoordinateReferenceSystem crs
void writeCustomProperties(QDomNode &layerNode, QDomDocument &doc) const
Write custom properties to project file.
QgsRectangle mExtent
Extent of the layer.
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 triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted.
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.
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.
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.
void rendererChanged()
Signal emitted when renderer is changed.
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 loadNamedStyle(const QString &uri, bool &resultFlag, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Retrieve a named style for this layer if one exists (either as a .qml file on disk or as a record in ...
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
void styleLoaded(QgsMapLayer::StyleCategories categories)
Emitted when a style has been loaded.
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...
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.
@ FlagTrustLayerMetadata
Trust layer metadata. Improves layer load time by skipping expensive checks like primary key unicity,...
@ 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...
virtual void exportSldStyle(QDomDocument &doc, QString &errorMsg) const
Export the properties of this layer as SLD style in a QDomDocument.
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.
@ Legend
Legend settings (since QGIS 3.16)
void setProviderType(const QString &providerType)
Sets the providerType (provider key)
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::Warning, bool notifyUser=true)
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 QgsPainting::BlendMode getBlendModeEnum(QPainter::CompositionMode blendMode)
Returns a BlendMode corresponding to a QPainter::CompositionMode.
static QPainter::CompositionMode getCompositionMode(QgsPainting::BlendMode blendMode)
Returns a QPainter::CompositionMode corresponding to a BlendMode.
BlendMode
Blending modes enum defining the available composition modes that can be used when rendering a layer.
Contains settings for how a map layer will be labeled.
double yOffset
Vertical offset of label.
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.
bool displayAll
If true, all features will be labelled even when overlaps occur.
double xOffset
Horizontal offset of label.
@ ShowAll
Show upside down for all labels, including dynamic ones.
QgsUnitTypes::RenderUnit offsetUnits
Units for offsets of label.
@ PerimeterCurved
Arranges candidates following the curvature of a polygon's boundary. Applies to polygon layers only.
@ Curved
Arranges candidates following the curvature of a line feature. Applies to line layers only.
@ Horizontal
Arranges horizontal candidates scattered throughout a polygon feature. Applies to polygon layers only...
@ OverPoint
Arranges candidates over a point (or centroid of a polygon), or at a preset offset from the point....
@ 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'...
double angleOffset
Label rotation, in degrees clockwise.
double maxCurvedCharAngleOut
Maximum angle between outside curved label characters (valid range -20.0 to -95.0)
const QgsLabelLineSettings & lineSettings() const
Returns the label line settings, which contain settings related to how the label engine places and fo...
bool isExpression
true if this label is made from a expression string, e.g., FieldName || 'mm'
UpsideDownLabels 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.
Resolves relative paths into absolute paths and vice versa.
QString writePath(const QString &filename) const
Prepare a filename to save it to the project file.
QString readPath(const QString &filename) const
Turn filename read from the project file to an absolute path.
A class to represent a 2D point.
Point geometry type, with support for z-dimension and m-values.
virtual QString translate(const QString &context, const QString &sourceText, const char *disambiguation=nullptr, int n=-1) const =0
The derived translate() translates with QTranslator and qm file the sourceText.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
QgsRelationManager * relationManager
static QgsProject * instance()
Returns the QgsProject singleton instance.
Q_INVOKABLE QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
QgsPathResolver pathResolver() const
Returns path resolver object with considering whether the project uses absolute or relative paths and...
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 a 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.
bool deleteStyleById(const QString &providerKey, const QString &uri, QString styleId, QString &errCause)
Deletes a layer style defined by styleId.
QString loadStyle(const QString &providerKey, const QString &uri, QString &errCause)
Loads a layer style defined by uri.
QVariantMap decodeUri(const QString &providerKey, const QString &uri)
Breaks a provider data source URI into its component paths (e.g.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
QString getStyleById(const QString &providerKey, const QString &uri, QString styleId, QString &errCause)
Gets a layer style defined by styleId.
int listStyles(const QString &providerKey, const QString &uri, QStringList &ids, QStringList &names, QStringList &descriptions, QString &errCause)
Lists stored layer styles in the provider defined by providerKey and uri.
bool saveStyle(const QString &providerKey, const QString &uri, const QString &qmlStyle, const QString &sldStyle, const QString &styleName, const QString &styleDescription, const QString &uiFileContent, bool useAsDefault, QString &errCause)
Saves a layer style to provider.
Allows entering a context category and takes care of leaving this category on deletion of the class.
The class is used as a container of context for various read/write operations on other objects.
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.
MAYBE_UNUSED NODISCARD QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString())
Push a category to the stack.
A rectangle specified with double values.
QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
double yMaximum() const SIP_HOLDGIL
Returns the y maximum value (top side of rectangle).
double xMaximum() const SIP_HOLDGIL
Returns the x maximum value (right side of rectangle).
double xMinimum() const SIP_HOLDGIL
Returns the x minimum value (left side of rectangle).
double yMinimum() const SIP_HOLDGIL
Returns the y minimum value (bottom side of rectangle).
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
double height() const SIP_HOLDGIL
Returns the height of the rectangle.
void set(const QgsPointXY &p1, const QgsPointXY &p2)
Sets the rectangle from two QgsPoints.
void setMinimal() SIP_HOLDGIL
Set a rectangle so that min corner is at max and max corner is at min.
double width() const SIP_HOLDGIL
Returns the width of the rectangle.
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.
QList< QgsRelation > referencedRelations(const QgsVectorLayer *layer=nullptr) const
Gets all relations where this layer is the referenced part (i.e.
QList< QgsRelation > referencingRelations(const QgsVectorLayer *layer=nullptr, int fieldIdx=-2) const
Gets all relations where the specified layer (and field) is the referencing part (i....
void relationsLoaded()
Emitted when the relations were loaded after reading a project.
@ Normal
A normal relation.
@ Composition
Fix relation, related elements are part of the parent and a parent copy will copy any children or del...
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.
This class is a composition of two QSettings instances:
T flagValue(const QString &key, const T &defaultValue, const Section section=NoSection)
Returns the setting value for a setting based on a flag.
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
T enumValue(const QString &key, const T &defaultValue, const Section section=NoSection)
Returns the setting value for a setting based on an enum.
Renders the diagrams for all features with the same settings.
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 QgsUnitTypes::RenderUnit decodeSldUom(const QString &str, double *scaleFactor=nullptr)
Decodes a SLD unit of measure string to a render unit.
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)
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.
virtual void cancel()
Notifies the task that it should terminate.
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 setEnabled(bool enabled)
Sets whether the text buffer will be drawn.
void setSizeUnit(QgsUnitTypes::RenderUnit unit)
Sets the units used for the buffer size.
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 setBuffer(const QgsTextBufferSettings &bufferSettings)
Sets the text's buffer settings.
void setSizeUnit(QgsUnitTypes::RenderUnit unit)
Sets the units for the size of rendered text.
This class allows including a set of layers in a database-side transaction, provided the layer data p...
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 Q_INVOKABLE QString toString(QgsUnitTypes::DistanceUnit unit)
Returns a translated string representing a distance unit.
RenderUnit
Rendering size units.
@ RenderPoints
Points (e.g., for font sizes)
This is the 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....
@ ReadLayerMetadata
Provider can read layer metadata from data store. Since QGIS 3.0. See QgsDataProvider::layerMetadata(...
@ SelectAtId
Fast access to features using their ID.
@ DeleteFeatures
Allows deletion of features.
@ CreateLabeling
Provider can set labeling settings using backend-specific formatting information. Since QGIS 3....
@ CreateRenderer
Provider can create feature renderers using backend-specific formatting information....
QgsWkbTypes::Type wkbType() const override=0
Returns the geometry type which is returned by this layer.
virtual bool isSaveAndLoadStyleToDatabaseSupported() const
It returns false by default.
static const int EditingCapabilities
Bitmask of all provider's editing capabilities.
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 empty() const
Returns true if the layer does not contain any feature.
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 bool hasMetadata() const
Returns true if the data source has metadata, false otherwise.
QVariant maximumValue(int index) const override
Returns the maximum value of an attribute.
long featureCount() const override=0
Number of features in the layer.
QgsFields fields() const override=0
Returns the fields associated with this data provider.
QVariant minimumValue(int index) const override
Returns the minimum value of an attribute.
virtual QVariant aggregate(QgsAggregateCalculator::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.
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.
virtual Q_INVOKABLE QgsVectorDataProvider::Capabilities capabilities() const
Returns flags containing the supported capabilities.
QgsVectorDataProviderTemporalCapabilities * temporalCapabilities() override
Returns the provider's temporal capabilities.
QString capabilitiesString() const
Returns the above in friendly format.
void committedAttributesDeleted(const QString &layerId, const QgsAttributeList &deletedAttributes)
Signals emitted after committing changes.
virtual bool deleteFeature(QgsFeatureId fid)
Delete a feature from the layer (but does not commit it)
QgsFeatureMap mAddedFeatures
New features which are not committed.
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)
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 addAttribute(const QgsField &field)
Add an attribute field (but does not commit it) returns true if the field was added.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
virtual bool addFeatures(QgsFeatureList &features)
Insert a copy of the given features into the layer (but does not commit it)
QgsGeometryMap mChangedGeometries
Changed geometries which are not committed.
virtual bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues)
Changes values of attributes (but does not commit it).
QgsAttributeList mDeletedAttributeIds
Deleted attributes fields which are not committed. The list is kept sorted.
QgsFeatureMap addedFeatures() const
Returns a map of new features which are not committed.
QgsFeatureIds mDeletedFeatureIds
Deleted feature IDs which are not committed.
virtual bool isModified() const
Returns true if the provider has been modified since the last commit.
void updateFields(QgsFields &fields)
void committedFeaturesAdded(const QString &layerId, const QgsFeatureList &addedFeatures)
void featureDeleted(QgsFeatureId fid)
void attributeAdded(int idx)
void committedGeometriesChanges(const QString &layerId, const QgsGeometryMap &changedGeometries)
virtual bool addFeature(QgsFeature &f)
Adds a feature.
virtual void rollBack()
Stop editing and discard the edits.
void attributeDeleted(int idx)
void featureAdded(QgsFeatureId fid)
void attributeValueChanged(QgsFeatureId fid, int idx, const QVariant &)
QgsChangedAttributesMap mChangedAttributeValues
Changed attributes values which are not committed.
virtual bool commitChanges(QStringList &commitErrors)
Attempts to commit any changes to disk.
virtual bool deleteAttribute(int attr)
Delete 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)
Q_DECL_DEPRECATED QgsGeometry::OperationResult addRing(const QVector< QgsPointXY > &ring, const QgsFeatureIds &targetFeatureIds=QgsFeatureIds(), QgsFeatureId *modifiedFeatureId=nullptr)
Adds a ring to polygon/multipolygon features.
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)...
QgsVectorLayer::EditResult deleteVertex(QgsFeatureId featureId, int vertex)
Deletes a vertex from a feature.
Q_DECL_DEPRECATED QgsGeometry::OperationResult addPart(const QVector< QgsPointXY > &ring, QgsFeatureId featureId)
Adds a new part polygon to a multipart feature.
int addTopologicalPoints(const QgsGeometry &geom)
Adds topological points for every vertex of the geometry.
Q_DECL_DEPRECATED QgsGeometry::OperationResult 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 QgsGeometry::OperationResult splitParts(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits parts cut by the given line.
Counts the features in a QgsVectorLayer in task.
QHash< QString, long > symbolFeatureCountMap() const
Returns the count for each symbol.
QHash< QString, QgsFeatureIds > symbolFeatureIdMap() const
Returns the QgsFeatureIds for each symbol.
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 QgsVectorJoinList & vectorJoins() const
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.
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 threaded rendering for vector layers.
Manages QGIS Server properties for a vector layer.
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...
static QString guessFriendlyIdentifierField(const QgsFields &fields)
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 data sets.
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.
Q_INVOKABLE QgsWkbTypes::Type wkbType() const FINAL
Returns the WKBType or WKBUnknown in case of error.
VertexMarkerType
Editing vertex markers.
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.
void setExtent(const QgsRectangle &rect) FINAL
Sets the extent.
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
bool writeStyle(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) const FINAL
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.
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.
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...
Q_INVOKABLE QgsWkbTypes::GeometryType geometryType() const
Returns point, line or polygon.
void committedGeometriesChanges(const QString &layerId, const QgsGeometryMap &changedGeometries)
Emitted when geometry changes are saved to the provider.
void editingStopped()
Emitted when edited changes have been successfully written to the data provider.
void beforeCommitChanges(bool stopEditing)
Emitted before changes are committed to the data provider.
Q_INVOKABLE bool startEditing()
Makes the layer editable.
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.
QgsVectorLayer(const QString &path=QString(), const QString &baseName=QString(), const QString &providerLib="ogr", const QgsVectorLayer::LayerOptions &options=QgsVectorLayer::LayerOptions())
Constructor - creates a vector layer.
QgsMapLayerTemporalProperties * temporalProperties() override
Returns temporal properties associated with the vector layer.
void mapTipTemplateChanged()
Emitted when the map tip changes.
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.
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.
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.
void allowCommitChanged()
Emitted whenever the allowCommitChanged() 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...
virtual QString loadNamedStyle(const QString &theURI, bool &resultFlag, bool loadFromLocalDb, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Loads a named style from file/local db/datasource db.
void setFieldConstraint(int index, QgsFieldConstraints::Constraint constraint, QgsFieldConstraints::ConstraintStrength strength=QgsFieldConstraints::ConstraintStrengthHard)
Sets a constraint for a specified field index.
virtual bool isModified() const
Returns true if the provider has been modified since the last commit.
bool loadAuxiliaryLayer(const QgsAuxiliaryStorage &storage, const QString &key=QString())
Loads the auxiliary layer for this vector layer.
bool deleteFeature(QgsFeatureId fid, DeleteContext *context=nullptr)
Deletes a feature from the layer (but does not commit it).
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.
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,...
QgsFields fields() const FINAL
Returns the list of fields of this layer.
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
void removeFeatureRendererGenerator(const QString &id)
Removes the feature renderer with matching id from the layer.
friend class QgsVectorLayerEditPassthrough
void setSimplifyMethod(const QgsVectorSimplifyMethod &simplifyMethod)
Sets the simplification settings for fast rendering of features.
Q_DECL_DEPRECATED QgsGeometry::OperationResult splitFeatures(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits features cut by the given line.
void editCommandDestroyed()
Signal emitted, when an edit command is destroyed.
QgsFieldConstraints::Constraints fieldConstraints(int fieldIndex) const
Returns any constraints which are present for a specified field index.
bool deleteFeatures(const QgsFeatureIds &fids, DeleteContext *context=nullptr)
Deletes a set of features from the layer (but does not commit it)
void setMapTipTemplate(const QString &mapTipTemplate)
The mapTip is a pretty, html representation for feature information.
Q_DECL_DEPRECATED QSet< QString > excludeAttributesWms() const
A set of attributes that are not advertised in WMS requests with QGIS server.
QgsFeatureIds symbolFeatureIds(const QString &legendKey) const
Ids of features rendered with specified legend key.
const QgsDiagramLayerSettings * diagramLayerSettings() const
void removeFieldConstraint(int index, QgsFieldConstraints::Constraint constraint)
Removes a constraint for a specified field index.
void editingStarted()
Emitted when editing on this layer has started.
int selectedFeatureCount() const
Returns the number of features that are selected in this layer.
virtual QString getStyleFromDatabase(const QString &styleId, QString &msgError)
Returns the named style corresponding to style id provided.
void featuresDeleted(const QgsFeatureIds &fids)
Emitted when features have been deleted.
void setLabelsEnabled(bool enabled)
Sets whether labels should be enabled for the layer.
void subsetStringChanged()
Emitted when the layer's subset string has changed.
void setFieldConfigurationFlags(int index, QgsField::ConfigurationFlags flags)
Sets the configuration flags of the field at given index.
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.
void updateExpressionField(int index, const QString &exp)
Changes the expression used to define an expression based (virtual) field.
~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.
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.
EditResult
Result of an edit operation.
@ Success
Edit operation was successful.
@ InvalidLayer
Edit failed due to invalid layer.
void setFeatureBlendMode(QPainter::CompositionMode blendMode)
Sets the blending mode used for rendering each feature.
Q_INVOKABLE void selectByExpression(const QString &expression, QgsVectorLayer::SelectBehavior behavior=QgsVectorLayer::SetSelection)
Selects matching features using an expression.
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.
void setProviderEncoding(const QString &encoding)
Sets the text encoding of the data provider.
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).
void resolveReferences(QgsProject *project) FINAL
Resolves references to other layers (kept as layer IDs after reading XML) into layer objects.
bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues=QgsAttributeMap(), bool skipDefaultValues=false)
Changes attributes' values for a feature (but does not immediately commit the changes).
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.
virtual void saveStyleToDatabase(const QString &name, const QString &description, bool useAsDefault, const QString &uiFileContent, QString &msgError)
Saves named and sld style of the layer to the style table in the db.
bool accept(QgsStyleEntityVisitorInterface *visitor) const override
Q_DECL_DEPRECATED QgsGeometry::OperationResult addRing(const QVector< QgsPointXY > &ring, QgsFeatureId *featureId=nullptr)
Adds a ring to polygon/multipolygon features.
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.
SelectBehavior
Selection behavior.
@ RemoveFromSelection
Remove from current selection.
@ IntersectSelection
Modify current selection to include only select features which match.
@ AddToSelection
Add selection to current selection.
@ SetSelection
Set selection, removing any existing selection.
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.
QgsActionManager * actions()
Returns all layer actions defined on this layer.
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.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
Emitted when attributes are added to the provider.
void setEditFormConfig(const QgsEditFormConfig &editFormConfig)
Sets the editFormConfig (configuration) of the form used to represent this vector layer.
void committedAttributesDeleted(const QString &layerId, const QgsAttributeList &deletedAttributes)
Emitted when attributes are deleted from the provider.
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.
EditResult deleteVertex(QgsFeatureId featureId, int vertex)
Deletes a vertex from a feature.
QgsFeatureIterator getSelectedFeatures(QgsFeatureRequest request=QgsFeatureRequest()) const
Returns an iterator of the selected features.
void setEditorWidgetSetup(int index, const QgsEditorWidgetSetup &setup)
The editor widget setup defines which QgsFieldFormatter and editor widget will be used for the field ...
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
void layerModified()
Emitted when modifications has been done on layer.
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...
QgsVectorDataProvider * dataProvider() FINAL
Returns the layer's data provider, it may be nullptr.
bool setReadOnly(bool readonly=true)
Makes layer read-only (editing disabled) or not.
QgsField::ConfigurationFlags fieldConfigurationFlags(int index) const
Returns the configuration flags of the field at given index.
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 reselect()
Reselects the previous set of selected features.
void select(QgsFeatureId featureId)
Selects feature by its ID.
QgsEditorWidgetSetup editorWidgetSetup(int index) const
The editor widget setup defines which QgsFieldFormatter and editor widget will be used for the field ...
virtual bool deleteStyleFromDatabase(const QString &styleId, QString &msgError)
Deletes a style from the database.
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.
static Q_DECL_DEPRECATED void drawVertexMarker(double x, double y, QPainter &p, QgsVectorLayer::VertexMarkerType type, int vertexSize)
Draws a vertex symbol at (screen) coordinates x, y.
QgsVectorLayer * clone() const override
Returns a new instance equivalent to this one.
Q_DECL_DEPRECATED QgsGeometry::OperationResult addPart(const QList< QgsPointXY > &ring)
Adds a new part polygon to a multipart feature.
QgsAttributeTableConfig attributeTableConfig() const
Returns the attribute table configuration object.
bool readSld(const QDomNode &node, QString &errorMessage) FINAL
QgsFeature getFeature(QgsFeatureId fid) const
Queries the layer for the feature with the given id.
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.
SpatialIndexPresence hasSpatialIndex() const override
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.
bool changeAttributeValue(QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant(), bool skipDefaultValues=false)
Changes an attribute value for a feature (but does not immediately commit the changes).
void setFieldConfigurationFlag(int index, QgsField::ConfigurationFlag flag, bool active)
Sets the given configuration flag for the field at given index to be active or not.
bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) FINAL
Adds a single feature to the sink.
Q_INVOKABLE bool deleteSelectedFeatures(int *deletedCount=nullptr, DeleteContext *context=nullptr)
Deletes the selected features.
void setFieldAlias(int index, const QString &aliasString)
Sets an alias (a display name) for attributes to display in dialogs.
friend class QgsVectorLayerFeatureSource
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.
Q_INVOKABLE void selectByRect(QgsRectangle &rect, QgsVectorLayer::SelectBehavior behavior=QgsVectorLayer::SetSelection)
Selects features found within the search rectangle (in layer's coordinates)
bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context) FINAL
Reads vector layer specific state from project file Dom node.
FeatureAvailability hasFeatures() const FINAL
Determines if this vector layer has features.
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...
Q_DECL_DEPRECATED QgsGeometry::OperationResult splitParts(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits parts cut by the given line.
void setDiagramLayerSettings(const QgsDiagramLayerSettings &s)
QList< QgsWeakRelation > weakRelations() const
Returns the layer's weak relations as specified in the layer's style.
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.
long featureCount() const FINAL
Returns feature count including changes which have not yet been committed If you need only the count ...
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.
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 simplifyDrawingCanbeApplied(const QgsRenderContext &renderContext, QgsVectorSimplifyMethod::SimplifyHint simplifyHint) const
Returns whether the VectorLayer can apply the specified simplification hint.
void beforeRollBack()
Emitted before changes are rolled back.
QgsAttributeList primaryKeyAttributes() const
Returns the list of attributes which make up the layer's primary keys.
const QgsAbstractVectorLayerLabeling * labeling() const
Access to const labeling configuration.
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.
const QgsDiagramRenderer * diagramRenderer() const
Q_INVOKABLE void selectByIds(const QgsFeatureIds &ids, QgsVectorLayer::SelectBehavior behavior=QgsVectorLayer::SetSelection)
Selects matching features using a list of feature IDs.
QVariant aggregate(QgsAggregateCalculator::Aggregate aggregate, const QString &fieldOrExpression, const QgsAggregateCalculator::AggregateParameters ¶meters=QgsAggregateCalculator::AggregateParameters(), QgsExpressionContext *context=nullptr, bool *ok=nullptr, QgsFeatureIds *fids=nullptr) const
Calculates an aggregated value from the layer's 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.
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.
const QgsVectorSimplifyMethod & simplifyMethod() const
Returns the simplification settings for fast rendering of features.
void beforeModifiedCheck() const
Emitted when the layer is checked for modifications. Use for last-minute additions.
Q_INVOKABLE void invertSelection()
Selects not selected features and deselects selected ones.
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...
Q_DECL_DEPRECATED void setDataSource(const QString &dataSource, const QString &baseName, const QString &provider, bool loadDefaultStyleFlag=false)
Update the data source of the layer.
QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const FINAL
Calculates a list of unique values contained within an attribute in the layer.
QgsFeatureRenderer * renderer()
Returns the feature renderer used for rendering the features in the layer in 2D map views.
bool forceLocalOptimization() const
Gets where the simplification executes, after fetch the geometries from provider, or when supported,...
void setSimplifyHints(SimplifyHints simplifyHints)
Sets the simplification hints of the vector layer managed.
float maximumScale() const
Gets the maximum scale at which the layer should be simplified.
void setThreshold(float threshold)
Sets the simplification threshold of the vector layer managed.
void setSimplifyAlgorithm(SimplifyAlgorithm simplifyAlgorithm)
Sets the local simplification algorithm of the vector layer managed.
void setForceLocalOptimization(bool localOptimization)
Sets where the simplification executes, after fetch the geometries from provider, or when supported,...
SimplifyHints simplifyHints() const
Gets the simplification hints of the vector layer managed.
SimplifyAlgorithm simplifyAlgorithm() const
Gets the local simplification algorithm of the vector layer managed.
float threshold() const
Gets the simplification threshold of the vector layer managed.
SimplifyHint
Simplification flags for fast rendering of features.
SimplifyAlgorithm
Types of local simplification algorithms that can be used.
void setMaximumScale(float maximumScale)
Sets the maximum scale at which the layer should be simplified.
@ Referencing
The layer is referencing.
@ Referenced
The layer is referenced.
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 GeometryType geometryType(Type type) SIP_HOLDGIL
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
static QString geometryDisplayString(GeometryType type) SIP_HOLDGIL
Returns a display string for a geometry type.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
Type
The WKB type describes the number of dimensions a geometry has.
static QString displayString(Type type) SIP_HOLDGIL
Returns a non-translated display string type for a WKB type, e.g., the geometry name used in WKT geom...
static QDomElement writeVariant(const QVariant &value, QDomDocument &doc)
Write a QVariant to a QDomElement.
static QVariant readVariant(const QDomElement &element)
Read a QVariant from a QDomElement.
static QgsRectangle readRectangle(const QDomElement &element)
QgsMapLayerType
Types of layers that can be added to a map.
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 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.
QString qgsEnumValueToKey(const T &value)
Returns the value for the given key of an enum.
T qgsFlagKeysToValue(const QString &keys, const T &defaultValue)
Returns the value corresponding to the given keys of a flag.
QMap< QString, QString > QgsStringMap
QString qgsFlagValueToKeys(const T &value)
Returns the value for the given keys of a flag.
T qgsEnumKeyToValue(const QString &key, const T &defaultValue, bool tryValueAsKey=true)
Returns the value corresponding to the given key of an enum.
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)
QMap< int, QgsPropertyDefinition > QgsPropertiesDefinition
Definition of available properties.
#define RENDERER_TAG_NAME
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)
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.
QgsWkbTypes::Type fallbackWkbType
Fallback geometry type.
bool skipCrsValidation
Controls whether the layer is allowed to have an invalid/unknown CRS.
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.