QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsmaprendererparalleljob.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsmaprendererparalleljob.h
3  --------------------------------------
4  Date : December 2013
5  Copyright : (C) 2013 by Martin Dobias
6  Email : wonder dot sk at gmail dot 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 #ifndef QGSMAPRENDERERPARALLELJOB_H
17 #define QGSMAPRENDERERPARALLELJOB_H
18 
19 #include "qgis_core.h"
20 #include "qgis_sip.h"
21 #include "qgsmaprendererjob.h"
22 
33 {
34  Q_OBJECT
35  public:
36  QgsMapRendererParallelJob( const QgsMapSettings &settings );
37  ~QgsMapRendererParallelJob() override;
38 
39  void start() override;
40  void cancel() override;
41  void cancelWithoutBlocking() override;
42  void waitForFinished() override;
43  bool isActive() const override;
44 
45  bool usedCachedLabels() const override;
47 
48  // from QgsMapRendererJobWithPreview
49  QImage renderedImage() override;
50 
51  private slots:
53  void renderLayersFinished();
55  void renderingFinished();
56 
57  private:
58 
60  static void renderLayerStatic( LayerRenderJob &job ) SIP_SKIP;
62  static void renderLabelsStatic( QgsMapRendererParallelJob *self ) SIP_SKIP;
63 
64  QImage mFinalImage;
65 
67  enum { Idle, RenderingLayers, RenderingLabels } mStatus SIP_SKIP;
68 
69  QFuture<void> mFuture;
70  QFutureWatcher<void> mFutureWatcher;
71 
72  LayerRenderJobs mLayerJobs;
73  LabelRenderJob mLabelJob;
74 
76  std::unique_ptr< QgsLabelingEngine > mLabelingEngineV2;
77  QFuture<void> mLabelingFuture;
78  QFutureWatcher<void> mLabelingFutureWatcher;
79 
80 };
81 
82 
83 #endif // QGSMAPRENDERERPARALLELJOB_H
virtual QImage renderedImage()=0
Gets a preview/resulting image.
The QgsMapSettings class contains configuration for rendering of the map.
#define SIP_SKIP
Definition: qgis_sip.h:126
Job implementation that renders all layers in parallel.
virtual void waitForFinished()=0
Block until the job has finished.
#define SIP_TRANSFER
Definition: qgis_sip.h:36
virtual void start()=0
Start the rendering job and immediately return.
Intermediate base class adding functionality that allows client to query the rendered image...
virtual void cancel()=0
Stop the rendering job - does not return until the job has terminated.
virtual void cancelWithoutBlocking()=0
Triggers cancellation of the rendering job without blocking.
Class that stores computed placement from labeling engine.
virtual QgsLabelingResults * takeLabelingResults()=0
Gets pointer to internal labeling engine (in order to get access to the results). ...
virtual bool isActive() const =0
Tell whether the rendering job is currently running in background.
virtual bool usedCachedLabels() const =0
Returns true if the render job was able to use a cached labeling solution.