|
|
|
@ -13,30 +13,33 @@ |
|
|
|
|
#include "board/UBBoardController.h" |
|
|
|
|
#include "board/UBDrawingController.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "core/memcheck.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const QRectF UBGraphicsProtractor::sDefaultRect = QRectF(-175, -175, 350, 350); |
|
|
|
|
const QRectF UBGraphicsProtractor::sDefaultRect = QRectF(-175, -175, 350, 350); |
|
|
|
|
|
|
|
|
|
UBGraphicsProtractor::UBGraphicsProtractor() |
|
|
|
|
: QGraphicsEllipseItem(sDefaultRect) |
|
|
|
|
, mCurrentTool(None) |
|
|
|
|
, mShowButtons(false) |
|
|
|
|
, mCurrentAngle(0) |
|
|
|
|
, mSpan(180) |
|
|
|
|
, mStartAngle(0) |
|
|
|
|
, mScaleFactor(1) |
|
|
|
|
, mResetSvgItem(0) |
|
|
|
|
, mResizeSvgItem(0) |
|
|
|
|
, mMarkerSvgItem(0) |
|
|
|
|
: QGraphicsEllipseItem(sDefaultRect) |
|
|
|
|
, mCurrentTool(None) |
|
|
|
|
, mShowButtons(false) |
|
|
|
|
, mCurrentAngle(0) |
|
|
|
|
, mSpan(180) |
|
|
|
|
, mStartAngle(0) |
|
|
|
|
, mScaleFactor(1) |
|
|
|
|
, mResetSvgItem(0) |
|
|
|
|
, mResizeSvgItem(0) |
|
|
|
|
, mMarkerSvgItem(0) |
|
|
|
|
{ |
|
|
|
|
sFillTransparency = 127; |
|
|
|
|
sDrawTransparency = 192; |
|
|
|
|
|
|
|
|
|
create(*this); |
|
|
|
|
create(*this); |
|
|
|
|
|
|
|
|
|
setCacheMode(QGraphicsItem::DeviceCoordinateCache); |
|
|
|
|
setCacheMode(QGraphicsItem::DeviceCoordinateCache); |
|
|
|
|
|
|
|
|
|
setStartAngle(0); |
|
|
|
|
setSpanAngle(180 * 16); |
|
|
|
|
setStartAngle(0); |
|
|
|
|
setSpanAngle(180 * 16); |
|
|
|
|
|
|
|
|
|
mResetSvgItem = new QGraphicsSvgItem(":/images/resetTool.svg", this); |
|
|
|
|
mResetSvgItem->setVisible(false); |
|
|
|
@ -68,7 +71,7 @@ void UBGraphicsProtractor::paint(QPainter *painter, const QStyleOptionGraphicsIt |
|
|
|
|
painter->setPen(drawColor()); |
|
|
|
|
painter->setBrush(fillBrush()); |
|
|
|
|
painter->drawPie(QRectF(rect().center().x() - radius(), rect().center().y() - radius(), |
|
|
|
|
2 * radius(), 2 * radius()), mStartAngle * 16, mSpan * 16); |
|
|
|
|
2 * radius(), 2 * radius()), mStartAngle * 16, mSpan * 16); |
|
|
|
|
paintGraduations(painter); |
|
|
|
|
paintButtons(painter); |
|
|
|
|
paintAngleMarker(painter); |
|
|
|
@ -125,10 +128,10 @@ QPainterPath UBGraphicsProtractor::shape() const |
|
|
|
|
qreal centerY = center.y(); |
|
|
|
|
|
|
|
|
|
buttonPath.addRect(resizeButtonRect().adjusted(centerX, centerY, centerX, centerY)); |
|
|
|
|
if(!resizeButtonRect().contains(markerRect)) |
|
|
|
|
if (!resizeButtonRect().contains(markerRect)) |
|
|
|
|
{ |
|
|
|
|
buttonPath.addRect(markerRect.adjusted(centerX - markerRect.left() * 2 - markerRect.width(), centerY |
|
|
|
|
, centerX - markerRect.left() * 2 - markerRect.width(), centerY)); |
|
|
|
|
, centerX - markerRect.left() * 2 - markerRect.width(), centerY)); |
|
|
|
|
buttonPath.addRect(markerRect.adjusted(centerX, centerY, centerX, centerY)); |
|
|
|
|
} |
|
|
|
|
buttonPath.addRect(closeButtonRect().adjusted(centerX, centerY, centerX, centerY)); |
|
|
|
@ -166,44 +169,44 @@ void UBGraphicsProtractor::mouseMoveEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
|
qreal angle = startLine.angleTo(currentLine); |
|
|
|
|
qreal scaleFactor = currentLine.length()/startLine.length(); |
|
|
|
|
|
|
|
|
|
switch(mCurrentTool) |
|
|
|
|
switch (mCurrentTool) |
|
|
|
|
{ |
|
|
|
|
case Rotate : |
|
|
|
|
prepareGeometryChange(); |
|
|
|
|
mStartAngle = mStartAngle + angle; |
|
|
|
|
setStartAngle(mStartAngle * 16); |
|
|
|
|
mPreviousMousePos = currentPoint; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case Resize : |
|
|
|
|
prepareGeometryChange(); |
|
|
|
|
translate(rect().center().x(), rect().center().y()); |
|
|
|
|
scale(scaleFactor, scaleFactor); |
|
|
|
|
translate(-rect().center().x(), -rect().center().y()); |
|
|
|
|
mScaleFactor *= scaleFactor; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case MoveMarker : |
|
|
|
|
|
|
|
|
|
mCurrentAngle += angle; |
|
|
|
|
if((int)mCurrentAngle % 360 > 270) |
|
|
|
|
mCurrentAngle = 0; |
|
|
|
|
else if((int)mCurrentAngle % 360 >= 180) |
|
|
|
|
mCurrentAngle = 180; |
|
|
|
|
|
|
|
|
|
mPreviousMousePos = currentPoint; |
|
|
|
|
update(); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case Move : |
|
|
|
|
QGraphicsEllipseItem::mouseMoveEvent(event); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default : |
|
|
|
|
break; |
|
|
|
|
case Rotate : |
|
|
|
|
prepareGeometryChange(); |
|
|
|
|
mStartAngle = mStartAngle + angle; |
|
|
|
|
setStartAngle(mStartAngle * 16); |
|
|
|
|
mPreviousMousePos = currentPoint; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case Resize : |
|
|
|
|
prepareGeometryChange(); |
|
|
|
|
translate(rect().center().x(), rect().center().y()); |
|
|
|
|
scale(scaleFactor, scaleFactor); |
|
|
|
|
translate(-rect().center().x(), -rect().center().y()); |
|
|
|
|
mScaleFactor *= scaleFactor; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case MoveMarker : |
|
|
|
|
|
|
|
|
|
mCurrentAngle += angle; |
|
|
|
|
if ((int)mCurrentAngle % 360 > 270) |
|
|
|
|
mCurrentAngle = 0; |
|
|
|
|
else if ((int)mCurrentAngle % 360 >= 180) |
|
|
|
|
mCurrentAngle = 180; |
|
|
|
|
|
|
|
|
|
mPreviousMousePos = currentPoint; |
|
|
|
|
update(); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case Move : |
|
|
|
|
QGraphicsEllipseItem::mouseMoveEvent(event); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default : |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(mCurrentTool != Move) |
|
|
|
|
if (mCurrentTool != Move) |
|
|
|
|
event->accept(); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -211,25 +214,25 @@ void UBGraphicsProtractor::mouseMoveEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
|
|
|
|
|
|
void UBGraphicsProtractor::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
|
{ |
|
|
|
|
switch(mCurrentTool) |
|
|
|
|
switch (mCurrentTool) |
|
|
|
|
{ |
|
|
|
|
case Reset : |
|
|
|
|
setStartAngle(0); |
|
|
|
|
mStartAngle = 0; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case Close : |
|
|
|
|
hide(); |
|
|
|
|
emit hidden(); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case MoveMarker : |
|
|
|
|
update(); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default : |
|
|
|
|
QGraphicsEllipseItem::mouseReleaseEvent(event); |
|
|
|
|
break; |
|
|
|
|
case Reset : |
|
|
|
|
setStartAngle(0); |
|
|
|
|
mStartAngle = 0; |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case Close : |
|
|
|
|
hide(); |
|
|
|
|
emit hidden(); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
case MoveMarker : |
|
|
|
|
update(); |
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
default : |
|
|
|
|
QGraphicsEllipseItem::mouseReleaseEvent(event); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (mCurrentTool != Move) |
|
|
|
@ -244,8 +247,8 @@ void UBGraphicsProtractor::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) |
|
|
|
|
|
|
|
|
|
void UBGraphicsProtractor::hoverEnterEvent(QGraphicsSceneHoverEvent *event) |
|
|
|
|
{ |
|
|
|
|
if (UBDrawingController::drawingController ()->stylusTool() != UBStylusTool::Selector) |
|
|
|
|
return; |
|
|
|
|
if (UBDrawingController::drawingController ()->stylusTool() != UBStylusTool::Selector) |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
if (!mShowButtons) |
|
|
|
|
{ |
|
|
|
@ -275,8 +278,8 @@ void UBGraphicsProtractor::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) |
|
|
|
|
|
|
|
|
|
void UBGraphicsProtractor::hoverMoveEvent(QGraphicsSceneHoverEvent *event) |
|
|
|
|
{ |
|
|
|
|
if (UBDrawingController::drawingController ()->stylusTool() != UBStylusTool::Selector) |
|
|
|
|
return; |
|
|
|
|
if (UBDrawingController::drawingController ()->stylusTool() != UBStylusTool::Selector) |
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
Tool currentTool = toolFromPos(event->pos()); |
|
|
|
|
|
|
|
|
@ -286,7 +289,7 @@ void UBGraphicsProtractor::hoverMoveEvent(QGraphicsSceneHoverEvent *event) |
|
|
|
|
update(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(currentTool == Move) |
|
|
|
|
if (currentTool == Move) |
|
|
|
|
setCursor(Qt::SizeAllCursor); |
|
|
|
|
else |
|
|
|
|
setCursor(Qt::ArrowCursor); |
|
|
|
@ -305,12 +308,12 @@ QRectF UBGraphicsProtractor::resetButtonRect () const |
|
|
|
|
{ |
|
|
|
|
qreal antiSc = antiScale(); |
|
|
|
|
|
|
|
|
|
if(buttonSizeReference().width() * antiSc <= buttonSizeReference().width() * 15) |
|
|
|
|
return QRectF(-buttonSizeReference().width() * 7, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
if (buttonSizeReference().width() * antiSc <= buttonSizeReference().width() * 15) |
|
|
|
|
return QRectF(-buttonSizeReference().width() * 7, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
else |
|
|
|
|
return QRectF(-buttonSizeReference().width() * antiSc / 2, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
return QRectF(-buttonSizeReference().width() * antiSc / 2, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -320,13 +323,13 @@ QRectF UBGraphicsProtractor::closeButtonRect () const |
|
|
|
|
|
|
|
|
|
if (buttonSizeReference().width() * antiSc <= buttonSizeReference().width() * 2) |
|
|
|
|
return QRectF(-buttonSizeReference().width() * 9, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
else if (buttonSizeReference().width() * antiSc <= buttonSizeReference().width() * 15) |
|
|
|
|
return QRectF(-buttonSizeReference().width() * 7 -buttonSizeReference().width() * antiSc, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
else |
|
|
|
|
return QRectF(-buttonSizeReference().width() * antiSc / 2, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -334,14 +337,14 @@ QRectF UBGraphicsProtractor::resizeButtonRect () const |
|
|
|
|
{ |
|
|
|
|
qreal antiSc = antiScale(); |
|
|
|
|
|
|
|
|
|
if(buttonSizeReference().width() * antiSc <= buttonSizeReference().width() * 15) |
|
|
|
|
if (buttonSizeReference().width() * antiSc <= buttonSizeReference().width() * 15) |
|
|
|
|
return QRectF(buttonSizeReference().width() * 8, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
mResizeSvgItem->setZValue(zValue()+10); |
|
|
|
|
return QRectF(-buttonSizeReference().width() * antiSc / 2, -buttonSizeReference().height() * antiSc / 2, |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
buttonSizeReference().width() * antiSc, buttonSizeReference().height() * antiSc); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -356,7 +359,7 @@ void UBGraphicsProtractor::paintGraduations(QPainter *painter) |
|
|
|
|
|
|
|
|
|
QFont font1 = painter->font(); |
|
|
|
|
#ifdef Q_WS_MAC |
|
|
|
|
font1.setPointSizeF(font1.pointSizeF() - 3); |
|
|
|
|
font1.setPointSizeF(font1.pointSizeF() - 3); |
|
|
|
|
#endif |
|
|
|
|
QFontMetricsF fm1(font1); |
|
|
|
|
|
|
|
|
@ -370,21 +373,21 @@ void UBGraphicsProtractor::paintGraduations(QPainter *painter) |
|
|
|
|
QPointF center = rect().center(); |
|
|
|
|
painter->drawArc(QRectF(center.x() - rad/2, center.y() - rad/2, rad, rad), mStartAngle*16, mSpan*16); |
|
|
|
|
|
|
|
|
|
for(int angle = 1; angle < mSpan; angle++) |
|
|
|
|
for (int angle = 1; angle < mSpan; angle++) |
|
|
|
|
{ |
|
|
|
|
int graduationLength = (0 == angle % 10) ? tenDegreeGraduationLength : ((0 == angle % 5) ? fiveDegreeGraduationLength : oneDegreeGraduationLength); |
|
|
|
|
qreal co = cos(((qreal)angle + mStartAngle) * PI/180); |
|
|
|
|
qreal si = sin(((qreal)angle + mStartAngle) * PI/180); |
|
|
|
|
if(0 == angle % 90) |
|
|
|
|
if (0 == angle % 90) |
|
|
|
|
painter->drawLine(QLineF(QPointF(center.x(), center.y()), QPointF(center.x() + co*tenDegreeGraduationLength, center.y() - si*tenDegreeGraduationLength))); |
|
|
|
|
|
|
|
|
|
//external arc
|
|
|
|
|
painter->drawLine(QLineF(QPointF(center.x()+ rad*co, center.y() - rad*si), |
|
|
|
|
QPointF(center.x()+ (rad - graduationLength)*co, center.y() - (rad - graduationLength)*si))); |
|
|
|
|
QPointF(center.x()+ (rad - graduationLength)*co, center.y() - (rad - graduationLength)*si))); |
|
|
|
|
//internal arc
|
|
|
|
|
painter->drawLine(QLineF(QPointF(center.x()+ rad/2*co, center.y() - rad/2*si), |
|
|
|
|
QPointF(center.x()+ (rad/2 + graduationLength)*co, |
|
|
|
|
center.y() - (rad/2 + graduationLength)*si))); |
|
|
|
|
QPointF(center.x()+ (rad/2 + graduationLength)*co, |
|
|
|
|
center.y() - (rad/2 + graduationLength)*si))); |
|
|
|
|
|
|
|
|
|
if (0 == angle % 10) |
|
|
|
|
{ |
|
|
|
@ -394,14 +397,14 @@ void UBGraphicsProtractor::paintGraduations(QPainter *painter) |
|
|
|
|
QString grad2 = QString("%1").arg((int)(mSpan - angle)); |
|
|
|
|
|
|
|
|
|
painter->drawText(QRectF(center.x() + (rad - graduationLength*1.5)*co - fm1.width(grad)/2, |
|
|
|
|
center.y() - (rad - graduationLength*1.5)*si - fm1.height()/2, |
|
|
|
|
fm1.width(grad), fm1.height()), Qt::AlignTop, grad); |
|
|
|
|
center.y() - (rad - graduationLength*1.5)*si - fm1.height()/2, |
|
|
|
|
fm1.width(grad), fm1.height()), Qt::AlignTop, grad); |
|
|
|
|
|
|
|
|
|
//internal arc
|
|
|
|
|
painter->setFont(font2); |
|
|
|
|
painter->drawText(QRectF(center.x() + (rad/2 + graduationLength*1.5)*co - fm2.width(grad2)/2, |
|
|
|
|
center.y() - (rad/2 + graduationLength*1.5)*si - fm2.height()/2, |
|
|
|
|
fm2.width(grad2), fm2.height()), Qt::AlignTop, grad2); |
|
|
|
|
center.y() - (rad/2 + graduationLength*1.5)*si - fm2.height()/2, |
|
|
|
|
fm2.width(grad2), fm2.height()), Qt::AlignTop, grad2); |
|
|
|
|
painter->setFont(font1); |
|
|
|
|
|
|
|
|
|
} |
|
|
|
@ -415,7 +418,7 @@ void UBGraphicsProtractor::paintButtons(QPainter *painter) |
|
|
|
|
{ |
|
|
|
|
Q_UNUSED(painter); |
|
|
|
|
|
|
|
|
|
if(mShowButtons) |
|
|
|
|
if (mShowButtons) |
|
|
|
|
{ |
|
|
|
|
qreal antiSc = antiScale(); |
|
|
|
|
|
|
|
|
@ -480,14 +483,14 @@ void UBGraphicsProtractor::paintAngleMarker(QPainter *painter) |
|
|
|
|
painter->drawLine(QLineF(rect().center(), QPointF(rect().center().x()+ (rad+ 20)*co, rect().center().y() - (rad + 20)*si))); |
|
|
|
|
QPointF center = rect().center(); |
|
|
|
|
painter->drawArc(QRectF(center.x() - rad/8, center.y() - rad/8, rad / 4, rad / 4), 0 |
|
|
|
|
, (mCurrentAngle - (int)(mCurrentAngle/360)*360)*16); |
|
|
|
|
, (mCurrentAngle - (int)(mCurrentAngle/360)*360)*16); |
|
|
|
|
painter->translate(rect().center()); |
|
|
|
|
painter->rotate(-mCurrentAngle); |
|
|
|
|
painter->translate(-rect().center().x(), -rect().center().y()); |
|
|
|
|
|
|
|
|
|
//Paint Angle text (horizontally)
|
|
|
|
|
//Paint Angle text (horizontally)
|
|
|
|
|
|
|
|
|
|
//restore transformations
|
|
|
|
|
//restore transformations
|
|
|
|
|
painter->translate(rect().center()); |
|
|
|
|
painter->rotate(mCurrentAngle); |
|
|
|
|
painter->rotate(mStartAngle); |
|
|
|
@ -495,23 +498,23 @@ void UBGraphicsProtractor::paintAngleMarker(QPainter *painter) |
|
|
|
|
|
|
|
|
|
qreal angle = mCurrentAngle - (int)(mCurrentAngle/360)*360; |
|
|
|
|
|
|
|
|
|
if(angle != 0) |
|
|
|
|
if (angle != 0) |
|
|
|
|
{ |
|
|
|
|
QString ang = QString("%1°").arg(angle,0, 'f', 1); |
|
|
|
|
QFont font2 = painter->font(); |
|
|
|
|
QFont font2 = painter->font(); |
|
|
|
|
font2.setBold(true); |
|
|
|
|
QFontMetricsF fm2(font2); |
|
|
|
|
painter->setFont(font2); |
|
|
|
|
QFontMetricsF fm2(font2); |
|
|
|
|
painter->setFont(font2); |
|
|
|
|
if (angle < 50) |
|
|
|
|
angle = 90; |
|
|
|
|
else |
|
|
|
|
angle = angle / 2; |
|
|
|
|
|
|
|
|
|
co = cos((mStartAngle + angle) * PI/180); |
|
|
|
|
si = sin((mStartAngle + angle) * PI/180); |
|
|
|
|
painter->drawText(QRectF(rect().center().x() + (rad*2.5/10)*co - fm2.width(ang)/2, |
|
|
|
|
rect().center().y() - (rad*2.5/10)*si - fm2.height()/2, |
|
|
|
|
fm2.width(ang), fm2.height()), Qt::AlignTop, ang); |
|
|
|
|
si = sin((mStartAngle + angle) * PI/180); |
|
|
|
|
painter->drawText(QRectF(rect().center().x() + (rad*2.5/10)*co - fm2.width(ang)/2, |
|
|
|
|
rect().center().y() - (rad*2.5/10)*si - fm2.height()/2, |
|
|
|
|
fm2.width(ang), fm2.height()), Qt::AlignTop, ang); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
painter->restore(); |
|
|
|
@ -528,17 +531,17 @@ UBGraphicsProtractor::Tool UBGraphicsProtractor::toolFromPos(QPointF pos) |
|
|
|
|
t.rotate(mCurrentAngle); |
|
|
|
|
QPointF p2 = t.map(pos); |
|
|
|
|
|
|
|
|
|
if(resizeButtonRect().contains(p1)) |
|
|
|
|
if (resizeButtonRect().contains(p1)) |
|
|
|
|
return Resize; |
|
|
|
|
else if(closeButtonRect().contains(p1)) |
|
|
|
|
else if (closeButtonRect().contains(p1)) |
|
|
|
|
return Close; |
|
|
|
|
else if(resetButtonRect().contains(p1)) |
|
|
|
|
else if (resetButtonRect().contains(p1)) |
|
|
|
|
return Reset; |
|
|
|
|
else if(rotateButtonRect().contains(p1)) |
|
|
|
|
else if (rotateButtonRect().contains(p1)) |
|
|
|
|
return Rotate; |
|
|
|
|
else if(markerButtonRect().contains(p2)) |
|
|
|
|
else if (markerButtonRect().contains(p2)) |
|
|
|
|
return MoveMarker; |
|
|
|
|
else if(line.length() <= radius()) |
|
|
|
|
else if (line.length() <= radius()) |
|
|
|
|
return Move; |
|
|
|
|
else |
|
|
|
|
return None; |
|
|
|
@ -584,9 +587,11 @@ UBItem* UBGraphicsProtractor::deepCopy() const |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void UBGraphicsProtractor::rotateAroundTopLeftOrigin(qreal angle) |
|
|
|
|
{} |
|
|
|
|
{ |
|
|
|
|
Q_UNUSED(angle); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QPointF UBGraphicsProtractor::topLeftOrigin() const |
|
|
|
|
QPointF UBGraphicsProtractor::topLeftOrigin() const |
|
|
|
|
{ |
|
|
|
|
return QPointF(rect().x(), rect().y()); |
|
|
|
|
return QPointF(rect().x(), rect().y()); |
|
|
|
|
} |
|
|
|
|