QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
Go to the documentation of this file.
29 #include <QGlobalStatic>
36 , mMessageBar( messageBar )
39 sTracers()->insert( canvas,
this );
48 connect( canvas, &QObject::destroyed,
this, [
this]() { mCanvas =
nullptr; } );
57 sTracers->remove( mCanvas );
62 return sTracers->value( canvas,
nullptr );
67 Q_UNUSED( addingVertex )
74 mLastMessage =
nullptr;
80 message = tr(
"Disabled - there are too many features displayed. Try zooming in or disable some layers." );
89 message = tr(
"Tracing may not work correctly. Please check topology of the input layers." );
92 if ( message.isEmpty() )
96 QgsSettings().value( QStringLiteral(
"/qgis/messageTimeout" ), 5 ).toInt() );
97 mMessageBar->
pushItem( mLastMessage );
107 QList<QgsVectorLayer *>
layers;
116 if ( vl && visibleLayers.contains( vl ) )
122 const auto constVisibleLayers = visibleLayers;
136 if ( visibleLayers.contains( cfg.layer ) )
146 void QgsMapCanvasTracer::onCurrentLayerChanged()
void currentLayerChanged(QgsMapLayer *layer)
Emitted when the current layer is changed.
void transformContextChanged()
Emitted when the canvas transform context is changed.
QgsRectangle extent() const
Returns the current zoom extent of the map canvas.
void destinationCrsChanged()
Emitted when map CRS has changed.
static QgsRenderContext fromMapSettings(const QgsMapSettings &mapSettings)
create initialized QgsRenderContext instance from given QgsMapSettings
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
QList< QgsVectorLayer * > layers() const
Gets layers used for tracing.
bool popWidget(QgsMessageBarItem *item)
Remove the specified item from the bar, and display the next most recent one in the stack.
Q_GLOBAL_STATIC(TracerCanvasHash, sTracers)
QgsSnappingUtils * snappingUtils() const
Returns snapping utility class that is associated with map canvas.
void invalidateGraph()
Destroy the existing graph structure if any (de-initialize)
void setRenderContext(const QgsRenderContext *renderContext)
Sets the renderContext used for tracing only on visible features.
@ ActiveLayer
On the active layer.
void setDestinationCrs(const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &context)
Sets the crs and transform context used for tracing.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context, which stores various information regarding which datum tran...
void configChanged(const QgsSnappingConfig &snappingConfig)
Emitted when the snapping settings object changes.
void layersChanged()
Emitted when a new set of layers has been received.
~QgsMapCanvasTracer() override
void pushItem(QgsMessageBarItem *item)
Display a message item on the bar, after hiding the currently visible one and putting it in a stack.
@ ErrTooManyFeatures
Max feature count threshold was reached while reading features.
void extentsChanged()
Emitted when the extents of the map change.
void setExtent(const QgsRectangle &extent)
Sets extent to which graph's features will be limited (empty extent means no limit)
void setMaxFeatureCount(int count)
Gets maximum possible number of features in graph. If the number is exceeded, graph is not created.
@ AdvancedConfiguration
On a per layer configuration basis.
void configure() override
Sets configuration from current snapping settings and canvas settings.
bool hasTopologyProblem() const
Whether there was an error during graph creation due to noding exception, indicating some input data ...
static QgsMapCanvasTracer * tracerForCanvas(QgsMapCanvas *canvas)
Retrieve instance of this class associated with given canvas (if any).
SnappingMode mode() const
Returns the mode (all layers, active layer, per layer settings)
QgsCoordinateReferenceSystem destinationCrs() const
returns CRS of destination coordinate reference system
QList< QgsSnappingUtils::LayerConfig > layers() const
Query layers used for snapping.
QHash< QgsMapCanvas *, QgsMapCanvasTracer * > TracerCanvasHash
@ AllLayers
On all vector layers.
QList< QgsMapLayer * > layers() const
Gets list of layers for map rendering The layers are stored in the reverse order of how they are rend...
void reportError(PathError err, bool addingVertex)
Report a path finding error to the user.
QgsMapLayer * currentLayer()
returns current layer (set by legend widget)
PathError
Possible errors that may happen when calling findShortestPath()
Configures how a certain layer should be handled in a snapping operation.
void setLayers(const QList< QgsVectorLayer * > &layers)
Sets layers used for tracing.
QgsMapCanvasTracer(QgsMapCanvas *canvas, QgsMessageBar *messageBar=nullptr)
Create tracer associated with a particular map canvas, optionally message bar for reporting.