2014-07-25 11:55:27 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vistoolshoulderpoint.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 25 7, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-07-25 11:55:27 +02:00
|
|
|
** <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 "vistoolshoulderpoint.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include <QGraphicsLineItem>
|
|
|
|
#include <QLineF>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <Qt>
|
|
|
|
#include <new>
|
|
|
|
|
2016-03-24 15:49:15 +01:00
|
|
|
#include "../../tools/drawTools/toolpoint/toolsinglepoint/toollinepoint/vtoolshoulderpoint.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vgeometry/vgobject.h"
|
2015-06-20 08:23:04 +02:00
|
|
|
#include "../vgeometry/vpointf.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vpatterndb/vcontainer.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../visualization.h"
|
|
|
|
#include "visline.h"
|
2014-07-25 11:55:27 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VisToolShoulderPoint::VisToolShoulderPoint(const VContainer *data, QGraphicsItem *parent)
|
2014-08-17 17:20:55 +02:00
|
|
|
:VisLine(data, parent), lineP1Id(NULL_ID), lineP2Id(NULL_ID), point(nullptr), line1P1(nullptr), line1P2(nullptr),
|
2014-07-25 11:55:27 +02:00
|
|
|
line1(nullptr), line2P2(nullptr), line2(nullptr), line3(nullptr), length(0)
|
|
|
|
{
|
2014-08-15 15:54:24 +02:00
|
|
|
line1P1 = InitPoint(supportColor, this);
|
2015-10-28 15:22:36 +01:00
|
|
|
line1P2 = InitPoint(supportColor, this); //-V656
|
2014-08-16 14:14:55 +02:00
|
|
|
line1 = InitItem<QGraphicsLineItem>(supportColor, this);
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2014-08-15 15:54:24 +02:00
|
|
|
line2P2 = InitPoint(supportColor, this);
|
2014-08-16 14:14:55 +02:00
|
|
|
line2 = InitItem<QGraphicsLineItem>(supportColor, this);
|
2015-10-28 15:22:36 +01:00
|
|
|
line3 = InitItem<QGraphicsLineItem>(supportColor, this); //-V656
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2014-08-15 15:54:24 +02:00
|
|
|
point = InitPoint(mainColor, this);
|
2014-07-25 11:55:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VisToolShoulderPoint::~VisToolShoulderPoint()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolShoulderPoint::RefreshGeometry()
|
|
|
|
{
|
2016-01-24 17:15:08 +01:00
|
|
|
if (object1Id > NULL_ID)
|
2014-07-25 11:55:27 +02:00
|
|
|
{
|
2016-01-24 17:15:08 +01:00
|
|
|
const QSharedPointer<VPointF> first = Visualization::data->GeometricObject<VPointF>(object1Id);
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawPoint(line1P1, *first, supportColor);
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2014-10-24 16:16:31 +02:00
|
|
|
if (lineP1Id <= NULL_ID)
|
2014-07-25 11:55:27 +02:00
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawLine(line1, QLineF(*first, Visualization::scenePos), supportColor);
|
2014-07-25 11:55:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> second = Visualization::data->GeometricObject<VPointF>(lineP1Id);
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawPoint(line1P2, *second, supportColor);
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawLine(line1, QLineF(*first, *second), supportColor);
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2014-10-24 16:16:31 +02:00
|
|
|
if (lineP2Id <= NULL_ID)
|
2014-07-25 11:55:27 +02:00
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawLine(line2, QLineF(*second, Visualization::scenePos), supportColor);
|
2014-07-25 11:55:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> third = Visualization::data->GeometricObject<VPointF>(lineP2Id);
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawPoint(line2P2, *third, supportColor);
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawLine(line2, QLineF(*second, *third), supportColor);
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2016-03-23 15:09:30 +01:00
|
|
|
if (not qFuzzyIsNull(length))
|
2014-07-25 11:55:27 +02:00
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
QPointF fPoint = VToolShoulderPoint::FindPoint(*second, *third, *first, length);
|
|
|
|
QLineF mainLine = QLineF(*second, fPoint);
|
2014-07-25 11:55:27 +02:00
|
|
|
DrawLine(this, mainLine, mainColor, lineStyle);
|
|
|
|
|
|
|
|
DrawPoint(point, mainLine.p2(), mainColor);
|
2016-05-14 21:28:09 +02:00
|
|
|
DrawLine(line3, QLineF(*first, mainLine.p2()), supportColor, Qt::DashLine);
|
2014-07-25 11:55:27 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-05-14 21:28:09 +02:00
|
|
|
qreal angle = QLineF(*second, *third).angle();
|
|
|
|
QPointF endRay = Ray(*second, angle);
|
|
|
|
QLineF mainLine = VGObject::BuildLine(*second, QLineF(*second, endRay).length(), angle);
|
2014-07-25 11:55:27 +02:00
|
|
|
DrawLine(this, mainLine, mainColor, lineStyle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolShoulderPoint::setLineP1Id(const quint32 &value)
|
|
|
|
{
|
|
|
|
lineP1Id = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolShoulderPoint::setLineP2Id(const quint32 &value)
|
|
|
|
{
|
|
|
|
lineP2Id = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolShoulderPoint::setLength(const QString &expression)
|
|
|
|
{
|
2016-02-25 20:23:16 +01:00
|
|
|
length = FindLength(expression, Visualization::data->PlainVariables());
|
2014-07-25 11:55:27 +02:00
|
|
|
}
|