18#ifndef QGSMAPRENDERERTASK_H
19#define QGSMAPRENDERERTASK_H
53 ImageAllocationFail = 1,
55 ImageUnsupportedFormat
69 const QString &fileName,
70 const QString &fileFormat = QString(
"PNG" ),
71 bool forceRaster =
false,
82 const QString &fileName,
83 const QString &fileFormat = QString(
"PNG" ),
84 bool forceRaster =
false,
99 void addAnnotations(
const QList<QgsAnnotation *> &annotations );
104 void addDecorations(
const QList<QgsMapDecoration *> &decorations );
133 void finished(
bool result )
override;
139 bool mErrored =
false;
144 std::unique_ptr< QgsMapRendererJob > mJob;
146 std::unique_ptr< QgsAbstractGeoPdfExporter > mGeoPdfExporter;
147 std::unique_ptr< QgsRenderedFeatureHandlerInterface > mRenderedFeatureHandler;
149 QPainter *mPainter =
nullptr;
150 QPainter *mDestPainter =
nullptr;
152 std::unique_ptr< QPdfWriter > mPdfWriter;
154 std::unique_ptr< QPainter > mTempPainter;
158 bool mForceRaster =
false;
159 bool mSaveWorldFile =
false;
160 bool mExportMetadata =
false;
161 bool mGeoPDF =
false;
164 QList< QgsAnnotation * > mAnnotations;
165 QList< QgsMapDecoration * > mDecorations;
166 QMap< QString, QString> mLayerIdToLayerNameMap;
167 QStringList mMapLayerOrder;
Abstract base class for GeoPDF exporters.
Job implementation that renders everything sequentially using a custom painter.
QgsTask task which draws a map to an image file or a painter as a background task.
void errorOccurred(int error)
Emitted when map rendering failed.
@ ImageSaveFail
Image save failure.
void setSaveWorldFile(bool save)
Sets whether the image file will be georeferenced (embedded or via a world file).
void setExportMetadata(bool exportMetadata)
Sets whether metadata such as title and subject will be exported whenever possible.
~QgsMapRendererTask() override
void renderingComplete()
Emitted when the map rendering is successfully completed.
The QgsMapSettings class contains configuration for rendering of the map.
Abstract base class for long running background tasks.
virtual void finished(bool result)
If the task is managed by a QgsTaskManager, this will be called after the task has finished (whether ...
virtual bool run()=0
Performs the task's operation.
virtual void cancel()
Notifies the task that it should terminate.
@ CanCancel
Task can be canceled.