2014-08-15 15:54:24 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vistoolarc.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 15 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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-08-15 15:54:24 +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 "vistoolarc.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include <QPainterPath>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <Qt>
|
|
|
|
#include <new>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vgeometry/vabstractcurve.h"
|
2016-03-24 15:49:15 +01:00
|
|
|
#include "../vgeometry/varc.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vgeometry/vpointf.h"
|
2016-03-24 15:49:15 +01:00
|
|
|
#include "../vpatterndb/vcontainer.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../visualization.h"
|
|
|
|
#include "vispath.h"
|
2017-06-23 11:25:02 +02:00
|
|
|
#include "../vwidgets/scalesceneitems.h"
|
2014-08-15 15:54:24 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VisToolArc::VisToolArc(const VContainer *data, QGraphicsItem *parent)
|
|
|
|
:VisPath(data, parent), arcCenter(nullptr), radius(0), f1(0), f2(0)
|
|
|
|
{
|
|
|
|
arcCenter = InitPoint(mainColor, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolArc::RefreshGeometry()
|
|
|
|
{
|
2016-01-24 17:15:08 +01:00
|
|
|
if (object1Id > NULL_ID)
|
2014-08-15 15:54:24 +02:00
|
|
|
{
|
2016-01-24 17:15:08 +01:00
|
|
|
const QSharedPointer<VPointF> first = Visualization::data->GeometricObject<VPointF>(object1Id);
|
2017-03-31 16:04:11 +02:00
|
|
|
DrawPoint(arcCenter, static_cast<QPointF>(*first), supportColor);
|
2014-08-15 15:54:24 +02:00
|
|
|
|
2016-12-19 14:42:52 +01:00
|
|
|
if (not qFuzzyIsNull(radius) && f1 >= 0 && f2 >= 0)
|
2014-08-15 15:54:24 +02:00
|
|
|
{
|
|
|
|
VArc arc = VArc (*first, radius, f1, f2);
|
2017-05-16 12:07:53 +02:00
|
|
|
DrawPath(this, arc.GetPath(), arc.GetDirectionPath(), mainColor, lineStyle, Qt::RoundCap);
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolArc::setRadius(const QString &expression)
|
|
|
|
{
|
2016-02-25 20:23:16 +01:00
|
|
|
radius = FindLength(expression, Visualization::data->PlainVariables());
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolArc::setF1(const QString &expression)
|
|
|
|
{
|
2016-02-25 20:23:16 +01:00
|
|
|
f1 = FindVal(expression, Visualization::data->PlainVariables());
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VisToolArc::setF2(const QString &expression)
|
|
|
|
{
|
2016-02-25 20:23:16 +01:00
|
|
|
f2 = FindVal(expression, Visualization::data->PlainVariables());
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|