20 #include <QDomDocument> 21 #include <QDomElement> 22 #include <QDomImplementation> 26 #include <QTextStream> 62 return QStringLiteral(
".qmd" );
65 return QStringLiteral(
".qml" );
71 const QString &lyrname,
76 , mUndoStack( new QUndoStack( this ) )
77 , mUndoStackStyles( new QUndoStack( this ) )
79 , mRefreshTimer( new QTimer( this ) )
84 connect( mRefreshTimer, &QTimer::timeout,
this, [ = ] {
triggerRepaint(
true ); } );
99 for (
const QString &s : constStyles )
139 if ( flags == mFlags )
197 if ( mBlendMode == blendMode )
220 mnl = layerElement.namedItem( QStringLiteral(
"provider" ) );
221 mne = mnl.toElement();
222 provider = mne.text();
225 mnl = layerElement.namedItem( QStringLiteral(
"datasource" ) );
226 mne = mnl.toElement();
230 QRegExp rx(
"authcfg=([a-z]|[A-Z]|[0-9]){7}" );
243 mnl = layerElement.namedItem( QStringLiteral(
"layername" ) );
244 mne = mnl.toElement();
249 QDomNode srsNode = layerElement.namedItem( QStringLiteral(
"srs" ) );
264 layerError = !
readXml( layerElement, context );
277 mnl = layerElement.namedItem( QStringLiteral(
"id" ) );
278 if ( ! mnl.isNull() )
280 mne = mnl.toElement();
281 if ( ! mne.isNull() && mne.text().length() > 10 )
287 setAutoRefreshInterval( layerElement.attribute( QStringLiteral(
"autoRefreshTime" ), QStringLiteral(
"0" ) ).toInt() );
288 setAutoRefreshEnabled( layerElement.attribute( QStringLiteral(
"autoRefreshEnabled" ), QStringLiteral(
"0" ) ).toInt() );
290 setRefreshOnNotifyEnabled( layerElement.attribute( QStringLiteral(
"refreshOnNotifyEnabled" ), QStringLiteral(
"0" ) ).toInt() );
294 mnl = layerElement.namedItem( QStringLiteral(
"layername" ) );
295 mne = mnl.toElement();
298 setName( context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1" ).arg( layerElement.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), mne.text() ) );
301 QDomElement shortNameElem = layerElement.firstChildElement( QStringLiteral(
"shortname" ) );
302 if ( !shortNameElem.isNull() )
308 QDomElement titleElem = layerElement.firstChildElement( QStringLiteral(
"title" ) );
309 if ( !titleElem.isNull() )
311 mTitle = titleElem.text();
315 QDomElement abstractElem = layerElement.firstChildElement( QStringLiteral(
"abstract" ) );
316 if ( !abstractElem.isNull() )
322 QDomElement keywordListElem = layerElement.firstChildElement( QStringLiteral(
"keywordList" ) );
323 if ( !keywordListElem.isNull() )
326 for ( QDomNode n = keywordListElem.firstChild(); !n.isNull(); n = n.nextSibling() )
328 kwdList << n.toElement().text();
334 QDomElement dataUrlElem = layerElement.firstChildElement( QStringLiteral(
"dataUrl" ) );
335 if ( !dataUrlElem.isNull() )
338 mDataUrlFormat = dataUrlElem.attribute( QStringLiteral(
"format" ), QString() );
342 QDomElement legendUrlElem = layerElement.firstChildElement( QStringLiteral(
"legendUrl" ) );
343 if ( !legendUrlElem.isNull() )
346 mLegendUrlFormat = legendUrlElem.attribute( QStringLiteral(
"format" ), QString() );
350 QDomElement attribElem = layerElement.firstChildElement( QStringLiteral(
"attribution" ) );
351 if ( !attribElem.isNull() )
354 mAttributionUrl = attribElem.attribute( QStringLiteral(
"href" ), QString() );
358 QDomElement metaUrlElem = layerElement.firstChildElement( QStringLiteral(
"metadataUrl" ) );
359 if ( !metaUrlElem.isNull() )
362 mMetadataUrlType = metaUrlElem.attribute( QStringLiteral(
"type" ), QString() );
367 QDomElement metadataElem = layerElement.firstChildElement( QStringLiteral(
"resourceMetadata" ) );
376 Q_UNUSED( layer_node )
391 layerElement.setAttribute( QStringLiteral(
"autoRefreshTime" ), QString::number( mRefreshTimer->interval() ) );
392 layerElement.setAttribute( QStringLiteral(
"autoRefreshEnabled" ), mRefreshTimer->isActive() ? 1 : 0 );
398 QDomElement layerId = document.createElement( QStringLiteral(
"id" ) );
399 QDomText layerIdText = document.createTextNode(
id() );
400 layerId.appendChild( layerIdText );
402 layerElement.appendChild( layerId );
405 QDomElement dataSource = document.createElement( QStringLiteral(
"datasource" ) );
407 QDomText dataSourceText = document.createTextNode( src );
408 dataSource.appendChild( dataSourceText );
409 layerElement.appendChild( dataSource );
412 QDomElement layerName = document.createElement( QStringLiteral(
"layername" ) );
413 QDomText layerNameText = document.createTextNode(
name() );
414 layerName.appendChild( layerNameText );
415 layerElement.appendChild( layerName );
420 QDomElement layerShortName = document.createElement( QStringLiteral(
"shortname" ) );
421 QDomText layerShortNameText = document.createTextNode(
mShortName );
422 layerShortName.appendChild( layerShortNameText );
423 layerElement.appendChild( layerShortName );
429 QDomElement layerTitle = document.createElement( QStringLiteral(
"title" ) );
430 QDomText layerTitleText = document.createTextNode(
mTitle );
431 layerTitle.appendChild( layerTitleText );
432 layerElement.appendChild( layerTitle );
438 QDomElement layerAbstract = document.createElement( QStringLiteral(
"abstract" ) );
439 QDomText layerAbstractText = document.createTextNode(
mAbstract );
440 layerAbstract.appendChild( layerAbstractText );
441 layerElement.appendChild( layerAbstract );
445 QStringList keywordStringList =
keywordList().split(
',' );
446 if ( !keywordStringList.isEmpty() )
448 QDomElement layerKeywordList = document.createElement( QStringLiteral(
"keywordList" ) );
449 for (
int i = 0; i < keywordStringList.size(); ++i )
451 QDomElement layerKeywordValue = document.createElement( QStringLiteral(
"value" ) );
452 QDomText layerKeywordText = document.createTextNode( keywordStringList.at( i ).trimmed() );
453 layerKeywordValue.appendChild( layerKeywordText );
454 layerKeywordList.appendChild( layerKeywordValue );
456 layerElement.appendChild( layerKeywordList );
461 if ( !aDataUrl.isEmpty() )
463 QDomElement layerDataUrl = document.createElement( QStringLiteral(
"dataUrl" ) );
464 QDomText layerDataUrlText = document.createTextNode( aDataUrl );
465 layerDataUrl.appendChild( layerDataUrlText );
466 layerDataUrl.setAttribute( QStringLiteral(
"format" ),
dataUrlFormat() );
467 layerElement.appendChild( layerDataUrl );
472 if ( !aLegendUrl.isEmpty() )
474 QDomElement layerLegendUrl = document.createElement( QStringLiteral(
"legendUrl" ) );
475 QDomText layerLegendUrlText = document.createTextNode( aLegendUrl );
476 layerLegendUrl.appendChild( layerLegendUrlText );
477 layerLegendUrl.setAttribute( QStringLiteral(
"format" ),
legendUrlFormat() );
478 layerElement.appendChild( layerLegendUrl );
483 if ( !aAttribution.isEmpty() )
485 QDomElement layerAttribution = document.createElement( QStringLiteral(
"attribution" ) );
486 QDomText layerAttributionText = document.createTextNode( aAttribution );
487 layerAttribution.appendChild( layerAttributionText );
488 layerAttribution.setAttribute( QStringLiteral(
"href" ),
attributionUrl() );
489 layerElement.appendChild( layerAttribution );
494 if ( !aMetadataUrl.isEmpty() )
496 QDomElement layerMetadataUrl = document.createElement( QStringLiteral(
"metadataUrl" ) );
497 QDomText layerMetadataUrlText = document.createTextNode( aMetadataUrl );
498 layerMetadataUrl.appendChild( layerMetadataUrlText );
499 layerMetadataUrl.setAttribute( QStringLiteral(
"type" ),
metadataUrlType() );
500 layerMetadataUrl.setAttribute( QStringLiteral(
"format" ),
metadataUrlFormat() );
501 layerElement.appendChild( layerMetadataUrl );
507 QDomElement stamp = document.createElement( QStringLiteral(
"timestamp" ) );
508 QDomText stampText = document.createTextNode(
timestamp().toString( Qt::ISODate ) );
509 stamp.appendChild( stampText );
510 layerElement.appendChild( stamp );
513 layerElement.appendChild( layerName );
520 QDomElement mySrsElement = document.createElement( QStringLiteral(
"srs" ) );
521 mCRS.
writeXml( mySrsElement, document );
522 layerElement.appendChild( mySrsElement );
525 QDomElement myMetadataElem = document.createElement( QStringLiteral(
"resourceMetadata" ) );
527 layerElement.appendChild( myMetadataElem );
530 return writeXml( layerElement, document, context );
537 QMetaEnum metaEnum = QMetaEnum::fromType<QgsMapLayer::StyleCategories>();
538 QString categoriesKeys( metaEnum.valueToKeys( static_cast<int>( categories ) ) );
539 layerElement.setAttribute( QStringLiteral(
"styleCategories" ), categoriesKeys );
544 layerElement.setAttribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ),
hasScaleBasedVisibility() ? 1 : 0 );
545 layerElement.setAttribute( QStringLiteral(
"maxScale" ), QString::number(
maximumScale() ) );
546 layerElement.setAttribute( QStringLiteral(
"minScale" ), QString::number(
minimumScale() ) );
553 QDomElement renderer3DElem = document.createElement( QStringLiteral(
"renderer-3d" ) );
554 renderer3DElem.setAttribute( QStringLiteral(
"type" ), m3DRenderer->
type() );
555 m3DRenderer->
writeXml( renderer3DElem, context );
556 layerElement.appendChild( renderer3DElem );
564 QDomElement layerFlagsElem = document.createElement( QStringLiteral(
"flags" ) );
565 auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
566 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
568 bool flagValue = mFlags.testFlag( it.key() );
569 QDomElement flagElem = document.createElement( it.value() );
570 flagElem.appendChild( document.createTextNode( QString::number( flagValue ) ) );
571 layerFlagsElem.appendChild( flagElem );
573 layerElement.appendChild( layerFlagsElem );
586 Q_UNUSED( layer_node )
603 Q_UNUSED( dataProvider )
616 mCustomProperties.
readXml( layerNode, keyStartsWith );
621 mCustomProperties.
writeXml( layerNode, doc );
626 QDomElement styleMgrElem = layerNode.firstChildElement( QStringLiteral(
"map-layer-style-manager" ) );
627 if ( !styleMgrElem.isNull() )
628 mStyleManager->
readXml( styleMgrElem );
630 mStyleManager->
reset();
637 QDomElement styleMgrElem = doc.createElement( QStringLiteral(
"map-layer-style-manager" ) );
638 mStyleManager->
writeXml( styleMgrElem );
639 layerNode.appendChild( styleMgrElem );
649 void QgsMapLayer::connectNotify(
const char *signal )
658 return !mScaleBasedVisibility ||
660 && ( mMaxScale == 0 || scale < mMaxScale ) );
665 return mScaleBasedVisibility;
670 return mRefreshTimer->isActive();
675 return mRefreshTimer->interval();
682 mRefreshTimer->stop();
683 mRefreshTimer->setInterval( 0 );
687 mRefreshTimer->setInterval( interval );
695 mRefreshTimer->stop();
696 else if ( mRefreshTimer->interval() > 0 )
697 mRefreshTimer->start();
725 mScaleBasedVisibility = enabled;
735 return QStringList();
777 QString layerName( name );
778 layerName.replace(
'_',
' ' );
795 myURI = components[
"path"].toString();
798 QFileInfo myFileInfo( myURI );
801 if ( myFileInfo.exists() )
804 if ( myURI.endsWith( QLatin1String(
".gz" ), Qt::CaseInsensitive ) )
806 else if ( myURI.endsWith( QLatin1String(
".zip" ), Qt::CaseInsensitive ) )
808 else if ( myURI.endsWith( QLatin1String(
".tar" ), Qt::CaseInsensitive ) )
810 else if ( myURI.endsWith( QLatin1String(
".tar.gz" ), Qt::CaseInsensitive ) )
812 else if ( myURI.endsWith( QLatin1String(
".tgz" ), Qt::CaseInsensitive ) )
814 myFileInfo.setFile( myURI );
828 return baseURI( PropertyType::Metadata );
843 return baseURI( PropertyType::Style );
853 return loadNamedPropertyFromDatabase( db, uri, qmd, PropertyType::Metadata );
858 return loadNamedPropertyFromDatabase( db, uri, qml, PropertyType::Style );
865 bool resultFlag =
false;
873 QgsDebugMsgLevel( QStringLiteral(
"Trying to load style or metadata for \"%1\" from \"%2\"" ).arg( uri, db ), 4 );
875 if ( db.isEmpty() || !QFile( db ).exists() )
878 myResult = database.
open_v2( db, SQLITE_OPEN_READONLY,
nullptr );
879 if ( myResult != SQLITE_OK )
888 mySql = QStringLiteral(
"select qmd from tbl_metadata where metadata=?" );
892 mySql = QStringLiteral(
"select qml from tbl_styles where style=?" );
896 statement = database.
prepare( mySql, myResult );
897 if ( myResult == SQLITE_OK )
899 QByteArray param = uri.toUtf8();
901 if ( sqlite3_bind_text( statement.get(), 1, param.data(), param.length(), SQLITE_STATIC ) == SQLITE_OK &&
902 sqlite3_step( statement.get() ) == SQLITE_ROW )
904 xml = QString::fromUtf8( reinterpret_cast< const char * >( sqlite3_column_text( statement.get(), 0 ) ) );
914 return loadNamedProperty( uri, PropertyType::Style, resultFlag, categories );
923 QDomDocument myDocument( QStringLiteral(
"qgis" ) );
927 QString myErrorMessage;
930 if ( myFile.open( QFile::ReadOnly ) )
934 resultFlag = myDocument.setContent( &myFile, &myErrorMessage, &line, &column );
936 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
942 QgsDebugMsgLevel( QStringLiteral(
"project fileName: %1" ).arg( project.absoluteFilePath() ), 4 );
950 ( project.exists() &&
loadNamedStyleFromDatabase( project.absoluteDir().absoluteFilePath( project.baseName() +
".qmldb" ), uri, xml ) ) ||
953 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
956 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
961 myErrorMessage = tr(
"Style not found in database" );
969 ( project.exists() &&
loadNamedMetadataFromDatabase( project.absoluteDir().absoluteFilePath( project.baseName() +
".qmldb" ), uri, xml ) ) ||
972 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
975 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
980 myErrorMessage = tr(
"Metadata not found in database" );
990 return myErrorMessage;
998 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1003 myErrorMessage = tr(
"Loading metadata file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1006 return myErrorMessage;
1011 QDomElement myRoot = document.firstChildElement( QStringLiteral(
"qgis" ) );
1012 if ( myRoot.isNull() )
1014 errorMessage = tr(
"Root <qgis> element could not be found" );
1023 QDomElement myRoot = myDocument.firstChildElement( QStringLiteral(
"qgis" ) );
1024 if ( myRoot.isNull() )
1026 myErrorMessage = tr(
"Root <qgis> element could not be found" );
1031 QgsProjectVersion fileVersion( myRoot.attribute( QStringLiteral(
"version" ) ) );
1034 if ( thisVersion > fileVersion )
1053 myErrorMessage = tr(
"Cannot apply style with symbology to layer with a different geometry type" );
1060 return readSymbology( myRoot, myErrorMessage, context, categories );
1065 QDomImplementation DomImplementation;
1066 QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral(
"qgis" ), QStringLiteral(
"http://mrcc.com/qgis.dtd" ), QStringLiteral(
"SYSTEM" ) );
1067 QDomDocument myDocument( documentType );
1069 QDomElement myRootNode = myDocument.createElement( QStringLiteral(
"qgis" ) );
1071 myDocument.appendChild( myRootNode );
1075 errorMsg = QObject::tr(
"Could not save metadata" );
1084 QDomImplementation DomImplementation;
1085 QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral(
"qgis" ), QStringLiteral(
"http://mrcc.com/qgis.dtd" ), QStringLiteral(
"SYSTEM" ) );
1086 QDomDocument myDocument( documentType );
1088 QDomElement myRootNode = myDocument.createElement( QStringLiteral(
"qgis" ) );
1090 myDocument.appendChild( myRootNode );
1092 if ( !
writeSymbology( myRootNode, myDocument, errorMsg, context, categories ) )
1094 errorMsg = QObject::tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1106 QString geoType = QString::number( vl->
geometryType() );
1109 QDomElement layerGeometryType = myDocument.createElement( QStringLiteral(
"layerGeometryType" ) );
1110 QDomText
type = myDocument.createTextNode( geoType );
1112 layerGeometryType.appendChild( type );
1113 myRootNode.appendChild( layerGeometryType );
1142 if ( vlayer && vlayer->
providerType() == QLatin1String(
"ogr" ) )
1144 QStringList theURIParts = uri.split(
'|' );
1145 filename = theURIParts[0];
1147 else if ( vlayer && vlayer->
providerType() == QLatin1String(
"gpx" ) )
1149 QStringList theURIParts = uri.split(
'?' );
1150 filename = theURIParts[0];
1152 else if ( vlayer && vlayer->
providerType() == QLatin1String(
"delimitedtext" ) )
1154 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1156 if ( filename.isEmpty() )
1164 QString myErrorMessage;
1165 QDomDocument myDocument;
1178 QFileInfo myFileInfo( filename );
1181 QFileInfo myDirInfo( myFileInfo.path() );
1182 if ( !myDirInfo.isWritable() )
1184 return tr(
"The directory containing your dataset needs to be writable!" );
1190 QFile myFile( myFileName );
1191 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1193 QTextStream myFileStream( &myFile );
1195 myDocument.save( myFileStream, 2 );
1201 return tr(
"Created default metadata file as %1" ).arg( myFileName );
1204 return tr(
"Created default style file as %1" ).arg( myFileName );
1214 return tr(
"ERROR: Failed to created default metadata file as %1. Check file permissions and retry." ).arg( myFileName );
1217 return tr(
"ERROR: Failed to created default style file as %1. Check file permissions and retry." ).arg( myFileName );
1223 QString qml = myDocument.toString();
1230 if ( myResult != SQLITE_OK )
1232 return tr(
"User database could not be opened." );
1235 QByteArray param0 = uri.toUtf8();
1236 QByteArray param1 = qml.toUtf8();
1242 mySql = QStringLiteral(
"create table if not exists tbl_metadata(metadata varchar primary key,qmd varchar)" );
1246 mySql = QStringLiteral(
"create table if not exists tbl_styles(style varchar primary key,qml varchar)" );
1250 statement = database.
prepare( mySql, myResult );
1251 if ( myResult == SQLITE_OK )
1253 if ( sqlite3_step( statement.get() ) != SQLITE_DONE )
1259 return tr(
"The metadata table could not be created." );
1262 return tr(
"The style table could not be created." );
1270 mySql = QStringLiteral(
"insert into tbl_metadata(metadata,qmd) values (?,?)" );
1274 mySql = QStringLiteral(
"insert into tbl_styles(style,qml) values (?,?)" );
1277 statement = database.
prepare( mySql, myResult );
1278 if ( myResult == SQLITE_OK )
1280 if ( sqlite3_bind_text( statement.get(), 1, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1281 sqlite3_bind_text( statement.get(), 2, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1282 sqlite3_step( statement.get() ) == SQLITE_DONE )
1288 myErrorMessage = tr(
"The metadata %1 was saved to database" ).arg( uri );
1292 myErrorMessage = tr(
"The style %1 was saved to database" ).arg( uri );
1304 mySql = QStringLiteral(
"update tbl_metadata set qmd=? where metadata=?" );
1308 mySql = QStringLiteral(
"update tbl_styles set qml=? where style=?" );
1311 statement = database.
prepare( mySql, myResult );
1312 if ( myResult == SQLITE_OK )
1314 if ( sqlite3_bind_text( statement.get(), 2, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1315 sqlite3_bind_text( statement.get(), 1, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1316 sqlite3_step( statement.get() ) == SQLITE_DONE )
1322 myErrorMessage = tr(
"The metadata %1 was updated in the database." ).arg( uri );
1326 myErrorMessage = tr(
"The style %1 was updated in the database." ).arg( uri );
1336 myErrorMessage = tr(
"The metadata %1 could not be updated in the database." ).arg( uri );
1340 myErrorMessage = tr(
"The style %1 could not be updated in the database." ).arg( uri );
1351 myErrorMessage = tr(
"The metadata %1 could not be inserted into database." ).arg( uri );
1355 myErrorMessage = tr(
"The style %1 could not be inserted into database." ).arg( uri );
1362 return myErrorMessage;
1372 QDomDocument myDocument = QDomDocument();
1374 QDomNode header = myDocument.createProcessingInstruction( QStringLiteral(
"xml" ), QStringLiteral(
"version=\"1.0\" encoding=\"UTF-8\"" ) );
1375 myDocument.appendChild( header );
1379 if ( !vlayer && !rlayer )
1381 errorMsg = tr(
"Could not save symbology because:\n%1" )
1382 .arg( tr(
"Only vector and raster layers are supported" ) );
1387 QDomElement root = myDocument.createElementNS( QStringLiteral(
"http://www.opengis.net/sld" ), QStringLiteral(
"StyledLayerDescriptor" ) );
1388 QDomElement layerNode;
1391 root.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.1.0" ) );
1392 root.setAttribute( QStringLiteral(
"xsi:schemaLocation" ), QStringLiteral(
"http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/StyledLayerDescriptor.xsd" ) );
1393 root.setAttribute( QStringLiteral(
"xmlns:ogc" ), QStringLiteral(
"http://www.opengis.net/ogc" ) );
1394 root.setAttribute( QStringLiteral(
"xmlns:se" ), QStringLiteral(
"http://www.opengis.net/se" ) );
1395 root.setAttribute( QStringLiteral(
"xmlns:xlink" ), QStringLiteral(
"http://www.w3.org/1999/xlink" ) );
1396 root.setAttribute( QStringLiteral(
"xmlns:xsi" ), QStringLiteral(
"http://www.w3.org/2001/XMLSchema-instance" ) );
1397 myDocument.appendChild( root );
1400 layerNode = myDocument.createElement( QStringLiteral(
"NamedLayer" ) );
1401 root.appendChild( layerNode );
1408 root.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.0.0" ) );
1409 root.setAttribute( QStringLiteral(
"xmlns:gml" ), QStringLiteral(
"http://www.opengis.net/gml" ) );
1410 root.setAttribute( QStringLiteral(
"xmlns:ogc" ), QStringLiteral(
"http://www.opengis.net/ogc" ) );
1411 root.setAttribute( QStringLiteral(
"xmlns:sld" ), QStringLiteral(
"http://www.opengis.net/sld" ) );
1412 myDocument.appendChild( root );
1415 layerNode = myDocument.createElement( QStringLiteral(
"UserLayer" ) );
1416 root.appendChild( layerNode );
1422 props[ QStringLiteral(
"scaleMinDenom" ) ] = QString::number( mMinScale );
1423 props[ QStringLiteral(
"scaleMaxDenom" ) ] = QString::number( mMaxScale );
1428 if ( !vlayer->
writeSld( layerNode, myDocument, errorMsg, props ) )
1430 errorMsg = tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1437 if ( !rlayer->writeSld( layerNode, myDocument, errorMsg, props ) )
1439 errorMsg = tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1452 QDomDocument myDocument;
1454 if ( !errorMsg.isNull() )
1462 if ( mlayer->
providerType() == QLatin1String(
"ogr" ) )
1464 QStringList theURIParts = uri.split(
'|' );
1465 filename = theURIParts[0];
1467 else if ( mlayer->
providerType() == QLatin1String(
"gpx" ) )
1469 QStringList theURIParts = uri.split(
'?' );
1470 filename = theURIParts[0];
1472 else if ( mlayer->
providerType() == QLatin1String(
"delimitedtext" ) )
1474 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1476 if ( filename.isEmpty() )
1484 QFileInfo myFileInfo( filename );
1485 if ( myFileInfo.exists() || filename.endsWith( QLatin1String(
".sld" ), Qt::CaseInsensitive ) )
1487 QFileInfo myDirInfo( myFileInfo.path() );
1488 if ( !myDirInfo.isWritable() )
1490 return tr(
"The directory containing your dataset needs to be writable!" );
1494 QString myFileName = myFileInfo.path() + QDir::separator() + myFileInfo.completeBaseName() +
".sld";
1496 QFile myFile( myFileName );
1497 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1499 QTextStream myFileStream( &myFile );
1501 myDocument.save( myFileStream, 2 );
1504 return tr(
"Created default style file as %1" ).arg( myFileName );
1509 return tr(
"ERROR: Failed to created SLD style file as %1. Check file permissions and retry." ).arg( filename );
1516 QDomDocument myDocument;
1520 QString myErrorMessage;
1522 QFile myFile( uri );
1523 if ( myFile.open( QFile::ReadOnly ) )
1526 resultFlag = myDocument.setContent( &myFile,
true, &myErrorMessage, &line, &column );
1528 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1533 myErrorMessage = tr(
"Unable to open file %1" ).arg( uri );
1538 return myErrorMessage;
1542 QDomElement myRoot = myDocument.firstChildElement( QStringLiteral(
"StyledLayerDescriptor" ) );
1543 if ( myRoot.isNull() )
1545 myErrorMessage = QStringLiteral(
"Error: StyledLayerDescriptor element not found in %1" ).arg( uri );
1547 return myErrorMessage;
1552 QDomElement namedLayerElem = myRoot.firstChildElement( QStringLiteral(
"NamedLayer" ) );
1553 if ( namedLayerElem.isNull() )
1555 myErrorMessage = QStringLiteral(
"Info: NamedLayer element not found." );
1557 return myErrorMessage;
1561 resultFlag =
readSld( namedLayerElem, errorMsg );
1564 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, errorMsg );
1565 return myErrorMessage;
1574 Q_UNUSED( errorMessage )
1576 Q_UNUSED( categories )
1585 Q_UNUSED( errorMessage )
1587 Q_UNUSED( categories )
1593 Q_UNUSED( dataSource )
1594 Q_UNUSED( baseName )
1595 Q_UNUSED( provider )
1597 Q_UNUSED( loadDefaultStyleFlag )
1607 QgsMapLayer::StyleCategories categories )
1612 QDomElement renderer3DElem = layerElement.firstChildElement( QStringLiteral(
"renderer-3d" ) );
1613 if ( !renderer3DElem.isNull() )
1615 QString type3D = renderer3DElem.attribute( QStringLiteral(
"type" ) );
1635 setScaleBasedVisibility( layerElement.attribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ) ).toInt() == 1 );
1636 if ( layerElement.hasAttribute( QStringLiteral(
"minimumScale" ) ) )
1639 setMaximumScale( layerElement.attribute( QStringLiteral(
"minimumScale" ) ).toDouble() );
1640 setMinimumScale( layerElement.attribute( QStringLiteral(
"maximumScale" ) ).toDouble() );
1644 setMaximumScale( layerElement.attribute( QStringLiteral(
"maxScale" ) ).toDouble() );
1645 setMinimumScale( layerElement.attribute( QStringLiteral(
"minScale" ) ).toDouble() );
1652 QDomElement flagsElem = layerElement.firstChildElement( QStringLiteral(
"flags" ) );
1653 LayerFlags
flags = mFlags;
1654 auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
1655 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
1657 QDomNode flagNode = flagsElem.namedItem( it.value() );
1658 if ( flagNode.isNull() )
1660 bool flagValue = flagNode.toElement().text() ==
"1" ? true :
false;
1661 if ( flags.testFlag( it.key() ) && !flagValue )
1663 else if ( !flags.testFlag( it.key() ) && flagValue )
1677 return mUndoStackStyles;
1682 return mCustomProperties.
keys();
1687 mCustomProperties.
setValue( key, value );
1692 mCustomProperties = properties;
1697 return mCustomProperties.
value( value, defaultValue );
1702 mCustomProperties.
remove( key );
1729 if ( legend == mLegend )
1737 mLegend->setParent(
this );
1751 return mStyleManager;
1756 if ( renderer == m3DRenderer )
1760 m3DRenderer = renderer;
1801 static QList<const QgsMapLayer *> _depOutEdges(
const QgsMapLayer *vl,
const QgsMapLayer *that,
const QSet<QgsMapLayerDependency> &layers )
1803 QList<const QgsMapLayer *> lst;
1806 const auto constLayers = layers;
1825 static bool _depHasCycleDFS(
const QgsMapLayer *n, QHash<const QgsMapLayer *, int> &mark,
const QgsMapLayer *that,
const QSet<QgsMapLayerDependency> &layers )
1827 if ( mark.value( n ) == 1 )
1829 if ( mark.value( n ) == 0 )
1832 const auto depOutEdges { _depOutEdges( n, that, layers ) };
1835 if ( _depHasCycleDFS( m, mark, that, layers ) )
1845 QHash<const QgsMapLayer *, int> marks;
1846 return _depHasCycleDFS(
this, marks,
this, layers );
1849 bool QgsMapLayer::isReadOnly()
const 1856 return mOriginalXmlProperties;
1867 QString uuid = QUuid::createUuid().toString();
1869 QString
id = layerName +
'_' + uuid.mid( 1, uuid.length() - 2 );
1876 id.replace( QRegExp(
"[\\W]" ), QStringLiteral(
"_" ) );
1892 QSet<QgsMapLayerDependency> deps;
1893 const auto constODeps = oDeps;
1925 void QgsMapLayer::onNotifiedTriggerRepaint(
const QString &message )
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.
QString attributionUrl() const
Returns the attribution URL of the layer used by QGIS Server in GetCapabilities request.
virtual QStringList subLayers() const
Returns the sublayers of this layer.
void setMetadataUrl(const QString &metaUrl)
Sets the metadata URL of the layer used by QGIS Server in GetCapabilities request.
The class is used as a container of context for various read/write operations on other objects...
QString dataUrlFormat() const
Returns the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
static QString generateId(const QString &layerName)
Generates an unique identifier for this layer, the generate ID is prefixed by layerName.
A rectangle specified with double values.
Base class for all map layer types.
static QString formatLayerName(const QString &name)
A convenience function to capitalize and format a layer name.
static Qgs3DRendererRegistry * renderer3DRegistry()
Returns registry of available 3D renderers.
QStringList styles() const
Returns list of all defined style names.
static const QString QGIS_VERSION
Version string.
void setShortName(const QString &shortName)
Sets the short name of the layer used by QGIS Server to identify the layer.
virtual void resolveReferences(const QgsProject &project)
Resolves references to other objects - second phase of loading - after readXml()
virtual void exportSldStyle(QDomDocument &doc, QString &errorMsg) const
Export the properties of this layer as SLD style in a QDomDocument.
void setProviderType(const QString &providerType)
Sets the providerType (provider key)
virtual QgsMapLayer * clone() const =0
Returns a new instance equivalent to this one except for the id which is still unique.
void dependenciesChanged()
Emitted when dependencies are changed.
virtual QString loadSldStyle(const QString &uri, bool &resultFlag)
Attempts to style the layer using the formatting from an SLD type file.
Base class for all renderers that may to participate in 3D view.
QgsMapLayerType type() const
Returns the type of the layer.
static QString qgisSettingsDirPath()
Returns the path to the settings directory in user's home dir.
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 QSet< QgsMapLayerDependency > dependencies() const
Gets the list of dependencies.
virtual bool importNamedStyle(QDomDocument &doc, QString &errorMsg, QgsMapLayer::StyleCategories categories=QgsMapLayer::AllStyleCategories)
Import the properties of this layer from a QDomDocument.
virtual QgsDataProvider * dataProvider()
Returns the layer's data provider, it may be nullptr.
void readXml(const QDomNode &parentNode, const QString &keyStartsWith=QString())
Read store contents from XML.
void reset()
Reset the style manager to a basic state - with one default style which is set as current...
QStringList customPropertyKeys() const
Returns list of all keys within custom properties.
MAYBE_UNUSED NODISCARD QgsReadWriteContextCategoryPopper enterCategory(const QString &category, const QString &details=QString())
Push a category to the stack.
QString shortName() const
Returns the short name of the layer used by QGIS Server to identify the layer.
QgsMapLayerLegend * legend() const
Can be nullptr.
Unique pointer for sqlite3 prepared statements, which automatically finalizes the statement when the ...
void setCustomProperties(const QgsObjectCustomProperties &properties)
Set custom properties for layer.
void metadataChanged()
Emitted when the layer's metadata is changed.
virtual QgsError error() const
Gets current status error.
This class provides qgis with the ability to render raster datasets onto the mapcanvas.
void validate()
Perform some validation on this CRS.
QString dataUrl() const
Returns the DataUrl of the layer used by QGIS Server in GetCapabilities request.
QString mProviderKey
Data provider key (name of the data provider)
void emitStyleChanged()
Triggers an emission of the styleChanged() signal.
QString providerType() const
Returns the provider type (provider key) for this layer.
PropertyType
Maplayer has a style and a metadata property.
void setRefreshOnNotifyEnabled(bool enabled)
Set whether provider notification is connected to triggerRepaint.
void setCustomProperty(const QString &key, const QVariant &value)
Set a custom property for layer.
static void setCustomCrsValidation(CUSTOM_CRS_VALIDATION f)
Sets custom function to force valid CRS.
void readCustomProperties(const QDomNode &layerNode, const QString &keyStartsWith=QString())
Read custom properties from project file.
virtual bool loadNamedStyleFromDatabase(const QString &db, const QString &uri, QString &qml)
Retrieve a named style for this layer from a sqlite database.
virtual void resolveReferences(QgsProject *project)
Resolve references to other layers (kept as layer IDs after reading XML) into layer objects...
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...
virtual QString saveSldStyle(const QString &uri, bool &resultFlag) const
Saves the properties of this layer to an SLD format file.
static QDomElement writeRectangle(const QgsRectangle &rect, QDomDocument &doc)
void crsChanged()
Emit a signal that layer's CRS has been reset.
QgsWkbTypes::GeometryType geometryType() const
Returns point, line or polygon.
virtual const QgsLayerMetadata & metadata() const
Returns a reference to the layer's metadata store.
void configChanged()
Emitted whenever the configuration is changed.
bool isInScaleRange(double scale) const
Tests whether the layer should be visible at the specified scale.
QgsMapLayer::LayerFlags flags() const
Returns the flags for this layer.
bool readLayerXml(const QDomElement &layerElement, QgsReadWriteContext &context)
Sets state from DOM document.
QVariant value(const QString &key, const QVariant &defaultValue=QVariant()) const
Returns value for the given key. If the key is not stored, default value will be used.
void setMetadataUrlType(const QString &metaUrlType)
Set the metadata type of the layer used by QGIS Server in GetCapabilities request MetadataUrlType ind...
Allows entering a context category and takes care of leaving this category on deletion of the class...
QVariantMap decodeUri(const QString &providerKey, const QString &uri)
Breaks a provider data source URI into its component paths (e.g.
Abstract base class for spatial data provider implementations.
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...
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 writeXml(QDomNode &parentNode, QDomDocument &doc) const
Write store contents to XML.
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...
bool isValid() const
Returns the status of the layer.
void notify(const QString &msg)
Emitted when the datasource issues a notification.
void setBlendMode(QPainter::CompositionMode blendMode)
Set the blending mode used for rendering a layer.
bool mIsRefreshOnNofifyEnabled
QMap< QString, QString > QgsStringMap
void remove(const QString &key)
Remove a key (entry) from the store.
void exportNamedMetadata(QDomDocument &doc, QString &errorMsg) const
Export the current metadata of this layer as named metadata in a QDomDocument.
QString mLayerName
Name of the layer - used for display.
bool isRefreshOnNotifyEnabled() const
Returns true if the refresh on provider nofification is enabled.
void styleChanged()
Signal emitted whenever a change affects the layer's style.
bool loadNamedMetadataFromDatabase(const QString &db, const QString &uri, QString &qmd)
Retrieve a named metadata for this layer from a sqlite database.
virtual QString htmlMetadata() const
Obtain a formatted HTML string containing assorted metadata for this layer.
virtual QgsRectangle extent() const
Returns the extent of the layer.
void writeCustomProperties(QDomNode &layerNode, QDomDocument &doc) const
Write custom properties to project file.
const QgsProjectTranslator * projectTranslator() const
Returns the project translator.
void setMaximumScale(double scale)
Sets the maximum map scale (i.e.
QgsMapLayerStyleManager * styleManager() const
Gets access to the layer's style manager.
QgsRectangle mExtent
Extent of the layer.
virtual void writeXml(QDomElement &elem, const QgsReadWriteContext &context) const =0
Writes renderer's properties to given XML element.
static T readFlagAttribute(const QDomElement &element, const QString &attributeName, T defaultValue)
Read a flag value from an attribute of the element.
QString mMetadataUrl
MetadataUrl of the layer.
void setLegendUrlFormat(const QString &legendUrlFormat)
Sets the format for a URL based layer legend.
QString metadataUrlFormat() const
Returns the metadata format of the layer used by QGIS Server in GetCapabilities request.
void setValidationHint(const QString &html)
Set user hint for validation.
static QgsProviderRegistry * instance(const QString &pluginPath=QString())
Means of accessing canonical single instance.
void setKeywordList(const QString &keywords)
Sets the keyword list of the layer used by QGIS Server in GetCapabilities request.
void setValue(const QString &key, const QVariant &value)
Add an entry to the store. If the entry with the keys exists already, it will be overwritten.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
static QString capitalize(const QString &string, Capitalization capitalization)
Converts a string by applying capitalization rules to the string.
void writeCommonStyle(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context, StyleCategories categories=AllStyleCategories) const
Write style data common to all layer types.
void setTitle(const QString &title)
Sets the title of the layer used by QGIS Server in GetCapabilities request.
void readStyleManager(const QDomNode &layerNode)
Read style manager's configuration (if any). To be called by subclasses.
void triggerRepaint(bool deferredUpdate=false)
Will advise the map canvas (and any other interested party) that this layer requires to be repainted...
int autoRefreshInterval() const
Returns the auto refresh interval (in milliseconds).
virtual void setSubLayerVisibility(const QString &name, bool visible)
Set the visibility of the given sublayer name.
#define QgsDebugMsgLevel(str, level)
virtual QString type() const =0
Returns unique identifier of the renderer class (used to identify subclass)
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 setOriginalXmlProperties(const QString &originalXmlProperties)
Sets the original XML properties for the layer to originalXmlProperties.
Rendering: scale visibility, simplify method, opacity.
virtual void setMetadata(const QgsLayerMetadata &metadata)
Sets the layer's metadata store.
void setCrs(const QgsCoordinateReferenceSystem &srs, bool emitSignal=true)
Sets layer's spatial reference system.
QSet< QgsMapLayerDependency > mDependencies
List of layers that may modify this layer on modification.
virtual void setListening(bool isListening)
Set whether the provider will listen to datasource notifications If set, the provider will issue noti...
void nameChanged()
Emitted when the name has been changed.
A class to describe the version of a project.
virtual void setExtent(const QgsRectangle &rect)
Sets the extent.
void readXml(const QDomElement &mgrElement)
Read configuration (for project loading)
QString keywordList() const
Returns the keyword list of the layer used by QGIS Server in GetCapabilities request.
bool writeSld(QDomNode &node, QDomDocument &doc, QString &errorMessage, const QgsStringMap &props=QgsStringMap()) const
Writes the symbology of the layer into the document provided in SLD 1.1 format.
QString mDataUrl
DataUrl of the layer.
The QgsMapLayerLegend class is abstract interface for implementations of legends for one map layer...
virtual bool isEditable() const
Returns true if the layer can be edited.
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 ...
QString legendUrl() const
Returns the URL for the layer's legend.
QgsCoordinateReferenceSystem crs() const
Returns the layer's spatial reference system.
Reads and writes project states.
QString publicSource() const
Gets a version of the internal layer definition that has sensitive bits removed (for example...
void setRenderer3D(QgsAbstract3DRenderer *renderer)
Sets 3D renderer for the layer.
void removeCustomProperty(const QString &key)
Remove a custom property from layer.
static QString extensionPropertyType(PropertyType type)
Returns the extension of a Property.
QgsCoordinateTransformContext transformContext() const
Returns the layer data provider coordinate transform context or a default transform context if the la...
sqlite3_statement_unique_ptr prepare(const QString &sql, int &resultCode) const
Prepares a sql statement, returning the result.
double minimumScale() const
Returns the minimum map scale (i.e.
Contains information about the context in which a coordinate transform is executed.
double maximumScale() const
Returns the maximum map scale (i.e.
bool mValid
Indicates if the layer is valid and can be drawn.
void setName(const QString &name)
Set the display name of the layer.
void setDataUrlFormat(const QString &dataUrlFormat)
Sets the DataUrl format of the layer used by QGIS Server in GetCapabilities request.
int open(const QString &path)
Opens the database at the specified file path.
QStringList keys() const
Returns list of stored keys.
QgsAbstract3DRenderer * renderer3D() const
Returns 3D renderer associated with the layer.
virtual bool readSld(const QDomNode &node, QString &errorMessage)
QString legendUrlFormat() const
Returns the format for a URL based layer legend.
Convert just the first letter of each word to uppercase, leave the rest untouched.
QString mMetadataUrlFormat
void setLegendUrl(const QString &legendUrl)
Sets the URL for the layer's legend.
bool hasDependencyCycle(const QSet< QgsMapLayerDependency > &layers) const
Checks whether a new set of dependencies will introduce a cycle.
void setMetadataUrlFormat(const QString &metaUrlFormat)
Sets the metadata format of the layer used by QGIS Server in GetCapabilities request.
virtual bool readXml(const QDomNode &layer_node, QgsReadWriteContext &context)
Called by readLayerXML(), used by children to read state specific to them from project files...
QString title() const
Returns the title of the layer used by QGIS Server in GetCapabilities request.
static QString pkgDataPath()
Returns the common root path of all application data directories.
static CUSTOM_CRS_VALIDATION customCrsValidation()
Gets custom function.
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 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.
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.
QString mAttribution
Attribution of the layer.
QString mAbstract
Description of the layer.
General configuration: identifiable, removable, searchable, display expression, read-only.
void setScaleBasedVisibility(bool enabled)
Sets whether scale based visibility is enabled for the layer.
void writeStyleManager(QDomNode &layerNode, QDomDocument &doc) const
Write style manager's configuration (if exists). To be called by subclasses.
Unique pointer for sqlite3 databases, which automatically closes the database when the pointer goes o...
QString originalXmlProperties() const
Returns the XML properties of the original layer as they were when the layer was first read from the ...
void blendModeChanged(QPainter::CompositionMode blendMode)
Signal emitted when the blend mode is changed, through QgsMapLayer::setBlendMode() ...
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 docment provided.
QgsCoordinateTransformContext transformContext() const
Returns data provider coordinate transform context.
GeometryType
The geometry types are used to group QgsWkbTypes::Type in a coarse way.
QString mRefreshOnNofifyMessage
static QgsAuthManager * authManager()
Returns the application's authentication manager instance.
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.
int open_v2(const QString &path, int flags, const char *zVfs)
Opens the database at the specified file path.
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...
virtual QString saveDefaultStyle(bool &resultFlag)
Save the properties of this layer as the default style (either as a .qml file on disk or as a record ...
Custom properties (by plugins for instance)
void itemsChanged()
Emitted when existing items/nodes got invalid and should be replaced by new ones. ...
Setting options for creating vector data providers.
QString name() const
Returns the display name of the layer.
QgsMapLayer(QgsMapLayerType type=QgsMapLayerType::VectorLayer, const QString &name=QString(), const QString &source=QString())
Constructor for QgsMapLayer.
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.
QString mDataSource
Data source description string, varies by layer type.
QString source() const
Returns the source for the layer.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
QgsError is container for error messages (report).
bool setMasterPassword(bool verify=false)
Main call to initially set or continually check master password is set.
void setMinimumScale(double scale)
Sets the minimum map scale (i.e.
static QgsProject * instance()
Returns the QgsProject singleton instance.
Qgs3DRendererAbstractMetadata * rendererMetadata(const QString &type) const
Returns metadata for a 3D renderer type (may be used to create a new instance of the type) ...
QString mLegendUrl
WMS legend.
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 ...
This class represents a coordinate reference system (CRS).
void legendChanged()
Signal emitted when legend of the layer has changed.
Simple key-value store (keys = strings, values = variants) that supports loading/saving to/from XML i...
void setAutoRefreshInterval(int interval)
Sets the auto refresh interval (in milliseconds) for the layer.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
bool readXml(const QDomNode &node)
Restores state from the given DOM node.
void setAttributionUrl(const QString &attribUrl)
Sets the attribution URL of the layer used by QGIS Server in GetCapabilities request.
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...
QString metadataUrl() const
Returns the metadata URL of the layer used by QGIS Server in GetCapabilities request.
virtual void setDataSource(const QString &dataSource, const QString &baseName, const QString &provider, const QgsDataProvider::ProviderOptions &options, bool loadDefaultStyleFlag=false)
Updates the data source of the layer.
void setAutoRefreshEnabled(bool enabled)
Sets whether auto refresh is enabled for the layer.
QUndoStack * undoStackStyles()
Returns pointer to layer's style undo stack.
QgsMapLayerType
Types of layers that can be added to a map.
bool addStyle(const QString &name, const QgsMapLayerStyle &style)
Add a style with given name and data.
QVariant customProperty(const QString &value, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
QUndoStack * undoStack()
Returns pointer to layer's undo stack.
void setAttribution(const QString &attrib)
Sets the attribution of the layer used by QGIS Server in GetCapabilities request. ...
void(* CUSTOM_CRS_VALIDATION)(QgsCoordinateReferenceSystem &)
void setRefreshOnNofifyMessage(const QString &message)
Set the notification message that triggers repaint If refresh on notification is enabled, the notification will triggerRepaint only if the notification message is equal to.
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 ...
bool hasAutoRefreshEnabled() const
Returns true if auto refresh is enabled for the layer.
void setLegend(QgsMapLayerLegend *legend)
Assign a legend controller to the map layer.
bool writeXml(QDomNode &node, QDomDocument &doc) const
Stores state to the given Dom node in the given document.
void autoRefreshIntervalChanged(int interval)
Emitted when the auto refresh interval changes.
This class models dependencies with or between map layers.
Management of styles for use with one map layer.
QString refreshOnNotifyMessage() const
Returns the message that should be notified by the provider to triggerRepaint.
Represents a vector layer which manages a vector based data sets.
virtual QDateTime timestamp() const
Time stamp of data source in the moment when data/metadata were loaded by provider.
virtual void setLayerOrder(const QStringList &layers)
Reorders the previously selected sublayers of this layer from bottom to top.
void writeXml(QDomElement &mgrElement) const
Write configuration (for project saving)
bool writeLayerXml(QDomElement &layerElement, QDomDocument &document, const QgsReadWriteContext &context) const
Stores state in DOM node.
void setDataUrl(const QString &dataUrl)
Sets the DataUrl of the layer used by QGIS Server in GetCapabilities request.
void setValid(bool valid)
Sets whether layer is valid or not - should be used in constructor.
void setAbstract(const QString &abstract)
Sets the abstract of the layer used by QGIS Server in GetCapabilities request.
static const double SCALE_PRECISION
Fudge factor used to compare two scales.
QString attribution() const
Returns the attribution of the layer used by QGIS Server in GetCapabilities request.
void setFlags(QgsMapLayer::LayerFlags flags)
Returns the flags for this layer.
void flagsChanged()
Emitted when layer's flags have been modified.
QString metadataUrlType() const
Returns the metadata type 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.
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
void renderer3DChanged()
Signal emitted when 3D renderer associated with the layer has changed.
static QString removePassword(const QString &aUri)
Removes the password element from a URI.
bool importNamedMetadata(QDomDocument &document, QString &errorMessage)
Import the metadata of this layer from a QDomDocument.
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...
virtual bool setDependencies(const QSet< QgsMapLayerDependency > &layers)
Sets the list of dependencies.
bool isValid() const
Returns whether this CRS is correctly initialized and usable.