Add empty line for list rendering

This commit is contained in:
Harrissou Sant-anna 2019-09-17 16:32:38 +02:00 committed by Nyall Dawson
parent b4b2a6e9de
commit 493a8c814f

View File

@ -24,6 +24,7 @@ operation is quite important because the rendering can take considerable
amount of time. amount of time.
Common use case: Common use case:
0. prepare QgsMapSettings with rendering configuration (extent, layer, map size, ...) 0. prepare QgsMapSettings with rendering configuration (extent, layer, map size, ...)
1. create QgsMapRendererJob subclass with QgsMapSettings instance 1. create QgsMapRendererJob subclass with QgsMapSettings instance
2. connect to job's finished() signal 2. connect to job's finished() signal
@ -33,6 +34,7 @@ Common use case:
It is possible to cancel the rendering job while it is active by calling cancel() function. It is possible to cancel the rendering job while it is active by calling cancel() function.
The following subclasses are available: The following subclasses are available:
- QgsMapRendererSequentialJob - renders map in one background thread to an image - QgsMapRendererSequentialJob - renders map in one background thread to an image
- QgsMapRendererParallelJob - renders map in multiple background threads to an image - QgsMapRendererParallelJob - renders map in multiple background threads to an image
- QgsMapRendererCustomPainterJob - renders map with given QPainter in one background thread - QgsMapRendererCustomPainterJob - renders map with given QPainter in one background thread