2016-09-10 18:30:03 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vgrainlineitem.h
|
|
|
|
** @author Bojan Kverh
|
|
|
|
** @date September 10, 2016
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QtMath>
|
2016-09-11 12:18:09 +02:00
|
|
|
#include <QGraphicsSceneMouseEvent>
|
2016-09-14 01:15:01 +02:00
|
|
|
#include <QStyleOptionGraphicsItem>
|
2016-09-11 12:18:09 +02:00
|
|
|
#include <QDebug>
|
2016-09-10 18:30:03 +02:00
|
|
|
|
2016-09-14 01:15:01 +02:00
|
|
|
#include "../vmisc/def.h"
|
|
|
|
|
2016-09-10 18:30:03 +02:00
|
|
|
#include "vgrainlineitem.h"
|
|
|
|
|
2016-09-14 01:15:01 +02:00
|
|
|
#define ARROW_ANGLE 0.35
|
|
|
|
#define ARROW_LENGTH 15
|
2016-09-10 18:30:03 +02:00
|
|
|
#define RECT_WIDTH 30
|
2016-09-11 12:18:09 +02:00
|
|
|
#define ACTIVE_Z 10
|
|
|
|
#define INACTIVE_Z 5
|
2016-09-10 18:30:03 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-09-11 12:18:09 +02:00
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::VGrainlineItem constructor
|
|
|
|
* @param pParent pointer to the parent item
|
|
|
|
*/
|
2016-09-10 18:30:03 +02:00
|
|
|
VGrainlineItem::VGrainlineItem(QGraphicsItem* pParent)
|
2016-09-14 01:15:01 +02:00
|
|
|
:QGraphicsObject(pParent), m_eMode(VGrainlineItem::mNormal), m_dRotation(0), m_dLength(0), m_rectBoundingBox(),
|
|
|
|
m_polyBound(), m_ptStartPos(), m_ptStartMove(), m_dScale(1)
|
2016-09-10 18:30:03 +02:00
|
|
|
{
|
2016-09-14 01:15:01 +02:00
|
|
|
m_rectBoundingBox.setTopLeft(QPointF(0, 0));
|
2016-09-11 12:18:09 +02:00
|
|
|
setAcceptHoverEvents(true);
|
|
|
|
Reset();
|
|
|
|
UpdateRectangle();
|
2016-09-10 18:30:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-09-11 12:18:09 +02:00
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::~VGrainlineItem destructor
|
|
|
|
*/
|
2016-09-10 18:30:03 +02:00
|
|
|
VGrainlineItem::~VGrainlineItem()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-09-11 12:18:09 +02:00
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::paint paints the item content
|
|
|
|
* @param pP pointer to the painter object
|
|
|
|
* @param pOption not used
|
|
|
|
* @param pWidget not used
|
|
|
|
*/
|
2016-09-10 18:30:03 +02:00
|
|
|
void VGrainlineItem::paint(QPainter* pP, const QStyleOptionGraphicsItem* pOption, QWidget* pWidget)
|
|
|
|
{
|
|
|
|
Q_UNUSED(pOption);
|
|
|
|
Q_UNUSED(pWidget);
|
2016-09-11 12:18:09 +02:00
|
|
|
pP->save();
|
2016-09-10 18:30:03 +02:00
|
|
|
QColor clr = Qt::black;
|
|
|
|
pP->setPen(QPen(clr, 3));
|
2016-09-14 01:15:01 +02:00
|
|
|
QPointF pt1(0, 0);
|
2016-09-11 12:18:09 +02:00
|
|
|
QPointF pt2;
|
|
|
|
|
|
|
|
pt2.setX(pt1.x() + m_dLength * cos(m_dRotation));
|
|
|
|
pt2.setY(pt1.y() + m_dLength * sin(m_dRotation));
|
2016-09-10 18:30:03 +02:00
|
|
|
|
|
|
|
pP->setRenderHints(QPainter::Antialiasing);
|
2016-09-14 01:15:01 +02:00
|
|
|
// line
|
2016-09-10 18:30:03 +02:00
|
|
|
pP->drawLine(pt1, pt2);
|
|
|
|
|
2016-09-14 01:15:01 +02:00
|
|
|
// first arrow
|
2016-09-10 18:30:03 +02:00
|
|
|
QPolygonF poly;
|
|
|
|
poly << pt1;
|
|
|
|
QPointF ptA;
|
2016-09-14 01:15:01 +02:00
|
|
|
qreal dArrLen = ARROW_LENGTH*m_dScale;
|
|
|
|
ptA.setX(pt1.x() + dArrLen*cos(m_dRotation + ARROW_ANGLE));
|
|
|
|
ptA.setY(pt1.y() + dArrLen*sin(m_dRotation + ARROW_ANGLE));
|
2016-09-10 18:30:03 +02:00
|
|
|
poly << ptA;
|
2016-09-14 01:15:01 +02:00
|
|
|
ptA.setX(pt1.x() + dArrLen*cos(m_dRotation - ARROW_ANGLE));
|
|
|
|
ptA.setY(pt1.y() + dArrLen*sin(m_dRotation - ARROW_ANGLE));
|
2016-09-10 18:30:03 +02:00
|
|
|
poly << ptA;
|
|
|
|
pP->setBrush(clr);
|
|
|
|
pP->drawPolygon(poly);
|
2016-09-14 01:15:01 +02:00
|
|
|
// second arrow
|
2016-09-10 18:30:03 +02:00
|
|
|
poly.clear();
|
|
|
|
poly << pt2;
|
2016-09-14 01:15:01 +02:00
|
|
|
ptA.setX(pt2.x() + dArrLen*cos(M_PI + m_dRotation + ARROW_ANGLE));
|
|
|
|
ptA.setY(pt2.y() + dArrLen*sin(M_PI + m_dRotation + ARROW_ANGLE));
|
2016-09-10 18:30:03 +02:00
|
|
|
poly << ptA;
|
2016-09-14 01:15:01 +02:00
|
|
|
ptA.setX(pt2.x() + dArrLen*cos(M_PI + m_dRotation - ARROW_ANGLE));
|
|
|
|
ptA.setY(pt2.y() + dArrLen*sin(M_PI + m_dRotation - ARROW_ANGLE));
|
2016-09-10 18:30:03 +02:00
|
|
|
poly << ptA;
|
|
|
|
pP->drawPolygon(poly);
|
|
|
|
|
|
|
|
if (m_eMode != mNormal)
|
|
|
|
{
|
|
|
|
pP->setPen(QPen(clr, 2, Qt::DashLine));
|
|
|
|
pP->setBrush(Qt::NoBrush);
|
2016-09-14 01:15:01 +02:00
|
|
|
// bounding polygon
|
2016-09-11 12:18:09 +02:00
|
|
|
pP->drawPolygon(m_polyBound);
|
2016-09-10 18:30:03 +02:00
|
|
|
}
|
2016-09-11 12:18:09 +02:00
|
|
|
pP->restore();
|
2016-09-10 18:30:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-09-11 12:18:09 +02:00
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::UpdateGeometry updates the item with grainline parameters
|
|
|
|
* @param ptPos position of one grainline's end
|
|
|
|
* @param dRotation rotation of the grainline in [degrees]
|
|
|
|
* @param dLength length of the grainline in user's units
|
|
|
|
*/
|
2016-09-10 18:30:03 +02:00
|
|
|
void VGrainlineItem::UpdateGeometry(const QPointF& ptPos, qreal dRotation, qreal dLength)
|
|
|
|
{
|
|
|
|
m_dRotation = qDegreesToRadians(dRotation);
|
|
|
|
m_dLength = dLength;
|
2016-09-11 12:18:09 +02:00
|
|
|
|
2016-09-14 01:15:01 +02:00
|
|
|
qreal dX;
|
|
|
|
qreal dY;
|
|
|
|
QPointF pt = ptPos;
|
|
|
|
if (IsContained(pt, dX, dY) == false)
|
|
|
|
{
|
|
|
|
pt.setX(pt.x() + dX);
|
|
|
|
pt.setY(pt.y() + dY);
|
|
|
|
}
|
|
|
|
setPos(pt);
|
2016-09-11 12:18:09 +02:00
|
|
|
UpdateRectangle();
|
|
|
|
UpdateBox();
|
2016-09-10 18:30:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-09-11 12:18:09 +02:00
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::boundingRect returns the bounding rect around the grainline
|
|
|
|
* @return bounding rect
|
|
|
|
*/
|
2016-09-10 18:30:03 +02:00
|
|
|
QRectF VGrainlineItem::boundingRect() const
|
|
|
|
{
|
|
|
|
return m_rectBoundingBox;
|
|
|
|
}
|
2016-09-11 12:18:09 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::Reset resets the item parameters.
|
|
|
|
*/
|
|
|
|
void VGrainlineItem::Reset()
|
|
|
|
{
|
|
|
|
m_eMode = mNormal;
|
|
|
|
setZValue(INACTIVE_Z);
|
|
|
|
UpdateBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::IsIdle returns the idle flag.
|
|
|
|
* @return true, if item mode is normal and false otherwise.
|
|
|
|
*/
|
|
|
|
bool VGrainlineItem::IsIdle() const
|
|
|
|
{
|
|
|
|
return m_eMode == mNormal;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::IsContained checks, if both ends of the grainline, starting at pt, are contained in
|
|
|
|
* parent widget.
|
|
|
|
* @param pt starting point of the grainline.
|
2016-09-14 01:15:01 +02:00
|
|
|
* @param dX horizontal translation needed to put the arrow inside parent item
|
|
|
|
* @param dY vertical translation needed to put the arrow inside parent item
|
2016-09-11 12:18:09 +02:00
|
|
|
* @return true, if both ends of the grainline, starting at pt, are contained in the parent widget and
|
|
|
|
* false otherwise.
|
|
|
|
*/
|
2016-09-14 01:15:01 +02:00
|
|
|
bool VGrainlineItem::IsContained(const QPointF& pt, qreal &dX, qreal &dY) const
|
2016-09-11 12:18:09 +02:00
|
|
|
{
|
2016-09-14 01:15:01 +02:00
|
|
|
dX = 0;
|
|
|
|
dY = 0;
|
|
|
|
QPointF apt[2];
|
|
|
|
apt[0] = pt;
|
|
|
|
apt[1].setX(pt.x() + m_dLength * cos(m_dRotation));
|
|
|
|
apt[1].setY(pt.y() + m_dLength * sin(m_dRotation));
|
|
|
|
// single point differences
|
|
|
|
qreal dPtX;
|
|
|
|
qreal dPtY;
|
|
|
|
bool bInside = true;
|
|
|
|
|
2016-09-11 12:18:09 +02:00
|
|
|
QRectF rectParent = parentItem()->boundingRect();
|
2016-09-14 01:15:01 +02:00
|
|
|
for (int i = 0; i < 2; ++i)
|
2016-09-11 12:18:09 +02:00
|
|
|
{
|
2016-09-14 01:15:01 +02:00
|
|
|
dPtX = 0;
|
|
|
|
dPtY = 0;
|
|
|
|
if (rectParent.contains(apt[i]) == false)
|
|
|
|
{
|
|
|
|
if (apt[i].x() < rectParent.left())
|
|
|
|
{
|
|
|
|
dPtX = rectParent.left() - apt[i].x();
|
|
|
|
}
|
|
|
|
else if (apt[i].x() > rectParent.right())
|
|
|
|
{
|
|
|
|
dPtX = rectParent.right() - apt[i].x();
|
|
|
|
}
|
|
|
|
if (apt[i].y() < rectParent.top())
|
|
|
|
{
|
|
|
|
dPtY = rectParent.top() - apt[i].y();
|
|
|
|
}
|
|
|
|
else if (apt[i].y() > rectParent.bottom())
|
|
|
|
{
|
|
|
|
dPtY = rectParent.bottom() - apt[i].y();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fabs(dPtX) > fabs(dX))
|
|
|
|
{
|
|
|
|
dX = dPtX;
|
|
|
|
}
|
|
|
|
if (fabs(dPtY) > fabs(dY))
|
|
|
|
{
|
|
|
|
dY = dPtY;
|
|
|
|
}
|
|
|
|
|
|
|
|
bInside = false;
|
|
|
|
}
|
2016-09-11 12:18:09 +02:00
|
|
|
}
|
2016-09-14 01:15:01 +02:00
|
|
|
return bInside;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::SetScale sets the scale for keeping the arrows of constant size
|
|
|
|
* @param dScale scale factor
|
|
|
|
*/
|
|
|
|
void VGrainlineItem::SetScale(qreal dScale)
|
|
|
|
{
|
|
|
|
m_dScale = dScale;
|
|
|
|
UpdateBox();
|
2016-09-11 12:18:09 +02:00
|
|
|
}
|
2016-09-14 01:15:01 +02:00
|
|
|
|
2016-09-11 12:18:09 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::mousePressEvent handles left button mouse press events
|
|
|
|
* @param pME pointer to QGraphicsSceneMouseEvent object
|
|
|
|
*/
|
|
|
|
void VGrainlineItem::mousePressEvent(QGraphicsSceneMouseEvent* pME)
|
|
|
|
{
|
|
|
|
if (pME->button() == Qt::LeftButton)
|
|
|
|
{
|
|
|
|
m_eMode = mMove;
|
|
|
|
setZValue(ACTIVE_Z);
|
|
|
|
m_ptStartPos = pos();
|
|
|
|
m_ptStartMove = pME->scenePos();
|
|
|
|
UpdateBox();
|
2016-09-14 01:15:01 +02:00
|
|
|
SetOverrideCursor(cursorArrowCloseHand, 1, 1);
|
2016-09-11 12:18:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::mouseMoveEvent handles mouse move events, making sure that the item is moved properly
|
|
|
|
* @param pME pointer to QGraphicsSceneMouseEvent object
|
|
|
|
*/
|
|
|
|
void VGrainlineItem::mouseMoveEvent(QGraphicsSceneMouseEvent* pME)
|
|
|
|
{
|
|
|
|
if (m_eMode == mMove)
|
|
|
|
{
|
|
|
|
QPointF ptDiff = pME->scenePos() - m_ptStartMove;
|
2016-09-14 01:15:01 +02:00
|
|
|
QPointF pt = m_ptStartPos + ptDiff;
|
|
|
|
qreal dX;
|
|
|
|
qreal dY;
|
|
|
|
if (IsContained(pt, dX, dY) == false)
|
2016-09-11 12:18:09 +02:00
|
|
|
{
|
2016-09-14 01:15:01 +02:00
|
|
|
pt.setX(pt.x() + dX);
|
|
|
|
pt.setY(pt.y() + dY);
|
2016-09-11 12:18:09 +02:00
|
|
|
}
|
2016-09-14 01:15:01 +02:00
|
|
|
setPos(pt);
|
|
|
|
UpdateRectangle();
|
|
|
|
UpdateBox();
|
2016-09-11 12:18:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::mouseReleaseEvent handles mouse release events and emits the proper signal if the item was
|
|
|
|
* moved
|
|
|
|
* @param pME pointer to QGraphicsSceneMouseEvent object
|
|
|
|
*/
|
|
|
|
void VGrainlineItem::mouseReleaseEvent(QGraphicsSceneMouseEvent* pME)
|
|
|
|
{
|
|
|
|
if (pME->button() == Qt::LeftButton)
|
|
|
|
{
|
|
|
|
if (m_eMode == mMove)
|
|
|
|
{
|
|
|
|
qreal dD = fabs(pME->scenePos().x() - m_ptStartMove.x()) + fabs(pME->scenePos().y() - m_ptStartMove.y());
|
|
|
|
bool bShort = (dD < 2);
|
|
|
|
if (bShort == false)
|
|
|
|
{
|
|
|
|
emit SignalMoved(pos());
|
|
|
|
}
|
|
|
|
}
|
2016-09-14 01:15:01 +02:00
|
|
|
RestoreOverrideCursor(cursorArrowCloseHand);
|
2016-09-11 12:18:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::UpdateBox updates the item
|
|
|
|
*/
|
|
|
|
void VGrainlineItem::UpdateBox()
|
|
|
|
{
|
|
|
|
update(m_rectBoundingBox);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief VGrainlineItem::UpdateRectangle updates the polygon for the box around active item
|
|
|
|
* and the bounding rectangle
|
|
|
|
*/
|
|
|
|
void VGrainlineItem::UpdateRectangle()
|
|
|
|
{
|
|
|
|
m_polyBound.clear();
|
2016-09-14 01:15:01 +02:00
|
|
|
QPointF pt1(0, 0);
|
2016-09-11 12:18:09 +02:00
|
|
|
QPointF pt2;
|
|
|
|
|
|
|
|
pt2.setX(pt1.x() + m_dLength * cos(m_dRotation));
|
|
|
|
pt2.setY(pt1.y() + m_dLength * sin(m_dRotation));
|
|
|
|
|
|
|
|
QPointF ptA;
|
|
|
|
ptA.setX(pt1.x() + RECT_WIDTH*cos(m_dRotation + M_PI/2));
|
|
|
|
ptA.setY(pt1.y() + RECT_WIDTH*sin(m_dRotation + M_PI/2));
|
|
|
|
m_polyBound << ptA;
|
|
|
|
ptA.setX(pt1.x() + RECT_WIDTH*cos(m_dRotation - M_PI/2));
|
|
|
|
ptA.setY(pt1.y() + RECT_WIDTH*sin(m_dRotation - M_PI/2));
|
|
|
|
m_polyBound << ptA;
|
|
|
|
ptA.setX(pt2.x() + RECT_WIDTH*cos(m_dRotation - M_PI/2));
|
|
|
|
ptA.setY(pt2.y() + RECT_WIDTH*sin(m_dRotation - M_PI/2));
|
|
|
|
m_polyBound << ptA;
|
|
|
|
ptA.setX(pt2.x() + RECT_WIDTH*cos(m_dRotation + M_PI/2));
|
|
|
|
ptA.setY(pt2.y() + RECT_WIDTH*sin(m_dRotation + M_PI/2));
|
|
|
|
m_polyBound << ptA;
|
|
|
|
m_rectBoundingBox = m_polyBound.boundingRect();
|
2016-09-14 01:15:01 +02:00
|
|
|
setTransformOriginPoint(m_rectBoundingBox.center());
|
|
|
|
prepareGeometryChange();
|
2016-09-11 12:18:09 +02:00
|
|
|
}
|