59#include <QDomDocument>
61#include <QDomImplementation>
66#include <QRegularExpression>
67#include <QStandardPaths>
73#include <QXmlStreamReader>
75#include "moc_qgsmaplayer.cpp"
77using namespace Qt::StringLiterals;
93 const QString &lyrname,
99 , mUndoStack( new QUndoStack( this ) )
100 , mUndoStackStyles( new QUndoStack( this ) )
102 , mRefreshTimer( new QTimer( this ) )
107 connect( mRefreshTimer, &QTimer::timeout,
this, [
this]
110 switch ( mAutoRefreshMode )
144 for (
const QString &s : constStyles )
154 layer->mExtent3D = mExtent3D;
156 layer->mExtent2D = mExtent2D;
190 if (
flags == mFlags )
215 if ( qobject_cast< QgsMapLayerStore * >( parent() ) )
273 mServerProperties->setShortName(
shortName );
280 return mServerProperties->shortName();
287 mServerProperties->setTitle(
title );
294 return mServerProperties->title();
301 mServerProperties->setAbstract(
abstract );
308 return mServerProperties->abstract();
315 mServerProperties->setKeywordList( keywords );
322 return mServerProperties->keywordList();
329 mServerProperties->setDataUrl(
dataUrl );
336 return mServerProperties->dataUrl();
350 return mServerProperties->dataUrlFormat();
357 mServerProperties->setAttribution( attrib );
364 return mServerProperties->attribution();
371 mServerProperties->setAttributionUrl( attribUrl );
378 return mServerProperties->attributionUrl();
385 mServerProperties->setLegendUrl(
legendUrl );
392 return mServerProperties->legendUrl();
406 return mServerProperties->legendUrlFormat();
414 if ( urls.isEmpty() )
417 urls.prepend( newItem );
423 urls.prepend( newItem );
432 if ( mServerProperties->metadataUrls().isEmpty() )
434 return QLatin1String();
438 return mServerProperties->metadataUrls().first().url;
446 QList<QgsMapLayerServerProperties::MetadataUrl> urls = mServerProperties->metadataUrls();
447 if ( urls.isEmpty() )
450 urls.prepend( newItem );
456 urls.prepend( newItem );
458 mServerProperties->setMetadataUrls( urls );
465 if ( mServerProperties->metadataUrls().isEmpty() )
467 return QLatin1String();
471 return mServerProperties->metadataUrls().first().type;
479 QList<QgsMapLayerServerProperties::MetadataUrl> urls = mServerProperties->metadataUrls();
480 if ( urls.isEmpty() )
483 urls.prepend( newItem );
489 urls.prepend( newItem );
491 mServerProperties->setMetadataUrls( urls );
498 if ( mServerProperties->metadataUrls().isEmpty() )
504 return mServerProperties->metadataUrls().first().format;
535 return mExtent2D.isNull() ? mExtent3D.toRectangle() : mExtent2D;
598 mnl = layerElement.namedItem( u
"provider"_s );
599 mne = mnl.toElement();
600 provider = mne.text();
603 mnl = layerElement.namedItem( u
"datasource"_s );
604 mne = mnl.toElement();
605 const QString dataSourceRaw = mne.text();
608 const thread_local QRegularExpression rx(
"authcfg=([a-z]|[A-Z]|[0-9]){7}" );
609 if ( rx.match( dataSourceRaw ).hasMatch()
621 mnl = layerElement.namedItem( u
"layername"_s );
622 mne = mnl.toElement();
627 const QDomNode srsNode = layerElement.namedItem( u
"srs"_s );
628 mCRS.readXml( srsNode );
629 mCRS.setValidationHint( tr(
"Specify CRS for layer %1" ).arg( mne.text() ) );
646 mnl = layerElement.namedItem( u
"id"_s );
647 if ( ! mnl.isNull() )
649 mne = mnl.toElement();
650 if ( ! mne.isNull() && mne.text().length() > 10 )
652 const QString newId = mne.text();
662 mnl = layerElement.namedItem( u
"layername"_s );
663 mne = mnl.toElement();
669 layerError = !
readXml( layerElement, context );
683 const QDomNode verticalCrsNode = layerElement.firstChildElement( u
"verticalCrs"_s );
684 if ( !verticalCrsNode.isNull() )
695 const QDomElement metadataElem = layerElement.firstChildElement( u
"resourceMetadata"_s );
696 mMetadata.readMetadataXml( metadataElem, context );
699 if ( layerElement.hasAttribute( u
"autoRefreshMode"_s ) )
713 const QDomNode wgs84ExtentNode = layerElement.namedItem( u
"wgs84extent"_s );
714 if ( !wgs84ExtentNode.isNull() )
718 mLegendPlaceholderImage = layerElement.attribute( u
"legendPlaceholderImage"_s );
722 if ( mCrs3D != oldCrs3D )
733 Q_UNUSED( layer_node )
740 const QDomNode extent3DNode = layer_node.namedItem( u
"extent3D"_s );
741 if ( extent3DNode.isNull() )
743 const QDomNode extentNode = layer_node.namedItem( u
"extent"_s );
744 if ( !extentNode.isNull() )
780 layerElement.setAttribute( u
"autoRefreshTime"_s, QString::number( mRefreshTimer->interval() ) );
781 layerElement.setAttribute( u
"autoRefreshMode"_s,
qgsEnumValueToKey( mAutoRefreshMode ) );
786 QDomElement layerId = document.createElement( u
"id"_s );
787 const QDomText layerIdText = document.createTextNode(
id() );
788 layerId.appendChild( layerIdText );
790 layerElement.appendChild( layerId );
792 if ( mVerticalCrs.isValid() )
794 QDomElement verticalSrsNode = document.createElement( u
"verticalCrs"_s );
795 mVerticalCrs.writeXml( verticalSrsNode, document );
796 layerElement.appendChild( verticalSrsNode );
800 QDomElement dataSource = document.createElement( u
"datasource"_s );
802 const QDomText dataSourceText = document.createTextNode( src );
803 dataSource.appendChild( dataSourceText );
804 layerElement.appendChild( dataSource );
807 QDomElement layerName = document.createElement( u
"layername"_s );
808 const QDomText layerNameText = document.createTextNode(
name() );
809 layerName.appendChild( layerNameText );
810 layerElement.appendChild( layerName );
815 QDomElement stamp = document.createElement( u
"timestamp"_s );
816 const QDomText stampText = document.createTextNode(
timestamp().toString( Qt::ISODate ) );
817 stamp.appendChild( stampText );
818 layerElement.appendChild( stamp );
821 layerElement.appendChild( layerName );
828 QDomElement mySrsElement = document.createElement( u
"srs"_s );
829 mCRS.writeXml( mySrsElement, document );
830 layerElement.appendChild( mySrsElement );
833 QDomElement myMetadataElem = document.createElement( u
"resourceMetadata"_s );
834 mMetadata.writeMetadataXml( myMetadataElem, document );
835 layerElement.appendChild( myMetadataElem );
837 layerElement.setAttribute( u
"legendPlaceholderImage"_s, mLegendPlaceholderImage );
842 return writeXml( layerElement, document, context );
851 const QMetaEnum metaEnum = QMetaEnum::fromType<QgsMapLayer::StyleCategories>();
852 const QString categoriesKeys( metaEnum.valueToKeys(
static_cast<int>( categories ) ) );
853 layerElement.setAttribute( u
"styleCategories"_s, categoriesKeys );
862 layerElement.setAttribute( u
"maxScale"_s, QString::number(
maximumScale() ) );
863 layerElement.setAttribute( u
"minScale"_s, QString::number(
minimumScale() ) );
864 layerElement.setAttribute( u
"autoRefreshMode"_s,
qgsEnumValueToKey( mAutoRefreshMode ) );
865 layerElement.setAttribute( u
"autoRefreshTime"_s, QString::number(
autoRefreshInterval() ) );
872 QDomElement renderer3DElem = document.createElement( u
"renderer-3d"_s );
873 renderer3DElem.setAttribute( u
"type"_s, m3DRenderer->type() );
874 m3DRenderer->writeXml( renderer3DElem, context );
875 layerElement.appendChild( renderer3DElem );
883 QDomElement layerFlagsElem = document.createElement( u
"flags"_s );
885 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
887 const bool flagValue = mFlags.testFlag( it.key() );
888 QDomElement flagElem = document.createElement( it.value() );
889 flagElem.appendChild( document.createTextNode( QString::number( flagValue ) ) );
890 layerFlagsElem.appendChild( flagElem );
892 layerElement.appendChild( layerFlagsElem );
895 if ( categories.testFlag(
Temporal ) )
898 properties->writeXml( layerElement, document, context );
904 properties->writeXml( layerElement, document, context );
909 QDomElement notesElem = document.createElement( u
"userNotes"_s );
911 layerElement.appendChild( notesElem );
926 Q_UNUSED( layer_node )
957 m3DRenderer->resolveReferences( *
project );
967 mCustomProperties.
readXml( layerNode, keyStartsWith );
969 for (
const QString &key : mCustomProperties.keys() )
971 if ( !oldKeys.contains( key ) || mCustomProperties.value( key ) != oldKeys.value( key ) )
982 mCustomProperties.writeXml( layerNode, doc );
989 const QDomElement styleMgrElem = layerNode.firstChildElement( u
"map-layer-style-manager"_s );
990 if ( !styleMgrElem.isNull() )
991 mStyleManager->readXml( styleMgrElem );
993 mStyleManager->reset();
1000 if ( mStyleManager )
1002 QDomElement styleMgrElem = doc.createElement( u
"map-layer-style-manager"_s );
1003 mStyleManager->writeXml( styleMgrElem );
1004 layerNode.appendChild( styleMgrElem );
1012 return mMapTipTemplate;
1019 if ( mMapTipTemplate == mapTip )
1022 mMapTipTemplate = mapTip;
1030 if ( mMapTipsEnabled == enabled )
1033 mMapTipsEnabled = enabled;
1041 return mMapTipsEnabled;
1058 const QDomNode extent3DNode = layerNode.namedItem( u
"extent3D"_s );
1059 if ( extent3DNode.isNull() )
1061 const QDomNode extentNode = layerNode.namedItem( u
"extent"_s );
1062 if ( !extentNode.isNull() )
1085void QgsMapLayer::connectNotify(
const char *signal )
1099 return !mScaleBasedVisibility
1109 return mScaleBasedVisibility;
1123 return mAutoRefreshMode;
1130 return mRefreshTimer->interval();
1137 if ( interval <= 0 )
1139 mRefreshTimer->stop();
1140 mRefreshTimer->setInterval( 0 );
1145 mRefreshTimer->setInterval( interval );
1161 if ( mode == mAutoRefreshMode )
1164 mAutoRefreshMode = mode;
1165 switch ( mAutoRefreshMode )
1168 mRefreshTimer->stop();
1173 if ( mRefreshTimer->interval() > 0 )
1174 mRefreshTimer->start();
1213 mScaleBasedVisibility = enabled;
1227 return QStringList();
1265 switch ( mCRS.type() )
1268 QgsDebugError( u
"Layer has a vertical CRS set as the horizontal CRS!"_s );
1272 return mCRS.verticalCrs();
1287 return mVerticalCrs;
1294 return mCrs3D.isValid() ? mCrs3D : mCRS;
1302 if ( mCRS == srs && !needToValidateCrs )
1311 if ( needToValidateCrs )
1313 mCRS.setValidationHint( tr(
"Specify CRS for layer %1" ).arg(
name() ) );
1319 if ( emitSignal && mCRS != oldCrs )
1325 if ( oldCrs3D != mCrs3D )
1333 if (
crs.isValid() )
1336 switch (
crs.type() )
1354 *errorMessage = QObject::tr(
"Specified CRS is a %1 CRS, not a Vertical CRS" ).arg(
qgsEnumValueToKey(
crs.type() ) );
1359 if (
crs != mVerticalCrs )
1364 switch ( mCRS.type() )
1367 if (
crs != oldVerticalCrs )
1370 *errorMessage = QObject::tr(
"Layer CRS is a Compound CRS, specified Vertical CRS will be ignored" );
1376 if (
crs != oldVerticalCrs )
1379 *errorMessage = QObject::tr(
"Layer CRS is a Geographic 3D CRS, specified Vertical CRS will be ignored" );
1385 if (
crs != oldVerticalCrs )
1388 *errorMessage = QObject::tr(
"Layer CRS is a Geocentric CRS, specified Vertical CRS will be ignored" );
1394 if ( mCRS.hasVerticalAxis() &&
crs != oldVerticalCrs )
1397 *errorMessage = QObject::tr(
"Layer CRS is a Projected 3D CRS, specified Vertical CRS will be ignored" );
1415 res = rebuildCrs3D( errorMessage );
1421 if ( mCrs3D != oldCrs3D )
1437 QString layerName(
name );
1438 layerName.replace(
'_',
' ' );
1443QString QgsMapLayer::baseURI( PropertyType type )
const
1457 myURI = components[
"path"].toString();
1460 QFileInfo myFileInfo( myURI );
1463 if ( myFileInfo.exists() )
1466 if ( myURI.endsWith(
".gz"_L1, Qt::CaseInsensitive ) )
1468 else if ( myURI.endsWith(
".zip"_L1, Qt::CaseInsensitive ) )
1470 else if ( myURI.endsWith(
".tar"_L1, Qt::CaseInsensitive ) )
1472 else if ( myURI.endsWith(
".tar.gz"_L1, Qt::CaseInsensitive ) )
1474 else if ( myURI.endsWith(
".tgz"_L1, Qt::CaseInsensitive ) )
1476 myFileInfo.setFile( myURI );
1505 QString errorMessage;
1508 return tr(
"Successfully saved default layer metadata" );
1510 return errorMessage;
1559bool QgsMapLayer::loadNamedPropertyFromDatabase(
const QString &db,
const QString &uri, QString &xml,
QgsMapLayer::PropertyType type )
1565 bool resultFlag =
false;
1573 QgsDebugMsgLevel( u
"Trying to load style or metadata for \"%1\" from \"%2\""_s.arg( uri, db ), 4 );
1575 if ( db.isEmpty() || !QFile( db ).exists() )
1578 myResult = database.
open_v2( db, SQLITE_OPEN_READONLY,
nullptr );
1579 if ( myResult != SQLITE_OK )
1588 mySql = u
"select qmd from tbl_metadata where metadata=?"_s;
1592 mySql = u
"select qml from tbl_styles where style=?"_s;
1596 statement = database.
prepare( mySql, myResult );
1597 if ( myResult == SQLITE_OK )
1599 QByteArray param = uri.toUtf8();
1601 if ( sqlite3_bind_text( statement.get(), 1, param.data(), param.length(), SQLITE_STATIC ) == SQLITE_OK &&
1602 sqlite3_step( statement.get() ) == SQLITE_ROW )
1604 xml = QString::fromUtf8(
reinterpret_cast< const char *
>( sqlite3_column_text( statement.get(), 0 ) ) );
1625 namedPropertyExists =
false;
1626 propertySuccessfullyLoaded =
false;
1627 if ( uri.isEmpty() )
1630 QDomDocument myDocument( u
"qgis"_s );
1634 QString myErrorMessage;
1636 QFile myFile( uri );
1637 if ( myFile.open( QFile::ReadOnly ) )
1640 namedPropertyExists =
true;
1643 propertySuccessfullyLoaded = myDocument.setContent( &myFile, &myErrorMessage, &line, &column );
1644 if ( !propertySuccessfullyLoaded )
1645 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1662 namedPropertyExists =
true;
1663 propertySuccessfullyLoaded = myDocument.setContent( xml, &myErrorMessage, &line, &column );
1664 if ( !propertySuccessfullyLoaded )
1666 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1673 myErrorMessage = tr(
"Style not found in database" );
1684 namedPropertyExists =
true;
1685 propertySuccessfullyLoaded = myDocument.setContent( xml, &myErrorMessage, &line, &column );
1686 if ( !propertySuccessfullyLoaded )
1688 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1693 myErrorMessage = tr(
"Metadata not found in database" );
1700 if ( !propertySuccessfullyLoaded )
1702 return myErrorMessage;
1708 propertySuccessfullyLoaded =
importNamedStyle( myDocument, myErrorMessage, categories );
1709 if ( !propertySuccessfullyLoaded )
1710 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1714 if ( !propertySuccessfullyLoaded )
1715 myErrorMessage = tr(
"Loading metadata file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1718 return myErrorMessage;
1725 const QDomElement myRoot = document.firstChildElement( u
"qgis"_s );
1726 if ( myRoot.isNull() )
1728 errorMessage = tr(
"Root <qgis> element could not be found" );
1732 return mMetadata.readMetadataXml( myRoot );
1739 const QDomElement myRoot = myDocument.firstChildElement( u
"qgis"_s );
1740 if ( myRoot.isNull() )
1742 myErrorMessage = tr(
"Root <qgis> element could not be found" );
1750 if ( thisVersion > fileVersion )
1769 myErrorMessage = tr(
"Cannot apply style with symbology to layer with a different geometry type" );
1777 return readSymbology( myRoot, myErrorMessage, context, categories & sourceCategories );
1784 QDomImplementation DomImplementation;
1785 const QDomDocumentType documentType = DomImplementation.createDocumentType( u
"qgis"_s, u
"http://mrcc.com/qgis.dtd"_s, u
"SYSTEM"_s );
1786 QDomDocument myDocument( documentType );
1788 QDomElement myRootNode = myDocument.createElement( u
"qgis"_s );
1790 myDocument.appendChild( myRootNode );
1792 if ( !mMetadata.writeMetadataXml( myRootNode, myDocument ) )
1794 errorMsg = QObject::tr(
"Could not save metadata" );
1805 QDomImplementation DomImplementation;
1806 const QDomDocumentType documentType = DomImplementation.createDocumentType( u
"qgis"_s, u
"http://mrcc.com/qgis.dtd"_s, u
"SYSTEM"_s );
1807 QDomDocument myDocument( documentType );
1809 QDomElement myRootNode = myDocument.createElement( u
"qgis"_s );
1811 myDocument.appendChild( myRootNode );
1813 if ( !
writeSymbology( myRootNode, myDocument, errorMsg, context, categories ) )
1815 errorMsg = QObject::tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1826 const QgsVectorLayer *vl = qobject_cast<const QgsVectorLayer *>(
this );
1827 const QString geoType = QString::number(
static_cast<int>( vl->
geometryType() ) );
1830 QDomElement layerGeometryType = myDocument.createElement( u
"layerGeometryType"_s );
1831 const QDomText
type = myDocument.createTextNode( geoType );
1833 layerGeometryType.appendChild(
type );
1834 myRootNode.appendChild( layerGeometryType );
1865 bool metadataExists =
false;
1866 bool metadataSuccessfullyLoaded =
false;
1867 const QString message = loadNamedProperty( uri,
QgsMapLayer::Metadata, metadataExists, metadataSuccessfullyLoaded );
1870 ( void )metadataExists;
1871 resultFlag = metadataSuccessfullyLoaded;
1875QString QgsMapLayer::saveNamedProperty(
const QString &uri,
QgsMapLayer::PropertyType type,
bool &resultFlag, StyleCategories categories )
1887 QStringList theURIParts = uri.split(
'|' );
1888 filename = theURIParts[0];
1890 else if ( vlayer && vlayer->
providerType() ==
"gpx"_L1 )
1892 QStringList theURIParts = uri.split(
'?' );
1893 filename = theURIParts[0];
1895 else if ( vlayer && vlayer->
providerType() ==
"delimitedtext"_L1 )
1897 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1899 if ( filename.isEmpty() )
1907 QString myErrorMessage;
1908 QDomDocument myDocument;
1916 const QgsReadWriteContext context;
1921 const QFileInfo myFileInfo( filename );
1924 const QFileInfo myDirInfo( myFileInfo.path() );
1925 if ( !myDirInfo.isWritable() )
1928 return tr(
"The directory containing your dataset needs to be writable!" );
1934 QFile myFile( myFileName );
1935 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1937 QTextStream myFileStream( &myFile );
1939 myDocument.save( myFileStream, 2 );
1945 return tr(
"Created default metadata file as %1" ).arg( myFileName );
1948 return tr(
"Created default style file as %1" ).arg( myFileName );
1958 return tr(
"ERROR: Failed to created default metadata file as %1. Check file permissions and retry." ).arg( myFileName );
1961 return tr(
"ERROR: Failed to created default style file as %1. Check file permissions and retry." ).arg( myFileName );
1967 const QString qml = myDocument.toString();
1970 sqlite3_database_unique_ptr database;
1971 sqlite3_statement_unique_ptr statement;
1974 if ( myResult != SQLITE_OK )
1976 return tr(
"User database could not be opened." );
1979 QByteArray param0 = uri.toUtf8();
1980 QByteArray param1 = qml.toUtf8();
1986 mySql = u
"create table if not exists tbl_metadata(metadata varchar primary key,qmd varchar)"_s;
1990 mySql = u
"create table if not exists tbl_styles(style varchar primary key,qml varchar)"_s;
1994 statement = database.
prepare( mySql, myResult );
1995 if ( myResult == SQLITE_OK )
1997 if ( sqlite3_step( statement.get() ) != SQLITE_DONE )
2003 return tr(
"The metadata table could not be created." );
2006 return tr(
"The style table could not be created." );
2014 mySql = u
"insert into tbl_metadata(metadata,qmd) values (?,?)"_s;
2018 mySql = u
"insert into tbl_styles(style,qml) values (?,?)"_s;
2021 statement = database.
prepare( mySql, myResult );
2022 if ( myResult == SQLITE_OK )
2024 if ( sqlite3_bind_text( statement.get(), 1, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
2025 sqlite3_bind_text( statement.get(), 2, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
2026 sqlite3_step( statement.get() ) == SQLITE_DONE )
2032 myErrorMessage = tr(
"The metadata %1 was saved to database" ).arg( uri );
2036 myErrorMessage = tr(
"The style %1 was saved to database" ).arg( uri );
2048 mySql = u
"update tbl_metadata set qmd=? where metadata=?"_s;
2052 mySql = u
"update tbl_styles set qml=? where style=?"_s;
2055 statement = database.
prepare( mySql, myResult );
2056 if ( myResult == SQLITE_OK )
2058 if ( sqlite3_bind_text( statement.get(), 2, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
2059 sqlite3_bind_text( statement.get(), 1, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
2060 sqlite3_step( statement.get() ) == SQLITE_DONE )
2066 myErrorMessage = tr(
"The metadata %1 was updated in the database." ).arg( uri );
2070 myErrorMessage = tr(
"The style %1 was updated in the database." ).arg( uri );
2080 myErrorMessage = tr(
"The metadata %1 could not be updated in the database." ).arg( uri );
2084 myErrorMessage = tr(
"The style %1 could not be updated in the database." ).arg( uri );
2095 myErrorMessage = tr(
"The metadata %1 could not be inserted into database." ).arg( uri );
2099 myErrorMessage = tr(
"The style %1 could not be inserted into database." ).arg( uri );
2106 return myErrorMessage;
2120 if ( !exportContext.
errors().empty() )
2121 errorMsg = exportContext.
errors().join(
"\n" );
2128 if ( !exportContext.
errors().empty() )
2129 errorMsg = exportContext.
errors().join(
"\n" );
2136 QDomDocument myDocument = QDomDocument();
2138 const QDomNode header = myDocument.createProcessingInstruction( u
"xml"_s, u
"version=\"1.0\" encoding=\"UTF-8\""_s );
2139 myDocument.appendChild( header );
2141 const QgsVectorLayer *vlayer = qobject_cast<const QgsVectorLayer *>(
this );
2142 const QgsRasterLayer *rlayer = qobject_cast<const QgsRasterLayer *>(
this );
2143 if ( !vlayer && !rlayer )
2145 exportContext.
pushError( tr(
"Could not save symbology because:\n%1" )
2146 .arg( tr(
"Only vector and raster layers are supported" ) ) );
2151 QDomElement root = myDocument.createElementNS( u
"http://www.opengis.net/sld"_s, u
"StyledLayerDescriptor"_s );
2152 QDomElement layerNode;
2155 root.setAttribute( u
"version"_s, u
"1.1.0"_s );
2156 root.setAttribute( u
"xsi:schemaLocation"_s, u
"http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/StyledLayerDescriptor.xsd"_s );
2157 root.setAttribute( u
"xmlns:ogc"_s, u
"http://www.opengis.net/ogc"_s );
2158 root.setAttribute( u
"xmlns:se"_s, u
"http://www.opengis.net/se"_s );
2159 root.setAttribute( u
"xmlns:xlink"_s, u
"http://www.w3.org/1999/xlink"_s );
2160 root.setAttribute( u
"xmlns:xsi"_s, u
"http://www.w3.org/2001/XMLSchema-instance"_s );
2161 myDocument.appendChild( root );
2164 layerNode = myDocument.createElement( u
"NamedLayer"_s );
2165 root.appendChild( layerNode );
2172 root.setAttribute( u
"version"_s, u
"1.0.0"_s );
2173 root.setAttribute( u
"xmlns:gml"_s, u
"http://www.opengis.net/gml"_s );
2174 root.setAttribute( u
"xmlns:ogc"_s, u
"http://www.opengis.net/ogc"_s );
2175 root.setAttribute( u
"xmlns:sld"_s, u
"http://www.opengis.net/sld"_s );
2176 myDocument.appendChild( root );
2179 layerNode = myDocument.createElement( u
"UserLayer"_s );
2180 root.appendChild( layerNode );
2186 context.setValue( exportContext );
2189 props[ u
"SldExportContext"_s ] = context;
2193 props[ u
"scaleMinDenom"_s ] = QString::number( mMinScale );
2194 props[ u
"scaleMaxDenom"_s ] = QString::number( mMaxScale );
2200 if ( !vlayer->
writeSld( layerNode, myDocument, exportContext ) )
2207 if ( !rlayer->
writeSld( layerNode, myDocument, exportContext ) )
2227 const QgsMapLayer *mlayer = qobject_cast<const QgsMapLayer *>(
this );
2234 if ( mlayer->providerType() ==
"ogr"_L1 )
2236 QStringList theURIParts = uri.split(
'|' );
2237 filename = theURIParts[0];
2239 else if ( mlayer->providerType() ==
"gpx"_L1 )
2241 QStringList theURIParts = uri.split(
'?' );
2242 filename = theURIParts[0];
2244 else if ( mlayer->providerType() ==
"delimitedtext"_L1 )
2246 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
2248 if ( filename.isEmpty() )
2256 const QFileInfo myFileInfo( filename );
2257 if ( myFileInfo.exists() || filename.endsWith(
".sld"_L1, Qt::CaseInsensitive ) )
2259 const QFileInfo myDirInfo( myFileInfo.path() );
2260 if ( !myDirInfo.isWritable() )
2263 return tr(
"The directory containing your dataset needs to be writable!" );
2267 const QString myFileName = myFileInfo.path() + QDir::separator() + myFileInfo.completeBaseName() +
".sld";
2272 QDomDocument myDocument = mlayer->exportSldStyleV3( context );
2274 if ( !context.
errors().empty() )
2277 return context.
errors().join(
'\n' );
2280 QFile myFile( myFileName );
2281 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
2283 QTextStream myFileStream( &myFile );
2285 myDocument.save( myFileStream, 2 );
2288 return tr(
"Created default style file as %1" ).arg( myFileName );
2293 return tr(
"ERROR: Failed to created SLD style file as %1. Check file permissions and retry." ).arg( filename );
2303 QDomDocument myDocument;
2306 int line = 0, column = 0;
2307 QString myErrorMessage;
2309 QFile myFile( uri );
2310 if ( myFile.open( QFile::ReadOnly ) )
2313#if QT_VERSION >= QT_VERSION_CHECK( 6, 5, 0 )
2314 QXmlStreamReader xmlReader( &myFile );
2315 xmlReader.addExtraNamespaceDeclaration( QXmlStreamNamespaceDeclaration( u
"sld"_s, u
"http://www.opengis.net/sld"_s ) );
2316 xmlReader.addExtraNamespaceDeclaration( QXmlStreamNamespaceDeclaration( u
"fes"_s, u
"http://www.opengis.net/fes/2.0"_s ) );
2317 xmlReader.addExtraNamespaceDeclaration( QXmlStreamNamespaceDeclaration( u
"ogc"_s, u
"http://www.opengis.net/ogc"_s ) );
2318 const QDomDocument::ParseResult result = myDocument.setContent( &xmlReader, QDomDocument::ParseOption::UseNamespaceProcessing );
2325 myErrorMessage = result.errorMessage;
2326 line = result.errorLine;
2327 column = result.errorColumn;
2330 resultFlag = myDocument.setContent( &myFile,
true, &myErrorMessage, &line, &column );
2333 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
2338 myErrorMessage = tr(
"Unable to open file %1" ).arg( uri );
2343 return myErrorMessage;
2347 const QDomElement myRoot = myDocument.firstChildElement( u
"StyledLayerDescriptor"_s );
2348 if ( myRoot.isNull() )
2350 myErrorMessage = u
"Error: StyledLayerDescriptor element not found in %1"_s.arg( uri );
2352 return myErrorMessage;
2357 const QDomElement namedLayerElem = myRoot.firstChildElement( u
"NamedLayer"_s );
2358 if ( namedLayerElem.isNull() )
2360 myErrorMessage = u
"Info: NamedLayer element not found."_s;
2362 return myErrorMessage;
2366 resultFlag =
readSld( namedLayerElem, errorMsg );
2369 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, errorMsg );
2370 return myErrorMessage;
2381 Q_UNUSED( errorMessage )
2383 Q_UNUSED( categories )
2394 Q_UNUSED( errorMessage )
2396 Q_UNUSED( categories )
2402 bool loadDefaultStyleFlag )
2409 if ( loadDefaultStyleFlag )
2430 if ( loadDefaultStyleFlag )
2452 setDataSourcePrivate( dataSource, baseName, provider, options,
flags );
2459void QgsMapLayer::setDataSourcePrivate(
const QString &dataSource,
const QString &baseName,
const QString &provider,
2464 Q_UNUSED( dataSource )
2465 Q_UNUSED( baseName )
2466 Q_UNUSED( provider )
2489 QDomElement renderer3DElem = layerElement.firstChildElement( u
"renderer-3d"_s );
2490 if ( !renderer3DElem.isNull() )
2492 const QString type3D = renderer3DElem.attribute( u
"type"_s );
2513 if ( layerElement.hasAttribute( u
"minimumScale"_s ) )
2516 setMaximumScale( layerElement.attribute( u
"minimumScale"_s ).toDouble() );
2517 setMinimumScale( layerElement.attribute( u
"maximumScale"_s ).toDouble() );
2521 setMaximumScale( layerElement.attribute( u
"maxScale"_s ).toDouble() );
2522 setMinimumScale( layerElement.attribute( u
"minScale"_s ).toDouble() );
2524 if ( layerElement.hasAttribute( u
"autoRefreshMode"_s ) )
2534 const QDomElement flagsElem = layerElement.firstChildElement( u
"flags"_s );
2537 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
2539 const QDomNode flagNode = flagsElem.namedItem( it.value() );
2540 if ( flagNode.isNull() )
2542 const bool flagValue = flagNode.toElement().text() ==
"1" ? true :
false;
2543 if (
flags.testFlag( it.key() ) && !flagValue )
2545 else if ( !
flags.testFlag( it.key() ) && flagValue )
2551 if ( categories.testFlag(
Temporal ) )
2556 properties->readXml( layerElement.toElement(), context );
2564 properties->readXml( layerElement.toElement(), context );
2567 if ( categories.testFlag(
Notes ) )
2569 const QDomElement notesElem = layerElement.firstChildElement( u
"userNotes"_s );
2570 if ( !notesElem.isNull() )
2572 const QString notes = notesElem.attribute( u
"value"_s );
2589 return mUndoStackStyles;
2596 return mCustomProperties.keys();
2603 if ( !mCustomProperties.contains( key ) || mCustomProperties.value( key ) != value )
2605 mCustomProperties.setValue( key, value );
2615 for (
const QString &key : mCustomProperties.keys() )
2625 return mCustomProperties;
2633 return mCustomProperties.value( value, defaultValue );
2640 if ( mCustomProperties.contains( key ) )
2642 mCustomProperties.remove( key );
2680 QString sldStyle, qmlStyle;
2681 QDomDocument qmlDocument;
2684 if ( !msgError.isEmpty() )
2690 qmlStyle = qmlDocument.toString();
2695 if ( !sldContext.
errors().empty() )
2701 sldStyle = sldDocument.toString();
2705 mDataSource, qmlStyle, sldStyle,
name, description, uiFileContent, useAsDefault, msgError ) )
2716 QString returnMessage;
2717 QString qml, errorMsg;
2725 if ( !qml.isEmpty() )
2727 QDomDocument myDocument( u
"qgis"_s );
2728 myDocument.setContent( qml );
2730 returnMessage = QObject::tr(
"Loaded from Provider" );
2736 bool styleExists =
false;
2737 bool styleSuccessfullyLoaded =
false;
2739 returnMessage = loadNamedProperty( theURI,
PropertyType::Style, styleExists, styleSuccessfullyLoaded, categories,
flags );
2742 ( void )styleExists;
2743 resultFlag = styleSuccessfullyLoaded;
2746 if ( ! styleName.isEmpty() )
2754 return returnMessage;
2797 const QString path = sourceParts.value( u
"path"_s ).toString();
2798 if ( path.isEmpty() )
2802 const QStringList tempPaths = QStandardPaths::standardLocations( QStandardPaths::TempLocation );
2803 for (
const QString &tempPath : tempPaths )
2805 if ( path.startsWith( tempPath ) )
2827 if (
legend == mLegend.get() )
2835 mLegend->setParent(
this );
2846 return mLegend.get();
2853 return mStyleManager.get();
2860 if ( renderer == m3DRenderer.get() )
2863 m3DRenderer.reset( renderer );
2874 return m3DRenderer.get();
2881 if ( mRepaintRequestedFired )
2883 mRepaintRequestedFired =
true;
2885 mRepaintRequestedFired =
false;
2938bool QgsMapLayer::isReadOnly()
const
2949 return mOriginalXmlProperties;
2962 const QString uuid = QUuid::createUuid().toString();
2964 QString
id = layerName +
'_' + uuid.mid( 1, uuid.length() - 2 );
2971 const thread_local QRegularExpression idRx( u
"[\\W]"_s );
2972 id.replace( idRx, u
"_"_s );
3015 QSet<QgsMapLayerDependency> deps;
3016 const auto constODeps = oDeps;
3034 if ( !lDataProvider )
3039 lDataProvider->setListening( enabled );
3054 if (
QgsMapLayerStore *store = qobject_cast<QgsMapLayerStore *>( parent() ) )
3056 return qobject_cast<QgsProject *>( store->parent() );
3061void QgsMapLayer::onNotified(
const QString &message )
3078 if ( ! forceRecalculate && ! mWgs84Extent.isNull() )
3082 else if ( ! mExtent2D.isNull() || ! mExtent3D.isNull() )
3088 if ( mExtent2D.isNull() )
3102void QgsMapLayer::updateExtent(
const QgsRectangle &extent )
const
3106 if (
extent == mExtent2D )
3118void QgsMapLayer::updateExtent(
const QgsBox3D &extent )
const
3122 if (
extent == mExtent3D )
3127 if ( !
extent.toRectangle().isNull() )
3130 updateExtent(
extent.toRectangle() );
3149bool QgsMapLayer::rebuildCrs3D( QString *error )
3152 if ( !mCRS.isValid() )
3154 mCrs3D = QgsCoordinateReferenceSystem();
3156 else if ( !mVerticalCrs.isValid() )
3162 switch ( mCRS.type() )
3174 res = mCrs3D.isValid();
3180 mCrs3D = QgsCoordinateReferenceSystem();
3195 res = mCrs3D.isValid();
3218 QString
metadata = u
"<h1>"_s + tr(
"General" ) + u
"</h1>\n<hr>\n"_s + u
"<table class=\"list-view\">\n"_s;
3221 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Name" ) + u
"</td><td>"_s +
name() + u
"</td></tr>\n"_s;
3226 bool isLocalPath =
false;
3231 if ( uriComponents.contains( u
"path"_s ) )
3233 path = uriComponents[u
"path"_s].toString();
3234 QFileInfo fi( path );
3238 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Path" ) + u
"</td><td>%1"_s.arg( u
"<a href=\"%1\">%2</a>"_s.arg( QUrl::fromLocalFile( path ).toString(), QDir::toNativeSeparators( path ) ) ) + u
"</td></tr>\n"_s;
3240 QDateTime lastModified = fi.lastModified();
3241 QString lastModifiedFileName;
3245 qint64 fileSize = fi.size();
3246 if ( !sidecarFiles.isEmpty() )
3248 lastModifiedFileName = fi.fileName();
3249 QStringList sidecarFileNames;
3250 for (
const QString &sidecarFile : sidecarFiles )
3252 QFileInfo sidecarFi( sidecarFile );
3253 fileSize += sidecarFi.size();
3254 if ( sidecarFi.lastModified() > lastModified )
3256 lastModified = sidecarFi.lastModified();
3257 lastModifiedFileName = sidecarFi.fileName();
3259 sidecarFileNames << sidecarFi.fileName();
3261 metadata += u
"<tr><td class=\"highlight\">"_s + ( sidecarFiles.size() > 1 ? tr(
"Sidecar files" ) : tr(
"Sidecar file" ) ) + u
"</td><td>%1"_s.arg( sidecarFileNames.join(
", "_L1 ) ) + u
"</td></tr>\n"_s;
3263 metadata += u
"<tr><td class=\"highlight\">"_s + ( !sidecarFiles.isEmpty() ? tr(
"Total size" ) : tr(
"Size" ) ) + u
"</td><td>%1"_s.arg(
QgsFileUtils::representFileSize( fileSize ) ) + u
"</td></tr>\n"_s;
3265 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Last modified" ) + u
"</td><td>%1"_s.arg( QLocale().toString( fi.lastModified() ) ) + ( !lastModifiedFileName.isEmpty() ? u
" (%1)"_s.arg( lastModifiedFileName ) : QString() ) + u
"</td></tr>\n"_s;
3268 if ( uriComponents.contains( u
"url"_s ) )
3270 QUrl decodedUri = QUrl::fromPercentEncoding( uriComponents[u
"url"_s].toString().toLocal8Bit() );
3271 const QString url = decodedUri.toString();
3272 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"URL" ) + u
"</td><td>%1"_s.arg( u
"<a href=\"%1\">%2</a>"_s.arg( url, url ) ) + u
"</td></tr>\n"_s;
3277 if ( lPublicSource != path || !isLocalPath )
3278 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Source" ) + u
"</td><td>%1"_s.arg( lPublicSource != path ? lPublicSource : path ) + u
"</td></tr>\n"_s;
3282 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Provider" ) + u
"</td><td>%1"_s.arg(
dataProvider()->
name() ) + u
"</td></tr>\n"_s;
3285 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Layer ID" ) + u
"</td><td>%1"_s.arg(
id() ) + u
"</td></tr>\n"_s;
3287 metadata +=
"</table>\n<br><br>"_L1;
3298 metadata += u
"<h1>"_s + tr(
"Custom properties" ) + u
"</h1>\n<hr>\n"_s;
3299 metadata +=
"<table class=\"list-view\">\n<tbody>"_L1;
3300 for (
const QString &key : keys )
3303 if ( key.startsWith(
'_' ) )
3307 QString stringValue;
3308 if ( propValue.type() == QVariant::List || propValue.type() == QVariant::StringList )
3310 for (
const QString &s : propValue.toStringList() )
3312 stringValue +=
"<p style=\"margin: 0;\">" + s.toHtmlEscaped() +
"</p>";
3317 stringValue = propValue.toString().toHtmlEscaped();
3321 stringValue = tr(
"<i>value cannot be displayed</i>" );
3324 metadata += u
"<tr><td class=\"highlight\">%1</td><td>%2</td></tr>"_s.arg( key.toHtmlEscaped(), stringValue );
3326 metadata +=
"</tbody></table>\n"_L1;
3340 metadata += u
"<tr><td colspan=\"2\" class=\"highlight\">"_s + tr(
"Unknown" ) + u
"</td></tr>\n"_s;
3346 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Units" ) + u
"</td><td>"_s
3347 + (
c.isGeographic() ? tr(
"Geographic (uses latitude and longitude for coordinates)" ) :
QgsUnitTypes::toString(
c.mapUnits() ) )
3348 + u
"</td></tr>\n"_s;
3355 if ( includeOperation )
3359 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Method" ) + u
"</td><td>"_s + operation.
description() + u
"</td></tr>\n"_s;
3362 if ( includeCelestialBody )
3367 const QString celestialBody =
c.celestialBodyName();
3368 if ( !celestialBody.isEmpty() )
3370 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Celestial Body" ) + u
"</td><td>"_s + celestialBody + u
"</td></tr>\n"_s;
3379 QString accuracyString;
3381 if (
c.isDynamic() && std::isnan(
c.coordinateEpoch() ) )
3383 accuracyString = tr(
"Based on a dynamic CRS, but no coordinate epoch is set. Coordinates are ambiguous and of limited accuracy." );
3393 if ( !ensemble.
code().isEmpty() )
3394 id = u
"<i>%1</i> (%2:%3)"_s.arg( ensemble.
name(), ensemble.
authority(), ensemble.
code() );
3396 id = u
"<i>%1</i>”"_s.arg( ensemble.
name() );
3400 accuracyString = tr(
"Based on %1, which has a limited accuracy of <b>at best %2 meters</b>." ).arg(
id ).arg( ensemble.
accuracy() );
3404 accuracyString = tr(
"Based on %1, which has a limited accuracy." ).arg(
id );
3413 if ( !accuracyString.isEmpty() )
3415 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Accuracy" ) + u
"</td><td>"_s + accuracyString + u
"</td></tr>\n"_s;
3419 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Reference" ) + u
"</td><td>%1</td></tr>\n"_s.arg(
c.isDynamic() ? tr(
"Dynamic (relies on a datum which is not plate-fixed)" ) : tr(
"Static (relies on a datum which is plate-fixed)" ) );
3422 if ( !std::isnan(
c.coordinateEpoch() ) )
3424 metadata += u
"<tr><td class=\"highlight\">"_s + tr(
"Coordinate Epoch" ) + u
"</td><td>%1</td></tr>\n"_s.arg(
qgsDoubleToString(
c.coordinateEpoch(), 3 ) );
3429 metadata += u
"<h1>"_s + tr(
"Coordinate Reference System (CRS)" ) + u
"</h1>\n<hr>\n"_s;
3430 metadata +=
"<table class=\"list-view\">\n"_L1;
3431 addCrsInfo(
crs().horizontalCrs(),
true,
true,
true );
3432 metadata +=
"</table>\n<br><br>\n"_L1;
3436 metadata += u
"<h1>"_s + tr(
"Vertical Coordinate Reference System (CRS)" ) + u
"</h1>\n<hr>\n"_s;
3437 metadata +=
"<table class=\"list-view\">\n"_L1;
3439 metadata +=
"</table>\n<br><br>\n"_L1;
static QString version()
Version string.
@ FullString
Full definition – possibly a very lengthy string, e.g. with no truncation of custom WKT definitions.
@ Compound
Compound (horizontal + vertical) CRS.
@ Projected
Projected CRS.
@ DerivedProjected
Derived projected CRS.
@ Engineering
Engineering CRS.
@ Geographic3d
3D geopraphic CRS
@ Geographic2d
2D geographic CRS
@ Geocentric
Geocentric CRS.
@ RemoveCredentials
Completely remove credentials (eg passwords) from the URI. This flag is not compatible with the Redac...
@ RedactCredentials
Replace the value of credentials (eg passwords) with 'xxxxxxxx'. This flag is not compatible with the...
@ ForceFirstLetterToCapital
Convert just the first letter of each word to uppercase, leave the rest untouched.
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
QFlags< DataProviderReadFlag > DataProviderReadFlags
Flags which control data provider construction.
LayerType
Types of layers that can be added to a map.
@ Annotation
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
QFlags< MapLayerProperty > MapLayerProperties
Map layer properties.
QFlags< LoadStyleFlag > LoadStyleFlags
Flags for loading layer styles.
@ LoadDefaultStyle
Reset the layer's style to the default for the datasource.
@ ForceReadOnly
Open layer in a read-only mode.
@ SkipGetExtent
Skip the extent from provider.
@ TrustDataSource
Trust datasource config (primary key unicity, geometry type and srid, etc). Improves provider load ti...
@ IgnoreMissingStyleErrors
If the style is missing, then don't flag it as an error. This flag can be used when the caller is not...
AutoRefreshMode
Map layer automatic refresh modes.
@ RedrawOnly
Redraw current data only.
@ ReloadData
Reload data (and draw the new data).
@ Disabled
Automatic refreshing is disabled.
Qgs3DRendererAbstractMetadata * rendererMetadata(const QString &type) const
Returns metadata for a 3D renderer type (may be used to create a new instance of the type).
Base class for all renderers that participate in 3D views.
static QString pkgDataPath()
Returns the common root path of all application data directories.
static QString qgisSettingsDirPath()
Returns the path to the settings directory in user's home dir.
static QgsAuthManager * authManager()
Returns the application's authentication manager instance.
static Qgs3DRendererRegistry * renderer3DRegistry()
Returns registry of available 3D renderers.
A 3-dimensional box composed of x, y, z coordinates.
static QString crsTypeToString(Qgis::CrsType type)
Returns a translated string representing a CRS type.
Represents a coordinate reference system (CRS).
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
static CUSTOM_CRS_VALIDATION customCrsValidation()
Gets custom function.
static QgsCoordinateReferenceSystem createCompoundCrs(const QgsCoordinateReferenceSystem &horizontalCrs, const QgsCoordinateReferenceSystem &verticalCrs, QString &error)
Given a horizontal and vertical CRS, attempts to create a compound CRS from them.
static void setCustomCrsValidation(CUSTOM_CRS_VALIDATION f)
Sets custom function to force valid CRS.
Contains information about the context in which a coordinate transform is executed.
Custom exception class for Coordinate Reference System related exceptions.
virtual bool containsElevationData() const
Returns true if the data provider definitely contains elevation related data.
Abstract base class for spatial data provider implementations.
void notify(const QString &msg)
Emitted when the datasource issues a notification.
virtual QgsDataProviderElevationProperties * elevationProperties()
Returns the provider's elevation properties.
static QString removePassword(const QString &aUri, bool hide=false)
Removes the password element from a URI.
Contains information about a datum ensemble.
QString code() const
Identification code, e.g.
QString authority() const
Authority name, e.g.
bool isValid() const
Returns true if the datum ensemble is a valid object, or false if it is a null/invalid object.
QString name() const
Display name of datum ensemble.
double accuracy() const
Positional accuracy (in meters).
A container for error messages.
static QSet< QString > sidecarFilesForPath(const QString &path)
Returns a list of the sidecar files which exist for the dataset a the specified path.
static QString representFileSize(qint64 bytes)
Returns the human size from bytes.
static void setLayerNotes(QgsMapLayer *layer, const QString ¬es)
Sets the notes for the specified layer, where notes is a HTML formatted string.
static bool layerHasNotes(const QgsMapLayer *layer)
Returns true if the specified layer has notes available.
static QString layerNotes(const QgsMapLayer *layer)
Returns the notes for the specified layer.
Models dependencies with or between map layers.
Base class for storage of map layer elevation properties.
An abstract interface for implementations of legends for one map layer.
void itemsChanged()
Emitted when existing items/nodes got invalid and should be replaced by new ones.
Manages QGIS Server properties for a map layer.
void readXml(const QDomNode &layer_node)
Reads server properties from project file.
void copyTo(QgsMapLayerServerProperties *properties) const
Copy properties to another instance.
void writeXml(QDomNode &layer_node, QDomDocument &document) const
Saves server properties to xml under the layer node.
A storage object for map layers, in which the layers are owned by the store and have their lifetime b...
Management of styles for use with one map layer.
bool addStyle(const QString &name, const QgsMapLayerStyle &style)
Add a style with given name and data.
QStringList styles() const
Returns list of all defined style names.
bool renameStyle(const QString &name, const QString &newName)
Rename a stored style to a different name.
Base class for storage of map layer temporal properties.
void crs3DChanged()
Emitted when the crs3D() of the layer has changed.
Q_DECL_DEPRECATED void setShortName(const QString &shortName)
Sets the short name of the layer used by QGIS Server to identify the layer.
virtual bool deleteStyleFromDatabase(const QString &styleId, QString &msgError)
Deletes a style from the database.
bool importNamedMetadata(QDomDocument &document, QString &errorMessage)
Import the metadata of this layer from a QDomDocument.
void readStyleManager(const QDomNode &layerNode)
Read style manager's configuration (if any). To be called by subclasses.
virtual bool writeSymbology(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const =0
Write the style for the layer into the document provided.
Q_DECL_DEPRECATED QString legendUrlFormat() const
Returns the format for a URL based layer legend.
QgsRectangle wgs84Extent(bool forceRecalculate=false) const
Returns the WGS84 extent (EPSG:4326) of the layer according to ReadFlag::FlagTrustLayerMetadata.
void setRefreshOnNotifyEnabled(bool enabled)
Set whether provider notification is connected to triggerRepaint.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
QgsAbstract3DRenderer * renderer3D() const
Returns 3D renderer associated with the layer.
virtual bool isTemporary() const
Returns true if the layer is considered a temporary layer.
virtual Q_DECL_DEPRECATED void exportSldStyleV2(QDomDocument &doc, QString &errorMsg, QgsSldExportContext &exportContext) const
Export the properties of this layer as SLD style in a QDomDocument.
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.
bool setId(const QString &id)
Sets the layer's id.
virtual bool accept(QgsStyleEntityVisitorInterface *visitor) const
Accepts the specified symbology visitor, causing it to visit all symbols associated with the layer.
void dependenciesChanged()
Emitted when dependencies are changed.
virtual bool hasMapTips() const
Returns true if the layer contains map tips.
bool isInScaleRange(double scale) const
Tests whether the layer should be visible at the specified scale.
void legendChanged()
Signal emitted when legend of the layer has 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.
QFlags< ReadFlag > ReadFlags
QFlags< LayerFlag > LayerFlags
virtual bool importNamedStyle(QDomDocument &doc, QString &errorMsg, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Import the properties of this layer from a QDomDocument.
Q_DECL_DEPRECATED void setAbstract(const QString &abstract)
Sets the abstract of the layer used by QGIS Server in GetCapabilities request.
void metadataChanged()
Emitted when the layer's metadata is changed.
virtual QgsRectangle extent() const
Returns the extent of the layer.
virtual QString saveSldStyle(const QString &uri, bool &resultFlag) const
Saves the properties of this layer to an SLD format file.
QString source() const
Returns the source for the layer.
Q_DECL_DEPRECATED void setLegendUrl(const QString &legendUrl)
Sets the URL for the layer's legend.
virtual bool setDependencies(const QSet< QgsMapLayerDependency > &layers)
Sets the list of dependencies.
void request3DUpdate()
Signal emitted when a layer requires an update in any 3D maps.
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.
@ SldGenerationFailed
Generation of the SLD failed, and was not written to the database.
@ DatabaseWriteFailed
An error occurred when attempting to write to the database.
@ QmlGenerationFailed
Generation of the QML failed, and was not written to the database.
QString providerType() const
Returns the provider type (provider key) for this layer.
virtual void setExtent3D(const QgsBox3D &box)
Sets the extent.
void removeCustomProperty(const QString &key)
Remove a custom property from layer.
Qgis::AutoRefreshMode autoRefreshMode() const
Returns the layer's automatic refresh mode.
void setBlendMode(QPainter::CompositionMode blendMode)
Set the blending mode used for rendering a layer.
void configChanged()
Emitted whenever the configuration is changed.
void trigger3DUpdate()
Will advise any 3D maps that this layer requires to be updated in the scene.
void autoRefreshIntervalChanged(int interval)
Emitted when the auto refresh interval changes.
void setMinimumScale(double scale)
Sets the minimum map scale (i.e.
virtual QSet< QgsMapLayerDependency > dependencies() const
Gets the list of dependencies.
void setCustomProperties(const QgsObjectCustomProperties &properties)
Set custom properties for layer.
static Qgis::DataProviderReadFlags providerReadFlags(const QDomNode &layerNode, QgsMapLayer::ReadFlags layerReadFlags)
Returns provider read flag deduced from layer read flags layerReadFlags and a dom node layerNode that...
virtual QString loadNamedStyle(const QString &theURI, bool &resultFlag, bool loadFromLocalDb, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories, Qgis::LoadStyleFlags flags=Qgis::LoadStyleFlags())
Loads a named style from file/local db/datasource db.
virtual QString encodedSource(const QString &source, const QgsReadWriteContext &context) const
Called by writeLayerXML(), used by derived classes to encode provider's specific data source to proje...
QgsCoordinateReferenceSystem crs3D
virtual void setSubLayerVisibility(const QString &name, bool visible)
Set the visibility of the given sublayer name.
void isValidChanged()
Emitted when the validity of this layer changed.
QgsCoordinateReferenceSystem crs
bool loadNamedMetadataFromDatabase(const QString &db, const QString &uri, QString &qmd)
Retrieve a named metadata for this layer from a sqlite database.
friend class QgsVectorLayer
virtual bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context)
Called by readLayerXML(), used by children to read state specific to them from project files.
QgsMapLayerServerProperties * serverProperties()
Returns QGIS Server Properties for the map layer.
Q_DECL_DEPRECATED QString attribution() const
Returns the attribution of the layer used by QGIS Server in GetCapabilities request.
void setOriginalXmlProperties(const QString &originalXmlProperties)
Sets the original XML properties for the layer to originalXmlProperties.
void writeCustomProperties(QDomNode &layerNode, QDomDocument &doc) const
Write custom properties to project file.
QString mRefreshOnNofifyMessage
virtual int listStylesInDatabase(QStringList &ids, QStringList &names, QStringList &descriptions, QString &msgError)
Lists all the style in db split into related to the layer and not related to.
virtual QString loadDefaultStyle(bool &resultFlag)
Retrieve the default style for this layer if one exists (either as a .qml file on disk or as a record...
void setDataSource(const QString &dataSource, const QString &baseName=QString(), const QString &provider=QString(), bool loadDefaultStyleFlag=false)
Updates the data source of the layer.
QString mLayerName
Name of the layer - used for display.
virtual QString loadNamedMetadata(const QString &uri, bool &resultFlag)
Retrieve a named metadata for this layer if one exists (either as a .qmd file on disk or as a record ...
virtual bool writeXml(QDomNode &layer_node, QDomDocument &document, const QgsReadWriteContext &context) const
Called by writeLayerXML(), used by children to write state specific to them to project files.
Q_DECL_DEPRECATED bool hasAutoRefreshEnabled() const
Returns true if auto refresh is enabled for the layer.
void mapTipTemplateChanged()
Emitted when the map tip template changes.
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.
Q_DECL_DEPRECATED void setAttributionUrl(const QString &attribUrl)
Sets the attribution URL of the layer used by QGIS Server in GetCapabilities request.
QgsMapLayer::SaveStyleResults saveStyleToDatabaseV2(const QString &name, const QString &description, bool useAsDefault, const QString &uiFileContent, QString &msgError, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Saves QML and SLD representations of the layer's style to a table in the database.
Q_DECL_DEPRECATED void setAutoRefreshEnabled(bool enabled)
Sets whether auto refresh is enabled for the layer.
void setMaximumScale(double scale)
Sets the maximum map scale (i.e.
QgsLayerMetadata metadata
static QString formatLayerName(const QString &name)
A convenience function to capitalize and format a layer name.
void renderer3DChanged()
Signal emitted when 3D renderer associated with the layer has changed.
Q_DECL_DEPRECATED QString abstract() const
Returns the abstract of the layer used by QGIS Server in GetCapabilities request.
QgsMapLayer(Qgis::LayerType type=Qgis::LayerType::Vector, const QString &name=QString(), const QString &source=QString())
Constructor for QgsMapLayer.
QString originalXmlProperties() const
Returns the XML properties of the original layer as they were when the layer was first read from the ...
Q_DECL_DEPRECATED QString dataUrlFormat() const
Returns the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
Q_DECL_DEPRECATED void setDataUrl(const QString &dataUrl)
Sets the DataUrl of the layer used by QGIS Server in GetCapabilities request.
virtual void setOpacity(double opacity)
Sets the opacity for the layer, where opacity is a value between 0 (totally transparent) and 1....
Q_DECL_DEPRECATED void setKeywordList(const QString &keywords)
Sets the keyword list of the layerused by QGIS Server in GetCapabilities request.
Q_DECL_DEPRECATED void setAttribution(const QString &attrib)
Sets the attribution of the layerused by QGIS Server in GetCapabilities request.
void setFlags(QgsMapLayer::LayerFlags flags)
Returns the flags for this layer.
bool isRefreshOnNotifyEnabled() const
Returns true if the refresh on provider nofification is enabled.
QString publicSource(bool hidePassword=false) const
Gets a version of the internal layer definition that has sensitive bits removed (for example,...
Q_DECL_DEPRECATED QString shortName() const
Returns the short name of the layer used by QGIS Server to identify the 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 Qgis::MapLayerProperties properties() const
Returns the map layer properties of this layer.
virtual QString loadSldStyle(const QString &uri, bool &resultFlag)
Attempts to style the layer using the formatting from an SLD type file.
virtual void setMetadata(const QgsLayerMetadata &metadata)
Sets the layer's metadata store.
virtual bool readStyle(const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read the style for the current layer from the DOM node supplied.
virtual QString saveDefaultMetadata(bool &resultFlag)
Save the current metadata of this layer as the default metadata (either as a .qmd file on disk or as ...
virtual bool supportsEditing() const
Returns whether the layer supports editing or not.
Q_DECL_DEPRECATED void setDataUrlFormat(const QString &dataUrlFormat)
Sets the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
QFlags< StyleCategory > StyleCategories
virtual Q_DECL_DEPRECATED void saveStyleToDatabase(const QString &name, const QString &description, bool useAsDefault, const QString &uiFileContent, QString &msgError, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Saves QML and SLD representations of the layer's style to a table in the database.
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.
virtual bool isEditable() const
Returns true if the layer can be edited.
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.
Q_DECL_DEPRECATED QString title() const
Returns the title of the layer used by QGIS Server in GetCapabilities request.
void crsChanged()
Emitted when the crs() of the layer has changed.
virtual QgsError error() const
Gets current status error.
bool writeLayerXml(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context) const
Stores state in DOM node.
virtual QString styleURI() const
Retrieve the style URI for this layer (either as a .qml file on disk or as a record in the users styl...
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.
void idChanged(const QString &id)
Emitted when the layer's ID has been changed.
Q_DECL_DEPRECATED QString dataUrl() const
Returns the DataUrl of the layer used by QGIS Server in GetCapabilities request.
QgsMapLayer::LayerFlags flags
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
Q_DECL_DEPRECATED QString metadataUrlFormat() const
Returns the metadata format of the layer used by QGIS Server in GetCapabilities request.
void setRefreshOnNofifyMessage(const QString &message)
Set the notification message that triggers repaint If refresh on notification is enabled,...
static QString generateId(const QString &layerName)
Generates an unique identifier for this layer, the generate ID is prefixed by layerName.
QgsProviderMetadata * providerMetadata() const
Returns the layer data provider's metadata, it may be nullptr.
void opacityChanged(double opacity)
Emitted when the layer's opacity is changed, where opacity is a value between 0 (transparent) and 1 (...
virtual bool isModified() const
Returns true if the layer has been modified since last commit/save.
void styleLoaded(QgsMapLayer::StyleCategories categories)
Emitted when a style has been loaded.
virtual QString getStyleFromDatabase(const QString &styleId, QString &msgError)
Returns the named style corresponding to style id provided.
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
virtual QgsMapLayerTemporalProperties * temporalProperties()
Returns the layer's temporal properties.
QUndoStack * undoStackStyles()
Returns pointer to layer's style undo stack.
void dataChanged()
Data of layer changed.
virtual QStringList subLayers() const
Returns the sublayers of this layer.
virtual QString htmlMetadata() const
Obtain a formatted HTML string containing assorted metadata for this layer.
Q_DECL_DEPRECATED void setMetadataUrlFormat(const QString &metaUrlFormat)
Sets the metadata format of the layer used by QGIS Server in GetCapabilities request.
virtual bool loadNamedStyleFromDatabase(const QString &db, const QString &uri, QString &qml)
Retrieve a named style for this layer from a sqlite database.
void verticalCrsChanged()
Emitted when the verticalCrs() of the layer has changed.
virtual QgsBox3D extent3D() const
Returns the 3D extent of the layer.
static QString extensionPropertyType(PropertyType type)
Returns the extension of a Property.
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
void blendModeChanged(QPainter::CompositionMode blendMode)
Signal emitted when the blend mode is changed, through QgsMapLayer::setBlendMode().
void setName(const QString &name)
Set the display name of the layer.
void setAutoRefreshInterval(int interval)
Sets the auto refresh interval (in milliseconds) for the layer.
virtual bool readSymbology(const QDomNode &node, QString &errorMessage, QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)=0
Read the symbology for the current layer from the DOM node supplied.
Q_DECL_DEPRECATED QString metadataUrl() const
Returns the metadata URL of the layer used by QGIS Server in GetCapabilities request.
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 saveNamedMetadata(const QString &uri, bool &resultFlag)
Save the current metadata of this layer as a named metadata (either as a .qmd file on disk or as a re...
QString mDataSource
Data source description string, varies by layer type.
void setAutoRefreshMode(Qgis::AutoRefreshMode mode)
Sets the automatic refresh mode for the layer.
QString refreshOnNotifyMessage() const
Returns the message that should be notified by the provider to triggerRepaint.
virtual bool readSld(const QDomNode &node, QString &errorMessage)
void setMapTipsEnabled(bool enabled)
Enable or disable map tips for this layer.
virtual QString loadDefaultMetadata(bool &resultFlag)
Retrieve the default metadata for this layer if one exists (either as a .qmd file on disk or as a rec...
virtual QString saveSldStyleV2(bool &resultFlag, QgsSldExportContext &exportContext) const
Saves the properties of this layer to an SLD format file.
@ FlagReadExtentFromXml
Read extent from xml and skip get extent from provider.
@ FlagTrustLayerMetadata
Trust layer metadata. Improves layer load time by skipping expensive checks like primary key unicity,...
@ FlagForceReadOnly
Force open as read only.
void setValid(bool valid)
Sets whether layer is valid or not.
Q_DECL_DEPRECATED QString attributionUrl() const
Returns the attribution URL of the layer used by QGIS Server in GetCapabilities request.
void readCommonStyle(const QDomElement &layerElement, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories)
Read style data common to all layer types.
void customPropertyChanged(const QString &key)
Emitted when a custom property of the layer has been changed or removed.
virtual QDomDocument exportSldStyleV3(QgsSldExportContext &exportContext) const
Export the properties of this layer as SLD style in a QDomDocument.
QgsMapLayer::ReadFlags mReadFlags
Read flags. It's up to the subclass to respect these when restoring state from XML.
double minimumScale() const
Returns the minimum map scale (i.e.
QgsMapLayerStyleManager * styleManager() const
Gets access to the layer's style manager.
Q_DECL_DEPRECATED QString legendUrl() const
Returns the URL for the layer's legend.
void flagsChanged()
Emitted when layer's flags have been modified.
void repaintRequested(bool deferredUpdate=false)
By emitting this signal the layer tells that either appearance or content have been changed and any v...
Q_DECL_DEPRECATED void setLegendUrlFormat(const QString &legendUrlFormat)
Sets the format for a URL based layer legend.
void exportNamedMetadata(QDomDocument &doc, QString &errorMsg) const
Export the current metadata of this layer as named metadata in a QDomDocument.
virtual QString saveNamedStyle(const QString &uri, bool &resultFlag, StyleCategories categories=AllStyleCategories)
Save the properties of this layer as a named style (either as a .qml file on disk or as a record in t...
virtual Q_DECL_DEPRECATED void exportSldStyle(QDomDocument &doc, QString &errorMsg) const
Export the properties of this layer as SLD style in a QDomDocument.
void beforeResolveReferences(QgsProject *project)
Emitted when all layers are loaded and references can be resolved, just before the references of this...
void setMapTipTemplate(const QString &mapTipTemplate)
The mapTip is a pretty, html representation for feature information.
Q_DECL_DEPRECATED void setMetadataUrl(const QString &metaUrl)
Sets the metadata URL of the layer used by QGIS Server in GetCapabilities request.
virtual QgsMapLayerElevationProperties * elevationProperties()
Returns the layer's elevation properties.
bool setVerticalCrs(const QgsCoordinateReferenceSystem &crs, QString *errorMessage=nullptr)
Sets the layer's vertical coordinate reference system.
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.
Q_DECL_DEPRECATED void setMetadataUrlType(const QString &metaUrlType)
Set the metadata type of the layer used by QGIS Server in GetCapabilities request MetadataUrlType ind...
bool readLayerXml(const QDomElement &layerElement, QgsReadWriteContext &context, QgsMapLayer::ReadFlags flags=QgsMapLayer::ReadFlags(), QgsDataProvider *preloadedProvider=nullptr)
Sets state from DOM document.
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
virtual QString decodedSource(const QString &source, const QString &dataProvider, const QgsReadWriteContext &context) const
Called by readLayerXML(), used by derived classes to decode provider's specific data source from proj...
void nameChanged()
Emitted when the name has been changed.
virtual QString metadataUri() const
Retrieve the metadata URI for this layer (either as a .qmd file on disk or as a record in the users s...
QgsCoordinateReferenceSystem verticalCrs
virtual bool writeStyle(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write just the symbology information for the layer into the document.
bool mIsRefreshOnNofifyEnabled
virtual Q_INVOKABLE QgsDataProvider * dataProvider()
Returns the layer's data provider, it may be nullptr.
double mLayerOpacity
Layer opacity.
bool mValid
Indicates if the layer is valid and can be drawn.
@ LayerConfiguration
General configuration: identifiable, removable, searchable, display expression, read-only.
@ Temporal
Temporal properties.
@ Rendering
Rendering: scale visibility, simplify method, opacity.
@ Elevation
Elevation settings.
@ Symbology3D
3D symbology
@ CustomProperties
Custom properties (by plugins for instance).
virtual Q_INVOKABLE void reload()
Synchronises with changes in the datasource.
virtual QDateTime timestamp() const
Time stamp of data source in the moment when data/metadata were loaded by provider.
void setProviderType(const QString &providerType)
Sets the providerType (provider key).
void mapTipsEnabledChanged()
Emitted when map tips are enabled or disabled for the layer.
virtual QString saveDefaultStyle(bool &resultFlag, StyleCategories categories)
Save the properties of this layer as the default style (either as a .qml file on disk or as a record ...
QFlags< SaveStyleResult > SaveStyleResults
Results of saving styles to database.
void setRenderer3D(QgsAbstract3DRenderer *renderer)
Sets 3D renderer for the layer.
QString customPropertyHtmlMetadata() const
Returns an HTML fragment containing custom property information, for use in the htmlMetadata() method...
const QgsObjectCustomProperties & customProperties() const
Read all custom properties from layer.
QString generalHtmlMetadata() const
Returns an HTML fragment containing general metadata information, for use in the htmlMetadata() metho...
Q_DECL_DEPRECATED QString metadataUrlType() const
Returns the metadata type of the layer used by QGIS Server in GetCapabilities request.
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.
Q_DECL_DEPRECATED QString keywordList() const
Returns the keyword list of the layer used by QGIS Server in GetCapabilities request.
virtual void setLayerOrder(const QStringList &layers)
Reorders the previously selected sublayers of this layer from bottom to top.
void invalidateWgs84Extent()
Invalidates the WGS84 extent.
Q_DECL_DEPRECATED void setTitle(const QString &title)
Sets the title of the layer used by QGIS Server in GetCapabilities request.
PropertyType
Maplayer has a style and a metadata property.
bool mShouldValidateCrs
true if the layer's CRS should be validated and invalid CRSes are not permitted.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE())
Adds a message to the log instance (and creates it if necessary).
Custom exception class which is raised when an operation is not supported.
Simple key-value store (keys = strings, values = variants) that supports loading/saving to/from XML i...
void readXml(const QDomNode &parentNode, const QString &keyStartsWith=QString())
Read store contents from an XML node.
An interface for classes which can visit various object entity (e.g.
A QgsObjectEntityVisitorInterface context object.
Contains information about a PROJ operation.
QString description() const
Description.
virtual QString translate(const QString &context, const QString &sourceText, const char *disambiguation=nullptr, int n=-1) const =0
Translates a string using the Qt QTranslator mechanism.
Describes the version of a project.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
bool removeAttachedFile(const QString &path)
Removes the attached file.
static QgsProject * instance()
Returns the QgsProject singleton instance.
QString getStyleById(const QString &providerKey, const QString &uri, const QString &styleId, QString &errCause)
Gets a layer style defined by styleId.
QVariantMap decodeUri(const QString &providerKey, const QString &uri)
Breaks a provider data source URI into its component paths (e.g.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
bool saveLayerMetadata(const QString &providerKey, const QString &uri, const QgsLayerMetadata &metadata, QString &errorMessage)
Saves metadata to the layer corresponding to the specified uri.
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.
QgsProviderMetadata * providerMetadata(const QString &providerKey) const
Returns metadata of the provider or nullptr if not found.
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.
Represents a raster layer.
Q_DECL_DEPRECATED bool writeSld(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QVariantMap &props=QVariantMap()) const
Writes the symbology of the layer into the document provided in SLD 1.0.0 format.
Allows entering a context category and takes care of leaving this category on deletion of the class.
A container for the context for various read/write operations on objects.
QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString()) const
Push a category to the stack.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
A rectangle specified with double values.
static bool equalToOrGreaterThanMinimumScale(const double scale, const double minScale)
Returns whether the scale is equal to or greater than the minScale, taking non-round numbers into acc...
static bool lessThanMaximumScale(const double scale, const double maxScale)
Returns whether the scale is less than the maxScale, taking non-round numbers into account.
Holds SLD export options and other information related to SLD export of a QGIS layer style.
QString exportFilePath() const
Returns the export file path for the SLD.
QStringList errors() const
Returns a list of errors which occurred during the conversion.
void setExtraProperties(const QVariantMap &properties)
Sets the open ended set of properties that can drive/inform the SLD encoding.
void setExportFilePath(const QString &exportFilePath)
Sets the export file path for the SLD to exportFilePath.
QVariantMap extraProperties() const
Returns the open ended set of properties that can drive/inform the SLD encoding.
void pushError(const QString &error)
Pushes a error message generated during the conversion.
static QString capitalize(const QString &string, Qgis::Capitalization capitalization)
Converts a string by applying capitalization rules to the string.
An interface for classes which can visit style entity (e.g.
static Q_INVOKABLE QString toString(Qgis::DistanceUnit unit)
Returns a translated string representing a distance unit.
static bool isNull(const QVariant &variant, bool silenceNullWarnings=false)
Returns true if the specified variant should be considered a NULL value.
Represents a vector layer which manages a vector based dataset.
Q_DECL_DEPRECATED bool writeSld(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QVariantMap &props=QVariantMap()) const
Writes the symbology of the layer into the document provided in SLD 1.1 format.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
static T readFlagAttribute(const QDomElement &element, const QString &attributeName, T defaultValue)
Read a flag value from an attribute of the element.
static QgsBox3D readBox3D(const QDomElement &element)
Decodes a DOM element to a 3D box.
static QDomElement writeRectangle(const QgsRectangle &rect, QDomDocument &doc, const QString &elementName=u"extent"_s)
Encodes a rectangle to a DOM element.
static QgsRectangle readRectangle(const QDomElement &element)
static QDomElement writeBox3D(const QgsBox3D &box, QDomDocument &doc, const QString &elementName=u"extent3D"_s)
Encodes a 3D box to a DOM element.
Unique pointer for sqlite3 databases, which automatically closes the database when the pointer goes o...
sqlite3_statement_unique_ptr prepare(const QString &sql, int &resultCode) const
Prepares a sql statement, returning the result.
int open(const QString &path)
Opens the database at the specified file path.
int open_v2(const QString &path, int flags, const char *zVfs)
Opens the database at the specified file path.
Unique pointer for sqlite3 prepared statements, which automatically finalizes the statement when the ...
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
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 qgsDoubleToString(double a, int precision=17)
Returns a string representation of a double.
QString qgsEnumValueToKey(const T &value, bool *returnOk=nullptr)
Returns the value for the given key of an enum.
const QMap< T, QString > qgsEnumMap()
Returns a map of all enum entries.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference).
void(* CUSTOM_CRS_VALIDATION)(QgsCoordinateReferenceSystem &)
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS_NON_FATAL
#define QGIS_PROTECT_QOBJECT_THREAD_ACCESS
Setting options for creating vector data providers.