54 , mLayerName( layer->name() )
55 , mFields( layer->fields() )
57 , mNoSetLayerExpressionContext( layer->customProperty( QStringLiteral(
"_noset_layer_expression_context" ) ).toBool() )
58 , mEnableProfile( context.flags() &
Qgis::RenderContextFlag::RecordProfile )
62 std::unique_ptr< QgsFeatureRenderer > mainRenderer( layer->
renderer() ? layer->
renderer()->
clone() : nullptr );
65 switch ( selectionProperties->selectionRenderingMode() )
73 const QColor layerSelectionColor = selectionProperties->selectionColor();
74 if ( layerSelectionColor.isValid() )
81 if (
QgsSymbol *selectionSymbol = qobject_cast< QgsVectorLayerSelectionProperties * >( layer->
selectionProperties() )->selectionSymbol() )
82 mSelectionSymbol.reset( selectionSymbol->clone() );
93 return g1->level() < g2->level();
96 bool insertedMainRenderer =
false;
97 double prevLevel = std::numeric_limits< double >::lowest();
99 mRenderer = mainRenderer.get();
102 if ( generator->level() >= 0 && prevLevel < 0 && !insertedMainRenderer )
105 mRenderers.emplace_back( std::move( mainRenderer ) );
106 insertedMainRenderer =
true;
108 mRenderers.emplace_back( generator->createRenderer() );
109 prevLevel = generator->level();
115 mRenderers.emplace_back( std::move( mainRenderer ) );
120 mDrawVertexMarkers =
nullptr != layer->
editBuffer();
130 mTemporalFilter = qobject_cast< const QgsVectorLayerTemporalProperties * >( layer->
temporalProperties() )->createFilterString( temporalContext, context.
temporalRange() );
131 QgsDebugMsgLevel(
"Rendering with Temporal Filter: " + mTemporalFilter, 2 );
151 if ( markerTypeString == QLatin1String(
"Cross" ) )
155 else if ( markerTypeString == QLatin1String(
"SemiTransparentCircle" ) )
169 if ( mDrawVertexMarkers )
174 if ( !mNoSetLayerExpressionContext )
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;
201 ( ( layer->
blendMode() != QPainter::CompositionMode_SourceOver )
206 mForceRasterRender =
true;
210 mPreparationTime = timer.elapsed();
217 mRenderTimeHint = time;
222 return mFeedback.get();
227 return mForceRasterRender;
238 if ( mRenderers.empty() )
241 mErrors.append( QObject::tr(
"No renderer for drawing." ) );
245 std::unique_ptr< QgsScopedRuntimeProfile > profile;
246 if ( mEnableProfile )
248 profile = std::make_unique< QgsScopedRuntimeProfile >( mLayerName, QStringLiteral(
"rendering" ),
layerId() );
249 if ( mPreparationTime > 0 )
257 mBlockRenderUpdates =
true;
258 mElapsedTimer.start();
262 int rendererIndex = 0;
263 for (
const std::unique_ptr< QgsFeatureRenderer > &renderer : mRenderers )
265 if ( mFeedback->isCanceled() || !res )
269 res = renderInternal( renderer.get(), rendererIndex++ ) && res;
276bool QgsVectorLayerRenderer::renderInternal(
QgsFeatureRenderer *renderer,
int rendererIndex )
278 const bool isMainRenderer = renderer == mRenderer;
283 if ( renderer->
type() == QLatin1String(
"nullSymbol" ) )
287 if ( !isMainRenderer ||
288 ( !mDrawVertexMarkers && !mLabelProvider && !mDiagramProvider && mSelectedFeatureIds.isEmpty() ) )
292 std::unique_ptr< QgsScopedRuntimeProfile > preparingProfile;
293 if ( mEnableProfile )
296 if ( mRenderers.size() > 1 )
297 title = QObject::tr(
"Preparing render %1" ).arg( rendererIndex + 1 );
299 title = QObject::tr(
"Preparing render" );
300 preparingProfile = std::make_unique< QgsScopedRuntimeProfile >( title, QStringLiteral(
"rendering" ) );
305 bool usingEffect =
false;
313 if ( context.
useAdvancedEffects() && mFeatureBlendMode != QPainter::CompositionMode_SourceOver )
317 context.
painter()->setCompositionMode( mFeatureBlendMode );
329 QString rendererFilter = renderer->
filter( mFields );
332 if ( !mClippingRegions.empty() )
339 bool needsPainterClipPath =
false;
341 if ( needsPainterClipPath )
342 context.
painter()->setClipPath( path, Qt::IntersectClip );
346 if ( mDiagramProvider )
361 if ( featureFilterProvider )
365 if ( !rendererFilter.isEmpty() && rendererFilter != QLatin1String(
"TRUE" ) )
369 if ( !mTemporalFilter.isEmpty() )
380 if ( mSimplifyGeometry )
382 double map2pixelTol = mSimplifyMethod.
threshold();
383 bool validTransform =
true;
412 double sourceHypothenuse = std::sqrt( minimumSrcPoint.sqrDist( maximumSrcPoint ) );
413 double targetHypothenuse = std::sqrt( minimumDstPoint.sqrDist( maximumDstPoint ) );
415 QgsDebugMsgLevel( QStringLiteral(
"Simplify - SourceHypothenuse=%1" ).arg( sourceHypothenuse ), 4 );
416 QgsDebugMsgLevel( QStringLiteral(
"Simplify - TargetHypothenuse=%1" ).arg( targetHypothenuse ), 4 );
419 map2pixelTol *= ( sourceHypothenuse / targetHypothenuse );
425 validTransform =
false;
429 if ( validTransform )
461 std::unique_ptr< QgsScopedRuntimeProfile > preparingFeatureItProfile;
462 if ( mEnableProfile )
464 preparingFeatureItProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Prepare feature iteration" ), QStringLiteral(
"rendering" ) );
475 preparingFeatureItProfile.reset();
476 preparingProfile.reset();
478 std::unique_ptr< QgsScopedRuntimeProfile > renderingProfile;
479 if ( mEnableProfile )
481 renderingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Rendering" ), QStringLiteral(
"rendering" ) );
485 drawRendererLevels( renderer, fit );
487 drawRenderer( renderer, fit );
491 mErrors.append( QStringLiteral(
"Data source invalid" ) );
508 quint64 totalLabelTime = 0;
510 const bool isMainRenderer = renderer == mRenderer;
516 std::unique_ptr< QgsGeometryEngine > clipEngine;
517 if ( mApplyClipFilter )
520 clipEngine->prepareGeometry();
523 if ( mSelectionSymbol && isMainRenderer )
524 mSelectionSymbol->startRender( context, mFields );
543 if ( mApplyClipGeometries )
546 if ( ! mNoSetLayerExpressionContext )
549 const bool featureIsSelected = isMainRenderer && context.
showSelection() && mSelectedFeatureIds.contains( fet.
id() );
550 bool drawMarker = isMainRenderer && ( mDrawVertexMarkers && context.
drawEditingInformation() && ( !mVertexMarkerOnlyForSelection || featureIsSelected ) );
553 bool rendered =
false;
556 if ( featureIsSelected && mSelectionSymbol )
560 mSelectionSymbol->renderFeature( fet, context, -1,
false, drawMarker );
565 rendered = renderer->
renderFeature( fet, context, -1, featureIsSelected, drawMarker );
585 if ( isMainRenderer && context.
labelingEngine() && ( mLabelProvider || mDiagramProvider ) )
587 const quint64 startLabelTime = timer.elapsed();
596 if ( !symbols.isEmpty() )
598 symbol = symbols.at( 0 );
602 if ( mApplyLabelClipGeometries )
605 if ( mLabelProvider )
607 mLabelProvider->
registerFeature( fet, context, obstacleGeometry, symbol );
609 if ( mDiagramProvider )
614 if ( mApplyLabelClipGeometries )
617 totalLabelTime += ( timer.elapsed() - startLabelTime );
624 QgsDebugError( QStringLiteral(
"Failed to transform a point while drawing a feature with ID '%1'. Ignoring this feature. %2" )
625 .arg( fet.
id() ).arg( cse.
what() ) );
631 std::unique_ptr< QgsScopedRuntimeProfile > cleanupProfile;
632 if ( mEnableProfile )
634 QgsApplication::profiler()->
record( QObject::tr(
"Rendering features" ), ( timer.elapsed() - totalLabelTime ) / 1000.0, QStringLiteral(
"rendering" ) );
635 if ( totalLabelTime > 0 )
639 cleanupProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Finalizing" ), QStringLiteral(
"rendering" ) );
642 if ( mSelectionSymbol && isMainRenderer )
643 mSelectionSymbol->stopRender( context );
645 stopRenderer( renderer,
nullptr );
650 const bool isMainRenderer = renderer == mRenderer;
663 QList<QHash< QgsSymbol *, QList<QgsFeature> >> features;
666 features.push_back( {} );
668 QSet<int> orderByAttributeIdx;
677 if ( !mSelectedFeatureIds.isEmpty() )
686 std::unique_ptr< QgsExpressionContextScopePopper > scopePopper = std::make_unique< QgsExpressionContextScopePopper >( context.
expressionContext(), symbolScope );
689 std::unique_ptr< QgsGeometryEngine > clipEngine;
690 if ( mApplyClipFilter )
693 clipEngine->prepareGeometry();
696 if ( mApplyLabelClipGeometries )
699 std::unique_ptr< QgsScopedRuntimeProfile > fetchFeaturesProfile;
700 if ( mEnableProfile )
702 fetchFeaturesProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Fetching features" ), QStringLiteral(
"rendering" ) );
707 quint64 totalLabelTime = 0;
711 QVector<QVariant> prevValues;
716 qDebug(
"rendering stop!" );
717 stopRenderer( renderer, selRenderer );
727 if ( ! mNoSetLayerExpressionContext )
737 QVector<QVariant> currentValues;
738 for (
const int idx : std::as_const( orderByAttributeIdx ) )
740 currentValues.push_back( fet.
attribute( idx ) );
742 if ( prevValues.empty() )
744 prevValues = std::move( currentValues );
746 else if ( currentValues != prevValues )
750 prevValues = std::move( currentValues );
751 features.push_back( {} );
757 QHash<QgsSymbol *, QList<QgsFeature> > &featuresBack = features.back();
758 auto featuresBackIt = featuresBack.find( sym );
759 if ( featuresBackIt == featuresBack.end() )
761 featuresBackIt = featuresBack.insert( sym, QList<QgsFeature>() );
763 featuresBackIt->append( fet );
767 if ( isMainRenderer && context.
labelingEngine() && ( mLabelProvider || mDiagramProvider ) )
769 const quint64 startLabelTime = timer.elapsed();
779 if ( !symbols.isEmpty() )
781 symbol = symbols.at( 0 );
785 if ( mLabelProvider )
787 mLabelProvider->
registerFeature( fet, context, obstacleGeometry, symbol );
789 if ( mDiagramProvider )
794 totalLabelTime += ( timer.elapsed() - startLabelTime );
798 fetchFeaturesProfile.reset();
799 if ( mEnableProfile )
801 if ( totalLabelTime > 0 )
807 if ( mApplyLabelClipGeometries )
812 if ( features.back().empty() )
815 stopRenderer( renderer, selRenderer );
820 std::unique_ptr< QgsScopedRuntimeProfile > sortingProfile;
821 if ( mEnableProfile )
823 sortingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Sorting features" ), QStringLiteral(
"rendering" ) );
828 for (
int i = 0; i < symbols.count(); i++ )
834 if ( level < 0 || level >= 1000 )
837 while ( level >= levels.count() )
839 levels[level].append( item );
842 sortingProfile.reset();
844 if ( mApplyClipGeometries )
848 for (
const QHash<
QgsSymbol *, QList<QgsFeature> > &featureLists : features )
850 for (
int l = 0; l < levels.count(); l++ )
853 std::unique_ptr< QgsScopedRuntimeProfile > renderingProfile;
854 if ( mEnableProfile )
856 renderingProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Rendering symbol level %1" ).arg( l + 1 ), QStringLiteral(
"rendering" ) );
859 for (
int i = 0; i < level.count(); i++ )
862 if ( !featureLists.contains( item.
symbol() ) )
864 QgsDebugError( QStringLiteral(
"level item's symbol not found!" ) );
867 const int layer = item.
layer();
868 const QList<QgsFeature> &lst = featureLists[item.
symbol()];
873 stopRenderer( renderer, selRenderer );
877 const bool featureIsSelected = isMainRenderer && context.
showSelection() && mSelectedFeatureIds.contains( feature.id() );
878 if ( featureIsSelected && mSelectionSymbol )
882 const bool drawMarker = isMainRenderer && ( mDrawVertexMarkers && context.
drawEditingInformation() && ( !mVertexMarkerOnlyForSelection || featureIsSelected ) );
884 if ( ! mNoSetLayerExpressionContext )
889 renderer->
renderFeature( feature, context, layer, featureIsSelected, drawMarker );
902 QgsDebugError( QStringLiteral(
"Failed to transform a point while drawing a feature with ID '%1'. Ignoring this feature. %2" )
903 .arg( fet.
id() ).arg( cse.
what() ) );
910 if ( mSelectionSymbol && !mSelectedFeatureIds.empty() && isMainRenderer && context.
showSelection() )
912 mSelectionSymbol->startRender( context, mFields );
914 for (
const QHash<
QgsSymbol *, QList<QgsFeature> > &featureLists : features )
916 for (
auto it = featureLists.constBegin(); it != featureLists.constEnd(); ++it )
918 const QList<QgsFeature> &lst = it.value();
926 const bool featureIsSelected = mSelectedFeatureIds.contains( feature.id() );
927 if ( !featureIsSelected )
933 mSelectionSymbol->renderFeature( feature, context, -1,
false, drawMarker );
938 mSelectionSymbol->stopRender( context );
941 std::unique_ptr< QgsScopedRuntimeProfile > cleanupProfile;
942 if ( mEnableProfile )
944 cleanupProfile = std::make_unique< QgsScopedRuntimeProfile >( QObject::tr(
"Finalizing" ), QStringLiteral(
"rendering" ) );
947 stopRenderer( renderer, selRenderer );
961void QgsVectorLayerRenderer::prepareLabeling(
QgsVectorLayer *layer, QSet<QString> &attributeNames )
985 if ( mLabelProvider )
987 engine2->addProvider( mLabelProvider );
988 if ( !mLabelProvider->
prepare( context, attributeNames ) )
990 engine2->removeProvider( mLabelProvider );
991 mLabelProvider =
nullptr;
1001 if ( palyr.limitNumLabels && palyr.maxNumLabels > 0 )
1004 .setFilterRect( mContext.extent() )
1009 int nFeatsToLabel = 0;
1018 if ( !palyr.mTextFontFound && !mLabelFontNotFoundNotified )
1020 emit labelingFontNotFound(
this, palyr.mTextFontFamily );
1021 mLabelFontNotFoundNotified =
true;
1026void QgsVectorLayerRenderer::prepareDiagrams(
QgsVectorLayer *layer, QSet<QString> &attributeNames )
1035 engine2->addProvider( mDiagramProvider );
1036 if ( !mDiagramProvider->
prepare( context, attributeNames ) )
1038 engine2->removeProvider( mDiagramProvider );
1039 mDiagramProvider =
nullptr;
The Qgis class provides global constants for use throughout the application.
@ Degrees
Degrees, for planar geographic CRS distance measurements.
@ EmbeddedSymbols
Retrieve any embedded feature symbology (since QGIS 3.20)
@ SkipSymbolRendering
Disable symbol rendering while still drawing labels if enabled (since QGIS 3.24)
@ UseAdvancedEffects
Enable layer opacity and blending effects.
@ 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.
Qgis::DistanceUnit mapUnits
Custom exception class for Coordinate Reference System related exceptions.
Single scope for storing variables and functions for use within a QgsExpressionContext.
static QgsExpressionContextScope * updateSymbolScope(const QgsSymbol *symbol, QgsExpressionContextScope *symbolScope=nullptr)
Updates a symbol scope related to a QgsSymbol to an expression context.
static QgsExpressionContextScope * layerScope(const QgsMapLayer *layer)
Creates a new scope which contains variables and functions relating to a QgsMapLayer.
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.
Abstract interface for use by classes that filter the features or attributes of a layer.
virtual void filterFeatures(const QgsVectorLayer *layer, QgsFeatureRequest &featureRequest) const =0
Add additional filters to the feature request to further restrict the features returned by the reques...
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.
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 QString dump() const
Returns debug information about this renderer.
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.
This class wraps a request for features to a vector layer (or directly its vector data provider).
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.
QgsFeatureRequest & setSubsetOfAttributes(const QgsAttributeList &attrs)
Set a subset of attributes that will be 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 & setExpressionContext(const QgsExpressionContext &context)
Sets the expression context used to evaluate filter expressions.
QgsFeatureRequest & setNoAttributes()
Set that no attributes will be fetched.
QgsFeatureRequest & setOrderBy(const OrderBy &orderBy)
Set a list of order by clauses.
QgsFeatureRequest & setFilterRect(const QgsRectangle &rectangle)
Sets the rectangle from which features will be taken.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
bool hasGeometry() const
Returns true if the feature has an associated geometry.
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.
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...
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
static QgsGeometryEngine * createGeometryEngine(const QgsAbstractGeometry *geometry, double precision=0.0)
Creates and returns a new geometry engine representing the specified geometry using precision on a gr...
Implements a derived label provider for use with QgsLabelSink.
The QgsLabelingEngine class provides map labeling functionality.
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.
Base class for utility classes that encapsulate information necessary for rendering of map layers.
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.
QPainter::CompositionMode blendMode() const
Returns the current blending mode for a layer.
Perform transforms between map coordinates and device coordinates.
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)
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.
Contains settings for how a map layer will be labeled.
A class to represent a 2D point.
A rectangle specified with double values.
QString toString(int precision=16) const
Returns a string representation of form xmin,ymin : xmax,ymax Coordinates will be truncated to the sp...
double xMinimum() const
Returns the x minimum value (left side of rectangle).
double yMinimum() const
Returns the y minimum value (bottom side of rectangle).
double xMaximum() const
Returns the x maximum value (right side of rectangle).
double yMaximum() const
Returns the y maximum value (top side of rectangle).
QgsPointXY center() const
Returns the center point of the rectangle.
bool isEmpty() const
Returns true if the rectangle has no area.
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 useAdvancedEffects() const
Returns true if advanced effects such as blend modes such be used.
bool hasRenderedFeatureHandlers() const
Returns true if the context has any rendered feature handlers.
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.
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 QgsVectorSimplifyMethod & vectorSimplifyMethod() const
Returns the simplification settings to use when rendering vector layers.
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.
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 provider custom handlers for features rendered as part of a map render...
Implements a derived label provider for rule based labels for use with QgsLabelSink.
Rule based labeling for a vector layer.
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 saving and restoring a QPainter object's state.
T value(const QString &dynamicKeyPart=QString()) const
Returns settings value.
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.
This class contains information about how to simplify geometries fetched from a QgsFeatureIterator.
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.
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 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...
The QgsVectorLayerDiagramProvider class implements support for diagrams within the labeling engine.
virtual bool prepare(const QgsRenderContext &context, QSet< QString > &attributeNames)
Prepare for registration of features.
virtual void registerFeature(QgsFeature &feature, QgsRenderContext &context, const QgsGeometry &obstacleGeometry=QgsGeometry())
Register a feature for labeling as one or more QgsLabelFeature objects stored into mFeatures.
void setClipFeatureGeometry(const QgsGeometry &geometry)
Sets a geometry to use to clip features to when registering them as diagrams.
Partial snapshot of vector layer's state (only the members necessary for access to features)
virtual bool prepare(QgsRenderContext &context, QSet< QString > &attributeNames)
Prepare for registration of 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.
virtual QList< QgsLabelFeature * > registerFeature(const QgsFeature &feature, QgsRenderContext &context, const QgsGeometry &obstacleGeometry=QgsGeometry(), const QgsSymbol *symbol=nullptr)
Register a feature for labeling as one or more QgsLabelFeature objects stored into mLabels.
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.
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 data sets.
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.
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.
bool simplifyDrawingCanbeApplied(const QgsRenderContext &renderContext, QgsVectorSimplifyMethod::SimplifyHint simplifyHint) const
Returns whether the VectorLayer can apply the specified simplification hint.
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.
This class contains information how to simplify geometries fetched from a vector layer.
bool forceLocalOptimization() const
Gets where the simplification executes, after fetch the geometries from provider, or when supported,...
void setSimplifyHints(SimplifyHints simplifyHints)
Sets the simplification hints of the vector layer managed.
SimplifyHints simplifyHints() const
Gets 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...
float threshold() const
Gets the simplification threshold of the vector layer managed.
@ GeometrySimplification
The geometries can be simplified using the current map2pixel context state.
@ FullSimplification
All simplification hints can be applied ( Geometry + AA-disabling )
@ NoSimplification
No simplification can be applied.
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