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 QString uuid = QUuid::createUuid().toString();
86 mID = lyrname +
'_' + uuid.mid( 1, uuid.length() - 2 );
94 mID.replace( QRegExp(
"[\\W]" ), QStringLiteral(
"_" ) );
99 connect( mRefreshTimer, &QTimer::timeout,
this, [ = ] {
triggerRepaint(
true ); } );
106 delete mStyleManager;
113 Q_FOREACH (
const QString &s,
styleManager()->styles() )
153 if ( flags == mFlags )
211 if ( mBlendMode == blendMode )
234 mnl = layerElement.namedItem( QStringLiteral(
"provider" ) );
235 mne = mnl.toElement();
236 provider = mne.text();
239 mnl = layerElement.namedItem( QStringLiteral(
"datasource" ) );
240 mne = mnl.toElement();
244 QRegExp rx(
"authcfg=([a-z]|[A-Z]|[0-9]){7}" );
257 mnl = layerElement.namedItem( QStringLiteral(
"layername" ) );
258 mne = mnl.toElement();
263 QDomNode srsNode = layerElement.namedItem( QStringLiteral(
"srs" ) );
278 layerError = !
readXml( layerElement, context );
291 mnl = layerElement.namedItem( QStringLiteral(
"id" ) );
292 if ( ! mnl.isNull() )
294 mne = mnl.toElement();
295 if ( ! mne.isNull() && mne.text().length() > 10 )
301 setAutoRefreshInterval( layerElement.attribute( QStringLiteral(
"autoRefreshTime" ), QStringLiteral(
"0" ) ).toInt() );
302 setAutoRefreshEnabled( layerElement.attribute( QStringLiteral(
"autoRefreshEnabled" ), QStringLiteral(
"0" ) ).toInt() );
304 setRefreshOnNotifyEnabled( layerElement.attribute( QStringLiteral(
"refreshOnNotifyEnabled" ), QStringLiteral(
"0" ) ).toInt() );
308 mnl = layerElement.namedItem( QStringLiteral(
"layername" ) );
309 mne = mnl.toElement();
312 setName( context.
projectTranslator()->
translate( QStringLiteral(
"project:layers:%1" ).arg( layerElement.namedItem( QStringLiteral(
"id" ) ).toElement().text() ), mne.text() ) );
315 QDomElement shortNameElem = layerElement.firstChildElement( QStringLiteral(
"shortname" ) );
316 if ( !shortNameElem.isNull() )
322 QDomElement titleElem = layerElement.firstChildElement( QStringLiteral(
"title" ) );
323 if ( !titleElem.isNull() )
325 mTitle = titleElem.text();
329 QDomElement abstractElem = layerElement.firstChildElement( QStringLiteral(
"abstract" ) );
330 if ( !abstractElem.isNull() )
336 QDomElement keywordListElem = layerElement.firstChildElement( QStringLiteral(
"keywordList" ) );
337 if ( !keywordListElem.isNull() )
340 for ( QDomNode n = keywordListElem.firstChild(); !n.isNull(); n = n.nextSibling() )
342 kwdList << n.toElement().text();
348 QDomElement dataUrlElem = layerElement.firstChildElement( QStringLiteral(
"dataUrl" ) );
349 if ( !dataUrlElem.isNull() )
352 mDataUrlFormat = dataUrlElem.attribute( QStringLiteral(
"format" ), QString() );
356 QDomElement legendUrlElem = layerElement.firstChildElement( QStringLiteral(
"legendUrl" ) );
357 if ( !legendUrlElem.isNull() )
360 mLegendUrlFormat = legendUrlElem.attribute( QStringLiteral(
"format" ), QString() );
364 QDomElement attribElem = layerElement.firstChildElement( QStringLiteral(
"attribution" ) );
365 if ( !attribElem.isNull() )
368 mAttributionUrl = attribElem.attribute( QStringLiteral(
"href" ), QString() );
372 QDomElement metaUrlElem = layerElement.firstChildElement( QStringLiteral(
"metadataUrl" ) );
373 if ( !metaUrlElem.isNull() )
376 mMetadataUrlType = metaUrlElem.attribute( QStringLiteral(
"type" ), QString() );
381 QDomElement metadataElem = layerElement.firstChildElement( QStringLiteral(
"resourceMetadata" ) );
390 Q_UNUSED( layer_node );
405 layerElement.setAttribute( QStringLiteral(
"autoRefreshTime" ), QString::number( mRefreshTimer->interval() ) );
406 layerElement.setAttribute( QStringLiteral(
"autoRefreshEnabled" ), mRefreshTimer->isActive() ? 1 : 0 );
412 QDomElement layerId = document.createElement( QStringLiteral(
"id" ) );
413 QDomText layerIdText = document.createTextNode(
id() );
414 layerId.appendChild( layerIdText );
416 layerElement.appendChild( layerId );
419 QDomElement dataSource = document.createElement( QStringLiteral(
"datasource" ) );
421 QDomText dataSourceText = document.createTextNode( src );
422 dataSource.appendChild( dataSourceText );
423 layerElement.appendChild( dataSource );
426 QDomElement layerName = document.createElement( QStringLiteral(
"layername" ) );
427 QDomText layerNameText = document.createTextNode(
name() );
428 layerName.appendChild( layerNameText );
429 layerElement.appendChild( layerName );
434 QDomElement layerShortName = document.createElement( QStringLiteral(
"shortname" ) );
435 QDomText layerShortNameText = document.createTextNode(
mShortName );
436 layerShortName.appendChild( layerShortNameText );
437 layerElement.appendChild( layerShortName );
443 QDomElement layerTitle = document.createElement( QStringLiteral(
"title" ) );
444 QDomText layerTitleText = document.createTextNode(
mTitle );
445 layerTitle.appendChild( layerTitleText );
446 layerElement.appendChild( layerTitle );
452 QDomElement layerAbstract = document.createElement( QStringLiteral(
"abstract" ) );
453 QDomText layerAbstractText = document.createTextNode(
mAbstract );
454 layerAbstract.appendChild( layerAbstractText );
455 layerElement.appendChild( layerAbstract );
459 QStringList keywordStringList =
keywordList().split(
',' );
460 if ( !keywordStringList.isEmpty() )
462 QDomElement layerKeywordList = document.createElement( QStringLiteral(
"keywordList" ) );
463 for (
int i = 0; i < keywordStringList.size(); ++i )
465 QDomElement layerKeywordValue = document.createElement( QStringLiteral(
"value" ) );
466 QDomText layerKeywordText = document.createTextNode( keywordStringList.at( i ).trimmed() );
467 layerKeywordValue.appendChild( layerKeywordText );
468 layerKeywordList.appendChild( layerKeywordValue );
470 layerElement.appendChild( layerKeywordList );
475 if ( !aDataUrl.isEmpty() )
477 QDomElement layerDataUrl = document.createElement( QStringLiteral(
"dataUrl" ) );
478 QDomText layerDataUrlText = document.createTextNode( aDataUrl );
479 layerDataUrl.appendChild( layerDataUrlText );
480 layerDataUrl.setAttribute( QStringLiteral(
"format" ),
dataUrlFormat() );
481 layerElement.appendChild( layerDataUrl );
486 if ( !aLegendUrl.isEmpty() )
488 QDomElement layerLegendUrl = document.createElement( QStringLiteral(
"legendUrl" ) );
489 QDomText layerLegendUrlText = document.createTextNode( aLegendUrl );
490 layerLegendUrl.appendChild( layerLegendUrlText );
491 layerLegendUrl.setAttribute( QStringLiteral(
"format" ),
legendUrlFormat() );
492 layerElement.appendChild( layerLegendUrl );
497 if ( !aAttribution.isEmpty() )
499 QDomElement layerAttribution = document.createElement( QStringLiteral(
"attribution" ) );
500 QDomText layerAttributionText = document.createTextNode( aAttribution );
501 layerAttribution.appendChild( layerAttributionText );
502 layerAttribution.setAttribute( QStringLiteral(
"href" ),
attributionUrl() );
503 layerElement.appendChild( layerAttribution );
508 if ( !aMetadataUrl.isEmpty() )
510 QDomElement layerMetadataUrl = document.createElement( QStringLiteral(
"metadataUrl" ) );
511 QDomText layerMetadataUrlText = document.createTextNode( aMetadataUrl );
512 layerMetadataUrl.appendChild( layerMetadataUrlText );
513 layerMetadataUrl.setAttribute( QStringLiteral(
"type" ),
metadataUrlType() );
514 layerMetadataUrl.setAttribute( QStringLiteral(
"format" ),
metadataUrlFormat() );
515 layerElement.appendChild( layerMetadataUrl );
521 QDomElement stamp = document.createElement( QStringLiteral(
"timestamp" ) );
522 QDomText stampText = document.createTextNode(
timestamp().toString( Qt::ISODate ) );
523 stamp.appendChild( stampText );
524 layerElement.appendChild( stamp );
527 layerElement.appendChild( layerName );
534 QDomElement mySrsElement = document.createElement( QStringLiteral(
"srs" ) );
535 mCRS.
writeXml( mySrsElement, document );
536 layerElement.appendChild( mySrsElement );
539 QDomElement myMetadataElem = document.createElement( QStringLiteral(
"resourceMetadata" ) );
541 layerElement.appendChild( myMetadataElem );
544 return writeXml( layerElement, document, context );
551 QMetaEnum metaEnum = QMetaEnum::fromType<QgsMapLayer::StyleCategories>();
552 QString categoriesKeys( metaEnum.valueToKeys( static_cast<int>( categories ) ) );
553 layerElement.setAttribute( QStringLiteral(
"styleCategories" ), categoriesKeys );
558 layerElement.setAttribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ),
hasScaleBasedVisibility() ? 1 : 0 );
559 layerElement.setAttribute( QStringLiteral(
"maxScale" ), QString::number(
maximumScale() ) );
560 layerElement.setAttribute( QStringLiteral(
"minScale" ), QString::number(
minimumScale() ) );
567 QDomElement renderer3DElem = document.createElement( QStringLiteral(
"renderer-3d" ) );
568 renderer3DElem.setAttribute( QStringLiteral(
"type" ), m3DRenderer->
type() );
569 m3DRenderer->
writeXml( renderer3DElem, context );
570 layerElement.appendChild( renderer3DElem );
578 QDomElement layerFlagsElem = document.createElement( QStringLiteral(
"flags" ) );
579 auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
580 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
582 bool flagValue = mFlags.testFlag( it.key() );
583 QDomElement flagElem = document.createElement( it.value() );
584 flagElem.appendChild( document.createTextNode( QString::number( flagValue ) ) );
585 layerFlagsElem.appendChild( flagElem );
587 layerElement.appendChild( layerFlagsElem );
600 Q_UNUSED( layer_node );
601 Q_UNUSED( document );
617 Q_UNUSED( dataProvider );
630 mCustomProperties.
readXml( layerNode, keyStartsWith );
635 mCustomProperties.
writeXml( layerNode, doc );
640 QDomElement styleMgrElem = layerNode.firstChildElement( QStringLiteral(
"map-layer-style-manager" ) );
641 if ( !styleMgrElem.isNull() )
642 mStyleManager->
readXml( styleMgrElem );
644 mStyleManager->
reset();
651 QDomElement styleMgrElem = doc.createElement( QStringLiteral(
"map-layer-style-manager" ) );
652 mStyleManager->
writeXml( styleMgrElem );
653 layerNode.appendChild( styleMgrElem );
663 void QgsMapLayer::connectNotify(
const char *signal )
672 return !mScaleBasedVisibility ||
674 && ( mMaxScale == 0 || scale < mMaxScale ) );
679 return mScaleBasedVisibility;
684 return mRefreshTimer->isActive();
689 return mRefreshTimer->interval();
696 mRefreshTimer->stop();
697 mRefreshTimer->setInterval( 0 );
701 mRefreshTimer->setInterval( interval );
709 mRefreshTimer->stop();
710 else if ( mRefreshTimer->interval() > 0 )
711 mRefreshTimer->start();
739 mScaleBasedVisibility = enabled;
749 return QStringList();
786 QString layerName( name );
787 layerName.replace(
'_',
' ' );
797 if ( myURI.startsWith( QLatin1String(
"/vsigzip/" ), Qt::CaseInsensitive ) )
799 myURI.remove( 0, 9 );
801 else if ( myURI.startsWith( QLatin1String(
"/vsizip/" ), Qt::CaseInsensitive ) &&
802 myURI.endsWith( QLatin1String(
".zip" ), Qt::CaseInsensitive ) )
805 myURI.remove( 0, 8 );
807 else if ( myURI.startsWith( QLatin1String(
"/vsitar/" ), Qt::CaseInsensitive ) &&
808 ( myURI.endsWith( QLatin1String(
".tar" ), Qt::CaseInsensitive ) ||
809 myURI.endsWith( QLatin1String(
".tar.gz" ), Qt::CaseInsensitive ) ||
810 myURI.endsWith( QLatin1String(
".tgz" ), Qt::CaseInsensitive ) ) )
813 myURI.remove( 0, 8 );
816 QFileInfo myFileInfo( myURI );
819 if ( myFileInfo.exists() )
822 if ( myURI.endsWith( QLatin1String(
".gz" ), Qt::CaseInsensitive ) )
824 else if ( myURI.endsWith( QLatin1String(
".zip" ), Qt::CaseInsensitive ) )
826 else if ( myURI.endsWith( QLatin1String(
".tar" ), Qt::CaseInsensitive ) )
828 else if ( myURI.endsWith( QLatin1String(
".tar.gz" ), Qt::CaseInsensitive ) )
830 else if ( myURI.endsWith( QLatin1String(
".tgz" ), Qt::CaseInsensitive ) )
832 myFileInfo.setFile( myURI );
846 return baseURI( PropertyType::Metadata );
861 return baseURI( PropertyType::Style );
871 return loadNamedPropertyFromDatabase( db, uri, qmd, PropertyType::Metadata );
876 return loadNamedPropertyFromDatabase( db, uri, qml, PropertyType::Style );
883 bool resultFlag =
false;
891 QgsDebugMsgLevel( QStringLiteral(
"Trying to load style or metadata for \"%1\" from \"%2\"" ).arg( uri, db ), 4 );
893 if ( db.isEmpty() || !QFile( db ).exists() )
896 myResult = database.
open_v2( db, SQLITE_OPEN_READONLY,
nullptr );
897 if ( myResult != SQLITE_OK )
906 mySql = QStringLiteral(
"select qmd from tbl_metadata where metadata=?" );
910 mySql = QStringLiteral(
"select qml from tbl_styles where style=?" );
914 statement = database.
prepare( mySql, myResult );
915 if ( myResult == SQLITE_OK )
917 QByteArray param = uri.toUtf8();
919 if ( sqlite3_bind_text( statement.get(), 1, param.data(), param.length(), SQLITE_STATIC ) == SQLITE_OK &&
920 sqlite3_step( statement.get() ) == SQLITE_ROW )
922 xml = QString::fromUtf8( reinterpret_cast< const char * >( sqlite3_column_text( statement.get(), 0 ) ) );
932 return loadNamedProperty( uri, PropertyType::Style, resultFlag, categories );
941 QDomDocument myDocument( QStringLiteral(
"qgis" ) );
945 QString myErrorMessage;
948 if ( myFile.open( QFile::ReadOnly ) )
952 resultFlag = myDocument.setContent( &myFile, &myErrorMessage, &line, &column );
954 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
960 QgsDebugMsgLevel( QStringLiteral(
"project fileName: %1" ).arg( project.absoluteFilePath() ), 4 );
968 ( project.exists() &&
loadNamedStyleFromDatabase( project.absoluteDir().absoluteFilePath( project.baseName() +
".qmldb" ), uri, xml ) ) ||
971 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
974 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
979 myErrorMessage = tr(
"Style not found in database" );
987 ( project.exists() &&
loadNamedMetadataFromDatabase( project.absoluteDir().absoluteFilePath( project.baseName() +
".qmldb" ), uri, xml ) ) ||
990 resultFlag = myDocument.setContent( xml, &myErrorMessage, &line, &column );
993 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
998 myErrorMessage = tr(
"Metadata not found in database" );
1008 return myErrorMessage;
1016 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1021 myErrorMessage = tr(
"Loading metadata file %1 failed because:\n%2" ).arg( uri, myErrorMessage );
1024 return myErrorMessage;
1029 QDomElement myRoot = document.firstChildElement( QStringLiteral(
"qgis" ) );
1030 if ( myRoot.isNull() )
1032 errorMessage = tr(
"Root <qgis> element could not be found" );
1041 QDomElement myRoot = myDocument.firstChildElement( QStringLiteral(
"qgis" ) );
1042 if ( myRoot.isNull() )
1044 myErrorMessage = tr(
"Root <qgis> element could not be found" );
1049 QgsProjectVersion fileVersion( myRoot.attribute( QStringLiteral(
"version" ) ) );
1052 if ( thisVersion > fileVersion )
1071 myErrorMessage = tr(
"Cannot apply style with symbology to layer with a different geometry type" );
1078 return readSymbology( myRoot, myErrorMessage, context, categories );
1083 QDomImplementation DomImplementation;
1084 QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral(
"qgis" ), QStringLiteral(
"http://mrcc.com/qgis.dtd" ), QStringLiteral(
"SYSTEM" ) );
1085 QDomDocument myDocument( documentType );
1087 QDomElement myRootNode = myDocument.createElement( QStringLiteral(
"qgis" ) );
1089 myDocument.appendChild( myRootNode );
1093 errorMsg = QObject::tr(
"Could not save metadata" );
1102 QDomImplementation DomImplementation;
1103 QDomDocumentType documentType = DomImplementation.createDocumentType( QStringLiteral(
"qgis" ), QStringLiteral(
"http://mrcc.com/qgis.dtd" ), QStringLiteral(
"SYSTEM" ) );
1104 QDomDocument myDocument( documentType );
1106 QDomElement myRootNode = myDocument.createElement( QStringLiteral(
"qgis" ) );
1108 myDocument.appendChild( myRootNode );
1110 if ( !
writeSymbology( myRootNode, myDocument, errorMsg, context, categories ) )
1112 errorMsg = QObject::tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1124 QString geoType = QString::number( vl->
geometryType() );
1127 QDomElement layerGeometryType = myDocument.createElement( QStringLiteral(
"layerGeometryType" ) );
1128 QDomText
type = myDocument.createTextNode( geoType );
1130 layerGeometryType.appendChild( type );
1131 myRootNode.appendChild( layerGeometryType );
1160 if ( vlayer && vlayer->
providerType() == QLatin1String(
"ogr" ) )
1162 QStringList theURIParts = uri.split(
'|' );
1163 filename = theURIParts[0];
1165 else if ( vlayer && vlayer->
providerType() == QLatin1String(
"gpx" ) )
1167 QStringList theURIParts = uri.split(
'?' );
1168 filename = theURIParts[0];
1170 else if ( vlayer && vlayer->
providerType() == QLatin1String(
"delimitedtext" ) )
1172 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1174 if ( filename.isEmpty() )
1182 QString myErrorMessage;
1183 QDomDocument myDocument;
1196 QFileInfo myFileInfo( filename );
1199 QFileInfo myDirInfo( myFileInfo.path() );
1200 if ( !myDirInfo.isWritable() )
1202 return tr(
"The directory containing your dataset needs to be writable!" );
1208 QFile myFile( myFileName );
1209 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1211 QTextStream myFileStream( &myFile );
1213 myDocument.save( myFileStream, 2 );
1219 return tr(
"Created default metadata file as %1" ).arg( myFileName );
1222 return tr(
"Created default style file as %1" ).arg( myFileName );
1232 return tr(
"ERROR: Failed to created default metadata file as %1. Check file permissions and retry." ).arg( myFileName );
1235 return tr(
"ERROR: Failed to created default style file as %1. Check file permissions and retry." ).arg( myFileName );
1241 QString qml = myDocument.toString();
1248 if ( myResult != SQLITE_OK )
1250 return tr(
"User database could not be opened." );
1253 QByteArray param0 = uri.toUtf8();
1254 QByteArray param1 = qml.toUtf8();
1260 mySql = QStringLiteral(
"create table if not exists tbl_metadata(metadata varchar primary key,qmd varchar)" );
1264 mySql = QStringLiteral(
"create table if not exists tbl_styles(style varchar primary key,qml varchar)" );
1268 statement = database.
prepare( mySql, myResult );
1269 if ( myResult == SQLITE_OK )
1271 if ( sqlite3_step( statement.get() ) != SQLITE_DONE )
1277 return tr(
"The metadata table could not be created." );
1280 return tr(
"The style table could not be created." );
1288 mySql = QStringLiteral(
"insert into tbl_metadata(metadata,qmd) values (?,?)" );
1292 mySql = QStringLiteral(
"insert into tbl_styles(style,qml) values (?,?)" );
1295 statement = database.
prepare( mySql, myResult );
1296 if ( myResult == SQLITE_OK )
1298 if ( sqlite3_bind_text( statement.get(), 1, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1299 sqlite3_bind_text( statement.get(), 2, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1300 sqlite3_step( statement.get() ) == SQLITE_DONE )
1306 myErrorMessage = tr(
"The metadata %1 was saved to database" ).arg( uri );
1310 myErrorMessage = tr(
"The style %1 was saved to database" ).arg( uri );
1322 mySql = QStringLiteral(
"update tbl_metadata set qmd=? where metadata=?" );
1326 mySql = QStringLiteral(
"update tbl_styles set qml=? where style=?" );
1329 statement = database.
prepare( mySql, myResult );
1330 if ( myResult == SQLITE_OK )
1332 if ( sqlite3_bind_text( statement.get(), 2, param0.data(), param0.length(), SQLITE_STATIC ) == SQLITE_OK &&
1333 sqlite3_bind_text( statement.get(), 1, param1.data(), param1.length(), SQLITE_STATIC ) == SQLITE_OK &&
1334 sqlite3_step( statement.get() ) == SQLITE_DONE )
1340 myErrorMessage = tr(
"The metadata %1 was updated in the database." ).arg( uri );
1344 myErrorMessage = tr(
"The style %1 was updated in the database." ).arg( uri );
1354 myErrorMessage = tr(
"The metadata %1 could not be updated in the database." ).arg( uri );
1358 myErrorMessage = tr(
"The style %1 could not be updated in the database." ).arg( uri );
1369 myErrorMessage = tr(
"The metadata %1 could not be inserted into database." ).arg( uri );
1373 myErrorMessage = tr(
"The style %1 could not be inserted into database." ).arg( uri );
1380 return myErrorMessage;
1390 QDomDocument myDocument = QDomDocument();
1392 QDomNode header = myDocument.createProcessingInstruction( QStringLiteral(
"xml" ), QStringLiteral(
"version=\"1.0\" encoding=\"UTF-8\"" ) );
1393 myDocument.appendChild( header );
1397 if ( !vlayer && !rlayer )
1399 errorMsg = tr(
"Could not save symbology because:\n%1" )
1400 .arg( tr(
"Only vector and raster layers are supported" ) );
1405 QDomElement root = myDocument.createElementNS( QStringLiteral(
"http://www.opengis.net/sld" ), QStringLiteral(
"StyledLayerDescriptor" ) );
1406 QDomElement layerNode;
1409 root.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.1.0" ) );
1410 root.setAttribute( QStringLiteral(
"xsi:schemaLocation" ), QStringLiteral(
"http://www.opengis.net/sld http://schemas.opengis.net/sld/1.1.0/StyledLayerDescriptor.xsd" ) );
1411 root.setAttribute( QStringLiteral(
"xmlns:ogc" ), QStringLiteral(
"http://www.opengis.net/ogc" ) );
1412 root.setAttribute( QStringLiteral(
"xmlns:se" ), QStringLiteral(
"http://www.opengis.net/se" ) );
1413 root.setAttribute( QStringLiteral(
"xmlns:xlink" ), QStringLiteral(
"http://www.w3.org/1999/xlink" ) );
1414 root.setAttribute( QStringLiteral(
"xmlns:xsi" ), QStringLiteral(
"http://www.w3.org/2001/XMLSchema-instance" ) );
1415 myDocument.appendChild( root );
1418 layerNode = myDocument.createElement( QStringLiteral(
"NamedLayer" ) );
1419 root.appendChild( layerNode );
1426 root.setAttribute( QStringLiteral(
"version" ), QStringLiteral(
"1.0.0" ) );
1427 root.setAttribute( QStringLiteral(
"xmlns:gml" ), QStringLiteral(
"http://www.opengis.net/gml" ) );
1428 root.setAttribute( QStringLiteral(
"xmlns:ogc" ), QStringLiteral(
"http://www.opengis.net/ogc" ) );
1429 root.setAttribute( QStringLiteral(
"xmlns:sld" ), QStringLiteral(
"http://www.opengis.net/sld" ) );
1430 myDocument.appendChild( root );
1433 layerNode = myDocument.createElement( QStringLiteral(
"UserLayer" ) );
1434 root.appendChild( layerNode );
1440 props[ QStringLiteral(
"scaleMinDenom" ) ] = QString::number( mMinScale );
1441 props[ QStringLiteral(
"scaleMaxDenom" ) ] = QString::number( mMaxScale );
1446 if ( !vlayer->
writeSld( layerNode, myDocument, errorMsg, props ) )
1448 errorMsg = tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1455 if ( !rlayer->writeSld( layerNode, myDocument, errorMsg, props ) )
1457 errorMsg = tr(
"Could not save symbology because:\n%1" ).arg( errorMsg );
1470 QDomDocument myDocument;
1472 if ( !errorMsg.isNull() )
1480 if ( mlayer->
providerType() == QLatin1String(
"ogr" ) )
1482 QStringList theURIParts = uri.split(
'|' );
1483 filename = theURIParts[0];
1485 else if ( mlayer->
providerType() == QLatin1String(
"gpx" ) )
1487 QStringList theURIParts = uri.split(
'?' );
1488 filename = theURIParts[0];
1490 else if ( mlayer->
providerType() == QLatin1String(
"delimitedtext" ) )
1492 filename = QUrl::fromEncoded( uri.toLatin1() ).toLocalFile();
1494 if ( filename.isEmpty() )
1502 QFileInfo myFileInfo( filename );
1503 if ( myFileInfo.exists() || filename.endsWith( QLatin1String(
".sld" ), Qt::CaseInsensitive ) )
1505 QFileInfo myDirInfo( myFileInfo.path() );
1506 if ( !myDirInfo.isWritable() )
1508 return tr(
"The directory containing your dataset needs to be writable!" );
1512 QString myFileName = myFileInfo.path() + QDir::separator() + myFileInfo.completeBaseName() +
".sld";
1514 QFile myFile( myFileName );
1515 if ( myFile.open( QFile::WriteOnly | QFile::Truncate ) )
1517 QTextStream myFileStream( &myFile );
1519 myDocument.save( myFileStream, 2 );
1522 return tr(
"Created default style file as %1" ).arg( myFileName );
1527 return tr(
"ERROR: Failed to created SLD style file as %1. Check file permissions and retry." ).arg( filename );
1534 QDomDocument myDocument;
1538 QString myErrorMessage;
1540 QFile myFile( uri );
1541 if ( myFile.open( QFile::ReadOnly ) )
1544 resultFlag = myDocument.setContent( &myFile,
true, &myErrorMessage, &line, &column );
1546 myErrorMessage = tr(
"%1 at line %2 column %3" ).arg( myErrorMessage ).arg( line ).arg( column );
1551 myErrorMessage = tr(
"Unable to open file %1" ).arg( uri );
1556 return myErrorMessage;
1560 QDomElement myRoot = myDocument.firstChildElement( QStringLiteral(
"StyledLayerDescriptor" ) );
1561 if ( myRoot.isNull() )
1563 myErrorMessage = QStringLiteral(
"Error: StyledLayerDescriptor element not found in %1" ).arg( uri );
1565 return myErrorMessage;
1570 QDomElement namedLayerElem = myRoot.firstChildElement( QStringLiteral(
"NamedLayer" ) );
1571 if ( namedLayerElem.isNull() )
1573 myErrorMessage = QStringLiteral(
"Info: NamedLayer element not found." );
1575 return myErrorMessage;
1579 resultFlag =
readSld( namedLayerElem, errorMsg );
1582 myErrorMessage = tr(
"Loading style file %1 failed because:\n%2" ).arg( uri, errorMsg );
1583 return myErrorMessage;
1592 Q_UNUSED( errorMessage );
1593 Q_UNUSED( context );
1594 Q_UNUSED( categories );
1603 Q_UNUSED( errorMessage );
1604 Q_UNUSED( context );
1605 Q_UNUSED( categories );
1611 Q_UNUSED( dataSource );
1612 Q_UNUSED( baseName );
1613 Q_UNUSED( provider );
1614 Q_UNUSED( options );
1615 Q_UNUSED( loadDefaultStyleFlag );
1625 QgsMapLayer::StyleCategories categories )
1630 QDomElement renderer3DElem = layerElement.firstChildElement( QStringLiteral(
"renderer-3d" ) );
1631 if ( !renderer3DElem.isNull() )
1633 QString type3D = renderer3DElem.attribute( QStringLiteral(
"type" ) );
1653 setScaleBasedVisibility( layerElement.attribute( QStringLiteral(
"hasScaleBasedVisibilityFlag" ) ).toInt() == 1 );
1654 if ( layerElement.hasAttribute( QStringLiteral(
"minimumScale" ) ) )
1657 setMaximumScale( layerElement.attribute( QStringLiteral(
"minimumScale" ) ).toDouble() );
1658 setMinimumScale( layerElement.attribute( QStringLiteral(
"maximumScale" ) ).toDouble() );
1662 setMaximumScale( layerElement.attribute( QStringLiteral(
"maxScale" ) ).toDouble() );
1663 setMinimumScale( layerElement.attribute( QStringLiteral(
"minScale" ) ).toDouble() );
1670 QDomElement flagsElem = layerElement.firstChildElement( QStringLiteral(
"flags" ) );
1671 LayerFlags
flags = mFlags;
1672 auto enumMap = qgsEnumMap<QgsMapLayer::LayerFlag>();
1673 for (
auto it = enumMap.constBegin(); it != enumMap.constEnd(); ++it )
1675 QDomNode flagNode = flagsElem.namedItem( it.value() );
1676 if ( flagNode.isNull() )
1678 bool flagValue = flagNode.toElement().text() ==
"1" ? true :
false;
1679 if ( flags.testFlag( it.key() ) && !flagValue )
1681 else if ( !flags.testFlag( it.key() ) && flagValue )
1695 return mUndoStackStyles;
1700 return mCustomProperties.
keys();
1705 mCustomProperties.
setValue( key, value );
1710 mCustomProperties = properties;
1715 return mCustomProperties.
value( value, defaultValue );
1720 mCustomProperties.
remove( key );
1747 if ( legend == mLegend )
1755 mLegend->setParent(
this );
1769 return mStyleManager;
1774 if ( renderer == m3DRenderer )
1778 m3DRenderer = renderer;
1819 static QList<const QgsMapLayer *> _depOutEdges(
const QgsMapLayer *vl,
const QgsMapLayer *that,
const QSet<QgsMapLayerDependency> &layers )
1821 QList<const QgsMapLayer *> lst;
1841 static bool _depHasCycleDFS(
const QgsMapLayer *n, QHash<const QgsMapLayer *, int> &mark,
const QgsMapLayer *that,
const QSet<QgsMapLayerDependency> &layers )
1843 if ( mark.value( n ) == 1 )
1845 if ( mark.value( n ) == 0 )
1848 Q_FOREACH (
const QgsMapLayer *m, _depOutEdges( n, that, layers ) )
1850 if ( _depHasCycleDFS( m, mark, that, layers ) )
1860 QHash<const QgsMapLayer *, int> marks;
1861 return _depHasCycleDFS(
this, marks,
this, layers );
1864 bool QgsMapLayer::isReadOnly()
const 1871 return mOriginalXmlProperties;
1891 QSet<QgsMapLayerDependency> deps;
1923 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.
Origin origin() const
Returns the dependency origin.
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.
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.
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.
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 null.
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 null.
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...
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
QgsMapLayer::LayerType type() const
Returns the type of the layer.
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.
QgsMapLayer(QgsMapLayer::LayerType type=VectorLayer, const QString &name=QString(), const QString &source=QString())
Constructor for QgsMapLayer.
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.
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.
LayerType
Types of layers that can be added to a map.
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.
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.
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.
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.
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).
QString layerId() const
Returns the ID of the layer this dependency depends on.
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.
QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
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.
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 repaine 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 password element from uris.
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.