32 , mPendingCanvasUpdate( false )
33 , mAutoSetupOnFirstLayer( true )
34 , mHasLayersLoaded( !root->findLayers().isEmpty() )
47 QList<QgsMapLayer *> canvasLayers, overviewLayers, allLayerOrder;
52 for (
const QgsMapLayer *layer : customOrderLayers )
60 allLayerOrder << nodeLayer->
layer();
62 canvasLayers << nodeLayer->
layer();
63 if ( nodeLayer->
customProperty( QStringLiteral(
"overview" ), 0 ).toInt() )
64 overviewLayers << nodeLayer->
layer();
73 const QList<QgsLayerTreeLayer *> layerNodes = mRoot->
findLayers();
74 int currentSpatialLayerCount = 0;
75 int currentValidSpatialLayerCount = 0;
78 if ( layerNode->layer() && layerNode->layer()->isSpatial() )
80 currentSpatialLayerCount++;
81 if ( layerNode->layer()->isValid() )
82 currentValidSpatialLayerCount++;
86 bool firstLayers = mAutoSetupOnFirstLayer && !mHasLayersLoaded && currentSpatialLayerCount != 0;
87 bool firstValidLayers = mAutoSetupOnFirstLayer && !mHasValidLayersLoaded && currentValidSpatialLayerCount != 0;
90 if ( mOverviewCanvas )
91 mOverviewCanvas->
setLayers( overviewLayers );
93 if ( firstValidLayers )
104 if ( layerNode->layer() && layerNode->layer()->crs().isValid() )
106 mFirstCRS = layerNode->layer()->crs();
112 if ( mFirstCRS.
isValid() && firstLayers )
115 switch ( projectCrsBehavior )
126 mHasLayersLoaded = currentSpatialLayerCount;
127 mHasValidLayersLoaded = currentValidSpatialLayerCount;
128 if ( currentSpatialLayerCount == 0 )
131 mPendingCanvasUpdate =
false;
143 allLayers << nodeLayer->
layer();
145 canvasLayers << nodeLayer->
layer();
146 if ( nodeLayer->
customProperty( QStringLiteral(
"overview" ), 0 ).toInt() )
147 overviewLayers << nodeLayer->
layer();
151 const QList<QgsLayerTreeNode *> children = node->
children();
156 void QgsLayerTreeMapCanvasBridge::deferredSetCanvasLayers()
158 if ( mPendingCanvasUpdate )
161 mPendingCanvasUpdate =
true;
162 QMetaObject::invokeMethod(
this,
"setCanvasLayers", Qt::QueuedConnection );
165 void QgsLayerTreeMapCanvasBridge::nodeVisibilityChanged()
167 deferredSetCanvasLayers();
170 void QgsLayerTreeMapCanvasBridge::nodeCustomPropertyChanged(
QgsLayerTreeNode *node,
const QString &key )
173 if ( key == QLatin1String(
"overview" ) )
174 deferredSetCanvasLayers();
177 void QgsLayerTreeMapCanvasBridge::layersAdded(
const QList<QgsMapLayer *> &layers )
185 if ( l->isValid() && l->isSpatial() && mAutoSetupOnFirstLayer && !mHasValidLayersLoaded )
187 mHasValidLayersLoaded =
true;
static QgsLayerTreeLayer * toLayer(QgsLayerTreeNode *node)
Cast node to a layer.
Base class for all map layer types.
void layersAdded(const QList< QgsMapLayer *> &layers)
Emitted when one or more layers were added to the registry.
This class is a composition of two QSettings instances:
Set the project CRS to the CRS of the first layer added to a new project.
void layerOrderChanged()
Emitted when the layer order has changed.
bool isVisible() const
Returns whether a node is really visible (ie checked and all its ancestors checked as well) ...
Q_INVOKABLE void setCanvasLayers()
force update of canvas layers from the layer tree. Normally this should not be needed to be called...
Map canvas is a class for displaying all GIS data types on a canvas.
QList< QgsMapLayer * > customLayerOrder() const
The order in which layers will be rendered on the canvas.
QList< QgsLayerTreeNode * > children()
Gets list of children of the node. Children are owned by the parent.
Namespace with helper functions for layer tree operations.
void setLayers(const QList< QgsMapLayer *> &layers)
updates layer set for overview
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...
void setCrs(const QgsCoordinateReferenceSystem &crs)
Sets the project's native coordinate reference system.
static bool isLayer(const QgsLayerTreeNode *node)
Check whether the node is a valid layer node.
This class is a base class for nodes in a layer tree.
void dataSourceChanged()
Emitted whenever the layer's data source has been changed.
bool hasCustomLayerOrder() const
Determines if the layer order should be derived from the layer tree or if a custom override order sha...
void canvasLayersChanged(const QList< QgsMapLayer * > &layers)
Emitted when the set of layers (or order of layers) visible in the canvas changes.
QgsMapLayer * layer() const
Returns the map layer associated with this node.
QgsLayerTreeMapCanvasBridge(QgsLayerTree *root, QgsMapCanvas *canvas, QObject *parent=nullptr)
Constructor: does not take ownership of the layer tree nor canvas.
void visibilityChanged(QgsLayerTreeNode *node)
Emitted when check state of a node within the tree has been changed.
void setLayers(const QList< QgsMapLayer *> &layers)
Sets the list of layers that should be shown in the canvas.
static QgsProject * instance()
Returns the QgsProject singleton instance.
void zoomToFullExtent()
Zoom to the full extent of all layers.
This class represents a coordinate reference system (CRS).
Always set new projects to use a preset default CRS.
T enumValue(const QString &key, const T &defaultValue, const Section section=NoSection)
Returns the setting value for a setting based on an enum.
virtual bool isSpatial() const
Returns true if the layer is considered a spatial layer, ie it has some form of geometry associated w...
QList< QgsLayerTreeLayer * > findLayers() const
Find all layer nodes.
QgsLayerTreeLayer * findLayer(QgsMapLayer *layer) const
Find layer node representing the map layer.
void customPropertyChanged(QgsLayerTreeNode *node, const QString &key)
Emitted when a custom property of a node within the tree has been changed or removed.
ProjectCrsBehavior
Defines the behavior to use when setting the CRS for a newly created project.
Layer tree node points to a map layer.
bool isValid() const
Returns whether this CRS is correctly initialized and usable.