2014-08-12 19:02:14 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vistoolnormal.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 12 8, 2014
|
|
|
|
**
|
|
|
|
** @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) 2014 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 "vistoolnormal.h"
|
|
|
|
#include "../geometry/vpointf.h"
|
|
|
|
#include "../tools/drawTools/vtoolnormal.h"
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VisToolNormal::VisToolNormal(const VContainer *data, QGraphicsItem *parent)
|
2014-08-17 17:20:55 +02:00
|
|
|
: VisLine(data, parent), point2Id(NULL_ID), point(nullptr), lineP1(nullptr), lineP2(nullptr), line(nullptr),
|
|
|
|
length(0), angle(0)
|
2014-08-12 19:02:14 +02:00
|
|
|
{
|
|
|
|
this->mainColor = Qt::red;
|
|
|
|
|
2014-08-15 15:54:24 +02:00
|
|
|
lineP1 = InitPoint(supportColor, this);
|
|
|
|
lineP2 = InitPoint(supportColor, this);
|
2014-08-16 14:14:55 +02:00
|
|
|
line = InitItem<QGraphicsLineItem>(supportColor, this);
|
2014-08-12 19:02:14 +02:00
|
|
|
|
2014-08-15 15:54:24 +02:00
|
|
|
point = InitPoint(mainColor, this);
|
2014-08-12 19:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VisToolNormal::~VisToolNormal()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolNormal::RefreshGeometry()
|
|
|
|
{
|
2014-10-24 16:16:31 +02:00
|
|
|
if (point1Id > NULL_ID)
|
2014-08-12 19:02:14 +02:00
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> first = Visualization::data->GeometricObject<VPointF>(point1Id);
|
2014-08-12 19:02:14 +02:00
|
|
|
DrawPoint(lineP1, first->toQPointF(), supportColor);
|
|
|
|
|
2014-10-24 16:16:31 +02:00
|
|
|
if (point2Id <= NULL_ID)
|
2014-08-12 19:02:14 +02:00
|
|
|
{
|
2014-08-15 12:48:11 +02:00
|
|
|
QLineF line_mouse(first->toQPointF(), Visualization::scenePos);
|
2014-08-12 19:02:14 +02:00
|
|
|
DrawLine(line, line_mouse, supportColor);
|
|
|
|
|
|
|
|
QLineF normal = line_mouse.normalVector();
|
|
|
|
QPointF endRay = Ray(normal.p1(), normal.angle());
|
|
|
|
DrawLine(this, QLineF(normal.p1(), endRay), mainColor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> second = Visualization::data->GeometricObject<VPointF>(point2Id);
|
2014-08-12 19:02:14 +02:00
|
|
|
DrawPoint(lineP2, second->toQPointF(), supportColor);
|
|
|
|
|
|
|
|
QLineF line_mouse(first->toQPointF(), second->toQPointF());
|
|
|
|
DrawLine(line, line_mouse, supportColor);
|
|
|
|
|
|
|
|
if (qFuzzyCompare(1 + length, 1 + 0))
|
|
|
|
{
|
|
|
|
QLineF normal = line_mouse.normalVector();
|
|
|
|
QPointF endRay = Ray(normal.p1(), normal.angle());
|
|
|
|
DrawLine(this, QLineF(normal.p1(), endRay), mainColor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QPointF fPoint = VToolNormal::FindPoint(first->toQPointF(), second->toQPointF(), length, angle);
|
|
|
|
QLineF mainLine = QLineF(first->toQPointF(), fPoint);
|
|
|
|
DrawLine(this, mainLine, mainColor, lineStyle);
|
|
|
|
|
|
|
|
DrawPoint(point, mainLine.p2(), mainColor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolNormal::setPoint2Id(const quint32 &value)
|
|
|
|
{
|
|
|
|
point2Id = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolNormal::setLength(const QString &expression)
|
|
|
|
{
|
|
|
|
length = FindLength(expression);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
qreal VisToolNormal::GetAngle() const
|
2014-08-12 19:02:14 +02:00
|
|
|
{
|
|
|
|
return angle;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
void VisToolNormal::SetAngle(const qreal &value)
|
2014-08-12 19:02:14 +02:00
|
|
|
{
|
|
|
|
angle = value;
|
|
|
|
}
|