Skip to content

Commit

Permalink
Sync with rotate tool
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Jan 12, 2021
1 parent b64283a commit 934fa1d
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 42 deletions.
89 changes: 51 additions & 38 deletions src/app/qgsmaptoolscalefeature.cpp
Expand Up @@ -102,10 +102,12 @@ void QgsScaleMagnetWidget::scaleSpinBoxValueChanged( double scale )
emit scaleChanged( scale );
}

//
// QgsMapToolScaleFeature
//

QgsMapToolScaleFeature::QgsMapToolScaleFeature( QgsMapCanvas *canvas )
: QgsMapToolEdit( canvas )
, mScaling( 0 )
, mScalingActive( false )
{
}

Expand All @@ -124,8 +126,8 @@ void QgsMapToolScaleFeature::canvasMoveEvent( QgsMapMouseEvent *e )
}
if ( mScalingActive )
{
const double distance = mFeatureCenter.distance( toLayerCoordinates( mLayer, e->mapPoint() ) );
double scale = distance / mBaseDistance; // min 0 or no limit?
const double distance = mFeatureCenterMapCoords.distance( e->mapPoint() );
double scale = distance / mBaseDistance; // min 0 or no limit?

if ( mScalingWidget )
{
Expand All @@ -146,8 +148,8 @@ void QgsMapToolScaleFeature::canvasReleaseEvent( QgsMapMouseEvent *e )
return;
}

//QgsVectorLayer *mLayer = currentVectorLayer();
if ( !mLayer )
QgsVectorLayer *vlayer = currentVectorLayer();
if ( !vlayer )
{
deleteScalingWidget();
deleteRubberband();
Expand All @@ -166,10 +168,11 @@ void QgsMapToolScaleFeature::canvasReleaseEvent( QgsMapMouseEvent *e )
{
if ( !mAnchorPoint )
{
return;
mAnchorPoint = qgis::make_unique<QgsVertexMarker>( mCanvas );
mAnchorPoint->setIconType( QgsVertexMarker::ICON_CROSS );
}
mFeatureCenter = toLayerCoordinates( mLayer, e->mapPoint() );
mAnchorPoint->setCenter( mFeatureCenter );
mAnchorPoint->setCenter( e->mapPoint() );
mFeatureCenterMapCoords = e->mapPoint();
return;
}

Expand All @@ -184,29 +187,31 @@ void QgsMapToolScaleFeature::canvasReleaseEvent( QgsMapMouseEvent *e )

mInitialCanvasPos = e->pos();

if ( !mLayer->isEditable() )
if ( !vlayer->isEditable() )
{
notifyNotEditableLayer();
return;
}

QgsPointXY layerInitCoords = toLayerCoordinates( mLayer, e->mapPoint() );
QgsPointXY layerCoords = toLayerCoordinates( vlayer, e->mapPoint() );
double searchRadius = QgsTolerance::vertexSearchRadius( mCanvas->currentLayer(), mCanvas->mapSettings() );
QgsRectangle selectRect( layerInitCoords.x() - searchRadius, layerInitCoords.y() - searchRadius,
layerInitCoords.x() + searchRadius, layerInitCoords.y() + searchRadius );
QgsRectangle selectRect( layerCoords.x() - searchRadius, layerCoords.y() - searchRadius,
layerCoords.x() + searchRadius, layerCoords.y() + searchRadius );

bool autoCalculateAnchorPoint = false;
if ( !mAnchorPoint )
{
mAnchorPoint = qgis::make_unique<QgsVertexMarker>( mCanvas );
mAnchorPoint->setIconType( QgsVertexMarker::ICON_CROSS );
autoCalculateAnchorPoint = true;
}

if ( mLayer->selectedFeatureCount() == 0 )
if ( vlayer->selectedFeatureCount() == 0 )
{
QgsFeatureIterator fit = mLayer->getFeatures( QgsFeatureRequest().setNoAttributes().setFilterRect( selectRect ) );
QgsFeatureIterator fit = vlayer->getFeatures( QgsFeatureRequest().setNoAttributes().setFilterRect( selectRect ) );

//find the closest feature
QgsGeometry pointGeometry = QgsGeometry().fromPointXY( layerInitCoords );// layerInitCoords )
QgsGeometry pointGeometry = QgsGeometry().fromPointXY( layerCoords );
if ( pointGeometry.isNull() )
{
return;
Expand All @@ -221,7 +226,6 @@ void QgsMapToolScaleFeature::canvasReleaseEvent( QgsMapMouseEvent *e )
if ( f.hasGeometry() )
{
double currentDistance = pointGeometry.distance( f.geometry() );

if ( currentDistance < minDistance )
{
minDistance = currentDistance;
Expand All @@ -237,34 +241,43 @@ void QgsMapToolScaleFeature::canvasReleaseEvent( QgsMapMouseEvent *e )
}

mExtent = cf.geometry().boundingBox();
mFeatureCenter = mExtent.center();
if ( autoCalculateAnchorPoint )
{
mFeatureCenterMapCoords = toMapCoordinates( vlayer, mExtent.center() );
mAnchorPoint->setCenter( mFeatureCenterMapCoords );
}
else
{
mFeatureCenterMapCoords = mAnchorPoint->center();
}

mScaledFeatures.clear();
mScaledFeatures << cf.id(); //todo: take the closest feature, not the first one...

mRubberBand = createRubberBand( mLayer->geometryType() );
mRubberBand->setToGeometry( cf.geometry(), mLayer );
mRubberBand = createRubberBand( vlayer->geometryType() );
mRubberBand->setToGeometry( cf.geometry(), vlayer );
}
else
{
mScaledFeatures = mLayer->selectedFeatureIds();
mScaledFeatures = vlayer->selectedFeatureIds();

mRubberBand = createRubberBand( mLayer->geometryType() );
mRubberBand = createRubberBand( vlayer->geometryType() );

QgsFeature feat;
QgsFeatureIterator it = mLayer->getSelectedFeatures();
QgsFeatureIterator it = vlayer->getSelectedFeatures();
while ( it.nextFeature( feat ) )
{
mRubberBand->addGeometry( feat.geometry(), mLayer );
mRubberBand->addGeometry( feat.geometry(), vlayer );
}
}
QgsPointXY mapAnchor = toMapCoordinates( mLayer, mFeatureCenter );

QgsPointXY mapAnchor = toMapCoordinates( vlayer, mFeatureCenterMapCoords );
QPoint rubberAnchor = toCanvasCoordinates( mapAnchor );
mAnchorPoint->setCenter( mapAnchor );

mRubberScale = QPointF( rubberAnchor.x() - mRubberBand->x(), rubberAnchor.y() - mRubberBand->y() );
mRubberBand->setTransformOriginPoint( rubberAnchor );
mRubberBand->show();
mBaseDistance = toLayerCoordinates( mLayer, e->mapPoint() ).distance( mFeatureCenter );
mBaseDistance = e->mapPoint().distance( mFeatureCenterMapCoords );
mScaling = 1.0;

createScalingWidget();
Expand All @@ -281,8 +294,8 @@ void QgsMapToolScaleFeature::cancel()
{
deleteScalingWidget();
deleteRubberband();
QgsVectorLayer *mLayer = currentVectorLayer();
if ( mLayer->selectedFeatureCount() == 0 )
QgsVectorLayer *vlayer = currentVectorLayer();
if ( vlayer->selectedFeatureCount() == 0 )
{
mAnchorPoint.reset();
}
Expand All @@ -306,13 +319,13 @@ void QgsMapToolScaleFeature::updateRubberband( double scale )
}
}


void QgsMapToolScaleFeature::applyScaling( double scale )
{
mScaling = scale;
mScalingActive = false;

if ( !mLayer )
QgsVectorLayer *vlayer = currentVectorLayer();
if ( !vlayer )
{
deleteRubberband();
notifyNotVectorLayer();
Expand Down Expand Up @@ -356,25 +369,25 @@ void QgsMapToolScaleFeature::keyReleaseEvent( QKeyEvent *e )

void QgsMapToolScaleFeature::activate()
{
mLayer = currentVectorLayer();
if ( !mLayer )
QgsVectorLayer *vlayer = currentVectorLayer();
if ( !vlayer )
{
return;
}

if ( !mLayer->isEditable() )
if ( !vlayer->isEditable() )
{
return;
}

if ( mLayer->selectedFeatureCount() > 0 )
if ( vlayer->selectedFeatureCount() > 0 )
{
mExtent = mLayer->boundingBoxOfSelected();
mFeatureCenter = mExtent.center();
mExtent = vlayer->boundingBoxOfSelected();
mFeatureCenterMapCoords = mExtent.center();

mAnchorPoint = qgis::make_unique<QgsVertexMarker>( mCanvas );
mAnchorPoint->setIconType( QgsVertexMarker::ICON_CROSS );
mAnchorPoint->setCenter( mFeatureCenter );
mAnchorPoint->setCenter( mFeatureCenterMapCoords );
}
QgsMapTool::activate();
}
Expand Down
7 changes: 3 additions & 4 deletions src/app/qgsmaptoolscalefeature.h
Expand Up @@ -96,24 +96,23 @@ class APP_EXPORT QgsMapToolScaleFeature: public QgsMapToolEdit
void deleteScalingWidget();

//! Start point of the move in map coordinates
QgsPointXY mFeatureCenter;
QgsPointXY mFeatureCenterMapCoords;
QPointF mRubberScale;
QPointF mInitialCanvasPos;

QgsVectorLayer *mLayer = nullptr;
//! Rubberband that shows the feature being moved
QgsRubberBand *mRubberBand = nullptr;

//! Id of moved feature
QgsFeatureIds mScaledFeatures;
double mScaling;
double mScaling = 0;
double mBaseDistance = 1;
QgsRectangle mExtent;

QgsPointXY mCenterPoint;
std::unique_ptr<QgsVertexMarker> mAnchorPoint = nullptr;

bool mScalingActive;
bool mScalingActive = false;

//! Shows current scale value and allows numerical editing
QgsScaleMagnetWidget *mScalingWidget = nullptr;
Expand Down

0 comments on commit 934fa1d

Please sign in to comment.