QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
Static Public Member Functions | List of all members
QgsLayerTreeUtils Class Reference

Assorted functions for dealing with layer trees. More...

#include <qgslayertreeutils.h>

Static Public Member Functions

static Qt::CheckState checkStateFromXml (const QString &txt)
 Convert QString to Qt::CheckState. More...
 
static QString checkStateToXml (Qt::CheckState state)
 Convert Qt::CheckState to QString. More...
 
static QSet< QgsMapLayer * > collectMapLayersRecursive (const QList< QgsLayerTreeNode *> &nodes)
 Returns map layers from the given list of layer tree nodes. More...
 
static int countMapLayerInTree (QgsLayerTreeNode *tree, QgsMapLayer *layer)
 Returns how many occurrences of a map layer are there in a layer tree. More...
 
static QgsLayerTreeGroupfirstGroupWithoutCustomProperty (QgsLayerTreeGroup *group, const QString &property)
 Returns the first parent which doesn't have the given custom property or the group itself if it doesn't hold the property. More...
 
static bool hasLegendFilterExpression (const QgsLayerTreeGroup &group)
 Test if one of the layers in a group has an expression filter. More...
 
static QgsLayerTreeLayerinsertLayerBelow (QgsLayerTreeGroup *group, const QgsMapLayer *refLayer, QgsMapLayer *layerToInsert)
 Insert a QgsMapLayer just below another one. More...
 
static QStringList invisibleLayerList (QgsLayerTreeNode *node)
 Gets invisible layers. More...
 
static bool layersEditable (const QList< QgsLayerTreeLayer *> &layerNodes)
 Returns true if any of the layers is editable. More...
 
static bool layersModified (const QList< QgsLayerTreeLayer *> &layerNodes)
 Returns true if any of the layers is modified. More...
 
static QString legendFilterByExpression (const QgsLayerTreeLayer &layer, bool *enabled=nullptr)
 Returns the expression filter of a legend layer. More...
 
static bool readOldLegend (QgsLayerTreeGroup *root, const QDomElement &legendElem)
 Try to load layer tree from. More...
 
static bool readOldLegendLayerOrder (const QDomElement &legendElem, bool &hasCustomOrder, QStringList &order)
 Try to load custom layer order from. More...
 
static void removeInvalidLayers (QgsLayerTreeGroup *group)
 Removes layer nodes that refer to invalid layers. More...
 
static void replaceChildrenOfEmbeddedGroups (QgsLayerTreeGroup *group)
 Remove subtree of embedded groups and replaces it with a custom property embedded-visible-layers. More...
 
static void setLegendFilterByExpression (QgsLayerTreeLayer &layer, const QString &expr, bool enabled=true)
 Sets the expression filter of a legend layer. More...
 
static void storeOriginalLayersProperties (QgsLayerTreeGroup *group, const QDomDocument *doc)
 Stores in a layer's originalXmlProperties the layer properties information. More...
 
static void updateEmbeddedGroupsProjectPath (QgsLayerTreeGroup *group, const QgsProject *project)
 Updates an embedded group from a project. More...
 
static QDomElement writeOldLegend (QDomDocument &doc, QgsLayerTreeGroup *root, bool hasCustomOrder, const QList< QgsMapLayer *> &order)
 Returns. More...
 

Detailed Description

Assorted functions for dealing with layer trees.

Since
QGIS 2.4

Definition at line 41 of file qgslayertreeutils.h.

Member Function Documentation

◆ checkStateFromXml()

Qt::CheckState QgsLayerTreeUtils::checkStateFromXml ( const QString &  txt)
static

Convert QString to Qt::CheckState.

Definition at line 197 of file qgslayertreeutils.cpp.

◆ checkStateToXml()

QString QgsLayerTreeUtils::checkStateToXml ( Qt::CheckState  state)
static

Convert Qt::CheckState to QString.

Definition at line 183 of file qgslayertreeutils.cpp.

◆ collectMapLayersRecursive()

QSet< QgsMapLayer * > QgsLayerTreeUtils::collectMapLayersRecursive ( const QList< QgsLayerTreeNode *> &  nodes)
static

Returns map layers from the given list of layer tree nodes.

Also recursively visits child nodes of groups.

Since
QGIS 3.4

Definition at line 493 of file qgslayertreeutils.cpp.

◆ countMapLayerInTree()

int QgsLayerTreeUtils::countMapLayerInTree ( QgsLayerTreeNode tree,
QgsMapLayer layer 
)
static

Returns how many occurrences of a map layer are there in a layer tree.

In normal situations there is at most one occurrence, but sometimes there may be temporarily more: for example, during drag&drop, upon drop a new layer node is created while the original dragged node is still in the tree, resulting in two occurrences.

This is useful when deciding whether to start or stop listening to a signal of a map layer within a layer tree and only connecting/disconnecting when there is only one occurrence of that layer.

Since
QGIS 3.4

Definition at line 500 of file qgslayertreeutils.cpp.

◆ firstGroupWithoutCustomProperty()

QgsLayerTreeGroup * QgsLayerTreeUtils::firstGroupWithoutCustomProperty ( QgsLayerTreeGroup group,
const QString &  property 
)
static

Returns the first parent which doesn't have the given custom property or the group itself if it doesn't hold the property.

Parameters
groupthe layer tree group
propertythe property
Since
QGIS 3.8

Definition at line 516 of file qgslayertreeutils.cpp.

◆ hasLegendFilterExpression()

bool QgsLayerTreeUtils::hasLegendFilterExpression ( const QgsLayerTreeGroup group)
static

Test if one of the layers in a group has an expression filter.

Definition at line 439 of file qgslayertreeutils.cpp.

◆ insertLayerBelow()

QgsLayerTreeLayer * QgsLayerTreeUtils::insertLayerBelow ( QgsLayerTreeGroup group,
const QgsMapLayer refLayer,
QgsMapLayer layerToInsert 
)
static

Insert a QgsMapLayer just below another one.

Parameters
groupthe tree group where layers are (can be the root group)
refLayerthe reference layer
layerToInsertthe new layer to insert just below the reference layer
Returns
the new tree layer

Definition at line 454 of file qgslayertreeutils.cpp.

◆ invisibleLayerList()

QStringList QgsLayerTreeUtils::invisibleLayerList ( QgsLayerTreeNode node)
static

Gets invisible layers.

Definition at line 363 of file qgslayertreeutils.cpp.

◆ layersEditable()

bool QgsLayerTreeUtils::layersEditable ( const QList< QgsLayerTreeLayer *> &  layerNodes)
static

Returns true if any of the layers is editable.

Definition at line 265 of file qgslayertreeutils.cpp.

◆ layersModified()

bool QgsLayerTreeUtils::layersModified ( const QList< QgsLayerTreeLayer *> &  layerNodes)
static

Returns true if any of the layers is modified.

Definition at line 280 of file qgslayertreeutils.cpp.

◆ legendFilterByExpression()

QString QgsLayerTreeUtils::legendFilterByExpression ( const QgsLayerTreeLayer layer,
bool *  enabled = nullptr 
)
static

Returns the expression filter of a legend layer.

Definition at line 432 of file qgslayertreeutils.cpp.

◆ readOldLegend()

bool QgsLayerTreeUtils::readOldLegend ( QgsLayerTreeGroup root,
const QDomElement &  legendElem 
)
static

Try to load layer tree from.

<legend> 

tag from project files from QGIS 2.2 and below

Definition at line 28 of file qgslayertreeutils.cpp.

◆ readOldLegendLayerOrder()

bool QgsLayerTreeUtils::readOldLegendLayerOrder ( const QDomElement &  legendElem,
bool &  hasCustomOrder,
QStringList &  order 
)
static

Try to load custom layer order from.

<legend> 

tag from project files from QGIS 2.2 and below

Definition at line 80 of file qgslayertreeutils.cpp.

◆ removeInvalidLayers()

void QgsLayerTreeUtils::removeInvalidLayers ( QgsLayerTreeGroup group)
static

Removes layer nodes that refer to invalid layers.

Definition at line 295 of file qgslayertreeutils.cpp.

◆ replaceChildrenOfEmbeddedGroups()

void QgsLayerTreeUtils::replaceChildrenOfEmbeddedGroups ( QgsLayerTreeGroup group)
static

Remove subtree of embedded groups and replaces it with a custom property embedded-visible-layers.

Definition at line 386 of file qgslayertreeutils.cpp.

◆ setLegendFilterByExpression()

void QgsLayerTreeUtils::setLegendFilterByExpression ( QgsLayerTreeLayer layer,
const QString &  expr,
bool  enabled = true 
)
static

Sets the expression filter of a legend layer.

Definition at line 426 of file qgslayertreeutils.cpp.

◆ storeOriginalLayersProperties()

void QgsLayerTreeUtils::storeOriginalLayersProperties ( QgsLayerTreeGroup group,
const QDomDocument *  doc 
)
static

Stores in a layer's originalXmlProperties the layer properties information.

Since
3.6

Definition at line 315 of file qgslayertreeutils.cpp.

◆ updateEmbeddedGroupsProjectPath()

void QgsLayerTreeUtils::updateEmbeddedGroupsProjectPath ( QgsLayerTreeGroup group,
const QgsProject project 
)
static

Updates an embedded group from a project.

Definition at line 407 of file qgslayertreeutils.cpp.

◆ writeOldLegend()

QDomElement QgsLayerTreeUtils::writeOldLegend ( QDomDocument &  doc,
QgsLayerTreeGroup root,
bool  hasCustomOrder,
const QList< QgsMapLayer *> &  order 
)
static

Returns.

<legend> 

tag used in QGIS 2.2 and below

Definition at line 172 of file qgslayertreeutils.cpp.


The documentation for this class was generated from the following files: