|
QGIS API Documentation
master-6164ace
|
Reads and writes project states. More...
#include <qgsproject.h>
Collaboration diagram for QgsProject:Classes | |
| struct | Imp |
Signals | |
| void | layerLoaded (int i, int n) |
| emitted when a layer from a projects was read | |
| void | loadingLayer (QString) |
| void | oldProjectVersionWarning (QString) |
| emitted when an old project file is read. | |
| void | projectSaved () |
| emitted when the project file has been written and closed | |
| void | readMapLayer (QgsMapLayer *mapLayer, const QDomElement &layerNode) |
| Emitted, after the basic initialisation of a layer from the project file is done. | |
| void | readProject (const QDomDocument &) |
| emitted when project is being read | |
| void | snapSettingsChanged () |
| void | writeMapLayer (QgsMapLayer *mapLayer, QDomElement &layerElem, QDomDocument &doc) |
| Emitted, when a layer is being saved. | |
| void | writeProject (QDomDocument &) |
| emitted when project is being written | |
Public Member Functions | |
| ~QgsProject () | |
| void | clearProperties () |
| syntactic sugar for property lists | |
| bool | createEmbeddedLayer (const QString &layerId, const QString &projectFilePath, QList< QDomNode > &brokenNodes, QList< QPair< QgsVectorLayer *, QDomElement > > &vectorLayerList, bool saveFlag=true) |
| Creates a maplayer instance defined in an arbitrary project file. | |
| void | dumpProperties () const |
| dump out current project properties to stderr | |
| QStringList | entryList (const QString &scope, const QString &key) const |
| return keys with values -- do not return keys that contain other keys | |
| QString | error () const |
| Return error message from previous read/write. | |
| QString | homePath () const |
| Return project's home path. | |
| QString | layerIsEmbedded (const QString &id) const |
| Returns project file path if layer is embedded from other project file. | |
| bool | read (QDomNode &layerNode) |
| read the layer described in the associated Dom node | |
| QString | readPath (QString filename) const |
| turn filename read from the project file to an absolute path | |
| bool | removeEntry (const QString &scope, const QString &key) |
| remove the given key | |
| void | setBadLayerHandler (QgsProjectBadLayerHandler *handler) |
| Change handler for missing layers. | |
| void | setSnapSettingsForLayer (const QString &layerId, bool enabled, QgsSnapper::SnappingType type, QgsTolerance::UnitType unit, double tolerance, bool avoidIntersection) |
| Convenience function to set snap settings per layer. | |
| void | setTopologicalEditing (bool enabled) |
| Convenience function to set topological editing. | |
| bool | snapSettingsForLayer (const QString &layerId, bool &enabled, QgsSnapper::SnappingType &type, QgsTolerance::UnitType &units, double &tolerance, bool &avoidIntersection) const |
| Convenience function to query snap settings of a layer. | |
| QStringList | subkeyList (const QString &scope, const QString &key) const |
| return keys with keys -- do not return keys that contain only values | |
| bool | topologicalEditing () const |
| Convenience function to query topological editing status. | |
| QString | writePath (QString filename) const |
| prepare a filename to save it to the project file | |
| void | title (const QString &title) |
| Every project has an associated title string. | |
| const QString & | title () const |
| returns title | |
| bool | isDirty () const |
| the dirty flag is true if the project has been modified since the last write() | |
| void | dirty (bool b) |
| void | setFileName (const QString &name) |
| Every project has an associated file that contains its XML. | |
| QString | fileName () const |
| returns file name | |
| bool | read (const QFileInfo &file) |
| read project file | |
| bool | read () |
| presuming that the caller has already reset the map canvas, map registry, and legend | |
| bool | write (const QFileInfo &file) |
| write project file | |
| bool | write () |
| bool | writeEntry (const QString &scope, const QString &key, bool value) |
| bool | writeEntry (const QString &scope, const QString &key, double value) |
| bool | writeEntry (const QString &scope, const QString &key, int value) |
| bool | writeEntry (const QString &scope, const QString &key, const QString &value) |
| bool | writeEntry (const QString &scope, const QString &key, const QStringList &value) |
| QStringList | readListEntry (const QString &scope, const QString &key, QStringList def=QStringList(), bool *ok=0) const |
| key value accessors | |
| QString | readEntry (const QString &scope, const QString &key, const QString &def=QString::null, bool *ok=0) const |
| int | readNumEntry (const QString &scope, const QString &key, int def=0, bool *ok=0) const |
| double | readDoubleEntry (const QString &scope, const QString &key, double def=0, bool *ok=0) const |
| bool | readBoolEntry (const QString &scope, const QString &key, bool def=false, bool *ok=0) const |
Static Public Member Functions | |
| static QgsProject * | instance () |
| access to canonical QgsProject instance | |
Protected Member Functions | |
| bool | addLayer (const QDomElement &layerElem, QList< QDomNode > &brokenNodes, QList< QPair< QgsVectorLayer *, QDomElement > > &vectorLayerList) |
| void | clearError () |
| Clear error message. | |
| void | setError (QString errorMessage) |
| Set error message from read/write operation. | |
Private Member Functions | |
| QgsProject () | |
| QgsProject (QgsProject const &) | |
| QPair< bool, QList< QDomNode > > | _getMapLayers (QDomDocument const &doc) |
| Read map layers from project file. | |
| void | snapSettings (QStringList &layerIdList, QStringList &enabledList, QStringList &snapTypeList, QStringList &snapUnitList, QStringList &toleranceUnitList, QStringList &avoidIntersectionList) const |
Private Attributes | |
| std::auto_ptr< Imp > | imp_ |
| implementation handle | |
| QgsProjectBadLayerHandler * | mBadLayerHandler |
| QHash< QString, QPair< QString, bool > > | mEmbeddedLayers |
| Embeded layers which are defined in other projects. | |
| QString | mErrorMessage |
Static Private Attributes | |
| static QgsProject * | theProject_ |
Reads and writes project states.
Has two general kinds of state to make persistent. (I.e., to read and write.) First, Qgis proprietary information. Second plug-in information.
A singleton since there shall only be one active project at a time; and provides canonical location for plug-ins and main app to find/set properties.
Might want to consider moving from Singleton; i.e., allowing more than one project. Just as the GIMP can have simultaneous multiple images, perhaps qgis can one day have simultaneous multiple projects.
Definition at line 64 of file qgsproject.h.
Definition at line 349 of file qgsproject.cpp.
References mBadLayerHandler.
| QgsProject::QgsProject | ( | ) | [private] |
Definition at line 334 of file qgsproject.cpp.
References dirty(), and writeEntry().
Referenced by instance().
| QgsProject::QgsProject | ( | QgsProject const & | ) | [private] |
| QPair< bool, QList< QDomNode > > QgsProject::_getMapLayers | ( | QDomDocument const & | doc | ) | [private] |
Read map layers from project file.
QPair< bool, QList<QDomNode> >
<maplayer type="vector">
<layername>Hydrop</layername>
<datasource>/data/usgs/city_shp/hydrop.shp</datasource>
<zorder>0</zorder>
<provider>ogr</provider>
<singlesymbol>
<renderitem>
<value>blabla</value>
<symbol>
<outlinecolor red="85" green="0" blue="255" />
<outlinestyle>SolidLine</outlinestyle>
<outlinewidth>1</outlinewidth>
<fillcolor red="0" green="170" blue="255" />
<fillpattern>SolidPattern</fillpattern>
</symbol>
<label>blabla</label>
</renderitem>
</singlesymbol>
<label>0</label>
<labelattributes>
<label text="Label" field="" />
<family name="Sans Serif" field="" />
<size value="12" units="pt" field="" />
<bold on="0" field="" />
<italic on="0" field="" />
<underline on="0" field="" />
<color red="0" green="0" blue="0" field="" />
<x field="" />
<y field="" />
<offset units="pt" x="0" xfield="" y="0" yfield="" />
<angle value="0" field="" />
<alignment value="center" field="" />
</labelattributes>
</maplayer>
Definition at line 647 of file qgsproject.cpp.
References addLayer(), createEmbeddedLayer(), layerLoaded(), loadingLayer(), readPath(), and tr.
Referenced by read().
| bool QgsProject::addLayer | ( | const QDomElement & | layerElem, |
| QList< QDomNode > & | brokenNodes, | ||
| QList< QPair< QgsVectorLayer *, QDomElement > > & | vectorLayerList | ||
| ) | [protected] |
Definition at line 721 of file qgsproject.cpp.
References instance(), QgsMapLayer::isValid(), QgsDebugMsg, QgsMapLayer::readLayerXML(), readMapLayer(), and QgsVectorLayer::vectorJoins().
Referenced by _getMapLayers(), and read().
| void QgsProject::clearError | ( | ) | [protected] |
| void QgsProject::clearProperties | ( | ) |
syntactic sugar for property lists
extra properties, typically added by plug-ins
This allows for extra properties to be associated with projects. Think of it as a registry bound to a project.
Properties are arbitrary values keyed by a name and associated with a scope. The scope would presumably refer to your plug-in. E.g., "openmodeller".
E.g., open modeller might use:
"QgsProject::instance()->properties("openmodeller")["foo"].
removes all project properties
Definition at line 1083 of file qgsproject.cpp.
| bool QgsProject::createEmbeddedLayer | ( | const QString & | layerId, |
| const QString & | projectFilePath, | ||
| QList< QDomNode > & | brokenNodes, | ||
| QList< QPair< QgsVectorLayer *, QDomElement > > & | vectorLayerList, | ||
| bool | saveFlag = true |
||
| ) |
Creates a maplayer instance defined in an arbitrary project file.
Caller takes ownership
Referenced by _getMapLayers().
| void QgsProject::dirty | ( | bool | b | ) |
Definition at line 391 of file qgsproject.cpp.
References imp_.
Referenced by clearProperties(), QgsProject(), read(), removeEntry(), setFileName(), title(), write(), and writeEntry().
| void QgsProject::dumpProperties | ( | ) | const |
dump out current project properties to stderr
Definition at line 1344 of file qgsproject.cpp.
| QStringList QgsProject::entryList | ( | const QString & | scope, |
| const QString & | key | ||
| ) | const |
return keys with values -- do not return keys that contain other keys
Definition at line 1305 of file qgsproject.cpp.
References QgsPropertyKey::entryList(), findKey_(), and imp_.
| QString QgsProject::error | ( | ) | const |
Return error message from previous read/write.
| QString QgsProject::fileName | ( | ) | const |
returns file name
Definition at line 407 of file qgsproject.cpp.
References imp_.
Referenced by readPath().
| QString QgsProject::homePath | ( | ) | const |
Return project's home path.
Referenced by readPath(), and QgsBrowserModel::updateProjectHome().
| QgsProject * QgsProject::instance | ( | ) | [static] |
access to canonical QgsProject instance
Definition at line 358 of file qgsproject.cpp.
References QgsProject(), and theProject_.
Referenced by addLayer(), QgsGeometry::avoidIntersections(), QgsProject::Imp::clear(), QgsPalLabeling::clearEngineSettings(), QgsOfflineEditing::convertToOfflineProject(), QgsSymbolV2::defaultSymbol(), QgsMapToolIdentify::featureDerivedAttributes(), QgsProjectBadLayerGuiHandler::findMissingFile(), QgsMapToolIdentify::identify(), QgsComposerMap::initGridAnnotationFormatFromProject(), QgsOfflineEditing::isOfflineProject(), QgsPalLabeling::loadEngineSettings(), QgsMapLayer::loadNamedStyle(), QgsComposerScaleBar::mapWidth(), QgsOWSSourceSelect::on_mChangeCRSButton_clicked(), QgsOfflineEditing::openLoggingDb(), QgsAttributeDialog::QgsAttributeDialog(), QgsBrowserModel::QgsBrowserModel(), QgsCategorizedSymbolRendererV2Widget::QgsCategorizedSymbolRendererV2Widget(), QgsGraduatedSymbolRendererV2Widget::QgsGraduatedSymbolRendererV2Widget(), QgsMapCanvas::QgsMapCanvas(), QgsOWSSourceSelect::QgsOWSSourceSelect(), QgsSvgSelectorWidget::QgsSvgSelectorWidget(), QgsMapLayer::readLayerXML(), QgsVectorLayer::readSymbology(), QgsSvgAnnotationItem::readXML(), QgsComposerPicture::readXML(), QgsMapRenderer::render(), QgsPalLabeling::saveEngineSettings(), QgsMapCanvasSnapper::snapToBackgroundLayers(), QgsMapCanvasSnapper::snapToCurrentLayer(), QgsSymbolLayerV2Utils::symbolNameToPath(), QgsSymbolLayerV2Utils::symbolPathToName(), QgsOfflineEditing::synchronize(), QgsBrowserModel::updateProjectHome(), write(), QgsMapLayer::writeLayerXML(), QgsVectorLayer::writeSymbology(), QgsSvgAnnotationItem::writeXML(), and QgsComposerPicture::writeXML().
| bool QgsProject::isDirty | ( | ) | const |
the dirty flag is true if the project has been modified since the last write()
Definition at line 385 of file qgsproject.cpp.
References imp_.
| QString QgsProject::layerIsEmbedded | ( | const QString & | id | ) | const |
Returns project file path if layer is embedded from other project file.
Returns empty string if layer is not embedded
Referenced by write().
| void QgsProject::layerLoaded | ( | int | i, |
| int | n | ||
| ) | [signal] |
emitted when a layer from a projects was read
Referenced by _getMapLayers().
| void QgsProject::loadingLayer | ( | QString | ) | [signal] |
Referenced by _getMapLayers().
| void QgsProject::oldProjectVersionWarning | ( | QString | ) | [signal] |
emitted when an old project file is read.
Referenced by read().
| void QgsProject::projectSaved | ( | ) | [signal] |
emitted when the project file has been written and closed
Referenced by write().
| bool QgsProject::read | ( | const QFileInfo & | file | ) |
read project file
Please note that most of the contents were copied from qgsproject.
(Is that really desirable behavior? Maybe prompt to save before reading new one?)
Should we presume the file is opened elsewhere? Or do we open it ourselves?
XXX How to best get modify access to Qgis state? Actually we can finagle that by searching for qgisapp in object hiearchy.
Definition at line 779 of file qgsproject.cpp.
Referenced by QgsProjectBadLayerGuiHandler::findMissingFile().
| bool QgsProject::read | ( | ) |
presuming that the caller has already reset the map canvas, map registry, and legend
Shows a warning when an old project file is read.
Definition at line 791 of file qgsproject.cpp.
References _getMapLayers(), _getProperties(), _getTitle(), _getVersion(), clearError(), dirty(), dump_(), QgsProjectBadLayerHandler::handleBadLayers(), imp_, mBadLayerHandler, mEmbeddedLayers, oldProjectVersionWarning(), QGis::QGIS_VERSION, QgsDebugMsg, readProject(), setError(), QgsProjectVersion::text(), tr, and QgsLogger::warning().
Referenced by read().
| bool QgsProject::read | ( | QDomNode & | layerNode | ) |
read the layer described in the associated Dom node
| layerNode | represents a QgsProject Dom node that maps to a specific layer. |
QgsProject raises an exception when one of the QgsProject::read() implementations fails. Since the read()s are invoked from qgisapp, then qgisapp handles the exception. It prompts the user for the new location of the data, if any. If there is a new location, the Dom node associated with the layer has its datasource tag corrected. Then that node is passed to this member function to be re-opened.
Definition at line 918 of file qgsproject.cpp.
References addLayer().
| bool QgsProject::readBoolEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| bool | def = false, |
||
| bool * | ok = 0 |
||
| ) | const |
Definition at line 1266 of file qgsproject.cpp.
References findKey_(), and imp_.
Referenced by QgsPalLabeling::loadEngineSettings(), QgsSvgSelectorWidget::QgsSvgSelectorWidget(), and readPath().
| double QgsProject::readDoubleEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| double | def = 0, |
||
| bool * | ok = 0 |
||
| ) | const |
Definition at line 1236 of file qgsproject.cpp.
References findKey_(), and imp_.
| QString QgsProject::readEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| const QString & | def = QString::null, |
||
| bool * | ok = 0 |
||
| ) | const |
Definition at line 1176 of file qgsproject.cpp.
References findKey_(), and imp_.
Referenced by QgsSymbolV2::defaultSymbol(), QgsMapToolIdentify::featureDerivedAttributes(), QgsComposerMap::initGridAnnotationFormatFromProject(), QgsOfflineEditing::isOfflineProject(), QgsOWSSourceSelect::on_mChangeCRSButton_clicked(), QgsOfflineEditing::openLoggingDb(), QgsCategorizedSymbolRendererV2Widget::QgsCategorizedSymbolRendererV2Widget(), and QgsGraduatedSymbolRendererV2Widget::QgsGraduatedSymbolRendererV2Widget().
| QStringList QgsProject::readListEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| QStringList | def = QStringList(), |
||
| bool * | ok = 0 |
||
| ) | const |
key value accessors
keys would be the familiar QSettings-like '/' delimited entries, implying a hierarchy of keys and corresponding values
Definition at line 1145 of file qgsproject.cpp.
References findKey_(), and imp_.
Referenced by QgsGeometry::avoidIntersections(), QgsMapToolIdentify::identify(), and QgsMapCanvasSnapper::snapToBackgroundLayers().
| void QgsProject::readMapLayer | ( | QgsMapLayer * | mapLayer, |
| const QDomElement & | layerNode | ||
| ) | [signal] |
Emitted, after the basic initialisation of a layer from the project file is done.
You can use this signal to read additional information from the project file.
| mapLayer | The map layer which is being initialized |
| layerNode | The layer node from the project file |
Referenced by addLayer().
| int QgsProject::readNumEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| int | def = 0, |
||
| bool * | ok = 0 |
||
| ) | const |
Definition at line 1207 of file qgsproject.cpp.
References findKey_(), and imp_.
Referenced by QgsPalLabeling::loadEngineSettings(), QgsOWSSourceSelect::QgsOWSSourceSelect(), QgsMapRenderer::render(), QgsMapCanvasSnapper::snapToBackgroundLayers(), and QgsMapCanvasSnapper::snapToCurrentLayer().
| QString QgsProject::readPath | ( | QString | filename | ) | const |
turn filename read from the project file to an absolute path
Definition at line 1351 of file qgsproject.cpp.
References fileName(), homePath(), and readBoolEntry().
Referenced by _getMapLayers(), QgsMapLayer::readLayerXML(), QgsVectorLayer::readSymbology(), QgsSvgAnnotationItem::readXML(), and QgsComposerPicture::readXML().
| void QgsProject::readProject | ( | const QDomDocument & | ) | [signal] |
emitted when project is being read
Referenced by read().
| bool QgsProject::removeEntry | ( | const QString & | scope, |
| const QString & | key | ||
| ) |
remove the given key
Definition at line 1294 of file qgsproject.cpp.
References dirty(), findKey_(), imp_, and removeKey_().
Referenced by QgsPalLabeling::clearEngineSettings(), and QgsOfflineEditing::synchronize().
| void QgsProject::setBadLayerHandler | ( | QgsProjectBadLayerHandler * | handler | ) |
Change handler for missing layers.
Deletes old handler and takes ownership of the new one.
| void QgsProject::setError | ( | QString | errorMessage | ) | [protected] |
| void QgsProject::setFileName | ( | const QString & | name | ) |
Every project has an associated file that contains its XML.
Definition at line 398 of file qgsproject.cpp.
| void QgsProject::setSnapSettingsForLayer | ( | const QString & | layerId, |
| bool | enabled, | ||
| QgsSnapper::SnappingType | type, | ||
| QgsTolerance::UnitType | unit, | ||
| double | tolerance, | ||
| bool | avoidIntersection | ||
| ) |
Convenience function to set snap settings per layer.
| void QgsProject::setTopologicalEditing | ( | bool | enabled | ) |
Convenience function to set topological editing.
| void QgsProject::snapSettings | ( | QStringList & | layerIdList, |
| QStringList & | enabledList, | ||
| QStringList & | snapTypeList, | ||
| QStringList & | snapUnitList, | ||
| QStringList & | toleranceUnitList, | ||
| QStringList & | avoidIntersectionList | ||
| ) | const [private] |
| void QgsProject::snapSettingsChanged | ( | ) | [signal] |
| bool QgsProject::snapSettingsForLayer | ( | const QString & | layerId, |
| bool & | enabled, | ||
| QgsSnapper::SnappingType & | type, | ||
| QgsTolerance::UnitType & | units, | ||
| double & | tolerance, | ||
| bool & | avoidIntersection | ||
| ) | const |
Convenience function to query snap settings of a layer.
| QStringList QgsProject::subkeyList | ( | const QString & | scope, |
| const QString & | key | ||
| ) | const |
return keys with keys -- do not return keys that contain only values
Definition at line 1324 of file qgsproject.cpp.
References findKey_(), imp_, and QgsPropertyKey::subkeyList().
| void QgsProject::title | ( | const QString & | title | ) |
Every project has an associated title string.
Definition at line 371 of file qgsproject.cpp.
References dirty(), imp_, and title().
Referenced by QgsOfflineEditing::convertToOfflineProject(), and QgsOfflineEditing::synchronize().
| QString const & QgsProject::title | ( | ) | const |
| bool QgsProject::topologicalEditing | ( | ) | const |
Convenience function to query topological editing status.
| bool QgsProject::write | ( | const QFileInfo & | file | ) |
write project file
XXX How to best get read access to Qgis state? Actually we can finagle that by searching for qgisapp in object hiearchy.
Definition at line 927 of file qgsproject.cpp.
| bool QgsProject::write | ( | ) |
Definition at line 935 of file qgsproject.cpp.
References clearError(), dirty(), dump_(), QgsMapLayer::id(), imp_, instance(), layerIsEmbedded(), mEmbeddedLayers, projectSaved(), QGis::QGIS_VERSION, QgsDebugMsg, setError(), title(), tr, QgsMapLayer::writeLayerXML(), writeMapLayer(), writePath(), and writeProject().
Referenced by write().
| bool QgsProject::writeEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| bool | value | ||
| ) |
Definition at line 1095 of file qgsproject.cpp.
References addKey_(), dirty(), and imp_.
Referenced by QgsProject::Imp::clear(), QgsOfflineEditing::convertToOfflineProject(), QgsProject(), and QgsPalLabeling::saveEngineSettings().
| bool QgsProject::writeEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| double | value | ||
| ) |
Definition at line 1104 of file qgsproject.cpp.
| bool QgsProject::writeEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| int | value | ||
| ) |
Definition at line 1114 of file qgsproject.cpp.
| bool QgsProject::writeEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| const QString & | value | ||
| ) |
Definition at line 1123 of file qgsproject.cpp.
| bool QgsProject::writeEntry | ( | const QString & | scope, |
| const QString & | key, | ||
| const QStringList & | value | ||
| ) |
Definition at line 1133 of file qgsproject.cpp.
| void QgsProject::writeMapLayer | ( | QgsMapLayer * | mapLayer, |
| QDomElement & | layerElem, | ||
| QDomDocument & | doc | ||
| ) | [signal] |
Emitted, when a layer is being saved.
You can use this method to save additional information to the layer.
| mapLayer | The map layer which is being initialized |
| layerElem | The layer element from the project file |
| doc | The document |
Referenced by write().
| QString QgsProject::writePath | ( | QString | filename | ) | const |
prepare a filename to save it to the project file
Referenced by QgsSymbolLayerV2Utils::symbolPathToName(), write(), and QgsMapLayer::writeLayerXML().
| void QgsProject::writeProject | ( | QDomDocument & | ) | [signal] |
emitted when project is being written
Referenced by write().
std::auto_ptr<Imp> QgsProject::imp_ [private] |
implementation handle
Definition at line 380 of file qgsproject.h.
Referenced by clearProperties(), dirty(), dumpProperties(), entryList(), fileName(), isDirty(), read(), readBoolEntry(), readDoubleEntry(), readEntry(), readListEntry(), readNumEntry(), removeEntry(), setFileName(), subkeyList(), title(), write(), and writeEntry().
Definition at line 391 of file qgsproject.h.
Referenced by read(), and ~QgsProject().
QHash< QString, QPair< QString, bool> > QgsProject::mEmbeddedLayers [private] |
Embeded layers which are defined in other projects.
Key: layer id, value: pair< project file path, save layer yes / no (e.g. if the layer is part of an embedded group, loading/saving is done by the legend) If the project file path is empty, QgsProject is going to ignore the layer for saving (e.g. because it is part and managed by an embedded group)
Definition at line 396 of file qgsproject.h.
QString QgsProject::mErrorMessage [private] |
Definition at line 389 of file qgsproject.h.
QgsProject * QgsProject::theProject_ [static, private] |
Definition at line 385 of file qgsproject.h.
Referenced by instance().