18#ifndef QGSMAPRENDERERTASK_H
19#define QGSMAPRENDERERTASK_H
55 ImageAllocationFail = 1,
57 ImageUnsupportedFormat
71 const QString &fileName,
72 const QString &fileFormat = QString(
"PNG" ),
73 bool forceRaster =
false,
84 const QString &fileName,
85 const QString &fileFormat = QString(
"PNG" ),
86 bool forceRaster =
false,
101 void addAnnotations(
const QList<QgsAnnotation *> &annotations );
106 void addDecorations(
const QList<QgsMapDecoration *> &decorations );
135 void finished(
bool result )
override;
141 bool mErrored =
false;
146 std::unique_ptr< QgsMapRendererJob > mJob;
148 std::unique_ptr< QgsAbstractGeoPdfExporter > mGeoPdfExporter;
149 std::unique_ptr< QgsRenderedFeatureHandlerInterface > mRenderedFeatureHandler;
151 QPainter *mPainter =
nullptr;
152 QPainter *mDestPainter =
nullptr;
155 std::unique_ptr< QPrinter > mPrinter;
158 std::unique_ptr< QPainter > mTempPainter;
162 bool mForceRaster =
false;
163 bool mSaveWorldFile =
false;
164 bool mExportMetadata =
false;
165 bool mGeoPDF =
false;
168 QList< QgsAnnotation * > mAnnotations;
169 QList< QgsMapDecoration * > mDecorations;
170 QMap< QString, QString> mLayerIdToLayerNameMap;
171 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.