2013-11-15 13:41:26 +01:00
|
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
|
** @file vcontrolpointspline.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** @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 Valentina project
|
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
|
** 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.
|
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
|
** 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/>.
|
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
|
#include "vcontrolpointspline.h"
|
|
|
|
|
|
2013-08-09 08:49:34 +02:00
|
|
|
|
VControlPointSpline::VControlPointSpline(const qint32 &indexSpline, SplinePoint::Position position,
|
|
|
|
|
const QPointF &controlPoint, const QPointF &splinePoint,
|
2013-11-04 21:35:15 +01:00
|
|
|
|
QGraphicsItem *parent)
|
|
|
|
|
:QGraphicsEllipseItem(parent), radius(toPixel(1.5)), controlLine(0), indexSpline(indexSpline), position(position)
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
//create circle
|
|
|
|
|
QRectF rec = QRectF(0, 0, radius*2, radius*2);
|
|
|
|
|
rec.translate(-rec.center().x(), -rec.center().y());
|
|
|
|
|
this->setRect(rec);
|
|
|
|
|
this->setPen(QPen(Qt::black, widthHairLine));
|
|
|
|
|
this->setBrush(QBrush(Qt::NoBrush));
|
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, true);
|
|
|
|
|
this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
|
|
|
|
|
this->setAcceptHoverEvents(true);
|
|
|
|
|
this->setPos(controlPoint);
|
|
|
|
|
|
|
|
|
|
//Лінія, що з'єднує дві точки
|
|
|
|
|
QPointF p1, p2;
|
|
|
|
|
LineIntersectCircle(QPointF(), radius, QLineF( QPointF(), splinePoint-controlPoint), p1, p2);
|
|
|
|
|
controlLine = new QGraphicsLineItem(QLineF(splinePoint-controlPoint, p1), this);
|
|
|
|
|
controlLine->setPen(QPen(Qt::red, widthHairLine));
|
|
|
|
|
controlLine->setFlag(QGraphicsItem::ItemStacksBehindParent, true);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void VControlPointSpline::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
Q_UNUSED(event);
|
|
|
|
|
this->setPen(QPen(Qt::black, widthMainLine));
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void VControlPointSpline::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
Q_UNUSED(event);
|
|
|
|
|
this->setPen(QPen(Qt::black, widthHairLine));
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
QVariant VControlPointSpline::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
|
|
|
{
|
|
|
|
|
if (change == ItemPositionChange && scene())
|
|
|
|
|
{
|
2013-09-11 16:14:21 +02:00
|
|
|
|
// value - new position.
|
2013-08-05 10:37:56 +02:00
|
|
|
|
QPointF newPos = value.toPointF();
|
2013-08-09 08:49:34 +02:00
|
|
|
|
emit ControlPointChangePosition(indexSpline, position, newPos);
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|
|
|
|
|
return QGraphicsItem::itemChange(change, value);
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
|
qint32 VControlPointSpline::LineIntersectCircle(const QPointF ¢er, qreal radius, const QLineF &line, QPointF &p1,
|
2013-11-04 21:35:15 +01:00
|
|
|
|
QPointF &p2) const
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
const qreal eps = 1e-8;
|
|
|
|
|
//коефіцієнти для рівняння відрізку
|
|
|
|
|
qreal a = line.p2().y() - line.p1().y();
|
|
|
|
|
qreal b = line.p1().x() - line.p2().x();
|
|
|
|
|
// В даному випадку не використовується.
|
|
|
|
|
//qreal c = - a * line.p1().x() - b * line.p1().y();
|
|
|
|
|
// проекция центра окружности на прямую
|
|
|
|
|
QPointF p = ClosestPoint (line, center);
|
|
|
|
|
// сколько всего решений?
|
|
|
|
|
qint32 flag = 0;
|
|
|
|
|
qreal d = QLineF (center, p).length();
|
2013-11-04 21:35:15 +01:00
|
|
|
|
if (qAbs (d - radius) <= eps)
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
flag = 1;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (radius > d)
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
flag = 2;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// находим расстояние от проекции до точек пересечения
|
|
|
|
|
qreal k = sqrt (radius * radius - d * d);
|
|
|
|
|
qreal t = QLineF (QPointF (0, 0), QPointF (b, - a)).length();
|
|
|
|
|
// добавляем к проекции векторы направленные к точкам пеерсечения
|
|
|
|
|
p1 = addVector (p, QPointF (0, 0), QPointF (- b, a), k / t);
|
|
|
|
|
p2 = addVector (p, QPointF (0, 0), QPointF (b, - a), k / t);
|
|
|
|
|
return flag;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
|
QPointF VControlPointSpline::ClosestPoint(const QLineF &line, const QPointF &p) const
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
QLineF lineP2pointFrom = QLineF(line.p2(), p);
|
|
|
|
|
qreal angle = 180-line.angleTo(lineP2pointFrom)-90;
|
|
|
|
|
QLineF pointFromlineP2 = QLineF(p, line.p2());
|
|
|
|
|
pointFromlineP2.setAngle(pointFromlineP2.angle()+angle);
|
|
|
|
|
QPointF point;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
QLineF::IntersectType type = pointFromlineP2.intersect(line, &point);
|
|
|
|
|
if ( type == QLineF::BoundedIntersection )
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
return point;
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if ( type == QLineF::NoIntersection || type == QLineF::UnboundedIntersection )
|
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
Q_ASSERT_X(type != QLineF::BoundedIntersection, Q_FUNC_INFO, "Немає точки перетину.");
|
|
|
|
|
return point;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return point;
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-06 22:11:12 +01:00
|
|
|
|
QPointF VControlPointSpline::addVector(const QPointF &p, const QPointF &p1, const QPointF &p2, qreal k) const
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
|
return QPointF (p.x() + (p2.x() - p1.x()) * k, p.y() + (p2.y() - p1.y()) * k);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-09 08:49:34 +02:00
|
|
|
|
void VControlPointSpline::RefreshLine(const qint32 &indexSpline, SplinePoint::Position pos,
|
2013-11-04 21:35:15 +01:00
|
|
|
|
const QPointF &controlPoint, const QPointF &splinePoint)
|
|
|
|
|
{
|
|
|
|
|
if (this->indexSpline == indexSpline && this->position == pos)
|
|
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
|
QPointF p1, p2;
|
|
|
|
|
LineIntersectCircle(QPointF(), radius, QLineF( QPointF(), splinePoint-controlPoint), p1, p2);
|
|
|
|
|
controlLine->setLine(QLineF(splinePoint-controlPoint, p1));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
|
void VControlPointSpline::setEnabledPoint(bool enable)
|
|
|
|
|
{
|
|
|
|
|
if (enable == true)
|
|
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
|
this->setPen(QPen(Qt::black, widthHairLine));
|
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, true);
|
|
|
|
|
this->setAcceptHoverEvents(true);
|
2013-11-04 21:35:15 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
|
this->setPen(QPen(Qt::gray, widthHairLine));
|
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, false);
|
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, false);
|
|
|
|
|
this->setAcceptHoverEvents(false);
|
|
|
|
|
}
|
2013-08-05 10:37:56 +02:00
|
|
|
|
}
|