2016-01-24 17:15:08 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file dialogpointofintersectioncurves.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 23 1, 2016
|
|
|
|
**
|
|
|
|
** @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) 2016 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 "dialogpointofintersectioncurves.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include <QColor>
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPointer>
|
|
|
|
#include <QPushButton>
|
|
|
|
|
2016-03-24 15:49:15 +01:00
|
|
|
#include "../../visualization/path/vistoolpointofintersectioncurves.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../../visualization/visualization.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vmisc/vabstractapplication.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "dialogtool.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "ui_dialogpointofintersectioncurves.h"
|
|
|
|
|
|
|
|
class QWidget;
|
|
|
|
class VContainer;
|
2016-01-24 17:15:08 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogPointOfIntersectionCurves::DialogPointOfIntersectionCurves(const VContainer *data, const quint32 &toolId,
|
|
|
|
QWidget *parent)
|
|
|
|
:DialogTool(data, toolId, parent),
|
|
|
|
ui(new Ui::DialogPointOfIntersectionCurves)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0)
|
|
|
|
ui->lineEditNamePoint->setClearButtonEnabled(true);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ui->lineEditNamePoint->setText(qApp->getCurrentDocument()->GenerateLabel(LabelType::NewLabel));
|
|
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
|
|
|
|
|
|
InitOkCancelApply(ui);
|
2016-01-25 15:46:24 +01:00
|
|
|
CheckState();
|
2016-01-24 17:15:08 +01:00
|
|
|
|
|
|
|
FillComboBoxCurves(ui->comboBoxCurve1);
|
|
|
|
FillComboBoxCurves(ui->comboBoxCurve2);
|
|
|
|
FillComboBoxVCrossCurvesPoint(ui->comboBoxVCorrection);
|
|
|
|
FillComboBoxHCrossCurvesPoint(ui->comboBoxHCorrection);
|
|
|
|
|
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfIntersectionCurves::NamePointChanged);
|
2016-01-25 15:46:24 +01:00
|
|
|
connect(ui->comboBoxCurve1, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogPointOfIntersectionCurves::CurveChanged);
|
|
|
|
connect(ui->comboBoxCurve2, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogPointOfIntersectionCurves::CurveChanged);
|
2016-01-24 17:15:08 +01:00
|
|
|
|
|
|
|
vis = new VisToolPointOfIntersectionCurves(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogPointOfIntersectionCurves::~DialogPointOfIntersectionCurves()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::SetPointName(const QString &value)
|
|
|
|
{
|
|
|
|
pointName = value;
|
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
quint32 DialogPointOfIntersectionCurves::GetFirstCurveId() const
|
|
|
|
{
|
|
|
|
return getCurrentObjectId(ui->comboBoxCurve1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::SetFirstCurveId(const quint32 &value)
|
|
|
|
{
|
2016-01-25 15:46:24 +01:00
|
|
|
setCurrentCurveId(ui->comboBoxCurve1, value);
|
2016-01-24 17:15:08 +01:00
|
|
|
|
|
|
|
auto point = qobject_cast<VisToolPointOfIntersectionCurves *>(vis);
|
|
|
|
SCASSERT(point != nullptr);
|
|
|
|
point->setObject1Id(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
quint32 DialogPointOfIntersectionCurves::GetSecondCurveId() const
|
|
|
|
{
|
|
|
|
return getCurrentObjectId(ui->comboBoxCurve2);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::SetSecondCurveId(const quint32 &value)
|
|
|
|
{
|
2016-01-25 15:46:24 +01:00
|
|
|
setCurrentCurveId(ui->comboBoxCurve2, value);
|
2016-01-24 17:15:08 +01:00
|
|
|
|
|
|
|
auto point = qobject_cast<VisToolPointOfIntersectionCurves *>(vis);
|
|
|
|
SCASSERT(point != nullptr);
|
|
|
|
point->setObject2Id(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VCrossCurvesPoint DialogPointOfIntersectionCurves::GetVCrossPoint() const
|
|
|
|
{
|
|
|
|
return getCurrentCrossPoint<VCrossCurvesPoint>(ui->comboBoxVCorrection);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::SetVCrossPoint(const VCrossCurvesPoint &vP)
|
|
|
|
{
|
|
|
|
auto index = ui->comboBoxVCorrection->findData(static_cast<int>(vP));
|
|
|
|
if (index != -1)
|
|
|
|
{
|
|
|
|
ui->comboBoxVCorrection->setCurrentIndex(index);
|
|
|
|
|
|
|
|
auto point = qobject_cast<VisToolPointOfIntersectionCurves *>(vis);
|
|
|
|
SCASSERT(point != nullptr);
|
|
|
|
point->setVCrossPoint(vP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
HCrossCurvesPoint DialogPointOfIntersectionCurves::GetHCrossPoint() const
|
|
|
|
{
|
|
|
|
return getCurrentCrossPoint<HCrossCurvesPoint>(ui->comboBoxHCorrection);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::SetHCrossPoint(const HCrossCurvesPoint &hP)
|
|
|
|
{
|
|
|
|
auto index = ui->comboBoxHCorrection->findData(static_cast<int>(hP));
|
|
|
|
if (index != -1)
|
|
|
|
{
|
|
|
|
ui->comboBoxHCorrection->setCurrentIndex(index);
|
|
|
|
|
|
|
|
auto point = qobject_cast<VisToolPointOfIntersectionCurves *>(vis);
|
|
|
|
SCASSERT(point != nullptr);
|
|
|
|
point->setHCrossPoint(hP);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::ChosenObject(quint32 id, const SceneObject &type)
|
|
|
|
{
|
|
|
|
if (prepare == false)// After first choose we ignore all objects
|
|
|
|
{
|
|
|
|
if (type == SceneObject::Spline || type == SceneObject::Arc || type == SceneObject::SplinePath)
|
|
|
|
{
|
|
|
|
auto point = qobject_cast<VisToolPointOfIntersectionCurves *>(vis);
|
|
|
|
SCASSERT(point != nullptr);
|
|
|
|
|
|
|
|
switch (number)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if (SetObject(id, ui->comboBoxCurve1, tr("Select second curve")))
|
|
|
|
{
|
|
|
|
number++;
|
|
|
|
point->VisualMode(id);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (getCurrentObjectId(ui->comboBoxCurve1) != id)
|
|
|
|
{
|
|
|
|
if (SetObject(id, ui->comboBoxCurve2, ""))
|
|
|
|
{
|
|
|
|
number = 0;
|
|
|
|
point->setObject2Id(id);
|
|
|
|
point->RefreshGeometry();
|
|
|
|
prepare = true;
|
|
|
|
DialogAccepted();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::ShowVisualization()
|
|
|
|
{
|
|
|
|
AddVisualization<VisToolPointOfIntersectionCurves>();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::SaveData()
|
|
|
|
{
|
|
|
|
pointName = ui->lineEditNamePoint->text();
|
|
|
|
|
|
|
|
auto point = qobject_cast<VisToolPointOfIntersectionCurves *>(vis);
|
|
|
|
SCASSERT(point != nullptr);
|
|
|
|
|
|
|
|
point->setObject1Id(GetFirstCurveId());
|
|
|
|
point->setObject2Id(GetSecondCurveId());
|
|
|
|
point->setVCrossPoint(GetVCrossPoint());
|
|
|
|
point->setHCrossPoint(GetHCrossPoint());
|
|
|
|
point->RefreshGeometry();
|
|
|
|
}
|
2016-01-25 15:46:24 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::CheckState()
|
|
|
|
{
|
|
|
|
SCASSERT(bOk != nullptr);
|
|
|
|
bOk->setEnabled(flagName && flagError);
|
|
|
|
// In case dialog hasn't apply button
|
|
|
|
if ( bApply != nullptr)
|
|
|
|
{
|
|
|
|
bApply->setEnabled(bOk->isEnabled());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfIntersectionCurves::CurveChanged()
|
|
|
|
{
|
|
|
|
QColor color = okColor;
|
|
|
|
if (getCurrentObjectId(ui->comboBoxCurve1) == getCurrentObjectId(ui->comboBoxCurve2))
|
|
|
|
{
|
|
|
|
flagError = false;
|
|
|
|
color = errorColor;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flagError = true;
|
|
|
|
color = okColor;
|
|
|
|
}
|
|
|
|
ChangeColor(ui->labelCurve1, color);
|
|
|
|
ChangeColor(ui->labelCurve2, color);
|
|
|
|
CheckState();
|
|
|
|
}
|