QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
Public Types | Public Member Functions | List of all members
QgsMapRendererStagedRenderJob Class Reference

Render job implementation that renders maps in stages, allowing different stages (e.g. More...

#include <qgsmaprendererstagedrenderjob.h>

Inheritance diagram for QgsMapRendererStagedRenderJob:
Inheritance graph
[legend]

Public Types

enum  Flag { RenderLabelsByMapLayer = 0x01 }
 Flags which control the staged render job behavior. More...
 
enum  RenderStage { Symbology, Labels, Finished }
 Represents the stages of a rendering job. More...
 
- Public Types inherited from QgsMapRendererJob
typedef QList< QgsMapRendererJob::ErrorErrors
 

Public Member Functions

 QgsMapRendererStagedRenderJob (const QgsMapSettings &settings, Flags flags=nullptr)
 Constructor for QgsMapRendererStagedRenderJob, using the given map settings. More...
 
 ~QgsMapRendererStagedRenderJob () override
 
void cancel () override
 Stop the rendering job - does not return until the job has terminated. More...
 
void cancelWithoutBlocking () override
 Triggers cancellation of the rendering job without blocking. More...
 
QString currentLayerId ()
 Returns the ID of the current layer about to be rendered in the next render operation. More...
 
RenderStage currentStage () const
 Returns the current stage which will be rendered in the next render operation. More...
 
bool isActive () const override
 Tell whether the rendering job is currently running in background. More...
 
bool isFinished ()
 Returns true if the job is finished, and nothing remains to render. More...
 
bool nextPart ()
 Iterates to the next part to render. More...
 
bool renderCurrentPart (QPainter *painter)
 Renders the current part of the map to the specified painter. More...
 
void start () override
 Start the rendering job and immediately return. More...
 
QgsLabelingResultstakeLabelingResults () override
 Gets pointer to internal labeling engine (in order to get access to the results). More...
 
bool usedCachedLabels () const override
 Returns true if the render job was able to use a cached labeling solution. More...
 
void waitForFinished () override
 Block until the job has finished. More...
 
- Public Member Functions inherited from QgsMapRendererAbstractCustomPainterJob
 QgsMapRendererAbstractCustomPainterJob (const QgsMapSettings &settings)
 Constructor for QgsMapRendererAbstractCustomPainterJob, using the given map settings. More...
 
- Public Member Functions inherited from QgsMapRendererJob
 QgsMapRendererJob (const QgsMapSettings &settings)
 
Errors errors () const
 List of errors that happened during the rendering job - available when the rendering has been finished. More...
 
const QgsFeatureFilterProviderfeatureFilterProvider () const
 Returns the feature filter provider used by the QgsRenderContext of each LayerRenderJob. More...
 
const QgsMapSettingsmapSettings () const
 Returns map settings with which this job was started. More...
 
QHash< QgsMapLayer *, int > perLayerRenderingTime () const
 Returns the render time (in ms) per layer. More...
 
int renderingTime () const
 Returns the total time it took to finish the job (in milliseconds). More...
 
void setCache (QgsMapRendererCache *cache)
 Assign a cache to be used for reading and storing rendered images of individual layers. More...
 
void setFeatureFilterProvider (const QgsFeatureFilterProvider *f)
 Set the feature filter provider used by the QgsRenderContext of each LayerRenderJob. More...
 

Additional Inherited Members

- Signals inherited from QgsMapRendererJob
void finished ()
 emitted when asynchronous rendering is finished (or canceled). More...
 
void renderingLayersFinished ()
 Emitted when the layers are rendered. More...
 
- Static Public Attributes inherited from QgsMapRendererJob
static const QString LABEL_CACHE_ID
 QgsMapRendererCache ID string for cached label image. More...
 
- Protected Member Functions inherited from QgsMapRendererAbstractCustomPainterJob
void preparePainter (QPainter *painter, const QColor &backgroundColor=Qt::transparent)
 Prepares the given painter ready for a map render. More...
 
- Protected Member Functions inherited from QgsMapRendererJob
void cleanupJobs (LayerRenderJobs &jobs)
 
void cleanupLabelJob (LabelRenderJob &job)
 Handles clean up tasks for a label job, including deletion of images and storing cached label results. More...
 
void logRenderingTime (const LayerRenderJobs &jobs, const LabelRenderJob &labelJob)
 
LayerRenderJobs prepareJobs (QPainter *painter, QgsLabelingEngine *labelingEngine2, bool deferredPainterSet=false)
 Creates a list of layer rendering jobs and prepares them for later render. More...
 
bool prepareLabelCache () const
 Prepares the cache for storing the result of labeling. More...
 
LabelRenderJob prepareLabelingJob (QPainter *painter, QgsLabelingEngine *labelingEngine2, bool canUseLabelCache=true)
 Prepares a labeling job. More...
 
- Static Protected Member Functions inherited from QgsMapRendererJob
static QImage composeImage (const QgsMapSettings &settings, const LayerRenderJobs &jobs, const LabelRenderJob &labelJob)
 
static Q_DECL_DEPRECATED void drawLabeling (const QgsMapSettings &settings, QgsRenderContext &renderContext, QgsLabelingEngine *labelingEngine2, QPainter *painter)
 
static void drawLabeling (QgsRenderContext &renderContext, QgsLabelingEngine *labelingEngine2, QPainter *painter)
 
- Protected Attributes inherited from QgsMapRendererJob
QgsMapRendererCachemCache = nullptr
 
Errors mErrors
 
QHash< QgsWeakMapLayerPointer, int > mPerLayerRenderingTime
 Render time (in ms) per layer, by layer ID. More...
 
bool mRecordRenderingTime = true
 true if layer rendering time should be recorded. More...
 
QTime mRenderingStart
 
int mRenderingTime = 0
 
QgsMapSettings mSettings
 

Detailed Description

Render job implementation that renders maps in stages, allowing different stages (e.g.

individual map layers) to be rendered to different paint devices.

Since
QGIS 3.10

Definition at line 32 of file qgsmaprendererstagedrenderjob.h.

Member Enumeration Documentation

◆ Flag

Flags which control the staged render job behavior.

Enumerator
RenderLabelsByMapLayer 

Labels should be rendered in individual stages by map layer. This allows separation of labels belonging to different layers, but may affect label stacking order as the order will become layer-dependent, instead of per-label-dependent.

Definition at line 40 of file qgsmaprendererstagedrenderjob.h.

◆ RenderStage

Represents the stages of a rendering job.

Enumerator
Symbology 

Rendering layer symbology.

Labels 

Rendering labels.

Finished 

Rendering is finished.

Definition at line 49 of file qgsmaprendererstagedrenderjob.h.

Constructor & Destructor Documentation

◆ QgsMapRendererStagedRenderJob()

QgsMapRendererStagedRenderJob::QgsMapRendererStagedRenderJob ( const QgsMapSettings settings,
Flags  flags = nullptr 
)

Constructor for QgsMapRendererStagedRenderJob, using the given map settings.

The optional flags argument can be used to control the staged render job behavior.

Definition at line 25 of file qgsmaprendererstagedrenderjob.cpp.

◆ ~QgsMapRendererStagedRenderJob()

QgsMapRendererStagedRenderJob::~QgsMapRendererStagedRenderJob ( )
override

Definition at line 31 of file qgsmaprendererstagedrenderjob.cpp.

Member Function Documentation

◆ cancel()

void QgsMapRendererStagedRenderJob::cancel ( )
overridevirtual

Stop the rendering job - does not return until the job has terminated.

Does nothing if the rendering is not active.

Implements QgsMapRendererJob.

Definition at line 65 of file qgsmaprendererstagedrenderjob.cpp.

◆ cancelWithoutBlocking()

void QgsMapRendererStagedRenderJob::cancelWithoutBlocking ( )
overridevirtual

Triggers cancellation of the rendering job without blocking.

The render job will continue to operate until it is able to cancel, at which stage the finished() signal will be emitted. Does nothing if the rendering is not active.

Implements QgsMapRendererJob.

Definition at line 69 of file qgsmaprendererstagedrenderjob.cpp.

◆ currentLayerId()

QString QgsMapRendererStagedRenderJob::currentLayerId ( )

Returns the ID of the current layer about to be rendered in the next render operation.

Definition at line 225 of file qgsmaprendererstagedrenderjob.cpp.

◆ currentStage()

QgsMapRendererStagedRenderJob::RenderStage QgsMapRendererStagedRenderJob::currentStage ( ) const

Returns the current stage which will be rendered in the next render operation.

Definition at line 240 of file qgsmaprendererstagedrenderjob.cpp.

◆ isActive()

bool QgsMapRendererStagedRenderJob::isActive ( ) const
overridevirtual

Tell whether the rendering job is currently running in background.

Implements QgsMapRendererJob.

Definition at line 77 of file qgsmaprendererstagedrenderjob.cpp.

◆ isFinished()

bool QgsMapRendererStagedRenderJob::isFinished ( )

Returns true if the job is finished, and nothing remains to render.

Definition at line 220 of file qgsmaprendererstagedrenderjob.cpp.

◆ nextPart()

bool QgsMapRendererStagedRenderJob::nextPart ( )

Iterates to the next part to render.

Returns true if another part exists to render, or false if all parts have been rendered and nothing remains.

Definition at line 163 of file qgsmaprendererstagedrenderjob.cpp.

◆ renderCurrentPart()

bool QgsMapRendererStagedRenderJob::renderCurrentPart ( QPainter *  painter)

Renders the current part of the map to the specified painter.

Returns true if a part was rendered or false if nothing was rendered.

Definition at line 95 of file qgsmaprendererstagedrenderjob.cpp.

◆ start()

void QgsMapRendererStagedRenderJob::start ( )
overridevirtual

Start the rendering job and immediately return.

Does nothing if the rendering is already in progress.

Implements QgsMapRendererJob.

Definition at line 39 of file qgsmaprendererstagedrenderjob.cpp.

◆ takeLabelingResults()

QgsLabelingResults * QgsMapRendererStagedRenderJob::takeLabelingResults ( )
overridevirtual

Gets pointer to internal labeling engine (in order to get access to the results).

This should not be used if cached labeling was redrawn - see usedCachedLabels().

See also
usedCachedLabels()

Implements QgsMapRendererJob.

Definition at line 87 of file qgsmaprendererstagedrenderjob.cpp.

◆ usedCachedLabels()

bool QgsMapRendererStagedRenderJob::usedCachedLabels ( ) const
overridevirtual

Returns true if the render job was able to use a cached labeling solution.

If so, any previously stored labeling results (see takeLabelingResults()) should be retained.

See also
takeLabelingResults()
Since
QGIS 3.0

Implements QgsMapRendererJob.

Definition at line 82 of file qgsmaprendererstagedrenderjob.cpp.

◆ waitForFinished()

void QgsMapRendererStagedRenderJob::waitForFinished ( )
overridevirtual

Block until the job has finished.

Implements QgsMapRendererJob.

Definition at line 73 of file qgsmaprendererstagedrenderjob.cpp.


The documentation for this class was generated from the following files: