33void QgsMapCanvasMap::setContent(
const QImage &image,
const QgsRectangle &rect )
35 mPreviewImages.clear();
40 if ( mMapCanvas->property(
"retro" ).toBool() )
41 mImage = mImage.scaled( mImage.width() / 3, mImage.height() / 3 )
42 .convertToFormat( QImage::Format_Indexed8, Qt::OrderedDither | Qt::OrderedAlphaDither );
47void QgsMapCanvasMap::addPreviewImage(
const QImage &image,
const QgsRectangle &rect )
49 mPreviewImages.append( qMakePair( image, rect ) );
53QRectF QgsMapCanvasMap::boundingRect()
const
55 const double width = mItemSize.width();
56 const double height = mItemSize.height();
58 return QRectF( -width, -height, 3 * width, 3 * height );
61void QgsMapCanvasMap::paint( QPainter *painter )
64 const int w = std::round( mItemSize.width() ) - 2;
65 const int h = std::round( mItemSize.height() ) - 2;
68 if ( mImage.size() != QSize( w, h ) * mImage.devicePixelRatioF() )
70 QgsDebugMsgLevel( QStringLiteral(
"map paint DIFFERENT SIZE: img %1,%2 item %3,%4" ).arg( mImage.width() / mImage.devicePixelRatioF() ).arg( mImage.height() / mImage.devicePixelRatioF() ).arg( w ).arg( h ), 2 );
78 const QgsPointXY pt = toMapCoordinates( QPoint( 0, 0 ) );
79 const double offsetX = pt.
x() - mRect.xMinimum();
80 const double offsetY = pt.
y() - mRect.yMaximum();
83 QList<QPair<QImage, QgsRectangle>>::const_iterator imIt = mPreviewImages.constBegin();
84 for ( ; imIt != mPreviewImages.constEnd(); ++imIt )
86 const QPointF ul = toCanvasCoordinates(
QgsPoint( imIt->second.xMinimum() + offsetX, imIt->second.yMaximum() + offsetY ) );
87 const QPointF lr = toCanvasCoordinates(
QgsPoint( imIt->second.xMaximum() + offsetX, imIt->second.yMinimum() + offsetY ) );
88 painter->drawImage( QRectF( ul.x(), ul.y(), lr.x() - ul.x(), lr.y() - ul.y() ), imIt->first, QRect( 0, 0, imIt->first.width(), imIt->first.height() ) );
92 painter->drawImage( QRect( 0, 0, w, h ), mImage );
94 painter->drawImage( 0, 0, mImage );
98 QRectF br = boundingRect();
99 QPointF
c = br.center();
100 double rad = std::max( br.width(), br.height() ) / 10;
101 painter->drawRoundedRect( br, rad, rad );
102 painter->drawLine( QLineF( 0, 0, br.width(), br.height() ) );
103 painter->drawLine( QLineF( br.width(), 0, 0, br.height() ) );
105 double nw = br.width() * 0.5;
106 double nh = br.height() * 0.5;
107 br = QRectF(
c - QPointF( nw / 2, nh / 2 ), QSize( nw, nh ) );
108 painter->drawRoundedRect( br, rad, rad );
110 nw = br.width() * 0.5;
111 nh = br.height() * 0.5;
112 br = QRectF(
c - QPointF( nw / 2, nh / 2 ), QSize( nw, nh ) );
113 painter->drawRoundedRect( br, rad, rad );
An abstract class for items that can be placed on the map canvas.
Map canvas is a class for displaying all GIS data types on a canvas.
A class to represent a 2D point.
Point geometry type, with support for z-dimension and m-values.
A rectangle specified with double values.
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
#define QgsDebugMsgLevel(str, level)