Fix tools with extent when map is rotated (add a messagebar)

This commit is contained in:
lbartoletti 2017-09-25 14:49:30 +02:00
parent 83d5e77434
commit e80cafb884
5 changed files with 30 additions and 16 deletions

View File

@ -76,13 +76,13 @@ class QgsMapToolAddRectangle: public QgsMapToolCapture
int side( ) const { return mSide; }
private:
//! Convenient member for the azimuth of the rotated rectangle. \see QgsMapToolRectangle3Points
//! Convenient member for the azimuth of the rotated rectangle or when map is rotated.
double mAzimuth = 0.0;
//! Convenient member for the first distance of the rotated rectangle. \see QgsMapToolRectangle3Points
//! Convenient member for the first distance of the rotated rectangle or when map is rotated.
double mDistance1 = 0.0;
//! Convenient member for the second distance of the rotated rectangle. \see QgsMapToolRectangle3Points
//! Convenient member for the second distance of the rotated rectangle or when map is rotated.
double mDistance2 = 0.0;
//! Convenient member for the side where the second distance is drawn. \see QgsMapToolRectangle3Points
//! Convenient member for the side where the second distance is drawn or when map is rotated.
int mSide = 1;
};

View File

@ -61,8 +61,14 @@ void QgsMapToolEllipseExtent::cadCanvasMoveEvent( QgsMapMouseEvent *e )
{
QgsPoint mapPoint( e->mapPoint() );
if ( mTempRubberBand )
{
if ( qgsDoubleNear( mCanvas->rotation(), 0.0 ) )
{
mEllipse = QgsEllipse().fromExtent( mPoints.at( 0 ), mapPoint );
mTempRubberBand->setGeometry( mEllipse.toPolygon() );
}
else
emit messageEmitted( tr( "Cannot use this tool when the map canvas is rotated" ), QgsMessageBar::WARNING );
}
}

View File

@ -29,10 +29,6 @@ class QgsMapToolRectangle3Points: public QgsMapToolAddRectangle
void cadCanvasReleaseEvent( QgsMapMouseEvent *e ) override;
void cadCanvasMoveEvent( QgsMapMouseEvent *e ) override;
private:
double mAzimuth;
double mDistance1;
double mDistance2;
};
#endif // QGSMAPTOOLRECTANGLE3POINTS_H

View File

@ -68,6 +68,9 @@ void QgsMapToolRectangleCenter::cadCanvasMoveEvent( QgsMapMouseEvent *e )
switch ( mPoints.size() )
{
case 1:
{
if ( qgsDoubleNear( mCanvas->rotation(), 0.0 ) )
{
double xOffset = fabs( mapPoint.x() - mPoints.at( 0 ).x() );
double yOffset = fabs( mapPoint.y() - mPoints.at( 0 ).y() );
@ -76,6 +79,9 @@ void QgsMapToolRectangleCenter::cadCanvasMoveEvent( QgsMapMouseEvent *e )
mTempRubberBand->setGeometry( QgsMapToolAddRectangle::rectangleToPolygon() );
}
else
emit messageEmitted( tr( "Cannot use this tool when the map canvas is rotated" ), QgsMessageBar::WARNING );
}
break;
default:
break;

View File

@ -68,10 +68,16 @@ void QgsMapToolRectangleExtent::cadCanvasMoveEvent( QgsMapMouseEvent *e )
{
case 1:
{
if ( qgsDoubleNear( mCanvas->rotation(), 0.0 ) )
{
mRectangle = QgsRectangle( mPoints.at( 0 ), mapPoint );
mTempRubberBand->setGeometry( QgsMapToolAddRectangle::rectangleToPolygon( ) );
}
else
emit messageEmitted( tr( "Cannot use this tool when the map canvas is rotated" ), QgsMessageBar::WARNING );
}
break;
default:
break;