53using namespace Qt::StringLiterals;
59 , mLayerName( layer->name() )
60 , mFields( layer->fields() )
62 , mNoSetLayerExpressionContext( layer->customProperty( u
"_noset_layer_expression_context"_s ).toBool() )
63 , mEnableProfile( context.
flags() &
Qgis::RenderContextFlag::RecordProfile )
67 std::unique_ptr< QgsFeatureRenderer > mainRenderer( layer->
renderer() ? layer->
renderer()->
clone() :
nullptr );
78 const QColor layerSelectionColor = selectionProperties->
selectionColor();
79 if ( layerSelectionColor.isValid() )
86 if (
QgsSymbol *selectionSymbol = qobject_cast< QgsVectorLayerSelectionProperties * >( layer->
selectionProperties() )->selectionSymbol() )
87 mSelectionSymbol.reset( selectionSymbol->clone() );
98 bool insertedMainRenderer =
false;
99 double prevLevel = std::numeric_limits< double >::lowest();
101 mRenderer = mainRenderer.get();
104 if ( generator->level() >= 0 && prevLevel < 0 && !insertedMainRenderer )
107 mRenderers.emplace_back( std::move( mainRenderer ) );
108 insertedMainRenderer =
true;
110 mRenderers.emplace_back( generator->createRenderer() );
111 prevLevel = generator->level();
117 mRenderers.emplace_back( std::move( mainRenderer ) );
122 mDrawVertexMarkers =
nullptr != layer->
editBuffer();
132 mTemporalFilter = qobject_cast< const QgsVectorLayerTemporalProperties * >( layer->
temporalProperties() )->createFilterString( temporalContext, context.
temporalRange() );
133 QgsDebugMsgLevel(
"Rendering with Temporal Filter: " + mTemporalFilter, 2 );
153 if ( markerTypeString ==
"Cross"_L1 )
157 else if ( markerTypeString ==
"SemiTransparentCircle"_L1 )
171 if ( mDrawVertexMarkers )
174 mRenderer->setVertexMarkerAppearance( mVertexMarkerStyle, mVertexMarkerSize );
177 for (
const std::unique_ptr< QgsFeatureRenderer > &renderer : mRenderers )
179 mAttrNames.unite( renderer->usedAttributes( context ) );
185 mAttrNames.unite( handler->usedAttributes( layer, context ) );
189 prepareLabeling( layer, mAttrNames );
190 prepareDiagrams( layer, mAttrNames );
194 if ( std::any_of( mRenderers.begin(), mRenderers.end(), [](
const auto &renderer ) { return renderer->forceRasterRender(); } ) )
197 mForceRasterRender =
true;
205 mForceRasterRender =
true;
209 mPreparationTime = timer.elapsed();
216 mRenderTimeHint = time;
221 return mFeedback.get();
226 return mForceRasterRender;
247 if ( mRenderers.empty() )
250 mErrors.append( QObject::tr(
"No renderer for drawing." ) );
254 std::unique_ptr< QgsScopedRuntimeProfile > profile;
255 if ( mEnableProfile )
257 profile = std::make_unique< QgsScopedRuntimeProfile >( mLayerName, u
"rendering"_s,
layerId() );
258 if ( mPreparationTime > 0 )
266 mBlockRenderUpdates =
true;
267 mElapsedTimer.start();
271 int rendererIndex = 0;
272 for (
const std::unique_ptr< QgsFeatureRenderer > &renderer : mRenderers )
274 if ( mFeedback->isCanceled() || !res )
278 res = renderInternal( renderer.get(), rendererIndex++ ) && res;
285bool QgsVectorLayerRenderer::renderInternal(
QgsFeatureRenderer *renderer,
int rendererIndex )
287 const bool isMainRenderer = renderer == mRenderer;
292 if ( renderer->
type() ==
"nullSymbol"_L1 )
296 if ( !isMainRenderer || ( !mDrawVertexMarkers && !mLabelProvider && !mDiagramProvider && mSelectedFeatureIds.isEmpty() ) )
300 std::unique_ptr< QgsScopedRuntimeProfile > preparingProfile;
301 if ( mEnableProfile )
304 if ( mRenderers.size() > 1 )
305 title = QObject::tr(
"Preparing render %1" ).arg( rendererIndex + 1 );
307 title = QObject::tr(
"Preparing render" );
308 preparingProfile = std::make_unique< QgsScopedRuntimeProfile >( title, u
"rendering"_s );
311 QgsScopedQPainterState painterState( context.
painter() );
313 bool usingEffect =
false;
325 context.
painter()->setCompositionMode( mFeatureBlendMode );
337 QString rendererFilter = renderer->
filter( mFields );
339 QgsRectangle requestExtent = context.
extent();
340 if ( !mClippingRegions.empty() )
343 requestExtent = requestExtent.
intersect( mClipFilterGeom.boundingBox() );
347 bool needsPainterClipPath =
false;
349 if ( needsPainterClipPath )
350 context.
painter()->setClipPath( path, Qt::IntersectClip );
354 if ( mDiagramProvider )
355 mDiagramProvider->setClipFeatureGeometry( mLabelClipFeatureGeom );
360 QgsFeatureRequest featureRequest = QgsFeatureRequest().setFilterRect( requestExtent ).setSubsetOfAttributes( mAttrNames, mFields ).setExpressionContext( context.
expressionContext() );
367 if ( featureFilterProvider )
380 if ( !rendererFilter.isEmpty() && rendererFilter !=
"TRUE"_L1 )
384 if ( !mTemporalFilter.isEmpty() )
395 if ( mSimplifyGeometry )
397 double map2pixelTol = mSimplifyMethod.threshold();
398 bool validTransform =
true;
400 const QgsMapToPixel &mtp = context.
mapToPixel();
409 QgsCoordinateTransform toleranceTransform = ct;
413 QgsRectangle sourceRect = QgsRectangle( center.
x(), center.
y(), center.
x() + rectSize, center.
y() + rectSize );
415 QgsRectangle targetRect = toleranceTransform.
transform( sourceRect );
427 double sourceHypothenuse = std::sqrt( minimumSrcPoint.sqrDist( maximumSrcPoint ) );
428 double targetHypothenuse = std::sqrt( minimumDstPoint.sqrDist( maximumDstPoint ) );
430 QgsDebugMsgLevel( u
"Simplify - SourceHypothenuse=%1"_s.arg( sourceHypothenuse ), 4 );
431 QgsDebugMsgLevel( u
"Simplify - TargetHypothenuse=%1"_s.arg( targetHypothenuse ), 4 );
434 map2pixelTol *= ( sourceHypothenuse / targetHypothenuse );
437 catch ( QgsCsException &cse )
440 validTransform =
false;
444 if ( validTransform )
446 QgsSimplifyMethod simplifyMethod;
449 simplifyMethod.
setThreshold( mSimplifyMethod.threshold() );
453 QgsVectorSimplifyMethod vectorMethod = mSimplifyMethod;
459 QgsVectorSimplifyMethod vectorMethod;
466 QgsVectorSimplifyMethod vectorMethod;
476 std::unique_ptr< QgsScopedRuntimeProfile > preparingFeatureItProfile;
477 if ( mEnableProfile )
479 preparingFeatureItProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Prepare feature iteration" ), u
"rendering"_s );
482 QgsFeatureIterator fit = mSource->getFeatures( featureRequest );
490 preparingFeatureItProfile.reset();
491 preparingProfile.reset();
493 std::unique_ptr< QgsScopedRuntimeProfile > renderingProfile;
494 if ( mEnableProfile )
496 renderingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Rendering" ), u
"rendering"_s );
500 drawRendererLevels( renderer, fit );
502 drawRenderer( renderer, fit );
506 mErrors.append( u
"Data source invalid"_s );
529static std::unique_ptr< QgsGeometryEngine > prepareClipGeometry(
bool applyClipFilter,
const QgsGeometry &clipFilterGeom,
const QgsGeometry &horizonGeom )
531 std::unique_ptr< QgsGeometryEngine > clipEngine;
532 if ( applyClipFilter && !horizonGeom.
isEmpty() )
536 clipEngine->prepareGeometry();
538 else if ( applyClipFilter && horizonGeom.
isEmpty() )
541 clipEngine->prepareGeometry();
543 else if ( !applyClipFilter && !horizonGeom.
isEmpty() )
546 clipEngine->prepareGeometry();
555 quint64 totalLabelTime = 0;
557 const bool isMainRenderer = renderer == mRenderer;
563 if ( mSelectionSymbol && isMainRenderer )
564 mSelectionSymbol->startRender( context, mFields );
566 QgsGeometry horizonGeom;
573 std::unique_ptr< QgsGeometryEngine > clipEngine = prepareClipGeometry( mApplyClipFilter, mClipFilterGeom, horizonGeom );
575 const QgsGeometry renderClipGeom = combinedClipGeometry( mApplyClipGeometries ? mClipFeatureGeom : QgsGeometry(), horizonGeom );
576 const QgsGeometry labelClipGeom = combinedClipGeometry( mApplyLabelClipGeometries ? mLabelClipFeatureGeom : QgsGeometry(), horizonGeom );
595 if ( !renderClipGeom.
isEmpty() )
598 if ( !mNoSetLayerExpressionContext )
601 const bool featureIsSelected = isMainRenderer && context.
showSelection() && mSelectedFeatureIds.contains( fet.
id() );
602 bool drawMarker = isMainRenderer && ( mDrawVertexMarkers && context.
drawEditingInformation() && ( !mVertexMarkerOnlyForSelection || featureIsSelected ) );
605 bool rendered =
false;
608 if ( featureIsSelected && mSelectionSymbol )
612 mSelectionSymbol->renderFeature( fet, context, -1,
false, drawMarker );
617 rendered = renderer->
renderFeature( fet, context, -1, featureIsSelected, drawMarker );
637 if ( isMainRenderer && context.
labelingEngine() && ( mLabelProvider || mDiagramProvider ) )
639 const quint64 startLabelTime = timer.elapsed();
640 QgsGeometry obstacleGeometry;
642 QgsSymbol *symbol =
nullptr;
648 if ( !symbols.isEmpty() )
650 symbol = symbols.at( 0 );
654 if ( !labelClipGeom.
isEmpty() )
657 if ( mLabelProvider )
659 mLabelProvider->registerFeature( fet, context, obstacleGeometry, symbol );
661 if ( mDiagramProvider )
663 mDiagramProvider->registerFeature( fet, context, obstacleGeometry );
666 if ( !labelClipGeom.
isEmpty() )
669 totalLabelTime += ( timer.elapsed() - startLabelTime );
673 catch (
const QgsCsException &cse )
676 QgsDebugError( u
"Failed to transform a point while drawing a feature with ID '%1'. Ignoring this feature. %2"_s.arg( fet.
id() ).arg( cse.
what() ) );
682 std::unique_ptr< QgsScopedRuntimeProfile > cleanupProfile;
683 if ( mEnableProfile )
686 if ( totalLabelTime > 0 )
690 cleanupProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Finalizing" ), u
"rendering"_s );
693 if ( mSelectionSymbol && isMainRenderer )
694 mSelectionSymbol->stopRender( context );
696 stopRenderer( renderer,
nullptr );
701 const bool isMainRenderer = renderer == mRenderer;
714 QList<QHash< QgsSymbol *, QList<QgsFeature> >> features;
717 features.push_back( {} );
719 QSet<int> orderByAttributeIdx;
727 QgsSingleSymbolRenderer *selRenderer =
nullptr;
728 if ( !mSelectedFeatureIds.isEmpty() )
737 auto scopePopper = std::make_unique< QgsExpressionContextScopePopper >( context.
expressionContext(), symbolScope );
739 std::unique_ptr< QgsScopedRuntimeProfile > fetchFeaturesProfile;
740 if ( mEnableProfile )
742 fetchFeaturesProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Fetching features" ), u
"rendering"_s );
747 quint64 totalLabelTime = 0;
749 QgsGeometry horizonGeom;
756 const QgsGeometry labelClipGeom = combinedClipGeometry( mApplyLabelClipGeometries ? mLabelClipFeatureGeom : QgsGeometry(), horizonGeom );
757 if ( !labelClipGeom.
isEmpty() )
760 std::unique_ptr< QgsGeometryEngine > clipEngine = prepareClipGeometry( mApplyClipFilter, mClipFilterGeom, horizonGeom );
764 QVector<QVariant> prevValues;
769 qDebug(
"rendering stop!" );
770 stopRenderer( renderer, selRenderer );
780 if ( !mNoSetLayerExpressionContext )
790 QVector<QVariant> currentValues;
791 for (
const int idx : std::as_const( orderByAttributeIdx ) )
793 currentValues.push_back( fet.
attribute( idx ) );
795 if ( prevValues.empty() )
797 prevValues = std::move( currentValues );
799 else if ( currentValues != prevValues )
803 prevValues = std::move( currentValues );
804 features.push_back( {} );
810 QHash<QgsSymbol *, QList<QgsFeature> > &featuresBack = features.back();
811 auto featuresBackIt = featuresBack.find( sym );
812 if ( featuresBackIt == featuresBack.end() )
814 featuresBackIt = featuresBack.insert( sym, QList<QgsFeature>() );
816 featuresBackIt->append( fet );
820 if ( isMainRenderer && context.
labelingEngine() && ( mLabelProvider || mDiagramProvider ) )
822 const quint64 startLabelTime = timer.elapsed();
824 QgsGeometry obstacleGeometry;
826 QgsSymbol *symbol =
nullptr;
832 if ( !symbols.isEmpty() )
834 symbol = symbols.at( 0 );
838 if ( mLabelProvider )
840 mLabelProvider->registerFeature( fet, context, obstacleGeometry, symbol );
842 if ( mDiagramProvider )
844 mDiagramProvider->registerFeature( fet, context, obstacleGeometry );
847 totalLabelTime += ( timer.elapsed() - startLabelTime );
851 fetchFeaturesProfile.reset();
852 if ( mEnableProfile )
854 if ( totalLabelTime > 0 )
860 if ( !labelClipGeom.
isEmpty() )
865 if ( features.back().empty() )
868 stopRenderer( renderer, selRenderer );
873 std::unique_ptr< QgsScopedRuntimeProfile > sortingProfile;
874 if ( mEnableProfile )
876 sortingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Sorting features" ), u
"rendering"_s );
881 for (
int i = 0; i < symbols.count(); i++ )
883 QgsSymbol *sym = symbols[i];
887 if ( level < 0 || level >= 1000 )
889 QgsSymbolLevelItem item( sym, j );
890 while ( level >= levels.count() )
892 levels[level].append( item );
895 sortingProfile.reset();
897 const QgsGeometry renderClipGeom = combinedClipGeometry( mApplyClipGeometries ? mClipFeatureGeom : QgsGeometry(), horizonGeom );
898 if ( !renderClipGeom.
isEmpty() )
902 for (
const QHash< QgsSymbol *, QList<QgsFeature> > &featureLists : features )
904 for (
int l = 0; l < levels.count(); l++ )
907 std::unique_ptr< QgsScopedRuntimeProfile > renderingProfile;
908 if ( mEnableProfile )
910 renderingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Rendering symbol level %1" ).arg( l + 1 ), u
"rendering"_s );
913 for (
int i = 0; i < level.count(); i++ )
915 const QgsSymbolLevelItem &item = level[i];
916 if ( !featureLists.contains( item.
symbol() ) )
921 const int layer = item.
layer();
922 const QList<QgsFeature> &lst = featureLists[item.
symbol()];
923 for (
const QgsFeature &feature : lst )
927 stopRenderer( renderer, selRenderer );
931 const bool featureIsSelected = isMainRenderer && context.
showSelection() && mSelectedFeatureIds.contains( feature.id() );
932 if ( featureIsSelected && mSelectionSymbol )
936 const bool drawMarker = isMainRenderer && ( mDrawVertexMarkers && context.
drawEditingInformation() && ( !mVertexMarkerOnlyForSelection || featureIsSelected ) );
938 if ( !mNoSetLayerExpressionContext )
943 renderer->
renderFeature( feature, context, layer, featureIsSelected, drawMarker );
953 catch (
const QgsCsException &cse )
956 QgsDebugError( u
"Failed to transform a point while drawing a feature with ID '%1'. Ignoring this feature. %2"_s.arg( fet.
id() ).arg( cse.
what() ) );
963 if ( mSelectionSymbol && !mSelectedFeatureIds.empty() && isMainRenderer && context.
showSelection() )
965 mSelectionSymbol->startRender( context, mFields );
967 for (
const QHash< QgsSymbol *, QList<QgsFeature> > &featureLists : features )
969 for (
auto it = featureLists.constBegin(); it != featureLists.constEnd(); ++it )
971 const QList<QgsFeature> &lst = it.value();
972 for (
const QgsFeature &feature : lst )
979 const bool featureIsSelected = mSelectedFeatureIds.contains( feature.id() );
980 if ( !featureIsSelected )
986 mSelectionSymbol->renderFeature( feature, context, -1,
false, drawMarker );
991 mSelectionSymbol->stopRender( context );
994 std::unique_ptr< QgsScopedRuntimeProfile > cleanupProfile;
995 if ( mEnableProfile )
997 cleanupProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Finalizing" ), u
"rendering"_s );
1000 stopRenderer( renderer, selRenderer );
1014void QgsVectorLayerRenderer::prepareLabeling(
QgsVectorLayer *layer, QSet<QString> &attributeNames )
1024 if (
const QgsRuleBasedLabeling *rbl =
dynamic_cast<const QgsRuleBasedLabeling *
>( layer->
labeling() ) )
1026 mLabelProvider =
new QgsRuleBasedLabelSinkProvider( *rbl, layer, context.
labelSink() );
1031 mLabelProvider =
new QgsLabelSinkProvider( layer, QString(), context.
labelSink(), &settings );
1038 if ( mLabelProvider )
1040 engine2->addProvider( mLabelProvider );
1041 if ( !mLabelProvider->prepare( context, attributeNames ) )
1043 engine2->removeProvider( mLabelProvider );
1044 mLabelProvider =
nullptr;
1051 QgsPalLayerSettings &palyr = mContext.labelingEngine()->layer(
mLayerID );
1054 if ( palyr.limitNumLabels && palyr.maxNumLabels > 0 )
1056 QgsFeatureIterator fit = getFeatures( QgsFeatureRequest()
1057 .setFilterRect( mContext.extent() )
1058 .setNoAttributes() );
1062 int nFeatsToLabel = 0;
1071 if ( !palyr.mTextFontFound && !mLabelFontNotFoundNotified )
1073 emit labelingFontNotFound(
this, palyr.mTextFontFamily );
1074 mLabelFontNotFoundNotified =
true;
1079void QgsVectorLayerRenderer::prepareDiagrams(
QgsVectorLayer *layer, QSet<QString> &attributeNames )
1086 mDiagramProvider =
new QgsVectorLayerDiagramProvider( layer );
1088 engine2->addProvider( mDiagramProvider );
1089 if ( !mDiagramProvider->prepare( context, attributeNames ) )
1091 engine2->removeProvider( mDiagramProvider );
1092 mDiagramProvider =
nullptr;
Provides global constants and enumerations for use throughout the application.
@ ForceVector
Always force vector-based rendering, even when the result will be visually different to a raster-base...
QFlags< MapLayerRendererFlag > MapLayerRendererFlags
Flags which control how map layer renderers behave.
QFlags< VectorRenderingSimplificationFlag > VectorRenderingSimplificationFlags
Simplification flags for vector feature rendering.
@ NoSimplification
No simplification can be applied.
@ FullSimplification
All simplification hints can be applied ( Geometry + AA-disabling ).
@ GeometrySimplification
The geometries can be simplified using the current map2pixel context state.
@ Degrees
Degrees, for planar geographic CRS distance measurements.
@ EmbeddedSymbols
Retrieve any embedded feature symbology.
@ AffectsLabeling
If present, indicates that the renderer will participate in the map labeling problem.
@ AffectsLabeling
The layer rendering will interact with the map labeling.
@ SkipSymbolRendering
Disable symbol rendering while still drawing labels if enabled.
@ SemiTransparentCircle
Semi-transparent circle marker.
@ CustomColor
Use default symbol with a custom selection color.
@ CustomSymbol
Use a custom symbol.
@ Default
Use default symbol and selection colors.
virtual QgsPalLayerSettings settings(const QString &providerId=QString()) const =0
Gets associated label settings.
virtual QgsVectorLayerLabelProvider * provider(QgsVectorLayer *layer) const
Factory for label provider implementation.
static QgsRuntimeProfiler * profiler()
Returns the application runtime profiler.
static QgsGeometry topocentricHorizonGeometry(const QgsCoordinateReferenceSystem &topocentricCrs, const QgsCoordinateReferenceSystem &outputCrs, const QgsCoordinateTransformContext &transformContext, double degreeStep=1.0)
Builds the geometry of the visible horizon (in outputCrs) when topocentricCrs is a topocentric CRS.
bool topocentricOrigin(double &latitude, double &longitude) const
Returns the topocentric origin of a topocentric compatible CRS.
Qgis::DistanceUnit mapUnits
static QgsExpressionContextScope * updateSymbolScope(const QgsSymbol *symbol, QgsExpressionContextScope *symbolScope=nullptr)
Updates a symbol scope related to a QgsSymbol to an expression context.
QgsExpressionContextScope * popScope()
Removes the last scope from the expression context and return it.
void appendScope(QgsExpressionContextScope *scope)
Appends a scope to the end of the context.
void setFeedback(QgsFeedback *feedback)
Attach a feedback object that can be queried regularly by the expression engine to check if expressio...
void setFeature(const QgsFeature &feature)
Convenience function for setting a feature for the context.
virtual Q_DECL_DEPRECATED void filterFeatures(const QgsVectorLayer *layer, QgsFeatureRequest &featureRequest) const
Add additional filters to the feature request to further restrict the features returned by the reques...
virtual Q_DECL_DEPRECATED bool isFilterThreadSafe() const
Returns true if the filterFeature function is thread safe, which will lead to reliance on layer ID in...
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.
void setInterruptionChecker(QgsFeedback *interruptionChecker)
Attach an object that can be queried regularly by the iterator to check if it must stopped.
bool isValid() const
Will return if this iterator is valid.
An interface for objects which generate feature renderers for vector layers.
Abstract base class for all 2D vector feature renderers.
virtual bool canSkipRender()
Returns true if the renderer can be entirely skipped, i.e.
virtual void modifyRequestExtent(QgsRectangle &extent, QgsRenderContext &context)
Allows for a renderer to modify the extent of a feature request prior to rendering.
virtual QString filter(const QgsFields &fields=QgsFields())
If a renderer does not require all the features this method may be overridden and return an expressio...
QgsPaintEffect * paintEffect() const
Returns the current paint effect for the renderer.
virtual QgsSymbolList symbols(QgsRenderContext &context) const
Returns list of symbols used by the renderer.
virtual void stopRender(QgsRenderContext &context)
Must be called when a render cycle has finished, to allow the renderer to clean up.
virtual bool usesEmbeddedSymbols() const
Returns true if the renderer uses embedded symbols for features.
virtual bool renderFeature(const QgsFeature &feature, QgsRenderContext &context, int layer=-1, bool selected=false, bool drawVertexMarker=false)
Render a feature using this renderer in the given context.
double referenceScale() const
Returns the symbology reference scale.
bool usingSymbolLevels() const
virtual QgsFeatureRenderer::Capabilities capabilities()
Returns details about internals of this renderer.
virtual QgsSymbol * symbolForFeature(const QgsFeature &feature, QgsRenderContext &context) const =0
To be overridden.
@ SymbolLevels
Rendering with symbol levels (i.e. implements symbols(), symbolForFeature()).
bool orderByEnabled() const
Returns whether custom ordering will be applied before features are processed by this renderer.
virtual bool willRenderFeature(const QgsFeature &feature, QgsRenderContext &context) const
Returns whether the renderer will render a feature or not.
virtual void startRender(QgsRenderContext &context, const QgsFields &fields)
Must be called when a new render cycle is started.
void setVertexMarkerAppearance(Qgis::VertexMarkerType type, double size)
Sets type and size of editing vertex markers for subsequent rendering.
QgsFeatureRequest::OrderBy orderBy() const
Gets the order in which features shall be processed by this renderer.
virtual QgsSymbolList originalSymbolsForFeature(const QgsFeature &feature, QgsRenderContext &context) const
Equivalent of originalSymbolsForFeature() call extended to support renderers that may use more symbol...
virtual QgsFeatureRenderer * clone() const =0
Create a deep copy of this renderer.
QSet< int > CORE_EXPORT usedAttributeIndices(const QgsFields &fields) const
Returns a set of used, validated attribute indices.
QgsFeatureRequest & setFlags(Qgis::FeatureRequestFlags flags)
Sets flags that affect how features will be fetched.
QgsFeatureRequest & setSimplifyMethod(const QgsSimplifyMethod &simplifyMethod)
Set a simplification method for geometries that will be fetched.
QgsFeatureRequest & combineFilterExpression(const QString &expression)
Modifies the existing filter expression to add an additional expression filter.
Qgis::FeatureRequestFlags flags() const
Returns the flags which affect how features are fetched.
void setFeedback(QgsFeedback *feedback)
Attach a feedback object that can be queried regularly by the iterator to check if it should be cance...
QgsFeatureRequest & setOrderBy(const OrderBy &orderBy)
Set a list of order by clauses.
bool hasGeometry() const
Returns true if the feature has an associated geometry.
Q_INVOKABLE QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
A geometry is the spatial representation of a feature.
QgsGeometry intersection(const QgsGeometry &geometry, const QgsGeometryParameters ¶meters=QgsGeometryParameters(), QgsFeedback *feedback=nullptr) const
Returns a geometry representing the points shared by this geometry and other.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0, Qgis::GeosCreationFlags flags=Qgis::GeosCreationFlag::SkipEmptyInteriorRings)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
static QPainterPath calculatePainterClipRegion(const QList< QgsMapClippingRegion > ®ions, const QgsRenderContext &context, Qgis::LayerType layerType, bool &shouldClip)
Returns a QPainterPath representing the intersection of clipping regions from context which should be...
static QList< QgsMapClippingRegion > collectClippingRegionsForLayer(const QgsRenderContext &context, const QgsMapLayer *layer)
Collects the list of map clipping regions from a context which apply to a map layer.
static QgsGeometry calculateLabelIntersectionGeometry(const QList< QgsMapClippingRegion > ®ions, const QgsRenderContext &context, bool &shouldClip)
Returns the geometry representing the intersection of clipping regions from context which should be u...
static QgsGeometry calculateFeatureIntersectionGeometry(const QList< QgsMapClippingRegion > ®ions, const QgsRenderContext &context, bool &shouldClip)
Returns the geometry representing the intersection of clipping regions from context which should be u...
static QgsGeometry calculateFeatureRequestGeometry(const QList< QgsMapClippingRegion > ®ions, const QgsRenderContext &context, bool &shouldFilter)
Returns the geometry representing the intersection of clipping regions from context.
bool mReadyToCompose
The flag must be set to false in renderer's constructor if wants to use the smarter map redraws funct...
static constexpr int MAX_TIME_TO_USE_CACHED_PREVIEW_IMAGE
Maximum time (in ms) to allow display of a previously cached preview image while rendering layers,...
QString layerId() const
Gets access to the ID of the layer rendered by this class.
QgsRenderContext * renderContext()
Returns the render context associated with the renderer.
QgsMapLayerRenderer(const QString &layerID, QgsRenderContext *context=nullptr)
Constructor for QgsMapLayerRenderer, with the associated layerID and render context.
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
double mapUnitsPerPixel() const
Returns the current map units per pixel.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE(), Qgis::StringFormat format=Qgis::StringFormat::PlainText)
Adds a message to the log instance (and creates it if necessary).
virtual void begin(QgsRenderContext &context)
Begins intercepting paint operations to a render context.
virtual void end(QgsRenderContext &context)
Ends interception of paint operations to a render context, and draws the result to the render context...
bool enabled() const
Returns whether the effect is enabled.
Q_INVOKABLE QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be rounded to the spec...
QgsRectangle intersect(const QgsRectangle &rect) const
Returns the intersection with the given rectangle.
bool isFinite() const
Returns true if the rectangle has finite boundaries.
Contains information about the context of a rendering operation.
bool hasRenderedFeatureHandlers() const
Returns true if the context has any rendered feature handlers.
QgsVectorSimplifyMethod & vectorSimplifyMethod()
Returns the simplification settings to use when rendering vector layers.
QPainter * painter()
Returns the destination QPainter for the render operation.
QgsExpressionContext & expressionContext()
Gets the expression context.
void setVectorSimplifyMethod(const QgsVectorSimplifyMethod &simplifyMethod)
Sets the simplification setting to use when rendering vector layers.
QgsCoordinateTransformContext transformContext() const
Returns the context's coordinate transform context, which stores various information regarding which ...
QgsLabelSink * labelSink() const
Returns the associated label sink, or nullptr if not set.
const QgsRectangle & extent() const
When rendering a map layer, calling this method returns the "clipping" extent for the layer (in the l...
bool testFlag(Qgis::RenderContextFlag flag) const
Check whether a particular flag is enabled.
void setFeatureClipGeometry(const QgsGeometry &geometry)
Sets a geometry to use to clip features at render time.
const QgsFeatureFilterProvider * featureFilterProvider() const
Gets the filter feature provider used for additional filtering of rendered features.
QList< QgsRenderedFeatureHandlerInterface * > renderedFeatureHandlers() const
Returns the list of rendered feature handlers to use while rendering map layers.
void setSymbologyReferenceScale(double scale)
Sets the symbology reference scale.
bool showSelection() const
Returns true if vector selections should be shown in the rendered map.
const QgsMapToPixel & mapToPixel() const
Returns the context's map to pixel transform, which transforms between map coordinates and device coo...
QColor selectionColor() const
Returns the color to use when rendering selected features.
Qgis::RasterizedRenderingPolicy rasterizedRenderingPolicy() const
Returns the policy controlling when rasterisation of content during renders is permitted.
bool drawEditingInformation() const
Returns true if edit markers should be drawn during the render operation.
bool renderingStopped() const
Returns true if the rendering operation has been stopped and any ongoing rendering should be canceled...
QgsLabelingEngine * labelingEngine() const
Gets access to new labeling engine (may be nullptr).
QgsCoordinateTransform coordinateTransform() const
Returns the current coordinate transform for the context.
void setSelectionColor(const QColor &color)
Sets the color to use when rendering selected features.
An interface for classes which provide custom handlers for features rendered as part of a map render ...
void record(const QString &name, double time, const QString &group="startup", const QString &id=QString())
Manually adds a profile event with the given name and total time (in seconds).
Scoped object for setting the current thread name.
static const QgsSettingsEntryDouble * settingsDigitizingMarkerSizeMm
Settings entry digitizing marker size mm.
static const QgsSettingsEntryBool * settingsDigitizingMarkerOnlyForSelected
Settings entry digitizing marker only for selected.
static const QgsSettingsEntryString * settingsDigitizingMarkerStyle
Settings entry digitizing marker style.
void setTolerance(double tolerance)
Sets the tolerance of simplification in map units. Represents the maximum distance in map units betwe...
void setThreshold(float threshold)
Sets the simplification threshold in pixels. Represents the maximum distance in pixels between two co...
void setForceLocalOptimization(bool localOptimization)
Sets whether the simplification executes after fetch the geometries from provider,...
void setMethodType(MethodType methodType)
Sets the simplification type.
@ OptimizeForRendering
Simplify using the map2pixel data to optimize the rendering of geometries.
A feature renderer which renders all features with the same symbol.
QgsSymbol * symbol() const
Returns the symbol which will be rendered for every feature.
void stopRender(QgsRenderContext &context) override
Must be called when a render cycle has finished, to allow the renderer to clean up.
void startRender(QgsRenderContext &context, const QgsFields &fields) override
Must be called when a new render cycle is started.
int renderingPass() const
Specifies the rendering pass in which this symbol layer should be rendered.
int layer() const
The layer of this symbol level.
QgsSymbol * symbol() const
The symbol of this symbol level.
Abstract base class for all rendered symbols.
QgsSymbolLayer * symbolLayer(int layer)
Returns the symbol layer at the specified index.
void setColor(const QColor &color) const
Sets the color for the symbol.
int symbolLayerCount() const
Returns the total number of symbol layers contained in the symbol.
static std::unique_ptr< QgsSymbol > defaultSymbol(Qgis::GeometryType geomType)
Returns a new default symbol for the specified geometry type.
const QgsDateTimeRange & temporalRange() const
Returns the datetime range for the object.
bool isTemporal() const
Returns true if the object's temporal range is enabled, and the object will be filtered when renderin...
Partial snapshot of vector layer's state (only the members necessary for access to features).
static QgsGeometry getPointObstacleGeometry(QgsFeature &fet, QgsRenderContext &context, const QgsSymbolList &symbols)
Returns the geometry for a point feature which should be used as an obstacle for labels.
Qgis::MapLayerRendererFlags flags() const override
Returns flags which control how the map layer rendering behaves.
bool forceRasterRender() const override
Returns true if the renderer must be rendered to a raster paint device (e.g.
QgsVectorLayerRenderer(QgsVectorLayer *layer, QgsRenderContext &context)
~QgsVectorLayerRenderer() override
void setLayerRenderingTimeHint(int time) override
Sets approximate render time (in ms) for the layer to render.
bool render() override
Do the rendering (based on data stored in the class).
QgsFeedback * feedback() const override
Access to feedback object of the layer renderer (may be nullptr).
Implementation of layer selection properties for vector layers.
Qgis::SelectionRenderingMode selectionRenderingMode
Encapsulates the context in which a QgsVectorLayer's temporal capabilities will be applied.
void setLayer(QgsVectorLayer *layer)
Sets the associated layer.
Represents a vector layer which manages a vector based dataset.
bool labelsEnabled() const
Returns whether the layer contains labels which are enabled and should be drawn.
QgsMapLayerTemporalProperties * temporalProperties() override
Returns the layer's temporal properties.
QPainter::CompositionMode featureBlendMode() const
Returns the current blending mode for features.
bool diagramsEnabled() const
Returns whether the layer contains diagrams which are enabled and should be drawn.
Q_INVOKABLE const QgsFeatureIds & selectedFeatureIds() const
Returns a list of the selected features IDs in this layer.
const QgsAbstractVectorLayerLabeling * labeling() const
Access to const labeling configuration.
bool simplifyDrawingCanbeApplied(const QgsRenderContext &renderContext, Qgis::VectorRenderingSimplificationFlag simplifyHint) const
Returns whether the VectorLayer can apply the specified simplification hint.
QgsFeatureRenderer * renderer()
Returns the feature renderer used for rendering the features in the layer in 2D map views.
Q_INVOKABLE QgsVectorLayerEditBuffer * editBuffer()
Buffer with uncommitted editing operations. Only valid after editing has been turned on.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
const QgsVectorSimplifyMethod & simplifyMethod() const
Returns the simplification settings for fast rendering of features.
QList< const QgsFeatureRendererGenerator * > featureRendererGenerators() const
Returns a list of the feature renderer generators owned by the layer.
QgsMapLayerSelectionProperties * selectionProperties() override
Returns the layer's selection properties.
Qgis::VectorRenderingSimplificationFlags simplifyHints() const
Gets the simplification hints of the vector layer managed.
void setSimplifyHints(Qgis::VectorRenderingSimplificationFlags simplifyHints)
Sets the simplification hints of the vector layer managed.
void setTolerance(double tolerance)
Sets the tolerance of simplification in map units. Represents the maximum distance in map units betwe...
#define Q_NOWARN_DEPRECATED_POP
#define Q_NOWARN_DEPRECATED_PUSH
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference).
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
QList< QgsSymbolLevel > QgsSymbolLevelOrder
QList< QgsSymbolLevelItem > QgsSymbolLevel
QList< QgsSymbol * > QgsSymbolList