QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
|
Go to the documentation of this file.
17 #include <QTextStream>
40 : QAbstractItemModel( parent )
41 , mRootNode( rootNode )
42 , mFlags( ShowLegend | AllowLegendChangeState | DeferredLegendInvalidation )
43 , mAutoCollapseLegendNodesCount( -1 )
44 , mLegendFilterByScale( 0 )
45 , mLegendFilterUsesExtent( false )
46 , mLegendMapViewMupp( 0 )
47 , mLegendMapViewDpi( 0 )
48 , mLegendMapViewScale( 0 )
65 if ( !
index.isValid() )
68 QObject *obj =
reinterpret_cast<QObject *
>(
index.internalPointer() );
69 return qobject_cast<QgsLayerTreeNode *>( obj );
103 return QModelIndex();
110 return QModelIndex();
117 return createIndex( row, column,
static_cast<QObject *
>( n->
children().at( row ) ) );
123 if ( !child.isValid() )
124 return QModelIndex();
137 return QModelIndex();
145 Q_ASSERT( parentNode );
148 if ( !grandParentNode )
149 return QModelIndex();
151 int row = grandParentNode->
children().indexOf( parentNode );
152 Q_ASSERT( row >= 0 );
154 return createIndex( row, 0,
static_cast<QObject *
>( parentNode ) );
167 if ( role == Qt::DisplayRole || role == Qt::EditRole )
175 QString name = nodeLayer->
name();
176 if ( nodeLayer->
customProperty( QStringLiteral(
"showFeatureCount" ), 0 ).toInt() && role == Qt::DisplayRole )
180 name += QStringLiteral(
" [%1]" ).arg( vlayer->
featureCount() );
185 else if ( role == Qt::DecorationRole &&
index.column() == 0 )
199 switch ( layer->
type() )
243 QPainter painter( &pixmap );
247 icon = QIcon( pixmap );
253 else if ( role == Qt::CheckStateRole )
277 f.setUnderline(
true );
283 f.setItalic( !f.italic() );
290 QBrush brush( qApp->palette().color( QPalette::Text ), Qt::SolidPattern );
296 QColor fadedTextColor = brush.color();
297 fadedTextColor.setAlpha( 128 );
298 brush.setColor( fadedTextColor );
303 else if ( role == Qt::ToolTipRole )
310 !layer->
title().isEmpty() ? layer->title() :
311 !layer->shortName().isEmpty() ? layer->shortName() :
314 title =
"<b>" + title.toHtmlEscaped() +
"</b>";
316 if ( layer->isSpatial() && layer->crs().isValid() )
318 if (
QgsVectorLayer *vl = qobject_cast<QgsVectorLayer *>( layer ) )
321 title += tr(
" (%1)" ).arg( layer->crs().authid() ).toHtmlEscaped();
327 if ( !layer->abstract().isEmpty() )
330 const QStringList abstractLines = layer->abstract().split(
'\n' );
331 for (
const auto &l : abstractLines )
333 parts << l.toHtmlEscaped();
338 QString source( layer->publicSource() );
339 if ( source.size() > 1024 )
341 source = source.left( 1023 ) + QString( QChar( 0x2026 ) );
344 parts <<
"<i>" + source.toHtmlEscaped() +
"</i>";
346 return parts.join( QLatin1String(
"<br/>" ) );
357 if ( !
index.isValid() )
359 Qt::ItemFlags rootFlags = Qt::ItemFlags();
361 rootFlags |= Qt::ItemIsDropEnabled;
368 Qt::ItemFlags f = Qt::ItemIsEnabled | Qt::ItemIsSelectable;
371 f |= Qt::ItemIsEditable;
374 bool isEmbedded = node->
customProperty( QStringLiteral(
"embedded" ) ).toInt();
379 if ( !isEmbedded || ( isEmbedded && node->
parent() && !node->
parent()->
customProperty( QStringLiteral(
"embedded" ) ).toInt() ) )
380 f |= Qt::ItemIsDragEnabled;
384 f |= Qt::ItemIsUserCheckable;
387 f |= Qt::ItemIsDropEnabled;
399 bool res = sym->
setData( value, role );
407 return QAbstractItemModel::setData(
index, value, role );
409 if ( role == Qt::CheckStateRole )
414 bool checked =
static_cast< Qt::CheckState
>( value.toInt() ) == Qt::Checked;
415 if ( checked && node->
children().isEmpty() )
435 else if ( role == Qt::EditRole )
443 layer->
setName( value.toString() );
453 return QAbstractItemModel::setData(
index, value, role );
458 if ( !node || !node->
parent() )
459 return QModelIndex();
464 Q_ASSERT( row >= 0 );
465 return index( row, 0, parentIndex );
474 if ( child->
parent() == node )
477 return _isChildOfNode( child->
parent(), node );
480 static bool _isChildOfNodes(
QgsLayerTreeNode *child,
const QList<QgsLayerTreeNode *> &nodes )
484 if ( _isChildOfNode( child, n ) )
494 QList<QgsLayerTreeNode *> nodes;
495 const auto constList = list;
496 for (
const QModelIndex &
index : constList )
509 QList<QgsLayerTreeNode *> nodesFinal;
512 if ( !_isChildOfNodes( node, nodes ) )
543 emit dataChanged( idx, idx );
547 if ( oldNodeCount > 0 )
549 beginRemoveRows( idx, 0, oldNodeCount - 1 );
572 if ( oldIndex.isValid() )
573 emit dataChanged( oldIndex, oldIndex );
642 if ( useExpressions )
649 if ( enabled && !expr.isEmpty() )
651 exprs[ nodeLayer->layerId()] = expr;
656 if ( useExpressions && !useExtent && !polygonValid )
701 if ( scale != previousScale )
730 beginInsertRows(
node2index( node ), indexFrom, indexTo );
733 static QList<QgsLayerTreeLayer *> _layerNodesInSubtree(
QgsLayerTreeNode *node,
int indexFrom,
int indexTo )
735 QList<QgsLayerTreeNode *> children = node->
children();
736 QList<QgsLayerTreeLayer *> newLayerNodes;
737 for (
int i = indexFrom; i <= indexTo; ++i )
745 return newLayerNodes;
754 const auto subNodes = _layerNodesInSubtree( node, indexFrom, indexTo );
763 beginRemoveRows(
node2index( node ), indexFrom, indexTo );
766 const auto subNodes = _layerNodesInSubtree( node, indexFrom, indexTo );
831 QgsMapLayer *layer = qobject_cast<QgsMapLayer *>( sender() );
844 QgsMapLayer *layer = qobject_cast<QgsMapLayer *>( sender() );
855 if ( nodeLayer->
customProperty( QStringLiteral(
"showFeatureCount" ) ).toInt() )
867 if (
index.isValid() )
871 void QgsLayerTreeModel::legendNodeSizeChanged()
878 if (
index.isValid() )
879 emit dataChanged(
index,
index, QVector<int> { Qt::SizeHintRole } );
885 if ( !nodeLayer->
layer() )
927 const auto constChildren = group->
children();
945 disconnect( nodeLayer,
nullptr,
this,
nullptr );
947 if ( !nodeLayer->
layer() )
958 disconnect( nodeLayer->
layer(),
nullptr,
this,
nullptr );
964 const auto constChildren = parentGroup->
children();
976 const auto constChildren = parentGroup->
children();
1004 disconnect(
mRootNode,
nullptr,
this,
nullptr );
1015 int count = node->
children().count();
1018 emit dataChanged(
index( 0, 0, idx ),
index( count - 1, 0, idx ) );
1019 for (
int i = 0; i < count; ++i )
1035 emit dataChanged( idx, idx, QVector<int>() << Qt::FontRole << Qt::ForegroundRole );
1038 int count = node->
children().count();
1039 for (
int i = 0; i < count; ++i )
1045 return Qt::CopyAction | Qt::MoveAction;
1051 types << QStringLiteral(
"application/qgis.layertreemodeldata" );
1059 QModelIndexList sortedIndexes = indexes;
1060 std::sort( sortedIndexes.begin(), sortedIndexes.end(), std::less<QModelIndex>() );
1062 QList<QgsLayerTreeNode *> nodesFinal =
indexes2nodes( sortedIndexes,
true );
1064 if ( nodesFinal.isEmpty() )
1067 QMimeData *
mimeData =
new QMimeData();
1069 QDomDocument layerTreeDoc;
1070 QDomElement rootLayerTreeElem = layerTreeDoc.createElement( QStringLiteral(
"layer_tree_model_data" ) );
1076 layerTreeDoc.appendChild( rootLayerTreeElem );
1078 QString errorMessage;
1080 QDomDocument layerDefinitionsDoc( QStringLiteral(
"qgis-layer-definition" ) );
1083 QString txt = layerDefinitionsDoc.toString();
1085 mimeData->setData( QStringLiteral(
"application/qgis.layertreemodeldata" ), layerTreeDoc.toString().toUtf8() );
1086 mimeData->setData( QStringLiteral(
"application/qgis.application.pid" ), QString::number( QCoreApplication::applicationPid() ).toUtf8() );
1087 mimeData->setData( QStringLiteral(
"application/qgis.layertree.layerdefinitions" ), txt.toUtf8() );
1095 if ( action == Qt::IgnoreAction )
1098 if ( !
data->hasFormat( QStringLiteral(
"application/qgis.layertreemodeldata" ) ) )
1108 if (
parent.isValid() && row == -1 )
1114 qint64 qgisPid =
data->data( QStringLiteral(
"application/qgis.application.pid" ) ).toInt( &ok );
1116 if ( ok && qgisPid != QCoreApplication::applicationPid() )
1118 QByteArray encodedLayerDefinitionData =
data->data( QStringLiteral(
"application/qgis.layertree.layerdefinitions" ) );
1119 QDomDocument layerDefinitionDoc;
1120 if ( !layerDefinitionDoc.setContent( QString::fromUtf8( encodedLayerDefinitionData ) ) )
1123 QString errorMessage;
1125 emit
messageEmitted( tr(
"New layers added from another QGIS instance" ) );
1129 QByteArray encodedLayerTreeData =
data->data( QStringLiteral(
"application/qgis.layertreemodeldata" ) );
1131 QDomDocument layerTreeDoc;
1132 if ( !layerTreeDoc.setContent( QString::fromUtf8( encodedLayerTreeData ) ) )
1135 QDomElement rootLayerTreeElem = layerTreeDoc.documentElement();
1136 if ( rootLayerTreeElem.tagName() != QLatin1String(
"layer_tree_model_data" ) )
1139 QList<QgsLayerTreeNode *> nodes;
1141 QDomElement elem = rootLayerTreeElem.firstChildElement();
1142 while ( !elem.isNull() )
1148 elem = elem.nextSiblingElement();
1151 if ( nodes.isEmpty() )
1190 return mFlags.testFlag( f );
1200 QList<QgsLayerTreeModelLegendNode *> filtered;
1220 if (
QgsVectorLayer *vl = qobject_cast<QgsVectorLayer *>( node->layerNode()->layer() ) )
1250 const auto constMLegend =
mLegend;
1253 qDeleteAll(
data.originalNodes );
1262 if (
mLegend.contains( nodeLayer ) )
1264 qDeleteAll(
mLegend[nodeLayer].originalNodes );
1265 delete mLegend[nodeLayer].tree;
1273 if ( !nodeL || !nodeL->
layer() )
1293 int widgetsCount = ml->
customProperty( QStringLiteral(
"embeddedWidgets/count" ), 0 ).toInt();
1294 while ( widgetsCount > 0 )
1296 lstNew.insert( 0,
new EmbeddedWidgetLegendNode( nodeL ) );
1301 QList<QgsLayerTreeModelLegendNode *> filteredLstNew =
filterLegendNodes( lstNew );
1303 const auto constLstNew = lstNew;
1306 n->setParent(
this );
1315 const auto constFilteredLstNew = filteredLstNew;
1332 int count = legendTree ? legendTree->
children[
nullptr].count() : filteredLstNew.count();
1334 if ( !filteredLstNew.isEmpty() )
1335 beginInsertRows(
node2index( nodeL ), 0, count - 1 );
1338 data.originalNodes = lstNew;
1339 data.activeNodes = filteredLstNew;
1340 data.embeddedNodeInParent = embeddedNode;
1341 data.tree = legendTree;
1345 if ( !filteredLstNew.isEmpty() )
1358 bool hasParentKeys =
false;
1363 hasParentKeys =
true;
1367 if ( !hasParentKeys )
1371 QHash<QString, QgsLayerTreeModelLegendNode *> rule2node;
1372 rule2node[QString()] =
nullptr;
1376 if ( ruleKey.isEmpty() )
1378 if ( rule2node.contains( ruleKey ) )
1380 rule2node[ruleKey] = n;
1405 context->setScaleFactor( dpi / 25.4 );
1406 context->setRendererScale( scale );
1409 return validData ? context.release() :
nullptr;
1415 return qobject_cast<QgsLayerTreeModelLegendNode *>(
reinterpret_cast<QObject *
>(
index.internalPointer() ) );
1427 int row =
data.tree->children[parentLegendNode].indexOf(
legendNode );
1428 return index( row, 0, parentIndex );
1434 return index( row, 0, parentIndex );
1439 Q_ASSERT( parentIndex.isValid() );
1442 return QModelIndex();
1444 return index( row, 0, parentIndex );
1452 return data.tree->children[node].count();
1460 if ( !
mLegend.contains( nL ) )
1465 return data.tree->children[
nullptr].count();
1467 int count =
data.activeNodes.count();
1474 Q_ASSERT(
mLegend.contains( nL ) );
1477 return createIndex( row, column,
static_cast<QObject *
>(
data.tree->children[
nullptr].at( row ) ) );
1479 return createIndex( row, column,
static_cast<QObject *
>(
data.activeNodes.at( row ) ) );
1487 return createIndex( row, column,
static_cast<QObject *
>(
data.tree->children[node].at( row ) ) );
1489 return QModelIndex();
1502 int row =
data.tree->children[grandParentNode].indexOf( parentNode );
1503 return createIndex( row, 0,
static_cast<QObject *
>( parentNode ) );
1517 return node->
data( role );
1523 Qt::ItemFlags f = node->
flags();
1525 f &= ~Qt::ItemIsUserCheckable;
1532 return static_cast< bool >(
mLegend[nodeLayer].embeddedNodeInParent );
1537 return mLegend[nodeLayer].embeddedNodeInParent;
1546 return QIcon( qvariant_cast<QPixmap>(
legendNode->
data( Qt::DecorationRole ) ) );
1552 if ( !
mLegend.contains( nodeLayer ) )
1553 return QList<QgsLayerTreeModelLegendNode *>();
1556 QList<QgsLayerTreeModelLegendNode *> lst(
data.activeNodes );
1557 if ( !skipNodeEmbeddedInParent &&
data.embeddedNodeInParent )
1558 lst.prepend(
data.embeddedNodeInParent );
1564 return mLegend.value( nodeLayer ).originalNodes;
1569 for (
auto it =
mLegend.constBegin(); it !=
mLegend.constEnd(); ++it )
1572 if ( layer->
layerId() == layerId )
1574 const auto activeNodes =
mLegend.value( layer ).activeNodes;
1607 std::unique_ptr<QgsRenderContext> context( createTemporaryRenderContext() );
1613 QList<QgsSymbolLegendNode *> symbolNodes;
1614 QMap<QString, int> widthMax;
1622 widthMax[parentKey] = std::max( sz.width(), widthMax.contains( parentKey ) ? widthMax[parentKey] : 0 );
1624 symbolNodes.append( n );
1630 Q_ASSERT( widthMax[parentKey] > 0 );
1631 const int twiceMarginWidth = 2;
1632 n->setIconSize( QSize( widthMax[parentKey] + twiceMarginWidth, n->iconSize().rheight() + twiceMarginWidth ) );
@ NodeGroup
Container of other groups and layers.
void setLayerStyleOverrides(const QMap< QString, QString > &overrides)
Sets map of map layer style overrides (key: layer ID, value: style name) where a different style shou...
int columnCount(const QModelIndex &parent=QModelIndex()) const override
QgsLayerTreeLayer * findLayer(QgsMapLayer *layer) const
Find layer node representing the map layer.
QList< QgsLayerTreeLayer * > findLayers() const
Find all layer nodes.
void nodeWillRemoveChildren(QgsLayerTreeNode *node, int indexFrom, int indexTo)
static void applyLayerNodeProperties(QgsLayerTreeLayer *nodeLayer, QList< QgsLayerTreeModelLegendNode * > &nodes)
update according to layer node's custom properties (order of items, user labels for items)
QgsLayerTree * mRootNode
Pointer to the root node of the layer tree. Not owned by the model.
void disconnectFromRootNode()
This class is a base class for nodes in a layer tree.
QModelIndex currentIndex() const
Gets index of the item marked as current. Item marked as current is underlined.
virtual bool isEmbeddedInParent() const
Qt::ItemFlags legendNodeFlags(QgsLayerTreeModelLegendNode *node) const
static QString displayString(Type type) SIP_HOLDGIL
Returns a display string type for a WKB type, e.g., the geometry name used in WKT geometry representa...
void nodeLayerWillBeUnloaded()
void addLegendToLayer(QgsLayerTreeLayer *nodeL)
LayerLegendTree * tryBuildLegendTree(const QList< QgsLayerTreeModelLegendNode * > &nodes)
static QIcon getThemeIcon(const QString &name)
Helper to get a theme icon.
QModelIndex indexOfParentLayerTreeNode(QgsLayerTreeNode *parentNode) const
void removeChildren(int from, int count)
Remove child nodes from index "from".
QMap< QgsLayerTreeModelLegendNode *, QList< QgsLayerTreeModelLegendNode * > > children
List of children for each active node. Top-level nodes are under nullptr key. Pointers are not owned.
QModelIndex index(int row, int column, const QModelIndex &parent=QModelIndex()) const override
void setItemVisibilityChecked(bool checked)
Check or uncheck a node (independently of its ancestors or children)
void removedChildren(QgsLayerTreeNode *node, int indexFrom, int indexTo)
Emitted when one or more nodes has been removed from a node within the tree.
The class is used as a container of context for various read/write operations on other objects.
virtual void invalidateMapBasedData()
Notification from model that information from associated map view has changed.
virtual QVariant data(int role) const =0
Returns data associated with the item. Must be implemented in derived class.
void layerModified()
Emitted when modifications has been done on layer.
QList< QgsLayerTreeModelLegendNode * > filterLegendNodes(const QList< QgsLayerTreeModelLegendNode * > &nodes)
Filter nodes from QgsMapLayerLegend according to the current filtering rules.
void layerLoaded()
Emitted when a previously unavailable layer got loaded.
#define QgsDebugMsgLevel(str, level)
QgsLayerTreeModelLegendNode * findLegendNode(const QString &layerId, const QString &ruleKey) const
Searches through the layer tree to find a legend node with a matching layer ID and rule key.
QString layerId() const
Returns the ID for the map layer associated with this node.
void recursivelyEmitDataChanged(const QModelIndex &index=QModelIndex())
emit dataChanged() for layer tree node items
double mLegendMapViewMupp
static QIcon iconDefault()
static QByteArray layerTreeNodesToUriList(const QList< QgsLayerTreeNode * > &nodes)
Returns encoded URI list from a list of layer tree nodes.
@ NodeLayer
Leaf node pointing to a layer.
QFont layerTreeNodeFont(int nodeType) const
Gets font for a particular type of layer tree node. nodeType should come from QgsLayerTreeNode::NodeT...
@ AllowLegendChangeState
Allow check boxes for legend nodes (if supported by layer's legend)
QHash< QgsLayerTreeLayer *, LayerLegendData > mLegend
Per layer data about layer's legend nodes.
QMimeData * mimeData(const QModelIndexList &indexes) const override
bool legendEmbeddedInParent(QgsLayerTreeLayer *nodeLayer) const
void messageEmitted(const QString &message, Qgis::MessageLevel level=Qgis::Info, int duration=5)
Emits a message than can be displayed to the user in a GUI class.
static QIcon iconRaster()
QModelIndex parent(const QModelIndex &child) const override
bool hasValidSettings() const
Check whether the map settings are valid and can be used for rendering.
void nodeWillAddChildren(QgsLayerTreeNode *node, int indexFrom, int indexTo)
The QgsMapLayerLegend class is abstract interface for implementations of legends for one map layer.
Flags mFlags
Sets of flags for the model.
std::unique_ptr< QgsMapHitTest > mLegendFilterHitTest
Contains information about the context of a rendering operation.
QMap< QString, QString > LayerFilterExpression
Maps an expression string to a layer id.
void removeLegendFromLayer(QgsLayerTreeLayer *nodeLayer)
static QgsProject * instance()
Returns the QgsProject singleton instance.
void setFlags(QgsLayerTreeModel::Flags f)
Sets OR-ed combination of model flags.
bool testFlag(Flag f) const
Check whether a flag is enabled.
std::unique_ptr< QgsMapSettings > mLegendFilterMapSettings
bool mLegendFilterUsesExtent
whether to use map filtering
void customPropertyChanged(QgsLayerTreeNode *node, const QString &key)
Emitted when a custom property of a node within the tree has been changed or removed.
virtual QList< QgsLayerTreeModelLegendNode * > createLayerTreeModelLegendNodes(QgsLayerTreeLayer *nodeLayer)=0
Returns list of legend nodes to be used for a particular layer tree layer node.
static QgsLayerTreeLayer * toLayer(QgsLayerTreeNode *node)
Cast node to a layer.
void nameChanged(QgsLayerTreeNode *node, QString name)
Emitted when the name of the node is changed.
QString name() const override
Returns the layer's name.
QgsLayerTreeModelLegendNode * legendNodeEmbeddedInParent(QgsLayerTreeLayer *nodeLayer) const
Returns legend node that may be embedded in parent (i.e.
void nodeCustomPropertyChanged(QgsLayerTreeNode *node, const QString &key)
@ ShowLegendAsTree
For legends that support it, will show them in a tree instead of a list (needs also ShowLegend)....
QVariant legendNodeData(QgsLayerTreeModelLegendNode *node, int role) const
long featureCount(const QString &legendKey) const
Number of features rendered with specified legend key.
QgsMapLayerLegend * legend() const
Can be nullptr.
void layerLegendChanged()
void disconnectFromLayer(QgsLayerTreeLayer *nodeLayer)
Restore overridden layer style on destruction.
void setItemVisibilityCheckedParentRecursive(bool checked)
Check or uncheck a node and all its parents.
@ ActionHierarchical
Check/uncheck action has consequences on children (or parents for leaf node)
bool isEditable() const FINAL
Returns true if the provider is in editing mode.
static QgsLayerTreeGroup * toGroup(QgsLayerTreeNode *node)
Cast node to a group.
@ AllowNodeRename
Allow renaming of groups and layers.
void disconnectFromLayers(QgsLayerTreeGroup *parentGroup)
QSize iconSize(bool dockableToolbar)
Returns the user-preferred size of a window's toolbar icons.
static QPixmap getThemePixmap(const QString &name, const QColor &foreColor=QColor(), const QColor &backColor=QColor(), int size=16)
Helper to get a theme icon as a pixmap.
NodeType nodeType() const
Find out about type of the node. It is usually shorter to use convenience functions from QgsLayerTree...
void sizeChanged()
Emitted when the size of this node changes.
virtual Qt::ItemFlags flags() const
Returns item flags associated with the item. Default implementation returns Qt::ItemIsEnabled.
static int scaleIconSize(int standardSize)
Scales an layer tree model icon size to compensate for display pixel density, making the icon size hi...
void legendNodeDataChanged()
bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent) override
bool removeRows(int row, int count, const QModelIndex &parent=QModelIndex()) override
Class that runs a hit test with given map settings.
QModelIndex legendNode2index(QgsLayerTreeModelLegendNode *legendNode)
Returns index for a given legend node.
QModelIndex node2index(QgsLayerTreeNode *node) const
Returns index for a given node. If the node does not belong to the layer tree, the result is undefine...
bool isInScaleRange(double scale) const
Tests whether the layer should be visible at the specified scale.
static QgsLayerTreeModelLegendNode * index2legendNode(const QModelIndex &index)
Returns legend node for given index.
void editingStarted()
Emitted when editing on this layer has started.
Namespace with helper functions for layer tree operations.
~QgsLayerTreeModel() override
void setLayerTreeNodeFont(int nodeType, const QFont &font)
Sets font for a particular type of layer tree node. nodeType should come from QgsLayerTreeNode::NodeT...
void nodeAddedChildren(QgsLayerTreeNode *node, int indexFrom, int indexTo)
QMap< QString, QString > layerStyleOverrides() const
Gets map of map layer style overrides (key: layer ID, value: style name) where a different style shou...
QPersistentModelIndex mCurrentIndex
Current index - will be underlined.
void connectToLayers(QgsLayerTreeGroup *parentGroup)
QModelIndex legendParent(QgsLayerTreeModelLegendNode *legendNode) const
void setName(const QString &n) override
Sets the layer's name.
@ DeferredLegendInvalidation
Defer legend model invalidation.
void setLegendFilterByScale(double scale)
Force only display of legend nodes which are valid for a given scale.
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
QTimer mDeferLegendInvalidationTimer
void refreshLayerLegend(QgsLayerTreeLayer *nodeLayer)
Force a refresh of legend nodes of a layer node.
QModelIndex legendNodeIndex(int row, int column, QgsLayerTreeModelLegendNode *node) const
static QIcon iconVectorTile()
Returns icon for vector tile layer.
Layer tree node points to a map layer.
int rowCount(const QModelIndex &parent=QModelIndex()) const override
virtual void writeXml(QDomElement &parentElement, const QgsReadWriteContext &context)=0
Write layer tree to XML.
void setIconSize(QSize sz)
Set the icon size.
Structure that stores all data associated with one map layer.
double mLegendFilterByScale
scale denominator for filtering of legend nodes (<= 0 means no filtering)
Layer tree group node serves as a container for layers and further groups.
void setLegendFilterByMap(const QgsMapSettings *settings)
Force only display of legend nodes which are valid for given map settings.
Structure that stores tree representation of map layer's legend.
void setName(const QString &n) override
Sets the group's name.
void insertChildNodes(int index, const QList< QgsLayerTreeNode * > &nodes)
Insert existing nodes at specified position.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
QString title() const
Returns the title of the layer used by QGIS Server in GetCapabilities request.
void setAutoCollapseLegendNodes(int nodeCount)
Sets at what number of legend nodes the layer node should be collapsed. Setting -1 disables the auto-...
QMap< QgsLayerTreeModelLegendNode *, QgsLayerTreeModelLegendNode * > parents
Pointer to parent for each active node. Top-level nodes have nullptr parent. Pointers are not owned.
@ ParentRuleKeyRole
Rule key of the parent legend node - for legends with tree hierarchy (QString). Added in 2....
void refreshScaleBasedLayers(const QModelIndex &index=QModelIndex(), double previousScale=0.0)
Updates layer data for scale dependent layers, should be called when map scale changes.
bool hasScaleBasedVisibility() const
Returns whether scale based visibility is enabled for the layer.
QgsMapLayer * layer() const
Returns the map layer associated with this node.
Qt::DropActions supportedDropActions() const override
void setRootGroup(QgsLayerTree *newRootGroup)
Reset the model and use a new root group node.
QIcon legendIconEmbeddedInParent(QgsLayerTreeLayer *nodeLayer) const
static QgsLayerTreeNode * readXml(QDomElement &element, const QgsReadWriteContext &context)
Read layer tree from XML.
int autoCollapseLegendNodes() const
Returns at what number of legend nodes the layer node should be collapsed. -1 means no auto-collapse ...
static QIcon iconPolygon()
QgsLayerTree * rootGroup() const
Returns pointer to the root node of the layer tree. Always a non nullptr value.
QgsLayerTreeModelLegendNode * legendNode(const QString &rule, QgsLayerTreeModel &model)
void legendChanged()
Signal emitted when legend of the layer has changed.
void layerWillBeUnloaded()
Emitted when a previously available layer got unloaded (from layer registry).
QgsLayerTreeNode * index2node(const QModelIndex &index) const
Returns layer tree node for given index.
void legendMapViewData(double *mapUnitsPerPixel, int *dpi, double *scale) const
Gets hints about map view - to be used in legend nodes.
void willAddChildren(QgsLayerTreeNode *node, int indexFrom, int indexTo)
Emitted when one or more nodes will be added to a node within the tree.
virtual void setItemVisibilityCheckedRecursive(bool checked)
Check or uncheck a node and all its children (taking into account exclusion rules)
virtual bool setData(const QVariant &value, int role)
Sets some data associated with the item. Default implementation does nothing and returns false.
static bool loadLayerDefinition(const QString &path, QgsProject *project, QgsLayerTreeGroup *rootGroup, QString &errorMessage)
Loads the QLR at path into QGIS. New layers are added to given project into layer tree specified by r...
int legendNodeRowCount(QgsLayerTreeModelLegendNode *node) const
static bool isLayer(const QgsLayerTreeNode *node)
Check whether the node is a valid layer node.
void editingStopped()
Emitted when edited changes have been successfully written to the data provider.
QgsLayerTreeLayer * layerNode() const
Returns pointer to the parent layer node.
Q_INVOKABLE QVariant customProperty(const QString &value, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer.
static bool exportLayerDefinition(QString path, const QList< QgsLayerTreeNode * > &selectedTreeNodes, QString &errorMessage)
Export the selected layer tree nodes to a QLR file.
static QIcon iconMesh()
Returns icon for mesh layer type.
QStringList mimeTypes() const override
double mLegendMapViewScale
A geometry is the spatial representation of a feature.
void setFlag(Flag f, bool on=true)
Enable or disable a model flag.
Perform transforms between map coordinates and device coordinates.
Represents a vector layer which manages a vector based data sets.
QModelIndex legendRootIndex(int row, int column, QgsLayerTreeLayer *nL) const
bool itemVisibilityChecked() const
Returns whether a node is checked (independently of its ancestors or children)
QVariant customProperty(const QString &key, const QVariant &defaultValue=QVariant()) const
Read a custom property from layer. Properties are stored in a map and saved in project file.
Flags flags() const
Returns OR-ed combination of model flags.
Base class for all map layer types.
static int scaleIconSize(int standardSize, bool applyDevicePixelRatio=false)
Scales an icon size to compensate for display pixel density, making the icon size hi-dpi friendly,...
QMap< QString, QString > mLayerStyleOverrides
Overrides of map layers' styles: key = layer ID, value = style XML.
@ UseTextFormatting
Layer nodes will alter text appearance based on layer properties, such as scale based visibility.
QList< QgsLayerTreeNode * > children()
Gets list of children of the node. Children are owned by the parent.
@ VectorTileLayer
Added in 3.14.
void setLegendFilter(const QgsMapSettings *settings, bool useExtent=true, const QgsGeometry &polygon=QgsGeometry(), bool useExpressions=true)
Filter display of legend nodes for given map settings.
QVariant data(int role) const override
Returns data associated with the item. Must be implemented in derived class.
void setLegendMapViewData(double mapUnitsPerPixel, int dpi, double scale)
Give the layer tree model hints about the currently associated map view so that legend nodes that use...
QString name() const override
Returns the group's name.
void addedChildren(QgsLayerTreeNode *node, int indexFrom, int indexTo)
Emitted when one or more nodes have been added to a node within the tree.
int mAutoCollapseLegendNodesCount
Minimal number of nodes when legend should be automatically collapsed. -1 = disabled.
void setOverrideStyle(const QString &style)
Temporarily apply a different style to the layer.
virtual bool isModified() const
Returns true if the provider has been modified since the last commit.
bool setData(const QModelIndex &index, const QVariant &value, int role=Qt::EditRole) override
@ RenderSymbolPreview
The render is for a symbol preview only and map based properties may not be available,...
QgsLayerTreeNode * parent()
Gets pointer to the parent. If parent is nullptr, the node is a root node.
@ AllowNodeChangeVisibility
Allow user to set node visibility with a checkbox.
void nodeRemovedChildren()
void invalidateLegendMapBasedData()
void willRemoveChildren(QgsLayerTreeNode *node, int indexFrom, int indexTo)
Emitted when one or more nodes will be removed from a node within the tree.
@ AllowNodeReorder
Allow reordering with drag'n'drop.
QSize minimumIconSize() const
Calculates the minimum icon size to prevent cropping.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
void nodeVisibilityChanged(QgsLayerTreeNode *node)
bool isVisible() const
Returns whether a node is really visible (ie checked and all its ancestors checked as well)
QList< QgsLayerTreeModelLegendNode * > layerLegendNodes(QgsLayerTreeLayer *nodeLayer, bool skipNodeEmbeddedInParent=false)
Returns filtered list of active legend nodes attached to a particular layer node (by default it retur...
QVariant data(const QModelIndex &index, int role=Qt::DisplayRole) const override
@ ShowLegend
Add legend nodes for layer nodes.
The QgsMapSettings class contains configuration for rendering of the map.
void nodeNameChanged(QgsLayerTreeNode *node, const QString &name)
Updates model when node's name has changed.
static QString legendFilterByExpression(const QgsLayerTreeLayer &layer, bool *enabled=nullptr)
Returns the expression filter of a legend layer.
Implementation of legend node interface for displaying preview of vector symbols and their labels and...
QgsLayerTreeModel(QgsLayerTree *rootNode, QObject *parent=nullptr)
Construct a new tree model with given layer tree (root node must not be nullptr).
@ RuleKeyRole
Rule key of the node (QString)
void setExpanded(bool expanded)
Sets whether the node should be shown as expanded or collapsed in GUI.
int legendRootRowCount(QgsLayerTreeLayer *nL) const
QgsWkbTypes::GeometryType type
Q_INVOKABLE QgsWkbTypes::GeometryType geometryType() const
Returns point, line or polygon.
static bool isGroup(QgsLayerTreeNode *node)
Check whether the node is a valid group node.
void legendInvalidateMapBasedData()
void connectToLayer(QgsLayerTreeLayer *nodeLayer)
void dataChanged()
Emitted on internal data change so the layer tree model can forward the signal to views.
@ UseEmbeddedWidgets
Layer nodes may optionally include extra embedded widgets (if used in QgsLayerTreeView)....
QSet< QgsLayerTreeLayer * > mInvalidatedNodes
Keep track of layer nodes for which the legend size needs to be recalculated.
void setCurrentIndex(const QModelIndex ¤tIndex)
Sets index of the current item. May be used by view. Item marked as current is underlined.
QList< QgsLayerTreeNode * > indexes2nodes(const QModelIndexList &list, bool skipInternal=false) const
Convert a list of indexes to a list of layer tree nodes.
void visibilityChanged(QgsLayerTreeNode *node)
Emitted when check state of a node within the tree has been changed.
QList< QgsLayerTreeModelLegendNode * > layerOriginalLegendNodes(QgsLayerTreeLayer *nodeLayer)
Returns original (unfiltered) list of legend nodes attached to a particular layer node.
The QgsLegendRendererItem class is abstract interface for legend items returned from QgsMapLayerLegen...