cf2aea280d
--HG-- branch : feature
357 lines
12 KiB
C++
357 lines
12 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialogspline.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date November 15, 2013
|
|
**
|
|
** @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.
|
|
**
|
|
** 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 "dialogspline.h"
|
|
#include "ui_dialogspline.h"
|
|
|
|
#include "../../geometry/vpointf.h"
|
|
#include "../../container/vcontainer.h"
|
|
#include "../../visualization/vistoolspline.h"
|
|
#include <QDebug>
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogSpline create dialog
|
|
* @param data container with data
|
|
* @param parent parent widget
|
|
*/
|
|
DialogSpline::DialogSpline(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogSpline), angle1(0), angle2(0), kAsm1(1), kAsm2(1),
|
|
kCurve(1), path(nullptr)
|
|
{
|
|
ui->setupUi(this);
|
|
InitOkCancelApply(ui);
|
|
|
|
FillComboBoxPoints(ui->comboBoxP1);
|
|
FillComboBoxPoints(ui->comboBoxP4);
|
|
FillComboBoxLineColors(ui->comboBoxColor);
|
|
|
|
connect(ui->comboBoxP1, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogSpline::PointNameChanged);
|
|
connect(ui->comboBoxP4, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogSpline::PointNameChanged);
|
|
|
|
path = new VisToolSpline(data);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogSpline::~DialogSpline()
|
|
{
|
|
if (qApp->getCurrentScene()->items().contains(path))
|
|
{ // In some cases scene delete object yourself. If not make check program will crash.
|
|
delete path;
|
|
}
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetP1 return id first point of spline
|
|
* @return id
|
|
*/
|
|
quint32 DialogSpline::GetP1() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxP1);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief ChoosedObject gets id and type of selected object. Save right data and ignore wrong.
|
|
* @param id id of point or detail
|
|
* @param type type of object
|
|
*/
|
|
void DialogSpline::ChosenObject(quint32 id, const SceneObject &type)
|
|
{
|
|
if (prepare == false)// After first choose we ignore all objects
|
|
{
|
|
if (type == SceneObject::Point)
|
|
{
|
|
switch (number)
|
|
{
|
|
case 0:
|
|
if (SetObject(id, ui->comboBoxP1, tr("Select last point of curve")))
|
|
{
|
|
number++;
|
|
path->VisualMode(id);
|
|
}
|
|
break;
|
|
case 1:
|
|
{
|
|
if (getCurrentObjectId(ui->comboBoxP1) != id)
|
|
{
|
|
const QSharedPointer<VPointF> point = data->GeometricObject<VPointF>(id);
|
|
qint32 index = ui->comboBoxP4->findText(point->name());
|
|
if ( index != -1 )
|
|
{ // -1 for not found
|
|
ui->comboBoxP4->setCurrentIndex(index);
|
|
emit ToolTip("");
|
|
index = ui->comboBoxP1->currentIndex();
|
|
quint32 p1Id = qvariant_cast<quint32>(ui->comboBoxP1->itemData(index));
|
|
|
|
QPointF p1 = data->GeometricObject<VPointF>(p1Id)->toQPointF();
|
|
QPointF p4 = data->GeometricObject<VPointF>(id)->toQPointF();
|
|
|
|
ui->spinBoxAngle1->setValue(static_cast<qint32>(QLineF(p1, p4).angle()));
|
|
ui->spinBoxAngle2->setValue(static_cast<qint32>(QLineF(p4, p1).angle()));
|
|
|
|
path->setPoint4Id(id);
|
|
path->RefreshGeometry();
|
|
prepare = true;
|
|
DialogAccepted();
|
|
}
|
|
else
|
|
{
|
|
qWarning()<<"Can't find object by name"<<point->name();
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogSpline::SaveData()
|
|
{
|
|
angle1 = ui->spinBoxAngle1->value();
|
|
angle2 = ui->spinBoxAngle2->value();
|
|
kAsm1 = ui->doubleSpinBoxKasm1->value();
|
|
kAsm2 = ui->doubleSpinBoxKasm2->value();
|
|
kCurve = ui->doubleSpinBoxKcurve->value();
|
|
|
|
path->setPoint1Id(GetP1());
|
|
path->setPoint4Id(GetP4());
|
|
path->SetAngle1(angle1);
|
|
path->SetAngle2(angle2);
|
|
path->SetKAsm1(kAsm1);
|
|
path->SetKAsm2(kAsm2);
|
|
path->SetKCurve(kCurve);
|
|
path->RefreshGeometry();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogSpline::PointNameChanged()
|
|
{
|
|
QSet<quint32> set;
|
|
set.insert(getCurrentObjectId(ui->comboBoxP1));
|
|
set.insert(getCurrentObjectId(ui->comboBoxP4));
|
|
|
|
QColor color = okColor;
|
|
if (getCurrentObjectId(ui->comboBoxP1) == getCurrentObjectId(ui->comboBoxP4))
|
|
{
|
|
flagError = false;
|
|
color = errorColor;
|
|
}
|
|
else
|
|
{
|
|
flagError = true;
|
|
color = okColor;
|
|
}
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
ChangeColor(ui->labelSecondPoint, color);
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogSpline::UpdateList()
|
|
{
|
|
/*
|
|
* Does nothing. We redefine this slot because it is only one now way block update list of variable.
|
|
* This dialog doesn't work with formula. Don't delete. Help avoid crash.
|
|
*/
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogSpline::ShowVisualization()
|
|
{
|
|
if (prepare == false)
|
|
{
|
|
VMainGraphicsScene *scene = qApp->getCurrentScene();
|
|
connect(scene, &VMainGraphicsScene::NewFactor, path, &Visualization::SetFactor);
|
|
scene->addItem(path);
|
|
path->RefreshGeometry();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetKCurve set coefficient curve
|
|
* @param value value. Can be >= 0.
|
|
*/
|
|
void DialogSpline::SetKCurve(const qreal &value)
|
|
{
|
|
kCurve = value;
|
|
ui->doubleSpinBoxKcurve->setValue(value);
|
|
path->SetKCurve(kCurve);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogSpline::GetColor() const
|
|
{
|
|
return GetComboBoxCurrentData(ui->comboBoxColor);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogSpline::SetColor(const QString &value)
|
|
{
|
|
ChangeCurrentData(ui->comboBoxColor, value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetKAsm2 set second coefficient asymmetry
|
|
* @param value value. Can be >= 0.
|
|
*/
|
|
void DialogSpline::SetKAsm2(const qreal &value)
|
|
{
|
|
kAsm2 = value;
|
|
ui->doubleSpinBoxKasm2->setValue(value);
|
|
path->SetKAsm2(kAsm2);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetKAsm1 set first coefficient asymmetry
|
|
* @param value value. Can be >= 0.
|
|
*/
|
|
void DialogSpline::SetKAsm1(const qreal &value)
|
|
{
|
|
kAsm1 = value;
|
|
ui->doubleSpinBoxKasm1->setValue(value);
|
|
path->SetKAsm1(kAsm1);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetAngle2 set second angle of spline
|
|
* @param value angle in degree
|
|
*/
|
|
void DialogSpline::SetAngle2(const qreal &value)
|
|
{
|
|
angle2 = value;
|
|
ui->spinBoxAngle2->setValue(static_cast<qint32>(value));
|
|
path->SetAngle2(angle2);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetAngle1 set first angle of spline
|
|
* @param value angle in degree
|
|
*/
|
|
void DialogSpline::SetAngle1(const qreal &value)
|
|
{
|
|
angle1 = value;
|
|
ui->spinBoxAngle1->setValue(static_cast<qint32>(value));
|
|
path->SetAngle1(angle1);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetP4 set id fourth point of spline
|
|
* @param value id
|
|
*/
|
|
void DialogSpline::SetP4(const quint32 &value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxP4, value);
|
|
path->setPoint4Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetP1 set id first point of spline
|
|
* @param value id
|
|
*/
|
|
void DialogSpline::SetP1(const quint32 &value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxP1, value);
|
|
path->setPoint1Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetP4 return id fourth point of spline
|
|
* @return id
|
|
*/
|
|
quint32 DialogSpline::GetP4() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxP4);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetAngle1 return first angle of spline
|
|
* @return angle in degree
|
|
*/
|
|
qreal DialogSpline::GetAngle1() const
|
|
{
|
|
return angle1;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetAngle2 return second angle of spline
|
|
* @return angle in degree
|
|
*/
|
|
qreal DialogSpline::GetAngle2() const
|
|
{
|
|
return angle2;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetKAsm1 return first coefficient asymmetry
|
|
* @return value. Can be >= 0.
|
|
*/
|
|
qreal DialogSpline::GetKAsm1() const
|
|
{
|
|
return kAsm1;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetKAsm2 return second coefficient asymmetry
|
|
* @return value. Can be >= 0.
|
|
*/
|
|
qreal DialogSpline::GetKAsm2() const
|
|
{
|
|
return kAsm2;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetKCurve return coefficient curve
|
|
* @return value. Can be >= 0.
|
|
*/
|
|
qreal DialogSpline::GetKCurve() const
|
|
{
|
|
return kCurve;
|
|
}
|