2014-08-13 11:27:29 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vistoolheight.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 13 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 "vistoolheight.h"
|
|
|
|
#include "../geometry/vpointf.h"
|
|
|
|
#include "../tools/drawTools/vtoolheight.h"
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VisToolHeight::VisToolHeight(const VContainer *data, QGraphicsItem *parent)
|
2014-08-17 17:20:55 +02:00
|
|
|
: VisLine(data, parent), lineP1Id(NULL_ID), lineP2Id(NULL_ID), point(nullptr), base_point(nullptr), lineP1(nullptr),
|
2014-08-13 11:27:29 +02:00
|
|
|
lineP2(nullptr), line(nullptr), line_intersection(nullptr)
|
|
|
|
{
|
2014-08-15 15:54:24 +02:00
|
|
|
base_point = InitPoint(supportColor, this);
|
|
|
|
lineP1 = InitPoint(supportColor, this);
|
|
|
|
lineP2 = InitPoint(supportColor, this);
|
2014-08-16 14:14:55 +02:00
|
|
|
line = InitItem<QGraphicsLineItem>(supportColor, this);
|
|
|
|
line_intersection = InitItem<QGraphicsLineItem>(supportColor, this);
|
2014-08-13 11:27:29 +02:00
|
|
|
|
2014-08-15 15:54:24 +02:00
|
|
|
point = InitPoint(mainColor, this);
|
2014-08-13 11:27:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VisToolHeight::~VisToolHeight()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolHeight::RefreshGeometry()
|
|
|
|
{
|
2014-10-24 16:16:31 +02:00
|
|
|
if (point1Id > NULL_ID)
|
2014-08-13 11:27:29 +02:00
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> first = Visualization::data->GeometricObject<VPointF>(point1Id);
|
2014-08-13 11:27:29 +02:00
|
|
|
DrawPoint(base_point, first->toQPointF(), supportColor);
|
|
|
|
|
2014-10-24 16:16:31 +02:00
|
|
|
if (lineP1Id <= NULL_ID)
|
2014-08-13 11:27:29 +02:00
|
|
|
{
|
2014-08-15 12:48:11 +02:00
|
|
|
DrawLine(this, QLineF(first->toQPointF(), Visualization::scenePos), mainColor);
|
2014-08-13 11:27:29 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> second = Visualization::data->GeometricObject<VPointF>(lineP1Id);
|
2014-08-13 11:27:29 +02:00
|
|
|
DrawPoint(lineP1, second->toQPointF(), supportColor);
|
|
|
|
|
|
|
|
QLineF base_line;
|
2014-10-24 16:16:31 +02:00
|
|
|
if (lineP2Id <= NULL_ID)
|
2014-08-13 11:27:29 +02:00
|
|
|
{
|
2014-08-15 12:48:11 +02:00
|
|
|
base_line = QLineF(second->toQPointF(), Visualization::scenePos);
|
2014-08-13 11:27:29 +02:00
|
|
|
DrawLine(line, base_line, supportColor);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> third = Visualization::data->GeometricObject<VPointF>(lineP2Id);
|
2014-08-13 11:27:29 +02:00
|
|
|
DrawPoint(lineP2, third->toQPointF(), supportColor);
|
|
|
|
|
|
|
|
base_line = QLineF(second->toQPointF(), third->toQPointF());
|
|
|
|
}
|
|
|
|
|
|
|
|
DrawLine(line, base_line, supportColor);
|
|
|
|
|
|
|
|
QPointF height = VToolHeight::FindPoint(base_line, first->toQPointF());
|
2014-08-13 12:20:30 +02:00
|
|
|
DrawPoint(point, height, mainColor);
|
|
|
|
|
2014-08-13 11:27:29 +02:00
|
|
|
QLineF height_line(first->toQPointF(), height);
|
2014-08-13 12:20:30 +02:00
|
|
|
DrawLine(this, height_line, mainColor, lineStyle);
|
2014-08-13 11:27:29 +02:00
|
|
|
|
|
|
|
ShowIntersection(height_line, base_line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolHeight::setLineP1Id(const quint32 &value)
|
|
|
|
{
|
|
|
|
lineP1Id = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolHeight::setLineP2Id(const quint32 &value)
|
|
|
|
{
|
|
|
|
lineP2Id = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolHeight::ShowIntersection(const QLineF &height_line, const QLineF &base_line)
|
|
|
|
{
|
|
|
|
QPointF p;
|
|
|
|
QLineF::IntersectType intersect = height_line.intersect(base_line, &p);
|
|
|
|
if (intersect == QLineF::UnboundedIntersection)
|
|
|
|
{
|
|
|
|
line_intersection->setVisible(true);
|
|
|
|
DrawLine(line_intersection, QLineF(base_line.p1(), height_line.p2()), supportColor, Qt::DashLine);
|
|
|
|
}
|
|
|
|
else if (intersect == QLineF::BoundedIntersection)
|
|
|
|
{
|
|
|
|
line_intersection->setVisible(false);
|
|
|
|
}
|
|
|
|
}
|