16 #ifndef QGSLAYERTREEGROUP_H
17 #define QGSLAYERTREEGROUP_H
19 #include "qgis_core.h"
51 QString
name()
const override;
56 void setName(
const QString &n )
override;
81 void insertChildNodes(
int index,
const QList<QgsLayerTreeNode *> &nodes
SIP_TRANSFER );
106 void removeChildren(
int from,
int count );
111 void removeChildrenGroupWithoutLayers();
116 void removeAllChildren();
132 QList<QgsLayerTreeLayer *> findLayers()
const;
137 QStringList findLayerIds()
const;
147 QList<QgsLayerTreeGroup *> findGroups(
bool recursive =
false )
const;
176 QString
dump()
const override;
198 bool isMutuallyExclusive()
const;
206 void setIsMutuallyExclusive(
bool enabled,
int initialChildIndex = -1 );
217 void updateChildVisibilityMutuallyExclusive();
221 bool mChangingChildVisibility =
false;
224 bool mMutuallyExclusive =
false;
230 int mMutuallyExclusiveChildIndex = -1;
Layer tree group node serves as a container for layers and further groups.
Layer tree node points to a map layer.
This class is a base class for nodes in a layer tree.
virtual void setName(const QString &name)=0
Set name of the node.
virtual void makeOrphan()
Sets parent to nullptr and disconnects all external and forwarded signals.
virtual QString dump() const =0
Returns string with layer tree structure. For debug purposes only.
virtual void writeXml(QDomElement &parentElement, const QgsReadWriteContext &context)=0
Write layer tree to XML.
static QgsLayerTreeNode * readXml(QDomElement &element, const QgsReadWriteContext &context)
Read layer tree from XML.
virtual QgsLayerTreeNode * clone() const =0
Create a copy of the node. Returns new instance.
virtual QString name() const =0
Returns name of the node.
virtual void setItemVisibilityCheckedRecursive(bool checked)
Check or uncheck a node and all its children (taking into account exclusion rules)
virtual void resolveReferences(const QgsProject *project, bool looseMatching=false)=0
Turn textual references to layers into map layer object from project.
Base class for all map layer types.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
The class is used as a container of context for various read/write operations on other objects.