92#include <QPainterPath>
94#include <QProgressDialog>
98#include <QStringBuilder>
100#include <QUndoCommand>
103#include <QRegularExpression>
120#ifdef TESTPROVIDERLIB
126 const QString &qmlStyle,
127 const QString &sldStyle,
128 const QString &styleName,
129 const QString &styleDescription,
130 const QString &uiFileContent,
144 QStringList &descriptions,
162 const QString &baseName,
163 const QString &providerKey,
168 , mAuxiliaryLayer( nullptr )
169 , mAuxiliaryLayerKey( QString() )
170 , mReadExtentFromXml( options.readExtentFromXml )
171 , mRefreshRendererTimer( new QTimer( this ) )
182 mGeometryOptions = std::make_unique<QgsGeometryOptions>();
186 mStoredExpressionManager->setParent(
this );
189 mJoinBuffer->setParent(
this );
194 if ( !vectorLayerPath.isEmpty() && !
mProviderKey.isEmpty() )
197 QgsDataProvider::ReadFlags providerFlags = QgsDataProvider::ReadFlags();
205 mDataSourceReadOnly =
true;
207 setDataSource( vectorLayerPath, baseName, providerKey, providerOptions, providerFlags );
212 if ( !mAttributeAliasMap.contains(
field.
name() ) )
213 mAttributeAliasMap.insert(
field.
name(), QString() );
219 if ( !mTemporalProperties->
isActive() )
244 connect( mRefreshRendererTimer, &QTimer::timeout,
this, [ = ] {
triggerRepaint(
true ); } );
253 delete mDataProvider;
256 delete mExpressionFieldBuffer;
258 delete mDiagramLayerSettings;
259 delete mDiagramRenderer;
264 delete mConditionalStyles;
265 delete mStoredExpressionManager;
267 if ( mFeatureCounter )
268 mFeatureCounter->
cancel();
270 qDeleteAll( mRendererGenerators );
291 options.forceReadOnly = mDataSourceReadOnly;
299 QList<QgsVectorLayerJoinInfo> joins =
vectorJoins();
300 const auto constJoins = joins;
321 for (
const QgsAction &action : constActions )
358 auto constraintIt = constraints.constBegin();
359 for ( ; constraintIt != constraints.constEnd(); ++ constraintIt )
375 layer->mElevationProperties = mElevationProperties->
clone();
376 layer->mElevationProperties->setParent( layer );
408 return mDataProvider && mDataProvider->
isSqlQuery();
469 p.setPen( QColor( 50, 100, 120, 200 ) );
470 p.setBrush( QColor( 200, 200, 210, 120 ) );
471 p.drawEllipse( x - m, y - m, m * 2 + 1, m * 2 + 1 );
475 p.setPen( QColor( 255, 0, 0 ) );
476 p.drawLine( x - m, y + m, x + m, y - m );
477 p.drawLine( x - m, y - m, x + m, y + m );
489 mSelectedFeatureIds.insert( fid );
490 mPreviousSelectedFeatureIds.clear();
499 mSelectedFeatureIds.unite( featureIds );
500 mPreviousSelectedFeatureIds.clear();
509 mSelectedFeatureIds.remove( fid );
510 mPreviousSelectedFeatureIds.clear();
519 mSelectedFeatureIds.subtract( featureIds );
520 mPreviousSelectedFeatureIds.clear();
535 .setFilterRect( rect )
537 .setNoAttributes() );
542 newSelection << feat.
id();
555 std::optional< QgsExpressionContext > defaultContext;
559 context = &defaultContext.value();
578 newSelection << feat.
id();
600 bool matches = exp.
evaluate( context ).toBool();
604 newSelection << feat.
id();
608 newSelection << feat.
id();
629 newSelection = mSelectedFeatureIds + ids;
633 newSelection = mSelectedFeatureIds - ids;
637 newSelection = mSelectedFeatureIds.intersect( ids );
641 QgsFeatureIds deselectedFeatures = mSelectedFeatureIds - newSelection;
642 mSelectedFeatureIds = newSelection;
643 mPreviousSelectedFeatureIds.clear();
653 if ( !intersectingIds.isEmpty() )
655 QgsDebugMsgLevel( QStringLiteral(
"Trying to select and deselect the same item at the same time. Unsure what to do. Selecting dubious items." ), 3 );
658 mSelectedFeatureIds -= deselectIds;
659 mSelectedFeatureIds += selectIds;
660 mPreviousSelectedFeatureIds.clear();
670 ids.subtract( mSelectedFeatureIds );
689 .setFilterRect( rect )
691 .setNoAttributes() );
699 if ( mSelectedFeatureIds.contains( fet.
id() ) )
701 deselectIds << fet.
id();
705 selectIds << fet.
id();
716 if ( mSelectedFeatureIds.isEmpty() )
721 mPreviousSelectedFeatureIds = previous;
728 if ( mPreviousSelectedFeatureIds.isEmpty() || !mSelectedFeatureIds.empty() )
739 return mDataProvider;
747 return mDataProvider;
754 return mTemporalProperties;
761 return mElevationProperties;
777 if (
isValid() && mDataProvider && mDataProvider->
encoding() != encoding )
788 delete mDiagramRenderer;
789 mDiagramRenderer = r;
813 if ( !
isValid() || !
isSpatial() || mSelectedFeatureIds.isEmpty() || !mDataProvider )
825 .setFilterFids( mSelectedFeatureIds )
826 .setNoAttributes() );
839 .setNoAttributes() );
843 if ( mSelectedFeatureIds.contains( fet.
id() ) )
854 if ( retval.
width() == 0.0 || retval.
height() == 0.0 )
863 retval.
set( -1.0, -1.0, 1.0, 1.0 );
875 return mLabelsEnabled &&
static_cast< bool >( mLabeling );
882 mLabelsEnabled = enabled;
890 if ( !mDiagramRenderer || !mDiagramLayerSettings )
893 QList<QgsDiagramSettings> settingList = mDiagramRenderer->
diagramSettings();
894 if ( !settingList.isEmpty() )
896 return settingList.at( 0 ).enabled;
905 if ( !mSymbolFeatureCounted )
908 return mSymbolFeatureCountMap.value( legendKey, -1 );
915 if ( !mSymbolFeatureCounted )
918 return mSymbolFeatureIdMap.value( legendKey,
QgsFeatureIds() );
924 if ( ( mSymbolFeatureCounted || mFeatureCounter ) && !( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
925 return mFeatureCounter;
927 mSymbolFeatureCountMap.clear();
928 mSymbolFeatureIdMap.clear();
933 return mFeatureCounter;
935 if ( !mDataProvider )
938 return mFeatureCounter;
943 return mFeatureCounter;
946 if ( !mFeatureCounter || ( storeSymbolFids && mSymbolFeatureIdMap.isEmpty() ) )
949 connect( mFeatureCounter, &
QgsTask::taskCompleted,
this, &QgsVectorLayer::onFeatureCounterCompleted, Qt::UniqueConnection );
950 connect( mFeatureCounter, &
QgsTask::taskTerminated,
this, &QgsVectorLayer::onFeatureCounterTerminated, Qt::UniqueConnection );
954 return mFeatureCounter;
962 if ( force || !mReadExtentFromXml || ( mReadExtentFromXml && mXmlExtent.
isNull() ) )
963 mValidExtent =
false;
978 if ( !mDefaultValueOnUpdateFields.isEmpty() )
983 int size = mFields.
size();
984 for (
int idx : std::as_const( mDefaultValueOnUpdateFields ) )
986 if ( idx < 0 || idx >= size )
1005 if ( !mValidExtent && mLazyExtent && mReadExtentFromXml && !mXmlExtent.
isNull() )
1007 updateExtent( mXmlExtent );
1008 mValidExtent =
true;
1009 mLazyExtent =
false;
1012 if ( !mValidExtent && mLazyExtent && mDataProvider && mDataProvider->
isValid() )
1015 updateExtent( mDataProvider->
extent() );
1016 mValidExtent =
true;
1017 mLazyExtent =
false;
1020 QgsDebugMsgLevel( QStringLiteral(
"Extent of layer: %1" ).arg( mExtent.toString() ), 3 );
1026 if ( !
isValid() || !mDataProvider )
1028 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1032 if ( !mEditBuffer ||
1046 if ( mEditBuffer && !mDataProvider->
transaction() )
1049 for ( QgsFeatureMap::const_iterator it = addedFeatures.constBegin(); it != addedFeatures.constEnd(); ++it )
1051 if ( it->hasGeometry() )
1062 .setNoAttributes() );
1075 if ( rect.xMinimum() > rect.xMaximum() && rect.yMinimum() > rect.yMaximum() )
1081 updateExtent( rect );
1082 mValidExtent =
true;
1101 if ( !
isValid() || !mDataProvider )
1103 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider" ), 3 );
1104 return customProperty( QStringLiteral(
"storedSubsetString" ) ).toString();
1113 if ( !
isValid() || !mDataProvider )
1115 QgsDebugMsgLevel( QStringLiteral(
"invoked with invalid layer or null mDataProvider or while editing" ), 3 );
1119 else if ( mEditBuffer )
1151 double maximumSimplificationScale = mSimplifyMethod.
maximumScale();
1154 return !( maximumSimplificationScale > 1 && renderContext.
rendererScale() <= maximumSimplificationScale );
1163 return mConditionalStyles;
1171 if ( !
isValid() || !mDataProvider )
1183 if ( feature.isValid() )
1184 return feature.geometry();
1193 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1197 if ( mGeometryOptions->isActive() )
1200 mGeometryOptions->apply( geom );
1204 bool success = mEditBuffer->
addFeature( feature );
1211 success = mJoinBuffer->
addFeature( feature );
1221 if ( !mEditBuffer || !mDataProvider )
1227 if ( currentFeature.
isValid() )
1229 bool hasChanged =
false;
1230 bool hasError =
false;
1242 QgsDebugMsgLevel( QStringLiteral(
"geometry of feature %1 could not be changed." ).arg( updatedFeature.
id() ), 3 );
1249 for (
int attr = 0; attr < fa.count(); ++attr )
1259 QgsDebugMsgLevel( QStringLiteral(
"attribute %1 of feature %2 could not be changed." ).arg( attr ).arg( updatedFeature.
id() ), 3 );
1264 if ( hasChanged && !mDefaultValueOnUpdateFields.isEmpty() && !skipDefaultValues )
1265 updateDefaultValues( updatedFeature.
id(), updatedFeature );
1271 QgsDebugMsgLevel( QStringLiteral(
"feature %1 could not be retrieved" ).arg( updatedFeature.
id() ), 3 );
1281 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1285 bool result = utils.
insertVertex( x, y, atFeatureId, beforeVertex );
1296 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1300 bool result = utils.
insertVertex( point, atFeatureId, beforeVertex );
1311 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1315 bool result = utils.
moveVertex( x, y, atFeatureId, atVertex );
1326 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1330 bool result = utils.
moveVertex( p, atFeatureId, atVertex );
1341 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1368 int count = mSelectedFeatureIds.size();
1381 *deletedCount = deleted;
1384 return deleted == count;
1387static const QgsPointSequence vectorPointXY2pointSequence(
const QVector<QgsPointXY> &points )
1390 pts.reserve( points.size() );
1391 QVector<QgsPointXY>::const_iterator it = points.constBegin();
1392 while ( it != points.constEnd() )
1403 return addRing( vectorPointXY2pointSequence( ring ), featureId );
1410 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1417 if ( !mSelectedFeatureIds.isEmpty() )
1419 result = utils.
addRing( ring, mSelectedFeatureIds, featureId );
1435 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1456 if ( !mSelectedFeatureIds.isEmpty() )
1458 result = utils.
addRing(
static_cast< QgsCurve *
>( ring->
clone() ), mSelectedFeatureIds, featureId );
1476 pts.reserve( points.size() );
1477 for ( QList<QgsPointXY>::const_iterator it = points.constBegin(); it != points.constEnd() ; ++it )
1484#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
1489 return addPart( vectorPointXY2pointSequence( points ) );
1497 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1502 if ( mSelectedFeatureIds.empty() )
1507 else if ( mSelectedFeatureIds.size() > 1 )
1525 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1530 if ( mSelectedFeatureIds.empty() )
1535 else if ( mSelectedFeatureIds.size() > 1 )
1554 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1569 return splitParts( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1576 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1580 return utils.
splitParts( splitLine, topologicalEditing );
1587 return splitFeatures( vectorPointXY2pointSequence( splitLine ), topologicalEditing );
1596 bool preserveCircular =
false;
1597 return splitFeatures( &splitLineString, topologyTestPoints, preserveCircular, topologicalEditing );
1604 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1608 return utils.
splitFeatures( curve, topologyTestPoints, preserveCircular, topologicalEditing );
1615 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1633 if ( !
isValid() || !mEditBuffer || !mDataProvider )
1644 if ( !
mValid || !mEditBuffer || !mDataProvider )
1669 if ( !
isValid() || !mDataProvider )
1703 if ( mDataProvider )
1719 if ( !mRenderer->
accept( visitor ) )
1723 if ( !mLabeling->
accept( visitor ) )
1736 QDomNode pkeyNode = layer_node.namedItem( QStringLiteral(
"provider" ) );
1738 if ( pkeyNode.isNull() )
1744 QDomElement pkeyElt = pkeyNode.toElement();
1754 else if (
mDataSource.contains( QLatin1String(
"dbname=" ) ) )
1763 const QDomElement elem = layer_node.toElement();
1777 if ( elem.hasAttribute( QStringLiteral(
"wkbType" ) ) )
1778 mWkbType =
qgsEnumKeyToValue( elem.attribute( QStringLiteral(
"wkbType" ) ), mWkbType );
1781 QDomElement pkeyElem = pkeyNode.toElement();
1782 if ( !pkeyElem.isNull() )
1784 QString encodingString = pkeyElem.attribute( QStringLiteral(
"encoding" ) );
1785 if ( mDataProvider && !encodingString.isEmpty() )
1792 mJoinBuffer->
readXml( layer_node );
1797 mSetLegendFromStyle =
false;
1807 QDomNode depsNode = layer_node.namedItem( QStringLiteral(
"dataDependencies" ) );
1808 QDomNodeList depsNodes = depsNode.childNodes();
1809 QSet<QgsMapLayerDependency> sources;
1810 for (
int i = 0; i < depsNodes.count(); i++ )
1812 QString
source = depsNodes.at( i ).toElement().attribute( QStringLiteral(
"id" ) );
1817 if ( !mSetLegendFromStyle )
1823 mReadExtentFromXml =
true;
1825 if ( mReadExtentFromXml )
1827 const QDomNode extentNode = layer_node.namedItem( QStringLiteral(
"extent" ) );
1828 if ( !extentNode.isNull() )
1835 const QDomNode asNode = layer_node.namedItem( QStringLiteral(
"auxiliaryLayer" ) );
1836 const QDomElement asElem = asNode.toElement();
1837 if ( !asElem.isNull() )
1839 mAuxiliaryLayerKey = asElem.attribute( QStringLiteral(
"key" ) );
1843 mServerProperties->readXml( layer_node );
1850void QgsVectorLayer::setDataSourcePrivate(
const QString &dataSource,
const QString &baseName,
const QString &provider,
1859 setDataProvider( provider, options,
flags );
1869 bool loadDefaultStyleFlag =
false;
1872 loadDefaultStyleFlag =
true;
1878 std::unique_ptr< QgsScopedRuntimeProfile > profile;
1880 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Load layer style" ), QStringLiteral(
"projectload" ) );
1882 bool defaultLoadedFlag =
false;
1890 mSetLegendFromStyle =
false;
1895 if ( !defaultLoadedFlag && loadDefaultStyleFlag )
1903 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->
createRenderer() );
1904 if ( defaultRenderer )
1906 defaultLoadedFlag =
true;
1912 if ( !defaultLoadedFlag &&
isSpatial() )
1918 if ( !mSetLegendFromStyle )
1923 std::unique_ptr< QgsAbstractVectorLayerLabeling > defaultLabeling( mDataProvider->
createLabeling() );
1924 if ( defaultLabeling )
1931 styleChangedSignalBlocker.release();
1948 QStringList ids, names, descriptions;
1949 QString errorMessage;
1951 const int relatedStylesCount {
listStylesInDatabase( ids, names, descriptions, errorMessage ) };
1952 Q_ASSERT( ids.count() == names.count() );
1953 const QString currentStyleName { mStyleManager->currentStyle() };
1954 for (
int i = 0; i < relatedStylesCount; ++i )
1956 if ( names.at( i ) == currentStyleName )
1960 errorMessage.clear();
1962 if ( ! styleXml.isEmpty() && errorMessage.isEmpty() )
1968 QgsDebugMsgLevel( QStringLiteral(
"Error retrieving style %1 from DB: %2" ).arg( ids.at( i ), errorMessage ), 2 );
1978 std::unique_ptr< QgsFeatureRenderer > defaultRenderer( mDataProvider->
createRenderer() );
1979 if ( defaultRenderer )
1995 delete mDataProvider;
2002 if ( provider.compare( QLatin1String(
"postgres" ) ) == 0 )
2004 const QString checkUnicityKey { QStringLiteral(
"checkPrimaryKeyUnicity" ) };
2006 if ( ! uri.hasParam( checkUnicityKey ) )
2008 uri.setParam( checkUnicityKey, mReadExtentFromXml ?
"0" :
"1" );
2013 std::unique_ptr< QgsScopedRuntimeProfile > profile;
2015 profile = std::make_unique< QgsScopedRuntimeProfile >( tr(
"Create %1 provider" ).arg( provider ), QStringLiteral(
"projectload" ) );
2018 mDataProvider = qobject_cast< QgsVectorDataProvider * >(
mPreloadedProvider.release() );
2022 if ( !mDataProvider )
2029 mDataProvider->setParent(
this );
2032 QgsDebugMsgLevel( QStringLiteral(
"Instantiated the data provider plugin" ), 2 );
2042 profile->switchTask( tr(
"Read layer metadata" ) );
2049 newMetadata.
combine( &mMetadata );
2052 QgsDebugMsgLevel( QStringLiteral(
"Set Data provider QgsLayerMetadata identifier[%1]" ).arg(
metadata().identifier() ), 4 );
2059 mWkbType = mDataProvider->
wkbType();
2075 if ( !mAttributeSplitPolicy.contains(
field.
name() ) )
2082 profile->switchTask( tr(
"Read layer fields" ) );
2093 const thread_local QRegularExpression reg( R
"lit("[^"]+"\."([^"] + )"( \([^)]+\))?)lit" );
2094 const QRegularExpressionMatch match = reg.match(
name() );
2095 if ( match.hasMatch() )
2097 QStringList stuff = match.capturedTexts();
2098 QString lName = stuff[1];
2102 QMap<QString, QgsMapLayer *>::const_iterator it;
2103 for ( it = layers.constBegin(); it != layers.constEnd() && ( *it )->name() != lName; ++it )
2106 if ( it != layers.constEnd() && stuff.size() > 2 )
2108 lName +=
'.' + stuff[2].mid( 2, stuff[2].length() - 3 );
2111 if ( !lName.isEmpty() )
2121 else if ( provider == QLatin1String(
"ogr" ) )
2125 if (
mDataSource.right( 10 ) == QLatin1String(
"|layerid=0" ) )
2128 else if ( provider == QLatin1String(
"memory" ) )
2133 else if ( provider == QLatin1String(
"hana" ) )
2150 QDomDocument &document,
2157 QDomElement mapLayerNode = layer_node.toElement();
2159 if ( mapLayerNode.isNull() || (
"maplayer" != mapLayerNode.nodeName() ) )
2172 if ( mDataProvider )
2174 QDomElement provider = document.createElement( QStringLiteral(
"provider" ) );
2175 provider.setAttribute( QStringLiteral(
"encoding" ), mDataProvider->
encoding() );
2176 QDomText providerText = document.createTextNode(
providerType() );
2177 provider.appendChild( providerText );
2178 layer_node.appendChild( provider );
2182 mJoinBuffer->
writeXml( layer_node, document );
2185 QDomElement dependenciesElement = document.createElement( QStringLiteral(
"layerDependencies" ) );
2191 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
2192 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
2193 dependenciesElement.appendChild( depElem );
2195 layer_node.appendChild( dependenciesElement );
2198 QDomElement dataDependenciesElement = document.createElement( QStringLiteral(
"dataDependencies" ) );
2203 QDomElement depElem = document.createElement( QStringLiteral(
"layer" ) );
2204 depElem.setAttribute( QStringLiteral(
"id" ), dep.layerId() );
2205 dataDependenciesElement.appendChild( depElem );
2207 layer_node.appendChild( dataDependenciesElement );
2210 mExpressionFieldBuffer->
writeXml( layer_node, document );
2215 QDomElement asElem = document.createElement( QStringLiteral(
"auxiliaryLayer" ) );
2216 if ( mAuxiliaryLayer )
2218 const QString pkField = mAuxiliaryLayer->joinInfo().targetFieldName();
2219 asElem.setAttribute( QStringLiteral(
"key" ), pkField );
2221 layer_node.appendChild( asElem );
2224 mServerProperties->writeXml( layer_node, document );
2228 return writeSymbology( layer_node, document, errorMsg, context );
2267 if ( categories.testFlag(
Fields ) )
2269 if ( !mExpressionFieldBuffer )
2271 mExpressionFieldBuffer->
readXml( layerNode );
2283 QDomNodeList referencedLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencedLayers" ) );
2284 if ( referencedLayersNodeList.size() > 0 )
2286 const QDomNodeList relationNodes { referencedLayersNodeList.at( 0 ).childNodes() };
2287 for (
int i = 0; i < relationNodes.length(); ++i )
2289 const QDomElement relationElement = relationNodes.at( i ).toElement();
2296 QDomNodeList referencingLayersNodeList = layerNode.toElement().elementsByTagName( QStringLiteral(
"referencingLayers" ) );
2297 if ( referencingLayersNodeList.size() > 0 )
2299 const QDomNodeList relationNodes { referencingLayersNodeList.at( 0 ).childNodes() };
2300 for (
int i = 0; i < relationNodes.length(); ++i )
2302 const QDomElement relationElement = relationNodes.at( i ).toElement();
2308 QDomElement layerElement = layerNode.toElement();
2312 readStyle( layerNode, errorMessage, context, categories );
2314 if ( categories.testFlag(
MapTips ) )
2316 QDomElement mapTipElem = layerNode.namedItem( QStringLiteral(
"mapTip" ) ).toElement();
2318 setMapTipsEnabled( mapTipElem.attribute( QStringLiteral(
"enabled" ), QStringLiteral(
"1" ) ).toInt() == 1 );
2322 mDisplayExpression = layerNode.namedItem( QStringLiteral(
"previewExpression" ) ).toElement().text();
2325 QString
displayField = layerNode.namedItem( QStringLiteral(
"displayfield" ) ).toElement().text();
2329 if ( mMapTipTemplate.isEmpty() && categories.testFlag(
MapTips ) )
2339 if ( categories.testFlag(
Actions ) )
2340 mActions->
readXml( layerNode );
2342 if ( categories.testFlag(
Fields ) )
2347 QDomNode aliasesNode = layerNode.namedItem( QStringLiteral(
"aliases" ) );
2348 if ( !aliasesNode.isNull() )
2350 QDomElement aliasElem;
2352 QDomNodeList aliasNodeList = aliasesNode.toElement().elementsByTagName( QStringLiteral(
"alias" ) );
2353 for (
int i = 0; i < aliasNodeList.size(); ++i )
2355 aliasElem = aliasNodeList.at( i ).toElement();
2358 if ( aliasElem.hasAttribute( QStringLiteral(
"field" ) ) )
2360 field = aliasElem.attribute( QStringLiteral(
"field" ) );
2364 int index = aliasElem.attribute( QStringLiteral(
"index" ) ).toInt();
2366 if ( index >= 0 && index <
fields().count() )
2372 if ( !aliasElem.attribute( QStringLiteral(
"name" ) ).isEmpty() )
2375 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), aliasElem.attribute( QStringLiteral(
"name" ) ) );
2376 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " + aliasElem.attribute( QStringLiteral(
"name" ) ), 3 );
2381 alias = context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ),
field );
2382 QgsDebugMsgLevel(
"context" + QStringLiteral(
"project:layers:%1:fieldaliases" ).arg( layerNode.namedItem( QStringLiteral(
"id" ) ).toElement().text() ) +
" source " +
field, 3 );
2384 if ( alias == aliasElem.attribute( QStringLiteral(
"field" ) ) )
2388 QgsDebugMsgLevel(
"field " +
field +
" origalias " + aliasElem.attribute( QStringLiteral(
"name" ) ) +
" trans " + alias, 3 );
2389 mAttributeAliasMap.insert(
field, alias );
2396 const QDomNode splitPoliciesNode = layerNode.namedItem( QStringLiteral(
"splitPolicies" ) );
2397 if ( !splitPoliciesNode.isNull() )
2399 const QDomNodeList splitPolicyNodeList = splitPoliciesNode.toElement().elementsByTagName( QStringLiteral(
"policy" ) );
2400 for (
int i = 0; i < splitPolicyNodeList.size(); ++i )
2402 const QDomElement splitPolicyElem = splitPolicyNodeList.at( i ).toElement();
2403 const QString
field = splitPolicyElem.attribute( QStringLiteral(
"field" ) );
2405 mAttributeSplitPolicy.insert(
field, policy );
2410 mDefaultExpressionMap.clear();
2411 QDomNode defaultsNode = layerNode.namedItem( QStringLiteral(
"defaults" ) );
2412 if ( !defaultsNode.isNull() )
2414 QDomNodeList defaultNodeList = defaultsNode.toElement().elementsByTagName( QStringLiteral(
"default" ) );
2415 for (
int i = 0; i < defaultNodeList.size(); ++i )
2417 QDomElement defaultElem = defaultNodeList.at( i ).toElement();
2419 QString
field = defaultElem.attribute( QStringLiteral(
"field" ), QString() );
2420 QString expression = defaultElem.attribute( QStringLiteral(
"expression" ), QString() );
2421 bool applyOnUpdate = defaultElem.attribute( QStringLiteral(
"applyOnUpdate" ), QStringLiteral(
"0" ) ) == QLatin1String(
"1" );
2422 if (
field.isEmpty() || expression.isEmpty() )
2430 mFieldConstraints.clear();
2431 mFieldConstraintStrength.clear();
2432 QDomNode constraintsNode = layerNode.namedItem( QStringLiteral(
"constraints" ) );
2433 if ( !constraintsNode.isNull() )
2435 QDomNodeList constraintNodeList = constraintsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2436 for (
int i = 0; i < constraintNodeList.size(); ++i )
2438 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2440 QString
field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2441 int constraints = constraintElem.attribute( QStringLiteral(
"constraints" ), QStringLiteral(
"0" ) ).toInt();
2442 if (
field.isEmpty() || constraints == 0 )
2445 mFieldConstraints.insert(
field,
static_cast< QgsFieldConstraints::Constraints
>( constraints ) );
2447 int uniqueStrength = constraintElem.attribute( QStringLiteral(
"unique_strength" ), QStringLiteral(
"1" ) ).toInt();
2448 int notNullStrength = constraintElem.attribute( QStringLiteral(
"notnull_strength" ), QStringLiteral(
"1" ) ).toInt();
2449 int expStrength = constraintElem.attribute( QStringLiteral(
"exp_strength" ), QStringLiteral(
"1" ) ).toInt();
2456 mFieldConstraintExpressions.clear();
2457 QDomNode constraintExpressionsNode = layerNode.namedItem( QStringLiteral(
"constraintExpressions" ) );
2458 if ( !constraintExpressionsNode.isNull() )
2460 QDomNodeList constraintNodeList = constraintExpressionsNode.toElement().elementsByTagName( QStringLiteral(
"constraint" ) );
2461 for (
int i = 0; i < constraintNodeList.size(); ++i )
2463 QDomElement constraintElem = constraintNodeList.at( i ).toElement();
2465 QString
field = constraintElem.attribute( QStringLiteral(
"field" ), QString() );
2466 QString exp = constraintElem.attribute( QStringLiteral(
"exp" ), QString() );
2467 QString desc = constraintElem.attribute( QStringLiteral(
"desc" ), QString() );
2468 if (
field.isEmpty() || exp.isEmpty() )
2471 mFieldConstraintExpressions.insert(
field, qMakePair( exp, desc ) );
2479 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
2483 QDomElement widgetsElem = layerNode.namedItem( QStringLiteral(
"fieldConfiguration" ) ).toElement();
2484 QDomNodeList fieldConfigurationElementList = widgetsElem.elementsByTagName( QStringLiteral(
"field" ) );
2485 for (
int i = 0; i < fieldConfigurationElementList.size(); ++i )
2487 const QDomElement fieldConfigElement = fieldConfigurationElementList.at( i ).toElement();
2488 const QDomElement fieldWidgetElement = fieldConfigElement.elementsByTagName( QStringLiteral(
"editWidget" ) ).at( 0 ).toElement();
2490 QString fieldName = fieldConfigElement.attribute( QStringLiteral(
"name" ) );
2492 if ( categories.testFlag(
Fields ) )
2496 if ( categories.testFlag(
Forms ) )
2498 const QString widgetType = fieldWidgetElement.attribute( QStringLiteral(
"type" ) );
2499 const QDomElement cfgElem = fieldConfigElement.elementsByTagName( QStringLiteral(
"config" ) ).at( 0 ).toElement();
2500 const QDomElement optionsElem = cfgElem.childNodes().at( 0 ).toElement();
2502 if ( widgetType == QLatin1String(
"ValueRelation" ) )
2504 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() );
2507 mFieldWidgetSetups[fieldName] = setup;
2514 if ( categories.testFlag(
Fields ) )
2516 const QList<QPair<QString, QgsField::ConfigurationFlag>> legacyConfig
2521 for (
const auto &config : legacyConfig )
2523 QDomNode excludeNode = layerNode.namedItem( config.first );
2524 if ( !excludeNode.isNull() )
2526 QDomNodeList attributeNodeList = excludeNode.toElement().elementsByTagName( QStringLiteral(
"attribute" ) );
2527 for (
int i = 0; i < attributeNodeList.size(); ++i )
2529 QString fieldName = attributeNodeList.at( i ).toElement().text();
2530 if ( !mFieldConfigurationFlags.contains( fieldName ) )
2531 mFieldConfigurationFlags[fieldName] = config.second;
2533 mFieldConfigurationFlags[fieldName].setFlag( config.second,
true );
2540 mGeometryOptions->readXml( layerNode.namedItem( QStringLiteral(
"geometryOptions" ) ) );
2542 if ( categories.testFlag(
Forms ) )
2543 mEditFormConfig.
readXml( layerNode, context );
2547 mAttributeTableConfig.
readXml( layerNode );
2548 mConditionalStyles->
readXml( layerNode, context );
2549 mStoredExpressionManager->
readXml( layerNode );
2555 QDomElement mapLayerNode = layerNode.toElement();
2557 && mapLayerNode.attribute( QStringLiteral(
"readOnly" ), QStringLiteral(
"0" ) ).toInt() == 1 )
2562 if ( categories.testFlag(
Legend ) )
2566 const QDomElement legendElem = layerNode.firstChildElement( QStringLiteral(
"legend" ) );
2567 if ( !legendElem.isNull() )
2572 mSetLegendFromStyle =
true;
2602 if ( !rendererElement.isNull() )
2622 if ( categories.testFlag(
Labeling ) )
2626 QDomElement labelingElement = node.firstChildElement( QStringLiteral(
"labeling" ) );
2628 if ( labelingElement.isNull() ||
2629 ( labelingElement.attribute( QStringLiteral(
"type" ) ) == QLatin1String(
"simple" ) && labelingElement.firstChildElement( QStringLiteral(
"settings" ) ).isNull() ) )
2637 labeling = readLabelingFromCustomProperties();
2645 if ( node.toElement().hasAttribute( QStringLiteral(
"labelsEnabled" ) ) )
2646 mLabelsEnabled = node.toElement().attribute( QStringLiteral(
"labelsEnabled" ) ).toInt();
2648 mLabelsEnabled =
true;
2654 QDomNode blendModeNode = node.namedItem( QStringLiteral(
"blendMode" ) );
2655 if ( !blendModeNode.isNull() )
2657 QDomElement e = blendModeNode.toElement();
2662 QDomNode featureBlendModeNode = node.namedItem( QStringLiteral(
"featureBlendMode" ) );
2663 if ( !featureBlendModeNode.isNull() )
2665 QDomElement e = featureBlendModeNode.toElement();
2673 QDomNode layerTransparencyNode = node.namedItem( QStringLiteral(
"layerTransparency" ) );
2674 if ( !layerTransparencyNode.isNull() )
2676 QDomElement e = layerTransparencyNode.toElement();
2677 setOpacity( 1.0 - e.text().toInt() / 100.0 );
2679 QDomNode layerOpacityNode = node.namedItem( QStringLiteral(
"layerOpacity" ) );
2680 if ( !layerOpacityNode.isNull() )
2682 QDomElement e = layerOpacityNode.toElement();
2686 const bool hasScaleBasedVisibiliy { node.attributes().namedItem( QStringLiteral(
"hasScaleBasedVisibilityFlag" ) ).nodeValue() ==
'1' };
2689 const double maxScale { node.attributes().namedItem( QStringLiteral(
"maxScale" ) ).nodeValue().toDouble( &ok ) };
2694 const double minScale { node.attributes().namedItem( QStringLiteral(
"minScale" ) ).nodeValue().toDouble( &ok ) };
2700 QDomElement e = node.toElement();
2703 mSimplifyMethod.
setSimplifyHints(
static_cast< QgsVectorSimplifyMethod::SimplifyHints
>( e.attribute( QStringLiteral(
"simplifyDrawingHints" ), QStringLiteral(
"1" ) ).toInt() ) );
2705 mSimplifyMethod.
setThreshold( e.attribute( QStringLiteral(
"simplifyDrawingTol" ), QStringLiteral(
"1" ) ).toFloat() );
2706 mSimplifyMethod.
setForceLocalOptimization( e.attribute( QStringLiteral(
"simplifyLocal" ), QStringLiteral(
"1" ) ).toInt() );
2707 mSimplifyMethod.
setMaximumScale( e.attribute( QStringLiteral(
"simplifyMaxScale" ), QStringLiteral(
"1" ) ).toFloat() );
2710 mRenderer->
setReferenceScale( e.attribute( QStringLiteral(
"symbologyReferenceScale" ), QStringLiteral(
"-1" ) ).toDouble() );
2714 if ( categories.testFlag(
Diagrams ) )
2718 delete mDiagramRenderer;
2719 mDiagramRenderer =
nullptr;
2720 QDomElement singleCatDiagramElem = node.firstChildElement( QStringLiteral(
"SingleCategoryDiagramRenderer" ) );
2721 if ( !singleCatDiagramElem.isNull() )
2724 mDiagramRenderer->
readXml( singleCatDiagramElem, context );
2726 QDomElement linearDiagramElem = node.firstChildElement( QStringLiteral(
"LinearlyInterpolatedDiagramRenderer" ) );
2727 if ( !linearDiagramElem.isNull() )
2729 if ( linearDiagramElem.hasAttribute( QStringLiteral(
"classificationAttribute" ) ) )
2732 int idx = linearDiagramElem.attribute( QStringLiteral(
"classificationAttribute" ) ).toInt();
2733 if ( idx >= 0 && idx < mFields.
count() )
2734 linearDiagramElem.setAttribute( QStringLiteral(
"classificationField" ), mFields.
at( idx ).
name() );
2738 mDiagramRenderer->
readXml( linearDiagramElem, context );
2741 if ( mDiagramRenderer )
2743 QDomElement diagramSettingsElem = node.firstChildElement( QStringLiteral(
"DiagramLayerSettings" ) );
2744 if ( !diagramSettingsElem.isNull() )
2746 bool oldXPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"xPosColumn" ) );
2747 bool oldYPos = diagramSettingsElem.hasAttribute( QStringLiteral(
"yPosColumn" ) );
2748 bool oldShow = diagramSettingsElem.hasAttribute( QStringLiteral(
"showColumn" ) );
2749 if ( oldXPos || oldYPos || oldShow )
2755 int xPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"xPosColumn" ) ).toInt();
2756 if ( xPosColumn >= 0 && xPosColumn < mFields.
count() )
2761 int yPosColumn = diagramSettingsElem.attribute( QStringLiteral(
"yPosColumn" ) ).toInt();
2762 if ( yPosColumn >= 0 && yPosColumn < mFields.
count() )
2767 int showColumn = diagramSettingsElem.attribute( QStringLiteral(
"showColumn" ) ).toInt();
2768 if ( showColumn >= 0 && showColumn < mFields.
count() )
2771 QDomElement propertiesElem = diagramSettingsElem.ownerDocument().createElement( QStringLiteral(
"properties" ) );
2778 ddp.
writeXml( propertiesElem, defs );
2779 diagramSettingsElem.appendChild( propertiesElem );
2782 delete mDiagramLayerSettings;
2784 mDiagramLayerSettings->
readXml( diagramSettingsElem );
2790 styleChangedSignalBlocker.release();
2802 QDomElement layerElement = node.toElement();
2805 ( void )
writeStyle( node, doc, errorMessage, context, categories );
2808 mGeometryOptions->writeXml( node );
2813 if ( !legendElement.isNull() )
2814 node.appendChild( legendElement );
2821 QDomElement referencedLayersElement = doc.createElement( QStringLiteral(
"referencedLayers" ) );
2822 node.appendChild( referencedLayersElement );
2827 switch ( rel.type() )
2838 QDomElement referencingLayersElement = doc.createElement( QStringLiteral(
"referencingLayers" ) );
2839 node.appendChild( referencedLayersElement );
2842 for (
const QgsRelation &rel : referencedRelations )
2844 switch ( rel.type() )
2856 if ( categories.testFlag(
Fields ) || categories.testFlag(
Forms ) )
2858 QDomElement fieldConfigurationElement;
2860 fieldConfigurationElement = doc.createElement( QStringLiteral(
"fieldConfiguration" ) );
2861 node.appendChild( fieldConfigurationElement );
2865 QDomElement fieldElement = doc.createElement( QStringLiteral(
"field" ) );
2866 fieldElement.setAttribute( QStringLiteral(
"name" ),
field.
name() );
2867 fieldConfigurationElement.appendChild( fieldElement );
2869 if ( categories.testFlag(
Fields ) )
2874 if ( categories.testFlag(
Forms ) )
2879 QDomElement editWidgetElement = doc.createElement( QStringLiteral(
"editWidget" ) );
2880 fieldElement.appendChild( editWidgetElement );
2882 QDomElement editWidgetConfigElement = doc.createElement( QStringLiteral(
"config" ) );
2885 editWidgetElement.appendChild( editWidgetConfigElement );
2891 if ( categories.testFlag(
Fields ) )
2894 QDomElement aliasElem = doc.createElement( QStringLiteral(
"aliases" ) );
2897 QDomElement aliasEntryElem = doc.createElement( QStringLiteral(
"alias" ) );
2898 aliasEntryElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2900 aliasEntryElem.setAttribute( QStringLiteral(
"name" ),
field.
alias() );
2901 aliasElem.appendChild( aliasEntryElem );
2903 node.appendChild( aliasElem );
2907 QDomElement splitPoliciesElement = doc.createElement( QStringLiteral(
"splitPolicies" ) );
2910 QDomElement splitPolicyElem = doc.createElement( QStringLiteral(
"policy" ) );
2911 splitPolicyElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2913 splitPoliciesElement.appendChild( splitPolicyElem );
2915 node.appendChild( splitPoliciesElement );
2919 QDomElement defaultsElem = doc.createElement( QStringLiteral(
"defaults" ) );
2922 QDomElement defaultElem = doc.createElement( QStringLiteral(
"default" ) );
2923 defaultElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2926 defaultsElem.appendChild( defaultElem );
2928 node.appendChild( defaultsElem );
2931 QDomElement constraintsElem = doc.createElement( QStringLiteral(
"constraints" ) );
2934 QDomElement constraintElem = doc.createElement( QStringLiteral(
"constraint" ) );
2935 constraintElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2940 constraintsElem.appendChild( constraintElem );
2942 node.appendChild( constraintsElem );
2945 QDomElement constraintExpressionsElem = doc.createElement( QStringLiteral(
"constraintExpressions" ) );
2948 QDomElement constraintExpressionElem = doc.createElement( QStringLiteral(
"constraint" ) );
2949 constraintExpressionElem.setAttribute( QStringLiteral(
"field" ),
field.
name() );
2952 constraintExpressionsElem.appendChild( constraintExpressionElem );
2954 node.appendChild( constraintExpressionsElem );
2957 if ( !mExpressionFieldBuffer )
2965 mExpressionFieldBuffer->
writeXml( node, doc );
2970 if ( categories.testFlag(
Actions ) )
2975 mAttributeTableConfig.
writeXml( node );
2976 mConditionalStyles->
writeXml( node, doc, context );
2977 mStoredExpressionManager->
writeXml( node );
2980 if ( categories.testFlag(
Forms ) )
2981 mEditFormConfig.
writeXml( node, context );
2985 node.toElement().setAttribute( QStringLiteral(
"readOnly" ), mReadOnly );
2990 QDomElement prevExpElem = doc.createElement( QStringLiteral(
"previewExpression" ) );
2991 QDomText prevExpText = doc.createTextNode( mDisplayExpression );
2992 prevExpElem.appendChild( prevExpText );
2993 node.appendChild( prevExpElem );
2997 if ( categories.testFlag(
MapTips ) )
2999 QDomElement mapTipElem = doc.createElement( QStringLiteral(
"mapTip" ) );
3000 mapTipElem.setAttribute( QStringLiteral(
"enabled" ),
mapTipsEnabled() );
3001 QDomText mapTipText = doc.createTextNode( mMapTipTemplate );
3002 mapTipElem.appendChild( mapTipText );
3003 node.toElement().appendChild( mapTipElem );
3014 QDomElement mapLayerNode = node.toElement();
3027 QDomElement rendererElement = mRenderer->
save( doc, context );
3028 node.appendChild( rendererElement );
3032 if ( categories.testFlag(
Labeling ) )
3036 QDomElement labelingElement = mLabeling->
save( doc, context );
3037 node.appendChild( labelingElement );
3039 mapLayerNode.setAttribute( QStringLiteral(
"labelsEnabled" ), mLabelsEnabled ? QStringLiteral(
"1" ) : QStringLiteral(
"0" ) );
3045 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingHints" ), QString::number( mSimplifyMethod.
simplifyHints() ) );
3046 mapLayerNode.setAttribute( QStringLiteral(
"simplifyAlgorithm" ), QString::number( mSimplifyMethod.
simplifyAlgorithm() ) );
3047 mapLayerNode.setAttribute( QStringLiteral(
"simplifyDrawingTol" ), QString::number( mSimplifyMethod.
threshold() ) );
3048 mapLayerNode.setAttribute( QStringLiteral(
"simplifyLocal" ), mSimplifyMethod.
forceLocalOptimization() ? 1 : 0 );
3049 mapLayerNode.setAttribute( QStringLiteral(
"simplifyMaxScale" ), QString::number( mSimplifyMethod.
maximumScale() ) );
3061 QDomElement blendModeElem = doc.createElement( QStringLiteral(
"blendMode" ) );
3063 blendModeElem.appendChild( blendModeText );
3064 node.appendChild( blendModeElem );
3067 QDomElement featureBlendModeElem = doc.createElement( QStringLiteral(
"featureBlendMode" ) );
3069 featureBlendModeElem.appendChild( featureBlendModeText );
3070 node.appendChild( featureBlendModeElem );
3076 QDomElement layerOpacityElem = doc.createElement( QStringLiteral(
"layerOpacity" ) );
3077 QDomText layerOpacityText = doc.createTextNode( QString::number(
opacity() ) );
3078 layerOpacityElem.appendChild( layerOpacityText );
3079 node.appendChild( layerOpacityElem );
3080 mapLayerNode.setAttribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ),
hasScaleBasedVisibility() ? 1 : 0 );
3081 mapLayerNode.setAttribute( QStringLiteral(
"maxScale" ),
maximumScale() );
3082 mapLayerNode.setAttribute( QStringLiteral(
"minScale" ),
minimumScale() );
3084 mapLayerNode.setAttribute( QStringLiteral(
"symbologyReferenceScale" ), mRenderer ? mRenderer->
referenceScale() : -1 );
3087 if ( categories.testFlag(
Diagrams ) && mDiagramRenderer )
3089 mDiagramRenderer->
writeXml( mapLayerNode, doc, context );
3090 if ( mDiagramLayerSettings )
3091 mDiagramLayerSettings->
writeXml( mapLayerNode, doc );
3102 QDomElement nameElem = node.firstChildElement( QStringLiteral(
"Name" ) );
3103 if ( nameElem.isNull() )
3105 errorMessage = QStringLiteral(
"Warning: Name element not found within NamedLayer while it's required." );
3121 readSldLabeling( node );
3123 styleChangedSignalBlocker.release();
3133 Q_UNUSED( errorMessage )
3135 QVariantMap localProps = QVariantMap( props );
3144 QDomElement nameNode = doc.createElement( QStringLiteral(
"se:Name" ) );
3145 nameNode.appendChild( doc.createTextNode(
name() ) );
3146 node.appendChild( nameNode );
3148 QDomElement userStyleElem = doc.createElement( QStringLiteral(
"UserStyle" ) );
3149 node.appendChild( userStyleElem );
3151 QDomElement nameElem = doc.createElement( QStringLiteral(
"se:Name" ) );
3152 nameElem.appendChild( doc.createTextNode(
name() ) );
3154 userStyleElem.appendChild( nameElem );
3156 QDomElement featureTypeStyleElem = doc.createElement( QStringLiteral(
"se:FeatureTypeStyle" ) );
3157 userStyleElem.appendChild( featureTypeStyleElem );
3159 mRenderer->
toSld( doc, featureTypeStyleElem, localProps );
3162 mLabeling->
toSld( featureTypeStyleElem, localProps );
3173 if ( !mEditBuffer || !mDataProvider )
3178 if ( mGeometryOptions->isActive() )
3179 mGeometryOptions->apply( geom );
3188 if ( !skipDefaultValue && !mDefaultValueOnUpdateFields.isEmpty() )
3189 updateDefaultValues( fid );
3199 bool result =
false;
3213 if ( mEditBuffer && mDataProvider )
3222 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3223 updateDefaultValues( fid );
3240 for (
auto it = newValues.constBegin(); it != newValues.constEnd(); ++it )
3242 const int field = it.key();
3243 const QVariant newValue = it.value();
3246 if ( oldValues.contains(
field ) )
3247 oldValue = oldValues[
field];
3252 newValuesJoin[
field] = newValue;
3253 oldValuesJoin[
field] = oldValue;
3260 newValuesNotJoin[
field] = newValue;
3261 oldValuesNotJoin[
field] = oldValue;
3270 if ( ! newValuesJoin.isEmpty() && mJoinBuffer )
3275 if ( ! newValuesNotJoin.isEmpty() )
3277 if ( mEditBuffer && mDataProvider )
3283 if ( result && !skipDefaultValues && !mDefaultValueOnUpdateFields.isEmpty() )
3285 updateDefaultValues( fid );
3295 if ( !mEditBuffer || !mDataProvider )
3305 if ( attIndex < 0 || attIndex >=
fields().count() )
3309 mFields[ attIndex ].setAlias( QString() );
3310 if ( mAttributeAliasMap.contains(
name ) )
3312 mAttributeAliasMap.remove(
name );
3314 mEditFormConfig.setFields( mFields );
3323 if ( index < 0 || index >=
fields().count() )
3330 if ( mExpressionFieldBuffer )
3346 if ( !mEditBuffer || !mDataProvider )
3364 if ( attIndex < 0 || attIndex >=
fields().count() )
3369 mAttributeAliasMap.insert(
name, aliasString );
3370 mFields[ attIndex ].setAlias( aliasString );
3371 mEditFormConfig.setFields( mFields );
3379 if ( index < 0 || index >=
fields().count() )
3389 if ( index >= 0 && index < mFields.
count() )
3399 return mAttributeAliasMap;
3406 if ( index < 0 || index >=
fields().count() )
3411 mAttributeSplitPolicy.insert(
name, policy );
3412 mFields[ index ].setSplitPolicy( policy );
3413 mEditFormConfig.setFields( mFields );
3421 QSet<QString> excludeList;
3422 QMap< QString, QgsField::ConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3423 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3427 excludeList << flagsIt.key();
3437 QMap< QString, QgsField::ConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3438 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3449 QSet<QString> excludeList;
3450 QMap< QString, QgsField::ConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
3451 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
3455 excludeList << flagsIt.key();
3465 QMap< QString, QgsField::ConfigurationFlags >::iterator flagsIt = mFieldConfigurationFlags.begin();
3466 for ( ; flagsIt != mFieldConfigurationFlags.end(); ++flagsIt )
3477 if ( index < 0 || index >=
fields().count() )
3486 if ( !mEditBuffer || !mDataProvider )
3496 bool deleted =
false;
3499 QList<int> attrList = qgis::setToList( qgis::listToSet( attrs ) );
3501 std::sort( attrList.begin(), attrList.end(), std::greater<int>() );
3503 for (
int attr : std::as_const( attrList ) )
3521 if ( context && context->
cascade )
3524 const bool hasRelationsOrJoins = !relations.empty() || mJoinBuffer->
containsJoins();
3525 if ( hasRelationsOrJoins )
3530 if ( handledFeatureIds.contains( fid ) )
3538 handledFeatureIds << fid;
3550 switch ( relation.strength() )
3558 while ( relatedFeaturesIt.
nextFeature( childFeature ) )
3560 childFeatureIds.insert( childFeature.
id() );
3562 if ( childFeatureIds.count() > 0 )
3564 relation.referencingLayer()->startEditing();
3565 relation.referencingLayer()->deleteFeatures( childFeatureIds, context );
3592 bool res = deleteFeatureCascade( fid, context );
3612 res = deleteFeatureCascade( fid, context ) && res;
3621 mSelectedFeatureIds.subtract( fids );
3641 if ( !mDataProvider )
3642 return pkAttributesList;
3645 for (
int i = 0; i < mFields.
count(); ++i )
3649 pkAttributesList << i;
3652 return pkAttributesList;
3659 if ( !mDataProvider )
3672 if ( mEditBuffer && !deletedFeatures.empty() )
3674 if ( addedFeatures.size() > deletedFeatures.size() )
3675 return QgsFeatureSource::FeatureAvailability::FeaturesAvailable;
3677 return QgsFeatureSource::FeatureAvailability::FeaturesMaybeAvailable;
3680 if ( ( !mEditBuffer || addedFeatures.empty() ) && mDataProvider && mDataProvider->
empty() )
3681 return QgsFeatureSource::FeatureAvailability::NoFeaturesAvailable;
3683 return QgsFeatureSource::FeatureAvailability::FeaturesAvailable;
3693 mCommitErrors.clear();
3695 if ( !mDataProvider )
3697 mCommitErrors << tr(
"ERROR: no provider" );
3703 mCommitErrors << tr(
"ERROR: layer not editable" );
3709 if ( !mAllowCommit )
3712 mCommitChangesActive =
true;
3714 bool success =
false;
3720 mCommitChangesActive =
false;
3722 if ( !mDeletedFids.empty() )
3725 mDeletedFids.clear();
3766 return mCommitErrors;
3781 if ( !mDataProvider )
3783 mCommitErrors << tr(
"ERROR: no provider" );
3809 mEditBuffer =
nullptr;
3814 if ( rollbackExtent )
3827 return mSelectedFeatureIds.size();
3835 return mSelectedFeatureIds;
3843 features.reserve( mSelectedFeatureIds.count() );
3850 features.push_back( f );
3860 if ( mSelectedFeatureIds.isEmpty() )
3866 if ( mSelectedFeatureIds.count() == 1 )
3867 request.
setFilterFid( *mSelectedFeatureIds.constBegin() );
3878 if ( !mEditBuffer || !mDataProvider )
3881 if ( mGeometryOptions->isActive() )
3883 for (
auto feature = features.begin(); feature != features.end(); ++feature )
3886 mGeometryOptions->apply( geom );
3913 if ( exp.isField() )
3936 if ( !mDisplayExpression.isEmpty() || mFields.
isEmpty() )
3938 return mDisplayExpression;
3943 if ( !candidateName.isEmpty() )
3966 return ( mEditBuffer && mDataProvider );
3975 return t != Qgis::GeometryType::Null && t != Qgis::GeometryType::Unknown;
3978bool QgsVectorLayer::isReadOnly()
const
3982 return mDataSourceReadOnly || mReadOnly;
3990 if ( readonly && mEditBuffer )
3994 if ( !readonly && mDataSourceReadOnly )
3997 mReadOnly = readonly;
4006 if ( ! mDataProvider )
4009 if ( mDataSourceReadOnly )
4020 return mEditBuffer && mEditBuffer->
isModified();
4027 bool auxiliaryField =
false;
4031 return auxiliaryField;
4038 auxiliaryField =
true;
4041 return auxiliaryField;
4054 if ( r != mRenderer )
4058 mSymbolFeatureCounted =
false;
4059 mSymbolFeatureCountMap.clear();
4060 mSymbolFeatureIdMap.clear();
4065 if ( refreshRate <= 0 )
4067 mRefreshRendererTimer->stop();
4068 mRefreshRendererTimer->setInterval( 0 );
4072 mRefreshRendererTimer->setInterval( 1000 / refreshRate );
4073 mRefreshRendererTimer->start();
4088 mRendererGenerators << generator;
4096 for (
int i = mRendererGenerators.count() - 1; i >= 0; --i )
4098 if ( mRendererGenerators.at( i )->id() ==
id )
4100 delete mRendererGenerators.at( i );
4101 mRendererGenerators.removeAt( i );
4111 QList< const QgsFeatureRendererGenerator * > res;
4121 if ( !mDataProvider )
4127 QString ignoredError;
4131 mEditCommandActive =
true;
4139 if ( !mDataProvider )
4144 mEditCommandActive =
false;
4145 if ( !mDeletedFids.isEmpty() )
4149 mSelectedFeatureIds.subtract( mDeletedFids );
4152 mDeletedFids.clear();
4161 if ( !mDataProvider )
4172 std::unique_ptr< QUndoCommand > command = std::make_unique< QUndoCommand >();
4173 command->setObsolete(
true );
4176 mEditCommandActive =
false;
4177 mDeletedFids.clear();
4185 return mJoinBuffer->
addJoin( joinInfo );
4192 return mJoinBuffer->
removeJoin( joinLayerId );
4233 if ( oi < 0 || oi >= mExpressionFieldBuffer->
expressions().size() )
4236 return mExpressionFieldBuffer->
expressions().at( oi ).cachedExpression.expression();
4252 if ( !mDataProvider )
4257 mFields = mDataProvider->
fields();
4267 if ( mExpressionFieldBuffer )
4271 for (
auto aliasIt = mAttributeAliasMap.constBegin(); aliasIt != mAttributeAliasMap.constEnd(); ++aliasIt )
4277 mFields[ index ].setAlias( aliasIt.value() );
4280 for (
auto splitPolicyIt = mAttributeSplitPolicy.constBegin(); splitPolicyIt != mAttributeSplitPolicy.constEnd(); ++splitPolicyIt )
4282 int index = mFields.
lookupField( splitPolicyIt.key() );
4286 mFields[ index ].setSplitPolicy( splitPolicyIt.value() );
4290 QMap< QString, QgsField::ConfigurationFlags >::const_iterator flagsIt = mFieldConfigurationFlags.constBegin();
4291 for ( ; flagsIt != mFieldConfigurationFlags.constEnd(); ++flagsIt )
4297 mFields[index].setConfigurationFlags( flagsIt.value() );
4301 mDefaultValueOnUpdateFields.clear();
4302 QMap< QString, QgsDefaultValue >::const_iterator defaultIt = mDefaultExpressionMap.constBegin();
4303 for ( ; defaultIt != mDefaultExpressionMap.constEnd(); ++defaultIt )
4305 int index = mFields.
lookupField( defaultIt.key() );
4309 mFields[ index ].setDefaultValueDefinition( defaultIt.value() );
4310 if ( defaultIt.value().applyOnUpdate() )
4311 mDefaultValueOnUpdateFields.insert( index );
4314 QMap< QString, QgsFieldConstraints::Constraints >::const_iterator constraintIt = mFieldConstraints.constBegin();
4315 for ( ; constraintIt != mFieldConstraints.constEnd(); ++constraintIt )
4317 int index = mFields.
lookupField( constraintIt.key() );
4330 mFields[ index ].setConstraints( constraints );
4333 QMap< QString, QPair< QString, QString > >::const_iterator constraintExpIt = mFieldConstraintExpressions.constBegin();
4334 for ( ; constraintExpIt != mFieldConstraintExpressions.constEnd(); ++constraintExpIt )
4336 int index = mFields.
lookupField( constraintExpIt.key() );
4347 mFields[ index ].setConstraints( constraints );
4351 for ( ; constraintStrengthIt != mFieldConstraintStrength.constEnd(); ++constraintStrengthIt )
4353 int index = mFields.
lookupField( constraintStrengthIt.key().first );
4363 constraints.
setConstraintStrength( constraintStrengthIt.key().second, constraintStrengthIt.value() );
4364 mFields[ index ].setConstraints( constraints );
4367 auto fieldWidgetIterator = mFieldWidgetSetups.constBegin();
4368 for ( ; fieldWidgetIterator != mFieldWidgetSetups.constEnd(); ++ fieldWidgetIterator )
4370 int index = mFields.
indexOf( fieldWidgetIterator.key() );
4374 mFields[index].setEditorWidgetSetup( fieldWidgetIterator.value() );
4377 if ( oldFields != mFields )
4380 mEditFormConfig.setFields( mFields );
4389 if ( index < 0 || index >= mFields.
count() || !mDataProvider )
4393 if ( expression.isEmpty() )
4397 std::unique_ptr< QgsExpressionContext > tempContext;
4402 evalContext = tempContext.get();
4437 if ( index < 0 || index >= mFields.
count() )
4442 mDefaultExpressionMap.insert( mFields.
at( index ).
name(), definition );
4446 mDefaultExpressionMap.remove( mFields.
at( index ).
name() );
4455 if ( index < 0 || index >= mFields.
count() )
4466 if ( !mDataProvider )
4481 if ( mEditBuffer && ! mDataProvider->
transaction() )
4485 for (
const QVariant &v : constUniqueValues )
4487 vals << v.toString();
4491 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4492 while ( addedIt.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4495 QVariant v = addedIt.value().attribute( index );
4498 QString vs = v.toString();
4499 if ( !vals.contains( vs ) )
4508 while ( it.hasNext() && ( limit < 0 ||
uniqueValues.count() < limit ) )
4511 QVariant v = it.value().value( index );
4514 QString vs = v.toString();
4515 if ( !vals.contains( vs ) )
4548 .setSubsetOfAttributes( attList ) );
4551 QVariant currentValue;
4552 QHash<QString, QVariant> val;
4556 val.insert( currentValue.toString(), currentValue );
4557 if ( limit >= 0 && val.size() >= limit )
4563 return qgis::listToSet( val.values() );
4567 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueValues()",
"Unknown source of the field!" );
4575 QStringList results;
4576 if ( !mDataProvider )
4591 if ( mEditBuffer && ! mDataProvider->
transaction() )
4594 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4595 while ( addedIt.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
4598 QVariant v = addedIt.value().attribute( index );
4601 QString vs = v.toString();
4602 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
4610 while ( it.hasNext() && ( limit < 0 || results.count() < limit ) && ( !feedback || !feedback->
isCanceled() ) )
4613 QVariant v = it.value().value( index );
4616 QString vs = v.toString();
4617 if ( vs.contains( substring, Qt::CaseInsensitive ) && !results.contains( vs ) )
4648 QString fieldName = mFields.
at( index ).
name();
4649 request.
setFilterExpression( QStringLiteral(
"\"%1\" ILIKE '%%2%'" ).arg( fieldName, substring ) );
4653 QString currentValue;
4656 currentValue = f.
attribute( index ).toString();
4657 if ( !results.contains( currentValue ) )
4658 results << currentValue;
4660 if ( ( limit >= 0 && results.size() >= limit ) || ( feedback && feedback->
isCanceled() ) )
4670 Q_ASSERT_X(
false,
"QgsVectorLayer::uniqueStringsMatching()",
"Unknown source of the field!" );
4679 minimumOrMaximumValue( index, &minimum,
nullptr );
4688 minimumOrMaximumValue( index,
nullptr, &maximum );
4696 minimumOrMaximumValue( index, &minimum, &maximum );
4699void QgsVectorLayer::minimumOrMaximumValue(
int index, QVariant *minimum, QVariant *maximum )
const
4704 *minimum = QVariant();
4706 *maximum = QVariant();
4708 if ( !mDataProvider )
4728 if ( mEditBuffer && ! mDataProvider->
transaction() )
4731 QMapIterator< QgsFeatureId, QgsFeature > addedIt( added );
4732 while ( addedIt.hasNext() )
4735 const QVariant v = addedIt.value().attribute( index );
4743 while ( it.hasNext() )
4746 const QVariant v = it.value().value( index );
4782 .setSubsetOfAttributes( attList ) );
4785 bool firstValue =
true;
4788 const QVariant currentValue = f.
attribute( index );
4795 *minimum = currentValue;
4797 *maximum = currentValue;
4802 if ( minimum && currentValue.isValid() &&
qgsVariantLessThan( currentValue, *minimum ) )
4803 *minimum = currentValue;
4805 *maximum = currentValue;
4812 Q_ASSERT_X(
false,
"QgsVectorLayer::minimumOrMaximumValue()",
"Unknown source of the field!" );
4815void QgsVectorLayer::createEditBuffer()
4851void QgsVectorLayer::clearEditBuffer()
4856 mEditBuffer =
nullptr;
4871 if ( !mDataProvider )
4874 *
error = tr(
"Layer is invalid" );
4880 if ( attrIndex >= 0 )
4887 bool providerOk =
false;
4888 QVariant val = mDataProvider->
aggregate(
aggregate, attrIndex, parameters, context, providerOk, fids );
4902 c.setFidsFilter( *fids );
4903 c.setParameters( parameters );
4904 bool aggregateOk =
false;
4905 const QVariant result =
c.calculate(
aggregate, fieldOrExpression, context, &aggregateOk, feedback );
4908 if ( !aggregateOk &&
error )
4931 return mFeatureBlendMode;
4934void QgsVectorLayer::readSldLabeling(
const QDomNode &node )
4941 QDomElement element = node.toElement();
4942 if ( element.isNull() )
4945 QDomElement userStyleElem = element.firstChildElement( QStringLiteral(
"UserStyle" ) );
4946 if ( userStyleElem.isNull() )
4948 QgsDebugMsgLevel( QStringLiteral(
"Info: UserStyle element not found." ), 4 );
4952 QDomElement featTypeStyleElem = userStyleElem.firstChildElement( QStringLiteral(
"FeatureTypeStyle" ) );
4953 if ( featTypeStyleElem.isNull() )
4955 QgsDebugMsgLevel( QStringLiteral(
"Info: FeatureTypeStyle element not found." ), 4 );
4960 QDomElement mergedFeatTypeStyle = featTypeStyleElem.cloneNode(
false ).toElement();
4965 bool needRuleBasedLabeling =
false;
4968 while ( !featTypeStyleElem.isNull() )
4970 QDomElement ruleElem = featTypeStyleElem.firstChildElement( QStringLiteral(
"Rule" ) );
4971 while ( !ruleElem.isNull() )
4975 bool hasTextSymbolizer =
false;
4976 bool hasRuleBased =
false;
4977 QDomElement ruleChildElem = ruleElem.firstChildElement();
4978 while ( !ruleChildElem.isNull() )
4981 if ( ruleChildElem.localName() == QLatin1String(
"Filter" ) ||
4982 ruleChildElem.localName() == QLatin1String(
"MinScaleDenominator" ) ||
4983 ruleChildElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
4985 hasRuleBased =
true;
4988 else if ( ruleChildElem.localName() == QLatin1String(
"TextSymbolizer" ) )
4990 QgsDebugMsgLevel( QStringLiteral(
"Info: TextSymbolizer element found" ), 4 );
4991 hasTextSymbolizer =
true;
4994 ruleChildElem = ruleChildElem.nextSiblingElement();
4997 if ( hasTextSymbolizer )
5002 mergedFeatTypeStyle.appendChild( ruleElem.cloneNode().toElement() );
5006 QgsDebugMsgLevel( QStringLiteral(
"Info: Filter or Min/MaxScaleDenominator element found: need a RuleBasedLabeling" ), 4 );
5007 needRuleBasedLabeling =
true;
5012 if ( ruleCount > 1 )
5014 QgsDebugMsgLevel( QStringLiteral(
"Info: More Rule elements found: need a RuleBasedLabeling" ), 4 );
5015 needRuleBasedLabeling =
true;
5019 if ( ruleCount == 0 )
5021 needRuleBasedLabeling =
false;
5024 ruleElem = ruleElem.nextSiblingElement( QStringLiteral(
"Rule" ) );
5026 featTypeStyleElem = featTypeStyleElem.nextSiblingElement( QStringLiteral(
"FeatureTypeStyle" ) );
5029 if ( ruleCount == 0 )
5031 QgsDebugMsgLevel( QStringLiteral(
"Info: No TextSymbolizer element." ), 4 );
5035 QDomElement ruleElem = mergedFeatTypeStyle.firstChildElement( QStringLiteral(
"Rule" ) );
5037 if ( needRuleBasedLabeling )
5041 while ( !ruleElem.isNull() )
5044 QString label, description, filterExp;
5045 int scaleMinDenom = 0, scaleMaxDenom = 0;
5049 QDomElement childElem = ruleElem.firstChildElement();
5050 while ( !childElem.isNull() )
5052 if ( childElem.localName() == QLatin1String(
"Name" ) )
5056 if ( label.isEmpty() )
5057 label = childElem.firstChild().nodeValue();
5059 else if ( childElem.localName() == QLatin1String(
"Description" ) )
5062 QDomElement titleElem = childElem.firstChildElement( QStringLiteral(
"Title" ) );
5063 if ( !titleElem.isNull() )
5065 label = titleElem.firstChild().nodeValue();
5068 QDomElement abstractElem = childElem.firstChildElement( QStringLiteral(
"Abstract" ) );
5069 if ( !abstractElem.isNull() )
5071 description = abstractElem.firstChild().nodeValue();
5074 else if ( childElem.localName() == QLatin1String(
"Abstract" ) )
5077 description = childElem.firstChild().nodeValue();
5079 else if ( childElem.localName() == QLatin1String(
"Title" ) )
5082 label = childElem.firstChild().nodeValue();
5084 else if ( childElem.localName() == QLatin1String(
"Filter" ) )
5100 else if ( childElem.localName() == QLatin1String(
"MinScaleDenominator" ) )
5103 int v = childElem.firstChild().nodeValue().toInt( &ok );
5107 else if ( childElem.localName() == QLatin1String(
"MaxScaleDenominator" ) )
5110 int v = childElem.firstChild().nodeValue().toInt( &ok );
5114 else if ( childElem.localName() == QLatin1String(
"TextSymbolizer" ) )
5116 readSldTextSymbolizer( childElem, settings );
5119 childElem = childElem.nextSiblingElement();
5125 ruleElem = ruleElem.nextSiblingElement();
5135 QDomElement textSymbolizerElem = ruleElem.firstChildElement( QStringLiteral(
"TextSymbolizer" ) );
5137 if ( readSldTextSymbolizer( textSymbolizerElem, s ) )
5145bool QgsVectorLayer::readSldTextSymbolizer(
const QDomNode &node,
QgsPalLayerSettings &settings )
const
5149 if ( node.localName() != QLatin1String(
"TextSymbolizer" ) )
5151 QgsDebugMsgLevel( QStringLiteral(
"Not a TextSymbolizer element: %1" ).arg( node.localName() ), 3 );
5154 QDomElement textSymbolizerElem = node.toElement();
5156 QDomElement labelElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Label" ) );
5157 if ( !labelElem.isNull() )
5159 QDomElement propertyNameElem = labelElem.firstChildElement( QStringLiteral(
"PropertyName" ) );
5160 if ( !propertyNameElem.isNull() )
5165 QString labelAttribute = propertyNameElem.text();
5169 int fieldIndex = mFields.
lookupField( labelAttribute );
5170 if ( fieldIndex == -1 )
5186 QgsDebugMsgLevel( QStringLiteral(
"Info: PropertyName element not found." ), 4 );
5197 if ( textSymbolizerElem.hasAttribute( QStringLiteral(
"uom" ) ) )
5202 QString fontFamily = QStringLiteral(
"Sans-Serif" );
5203 int fontPointSize = 10;
5205 int fontWeight = -1;
5206 bool fontItalic =
false;
5207 bool fontUnderline =
false;
5210 QDomElement fontElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Font" ) );
5211 if ( !fontElem.isNull() )
5214 for ( QgsStringMap::iterator it = fontSvgParams.begin(); it != fontSvgParams.end(); ++it )
5216 QgsDebugMsgLevel( QStringLiteral(
"found fontSvgParams %1: %2" ).arg( it.key(), it.value() ), 4 );
5218 if ( it.key() == QLatin1String(
"font-family" ) )
5220 fontFamily = it.value();
5222 else if ( it.key() == QLatin1String(
"font-style" ) )
5224 fontItalic = ( it.value() == QLatin1String(
"italic" ) ) || ( it.value() == QLatin1String(
"Italic" ) );
5226 else if ( it.key() == QLatin1String(
"font-size" ) )
5229 int fontSize = it.value().toInt( &ok );
5232 fontPointSize = fontSize;
5233 fontUnitSize = sldUnitSize;
5236 else if ( it.key() == QLatin1String(
"font-weight" ) )
5238 if ( ( it.value() == QLatin1String(
"bold" ) ) || ( it.value() == QLatin1String(
"Bold" ) ) )
5239 fontWeight = QFont::Bold;
5241 else if ( it.key() == QLatin1String(
"font-underline" ) )
5243 fontUnderline = ( it.value() == QLatin1String(
"underline" ) ) || ( it.value() == QLatin1String(
"Underline" ) );
5249 QFont font( fontFamily, fontPointSize, fontWeight, fontItalic );
5250 font.setUnderline( fontUnderline );
5252 format.
setSize( fontPointSize );
5256 QDomElement fillElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Fill" ) );
5258 Qt::BrushStyle textBrush = Qt::SolidPattern;
5260 if ( textColor.isValid() )
5262 QgsDebugMsgLevel( QStringLiteral(
"Info: textColor %1." ).arg( QVariant( textColor ).toString() ), 4 );
5269 QDomElement haloElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"Halo" ) );
5270 if ( !haloElem.isNull() )
5275 QDomElement radiusElem = haloElem.firstChildElement( QStringLiteral(
"Radius" ) );
5276 if ( !radiusElem.isNull() )
5279 double bufferSize = radiusElem.text().toDouble( &ok );
5282 bufferSettings.
setSize( bufferSize );
5287 QDomElement haloFillElem = haloElem.firstChildElement( QStringLiteral(
"Fill" ) );
5289 Qt::BrushStyle bufferBrush = Qt::SolidPattern;
5291 if ( bufferColor.isValid() )
5293 QgsDebugMsgLevel( QStringLiteral(
"Info: bufferColor %1." ).arg( QVariant( bufferColor ).toString() ), 4 );
5294 bufferSettings.
setColor( bufferColor );
5299 QDomElement labelPlacementElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"LabelPlacement" ) );
5300 if ( !labelPlacementElem.isNull() )
5303 QDomElement pointPlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"PointPlacement" ) );
5304 if ( !pointPlacementElem.isNull() )
5312 QDomElement displacementElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Displacement" ) );
5313 if ( !displacementElem.isNull() )
5315 QDomElement displacementXElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementX" ) );
5316 if ( !displacementXElem.isNull() )
5319 double xOffset = displacementXElem.text().toDouble( &ok );
5326 QDomElement displacementYElem = displacementElem.firstChildElement( QStringLiteral(
"DisplacementY" ) );
5327 if ( !displacementYElem.isNull() )
5330 double yOffset = displacementYElem.text().toDouble( &ok );
5338 QDomElement anchorPointElem = pointPlacementElem.firstChildElement( QStringLiteral(
"AnchorPoint" ) );
5339 if ( !anchorPointElem.isNull() )
5341 QDomElement anchorPointXElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointX" ) );
5342 if ( !anchorPointXElem.isNull() )
5345 double xOffset = anchorPointXElem.text().toDouble( &ok );
5352 QDomElement anchorPointYElem = anchorPointElem.firstChildElement( QStringLiteral(
"AnchorPointY" ) );
5353 if ( !anchorPointYElem.isNull() )
5356 double yOffset = anchorPointYElem.text().toDouble( &ok );
5365 QDomElement rotationElem = pointPlacementElem.firstChildElement( QStringLiteral(
"Rotation" ) );
5366 if ( !rotationElem.isNull() )
5369 double rotation = rotationElem.text().toDouble( &ok );
5379 QDomElement linePlacementElem = labelPlacementElem.firstChildElement( QStringLiteral(
"LinePlacement" ) );
5380 if ( !linePlacementElem.isNull() )
5389 QDomElement vendorOptionElem = textSymbolizerElem.firstChildElement( QStringLiteral(
"VendorOption" ) );
5390 while ( !vendorOptionElem.isNull() && vendorOptionElem.localName() == QLatin1String(
"VendorOption" ) )
5392 QString optionName = vendorOptionElem.attribute( QStringLiteral(
"name" ) );
5393 QString optionValue;
5394 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::TextNode )
5396 optionValue = vendorOptionElem.firstChild().nodeValue();
5400 if ( vendorOptionElem.firstChild().nodeType() == QDomNode::ElementNode &&
5401 vendorOptionElem.firstChild().localName() == QLatin1String(
"Literal" ) )
5404 optionValue = vendorOptionElem.firstChild().firstChild().nodeValue();
5408 QgsDebugError( QStringLiteral(
"unexpected child of %1 named %2" ).arg( vendorOptionElem.localName(), optionName ) );
5412 if ( !optionName.isEmpty() && !optionValue.isEmpty() )
5414 vendorOptions[ optionName ] = optionValue;
5417 vendorOptionElem = vendorOptionElem.nextSiblingElement();
5419 if ( !vendorOptions.isEmpty() )
5421 for ( QgsStringMap::iterator it = vendorOptions.begin(); it != vendorOptions.end(); ++it )
5423 if ( it.key() == QLatin1String(
"underlineText" ) && it.value() == QLatin1String(
"true" ) )
5425 font.setUnderline(
true );
5428 else if ( it.key() == QLatin1String(
"strikethroughText" ) && it.value() == QLatin1String(
"true" ) )
5430 font.setStrikeOut(
true );
5433 else if ( it.key() == QLatin1String(
"maxDisplacement" ) )
5437 else if ( it.key() == QLatin1String(
"followLine" ) && it.value() == QLatin1String(
"true" ) )
5448 else if ( it.key() == QLatin1String(
"maxAngleDelta" ) )
5451 double angle = it.value().toDouble( &ok );
5459 else if ( it.key() == QLatin1String(
"conflictResolution" ) && it.value() == QLatin1String(
"false" ) )
5463 else if ( it.key() == QLatin1String(
"forceLeftToRight" ) && it.value() == QLatin1String(
"false" ) )
5465 settings.
upsidedownLabels = Qgis::UpsideDownLabelHandling::AlwaysAllowUpsideDown;
5467 else if ( it.key() == QLatin1String(
"group" ) && it.value() == QLatin1String(
"yes" ) )
5471 else if ( it.key() == QLatin1String(
"labelAllGroup" ) && it.value() == QLatin1String(
"true" ) )
5487 return mEditFormConfig;
5498 mEditFormConfig.onRelationsLoaded();
5508 if ( config.isEmpty() )
5544 if ( !mDiagramLayerSettings )
5546 *mDiagramLayerSettings = s;
5554 QString myMetadata = QStringLiteral(
"<html><head></head>\n<body>\n" );
5559 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Information from provider" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5560 myMetadata += QLatin1String(
"<table class=\"list-view\">\n" );
5565 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Storage" ) + QStringLiteral(
"</td><td>" ) +
storageType() + QStringLiteral(
"</td></tr>\n" );
5571 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Comment" ) + QStringLiteral(
"</td><td>" ) +
dataComment() + QStringLiteral(
"</td></tr>\n" );
5578 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Encoding" ) + QStringLiteral(
"</td><td>" ) + provider->
encoding() + QStringLiteral(
"</td></tr>\n" );
5585 if (
static_cast<int>(
type ) < 0 ||
static_cast< int >(
type ) >
static_cast< int >( Qgis::GeometryType::Null ) )
5593 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Geometry" ) + QStringLiteral(
"</td><td>" ) + typeString + QStringLiteral(
"</td></tr>\n" );
5597 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Extent" ) + QStringLiteral(
"</td><td>" ) +
extent().
toString() + QStringLiteral(
"</td></tr>\n" );
5601 QLocale locale = QLocale();
5602 locale.setNumberOptions( locale.numberOptions() &= ~QLocale::NumberOption::OmitGroupSeparator );
5603 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" )
5604 + tr(
"Feature count" ) + QStringLiteral(
"</td><td>" )
5606 + QStringLiteral(
"</td></tr>\n" );
5609 myMetadata += QLatin1String(
"</table>\n<br><br>" );
5618 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Identification" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5619 myMetadata += htmlFormatter.identificationSectionHtml( );
5620 myMetadata += QLatin1String(
"<br><br>\n" );
5623 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Extent" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5624 myMetadata += htmlFormatter.extentSectionHtml(
isSpatial() );
5625 myMetadata += QLatin1String(
"<br><br>\n" );
5628 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Access" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5629 myMetadata += htmlFormatter.accessSectionHtml( );
5630 myMetadata += QLatin1String(
"<br><br>\n" );
5633 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Fields" ) + QStringLiteral(
"</h1>\n<hr>\n<table class=\"list-view\">\n" );
5637 if ( !pkAttrList.isEmpty() )
5639 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Primary key attributes" ) + QStringLiteral(
"</td><td>" );
5640 const auto constPkAttrList = pkAttrList;
5641 for (
int idx : constPkAttrList )
5645 myMetadata += QLatin1String(
"</td></tr>\n" );
5651 myMetadata += QStringLiteral(
"<tr><td class=\"highlight\">" ) + tr(
"Count" ) + QStringLiteral(
"</td><td>" ) + QString::number( myFields.
size() ) + QStringLiteral(
"</td></tr>\n" );
5653 myMetadata += QLatin1String(
"</table>\n<br><table width=\"100%\" class=\"tabular-view\">\n" );
5654 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" );
5656 for (
int i = 0; i < myFields.
size(); ++i )
5661 rowClass = QStringLiteral(
"class=\"odd-row\"" );
5662 myMetadata += QLatin1String(
"<tr " ) + rowClass + QLatin1String(
"><td>" ) + myField.
displayNameWithAlias() + QLatin1String(
"</td><td>" ) + myField.
typeName() + QLatin1String(
"</td><td>" ) + QString::number( myField.
length() ) + QLatin1String(
"</td><td>" ) + QString::number( myField.
precision() ) + QLatin1String(
"</td><td>" ) + myField.
comment() + QLatin1String(
"</td></tr>\n" );
5666 myMetadata += QLatin1String(
"</table>\n<br><br>" );
5669 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Contacts" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5670 myMetadata += htmlFormatter.contactsSectionHtml( );
5671 myMetadata += QLatin1String(
"<br><br>\n" );
5674 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"Links" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5675 myMetadata += htmlFormatter.linksSectionHtml( );
5676 myMetadata += QLatin1String(
"<br><br>\n" );
5679 myMetadata += QStringLiteral(
"<h1>" ) + tr(
"History" ) + QStringLiteral(
"</h1>\n<hr>\n" );
5680 myMetadata += htmlFormatter.historySectionHtml( );
5681 myMetadata += QLatin1String(
"<br><br>\n" );
5683 myMetadata += QLatin1String(
"\n</body>\n</html>\n" );
5687void QgsVectorLayer::invalidateSymbolCountedFlag()
5691 mSymbolFeatureCounted =
false;
5694void QgsVectorLayer::onFeatureCounterCompleted()
5699 mFeatureCounter =
nullptr;
5702void QgsVectorLayer::onFeatureCounterTerminated()
5706 mFeatureCounter =
nullptr;
5709void QgsVectorLayer::onJoinedFieldsChanged()
5717void QgsVectorLayer::onFeatureDeleted(
QgsFeatureId fid )
5721 if ( mEditCommandActive || mCommitChangesActive )
5723 mDeletedFids << fid;
5727 mSelectedFeatureIds.remove( fid );
5734void QgsVectorLayer::onRelationsLoaded()
5738 mEditFormConfig.onRelationsLoaded();
5741void QgsVectorLayer::onSymbolsCounted()
5745 if ( mFeatureCounter )
5747 mSymbolFeatureCounted =
true;
5765 return mWeakRelations;
5772 mWeakRelations = relations;
5797 bool useAsDefault,
const QString &uiFileContent, QString &msgError, QgsMapLayer::StyleCategories categories )
5801 QString sldStyle, qmlStyle;
5802 QDomDocument qmlDocument, sldDocument;
5805 if ( !msgError.isNull() )
5809 qmlStyle = qmlDocument.toString();
5812 if ( !msgError.isNull() )
5816 sldStyle = sldDocument.toString();
5820 description, uiFileContent, useAsDefault, msgError );
5836 QString joinKey = mAuxiliaryLayerKey;
5837 if ( !key.isEmpty() )
5840 if ( storage.
isValid() && !joinKey.isEmpty() )
5865 mAuxiliaryLayerKey.clear();
5867 if ( mAuxiliaryLayer )
5880 mAuxiliaryLayer.reset( alayer );
5881 if ( mAuxiliaryLayer )
5882 mAuxiliaryLayer->setParent(
this );
5890 return mAuxiliaryLayer.get();
5897 return mAuxiliaryLayer.get();
5905 QString returnMessage;
5906 QString qml, errorMsg;
5914 if ( !qml.isEmpty() )
5916 QDomDocument myDocument( QStringLiteral(
"qgis" ) );
5917 myDocument.setContent( qml );
5919 returnMessage = QObject::tr(
"Loaded from Provider" );
5926 if ( ! styleName.isEmpty() )
5934 return returnMessage;
5941 if ( mDataProvider )
5946void QgsVectorLayer::emitDataChanged()
5950 if ( mDataChangedFired )
5955 mDataChangedFired =
true;
5957 mDataChangedFired =
false;
5960void QgsVectorLayer::onAfterCommitChangesDependency()
5964 mDataChangedFired =
true;
5966 mDataChangedFired =
false;
5973 QSet<QgsMapLayerDependency> deps;
5974 const auto constODeps = oDeps;
5981 QSet<QgsMapLayerDependency> toAdd = deps -
dependencies();
5998 if ( mDataProvider )
6019 if ( ! toAdd.isEmpty() )
6029 if ( fieldIndex < 0 || fieldIndex >= mFields.
count() || !mDataProvider )
6030 return QgsFieldConstraints::Constraints();
6047 QMap< QgsFieldConstraints::Constraint, QgsFieldConstraints::ConstraintStrength > m;
6049 if ( fieldIndex < 0 || fieldIndex >= mFields.
count() )
6052 QString
name = mFields.
at( fieldIndex ).
name();
6055 for ( ; conIt != mFieldConstraintStrength.constEnd(); ++conIt )
6057 if ( conIt.key().first ==
name )
6059 m[ conIt.key().second ] = mFieldConstraintStrength.value( conIt.key() );
6070 if ( index < 0 || index >= mFields.
count() )
6076 QgsFieldConstraints::Constraints constraints = mFieldConstraints.value(
name, QgsFieldConstraints::Constraints() );
6077 constraints |= constraint;
6078 mFieldConstraints.insert(
name, constraints );
6080 mFieldConstraintStrength.insert( qMakePair(
name, constraint ), strength );
6089 if ( index < 0 || index >= mFields.
count() )
6095 QgsFieldConstraints::Constraints constraints = mFieldConstraints.value(
name, QgsFieldConstraints::Constraints() );
6096 constraints &= ~constraint;
6097 mFieldConstraints.insert(
name, constraints );
6099 mFieldConstraintStrength.remove( qMakePair(
name, constraint ) );
6108 if ( index < 0 || index >= mFields.
count() )
6118 if ( index < 0 || index >= mFields.
count() )
6128 if ( index < 0 || index >= mFields.
count() )
6131 if ( expression.isEmpty() )
6133 mFieldConstraintExpressions.remove( mFields.
at( index ).
name() );
6137 mFieldConstraintExpressions.insert( mFields.
at( index ).
name(), qMakePair( expression, description ) );
6146 if ( index < 0 || index >= mFields.
count() )
6149 mFieldConfigurationFlags.insert( mFields.
at( index ).
name(),
flags );
6157 if ( index < 0 || index >= mFields.
count() )
6160 flags.setFlag( flag, active );
6168 if ( index < 0 || index >= mFields.
count() )
6178 if ( index < 0 || index >= mFields.
count() )
6182 mFieldWidgetSetups.remove( mFields.
at( index ).
name() );
6184 mFieldWidgetSetups.insert( mFields.
at( index ).
name(), setup );
6192 if ( index < 0 || index >= mFields.
count() )
6203 if (
customProperty( QStringLiteral(
"labeling" ) ).toString() == QLatin1String(
"pal" ) )
6205 if (
customProperty( QStringLiteral(
"labeling/enabled" ), QVariant(
false ) ).toBool() )
6209 settings.readFromLayerCustomProperties(
this );
6216 for (
const QString &key : constCustomPropertyKeys )
6218 if ( key.startsWith( QLatin1String(
"labeling/" ) ) )
6230 return mAllowCommit;
6248 return mGeometryOptions.get();
6262 return mReadExtentFromXml;
6265void QgsVectorLayer::onDirtyTransaction(
const QString &sql,
const QString &name )
6270 if ( tr && mEditBuffer )
6272 qobject_cast<QgsVectorLayerEditPassthrough *>( mEditBuffer )->update( tr, sql,
name );
6278 QList<QgsVectorLayer *> layers;
6279 QMap<QgsVectorLayer *, QgsFeatureIds>::const_iterator i;
6282 if ( includeAuxiliaryLayers || !qobject_cast< QgsAuxiliaryLayer * >( i.key() ) )
6283 layers.append( i.key() );
6290 return mHandledFeatures[layer];
The Qgis class provides global constants for use throughout the application.
@ Composition
Fix relation, related elements are part of the parent and a parent copy will copy any children or del...
@ Association
Loose relation, related elements are not part of the parent and a parent copy will not copy any child...
GeometryOperationResult
Success or failure of a geometry operation.
@ InvalidInputGeometryType
The input geometry (ring, part, split line, etc.) has not the correct geometry type.
@ Success
Operation succeeded.
@ SelectionIsEmpty
No features were selected.
@ AddRingNotInExistingFeature
The input ring doesn't have any existing ring to fit into.
@ AddRingNotClosed
The input ring is not closed.
@ SelectionIsGreaterThanOne
More than one features were selected.
@ LayerNotEditable
Cannot edit layer.
@ OverPoint
Arranges candidates over a point (or centroid of a polygon), or at a preset offset from the point....
@ Curved
Arranges candidates following the curvature of a line feature. Applies to line layers only.
@ AroundPoint
Arranges candidates in a circle around a point (or centroid of a polygon). Applies to point or polygo...
@ Line
Arranges candidates parallel to a generalised line representing the feature or parallel to a polygon'...
@ Horizontal
Arranges horizontal candidates scattered throughout a polygon feature. Applies to polygon layers only...
@ PerimeterCurved
Arranges candidates following the curvature of a polygon's boundary. Applies to polygon layers only.
@ BufferedGroups
Buffered transactional editing means that all editable layers in the buffered transaction group are t...
FieldDomainSplitPolicy
Split policy for field domains.
@ Duplicate
Duplicate original value.
BlendMode
Blending modes defining the available composition modes that can be used when painting.
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
@ Generated
A generated relation is a child of a polymorphic relation.
@ Normal
A normal relation.
static const float DEFAULT_MAPTOPIXEL_THRESHOLD
Default threshold between map coordinates and device coordinates for map2pixel simplification.
RenderUnit
Rendering size units.
VertexMarkerType
Editing vertex markers, used for showing vertices during a edit operation.
@ SemiTransparentCircle
Semi-transparent circle marker.
VectorEditResult
Flags which control feature selection behavior.
@ Success
Edit operation was successful.
@ InvalidLayer
Edit failed due to invalid layer.
WkbType
The WKB type describes the number of dimensions a geometry has.
@ AllowOverlapIfRequired
Avoids overlapping labels when possible, but permit overlaps if labels for features cannot otherwise ...
SelectBehavior
Specifies how a selection should be applied.
@ SetSelection
Set selection, removing any existing selection.
@ AddToSelection
Add selection to current selection.
@ IntersectSelection
Modify current selection to include only select features which match.
@ RemoveFromSelection
Remove from current selection.
Abstract base class for objects which generate elevation profiles.
virtual bool writeXml(QDomElement &collectionElem, const QgsPropertiesDefinition &definitions) const
Writes the current state of the property collection into an XML element.
Abstract base class - its implementations define different approaches to the labeling of a vector lay...
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the labeling...
virtual void toSld(QDomNode &parent, const QVariantMap &props) const
Writes the SE 1.1 TextSymbolizer element based on the current layer labeling settings.
static QgsAbstractVectorLayerLabeling * create(const QDomElement &element, const QgsReadWriteContext &context)
Try to create instance of an implementation based on the XML data.
virtual QDomElement save(QDomDocument &doc, const QgsReadWriteContext &context) const =0
Returns labeling configuration as XML element.
Storage and management of actions associated with a layer.
bool writeXml(QDomNode &layer_node) const
Writes the actions out in XML format.
QList< QgsAction > actions(const QString &actionScope=QString()) const
Returns a list of actions that are available in the given action scope.
QUuid addAction(Qgis::AttributeActionType type, const QString &name, const QString &command, bool capture=false)
Add an action with the given name and action details.
bool readXml(const QDomNode &layer_node)
Reads the actions in in XML format.
Utility class that encapsulates an action based on vector attributes.
Utility class for calculating aggregates for a field (or expression) over the features from a vector ...
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.
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.
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.
@ FlagLoadDefaultStyle
Reset the layer's style to the default for the datasource.
@ ForceReadOnly
Open layer in a read-only mode (since QGIS 3.28)
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.
bool useEstimatedMetadata() const
Returns true if estimated metadata should be used for the connection.
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.
void clear()
Clear error messages.
Single scope for storing variables and functions for use within a QgsExpressionContext.
void setFields(const QgsFields &fields)
Convenience function for setting a fields for the scope.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the scope.
static QList< QgsExpressionContextScope * > globalProjectLayerScopes(const QgsMapLayer *layer)
Creates a list of three scopes: global, layer's project and layer.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
QgsExpressionContextScope * popScope()
Removes the last scope from the expression context and return it.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
Buffers information about expression fields for a vector layer.
void removeExpression(int index)
Remove an expression from the buffer.
void writeXml(QDomNode &layer_node, QDomDocument &document) const
Saves expressions to xml under the layer node.
void readXml(const QDomNode &layer_node)
Reads expressions from project file.
void updateFields(QgsFields &flds) const
Adds fields with the expressions buffered in this object to a QgsFields object.
void addExpression(const QString &exp, const QgsField &fld)
Add an expression to the buffer.
QList< QgsExpressionFieldBuffer::ExpressionField > expressions() const
void updateExpression(int index, const QString &exp)
Changes the expression at a given index.
void renameExpression(int index, const QString &name)
Renames an expression field at a given index.
An expression node which takes 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.
QSet< QString > referencedColumns() const
Gets list of columns referenced by the expression.
static QString quotedColumnRef(QString name)
Returns a quoted column reference (in double quotes)
bool hasEvalError() const
Returns true if an error occurred when evaluating last input.
static int expressionToLayerFieldIndex(const QString &expression, const QgsVectorLayer *layer)
Attempts to resolve an expression to a field index from the given layer.
bool needsGeometry() const
Returns true if the expression uses feature geometry for some computation.
QVariant evaluate()
Evaluate the feature and return the result.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
An interface for objects which generate feature renderers for vector layers.
static QgsFeatureRenderer * defaultRenderer(Qgis::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)
Stores renderer properties to an XML element.
double referenceScale() const
Returns the symbology reference scale.
void setReferenceScale(double scale)
Sets the symbology reference scale.
static QgsFeatureRenderer * load(QDomElement &symbologyElem, const QgsReadWriteContext &context)
create a renderer from XML element
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the renderer...
static QgsFeatureRenderer * loadSld(const QDomNode &node, Qgis::GeometryType geomType, QString &errorMessage)
Create a new renderer according to the information contained in the UserStyle element of a SLD style ...
This class wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setFilterFids(const QgsFeatureIds &fids)
Sets the 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 the feature ID that should be fetched.
virtual bool addFeature(QgsFeature &feature, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags())
Adds a single feature to the sink.
virtual QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const
Returns the set of unique values contained within the specified fieldIndex from this source.
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 unique ID, geometry and a list of field...
bool setAttribute(int field, const QVariant &attr)
Sets an attribute's value by field index.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
bool isValid() const
Returns the validity of this feature.
QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
bool isCanceled() const SIP_HOLDGIL
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 displayNameWithAlias() const
Returns the name to use when displaying this field and adds the alias in parenthesis if it is defined...
Qgis::FieldDomainSplitPolicy splitPolicy() const
Returns the field's split policy, which indicates how field values should be handled during a split o...
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
Field is not available if layer is served as WFS from QGIS server.
@ None
No flag is defined.
@ HideFromWms
Field is not 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
Returns the 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
Returns the field at particular index (must be in range 0..N-1).
int fieldOriginIndex(int fieldIdx) const
Returns the field's origin index (its meaning is specific to each type of origin).
int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
QStringList names() const
Returns a list with field names.
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.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
void setMergeLines(bool merge)
Sets whether connected line features with identical label text should be merged prior to generating l...
void setOverlapHandling(Qgis::LabelOverlapHandling handling)
Sets the technique used to handle overlapping labels.
Line string geometry type, with support for z-dimension and m-values.
static void warning(const QString &msg)
Goes to qWarning.
This class models dependencies with or between map layers.
Base class for storage of map layer elevation properties.
static QString typeToString(Qgis::LayerType type)
Converts a map layer type to a string value.
virtual void readXml(const QDomElement &elem, const QgsReadWriteContext &context)
Reads configuration from a DOM element previously written by writeXml()
virtual QDomElement writeXml(QDomDocument &doc, const QgsReadWriteContext &context) const
Writes configuration to a DOM element, to be used later with readXml()
static QgsMapLayerLegend * defaultVectorLegend(QgsVectorLayer *vl)
Create new legend implementation for vector layer.
Base class for utility classes that encapsulate information necessary for rendering of map layers.
bool renameStyle(const QString &name, const QString &newName)
Rename a stored style to a different name.
Stores style information (renderer, opacity, labeling, diagrams etc.) applicable to a map layer.
Base class for storage of map layer temporal properties.
Base class for all map layer types.
void readStyleManager(const QDomNode &layerNode)
Read style manager's configuration (if any). To be called by subclasses.
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 editingStopped()
Emitted when edited changes have been successfully written to the data provider.
void recalculateExtents() const
This is used to send a request that any mapcanvas using this layer update its extents.
virtual QgsRectangle extent() const
Returns the extent of the layer.
QString source() const
Returns the source for the layer.
Q_INVOKABLE QVariant customProperty(const QString &value, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
int mBlockStyleChangedSignal
If non-zero, the styleChanged signal should not be emitted.
QString providerType() const
Returns the provider type (provider key) for this layer.
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.
void editingStarted()
Emitted when editing on this layer has started.
QgsCoordinateReferenceSystem crs
friend class QgsVectorLayer
void writeCustomProperties(QDomNode &layerNode, QDomDocument &doc) const
Write custom properties to project file.
virtual 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.
QString crsHtmlMetadata() const
Returns a HTML fragment containing the layer's CRS metadata, for use in the htmlMetadata() method.
void setMaximumScale(double scale)
Sets the maximum map scale (i.e.
QgsLayerMetadata metadata
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
virtual void setOpacity(double opacity)
Sets the opacity for the layer, where opacity is a value between 0 (totally transparent) and 1....
void setFlags(QgsMapLayer::LayerFlags flags)
Returns the flags for this layer.
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.
std::unique_ptr< QgsDataProvider > mPreloadedProvider
Optionally used when loading a project, it is released when the layer is effectively created.
void rendererChanged()
Signal emitted when renderer is changed.
virtual QgsError error() const
Gets current status error.
void setScaleBasedVisibility(bool enabled)
Sets whether scale based visibility is enabled for the layer.
void dataSourceChanged()
Emitted whenever the layer's data source has been changed.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
virtual QString 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 ...
void styleLoaded(QgsMapLayer::StyleCategories categories)
Emitted when a style has been loaded.
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
void dataChanged()
Data of layer changed.
void willBeDeleted()
Emitted in the destructor when the layer is about to be deleted, but it is still in a perfectly valid...
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
void setName(const QString &name)
Set the display name of the layer.
virtual void setExtent(const QgsRectangle &rect)
Sets the extent.
virtual void resolveReferences(QgsProject *project)
Resolve references to other layers (kept as layer IDs after reading XML) into layer objects.
QString mDataSource
Data source description string, varies by layer type.
void setMapTipsEnabled(bool enabled)
Enable or disable map tips for this layer.
@ FlagReadExtentFromXml
Read extent from xml and skip get extent from provider.
@ FlagForceReadOnly
Force open as read only.
@ FlagDontResolveLayers
Don't resolve layer paths or create data providers for layers.
void setValid(bool valid)
Sets whether layer is valid or not.
void readCommonStyle(const QDomElement &layerElement, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read style data common to all layer types.
QgsMapLayer::ReadFlags mReadFlags
Read flags. It's up to the subclass to respect these when restoring state from XML.
void setDataSource(const QString &dataSource, const QString &baseName, const QString &provider, bool loadDefaultStyleFlag=false)
Updates the data source of the layer.
double minimumScale() const
Returns the minimum map scale (i.e.
QgsMapLayerStyleManager * styleManager() const
Gets access to the layer's style manager.
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.
void setMapTipTemplate(const QString &mapTipTemplate)
The mapTip is a pretty, html representation for feature information.
Q_INVOKABLE QStringList customPropertyKeys() const
Returns list of all keys within custom properties.
QgsProject * project() const
Returns the parent project if this map layer is added to a project.
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
bool mValid
Indicates if the layer is valid and can be drawn.
@ GeometryOptions
Geometry validation configuration.
@ AttributeTable
Attribute table settings: choice and order of columns, conditional styling.
@ LayerConfiguration
General configuration: identifiable, removable, searchable, display expression, read-only.
@ Rendering
Rendering: scale visibility, simplify method, opacity.
@ CustomProperties
Custom properties (by plugins for instance)
@ Fields
Aliases, widgets, WMS/WFS, expressions, constraints, virtual fields.
@ Legend
Legend settings (since QGIS 3.16)
void layerModified()
Emitted when modifications has been done on layer.
void setProviderType(const QString &providerType)
Sets the providerType (provider key)
QString generalHtmlMetadata() const
Returns an HTML fragment containing general metadata information, for use in the htmlMetadata() metho...
void writeCommonStyle(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write style data common to all layer types.
double maximumScale() const
Returns the maximum map scale (i.e.
bool mShouldValidateCrs
true if the layer's CRS should be validated and invalid CRSes are not permitted.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
static QgsDataProvider::ReadFlags providerReadFlags(const QDomNode &layerNode, QgsMapLayer::ReadFlags layerReadFlags)
Returns provider read flag deduced from layer read flags layerReadFlags and a dom node layerNode that...
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::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 Qgis::BlendMode getBlendModeEnum(QPainter::CompositionMode blendMode)
Returns a BlendMode corresponding to a QPainter::CompositionMode.
static QPainter::CompositionMode getCompositionMode(Qgis::BlendMode blendMode)
Returns a QPainter::CompositionMode corresponding to a BlendMode.
Contains settings for how a map layer will be labeled.
double yOffset
Vertical offset of label.
const QgsLabelPlacementSettings & placementSettings() const
Returns the label placement settings.
double maxCurvedCharAngleIn
Maximum angle between inside curved label characters (valid range 20.0 to 60.0).
void setFormat(const QgsTextFormat &format)
Sets the label text formatting settings, e.g., font settings, buffer settings, etc.
double xOffset
Horizontal offset of label.
Qgis::LabelPlacement placement
Label placement mode.
double angleOffset
Label rotation, in degrees clockwise.
double maxCurvedCharAngleOut
Maximum angle between outside curved label characters (valid range -20.0 to -95.0)
Qgis::RenderUnit offsetUnits
Units for offsets of label.
bool isExpression
true if this label is made from a expression string, e.g., FieldName || 'mm'
const QgsLabelLineSettings & lineSettings() const
Returns the label line settings, which contain settings related to how the label engine places and fo...
Qgis::UpsideDownLabelHandling upsidedownLabels
Controls whether upside down labels are displayed and how they are handled.
QString fieldName
Name of field (or an expression) to use for label text.
Resolves relative paths into absolute paths and vice versa.
A class to represent a 2D point.
Point geometry type, with support for z-dimension and m-values.
Encapsulates properties and constraints relating to fetching elevation profiles from different source...
virtual QString translate(const QString &context, const QString &sourceText, const char *disambiguation=nullptr, int n=-1) const =0
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
bool commitChanges(QStringList &commitErrors, bool stopEditing=true, QgsVectorLayer *vectorLayer=nullptr)
Attempts to commit to the underlying data provider any buffered changes made since the last to call t...
static QgsProject * instance()
Returns the QgsProject singleton instance.
Q_INVOKABLE QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
bool rollBack(QStringList &rollbackErrors, bool stopEditing=true, QgsVectorLayer *vectorLayer=nullptr)
Stops a current editing operation on vectorLayer and discards any uncommitted edits.
QgsPathResolver pathResolver() const
Returns path resolver object with considering whether the project uses absolute or relative paths and...
bool startEditing(QgsVectorLayer *vectorLayer=nullptr)
Makes the layer editable.
QMap< QString, QgsMapLayer * > mapLayers(const bool validOnly=false) const
Returns a map of all registered layers by layer ID.
A grouped map of multiple QgsProperty objects, each referenced by 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.
QString absoluteToRelativeUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts absolute path(s) to relative path(s) in the given provider-specific URI.
QString getStyleById(const QString &providerKey, const QString &uri, const QString &styleId, QString &errCause)
Gets a layer style defined by styleId.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
bool deleteStyleById(const QString &providerKey, const QString &uri, const QString &styleId, QString &errCause)
Deletes a layer style defined by styleId.
QString loadStoredStyle(const QString &providerKey, const QString &uri, QString &styleName, QString &errCause)
Loads a layer style from the provider storage, reporting its name.
QString relativeToAbsoluteUri(const QString &providerKey, const QString &uri, const QgsReadWriteContext &context) const
Converts relative path(s) to absolute path(s) in the given provider-specific URI.
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.
MAYBE_UNUSED NODISCARD QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString()) const
Push a category to the stack.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
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, bool normalize=true)
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.
Contains information about the context of a rendering operation.
double rendererScale() const
Returns the renderer map scale.
bool useRenderingOptimization() const
Returns true if the rendering optimization (geometry simplification) can be executed.
A child rule for QgsRuleBasedLabeling.
void appendChild(QgsRuleBasedLabeling::Rule *rule)
add child rule, take ownership, sets this as parent
Rule based labeling for a vector layer.
A boolean settings entry.
static QgsSettingsTreeNode * sTreeQgis
This class is a composition of two QSettings instances:
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 double rendererFrameRate(const QgsFeatureRenderer *renderer)
Calculates the frame rate (in frames per second) at which the given renderer must be redrawn.
static QgsStringMap getSvgParameterList(QDomElement &element)
static void mergeScaleDependencies(double mScaleMinDenom, double mScaleMaxDenom, QVariantMap &props)
Merges the local scale limits, if any, with the ones already in the map, if any.
static bool fillFromSld(QDomElement &element, Qt::BrushStyle &brushStyle, QColor &color)
static Qgis::RenderUnit decodeSldUom(const QString &str, double *scaleFactor=nullptr)
Decodes a SLD unit of measure string to a render unit.
long addTask(QgsTask *task, int priority=0)
Adds a task to the manager.
void taskCompleted()
Will be emitted by task to indicate its successful completion.
void taskTerminated()
Will be emitted by task if it has terminated for any reason other then completion (e....
bool isActive() const
Returns true if the temporal property is active.
Container for settings relating to a text buffer.
void setColor(const QColor &color)
Sets the color for the buffer.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units used for the buffer size.
void setEnabled(bool enabled)
Sets whether the text buffer will be drawn.
void setSize(double size)
Sets the size of the buffer.
Container for all settings relating to text rendering.
void setColor(const QColor &color)
Sets the color that text will be rendered in.
void setSize(double size)
Sets the size for rendered text.
void setFont(const QFont &font)
Sets the font used for rendering text.
void setSizeUnit(Qgis::RenderUnit unit)
Sets the units for the size of rendered text.
void setBuffer(const QgsTextBufferSettings &bufferSettings)
Sets the text's buffer settings.
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 bool isNull(const QVariant &variant)
Returns true if the specified variant should be considered a NULL value.
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....
virtual bool isSaveAndLoadStyleToDatabaseSupported() const
It returns false by default.
static const int EditingCapabilities
Bitmask of all provider's editing capabilities.
long long featureCount() const override=0
Number of features in the layer.
virtual QgsFeatureRenderer * createRenderer(const QVariantMap &configuration=QVariantMap()) const
Creates a new vector layer feature renderer, using provider backend specific information.
virtual QString storageType() const
Returns the permanent storage type for this layer as a friendly name.
virtual QStringList uniqueStringsMatching(int index, const QString &substring, int limit=-1, QgsFeedback *feedback=nullptr) const
Returns unique string values of an attribute which contain a specified subset string.
void raiseError(const QString &msg) const
Signals an error in this provider.
virtual bool isSqlQuery() const
Returns true if the layer is a query (SQL) layer.
virtual bool empty() const
Returns true if the layer does not contain any feature.
virtual QgsAttributeList pkAttributeIndexes() const
Returns list of indexes of fields that make up the primary key.
virtual void handlePostCloneOperations(QgsVectorDataProvider *source)
Handles any post-clone operations required after this vector data provider was cloned from the source...
virtual QSet< QgsMapLayerDependency > dependencies() const
Gets the list of layer ids on which this layer depends.
virtual void setEncoding(const QString &e)
Set encoding used for accessing data from layer.
virtual Qgis::VectorLayerTypeFlags vectorLayerTypeFlags() const
Returns the vector layer type flags.
QVariant maximumValue(int index) const override
Returns the maximum value of an attribute.
QgsFields fields() const override=0
Returns the fields associated with this data provider.
Qgis::WkbType wkbType() const override=0
Returns the geometry type which is returned by this layer.
QVariant minimumValue(int index) const override
Returns the minimum value of an attribute.
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.
bool commitChanges(QStringList &commitErrors, bool stopEditing=true)
Attempts to commit any changes to disk.
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)
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 deleteFeatures(const QgsFeatureIds &fid)
Deletes a set of features from the layer (but does not commit it)
virtual bool addAttribute(const QgsField &field)
Adds an attribute field (but does not commit it) returns true if the field was added.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
virtual bool addFeatures(QgsFeatureList &features)
Insert a copy of the given features into the layer (but does not commit it)
virtual bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues)
Changes values of attributes (but does not commit it).
QgsFeatureMap addedFeatures() const
Returns a map of new features which are not committed.
virtual bool isModified() const
Returns true if the provider has been modified since the last commit.
void updateFields(QgsFields &fields)
Updates fields.
void committedFeaturesAdded(const QString &layerId, const QgsFeatureList &addedFeatures)
void featureDeleted(QgsFeatureId fid)
QgsGeometryMap changedGeometries() const
Returns a map of features with changed geometries which are not committed.
QgsVectorLayerEditBufferGroup * editBufferGroup() const
Returns the parent edit buffer group for this edit buffer, or nullptr if not part of a group.
QgsAttributeList deletedAttributeIds() const
Returns a list of deleted attributes fields which are not committed.
void attributeAdded(int idx)
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 &)
virtual bool commitChanges(QStringList &commitErrors)
Attempts to commit any changes to disk.
virtual bool deleteAttribute(int attr)
Deletes an attribute field (but does not commit it)
virtual bool changeAttributeValue(QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant())
Changed an attribute value (but does not commit it)
virtual bool changeGeometry(QgsFeatureId fid, const QgsGeometry &geom)
Change feature's geometry.
void layerModified()
Emitted when modifications has been done on layer.
void committedFeaturesRemoved(const QString &layerId, const QgsFeatureIds &deletedFeatureIds)
int translateFeature(QgsFeatureId featureId, double dx, double dy)
Translates feature by dx, dy.
bool insertVertex(double x, double y, QgsFeatureId atFeatureId, int beforeVertex)
Insert a new vertex before the given vertex number, in the given ring, item (first number is index 0)...
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addPart(const QVector< QgsPointXY > &ring, QgsFeatureId featureId)
Adds a new part polygon to a multipart feature.
Qgis::VectorEditResult deleteVertex(QgsFeatureId featureId, int vertex)
Deletes a vertex from a feature.
int addTopologicalPoints(const QgsGeometry &geom)
Adds topological points for every vertex of the geometry.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitParts(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits parts cut by the given line.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitFeatures(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits features cut by the given line.
bool moveVertex(double x, double y, QgsFeatureId atFeatureId, int atVertex)
Moves the vertex at the given position number, ring and item (first number is index 0),...
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addRing(const QVector< QgsPointXY > &ring, const QgsFeatureIds &targetFeatureIds=QgsFeatureIds(), QgsFeatureId *modifiedFeatureId=nullptr)
Adds a ring to polygon/multipolygon features.
Vector layer specific subclass of QgsMapLayerElevationProperties.
void setDefaultsFromLayer(QgsMapLayer *layer) override
Sets default properties based on sensible choices for the given map layer.
QgsVectorLayerElevationProperties * clone() const override
Creates a clone of the properties.
Counts the features in a QgsVectorLayer in task.
QHash< QString, long long > symbolFeatureCountMap() const
Returns the count for each symbol.
void cancel() override
Notifies the task that it should terminate.
QHash< QString, QgsFeatureIds > symbolFeatureIdMap() const
Returns the QgsFeatureIds for each symbol.
Manages joined fields for a vector layer.
void resolveReferences(QgsProject *project)
Resolves layer IDs of joined layers using given project's available layers.
bool addJoin(const QgsVectorLayerJoinInfo &joinInfo)
Joins another vector layer to this layer.
void readXml(const QDomNode &layer_node)
Reads joins from project file.
void writeXml(QDomNode &layer_node, QDomDocument &document) const
Saves mVectorJoins to xml under the layer node.
const QgsVectorLayerJoinInfo * joinForFieldIndex(int index, const QgsFields &fields, int &sourceFieldIndex) const
Finds the vector join for a layer field index.
bool changeAttributeValue(QgsFeatureId fid, int field, const QVariant &newValue, const QVariant &oldValue=QVariant())
Changes attribute value in joined layers.
bool removeJoin(const QString &joinLayerId)
Removes a vector layer join.
bool containsJoins() const
Quick way to test if there is any join at all.
bool changeAttributeValues(QgsFeatureId fid, const QgsAttributeMap &newValues, const QgsAttributeMap &oldValues=QgsAttributeMap())
Changes attributes' values in joined layers.
bool addFeatures(QgsFeatureList &features, QgsFeatureSink::Flags flags=QgsFeatureSink::Flags()) override
Adds a list of features in joined layers.
void joinedFieldsChanged()
Emitted whenever the list of joined fields changes (e.g.
void updateFields(QgsFields &fields)
Updates field map with joined attributes.
bool deleteFeature(QgsFeatureId fid, QgsVectorLayer::DeleteContext *context=nullptr) const
Deletes a feature from joined layers.
const QgsVectorJoinList & vectorJoins() const
Defines left outer join from our vector layer to some other vector layer.
QString targetFieldName() const
Returns name of the field of our layer that will be used for join.
QString joinLayerId() const
ID of the joined layer - may be used to resolve reference to the joined layer.
Implementation of QgsAbstractProfileGenerator for vector layers.
Implementation of threaded rendering for vector layers.
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, bool *foundFriendly=nullptr)
Given a set of fields, attempts to pick the "most useful" field for user-friendly identification of f...
Represents a vector layer which manages a vector based 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.
QVariant maximumValue(int index) const FINAL
Returns the maximum value for an attribute column or an invalid variant in case of error.
int addExpressionField(const QString &exp, const QgsField &fld)
Add a new field which is calculated by the expression specified.
void committedFeaturesAdded(const QString &layerId, const QgsFeatureList &addedFeatures)
Emitted when features are added to the provider if not in transaction mode.
void setExtent(const QgsRectangle &rect) FINAL
Sets the extent.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addPart(const QList< QgsPointXY > &ring)
Adds a new part polygon to a multipart feature.
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 isModified() const override
Returns true if the provider has been modified since the last commit.
bool writeStyle(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories) const FINAL
void addFeatureRendererGenerator(QgsFeatureRendererGenerator *generator)
Adds a new feature renderer generator to the layer.
Q_DECL_DEPRECATED void setExcludeAttributesWfs(const QSet< QString > &att)
A set of attributes that are not advertised in WFS requests with QGIS server.
Q_INVOKABLE bool deleteSelectedFeatures(int *deletedCount=nullptr, QgsVectorLayer::DeleteContext *context=nullptr)
Deletes the selected features.
Q_INVOKABLE void selectByRect(QgsRectangle &rect, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection)
Selects features found within the search rectangle (in layer's coordinates)
void removeFieldAlias(int index)
Removes an alias (a display name) for attributes to display in dialogs.
void setAuxiliaryLayer(QgsAuxiliaryLayer *layer=nullptr)
Sets the current auxiliary layer.
void beforeRemovingExpressionField(int idx)
Will be emitted, when an expression field is going to be deleted from this vector layer.
virtual void saveStyleToDatabase(const QString &name, const QString &description, bool useAsDefault, const QString &uiFileContent, QString &msgError, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Saves named and sld style of the layer to the style table in the db.
QString loadDefaultStyle(bool &resultFlag) FINAL
Retrieve the default style for this layer if one exists (either as a .qml file on disk or as a record...
void committedGeometriesChanges(const QString &layerId, const QgsGeometryMap &changedGeometries)
Emitted when geometry changes are saved to the provider if not in transaction mode.
void beforeCommitChanges(bool stopEditing)
Emitted before changes are committed to the data provider.
Q_INVOKABLE bool startEditing()
Makes the layer editable.
QMap< QgsFieldConstraints::Constraint, QgsFieldConstraints::ConstraintStrength > fieldConstraintsAndStrength(int fieldIndex) const
Returns a map of constraint with their strength for a specific field of the layer.
bool addJoin(const QgsVectorLayerJoinInfo &joinInfo)
Joins another vector layer to this layer.
QSet< QgsMapLayerDependency > dependencies() const FINAL
Gets the list of dependencies.
QgsMapLayerTemporalProperties * temporalProperties() override
Returns the layer's temporal properties.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitFeatures(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits features cut by the given line.
QgsDefaultValue defaultValueDefinition(int index) const
Returns the definition of the expression used when calculating the default value for a field.
QgsExpressionContextScope * createExpressionContextScope() const FINAL
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QgsMapLayerRenderer * createMapRenderer(QgsRenderContext &rendererContext) FINAL
Returns new instance of QgsMapLayerRenderer that will be used for rendering of given context.
QgsVectorLayerFeatureCounter * countSymbolFeatures(bool storeSymbolFids=false)
Count features for symbols.
QPainter::CompositionMode featureBlendMode() const
Returns the current blending mode for features.
bool hasMapTips() const FINAL
Returns true if the layer contains map tips.
QString constraintExpression(int index) const
Returns the constraint expression for for a specified field index, if set.
bool addAttribute(const QgsField &field)
Add an attribute field (but does not commit it) returns true if the field was added.
void attributeAdded(int idx)
Will be emitted, when a new attribute has been added to this vector layer.
QString capabilitiesString() const
Capabilities for this layer, comma separated and translated.
static const QgsSettingsEntryEnumFlag< QgsVectorSimplifyMethod::SimplifyHints > * settingsSimplifyDrawingHints
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.
const QgsDiagramLayerSettings * diagramLayerSettings() const
void setFieldConstraint(int index, QgsFieldConstraints::Constraint constraint, QgsFieldConstraints::ConstraintStrength strength=QgsFieldConstraints::ConstraintStrengthHard)
Sets a constraint for a specified field index.
bool loadAuxiliaryLayer(const QgsAuxiliaryStorage &storage, const QString &key=QString())
Loads the auxiliary layer for this vector layer.
bool 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.
QgsAbstractProfileGenerator * createProfileGenerator(const QgsProfileRequest &request) override
Given a profile request, returns a new profile generator ready for generating elevation profiles.
QString htmlMetadata() const FINAL
Obtain a formatted HTML string containing assorted metadata for this layer.
Q_INVOKABLE QgsRectangle boundingBoxOfSelected() const
Returns the bounding box of the selected features. If there is no selection, QgsRectangle(0,...
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.
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)
Q_DECL_DEPRECATED QSet< QString > excludeAttributesWms() const
A set of attributes that are not advertised in WMS requests with QGIS server.
QgsFeatureIds symbolFeatureIds(const QString &legendKey) const
Ids of features rendered with specified legend key.
void removeFieldConstraint(int index, QgsFieldConstraints::Constraint constraint)
Removes a constraint for a specified field index.
int selectedFeatureCount() const
Returns the number of features that are selected in this layer.
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.
Qgis::VectorLayerTypeFlags vectorLayerTypeFlags() const
Returns the vector layer type flags.
void setLabelsEnabled(bool enabled)
Sets whether labels should be enabled for the layer.
void subsetStringChanged()
Emitted when the layer's subset string has changed.
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 if not in transaction mode.
void updateExpressionField(int index, const QString &exp)
Changes the expression used to define an expression based (virtual) field.
Q_INVOKABLE void selectByExpression(const QString &expression, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection, QgsExpressionContext *context=nullptr)
Selects matching features using an expression.
static const QgsSettingsEntryDouble * settingsSimplifyMaxScale
~QgsVectorLayer() override
QgsCoordinateReferenceSystem sourceCrs() const FINAL
Returns the coordinate reference system for features in the source.
void endEditCommand()
Finish edit command and add it to undo/redo stack.
void destroyEditCommand()
Destroy active command and reverts all changes in it.
bool isAuxiliaryField(int index, int &srcIndex) const
Returns true if the field comes from the auxiliary layer, false otherwise.
QgsExpressionContext createExpressionContext() const FINAL
This method needs to be reimplemented in all classes which implement this interface and return an exp...
QList< QgsRelation > referencingRelations(int idx) const
Returns the layer's relations, where the foreign key is on this layer.
Q_DECL_DEPRECATED QSet< QString > excludeAttributesWfs() const
A set of attributes that are not advertised in WFS requests with QGIS server.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult splitParts(const QVector< QgsPointXY > &splitLine, bool topologicalEditing=false)
Splits parts cut by the given line.
void setDefaultValueDefinition(int index, const QgsDefaultValue &definition)
Sets the definition of the expression to use when calculating the default value for a field.
bool diagramsEnabled() const
Returns whether the layer contains diagrams which are enabled and should be drawn.
void setAllowCommit(bool allowCommit)
Controls, if the layer is allowed to commit changes.
bool setDependencies(const QSet< QgsMapLayerDependency > &layers) FINAL
Sets the list of dependencies.
void symbolFeatureCountMapChanged()
Emitted when the feature count for symbols on this layer has been recalculated.
Q_INVOKABLE const QgsFeatureIds & selectedFeatureIds() const
Returns a list of the selected features IDs in this layer.
Qgis::VectorEditResult deleteVertex(QgsFeatureId featureId, int vertex)
Deletes a vertex from a feature.
void setFeatureBlendMode(QPainter::CompositionMode blendMode)
Sets the blending mode used for rendering each feature.
QString constraintDescription(int index) const
Returns the descriptive name for the constraint expression for a specified field index.
void writeCustomSymbology(QDomElement &element, QDomDocument &doc, QString &errorMessage) const
Signal emitted whenever the symbology (QML-file) for this layer is being written.
const QgsAbstractVectorLayerLabeling * labeling() const
Access to const labeling configuration.
void setProviderEncoding(const QString &encoding)
Sets the text encoding of the data provider.
bool writeSld(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QVariantMap &props=QVariantMap()) const
Writes the symbology of the layer into the document provided in SLD 1.1 format.
void setDisplayExpression(const QString &displayExpression)
Set the preview expression, used to create a human readable preview string.
virtual bool deleteAttribute(int attr)
Deletes an attribute field (but does not commit it).
static const QgsSettingsEntryBool * settingsSimplifyLocal
void resolveReferences(QgsProject *project) FINAL
Resolves references to other layers (kept as layer IDs after reading XML) into layer objects.
bool 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).
QgsMapLayerElevationProperties * elevationProperties() override
Returns the layer's elevation properties.
bool removeJoin(const QString &joinLayerId)
Removes a vector layer join.
Q_INVOKABLE void invertSelectionInRectangle(QgsRectangle &rect)
Inverts selection of features found within the search rectangle (in layer's coordinates)
void setRenderer(QgsFeatureRenderer *r)
Sets the feature renderer which will be invoked to represent this layer in 2D map views.
Q_INVOKABLE void selectAll()
Select all the features.
bool isEditable() const FINAL
Returns true if the provider is in editing mode.
QStringList commitErrors() const
Returns a list containing any error messages generated when attempting to commit changes to the layer...
QString storageType() const
Returns the permanent storage type for this layer as a friendly name.
bool readExtentFromXml() const
Returns true if the extent is read from the XML document when data source has no metadata,...
QString dataComment() const
Returns a description for this layer as defined in the data provider.
bool accept(QgsStyleEntityVisitorInterface *visitor) const override
QgsGeometryOptions * geometryOptions() const
Configuration and logic to apply automatically on any edit happening on this layer.
QgsStringMap attributeAliases() const
Returns a map of field name to attribute alias.
Q_INVOKABLE int translateFeature(QgsFeatureId featureId, double dx, double dy)
Translates feature by dx, dy.
Q_INVOKABLE Qgis::WkbType wkbType() const FINAL
Returns the WKBType or WKBUnknown in case of error.
virtual void updateExtents(bool force=false)
Update the extents for the layer.
void attributeDeleted(int idx)
Will be emitted, when an attribute has been deleted from this vector layer.
QgsFeatureRenderer * renderer()
Returns the feature renderer used for rendering the features in the layer in 2D map views.
void beforeEditingStarted()
Emitted before editing on this layer is started.
void committedAttributeValuesChanges(const QString &layerId, const QgsChangedAttributesMap &changedAttributesValues)
Emitted when attribute value changes are saved to the provider if not in transaction mode.
void committedAttributesAdded(const QString &layerId, const QList< QgsField > &addedAttributes)
Emitted when attributes are added to the provider if not in transaction mode.
void setEditFormConfig(const QgsEditFormConfig &editFormConfig)
Sets the editFormConfig (configuration) of the form used to represent this vector layer.
void committedAttributesDeleted(const QString &layerId, const QgsAttributeList &deletedAttributes)
Emitted when attributes are deleted from the provider if not in transaction mode.
QString displayExpression
void displayExpressionChanged()
Emitted when the display expression changes.
QVariant minimumValue(int index) const FINAL
Returns the minimum value for an attribute column or an invalid variant in case of error.
QgsFeatureIterator getSelectedFeatures(QgsFeatureRequest request=QgsFeatureRequest()) const
Returns an iterator of the selected features.
void setEditorWidgetSetup(int index, const QgsEditorWidgetSetup &setup)
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
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 setWeakRelations(const QList< QgsWeakRelation > &relations)
Sets the layer's weak relations.
void reselect()
Reselects the previous set of selected features.
void select(QgsFeatureId featureId)
Selects feature by its ID.
QgsEditorWidgetSetup editorWidgetSetup(int index) const
The editor widget setup defines which QgsFieldFormatter and editor widget will be used for the field ...
long long featureCount() const FINAL
Returns feature count including changes which have not yet been committed If you need only the count ...
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.
QgsVectorLayer * clone() const override
Returns a new instance equivalent to this one.
QgsAttributeTableConfig attributeTableConfig() const
Returns the attribute table configuration object.
QgsActionManager * actions()
Returns all layer actions defined on this layer.
bool readSld(const QDomNode &node, QString &errorMessage) FINAL
QgsFeature getFeature(QgsFeatureId fid) const
Queries the layer for the feature with the given id.
Q_INVOKABLE void selectByIds(const QgsFeatureIds &ids, Qgis::SelectBehavior behavior=Qgis::SelectBehavior::SetSelection)
Selects matching features using a list of feature IDs.
QStringList uniqueStringsMatching(int index, const QString &substring, int limit=-1, QgsFeedback *feedback=nullptr) const
Returns unique string values of an attribute which contain a specified subset string.
void raiseError(const QString &msg)
Signals an error related to this vector layer.
void editCommandEnded()
Signal emitted, when an edit command successfully ended.
void supportsEditingChanged()
Emitted when the read only state or the data provider of this layer is changed.
QgsFeatureSource::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.
static Q_DECL_DEPRECATED void drawVertexMarker(double x, double y, QPainter &p, Qgis::VertexMarkerType type, int vertexSize)
Draws a vertex symbol at (screen) coordinates x, y.
bool 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.
void setFieldAlias(int index, const QString &aliasString)
Sets an alias (a display name) for attributes to display in dialogs.
friend class QgsVectorLayerFeatureSource
void minimumAndMaximumValue(int index, QVariant &minimum, QVariant &maximum) const
Calculates both the minimum and maximum value for an attribute column.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
QgsRectangle extent() const FINAL
Returns the extent of the layer.
Q_DECL_DEPRECATED void setExcludeAttributesWms(const QSet< QString > &att)
A set of attributes that are not advertised in WMS requests with QGIS server.
void setAttributeTableConfig(const QgsAttributeTableConfig &attributeTableConfig)
Sets the attribute table configuration object.
virtual bool setSubsetString(const QString &subset)
Sets the string (typically sql) used to define a subset of the layer.
bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context) FINAL
Reads vector layer specific state from project file Dom node.
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...
void setDiagramLayerSettings(const QgsDiagramLayerSettings &s)
QList< QgsWeakRelation > weakRelations() const
Returns the layer's weak relations as specified in the layer's style.
const QgsVectorSimplifyMethod & simplifyMethod() const
Returns the simplification settings for fast rendering of features.
void selectionChanged(const QgsFeatureIds &selected, const QgsFeatureIds &deselected, bool clearAndSelect)
Emitted when selection was changed.
void beforeAddingExpressionField(const QString &fieldName)
Will be emitted, when an expression field is going to be added to this vector layer.
bool deleteAttributes(const QList< int > &attrs)
Deletes a list of attribute fields (but does not commit it)
void updatedFields()
Emitted whenever the fields available from this layer have been changed.
QVariant defaultValue(int index, const QgsFeature &feature=QgsFeature(), QgsExpressionContext *context=nullptr) const
Returns the calculated default value for the specified field index.
void featureAdded(QgsFeatureId fid)
Emitted when a new feature has been added to the layer.
QString sourceName() const FINAL
Returns a friendly display name for the source.
QString attributeAlias(int index) const
Returns the alias of an attribute name or a null string if there is no alias.
void featureDeleted(QgsFeatureId fid)
Emitted when a feature has been deleted.
Q_INVOKABLE void removeSelection()
Clear selection.
bool allowCommit() const
Controls, if the layer is allowed to commit changes.
QgsConditionalLayerStyles * conditionalStyles() const
Returns the conditional styles that are set for this layer.
void readCustomSymbology(const QDomElement &element, QString &errorMessage)
Signal emitted whenever the symbology (QML-file) for this layer is being read.
void reload() FINAL
Synchronises with changes in the datasource.
const QList< QgsVectorLayerJoinInfo > vectorJoins() const
bool renameAttribute(int index, const QString &newName)
Renames an attribute field (but does not commit it).
bool isSqlQuery() const
Returns true if the layer is a query (SQL) layer.
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.
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...
static const QgsSettingsEntryEnumFlag< QgsVectorSimplifyMethod::SimplifyAlgorithm > * settingsSimplifyAlgorithm
void beginEditCommand(const QString &text)
Create edit command for undo/redo operations.
QString displayField() const
This is a shorthand for accessing the displayExpression if it is a simple field.
Q_DECL_DEPRECATED Qgis::GeometryOperationResult addRing(const QVector< QgsPointXY > &ring, QgsFeatureId *featureId=nullptr)
Adds a ring to polygon/multipolygon features.
void setDiagramRenderer(QgsDiagramRenderer *r)
Sets diagram rendering object (takes ownership)
void geometryChanged(QgsFeatureId fid, const QgsGeometry &geometry)
Emitted whenever a geometry change is done in the edit buffer.
QgsEditFormConfig editFormConfig
QList< const QgsFeatureRendererGenerator * > featureRendererGenerators() const
Returns a list of the feature renderer generators owned by the layer.
bool moveVertex(double x, double y, QgsFeatureId atFeatureId, int atVertex)
Moves the vertex at the given position number, ring and item (first number is index 0),...
QgsGeometry getGeometry(QgsFeatureId fid) const
Queries the layer for the geometry at the given id.
int addTopologicalPoints(const QgsGeometry &geom)
Adds topological points for every vertex of the geometry.
void beforeModifiedCheck() const
Emitted when the layer is checked for modifications. Use for last-minute additions.
Q_INVOKABLE void invertSelection()
Selects not selected features and deselects selected ones.
const QgsDiagramRenderer * diagramRenderer() const
QVariant aggregate(QgsAggregateCalculator::Aggregate aggregate, const QString &fieldOrExpression, const QgsAggregateCalculator::AggregateParameters ¶meters=QgsAggregateCalculator::AggregateParameters(), QgsExpressionContext *context=nullptr, bool *ok=nullptr, QgsFeatureIds *fids=nullptr, QgsFeedback *feedback=nullptr, QString *error=nullptr) const
Calculates an aggregated value from the layer's features.
bool changeGeometry(QgsFeatureId fid, QgsGeometry &geometry, bool skipDefaultValue=false)
Changes a feature's geometry within the layer's edit buffer (but does not immediately commit the chan...
static const QgsSettingsEntryDouble * settingsSimplifyDrawingTol
QSet< QVariant > uniqueValues(int fieldIndex, int limit=-1) const FINAL
Calculates a list of unique values contained within an attribute in the layer.
void setFieldSplitPolicy(int index, Qgis::FieldDomainSplitPolicy policy)
Sets a split policy for the field with the specified index.
bool forceLocalOptimization() const
Gets where the simplification executes, after fetch the geometries from provider, or when supported,...
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 (or the "child" / "right" layer in the relationship)
@ Referenced
The layer is referenced (or the "parent" / "left" left in the relationship)
static void writeXml(const QgsVectorLayer *layer, WeakRelationType type, const QgsRelation &relation, QDomNode &node, QDomDocument &doc)
Writes a weak relation infoto an XML structure.
static QgsWeakRelation readXml(const QgsVectorLayer *layer, WeakRelationType type, const QDomNode &node, const QgsPathResolver resolver)
Returns a weak relation for the given layer.
static QString geometryDisplayString(Qgis::GeometryType type) SIP_HOLDGIL
Returns a display string for a geometry type.
static Qgis::GeometryType geometryType(Qgis::WkbType type) SIP_HOLDGIL
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
static QString displayString(Qgis::WkbType 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)
@ UnknownCount
Provider returned an unknown feature count.
double ANALYSIS_EXPORT angle(QgsPoint *p1, QgsPoint *p2, QgsPoint *p3, QgsPoint *p4)
Calculates the angle between two segments (in 2 dimension, z-values are ignored)
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
bool qgsVariantEqual(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether they are equal, two NULL values are always treated a...
bool qgsVariantLessThan(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether the first is less than the second.
bool qgsVariantGreaterThan(const QVariant &lhs, const QVariant &rhs)
Compares two QVariant values and returns whether the first is greater than the second.
T qgsEnumKeyToValue(const QString &key, const T &defaultValue, bool tryValueAsKey=true, bool *returnOk=nullptr)
Returns the value corresponding to the given key of an enum.
QString qgsEnumValueToKey(const T &value, bool *returnOk=nullptr)
Returns the value for the given key of an enum.
QString qgsFlagValueToKeys(const T &value, bool *returnOk=nullptr)
Returns the value for the given keys of a flag.
T qgsFlagKeysToValue(const QString &keys, const T &defaultValue, bool tryValueAsKey=true, bool *returnOk=nullptr)
Returns the value corresponding to the given keys of a flag.
QMap< QString, QString > QgsStringMap
QVector< QgsPoint > QgsPointSequence
QMap< int, QVariant > QgsAttributeMap
QList< QgsFeature > QgsFeatureList
QSet< QgsFeatureId > QgsFeatureIds
qint64 QgsFeatureId
64 bit feature ids negative numbers are used for uncommitted/newly added features
QList< int > QgsAttributeList
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
QMap< int, QgsPropertyDefinition > QgsPropertiesDefinition
Definition of available properties.
#define RENDERER_TAG_NAME
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS_NON_FATAL
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS
bool saveStyle_t(const QString &uri, const QString &qmlStyle, const QString &sldStyle, const QString &styleName, const QString &styleDescription, const QString &uiFileContent, bool useAsDefault, QString &errCause)
int listStyles_t(const QString &uri, QStringList &ids, QStringList &names, QStringList &descriptions, QString &errCause)
QString getStyleById_t(const QString &uri, QString styleID, QString &errCause)
bool deleteStyleById_t(const QString &uri, QString styleID, QString &errCause)
QString loadStyle_t(const QString &uri, QString &errCause)
QMap< QgsFeatureId, QgsFeature > QgsFeatureMap
A bundle of parameters controlling aggregate calculation.
Setting options for creating vector data providers.
Context for cascade delete features.
QList< QgsVectorLayer * > handledLayers(bool includeAuxiliaryLayers=true) const
Returns a list of all layers affected by the delete operation.
QMap< QgsVectorLayer *, QgsFeatureIds > mHandledFeatures
QgsFeatureIds handledFeatures(QgsVectorLayer *layer) const
Returns a list of feature IDs from the specified layer affected by the delete operation.
Setting options for loading vector layers.
bool skipCrsValidation
Controls whether the layer is allowed to have an invalid/unknown CRS.
bool forceReadOnly
Controls whether the layer is forced to be load as Read Only.
bool loadDefaultStyle
Set to true if the default layer style should be loaded.
QgsCoordinateTransformContext transformContext
Coordinate transform context.
QgsCoordinateReferenceSystem fallbackCrs
Fallback layer coordinate reference system.
Qgis::WkbType fallbackWkbType
Fallback geometry type.
bool loadAllStoredStyles
Controls whether the stored styles will be all loaded.