81#include <QApplication>
86#include <QGraphicsItem>
87#include <QGraphicsScene>
88#include <QGraphicsView>
94#include <QPropertyAnimation>
96#include <QResizeEvent>
100#include <QTextStream>
101#include <QVariantAnimation>
102#include <QWheelEvent>
106#include "moc_qgsmapcanvas.cpp"
108using namespace Qt::StringLiterals;
145 : QGraphicsView( parent )
147 , mExpressionContextScope( tr(
"Map Canvas" ) )
149 mScene =
new QGraphicsScene();
151 setLayout( mLayout );
154 setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
155 setVerticalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
156 setMouseTracking(
true );
157 setFocusPolicy( Qt::StrongFocus );
162 mResizeTimer =
new QTimer(
this );
163 mResizeTimer->setSingleShot(
true );
166 mRefreshTimer =
new QTimer(
this );
167 mRefreshTimer->setSingleShot(
true );
168 connect( mRefreshTimer, &QTimer::timeout,
this, &QgsMapCanvas::refreshMap );
171 mMap =
new QgsMapCanvasMap(
this );
209 if ( mSettings.destinationCrs() != crs )
229 QSize s = viewport()->size();
230 mSettings.setOutputSize( s );
234 setSceneRect( 0, 0, s.width(), s.height() );
235 mScene->setSceneRect( QRectF( 0, 0, s.width(), s.height() ) );
239 connect( &mMapUpdateTimer, &QTimer::timeout,
this, &QgsMapCanvas::mapUpdateTimeout );
240 mMapUpdateTimer.setInterval( 250 );
245 grabGesture( Qt::PinchGesture );
246 grabGesture( Qt::TapAndHoldGesture );
247 viewport()->setAttribute( Qt::WA_AcceptTouchEvents );
251 viewport()->setGraphicsEffect( mPreviewEffect );
255 connect( &mAutoRefreshTimer, &QTimer::timeout,
this, &QgsMapCanvas::autoRefreshTriggered );
259 setInteractive(
false );
274 mMapTool->deactivate();
275 disconnect( mMapTool, &QObject::destroyed,
this, &QgsMapCanvas::mapToolDestroyed );
283 const QList<QgsMapTool *> tools = findChildren<QgsMapTool *>();
286 tool->mCanvas =
nullptr;
294 qDeleteAll( mScene->items() );
296 mScene->deleteLater();
301 mLayout->addWidget( widget, edge );
315 for (
auto previewJob = mPreviewJobs.constBegin(); previewJob != mPreviewJobs.constEnd(); ++previewJob )
323 mPreviewJobs.clear();
331 factor = std::clamp( factor, magnifierMin, magnifierMax );
334 if ( !
qgsDoubleNear( factor, mSettings.magnificationFactor(), 0.01 ) )
336 mSettings.setMagnificationFactor( factor,
center );
344 return mSettings.magnificationFactor();
366 if ( index >= 0 && index <
layers.size() )
389 if ( mCurrentLayer ==
layer )
392 mCurrentLayer =
layer;
403 return nullptr != mJob;
416 if ( !mTheme.isEmpty() )
419 setLayersPrivate(
layers );
432void QgsMapCanvas::setLayersPrivate(
const QList<QgsMapLayer *> &layers )
434 const QList<QgsMapLayer *> oldLayers = mSettings.
layers();
437 if (
layers == oldLayers )
456 QgsVectorTileLayer *vtlayer = qobject_cast<QgsVectorTileLayer *>(
layer );
472 mSettings.setLayers(
layers );
474 for ( QgsMapLayer *
layer : std::as_const(
layers ) )
481 switch (
layer->type() )
485 QgsVectorLayer *vlayer = qobject_cast<QgsVectorLayer *>(
layer );
493 QgsVectorTileLayer *vtlayer = qobject_cast<QgsVectorTileLayer *>(
layer );
512 updateAutoRefreshTimer();
529 if ( mSettings.destinationCrs() == crs )
534 if ( !mSettings.visibleExtent().isEmpty() && crs.
isSameCelestialBody( mSettings.destinationCrs() ) )
552 mBlockExtentChangedSignal++;
553 mBlockScaleChangedSignal++;
559 mBlockItemPositionUpdates++;
561 mBlockItemPositionUpdates--;
564 mBlockExtentChangedSignal--;
565 mBlockScaleChangedSignal--;
567 mSettings.setDestinationCrs( crs );
589 mSettings.setFrameRate( -1 );
590 mSettings.setCurrentFrame( -1 );
593 mController = controller;
599void QgsMapCanvas::temporalControllerModeChanged()
603 switch ( temporalNavigationObject->navigationMode() )
607 mSettings.
setFrameRate( temporalNavigationObject->framesPerSecond() );
608 mSettings.
setCurrentFrame( temporalNavigationObject->currentFrameNumber() );
629 mSettings.setFlags(
flags );
636 if ( !allowOutdatedResults && mLabelingResultsOutdated )
639 return mLabelingResults.get();
644 if ( !allowOutdatedResults && mRenderedItemResultsOutdated )
647 return mRenderedItemResults.get();
655 if ( mJob && mJob->isActive() )
658 mJob->waitForFinished();
663 mCache = std::make_unique<QgsMapRendererCache>();
669 mPreviousRenderedItemResults.reset();
674 return nullptr != mCache.get();
682 if ( mPreviousRenderedItemResults )
683 mPreviousRenderedItemResults.reset();
684 if ( mRenderedItemResults )
685 mRenderedItemResults.reset();
695 mUseParallelRendering = enabled;
700 return mUseParallelRendering;
705 mMapUpdateTimer.setInterval( timeMilliseconds );
710 return mMapUpdateTimer.interval();
716 return mCurrentLayer;
737 expressionContext << generator->createExpressionContextScope();
740 return expressionContext;
745 if ( !mSettings.hasValidSettings() )
747 QgsDebugMsgLevel( u
"CANVAS refresh - invalid settings -> nothing to do"_s, 2 );
751 if ( !mRenderFlag || mFrozen )
757 if ( mRefreshScheduled )
763 mRefreshScheduled =
true;
768 mRefreshTimer->start( 1 );
770 mLabelingResultsOutdated =
true;
771 mRenderedItemResultsOutdated =
true;
776 QList<QgsMapLayer *> filteredLayers;
779 if (
QgsAnnotationLayer *annotationLayer = qobject_cast<QgsAnnotationLayer *>( layer ) )
781 if (
QgsMapLayer *linkedLayer = annotationLayer->linkedVisibilityLayer() )
783 if ( !layers.contains( linkedLayer ) )
787 filteredLayers.append( layer );
791 filteredLayers.erase( std::remove_if( filteredLayers.begin(), filteredLayers.end(), [](
QgsMapLayer *layer ) { return !layer || !layer->isValid(); } ), filteredLayers.end() );
793 return filteredLayers;
796void QgsMapCanvas::refreshMap()
798 Q_ASSERT( mRefreshScheduled );
805 if ( mCacheInvalidations.testFlag( CacheInvalidationType::Temporal ) )
807 clearTemporalCache();
808 mCacheInvalidations &= ~(
static_cast<int>( CacheInvalidationType::Temporal ) );
810 if ( mCacheInvalidations.testFlag( CacheInvalidationType::Elevation ) )
812 clearElevationCache();
813 mCacheInvalidations &= ~(
static_cast<int>( CacheInvalidationType::Elevation ) );
819 if ( QgsTemporalNavigationObject *temporalNavigationObject =
dynamic_cast<QgsTemporalNavigationObject *
>( mController ) )
821 switch ( temporalNavigationObject->navigationMode() )
825 mSettings.setFrameRate( temporalNavigationObject->framesPerSecond() );
826 mSettings.setCurrentFrame( temporalNavigationObject->currentFrameNumber() );
837 if ( !mTheme.isEmpty() )
845 mSettings.setLayerStyleOverrides(
QgsProject::instance()->mapThemeCollection()->mapThemeStyleOverrides( mTheme ) );
849 QgsMapSettings renderSettings = mSettings;
850 QList<QgsMapLayer *> allLayers = renderSettings.
layers();
861 mJobCanceled =
false;
862 if ( mUseParallelRendering )
863 mJob =
new QgsMapRendererParallelJob( renderSettings );
865 mJob =
new QgsMapRendererSequentialJob( renderSettings );
868 mJob->setCache( mCache.get() );
869 mJob->setLayerRenderingTimeHints( mLastLayerRenderTime );
879 mRefreshScheduled =
false;
881 mMapUpdateTimer.start();
886void QgsMapCanvas::mapThemeChanged(
const QString &theme )
888 if (
theme == mTheme )
893 setLayersPrivate(
QgsProject::instance()->mapThemeCollection()->mapThemeVisibleLayers( mTheme ) );
906void QgsMapCanvas::mapThemeRenamed(
const QString &theme,
const QString &newTheme )
908 if ( mTheme.isEmpty() ||
theme != mTheme )
917void QgsMapCanvas::rendererJobFinished()
921 mMapUpdateTimer.stop();
923 notifyRendererErrors( mJob->errors() );
929 if ( !mJob->usedCachedLabels() )
931 mLabelingResults.reset( mJob->takeLabelingResults() );
933 mLabelingResultsOutdated =
false;
935 std::unique_ptr<QgsRenderedItemResults>
renderedItemResults( mJob->takeRenderedItemResults() );
937 if ( mRenderedItemResults )
939 renderedItemResults->transferResults( mRenderedItemResults.get(), mJob->layersRedrawnFromCache() );
941 if ( mPreviousRenderedItemResults )
944 renderedItemResults->transferResults( mPreviousRenderedItemResults.get(), mJob->layersRedrawnFromCache() );
947 if ( mCache && !mPreviousRenderedItemResults )
948 mPreviousRenderedItemResults = std::make_unique<QgsRenderedItemResults>( mJob->mapSettings().extent() );
950 if ( mRenderedItemResults && mPreviousRenderedItemResults )
955 mPreviousRenderedItemResults->transferResults( mRenderedItemResults.get() );
957 if ( mPreviousRenderedItemResults )
959 mPreviousRenderedItemResults->eraseResultsFromLayers( mJob->mapSettings().layerIds() );
963 mRenderedItemResultsOutdated =
false;
965 QImage img = mJob->renderedImage();
973 QString logMsg = tr(
"Canvas refresh: %1 ms" ).arg( mJob->renderingTime() );
977 if ( mDrawRenderingStats )
979 int w = img.width(), h = img.height();
980 QFont fnt = p.font();
983 int lh = p.fontMetrics().height() * 2;
984 QRect r( 0, h - lh, w, lh );
985 p.setPen( Qt::NoPen );
986 p.setBrush( QColor( 0, 0, 0, 110 ) );
988 p.setPen( Qt::white );
989 QString msg = u
"%1 :: %2 ms"_s.arg( mUseParallelRendering ? u
"PARALLEL"_s : u
"SEQUENTIAL"_s ).arg( mJob->renderingTime() );
990 p.drawText( r, msg, QTextOption( Qt::AlignCenter ) );
995 mMap->setContent( img, imageRect( img, mSettings ) );
997 mLastLayerRenderTime.clear();
998 const auto times = mJob->perLayerRenderingTime();
999 for (
auto it = times.constBegin(); it != times.constEnd(); ++it )
1001 mLastLayerRenderTime.insert( it.key()->id(), it.value() );
1003 if ( mUsePreviewJobs && !mRefreshAfterJob )
1008 mRefreshAfterJob =
false;
1013 mJob->deleteLater();
1018 if ( mRefreshAfterJob )
1020 mRefreshAfterJob =
false;
1025void QgsMapCanvas::previewJobFinished()
1027 QgsMapRendererQImageJob *job = qobject_cast<QgsMapRendererQImageJob *>( sender() );
1033 mPreviewJobs.removeAll( job );
1035 int number = job->property(
"number" ).toInt();
1038 startPreviewJob( number + 1 );
1049 const QgsMapToPixel &m2p =
mapSettings.mapToPixel();
1053 if ( img.devicePixelRatio() !=
mapSettings.devicePixelRatio() )
1059 QgsRectangle rect( topLeft.
x(), topLeft.
y(), topLeft.
x() + img.width() * res, topLeft.
y() - img.height() * res );
1065 return mStatusBar.data();
1080 return mMessageBar.data();
1090 return mUserInputWidget.data();
1095 return mUsePreviewJobs;
1100 mUsePreviewJobs = enabled;
1105 mDropHandlers = handlers;
1108void QgsMapCanvas::clearTemporalCache()
1112 bool invalidateLabels =
false;
1116 bool alreadyInvalidatedThisLayer =
false;
1123 mCache->invalidateCacheForLayer(
layer );
1124 alreadyInvalidatedThisLayer =
true;
1130 if (
layer->temporalProperties() &&
layer->temporalProperties()->isActive() )
1132 if ( QgsVectorLayer *vl = qobject_cast<QgsVectorLayer *>(
layer ) )
1135 invalidateLabels =
true;
1141 if ( !alreadyInvalidatedThisLayer )
1143 mCache->invalidateCacheForLayer(
layer );
1146 else if ( QgsGroupLayer *gl = qobject_cast<QgsGroupLayer *>(
layer ) )
1148 const QList<QgsMapLayer *> childLayerList = gl->childLayers();
1149 for ( QgsMapLayer *childLayer : childLayerList )
1151 if ( childLayer->temporalProperties() && childLayer->temporalProperties()->isActive() )
1156 mCache->invalidateCacheForLayer(
layer );
1163 if ( invalidateLabels )
1165 mCache->clearCacheImage( u
"_labels_"_s );
1166 mCache->clearCacheImage( u
"_preview_labels_"_s );
1171void QgsMapCanvas::clearElevationCache()
1175 bool invalidateLabels =
false;
1177 for ( QgsMapLayer *
layer : layerList )
1179 if (
layer->elevationProperties() &&
layer->elevationProperties()->hasElevation() )
1181 if ( QgsVectorLayer *vl = qobject_cast<QgsVectorLayer *>(
layer ) )
1184 invalidateLabels =
true;
1190 mCache->invalidateCacheForLayer(
layer );
1192 else if ( QgsGroupLayer *gl = qobject_cast<QgsGroupLayer *>(
layer ) )
1194 const QList<QgsMapLayer *> childLayerList = gl->childLayers();
1195 for ( QgsMapLayer *childLayer : childLayerList )
1197 if ( childLayer->elevationProperties() && childLayer->elevationProperties()->hasElevation() )
1202 mCache->invalidateCacheForLayer(
layer );
1209 if ( invalidateLabels )
1211 mCache->clearCacheImage( u
"_labels_"_s );
1212 mCache->clearCacheImage( u
"_preview_labels_"_s );
1219 const QgsPointXY mapPoint =
event->originalMapPoint();
1223 QMenu *copyCoordinateMenu =
new QMenu( tr(
"Copy Coordinate" ), &menu );
1226 auto addCoordinateFormat = [&,
this](
const QString identifier,
const QgsCoordinateReferenceSystem &crs ) {
1227 const QgsCoordinateTransform ct( mSettings.destinationCrs(), crs, mSettings.transformContext() );
1230 const QgsPointXY transformedPoint = ct.transform( mapPoint );
1233 int displayPrecision = 0;
1236 QgsCoordinateTransform extentTransform = ct;
1241 displayPrecision = 0;
1243 displayPrecision = 1;
1245 displayPrecision = 2;
1247 displayPrecision = 3;
1249 displayPrecision = 4;
1251 displayPrecision = 5;
1253 displayPrecision = 6;
1255 displayPrecision = 7;
1257 displayPrecision = 8;
1259 displayPrecision = 9;
1261 catch ( QgsCsException & )
1266 const QList<Qgis::CrsAxisDirection> axisList = crs.axisOrdering();
1267 QString firstSuffix;
1268 QString secondSuffix;
1269 if ( axisList.size() >= 2 )
1275 QString firstNumber;
1276 QString secondNumber;
1279 firstNumber = QString::number( transformedPoint.
y(),
'f', displayPrecision );
1280 secondNumber = QString::number( transformedPoint.
x(),
'f', displayPrecision );
1284 firstNumber = QString::number( transformedPoint.
x(),
'f', displayPrecision );
1285 secondNumber = QString::number( transformedPoint.
y(),
'f', displayPrecision );
1288 QAction *copyCoordinateAction =
new QAction( u
"%5 (%1%2, %3%4)"_s.arg( firstNumber, firstSuffix, secondNumber, secondSuffix, identifier ), &menu );
1290 connect( copyCoordinateAction, &QAction::triggered,
this, [firstNumber, secondNumber, transformedPoint] {
1291 QClipboard *clipboard = QApplication::clipboard();
1293 const QString coordinates = firstNumber +
',' + secondNumber;
1296 if ( clipboard->supportsSelection() )
1298 clipboard->setText( coordinates, QClipboard::Selection );
1300 clipboard->setText( coordinates, QClipboard::Clipboard );
1302 copyCoordinateMenu->addAction( copyCoordinateAction );
1304 catch ( QgsCsException & )
1309 QgsCoordinateReferenceSystem wgs84( u
"EPSG:4326"_s );
1310 if ( mSettings.destinationCrs() != wgs84 && mSettings.destinationCrs().isSameCelestialBody( wgs84 ) )
1313 QgsSettings settings;
1315 if ( !customCrsString.isEmpty() )
1317 QgsCoordinateReferenceSystem customCrs( customCrsString );
1318 if ( customCrs != mSettings.destinationCrs() && customCrs != QgsCoordinateReferenceSystem( u
"EPSG:4326"_s ) )
1323 copyCoordinateMenu->addSeparator();
1324 QAction *setCustomCrsAction =
new QAction( tr(
"Set Custom CRS…" ), &menu );
1325 connect( setCustomCrsAction, &QAction::triggered,
this, [
this, customCrsString] {
1326 QgsProjectionSelectionDialog selector(
this );
1327 selector.setCrs( QgsCoordinateReferenceSystem( customCrsString ) );
1328 if ( selector.exec() )
1333 copyCoordinateMenu->addAction( setCustomCrsAction );
1335 menu.addMenu( copyCoordinateMenu );
1338 if ( !
mapTool()->populateContextMenuWithEvent( &menu,
event ) )
1339 mMapTool->populateContextMenu( &menu );
1343 if ( !menu.isEmpty() )
1344 menu.exec(
event->globalPos() );
1349 const QDateTime currentTime = QDateTime::currentDateTime();
1352 for (
const QgsMapRendererJob::Error &error : errors )
1354 const QString errorKey = error.layerID +
':' + error.message;
1355 if ( mRendererErrors.contains( errorKey ) )
1357 const QDateTime sameErrorTime = mRendererErrors.value( errorKey );
1359 if ( sameErrorTime.secsTo( currentTime ) < 60 )
1363 mRendererErrors[errorKey] = currentTime;
1370void QgsMapCanvas::updateDevicePixelFromScreen()
1372 mSettings.setDevicePixelRatio(
static_cast<float>( devicePixelRatioF() ) );
1376 if ( window()->windowHandle() )
1378 mSettings.setOutputDpi( window()->windowHandle()->screen()->physicalDotsPerInch() );
1379 mSettings.setDpiTarget( window()->windowHandle()->screen()->physicalDotsPerInch() );
1385 mSettings.setOutputDpi( window()->windowHandle()->screen()->logicalDotsPerInch() );
1386 mSettings.setDpiTarget( window()->windowHandle()->screen()->logicalDotsPerInch() );
1391void QgsMapCanvas::onElevationShadingRendererChanged()
1395 bool wasDeactivated = !mSettings.elevationShadingRenderer().isActive();
1396 mSettings.setElevationShadingRenderer( mProject->elevationShadingRenderer() );
1397 if ( mCache && wasDeactivated )
1407 mSettings.setTemporalRange( dateTimeRange );
1408 mSettings.setIsTemporal( dateTimeRange.
begin().isValid() || dateTimeRange.
end().isValid() );
1414 mCacheInvalidations |= CacheInvalidationType::Temporal;
1416 autoRefreshTriggered();
1421 return mSettings.temporalRange();
1426 mInteractionBlockers.append( blocker );
1431 mInteractionBlockers.removeAll( blocker );
1438 if ( block->blockCanvasInteraction( interaction ) )
1446 if ( mMapController )
1448 delete mMapController;
1449 mMapController =
nullptr;
1455 mMapController = controller;
1456 mMapController->setParent(
this );
1460 connect( mMapController, &QgsAbstract2DMapController::zoomMap,
this, [](
double factor ) {
zoomByFactor( factor ); } );
1464void QgsMapCanvas::mapUpdateTimeout()
1469 mMap->setContent( img, imageRect( img, mSettings ) );
1478 mJobCanceled =
true;
1481 mJob->cancelWithoutBlocking();
1499 image = theQPixmap->toImage();
1500 painter.begin( &image );
1510 image = mMap->contentImage().copy();
1511 painter.begin( &image );
1515 QStyleOptionGraphicsItem option;
1516 option.initFrom(
this );
1517 QGraphicsItem *item =
nullptr;
1518 QListIterator<QGraphicsItem *> i( items() );
1520 while ( i.hasPrevious() )
1522 item = i.previous();
1531 QPointF itemScenePos = item->scenePos();
1532 painter.translate( itemScenePos.x(), itemScenePos.y() );
1534 item->paint( &painter, &option );
1538 image.save( fileName, format.toLocal8Bit().data() );
1540 QFileInfo myInfo = QFileInfo( fileName );
1543 QString outputSuffix = myInfo.suffix();
1544 QString myWorldFileName = myInfo.absolutePath() +
'/' + myInfo.completeBaseName() +
'.' + outputSuffix.at( 0 ) + outputSuffix.at( myInfo.suffix().size() - 1 ) +
'w';
1545 QFile myWorldFile( myWorldFileName );
1546 if ( !myWorldFile.open( QIODevice::WriteOnly | QIODevice::Truncate ) )
1550 QTextStream myStream( &myWorldFile );
1586 if ( ( r == current ) && magnified )
1591 if ( !mSettings.hasValidSettings() )
1599 QgsDebugMsgLevel( u
"Empty extent - keeping old scale with new center!"_s, 2 );
1608 if ( mScaleLocked && magnified )
1610 ScaleRestorer restorer(
this );
1615 mSettings.setMagnificationFactor( scaleFactor, &newCenter );
1620 mSettings.setExtent( r, magnified );
1627 for (
int i = mLastExtent.size() - 1; i > mLastExtentIndex; i-- )
1629 mLastExtent.removeAt( i );
1632 if ( !mLastExtent.isEmpty() && mLastExtent.last() != mSettings.extent() )
1634 mLastExtent.append( mSettings.extent() );
1638 if ( mLastExtent.size() > 100 )
1640 mLastExtent.removeAt( 0 );
1644 mLastExtentIndex = mLastExtent.size() - 1;
1690 return mCursorPoint;
1705 mSettings.setRotation( degrees );
1712 if ( !mBlockScaleChangedSignal )
1745 if ( mLastExtentIndex > 0 )
1748 mSettings.setExtent( mLastExtent[mLastExtentIndex] );
1761 if ( mLastExtentIndex < mLastExtent.size() - 1 )
1764 mSettings.setExtent( mLastExtent[mLastExtentIndex] );
1776 mLastExtent.clear();
1777 mLastExtent.append( mSettings.extent() );
1778 mLastExtentIndex = mLastExtent.size() - 1;
1796 double closestSquaredDistance = pow( extentRect.
width(), 2.0 ) + pow( extentRect.
height(), 2.0 );
1797 bool pointFound =
false;
1801 double sqrDist = point.
sqrDist( centerLayerCoordinates );
1802 if ( sqrDist > closestSquaredDistance || sqrDist < 4 * std::numeric_limits<double>::epsilon() )
1805 closestPoint = point;
1806 closestSquaredDistance = sqrDist;
1811 rect.combineExtentWith( mSettings.layerToMapCoordinates(
layer, closestPoint ) );
1812 rect.scale( scaleFactor, &
center );
1825 layer = mCurrentLayer;
1833 switch (
layer->type() )
1855 rect = optimalExtentForPointLayer( vlayer, rect.
center() );
1867 for (
const QgsFeature &feature : selectedFeatures )
1869 if ( !feature.hasGeometry() )
1908 if ( !mapLayer || !mapLayer->isSpatial() )
1911 switch ( mapLayer->type() )
1917 if (
layer->selectedFeatureCount() == 0 )
1920 rect =
layer->boundingBoxOfSelected();
1928 rect = optimalExtentForPointLayer(
layer, rect.
center() );
1942 for (
const QgsFeature &feature : selectedFeatures )
1944 if ( !feature.hasGeometry() )
1966 if ( selectionExtent.
isNull() )
1984 QgsVectorLayer *vLayer = qobject_cast<QgsVectorLayer *>( mapLayer );
1993 layerExtent = vLayer->
extent();
1997 if ( layerExtent.
isNull() )
2003 extent.combineExtentWith( layerExtent );
2019 return mSettings.zRange();
2027 mSettings.setZRange( range );
2033 mCacheInvalidations |= CacheInvalidationType::Elevation;
2035 autoRefreshTriggered();
2071 if ( boundingBoxOfFeatureIds( ids,
layer, bbox, errorMsg ) )
2075 bbox = optimalExtentForPointLayer(
layer, bbox.
center() );
2094 if ( boundingBoxOfFeatureIds( ids,
layer, bbox, errorMsg ) )
2111 int featureCount = 0;
2119 errorMsg = tr(
"Feature does not have a geometry" );
2123 errorMsg = tr(
"Feature geometry is empty" );
2125 if ( !errorMsg.isEmpty() )
2134 if ( featureCount != ids.count() )
2136 errorMsg = tr(
"Feature not found" );
2148 layer = mCurrentLayer;
2154 switch (
layer->type() )
2172 for (
const QgsFeature &feature : selectedFeatures )
2174 if ( !feature.hasGeometry() )
2210 if ( !mapLayer || !mapLayer->isSpatial() )
2214 switch ( mapLayer->type() )
2219 if (
layer->selectedFeatureCount() == 0 )
2222 rect =
layer->boundingBoxOfSelected();
2230 rect = optimalExtentForPointLayer(
layer, rect.
center() );
2241 for (
const QgsFeature &feature : selectedFeatures )
2243 if ( !feature.hasGeometry() )
2266 if ( selectionExtent.
isNull() )
2283 QList<QgsGeometry> geoms;
2299 if ( geometries.isEmpty() )
2317 QColor startColor = color1;
2318 if ( !startColor.isValid() )
2328 startColor.setAlpha( 255 );
2330 QColor endColor = color2;
2331 if ( !endColor.isValid() )
2333 endColor = startColor;
2334 endColor.setAlpha( 0 );
2338 QVariantAnimation *animation =
new QVariantAnimation(
this );
2339 connect( animation, &QVariantAnimation::finished,
this, [animation, rb] {
2340 animation->deleteLater();
2343 connect( animation, &QPropertyAnimation::valueChanged,
this, [rb, geomType](
const QVariant &value ) {
2344 QColor
c = value.value<QColor>();
2356 animation->setDuration( duration * flashes );
2357 animation->setStartValue( endColor );
2358 double midStep = 0.2 / flashes;
2359 for (
int i = 0; i < flashes; ++i )
2361 double start =
static_cast<double>( i ) / flashes;
2362 animation->setKeyValueAt( start + midStep, startColor );
2363 double end =
static_cast<double>( i + 1 ) / flashes;
2365 animation->setKeyValueAt( end, endColor );
2367 animation->setEndValue( endColor );
2389 mMapTool->keyPressEvent( e );
2390 if ( !e->isAccepted() )
2395 double dx = std::fabs( currentExtent.
width() / 4 );
2396 double dy = std::fabs( currentExtent.
height() / 4 );
2428 if ( !e->isAutoRepeat() )
2430 mTemporaryCursorOverride = std::make_unique<QgsTemporaryCursorOverride>( Qt::ClosedHandCursor );
2436 case Qt::Key_PageUp:
2441 case Qt::Key_PageDown:
2448 mUseParallelRendering = !mUseParallelRendering;
2453 mDrawRenderingStats = !mDrawRenderingStats;
2481 mTemporaryCursorOverride.reset();
2491 mMapTool->keyReleaseEvent( e );
2496 QgsDebugMsgLevel(
"Ignoring key release: " + QString::number( e->key() ), 2 );
2509 auto me = std::make_unique<QgsMapMouseEvent>(
this, e );
2510 mMapTool->canvasDoubleClickEvent( me.get() );
2515void QgsMapCanvas::beginZoomRect( QPoint pos )
2517 mZoomRect.setRect( 0, 0, 0, 0 );
2518 mTemporaryCursorOverride = std::make_unique<QgsTemporaryCursorOverride>( mZoomCursor );
2519 mZoomDragging =
true;
2521 QColor color( Qt::blue );
2522 color.setAlpha( 63 );
2523 mZoomRubberBand->setColor( color );
2524 mZoomRect.setTopLeft( pos );
2527void QgsMapCanvas::stopZoomRect()
2529 if ( mZoomDragging )
2531 mZoomDragging =
false;
2532 mZoomRubberBand.reset(
nullptr );
2533 mTemporaryCursorOverride.reset();
2537void QgsMapCanvas::endZoomRect( QPoint pos )
2542 mZoomRect.setRight( pos.x() );
2543 mZoomRect.setBottom( pos.y() );
2546 mZoomRect = mZoomRect.normalized();
2548 if ( mZoomRect.width() < 5 && mZoomRect.height() < 5 )
2555 const QSize &zoomRectSize = mZoomRect.size();
2556 const QSize &canvasSize = mSettings.outputSize();
2557 double sfx =
static_cast<double>( zoomRectSize.width() ) / canvasSize.width();
2558 double sfy =
static_cast<double>( zoomRectSize.height() ) / canvasSize.height();
2559 double sf = std::max( sfx, sfy );
2561 QgsPointXY
c = mSettings.mapToPixel().toMapCoordinates( mZoomRect.center() );
2567void QgsMapCanvas::startPan()
2572 mTemporaryCursorOverride = std::make_unique<QgsTemporaryCursorOverride>( Qt::ClosedHandCursor );
2577void QgsMapCanvas::stopPan()
2582 mTemporaryCursorOverride.reset();
2590 if ( e->button() == Qt::MiddleButton && e->modifiers() & Qt::ShiftModifier )
2592 beginZoomRect( e->pos() );
2596 else if ( e->button() == Qt::MiddleButton )
2610 if ( mMapTool->flags() &
QgsMapTool::AllowZoomRect && e->button() == Qt::LeftButton && e->modifiers() & Qt::ShiftModifier )
2612 beginZoomRect( e->pos() );
2617 auto me = std::make_unique<QgsMapMouseEvent>(
this, e );
2618 showContextMenu( me.get() );
2623 auto me = std::make_unique<QgsMapMouseEvent>(
this, e );
2624 mMapTool->canvasPressEvent( me.get() );
2641 if ( mZoomDragging && e->button() == Qt::MiddleButton )
2643 endZoomRect( e->pos() );
2647 else if ( e->button() == Qt::MiddleButton )
2651 else if ( e->button() == Qt::BackButton )
2656 else if ( e->button() == Qt::ForwardButton )
2663 if ( mZoomDragging && e->button() == Qt::LeftButton )
2665 endZoomRect( e->pos() );
2672 auto me = std::make_unique<QgsMapMouseEvent>(
this, e );
2673 mMapTool->canvasReleaseEvent( me.get() );
2686 QGraphicsView::resizeEvent( e );
2687 mResizeTimer->start( 500 );
2689 double oldScale = mSettings.scale();
2690 QSize lastSize = viewport()->size();
2691 mSettings.setOutputSize( lastSize );
2693 mScene->setSceneRect( QRectF( 0, 0, lastSize.width(), lastSize.height() ) );
2699 double scaleFactor = oldScale / mSettings.scale();
2703 mSettings.setExtent( r );
2717 QGraphicsView::paintEvent( e );
2722 if ( mBlockItemPositionUpdates )
2725 const QList<QGraphicsItem *> items = mScene->items();
2726 for ( QGraphicsItem *gi : items )
2743 QgsDebugMsgLevel(
"Wheel event delta " + QString::number( e->angleDelta().y() ), 2 );
2747 mMapTool->wheelEvent( e );
2748 if ( e->isAccepted() )
2752 if ( e->angleDelta().y() == 0 )
2759 bool zoomIn = reverseZoom ? e->angleDelta().y() < 0 : e->angleDelta().y() > 0;
2763 zoomFactor = 1.0 + ( zoomFactor - 1.0 ) / 120.0 * std::fabs( e->angleDelta().y() );
2765 if ( e->modifiers() & Qt::ControlModifier )
2768 zoomFactor = 1.0 + ( zoomFactor - 1.0 ) / 20.0;
2771 double signedWheelFactor =
zoomIn ? 1 / zoomFactor : zoomFactor;
2776 QgsPointXY newCenter( mousePos.
x() + ( ( oldCenter.
x() - mousePos.
x() ) * signedWheelFactor ), mousePos.
y() + ( ( oldCenter.
y() - mousePos.
y() ) * signedWheelFactor ) );
2784 mWheelZoomFactor = std::max( factor, 1.01 );
2813 ScaleRestorer restorer(
this );
2824 if ( mScaleLocked != isLocked )
2826 mScaleLocked = isLocked;
2839 else if ( mZoomDragging )
2841 mZoomRect.setBottomRight( e->pos() );
2842 mZoomRubberBand->setToCanvasRectangle( mZoomRect );
2843 mZoomRubberBand->show();
2850 auto me = std::make_unique<QgsMapMouseEvent>(
this, e );
2851 mMapTool->canvasMoveEvent( me.get() );
2856 if ( !panOperationInProgress() )
2868 if ( tool == mMapTool )
2870 mMapTool->reactivate();
2879 disconnect( mMapTool, &QObject::destroyed,
this, &QgsMapCanvas::mapToolDestroyed );
2880 mMapTool->deactivate();
2890 connect( mMapTool, &QObject::destroyed,
this, &QgsMapCanvas::mapToolDestroyed );
2891 mMapTool->activate();
2898 if ( mMapTool && mMapTool == tool )
2900 disconnect( mMapTool, &QObject::destroyed,
this, &QgsMapCanvas::mapToolDestroyed );
2905 setCursor( Qt::ArrowCursor );
2926 mSettings.setBackgroundColor( color );
2929 QBrush bgBrush( color );
2930 setBackgroundBrush( bgBrush );
2933 palette.setColor( backgroundRole(), color );
2934 setPalette( palette );
2938 mScene->setBackgroundBrush( bgBrush );
2947 return mScene->backgroundBrush().color();
2952 if ( mSettings.selectionColor() == color )
2955 mSettings.setSelectionColor( color );
2959 bool hasSelectedFeatures =
false;
2960 const auto layers = mSettings.layers();
2966 hasSelectedFeatures =
true;
2971 if ( hasSelectedFeatures )
2981 return mSettings.selectionColor();
3022 return mSettings.layerStyleOverrides();
3027 if ( overrides == mSettings.layerStyleOverrides() )
3030 mSettings.setLayerStyleOverrides( overrides );
3037 if ( mTheme ==
theme )
3044 mSettings.setLayerStyleOverrides( QMap<QString, QString>() );
3051 setLayersPrivate(
QgsProject::instance()->mapThemeCollection()->mapThemeVisibleLayers( mTheme ) );
3069void QgsMapCanvas::connectNotify(
const char *signal )
3076void QgsMapCanvas::layerRepaintRequested(
bool deferred )
3082void QgsMapCanvas::autoRefreshTriggered()
3088 mRefreshAfterJob =
true;
3095void QgsMapCanvas::updateAutoRefreshTimer()
3099 int minAutoRefreshInterval = -1;
3100 const auto layers = mSettings.layers();
3103 int layerRefreshInterval = 0;
3105 if (
layer->hasAutoRefreshEnabled() &&
layer->autoRefreshInterval() > 0 )
3107 layerRefreshInterval =
layer->autoRefreshInterval();
3109 else if ( QgsVectorLayer *vectorLayer = qobject_cast<QgsVectorLayer *>(
layer ) )
3111 if (
const QgsFeatureRenderer *renderer = vectorLayer->renderer() )
3114 if ( rendererRefreshRate > 0 )
3116 layerRefreshInterval = 1000 / rendererRefreshRate;
3121 if ( layerRefreshInterval == 0 )
3124 minAutoRefreshInterval = minAutoRefreshInterval > 0 ? std::min( layerRefreshInterval, minAutoRefreshInterval ) : layerRefreshInterval;
3127 if ( minAutoRefreshInterval > 0 )
3129 mAutoRefreshTimer.setInterval( minAutoRefreshInterval );
3130 mAutoRefreshTimer.start();
3134 mAutoRefreshTimer.stop();
3138void QgsMapCanvas::projectThemesChanged()
3140 if ( mTheme.isEmpty() )
3170 double dx = end.
x() - start.
x();
3171 double dy = end.
y() - start.
y();
3173 c.set(
c.x() - dx,
c.y() - dy );
3196 emit
panDistanceBearingChanged( mDa.measureLine( currentMapPoint, startMapPoint ), mDa.lengthUnits(), mDa.bearing( currentMapPoint, startMapPoint ) * 180 / M_PI );
3211 setSceneRect( -pnt.x(), -pnt.y(), viewport()->size().width(), viewport()->size().height() );
3219 bool allHandled =
true;
3222 bool handled =
false;
3225 if ( handler && handler->customUriProviderKey() == uri.providerKey )
3227 if ( handler->handleCustomUriCanvasDrop( uri,
this ) )
3251 updateDevicePixelFromScreen();
3256 if ( !mBlockExtentChangedSignal )
3267 if ( !mPreviewEffect )
3272 mPreviewEffect->setEnabled( previewEnabled );
3277 if ( !mPreviewEffect )
3282 return mPreviewEffect->isEnabled();
3287 if ( !mPreviewEffect )
3292 mPreviewEffect->setMode( mode );
3297 if ( !mPreviewEffect )
3302 return mPreviewEffect->mode();
3307 if ( !mSnappingUtils )
3313 return mSnappingUtils;
3318 mSnappingUtils = utils;
3325 QDomNodeList nodes = doc.elementsByTagName( u
"mapcanvas"_s );
3326 if ( nodes.count() )
3328 QDomNode node = nodes.item( 0 );
3331 if ( nodes.count() > 1 )
3333 for (
int i = 0; i < nodes.size(); ++i )
3335 QDomElement elementNode = nodes.at( i ).toElement();
3337 if ( elementNode.hasAttribute( u
"name"_s ) && elementNode.attribute( u
"name"_s ) == objectName() )
3339 node = nodes.at( i );
3347 if ( objectName() !=
"theMapCanvas"_L1 )
3352 if (
QgsProject::instance()->viewSettings()->restoreProjectExtentOnProjectLoad() && objectName() ==
"theMapCanvas"_L1 )
3365 QDomElement elem = node.toElement();
3366 if ( elem.hasAttribute( u
"theme"_s ) )
3368 if (
QgsProject::instance()->mapThemeCollection()->hasMapTheme( elem.attribute( u
"theme"_s ) ) )
3370 setTheme( elem.attribute( u
"theme"_s ) );
3376 const QDomNodeList scopeElements = elem.elementsByTagName( u
"expressionContextScope"_s );
3377 if ( scopeElements.size() > 0 )
3379 const QDomElement scopeElement = scopeElements.at( 0 ).toElement();
3385 QgsDebugMsgLevel( u
"Couldn't read mapcanvas information from project"_s, 2 );
3386 if ( !
project->viewSettings()->defaultViewExtent().isNull() )
3400 QDomNodeList nl = doc.elementsByTagName( u
"qgis"_s );
3403 QgsDebugError( u
"Unable to find qgis element in project file"_s );
3406 QDomNode qgisNode = nl.item( 0 );
3408 QDomElement mapcanvasNode = doc.createElement( u
"mapcanvas"_s );
3409 mapcanvasNode.setAttribute( u
"name"_s, objectName() );
3410 if ( !mTheme.isEmpty() )
3411 mapcanvasNode.setAttribute( u
"theme"_s, mTheme );
3412 mapcanvasNode.setAttribute( u
"annotationsVisible"_s, mAnnotationsVisible );
3413 qgisNode.appendChild( mapcanvasNode );
3415 mSettings.writeXml( mapcanvasNode, doc );
3418 QDomElement scopeElement = doc.createElement( u
"expressionContextScope"_s );
3426 mapcanvasNode.appendChild( scopeElement );
3433 if ( mScaleLocked && !ignoreScaleLock )
3435 ScaleRestorer restorer(
this );
3470 bool allHandled =
true;
3473 bool handled =
false;
3476 if ( handler->canHandleCustomUriCanvasDrop( uri,
this ) )
3498 if (
event->type() == QEvent::ToolTip && mMapTool && mMapTool->canvasToolTipEvent( qgis::down_cast<QHelpEvent *>(
event ) ) )
3502 return QGraphicsView::viewportEvent(
event );
3505void QgsMapCanvas::mapToolDestroyed()
3513 if ( e->type() == QEvent::Gesture )
3515 if ( QTapAndHoldGesture *tapAndHoldGesture = qobject_cast<QTapAndHoldGesture *>(
static_cast<QGestureEvent *
>( e )->gesture( Qt::TapAndHoldGesture ) ) )
3517 QPointF pos = tapAndHoldGesture->position();
3518 pos = mapFromGlobal( QPoint( pos.x(), pos.y() ) );
3526 return mMapTool->gestureEvent(
static_cast<QGestureEvent *
>( e ) );
3531 return QGraphicsView::event( e );
3557 while ( mRefreshScheduled || mJob )
3559 QgsApplication::processEvents();
3565 mSettings.setSegmentationTolerance( tolerance );
3570 mSettings.setSegmentationToleranceType( type );
3575 QList<QgsMapCanvasAnnotationItem *> annotationItemList;
3576 const QList<QGraphicsItem *> items = mScene->items();
3577 for ( QGraphicsItem *gi : items )
3582 annotationItemList.push_back( aItem );
3586 return annotationItemList;
3591 mAnnotationsVisible = show;
3595 item->setVisible( show );
3601 mSettings.setLabelingEngineSettings( settings );
3606 return mSettings.labelingEngineSettings();
3611 mSettings.setSelectiveMaskingSourceSets( sets );
3614void QgsMapCanvas::startPreviewJobs()
3617 schedulePreviewJob( 0 );
3620void QgsMapCanvas::startPreviewJob(
int number )
3630 const QgsRectangle mapRect =
mapSettings.visibleExtent();
3631 QgsPointXY jobCenter = mapRect.
center();
3632 const double dx = ( i - 1 ) * mapRect.
width();
3633 const double dy = ( 1 - j ) * mapRect.
height();
3636 const double radians = mSettings.rotation() * M_PI / 180;
3637 const double rdx = dx * cos( radians ) - dy * sin( radians );
3638 const double rdy = dy * cos( radians ) + dx * sin( radians );
3639 jobCenter.
setX( jobCenter.
x() + rdx );
3640 jobCenter.
setY( jobCenter.
y() + rdy );
3644 jobCenter.
setX( jobCenter.
x() + dx );
3645 jobCenter.
setY( jobCenter.
y() + dy );
3650 QgsMapSettings jobSettings = mSettings;
3658 const QList<QgsMapLayer *>
layers = jobSettings.
layers();
3659 QList<QgsMapLayer *> previewLayers;
3660 QgsDataProvider::PreviewContext context;
3664 if (
layer->customProperty( u
"rendering/noPreviewJobs"_s,
false ).toBool() )
3666 QgsDebugMsgLevel( u
"Layer %1 not rendered because it is explicitly blocked from preview jobs"_s.arg(
layer->id() ), 3 );
3670 QgsDataProvider *provider =
layer->dataProvider();
3673 QgsDebugMsgLevel( u
"Layer %1 not rendered because it does not match the renderInPreview criterion %2"_s.arg(
layer->id() ).arg( mLastLayerRenderTime.value(
layer->id() ) ), 3 );
3677 previewLayers <<
layer;
3685 QgsMapRendererQImageJob *job =
new QgsMapRendererSequentialJob( jobSettings );
3686 job->setProperty(
"number", number );
3687 mPreviewJobs.append( job );
3692void QgsMapCanvas::stopPreviewJobs()
3694 mPreviewTimer.stop();
3695 for (
auto previewJob = mPreviewJobs.constBegin(); previewJob != mPreviewJobs.constEnd(); ++previewJob )
3701 ( *previewJob )->cancelWithoutBlocking();
3704 mPreviewJobs.clear();
3707void QgsMapCanvas::schedulePreviewJob(
int number )
3709 mPreviewTimer.setSingleShot(
true );
3711 disconnect( mPreviewTimerConnection );
3712 mPreviewTimerConnection = connect( &mPreviewTimer, &QTimer::timeout,
this, [
this, number]() { startPreviewJob( number ); } );
3713 mPreviewTimer.start();
3716bool QgsMapCanvas::panOperationInProgress()
3721 if ( QgsMapToolPan *panTool = qobject_cast<QgsMapToolPan *>( mMapTool ) )
3723 if ( panTool->isDragging() )
3730int QgsMapCanvas::nextZoomLevel(
const QList<double> &resolutions,
bool zoomIn )
const
3732 int resolutionLevel = -1;
3734 int nResolutions = resolutions.size();
3736 for (
int i = 0; i < nResolutions; ++i )
3738 if (
qgsDoubleNear( resolutions[i], currentResolution, 0.0001 ) )
3740 resolutionLevel =
zoomIn ? ( i - 1 ) : ( i + 1 );
3743 else if ( currentResolution <= resolutions[i] )
3745 resolutionLevel =
zoomIn ? ( i - 1 ) : i;
3748 resolutionLevel =
zoomIn ? i : i + 1;
3751 if ( resolutionLevel < 0 || resolutionLevel >= nResolutions )
3755 if (
zoomIn && resolutionLevel == nResolutions - 1 && resolutions[nResolutions - 1] < currentResolution / mWheelZoomFactor )
3760 if ( !
zoomIn && resolutionLevel == 0 && resolutions[0] > mWheelZoomFactor * currentResolution )
3765 return resolutionLevel;
3770 if ( !mZoomResolutions.isEmpty() )
3772 int zoomLevel = nextZoomLevel( mZoomResolutions,
true );
3773 if ( zoomLevel != -1 )
3778 return 1 / mWheelZoomFactor;
3783 if ( !mZoomResolutions.isEmpty() )
3785 int zoomLevel = nextZoomLevel( mZoomResolutions,
false );
3786 if ( zoomLevel != -1 )
3791 return mWheelZoomFactor;
static const int PREVIEW_JOB_DELAY_MS
Delay between the scheduling of 2 preview jobs.
QFlags< MapSettingsFlag > MapSettingsFlags
Map settings flags.
@ MediumString
A medium-length string, recommended for general purpose use.
DistanceUnit
Units of distance.
@ Degrees
Degrees, for planar geographic CRS distance measurements.
@ ShowMainAnnotationLayer
The project's main annotation layer should be rendered in the canvas.
static const int MAXIMUM_LAYER_PREVIEW_TIME_MS
Maximum rendering time for a layer of a preview job.
@ Animated
Temporal navigation relies on frames within a datetime range.
@ Movie
Movie mode – behaves like a video player, with a fixed frame duration and no temporal range.
@ FixedRange
Temporal navigation relies on a fixed datetime range.
@ Disabled
Temporal navigation is disabled.
@ Warning
Warning message.
@ AffectsLabeling
If present, indicates that the renderer will participate in the map labeling problem.
GeometryType
The geometry types are used to group Qgis::WkbType in a coarse way.
@ Group
Composite group layer. Added in QGIS 3.24.
@ Plugin
Plugin based layer.
@ TiledScene
Tiled scene layer. Added in QGIS 3.34.
@ Annotation
Contains freeform, georeferenced annotations. Added in QGIS 3.16.
@ VectorTile
Vector tile layer. Added in QGIS 3.14.
@ Mesh
Mesh layer. Added in QGIS 3.2.
@ PointCloud
Point cloud layer. Added in QGIS 3.18.
@ YX
Northing/Easting (or Latitude/Longitude for geographic CRS).
@ View
Renderer used for displaying on screen.
QFlags< MapCanvasFlag > MapCanvasFlags
Flags controlling behavior of map canvases.
@ Preferred
Preferred format, matching the most recent WKT ISO standard. Currently an alias to WKT2_2019,...
@ BallparkTransformsAreAppropriate
Indicates that approximate "ballpark" results are appropriate for this coordinate transform....
@ IgnoreImpossibleTransformations
Indicates that impossible transformations (such as those which attempt to transform between two diffe...
@ DrawEditingInfo
Enable drawing of vertex markers for layers in editing mode.
@ RenderPreviewJob
Render is a 'canvas preview' render, and shortcuts should be taken to ensure fast rendering.
@ RenderMapTile
Draw map such that there are no problems between adjacent tiles.
@ RecordProfile
Enable run-time profiling while rendering.
@ UseRenderingOptimization
Enable vector simplification and other rendering optimizations.
@ RenderPartialOutput
Whether to make extra effort to update map image with partially rendered layers (better for interacti...
@ Antialiasing
Enable anti-aliasing for map rendering.
@ DrawLabeling
Enable drawing of labels on top of the map.
@ HighQualityImageTransforms
Enable high quality image transformations, which results in better appearance of scaled or rotated ra...
Abstract base class for all 2D map controllers.
SegmentationToleranceType
Segmentation tolerance as maximum angle or maximum difference between approximation and circle.
virtual bool isEmpty() const
Returns true if the geometry is empty.
Represents a map layer containing a set of georeferenced annotations, e.g.
static QCursor getThemeCursor(Cursor cursor)
Helper to get a theme cursor.
static QIcon getThemeIcon(const QString &name, const QColor &fillColor=QColor(), const QColor &strokeColor=QColor())
Helper to get a theme icon.
static QgsImageCache * imageCache()
Returns the application's image cache, used for caching resampled versions of raster images.
static QgsRuntimeProfiler * profiler()
Returns the application runtime profiler.
static QgsSvgCache * svgCache()
Returns the application's SVG cache, used for caching SVG images and handling parameter replacement w...
static QgsCoordinateReferenceSystemRegistry * coordinateReferenceSystemRegistry()
Returns the application's coordinate reference system (CRS) registry, which handles known CRS definit...
void userCrsChanged(const QString &id)
Emitted whenever an existing user CRS definition is changed.
static Qgis::CoordinateOrder defaultCoordinateOrderForCrs(const QgsCoordinateReferenceSystem &crs)
Returns the default coordinate order to use for the specified crs.
static QString axisDirectionToAbbreviatedString(Qgis::CrsAxisDirection axis)
Returns a translated abbreviation representing an axis direction.
Represents a coordinate reference system (CRS).
bool isSameCelestialBody(const QgsCoordinateReferenceSystem &other) const
Returns true if other crs is associated with the same celestial body.
void updateDefinition()
Updates the definition and parameters of the coordinate reference system to their latest values.
Custom exception class for Coordinate Reference System related exceptions.
Abstract base class that may be implemented to handle new types of data to be dropped in QGIS.
virtual bool renderInPreview(const QgsDataProvider::PreviewContext &context)
Returns whether the layer must be rendered in preview jobs.
A general purpose distance and area calculator, capable of performing ellipsoid based calculations.
QgsRange which stores a range of double values.
Abstract interface for generating an expression context scope.
Single scope for storing variables and functions for use within a QgsExpressionContext.
bool writeXml(QDomElement &element, QDomDocument &document, const QgsReadWriteContext &context) const
Writes scope variables to an XML element.
bool removeVariable(const QString &name)
Removes a variable from the context scope, if found.
void setVariable(const QString &name, const QVariant &value, bool isStatic=false)
Convenience method for setting a variable in the context scope by name name and value.
static QgsExpressionContextScope * projectScope(const QgsProject *project)
Creates a new scope which contains variables and functions relating to a QGIS project.
static QgsExpressionContextScope * atlasScope(const QgsLayoutAtlas *atlas)
Creates a new scope which contains variables and functions relating to a QgsLayoutAtlas.
static QgsExpressionContextScope * mapSettingsScope(const QgsMapSettings &mapSettings)
Creates a new scope which contains variables and functions relating to a QgsMapSettings object.
static QgsExpressionContextScope * globalScope()
Creates a new scope which contains variables and functions relating to the global QGIS context.
Expression contexts are used to encapsulate the parameters around which a QgsExpression should be eva...
Wrapper for iterator of features from vector data provider or vector layer.
bool nextFeature(QgsFeature &f)
Fetch next feature and stores in f, returns true on success.
Wraps a request for features to a vector layer (or directly its vector data provider).
QgsFeatureRequest & setLimit(long long limit)
Set the maximum number of features to request.
QgsFeatureRequest & setNoAttributes()
Set that no attributes will be fetched.
QgsFeatureRequest & setFilterRect(const QgsRectangle &rectangle)
Sets the rectangle from which features will be taken.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
bool hasGeometry() const
Returns true if the feature has an associated geometry.
A geometry is the spatial representation of a feature.
const QgsAbstractGeometry * constGet() const
Returns a non-modifiable (const) reference to the underlying abstract geometry primitive.
QgsPointXY asPoint() const
Returns the contents of the geometry as a 2-dimensional point.
static QgsGeometry fromPointXY(const QgsPointXY &point)
Creates a new geometry from a QgsPointXY object.
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
void remoteImageFetched(const QString &url)
Emitted when the cache has finished retrieving an image file from a remote url.
Stores global configuration for labeling engine.
Stores computed placement from labeling engine.
static void warning(const QString &msg)
Goes to qWarning.
An interactive map canvas item which displays a QgsAnnotation.
An interface for objects which block interactions with a QgsMapCanvas.
Interaction
Available interactions to block.
An abstract class for items that can be placed on the map canvas.
virtual void updatePosition()
called on changed extent or resize event to update position of the item
Snapping utils instance that is connected to a canvas and updates the configuration (map settings + c...
Deprecated to be deleted, stuff from here should be moved elsewhere.
QPoint mouseLastXY
Last seen point of the mouse.
bool panSelectorDown
Flag to indicate the pan selector key is held down by user.
CanvasProperties()=default
Constructor for CanvasProperties.
QPoint rubberStartPoint
Beginning point of a rubber band.
bool mouseButtonDown
Flag to indicate status of mouse button.
void setCurrentLayer(QgsMapLayer *layer)
void contextMenuAboutToShow(QMenu *menu, QgsMapMouseEvent *event)
Emitted before the map canvas context menu will be shown.
void zoomToProjectExtent()
Zoom to the full extent the project associated with this canvas.
void panToSelected(QgsMapLayer *layer=nullptr)
Pan to the selected features of current ayer keeping same extent.
void freeze(bool frozen=true)
Freezes/thaws the map canvas.
void enableAntiAliasing(bool flag)
used to determine if anti-aliasing is enabled or not
void zoomToSelected(QgsMapLayer *layer=nullptr)
Zoom to the extent of the selected features of provided map layer.
void setSnappingUtils(QgsSnappingUtils *utils)
Assign an instance of snapping utils to the map canvas.
bool isCachingEnabled() const
Check whether images of rendered layers are curerently being cached.
void zoomToFullExtent()
Zoom to the full extent of all layers currently visible in the canvas.
void setLayers(const QList< QgsMapLayer * > &layers)
Sets the list of layers that should be shown in the canvas.
void setProject(QgsProject *project)
Sets the project linked to this canvas.
const QgsRenderedItemResults * renderedItemResults(bool allowOutdatedResults=true) const
Gets access to the rendered item results (may be nullptr), which includes the results of rendering an...
void setMapController(QgsAbstract2DMapController *controller)
Sets the input controller device to use for controlling the canvas.
QColor selectionColor() const
Returns color for selected features.
bool event(QEvent *e) override
void setCachingEnabled(bool enabled)
Set whether to cache images of rendered layers.
void mouseReleaseEvent(QMouseEvent *e) override
QgsDoubleRange zRange() const
Returns the range of z-values which will be visible in the map.
void setExtent(const QgsRectangle &r, bool magnified=false)
Sets the extent of the map canvas to the specified rectangle.
void setRenderFlag(bool flag)
Sets whether a user has disabled canvas renders via the GUI.
void selectionChanged(QgsMapLayer *layer)
Emitted when selection in any layer gets changed.
QList< QgsMapCanvasAnnotationItem * > annotationItems() const
Returns a list of all annotation items in the canvas.
void updateCanvasItemPositions()
called on resize or changed extent to notify canvas items to change their rectangle
QgsExpressionContext createExpressionContext() const override
This method needs to be reimplemented in all classes which implement this interface and return an exp...
void extentsChanged()
Emitted when the extents of the map change.
QgsUserInputWidget * userInputWidget()
Returns the user input widget associated with the map canvas.
QgsExpressionContextScope * defaultExpressionContextScope() const
Creates a new scope which contains default variables and functions relating to the map canvas.
void xyCoordinates(const QgsPointXY &p)
Emits current mouse position.
void setFlags(Qgis::MapCanvasFlags flags)
Sets flags which control how the map canvas behaves.
void stopRendering()
stop rendering (if there is any right now)
static const QgsSettingsEntryBool * settingsMainCanvasPreviewJobs
void setLabelingEngineSettings(const QgsLabelingEngineSettings &settings)
Sets global labeling engine settings in the internal map settings.
QgsPointXY center() const
Gets map center, in geographical coordinates.
void showEvent(QShowEvent *event) override
int layerCount() const
Returns number of layers on the map.
void emitExtentsChanged()
Emits the extentsChanged signal when appropriate.
bool antiAliasingEnabled() const
true if antialiasing is enabled
void setPreviewMode(QgsPreviewEffect::PreviewMode mode)
Sets a preview mode for the map canvas.
QVector< T > layers() const
Returns a list of registered map layers with a specified layer type.
void layerStateChange()
This slot is connected to the visibility change of one or more layers.
QgsPreviewEffect::PreviewMode previewMode() const
Returns the current preview mode for the map canvas.
void zoomScale(double scale, bool ignoreScaleLock=false)
Zooms the canvas to a specific scale.
void zoomWithCenter(int x, int y, bool zoomIn)
Zooms in/out with a given center.
QPoint mouseLastXY()
returns last position of mouse cursor
void clearCache()
Make sure to remove any rendered images from cache (does nothing if cache is not enabled).
void tapAndHoldGestureOccurred(const QgsPointXY &mapPoint, QTapAndHoldGesture *gesture)
Emitted whenever a tap and hold gesture occurs at the specified map point.
const QgsDateTimeRange & temporalRange() const
Returns map canvas datetime range.
void setCanvasColor(const QColor &_newVal)
Write property of QColor bgColor.
void panDistanceBearingChanged(double distance, Qgis::DistanceUnit unit, double bearing)
Emitted whenever the distance or bearing of an in-progress panning operation is changed.
static const QgsSettingsEntryBool * settingsEnableRenderCaching
void zoomByFactor(double scaleFactor, const QgsPointXY *center=nullptr, bool ignoreScaleLock=false)
Zoom with the factor supplied.
const QgsTemporalController * temporalController() const
Gets access to the temporal controller that will be used to update the canvas temporal range.
void flashGeometries(const QList< QgsGeometry > &geometries, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem(), const QColor &startColor=QColor(255, 0, 0, 255), const QColor &endColor=QColor(255, 0, 0, 0), int flashes=3, int duration=500)
Causes a set of geometries to flash within the canvas.
void setMapUpdateInterval(int timeMilliseconds)
Set how often map preview should be updated while it is being rendered (in milliseconds).
bool setReferencedExtent(const QgsReferencedRectangle &extent)
Sets the canvas to the specified extent.
void dragEnterEvent(QDragEnterEvent *e) override
QgsMapRendererCache * cache()
Returns the map renderer cache, if caching is enabled.
bool isDrawing()
Find out whether rendering is in progress.
void zRangeChanged()
Emitted when the map canvas z (elevation) range changes.
void keyPressEvent(QKeyEvent *e) override
void setZRange(const QgsDoubleRange &range)
Sets the range of z-values which will be visible in the map.
void clearExtentHistory()
Clears the list of extents and sets current extent as first item.
void zoomToPreviousExtent()
Zoom to the previous extent (view).
void enableMapTileRendering(bool flag)
sets map tile rendering flag
void panAction(QMouseEvent *event)
Called when mouse is moving and pan is activated.
void setLayerStyleOverrides(const QMap< QString, QString > &overrides)
Sets the stored overrides of styles for rendering layers.
QList< QgsMapLayer * > layers(bool expandGroupLayers=false) const
Returns the list of layers shown within the map canvas.
const QgsLabelingEngineSettings & labelingEngineSettings() const
Returns global labeling engine settings from the internal map settings.
void scaleChanged(double scale)
Emitted when the scale of the map changes.
void mapToolSet(QgsMapTool *newTool, QgsMapTool *oldTool)
Emit map tool changed with the old tool.
void canvasColorChanged()
Emitted when canvas background color changes.
double zoomInFactor() const
Returns the zoom in factor.
void setUserInputWidget(QgsUserInputWidget *userInputWidget)
Sets a userInputWidget, a floating widget that can be used to display additional widgets for user inp...
void saveAsImage(const QString &fileName, QPixmap *QPixmap=nullptr, const QString &="PNG")
Save the contents of the map canvas to disk as an image.
void setSegmentationToleranceType(QgsAbstractGeometry::SegmentationToleranceType type)
Sets segmentation tolerance type (maximum angle or maximum difference between curve and approximation...
QgsMessageBar * messageBar()
Returns the message bar associated with the map canvas.
void setTemporalRange(const QgsDateTimeRange &range)
Set datetime range for the map canvas.
void moveCanvasContents(bool reset=false)
called when panning is in action, reset indicates end of panning
void magnificationChanged(double magnification)
Emitted when the scale of the map changes.
void zoomOut()
Zoom out with fixed factor.
void currentLayerChanged(QgsMapLayer *layer)
Emitted when the current layer is changed.
void setTemporalController(QgsTemporalController *controller)
Sets the temporal controller for this canvas.
void renderErrorOccurred(const QString &error, QgsMapLayer *layer)
Emitted whenever an error is encountered during a map render operation.
void addOverlayWidget(QWidget *widget, Qt::Edge edge)
Adds an overlay widget to the layout, which will be bound to the specified edge.
void waitWhileRendering()
Blocks until the rendering job has finished.
void mapRefreshCanceled()
Emitted when the pending map refresh has been canceled.
double magnificationFactor() const
Returns the magnification factor.
void writeProject(QDomDocument &)
called to write map canvas settings to project
void mousePressEvent(QMouseEvent *e) override
void updateScale()
Emits signal scaleChanged to update scale in main window.
void setMagnificationFactor(double factor, const QgsPointXY *center=nullptr)
Sets the factor of magnification to apply to the map canvas.
void refreshAllLayers()
Reload all layers (including refreshing layer properties from their data sources),...
void unsetMapTool(QgsMapTool *mapTool)
Unset the current map tool or last non zoom tool.
void panActionEnd(QPoint releasePoint)
Ends pan action and redraws the canvas.
void resizeEvent(QResizeEvent *e) override
double zoomOutFactor() const
Returns the zoom in factor.
void renderStarting()
Emitted when the canvas is about to be rendered.
void setMapSettingsFlags(Qgis::MapSettingsFlags flags)
Resets the flags for the canvas' map settings.
std::unique_ptr< CanvasProperties > mCanvasProperties
Handle pattern for implementation object.
QgsStatusBar * statusBar()
Returns the associated status bar.
void keyReleased(QKeyEvent *e)
Emit key release event.
QgsMapTool * mapTool() const
Returns the currently active tool.
void setWheelFactor(double factor)
Sets wheel zoom factor (should be greater than 1).
void setStatusBar(QgsStatusBar *bar)
Sets the associated status bar.
void setAnnotationsVisible(bool visible)
Sets whether annotations are visible in the canvas.
void layerStyleOverridesChanged()
Emitted when the configuration of overridden layer styles changes.
QgsMapCanvas(QWidget *parent=nullptr)
Constructor.
void panActionStart(QPoint releasePoint)
Starts a pan action.
void zoomNextStatusChanged(bool available)
Emitted when zoom next status changed.
void setPreviewJobsEnabled(bool enabled)
Sets whether canvas map preview jobs (low priority render jobs which render portions of the view just...
QgsRectangle fullExtent() const
Returns the combined extent for all layers on the map canvas.
void redrawAllLayers()
Clears all cached images and redraws all layers.
void keyReleaseEvent(QKeyEvent *e) override
bool isFrozen() const
Returns true if canvas is frozen.
void rotationChanged(double rotation)
Emitted when the rotation of the map changes.
void panToFeatureIds(QgsVectorLayer *layer, const QgsFeatureIds &ids, bool alwaysRecenter=true)
Centers canvas extent to feature ids.
void messageEmitted(const QString &title, const QString &message, Qgis::MessageLevel level=Qgis::MessageLevel::Info)
emit a message (usually to be displayed in a message bar)
void scaleLockChanged(bool locked)
Emitted when the scale locked state of the map changes.
const QgsLabelingResults * labelingResults(bool allowOutdatedResults=true) const
Gets access to the labeling results (may be nullptr).
void mouseMoveEvent(QMouseEvent *e) override
QgsRectangle projectExtent() const
Returns the associated project's full extent, in the canvas' CRS.
void setCenter(const QgsPointXY ¢er)
Set the center of the map canvas, in geographical coordinates.
void setParallelRenderingEnabled(bool enabled)
Set whether the layers are rendered in parallel or sequentially.
void setDestinationCrs(const QgsCoordinateReferenceSystem &crs)
Sets destination coordinate reference system.
void flashFeatureIds(QgsVectorLayer *layer, const QgsFeatureIds &ids, const QColor &startColor=QColor(255, 0, 0, 255), const QColor &endColor=QColor(255, 0, 0, 0), int flashes=3, int duration=500)
Causes a set of features with matching ids from a vector layer to flash within the canvas.
void installInteractionBlocker(QgsMapCanvasInteractionBlocker *blocker)
Installs an interaction blocker onto the canvas, which may prevent certain map canvas interactions fr...
bool isParallelRenderingEnabled() const
Check whether the layers are rendered in parallel or sequentially.
double scale() const
Returns the last reported scale of the canvas.
QgsSnappingUtils * snappingUtils() const
Returns snapping utility class that is associated with map canvas.
Qgis::DistanceUnit mapUnits() const
Convenience function for returning the current canvas map units.
double rotation() const
Gets the current map canvas rotation in clockwise degrees.
void temporalRangeChanged()
Emitted when the map canvas temporal range changes.
void paintEvent(QPaintEvent *e) override
void zoomToLayers(const QList< QgsMapLayer * > &layers)
Zoom to the combined extent of a set of layers.
void zoomLastStatusChanged(bool available)
Emitted when zoom last status changed.
void setSegmentationTolerance(double tolerance)
Sets the segmentation tolerance applied when rendering curved geometries.
void themeChanged(const QString &theme)
Emitted when the canvas has been assigned a different map theme.
void destinationCrsChanged()
Emitted when map CRS has changed.
void transformContextChanged()
Emitted when the canvas transform context is changed.
void keyPressed(QKeyEvent *e)
Emit key press event.
void setMapTool(QgsMapTool *mapTool, bool clean=false)
Sets the map tool currently being used on the canvas.
QColor canvasColor() const
Read property of QColor bgColor.
void mapCanvasRefreshed()
Emitted when canvas finished a refresh request.
int mapUpdateInterval() const
Find out how often map preview should be updated while it is being rendered (in milliseconds).
void setSelectionColor(const QColor &color)
Set color of selected vector features.
double mapUnitsPerPixel() const
Returns the mapUnitsPerPixel (map units per pixel) for the canvas.
void mouseDoubleClickEvent(QMouseEvent *e) override
void selectionChangedSlot()
Receives signal about selection change, and pass it on with layer info.
bool viewportEvent(QEvent *event) override
void setCustomDropHandlers(const QVector< QPointer< QgsCustomDropHandler > > &handlers)
Sets a list of custom drop handlers to use when drop events occur on the canvas.
void zoomToNextExtent()
Zoom to the next extent (view).
void layersChanged()
Emitted when a new set of layers has been received.
void zoomToFeatureIds(QgsVectorLayer *layer, const QgsFeatureIds &ids)
Set canvas extent to the bounding box of a set of features.
void setSelectiveMaskingSourceSets(const QVector< QgsSelectiveMaskingSourceSet > &sets)
Sets a list of all selective masking source sets defined for the map canvas.
void renderComplete(QPainter *painter)
Emitted when the canvas has rendered.
void zoomIn()
Zoom in with fixed factor.
QgsMapLayer * layer(int index)
Returns the map layer at position index in the layer stack.
void cancelJobs()
Cancel any rendering job, in a blocking way.
Qgis::MapCanvasFlags flags() const
Returns flags which control how the map canvas behaves.
bool allowInteraction(QgsMapCanvasInteractionBlocker::Interaction interaction) const
Returns true if the specified interaction is currently permitted on the canvas.
void wheelEvent(QWheelEvent *e) override
bool previewModeEnabled() const
Returns whether a preview mode is enabled for the map canvas.
static const QgsSettingsEntryString * settingsCustomCoordinateCrs
const QgsMapToPixel * getCoordinateTransform()
Gets the current coordinate transform.
void dropEvent(QDropEvent *event) override
void setPreviewModeEnabled(bool previewEnabled)
Enables a preview mode for the map canvas.
QgsProject * project()
Returns the project linked to this canvas.
void setScaleLocked(bool isLocked)
Lock the scale, so zooming can be performed using magnication.
void setRotation(double degrees)
Set the rotation of the map canvas in clockwise degrees.
void removeInteractionBlocker(QgsMapCanvasInteractionBlocker *blocker)
Removes an interaction blocker from the canvas.
void readProject(const QDomDocument &)
called to read map canvas settings from project
void setTheme(const QString &theme)
Sets a map theme to show in the canvas.
void zoomToFeatureExtent(QgsRectangle &rect)
Zooms to feature extent.
QMap< QString, QString > layerStyleOverrides() const
Returns the stored overrides of styles for layers.
const QgsMapSettings & mapSettings() const
Gets access to properties used for map rendering.
QgsRectangle extent() const
Returns the current zoom extent of the map canvas.
void setMessageBar(QgsMessageBar *bar)
Sets a message bar to use alongside the map canvas.
void refresh()
Repaints the canvas map.
QgsMapLayer * currentLayer()
returns current layer (set by legend widget)
@ FlagDontInvalidateCachedRendersWhenRangeChanges
Any cached rendering will not be invalidated when z range context is modified.
static QgsRectangle combinedExtent(const QList< QgsMapLayer * > &layers, const QgsCoordinateReferenceSystem &crs, const QgsCoordinateTransformContext &transformContext)
Returns the combined extent of a list of layers.
Base class for all map layer types.
void autoRefreshIntervalChanged(int interval)
Emitted when the auto refresh interval changes.
void rendererChanged()
Signal emitted when renderer is changed.
void repaintRequested(bool deferredUpdate=false)
By emitting this signal the layer tells that either appearance or content have been changed and any v...
A mouse event which is the result of a user interaction with a QgsMapCanvas.
Responsible for keeping a cache of rendered images resulting from a map rendering job.
Job implementation that renders everything sequentially using a custom painter.
void waitForFinished() override
Block until the job has finished.
const QgsMapSettings & mapSettings() const
Returns map settings with which this job was started.
void finished()
emitted when asynchronous rendering is finished (or canceled).
static const QgsSettingsEntryBool * settingsLogCanvasRefreshEvent
Settings entry log canvas refresh event.
void start()
Start the rendering job and immediately return.
QList< QgsMapRendererJob::Error > Errors
virtual QImage renderedImage()=0
Gets a preview/resulting image.
static bool isValidExtent(const QgsRectangle &extent)
Returns true if an extent is a valid extent which can be used by QgsMapSettings.
static QString worldFileContent(const QgsMapSettings &mapSettings)
Creates the content of a world file.
Contains configuration for rendering maps.
Qgis::DistanceUnit mapUnits() const
Returns the units of the map's geographical coordinates - used for scale calculation.
QList< QgsMapLayer * > layers(bool expandGroupLayers=false) const
Returns the list of layers which will be rendered in the map.
QPolygonF visiblePolygon() const
Returns the visible area as a polygon (may be rotated).
void setLayers(const QList< QgsMapLayer * > &layers)
Sets the list of layers to render in the map.
double scale() const
Returns the calculated map scale.
void setFrameRate(double rate)
Sets the frame rate of the map (in frames per second), for maps which are part of an animation.
QgsRectangle layerExtentToOutputExtent(const QgsMapLayer *layer, QgsRectangle extent) const
transform bounding box from layer's CRS to output CRS
const QgsMapToPixel & mapToPixel() const
double mapUnitsPerPixel() const
Returns the distance in geographical coordinates that equals to one pixel in the map.
QgsRectangle extent() const
Returns geographical coordinates of the rectangle that should be rendered.
void setExtent(const QgsRectangle &rect, bool magnified=true)
Sets the coordinates of the rectangle which should be rendered.
QgsRectangle visibleExtent() const
Returns the actual extent derived from requested extent that takes output image size into account.
QgsRectangle fullExtent() const
returns current extent of layer set
void setCurrentFrame(long long frame)
Sets the current frame of the map, for maps which are part of an animation.
bool testFlag(Qgis::MapSettingsFlag flag) const
Check whether a particular flag is enabled.
double rotation() const
Returns the rotation of the resulting map image, in degrees clockwise.
QgsPointXY mapToLayerCoordinates(const QgsMapLayer *layer, QgsPointXY point) const
transform point coordinates from output CRS to layer's CRS
QgsCoordinateReferenceSystem destinationCrs() const
Returns the destination coordinate reference system for the map render.
void setFlag(Qgis::MapSettingsFlag flag, bool on=true)
Enable or disable a particular flag (other flags are not affected).
void readXml(QDomNode &node)
Restore the map settings from a XML node.
void mapThemesChanged()
Emitted when map themes within the collection are changed.
void mapThemeRenamed(const QString &name, const QString &newName)
Emitted when a map theme within the collection is renamed.
void mapThemeChanged(const QString &theme)
Emitted when a map theme changes definition.
Perform transforms between map coordinates and device coordinates.
double mapUnitsPerPixel() const
Returns the current map units per pixel.
QgsPointXY toMapCoordinates(int x, int y) const
Transforms device coordinates to map (world) coordinates.
A bar for displaying non-blocking messages to the user.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE(), Qgis::StringFormat format=Qgis::StringFormat::PlainText)
Adds a message to the log instance (and creates it if necessary).
static bool isUriList(const QMimeData *data)
QList< QgsMimeDataUtils::Uri > UriList
static UriList decodeUriList(const QMimeData *data)
double sqrDist(double x, double y) const
Returns the squared distance between this point a specified x, y coordinate.
void setY(double y)
Sets the y value of the point.
void setX(double x)
Sets the x value of the point.
A graphics effect which can be applied to a widget to simulate various printing and color blindness m...
QgsReferencedRectangle fullExtent() const
Returns the full extent of the project, which represents the maximal limits of the project.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
static QgsProject * instance()
Returns the QgsProject singleton instance.
Q_INVOKABLE QgsMapLayer * mapLayer(const QString &layerId) const
Retrieve a pointer to a registered layer by layer ID.
void scaleMethodChanged()
Emitted when the project's scale method is changed.
void ellipsoidChanged(const QString &ellipsoid)
Emitted when the project ellipsoid is changed.
void projectColorsChanged()
Emitted whenever the project's color scheme has been changed.
void elevationShadingRendererChanged()
Emitted when the map shading renderer changes.
void readProject(const QDomDocument &document)
Emitted when a project is being read.
const QgsProjectViewSettings * viewSettings() const
Returns the project's view settings, which contains settings and properties relating to how a QgsProj...
void transformContextChanged()
Emitted when the project transformContext() is changed.
void writeProject(QDomDocument &document)
Emitted when the project is being written.
A container for the context for various read/write operations on objects.
A rectangle specified with double values.
void scale(double scaleFactor, const QgsPointXY *c=nullptr)
Scale the rectangle around its center point.
void combineExtentWith(const QgsRectangle &rect)
Expands the rectangle so that it covers both the original rectangle and the given rectangle.
static QgsRectangle fromCenterAndSize(const QgsPointXY ¢er, double width, double height)
Creates a new rectangle, given the specified center point and width and height.
void setNull()
Mark a rectangle as being null (holding no spatial information).
A QgsRectangle with associated coordinate reference system.
Stores collated details of rendered items during a map rendering operation.
Responsible for drawing transient features (e.g.
void setWidth(double width)
Sets the width of the line.
void setSecondaryStrokeColor(const QColor &color)
Sets a secondary stroke color for the rubberband which will be drawn under the main stroke color.
@ ICON_CIRCLE
A circle is used to highlight points (○).
void setStrokeColor(const QColor &color)
Sets the stroke color for the rubberband.
void setIcon(IconType icon)
Sets the icon type to highlight point geometries.
void updatePosition() override
called on changed extent or resize event to update position of the item
void addGeometry(const QgsGeometry &geometry, QgsMapLayer *layer, bool doUpdate=true)
Adds the geometry of an existing feature to a rubberband This is useful for multi feature highlightin...
void setFillColor(const QColor &color)
Sets the fill color for the rubberband.
void clear(const QString &group="startup")
clear Clear all profile data.
Scoped object for saving and restoring a QPainter object's state.
Scoped object for logging of the runtime for a single operation or group of operations.
A utility class for dynamic handling of changes to screen properties.
void screenDpiChanged(double dpi)
Emitted whenever the screen dpi associated with the widget is changed.
T value(const QString &dynamicKeyPart=QString()) const
Returns settings value.
bool setValue(const T &value, const QString &dynamicKeyPart=QString()) const
Set settings value.
A boolean settings entry.
static const QgsSettingsEntryDouble * settingsSegmentationTolerance
Settings entry segmentation tolerance for curved geometries.
static const QgsSettingsEntryBool * settingsRespectScreenDPI
Settings entry respect screen dpi.
static const QgsSettingsEntryEnumFlag< QgsAbstractGeometry::SegmentationToleranceType > * settingsSegmentationToleranceType
Settings entry segmentation tolerance type for curved geometries.
static const QgsSettingsEntryDouble * settingsZoomFactor
Settings entry zoom factor.
static const QgsSettingsEntryBool * settingsReverseWheelZoom
Settings entry reverse wheel zoom.
static QgsSettingsTreeNode * sTreeRendering
static QgsSettingsTreeNode * sTreeMap
Contains configuration of snapping and can return answers to snapping queries.
A proxy widget for QStatusBar.
void remoteSvgFetched(const QString &url)
Emitted when the cache has finished retrieving an SVG file from a remote url.
static double rendererFrameRate(const QgsFeatureRenderer *renderer)
Calculates the frame rate (in frames per second) at which the given renderer must be redrawn.
A controller base class for temporal objects, contains a signal for notifying updates of the objects ...
void updateTemporalRange(const QgsDateTimeRange &range)
Signals that a temporal range has changed and needs to be updated in all connected objects.
Implements a temporal controller based on a frame by frame navigation and animation.
void navigationModeChanged(Qgis::TemporalNavigationMode mode)
Emitted whenever the navigation mode changes.
@ FlagDontInvalidateCachedRendersWhenRangeChanges
Any cached rendering will not be invalidated when temporal range context is modified.
T begin() const
Returns the beginning of the range.
T end() const
Returns the upper bound of the range.
Temporarily sets a cursor override for the QApplication for the lifetime of the object.
void release()
Releases the cursor override early (i.e.
Represents a vector layer which manages a vector based dataset.
Q_INVOKABLE QgsRectangle boundingBoxOfSelected() const
Returns the bounding box of the selected features. If there is no selection, QgsRectangle(0,...
int selectedFeatureCount() const
Returns the number of features that are selected in this layer.
QgsRectangle extent() const final
Returns the extent of the layer.
virtual void updateExtents(bool force=false)
Update the extents for the layer.
Q_INVOKABLE Qgis::GeometryType geometryType() const
Returns point, line or polygon.
void selectionChanged(const QgsFeatureIds &selected, const QgsFeatureIds &deselected, bool clearAndSelect)
Emitted when selection was changed.
Implements a map layer that is dedicated to rendering of vector tiles.
QList< QgsFeature > selectedFeatures() const
Returns the list of features currently selected in the layer.
void selectionChanged()
Emitted whenever the selected features in the layer are changed.
int selectedFeatureCount() const
Returns the number of features that are selected in this layer.
Represent a 2-dimensional vector.
static Qgis::GeometryType geometryType(Qgis::WkbType type)
Returns the geometry type for a WKB type, e.g., both MultiPolygon and CurvePolygon would have a Polyg...
constexpr double CANVAS_MAGNIFICATION_MIN
Minimum magnification level allowed in map canvases.
constexpr double CANVAS_MAGNIFICATION_MAX
Maximum magnification level allowed in map canvases.
As part of the API refactoring and improvements which landed in the Processing API was substantially reworked from the x version This was done in order to allow much of the underlying Processing framework to be ported into c
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference).
QgsSignalBlocker< Object > whileBlocking(Object *object)
Temporarily blocks signals from a QObject while calling a single method from the object.
QSet< QgsFeatureId > QgsFeatureIds
#define QgsDebugMsgLevel(str, level)
#define QgsDebugError(str)
QList< QgsMapLayer * > filterLayersForRender(const QList< QgsMapLayer * > &layers)
QgsTemporalRange< QDateTime > QgsDateTimeRange
QgsRange which stores a range of date times.
double maxRenderingTimeMs
Default maximum allowable render time, in ms.
double lastRenderingTimeMs
Previous rendering time for the layer, in ms.