QGIS API Documentation 4.3.0-Master (e17dae1dea8)
Loading...
Searching...
No Matches
qgsrubberband_impl.cpp
Go to the documentation of this file.
1/***************************************************************************
2 qgsrubberband_impl.cpp
3 --------------------------------------
4 Date : July 2026
5 Copyright : (C) 2026 by Nyall Dawson
6 Email : nyall.dawson@gmail.com
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#include "qgsrubberband_impl.h"
17
19#include "qgslabelingresults.h"
20#include "qgsmapcanvas.h"
21#include "qgstextrenderer.h"
22#include "qgsvectorlayer.h"
23
26 , mLayer( layer )
27{
28 QgsFeature f;
29 QgsFeatureIterator it = mLayer->getFeatures( qgis::listToSet( fids ) );
30 mFeatures.resize( fids.size() );
31 int index = 0;
32 while ( it.nextFeature( f ) )
33 {
34 mFeatures[index] = f;
35 index++;
36 }
37}
38
40{
42 if ( !rubberBand || !mLayer || !mLayer->labelsEnabled() || !mLayer->labeling() || mFeatures.empty() )
43 return;
44
45 QgsMapCanvas *canvas = rubberBand->canvas();
46 if ( !canvas )
47 return;
48
49 // fetch current rubber band geometry
50 QgsGeometry previewGeom = rubberBand->asGeometry();
51 if ( previewGeom.isEmpty() )
52 return;
53
55
56 const double previousReferenceScale = context.symbologyReferenceScale();
57 if ( const QgsFeatureRenderer *renderer = mLayer->renderer() )
58 {
59 context.setSymbologyReferenceScale( renderer->referenceScale() );
60 }
61
62 QgsExpressionContextScopePopper layerScopePopper( context.expressionContext(), mLayer->createExpressionContextScope() );
63
65
66 QgsExpressionContextScopePopper scopePopper( context.expressionContext(), featureScope );
68
69 // set up a super minimal, fast labeling engine. Why? Well...
70 // we can't just use QgsTextRenderer here, as that won't fully reflect the actual appearance
71 // of the labels actually rendered for the features. Eg it won't respect settings like text repeat distances,
72 // anchor points, overrun, curved placement modes, etc.
73 // So to get a useful preview we need to use the actual labeling engine to render the label.
74 // But we also don't need a lot of the weight of pal labeling, eg we only need to render the
75 // single least-cost candidate for each feature, we won't consider obstacles or overlaps, we don't
76 // need the label search tree, etc.
77 // Disabling all this gives us a very lean label engine, which is quite cheap to use and gives
78 // perfect 1:1 previews of the actual label to be rendered.
79 QgsMapSettings mapSettings = canvas->mapSettings();
81 QgsLabelingEngineSettings labelSettings = mapSettings.labelingEngineSettings();
84 labelSettings.setFlag( Qgis::LabelingFlag::IgnoreObstacles, true );
86 labelSettings.setFlag( Qgis::LabelingFlag::IgnoreOverlaps, true );
87 mapSettings.setLabelingEngineSettings( labelSettings );
88 QgsDefaultLabelingEngine engine( mapSettings );
89
90 QgsPalLayerSettings settings = mLayer->labeling()->settings();
91 auto provider = new QgsVectorLayerLabelProvider( mLayer, QString(), false, &settings );
92 engine.addProvider( provider );
93
94 QSet<QString> attributeNames;
95 if ( !provider->prepare( context, attributeNames ) )
96 {
97 context.setSymbologyReferenceScale( previousReferenceScale );
98 return;
99 }
100
101 const QVector< QgsGeometry> previewGeomParts = previewGeom.asGeometryCollection();
102 int index = 0;
103 for ( const QgsFeature &feature : std::as_const( mFeatures ) )
104 {
105 if ( index >= previewGeomParts.size() )
106 break;
107
108 // each individual part of the rubber band's geometry corresponds to an individual feature,
109 // so we re-associate them here:
110 QgsFeature tempFeature = feature;
111 tempFeature.setGeometry( previewGeomParts.at( index ) );
112
113 featureScope->setFeature( tempFeature );
114 featureScope->setFields( tempFeature.fields() );
115 provider->registerFeature( tempFeature, context );
116 index++;
117 }
118
119 QgsScopedQPainterState painterState( context.painter() );
120 context.painter()->translate( -rubberBand->pos() );
121
122 // running the engine calculates the placement and does the actual rendering:
123 engine.run( context );
124
125 if ( QgsLabelingResults *results = engine.results() )
126 {
127 mBoundingRect = QRectF();
128 const QList<QgsLabelPosition> labelPosList = results->allLabels();
129 const QgsMapToPixel *m2p = canvas->getCoordinateTransform();
130 const QPointF itemPos = rubberBand->pos();
131
132 for ( const QgsLabelPosition &labelPos : labelPosList )
133 {
134 for ( int i = 0; i < 4; ++i )
135 {
136 // map point -> canvas pixel -> local item coordinates
137 const QPointF canvasPt = m2p->transform( labelPos.cornerPoints[i] ).toQPointF();
138 const QPointF localPt = canvasPt - itemPos;
139 if ( mBoundingRect.isEmpty() )
140 mBoundingRect = QRectF( localPt, QSizeF( 1, 1 ) );
141 else
142 mBoundingRect = mBoundingRect.united( QRectF( localPt, QSizeF( 1, 1 ) ) );
143 }
144 }
145 }
146
147 context.setSymbologyReferenceScale( previousReferenceScale );
148}
149
151{
152 return mBoundingRect;
153}
@ DisableSearchTree
Disable the creation of the label search tree.
Definition qgis.h:3053
@ IgnoreObstacles
Disable obstacle handling.
Definition qgis.h:3050
@ SingleCandidateOnly
Generate only the single least-cost candidate for each feature. Useful for fast labeling,...
Definition qgis.h:3051
@ IgnoreOverlaps
Disable overlap detection and search solver, immediately returning lowest cost candidate per feature.
Definition qgis.h:3052
@ UsePartialCandidates
Whether to use also label candidates that are partially outside of the map view.
Definition qgis.h:3042
@ RecordProfile
Enable run-time profiling while rendering.
Definition qgis.h:2963
@ Reverse
Reverse/inverse transform (from destination to source).
Definition qgis.h:2864
@ RecordProfile
Enable run-time profiling while rendering.
Definition qgis.h:2928
Default QgsLabelingEngine implementation, which completes the whole labeling operation (including lab...
void run(QgsRenderContext &context) override
Runs the labeling job.
RAII class to pop scope from an expression context on destruction.
Single scope for storing variables and functions for use within a QgsExpressionContext.
void setFields(const QgsFields &fields)
Convenience function for setting a fields for the scope.
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the scope.
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
Abstract base class for all 2D vector feature renderers.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Definition qgsfeature.h:60
QgsFields fields
Definition qgsfeature.h:65
void setGeometry(const QgsGeometry &geometry)
Set the feature's geometry.
A geometry is the spatial representation of a feature.
Qgis::GeometryOperationResult transform(const QgsCoordinateTransform &ct, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool transformZ=false)
Transforms this geometry as described by the coordinate transform ct.
QVector< QgsGeometry > asGeometryCollection() const
Returns contents of the geometry as a list of geometries.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
Represents the calculated placement of a map label.
Stores global configuration for labeling engine.
void setFlag(Qgis::LabelingFlag f, bool enabled=true)
Sets whether a particual flag is enabled.
QString addProvider(QgsAbstractLabelProvider *provider)
Adds a provider of label features.
QgsLabelingResults * results() const
For internal use by the providers.
Stores computed placement from labeling engine.
Map canvas is a class for displaying all GIS data types on a canvas.
const QgsMapToPixel * getCoordinateTransform()
Gets the current coordinate transform.
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
Contains configuration for rendering maps.
const QgsLabelingEngineSettings & labelingEngineSettings() const
Returns the global configuration of the labeling engine.
QgsCoordinateTransform layerTransform(const QgsMapLayer *layer) const
Returns the coordinate transform from layer's CRS to destination CRS.
void setLabelingEngineSettings(const QgsLabelingEngineSettings &settings)
Sets the global configuration of the labeling engine.
void setFlag(Qgis::MapSettingsFlag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected).
Perform transforms between map coordinates and device coordinates.
QgsPointXY transform(const QgsPointXY &p) const
Transforms a point p from map (world) coordinates to device coordinates.
Contains settings for how a map layer will be labeled.
QPointF toQPointF() const
Converts a point to a QPointF.
Definition qgspointxy.h:168
Contains information about the context of a rendering operation.
double symbologyReferenceScale() const
Returns the symbology reference scale.
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsExpressionContext & expressionContext()
Gets the expression context.
void setFlag(Qgis::RenderContextFlag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected).
void setSymbologyReferenceScale(double scale)
Sets the symbology reference scale.
QgsRubberBandPreviewItem(QgsRubberBand *rubberBand)
Constructor for a QgsRubberBandPreviewItem, attached to the specified rubberBand.
QgsRubberBand * rubberBand()
Returns the rubber band associated with the item.
Responsible for drawing transient features (e.g.
Scoped object for saving and restoring a QPainter object's state.
Implements a label provider for vector layers.
QRectF boundingRect() const override
Returns the bounding rect required for drawing the preview item.
void render(QgsRenderContext &context) final
Renders the custom preview overlay using the specified render context.
QgsVectorLayerLabelRubberBandPreview(QgsRubberBand *rubberBand, const QList< QgsFeatureId > &fids, QgsVectorLayer *layer)
Constructor for QgsVectorLayerLabelRubberBandPreview.
Represents a vector layer which manages a vector based dataset.