2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file dialogspline.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @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
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-08-05 10:37:56 +02:00
|
|
|
#include "dialogspline.h"
|
|
|
|
#include "ui_dialogspline.h"
|
|
|
|
|
2015-10-08 20:11:50 +02:00
|
|
|
#include "../vgeometry/vpointf.h"
|
2016-02-12 19:10:01 +01:00
|
|
|
#include "../vgeometry/vspline.h"
|
2015-10-08 20:11:50 +02:00
|
|
|
#include "../vpatterndb/vcontainer.h"
|
2014-08-18 16:42:53 +02:00
|
|
|
#include "../../visualization/vistoolspline.h"
|
2016-02-12 19:10:01 +01:00
|
|
|
|
2014-10-03 12:32:12 +02:00
|
|
|
#include <QDebug>
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief DialogSpline create dialog
|
|
|
|
* @param data container with data
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2014-07-29 14:19:11 +02:00
|
|
|
DialogSpline::DialogSpline(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
2016-02-15 15:30:48 +01:00
|
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogSpline), spl(), newDuplicate(-1)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-05 10:37:56 +02:00
|
|
|
ui->setupUi(this);
|
2014-08-18 16:42:53 +02:00
|
|
|
InitOkCancelApply(ui);
|
2013-12-21 12:36:51 +01:00
|
|
|
|
|
|
|
FillComboBoxPoints(ui->comboBoxP1);
|
|
|
|
FillComboBoxPoints(ui->comboBoxP4);
|
2015-02-02 12:10:02 +01:00
|
|
|
FillComboBoxLineColors(ui->comboBoxColor);
|
|
|
|
|
2014-07-14 17:57:12 +02:00
|
|
|
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);
|
2014-08-18 16:42:53 +02:00
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
vis = new VisToolSpline(data);
|
2016-02-12 19:10:01 +01:00
|
|
|
auto path = qobject_cast<VisToolSpline *>(vis);
|
|
|
|
SCASSERT(path != nullptr);
|
|
|
|
|
|
|
|
auto scene = qobject_cast<VMainGraphicsScene *>(qApp->getCurrentScene());
|
|
|
|
SCASSERT(scene != nullptr);
|
|
|
|
connect(scene, &VMainGraphicsScene::MouseLeftPressed, path, &VisToolSpline::MouseLeftPressed);
|
|
|
|
connect(scene, &VMainGraphicsScene::MouseLeftReleased, path, &VisToolSpline::MouseLeftReleased);
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogSpline::~DialogSpline()
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
DeleteVisualization<VisToolSpline>();
|
2013-08-05 10:37:56 +02:00
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2014-07-15 16:42:41 +02:00
|
|
|
void DialogSpline::ChosenObject(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-18 16:42:53 +02:00
|
|
|
if (prepare == false)// After first choose we ignore all objects
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-18 16:42:53 +02:00
|
|
|
if (type == SceneObject::Point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-02-12 19:10:01 +01:00
|
|
|
auto *path = qobject_cast<VisToolSpline *>(vis);
|
2015-05-21 21:24:31 +02:00
|
|
|
SCASSERT(path != nullptr);
|
|
|
|
|
2014-08-18 16:42:53 +02:00
|
|
|
switch (number)
|
2014-08-17 20:49:29 +02:00
|
|
|
{
|
2014-08-18 16:42:53 +02:00
|
|
|
case 0:
|
|
|
|
if (SetObject(id, ui->comboBoxP1, tr("Select last point of curve")))
|
|
|
|
{
|
2016-02-12 19:10:01 +01:00
|
|
|
++number;
|
2014-08-18 16:42:53 +02:00
|
|
|
path->VisualMode(id);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
2014-08-17 20:49:29 +02:00
|
|
|
{
|
2014-11-09 11:57:49 +01:00
|
|
|
if (getCurrentObjectId(ui->comboBoxP1) != id)
|
|
|
|
{
|
2016-02-12 19:10:01 +01:00
|
|
|
if (SetObject(id, ui->comboBoxP4, ""))
|
|
|
|
{
|
|
|
|
++number;
|
2014-08-18 16:42:53 +02:00
|
|
|
|
2016-01-24 17:15:08 +01:00
|
|
|
path->setObject4Id(id);
|
2014-11-09 11:57:49 +01:00
|
|
|
path->RefreshGeometry();
|
|
|
|
prepare = true;
|
|
|
|
}
|
2014-08-18 16:42:53 +02:00
|
|
|
}
|
|
|
|
break;
|
2014-08-17 20:49:29 +02:00
|
|
|
}
|
2014-08-18 16:42:53 +02:00
|
|
|
default:
|
|
|
|
break;
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-08-13 12:20:30 +02:00
|
|
|
void DialogSpline::SaveData()
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-02-15 10:02:55 +01:00
|
|
|
const qreal angle1 = ui->spinBoxAngle1->value();
|
|
|
|
const qreal angle2 = ui->spinBoxAngle2->value();
|
|
|
|
const qreal kAsm1 = ui->doubleSpinBoxKasm1->value();
|
|
|
|
const qreal kAsm2 = ui->doubleSpinBoxKasm2->value();
|
|
|
|
const qreal kCurve = ui->doubleSpinBoxKcurve->value();
|
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
const quint32 d = spl.GetDuplicate();//Save previous value
|
2016-02-15 10:02:55 +01:00
|
|
|
spl = VSpline(*GetP1(), *GetP4(), angle1, angle2, kAsm1, kAsm2, kCurve);
|
2014-08-18 16:42:53 +02:00
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
if (newDuplicate <= -1)
|
|
|
|
{
|
|
|
|
spl.SetDuplicate(d);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
spl.SetDuplicate(static_cast<quint32>(newDuplicate));
|
|
|
|
}
|
|
|
|
|
2016-02-13 22:39:47 +01:00
|
|
|
auto path = qobject_cast<VisToolSpline *>(vis);
|
2015-05-21 21:24:31 +02:00
|
|
|
SCASSERT(path != nullptr);
|
|
|
|
|
2016-02-15 10:02:55 +01:00
|
|
|
path->setObject1Id(GetP1()->id());
|
|
|
|
path->setObject4Id(GetP4()->id());
|
2015-02-03 11:17:04 +01:00
|
|
|
path->SetAngle1(angle1);
|
|
|
|
path->SetAngle2(angle2);
|
|
|
|
path->SetKAsm1(kAsm1);
|
|
|
|
path->SetKAsm2(kAsm2);
|
|
|
|
path->SetKCurve(kCurve);
|
2016-02-13 22:39:47 +01:00
|
|
|
path->SetMode(Mode::Show);
|
2014-08-18 16:42:53 +02:00
|
|
|
path->RefreshGeometry();
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2016-02-15 10:02:55 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const QSharedPointer<VPointF> DialogSpline::GetP1() const
|
|
|
|
{
|
|
|
|
return data->GeometricObject<VPointF>(getCurrentObjectId(ui->comboBoxP1));
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const QSharedPointer<VPointF> DialogSpline::GetP4() const
|
|
|
|
{
|
|
|
|
return data->GeometricObject<VPointF>(getCurrentObjectId(ui->comboBoxP4));
|
|
|
|
}
|
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
quint32 DialogSpline::DNumber(const QString &baseName) const
|
|
|
|
{
|
|
|
|
quint32 num = 1;
|
|
|
|
QString name;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
name = baseName + QString("_%1").arg(num);
|
|
|
|
++num;
|
|
|
|
} while (not data->IsUnique(name));
|
|
|
|
|
|
|
|
return num;
|
|
|
|
}
|
|
|
|
|
2014-07-14 17:57:12 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSpline::PointNameChanged()
|
|
|
|
{
|
|
|
|
QSet<quint32> set;
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxP1));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxP4));
|
|
|
|
|
2014-07-14 18:28:41 +02:00
|
|
|
QColor color = okColor;
|
2014-07-14 17:57:12 +02:00
|
|
|
if (getCurrentObjectId(ui->comboBoxP1) == getCurrentObjectId(ui->comboBoxP4))
|
|
|
|
{
|
|
|
|
flagError = false;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = errorColor;
|
2016-02-15 15:30:48 +01:00
|
|
|
|
|
|
|
ui->lineEditSplineName->setText(QString());
|
2014-07-14 17:57:12 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flagError = true;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = okColor;
|
2016-02-15 15:30:48 +01:00
|
|
|
|
|
|
|
if (getCurrentObjectId(ui->comboBoxP1) == spl.GetP1().id() &&
|
|
|
|
getCurrentObjectId(ui->comboBoxP4) == spl.GetP4().id())
|
|
|
|
{
|
|
|
|
newDuplicate = -1;
|
|
|
|
ui->lineEditSplineName->setText(spl.name());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
VSpline spline(*GetP1(), *GetP4(), spl.GetStartAngle(), spl.GetEndAngle(), spl.GetKasm1(), spl.GetKasm2(),
|
|
|
|
spl.GetKcurve());
|
|
|
|
|
|
|
|
if (not data->IsUnique(spline.name()))
|
|
|
|
{
|
|
|
|
newDuplicate = DNumber(spline.name());
|
|
|
|
spline.SetDuplicate(newDuplicate);
|
|
|
|
|
|
|
|
ui->lineEditSplineName->setText(spline.name());
|
|
|
|
}
|
|
|
|
}
|
2014-07-14 17:57:12 +02:00
|
|
|
}
|
2014-07-14 18:28:41 +02:00
|
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
|
|
ChangeColor(ui->labelSecondPoint, color);
|
2014-07-14 17:57:12 +02:00
|
|
|
CheckState();
|
|
|
|
}
|
|
|
|
|
2016-02-12 19:10:01 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSpline::ShowDialog(bool click)
|
|
|
|
{
|
|
|
|
if (prepare && click)
|
|
|
|
{
|
|
|
|
auto *path = qobject_cast<VisToolSpline *>(vis);
|
|
|
|
SCASSERT(path != nullptr);
|
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
spl = VSpline(*GetP1(), path->GetP2(), path->GetP3(), *GetP4(), ui->doubleSpinBoxKcurve->value());
|
2016-02-12 19:10:01 +01:00
|
|
|
|
2016-02-15 10:02:55 +01:00
|
|
|
ui->spinBoxAngle1->setValue(static_cast<qint32>(spl.GetStartAngle()));
|
|
|
|
ui->spinBoxAngle2->setValue(static_cast<qint32>(spl.GetEndAngle()));
|
2016-02-12 19:10:01 +01:00
|
|
|
|
2016-02-15 10:02:55 +01:00
|
|
|
ui->doubleSpinBoxKasm1->setValue(spl.GetKasm1());
|
|
|
|
ui->doubleSpinBoxKasm2->setValue(spl.GetKasm2());
|
2016-02-12 19:10:01 +01:00
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
if (not data->IsUnique(spl.name()))
|
|
|
|
{
|
|
|
|
spl.SetDuplicate(DNumber(spl.name()));
|
|
|
|
}
|
|
|
|
|
|
|
|
ui->lineEditSplineName->setText(spl.name());
|
|
|
|
|
2016-02-12 19:10:01 +01:00
|
|
|
DialogAccepted();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-18 16:42:53 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogSpline::ShowVisualization()
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
AddVisualization<VisToolSpline>();
|
2014-08-18 16:42:53 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-02-15 10:02:55 +01:00
|
|
|
VSpline DialogSpline::GetSpline() const
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-02-15 10:02:55 +01:00
|
|
|
return spl;
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-02-15 10:02:55 +01:00
|
|
|
void DialogSpline::SetSpline(const VSpline &spline)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-02-15 10:02:55 +01:00
|
|
|
spl = spline;
|
2013-08-05 10:37:56 +02:00
|
|
|
|
2016-02-15 10:02:55 +01:00
|
|
|
setCurrentPointId(ui->comboBoxP1, spl.GetP1().id());
|
|
|
|
setCurrentPointId(ui->comboBoxP4, spl.GetP4().id());
|
|
|
|
ui->spinBoxAngle1->setValue(static_cast<qint32>(spl.GetStartAngle()));
|
|
|
|
ui->spinBoxAngle2->setValue(static_cast<qint32>(spl.GetEndAngle()));
|
|
|
|
ui->doubleSpinBoxKasm1->setValue(spl.GetKasm1());
|
|
|
|
ui->doubleSpinBoxKasm2->setValue(spl.GetKasm2());
|
|
|
|
ui->doubleSpinBoxKcurve->setValue(spl.GetKcurve());
|
2015-05-21 21:24:31 +02:00
|
|
|
|
2016-02-15 15:30:48 +01:00
|
|
|
ui->lineEditSplineName->setText(spl.name());
|
|
|
|
|
2016-02-15 10:02:55 +01:00
|
|
|
auto path = qobject_cast<VisToolSpline *>(vis);
|
2015-05-21 21:24:31 +02:00
|
|
|
SCASSERT(path != nullptr);
|
|
|
|
|
2016-02-15 10:02:55 +01:00
|
|
|
path->setObject1Id(spl.GetP1().id());
|
|
|
|
path->setObject4Id(spl.GetP4().id());
|
|
|
|
path->SetAngle1(spl.GetStartAngle());
|
|
|
|
path->SetAngle2(spl.GetEndAngle());
|
|
|
|
path->SetKAsm1(spl.GetKasm1());
|
|
|
|
path->SetKAsm2(spl.GetKasm2());
|
|
|
|
path->SetKCurve(spl.GetKcurve());
|
2013-08-05 10:37:56 +02:00
|
|
|
}
|
2013-12-29 17:48:57 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-02-15 10:02:55 +01:00
|
|
|
QString DialogSpline::GetColor() const
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2016-02-15 10:02:55 +01:00
|
|
|
return GetComboBoxCurrentData(ui->comboBoxColor);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-02-15 10:02:55 +01:00
|
|
|
void DialogSpline::SetColor(const QString &value)
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2016-02-15 10:02:55 +01:00
|
|
|
ChangeCurrentData(ui->comboBoxColor, value);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|