|
|
@ -286,18 +286,111 @@ bool UBGraphicsDelegateFrame::canResizeBottomRight(qreal width, qreal height, qr |
|
|
|
return res; |
|
|
|
return res; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QPointF UBGraphicsDelegateFrame::getFixedPointFromPos() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
QPointF fixedPoint; |
|
|
|
|
|
|
|
if (!moving() && !rotating()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (resizingTop())
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (mMirrorX && mMirrorY) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ((0 < mAngle) && (mAngle < 90)) |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().topLeft();
|
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().topRight(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ((0 < mAngle) && (mAngle <= 90)) |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().bottomRight(); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().bottomLeft(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (resizingLeft())
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (mMirrorX && mMirrorY) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ((0 < mAngle) && (mAngle < 90)) |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().bottomLeft();
|
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().topLeft(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if ((0 < mAngle) && (mAngle <= 90)) |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().topRight(); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
fixedPoint = delegated()->sceneBoundingRect().bottomRight(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return fixedPoint; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QSizeF UBGraphicsDelegateFrame::getResizeVector(qreal moveX, qreal moveY) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
qreal dPosX = 0; |
|
|
|
|
|
|
|
qreal dPosY = 0; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (resizingTop())
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (mMirrorX && mMirrorY) |
|
|
|
|
|
|
|
dPosY = moveY; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
dPosY = -moveY; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (resizingLeft())
|
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (mMirrorX && mMirrorY) |
|
|
|
|
|
|
|
dPosX = moveX; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
dPosX = -moveX; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
else if (resizingRight()) |
|
|
|
|
|
|
|
dPosX = (mMirrorX) ? -moveX : moveX; |
|
|
|
|
|
|
|
else if (resizingBottom())
|
|
|
|
|
|
|
|
dPosY = mMirrorY ? -moveY : moveY; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return QSizeF(dPosX, dPosY); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UBGraphicsDelegateFrame::resizeDelegate(qreal moveX, qreal moveY) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
QPointF fixedPoint = getFixedPointFromPos(); |
|
|
|
|
|
|
|
UBResizableGraphicsItem* resizableItem = dynamic_cast<UBResizableGraphicsItem*>(delegated()); |
|
|
|
|
|
|
|
if (resizableItem) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
QSizeF originalSize = delegated()->boundingRect().size();
|
|
|
|
|
|
|
|
resizableItem->resize(originalSize + getResizeVector(moveX, moveY)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (resizingTop() || resizingLeft() || ((mMirrorX || mMirrorY) && resizingBottomRight())) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
delegated()->setPos(delegated()->pos()-getFixedPointFromPos()+fixedPoint); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void UBGraphicsDelegateFrame::mouseMoveEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
void UBGraphicsDelegateFrame::mouseMoveEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
{ |
|
|
|
{ |
|
|
|
if (None == mCurrentTool) |
|
|
|
if (None == mCurrentTool) |
|
|
|
return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
QLineF move(mStartingPoint, event->scenePos()); |
|
|
|
QLineF move; |
|
|
|
|
|
|
|
if(rotating() || moving() || mOperationMode == Scaling) |
|
|
|
|
|
|
|
move = QLineF(mStartingPoint, event->scenePos()); |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
move = QLineF(event->lastScenePos(), event->scenePos()); |
|
|
|
|
|
|
|
|
|
|
|
qreal moveX = move.length() * cos((move.angle() - mAngle) * PI / 180); |
|
|
|
qreal moveX = move.length() * cos((move.angle() - mAngle) * PI / 180); |
|
|
|
qreal moveY = -move.length() * sin((move.angle() - mAngle) * PI / 180); |
|
|
|
qreal moveY = -move.length() * sin((move.angle() - mAngle) * PI / 180); |
|
|
|
qreal width = delegated()->boundingRect().width() * mTotalScaleX; |
|
|
|
qreal width = delegated()->boundingRect().width() * mTotalScaleX; |
|
|
|
qreal height = delegated()->boundingRect().height() * mTotalScaleY; |
|
|
|
qreal height = delegated()->boundingRect().height() * mTotalScaleY; |
|
|
|
|
|
|
|
|
|
|
|
if(mOperationMode == Scaling) |
|
|
|
if(!rotating()) |
|
|
|
{ |
|
|
|
{ |
|
|
|
mTranslateX = moveX; |
|
|
|
mTranslateX = moveX; |
|
|
|
// Perform the resize
|
|
|
|
// Perform the resize
|
|
|
@ -398,43 +491,6 @@ void UBGraphicsDelegateFrame::mouseMoveEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
else if (mOperationMode == Resizing || mOperationMode == ResizingHorizontally) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
mTranslateX = moveX; |
|
|
|
|
|
|
|
UBResizableGraphicsItem* resizableItem = dynamic_cast<UBResizableGraphicsItem*>(delegated()); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (resizableItem) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
QLineF mousePosDelta(delegated()->mapFromScene(event->lastScenePos()) |
|
|
|
|
|
|
|
, delegated()->mapFromScene(event->scenePos())); |
|
|
|
|
|
|
|
QSizeF incVector(0, 0); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (resizingBottomRight()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
incVector = QSizeF(mousePosDelta.dx(), mousePosDelta.dy()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (resizingRight()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
incVector = QSizeF(mousePosDelta.dx(), 0); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (resizingBottom()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
incVector = QSizeF(0, mousePosDelta.dy()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (resizingLeft()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
incVector = QSizeF(- mousePosDelta.dx(), 0); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else if (resizingTop()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
incVector = QSizeF(0, - mousePosDelta.dy()); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QSizeF newSize = resizableItem->size() + incVector; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
resizableItem->resize(newSize); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (rotating()) |
|
|
|
if (rotating()) |
|
|
|
{ |
|
|
|
{ |
|
|
@ -483,49 +539,56 @@ void UBGraphicsDelegateFrame::mouseMoveEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
|
|
|
|
|
|
|
|
// we just detects coordinates of corner before and after scaling and then moves object at diff between them.
|
|
|
|
// we just detects coordinates of corner before and after scaling and then moves object at diff between them.
|
|
|
|
if (resizingBottomRight() && mMirrorX) |
|
|
|
if (resizingBottomRight() && mMirrorX) |
|
|
|
|
|
|
|
{ |
|
|
|
mTranslateX += mInitialTransform.map(delegated()->boundingRect().bottomRight()).x() - tr.map(delegated()->boundingRect().bottomRight()).x(); |
|
|
|
mTranslateX += mInitialTransform.map(delegated()->boundingRect().bottomRight()).x() - tr.map(delegated()->boundingRect().bottomRight()).x(); |
|
|
|
else |
|
|
|
|
|
|
|
mTranslateX += mInitialTransform.map(delegated()->boundingRect().topLeft()).x() - tr.map(delegated()->boundingRect().topLeft()).x(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (resizingBottomRight() && mMirrorY) |
|
|
|
|
|
|
|
mTranslateY += mInitialTransform.map(delegated()->boundingRect().bottomRight()).y() - tr.map(delegated()->boundingRect().bottomRight()).y(); |
|
|
|
mTranslateY += mInitialTransform.map(delegated()->boundingRect().bottomRight()).y() - tr.map(delegated()->boundingRect().bottomRight()).y(); |
|
|
|
|
|
|
|
} |
|
|
|
else |
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
mTranslateX += mInitialTransform.map(delegated()->boundingRect().topLeft()).x() - tr.map(delegated()->boundingRect().topLeft()).x(); |
|
|
|
mTranslateY += mInitialTransform.map(delegated()->boundingRect().topLeft()).y() - tr.map(delegated()->boundingRect().topLeft()).y();
|
|
|
|
mTranslateY += mInitialTransform.map(delegated()->boundingRect().topLeft()).y() - tr.map(delegated()->boundingRect().topLeft()).y();
|
|
|
|
|
|
|
|
} |
|
|
|
// Update the transform
|
|
|
|
|
|
|
|
tr = buildTransform(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
else if (resizingTop() || resizingLeft()) |
|
|
|
else if (resizingTop() || resizingLeft()) |
|
|
|
{ |
|
|
|
|
|
|
|
if (mOperationMode == Scaling) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
QPointF bottomRight = tr.map(delegated()->boundingRect().bottomRight()); |
|
|
|
QPointF bottomRight = tr.map(delegated()->boundingRect().bottomRight()); |
|
|
|
QPointF fixedPoint = mInitialTransform.map(delegated()->boundingRect().bottomRight()); |
|
|
|
QPointF fixedPoint = mInitialTransform.map(delegated()->boundingRect().bottomRight()); |
|
|
|
mTranslateX += fixedPoint.x() - bottomRight.x(); |
|
|
|
mTranslateX += fixedPoint.x() - bottomRight.x(); |
|
|
|
mTranslateY += fixedPoint.y() - bottomRight.y(); |
|
|
|
mTranslateY += fixedPoint.y() - bottomRight.y(); |
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
QLineF vector; |
|
|
|
if (mOperationMode == Scaling || moving() || rotating()) |
|
|
|
if (resizingLeft()) |
|
|
|
|
|
|
|
{ |
|
|
|
{ |
|
|
|
QPointF topRight1 = mInitialTransform.map(QPointF(delegated()->boundingRect().width() - moveX, 0)); |
|
|
|
tr = buildTransform(); |
|
|
|
QPointF topRight2 = mInitialTransform.map(QPointF(delegated()->boundingRect().width(), 0)); |
|
|
|
delegated()->setTransform(tr); |
|
|
|
vector.setPoints(topRight1, topRight2); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
else |
|
|
|
else if (mOperationMode == Resizing) |
|
|
|
{ |
|
|
|
{ |
|
|
|
QPointF bottomLeft1 = mInitialTransform.map(QPointF(0, delegated()->boundingRect().height() - moveY)); |
|
|
|
if (!moving() && !rotating()) |
|
|
|
QPointF bottomLeft2 = mInitialTransform.map(QPointF(0, delegated()->boundingRect().height())); |
|
|
|
{ |
|
|
|
vector.setPoints(bottomLeft1, bottomLeft2); |
|
|
|
if (resizingBottomRight()) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (mMirrorX && mMirrorY) |
|
|
|
|
|
|
|
mCurrentTool = ResizeTop; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
mCurrentTool = ResizeBottom; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
resizeDelegate(moveX, moveY);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (mMirrorX && mMirrorY) |
|
|
|
|
|
|
|
mCurrentTool = ResizeLeft; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
mCurrentTool = ResizeRight; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
resizeDelegate(moveX, moveY);
|
|
|
|
|
|
|
|
mCurrentTool = ResizeBottomRight; |
|
|
|
} |
|
|
|
} |
|
|
|
mTranslateX = vector.dx(); |
|
|
|
else |
|
|
|
mTranslateY = vector.dy(); |
|
|
|
resizeDelegate(moveX, moveY);
|
|
|
|
} |
|
|
|
} |
|
|
|
tr = buildTransform(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
delegated()->setTransform(tr); |
|
|
|
|
|
|
|
event->accept(); |
|
|
|
event->accept(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|