QGIS API Documentation 3.43.0-Master (b60ef06885e)
qgsquickmapcanvasmap.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsquickmapcanvasmap.h
3 --------------------------------------
4 Date : 10.12.2014
5 Copyright : (C) 2014 by Matthias Kuhn
6 Email : matthias (at) opengis.ch
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 QGSQUICKMAPCANVASMAP_H
17#define QGSQUICKMAPCANVASMAP_H
18
19#include "qgis_quick.h"
20#include "qgsquickmapsettings.h"
21
22#include <QFutureSynchronizer>
23#include <QTimer>
24#include <QtQuick/QQuickItem>
25#include <qgsmapsettings.h>
26#include <qgspoint.h>
27
28#include <memory>
29
33
53class QUICK_EXPORT QgsQuickMapCanvasMap : public QQuickItem
54{
55 Q_OBJECT
56
65 Q_PROPERTY( QgsQuickMapSettings *mapSettings READ mapSettings )
66
67
71 Q_PROPERTY( bool freeze READ freeze WRITE setFreeze NOTIFY freezeChanged )
72
78 Q_PROPERTY( bool isRendering READ isRendering NOTIFY isRenderingChanged )
79
85 Q_PROPERTY( int mapUpdateInterval READ mapUpdateInterval WRITE setMapUpdateInterval NOTIFY mapUpdateIntervalChanged )
86
90 Q_PROPERTY( bool incrementalRendering READ incrementalRendering WRITE setIncrementalRendering NOTIFY incrementalRenderingChanged )
91
92 public:
94 explicit QgsQuickMapCanvasMap( QQuickItem *parent = nullptr );
96
97 QSGNode *updatePaintNode( QSGNode *oldNode, QQuickItem::UpdatePaintNodeData * ) override;
98
100 QgsQuickMapSettings *mapSettings() const;
101
103 bool freeze() const;
104
106 void setFreeze( bool freeze );
107
109 bool isRendering() const;
110
112 int mapUpdateInterval() const;
113
115 void setMapUpdateInterval( int mapUpdateInterval );
116
118 bool incrementalRendering() const;
119
121 void setIncrementalRendering( bool incrementalRendering );
122
123 signals:
124
128 void renderStarting();
129
133 void mapCanvasRefreshed();
134
136 void freezeChanged();
137
139 void isRenderingChanged();
140
142 void mapUpdateIntervalChanged();
143
145 void incrementalRenderingChanged();
146
147 protected:
148#if QT_VERSION < QT_VERSION_CHECK( 6, 0, 0 )
149 void geometryChanged( const QRectF &newGeometry, const QRectF &oldGeometry ) override;
150#else
151 void geometryChange( const QRectF &newGeometry, const QRectF &oldGeometry ) override;
152#endif
153
154 public slots:
156 void stopRendering();
157
161 void zoom( QPointF center, qreal scale );
162
166 void pan( QPointF oldPos, QPointF newPos );
167
172 void refresh();
173
177 void clearCache();
178
179 private slots:
180 void refreshMap();
181 void renderJobUpdated();
182 void renderJobFinished();
183 void layerRepaintRequested( bool deferred );
184 void onWindowChanged( QQuickWindow *window );
185 void onScreenChanged( QScreen *screen );
186 void onExtentChanged();
187 void onLayersChanged();
188 void onTemporalStateChanged();
189 void onzRangeChanged();
190
191 private:
192 enum class CacheInvalidationType
193 {
194 Temporal = 1 << 0,
195 Elevation = 1 << 1,
196 };
197
201 void destroyJob( QgsMapRendererJob *job );
202 QgsMapSettings prepareMapSettings() const;
203 void updateTransform();
204 void zoomToFullExtent();
205
206 void clearTemporalCache();
207 void clearElevationCache();
208 QFlags<CacheInvalidationType> mCacheInvalidations;
209
210 std::unique_ptr<QgsQuickMapSettings> mMapSettings;
211 bool mPinching = false;
212 QPoint mPinchStartPoint;
213 QgsMapRendererParallelJob *mJob = nullptr;
214 std::unique_ptr<QgsMapRendererCache> mCache;
215 QgsLabelingResults *mLabelingResults = nullptr;
216 QImage mImage;
217 QgsMapSettings mImageMapSettings;
218 QTimer mRefreshTimer;
219 bool mDirty = false;
220 bool mFreeze = false;
221 QList<QMetaObject::Connection> mLayerConnections;
222 QTimer mMapUpdateTimer;
223 bool mIncrementalRendering = false;
224 bool mSilentRefresh = false;
225 bool mDeferredRefreshPending = false;
226
227 QQuickWindow *mWindow = nullptr;
228};
229
230#endif // QGSQUICKMAPCANVASMAP_H
Stores computed placement from labeling engine.
Responsible for keeping a cache of rendered images resulting from a map rendering job.
Abstract base class for map rendering implementations.
Job implementation that renders all layers in parallel.
Contains configuration for rendering maps.
Implements a visual Qt Quick Item that does map rendering according to the current map settings.
Encapsulates QgsMapSettings class to offer settings of configuration of map rendering via QML propert...