/************************************************************************ ** ** @file dialogpointofintersectioncurves.cpp ** @author Roman Telezhynskyi ** @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 ** 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 . ** *************************************************************************/ #include "dialogpointofintersectioncurves.h" #include #include #include #include #include #include #include "../../visualization/path/vistoolpointofintersectioncurves.h" #include "../../visualization/visualization.h" #include "../vmisc/vabstractapplication.h" #include "dialogtool.h" #include "ui_dialogpointofintersectioncurves.h" class QWidget; class VContainer; //--------------------------------------------------------------------------------------------------------------------- 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); CheckState(); FillComboBoxCurves(ui->comboBoxCurve1); FillComboBoxCurves(ui->comboBoxCurve2); FillComboBoxVCrossCurvesPoint(ui->comboBoxVCorrection); FillComboBoxHCrossCurvesPoint(ui->comboBoxHCorrection); connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfIntersectionCurves::NamePointChanged); connect(ui->comboBoxCurve1, static_cast(&QComboBox::currentIndexChanged), this, &DialogPointOfIntersectionCurves::CurveChanged); connect(ui->comboBoxCurve2, static_cast(&QComboBox::currentIndexChanged), this, &DialogPointOfIntersectionCurves::CurveChanged); 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) { setCurrentCurveId(ui->comboBoxCurve1, value); auto point = qobject_cast(vis); SCASSERT(point != nullptr); point->setObject1Id(value); } //--------------------------------------------------------------------------------------------------------------------- quint32 DialogPointOfIntersectionCurves::GetSecondCurveId() const { return getCurrentObjectId(ui->comboBoxCurve2); } //--------------------------------------------------------------------------------------------------------------------- void DialogPointOfIntersectionCurves::SetSecondCurveId(const quint32 &value) { setCurrentCurveId(ui->comboBoxCurve2, value); auto point = qobject_cast(vis); SCASSERT(point != nullptr); point->setObject2Id(value); } //--------------------------------------------------------------------------------------------------------------------- VCrossCurvesPoint DialogPointOfIntersectionCurves::GetVCrossPoint() const { return getCurrentCrossPoint(ui->comboBoxVCorrection); } //--------------------------------------------------------------------------------------------------------------------- void DialogPointOfIntersectionCurves::SetVCrossPoint(const VCrossCurvesPoint &vP) { auto index = ui->comboBoxVCorrection->findData(static_cast(vP)); if (index != -1) { ui->comboBoxVCorrection->setCurrentIndex(index); auto point = qobject_cast(vis); SCASSERT(point != nullptr); point->setVCrossPoint(vP); } } //--------------------------------------------------------------------------------------------------------------------- HCrossCurvesPoint DialogPointOfIntersectionCurves::GetHCrossPoint() const { return getCurrentCrossPoint(ui->comboBoxHCorrection); } //--------------------------------------------------------------------------------------------------------------------- void DialogPointOfIntersectionCurves::SetHCrossPoint(const HCrossCurvesPoint &hP) { auto index = ui->comboBoxHCorrection->findData(static_cast(hP)); if (index != -1) { ui->comboBoxHCorrection->setCurrentIndex(index); auto point = qobject_cast(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(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(); } //--------------------------------------------------------------------------------------------------------------------- void DialogPointOfIntersectionCurves::SaveData() { pointName = ui->lineEditNamePoint->text(); auto point = qobject_cast(vis); SCASSERT(point != nullptr); point->setObject1Id(GetFirstCurveId()); point->setObject2Id(GetSecondCurveId()); point->setVCrossPoint(GetVCrossPoint()); point->setHCrossPoint(GetHCrossPoint()); point->RefreshGeometry(); } //--------------------------------------------------------------------------------------------------------------------- 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(); }