/************************************************************************ ** ** @file dialoglineintersect.cpp ** @author Roman Telezhynskyi ** @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 ** 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 "dialoglineintersect.h" #include "ui_dialoglineintersect.h" #include "../../geometry/vpointf.h" #include "../../container/vcontainer.h" //--------------------------------------------------------------------------------------------------------------------- /** * @brief DialogLineIntersect create dialog * @param data container with data * @param parent parent widget */ DialogLineIntersect::DialogLineIntersect(const VContainer *data, QWidget *parent) :DialogTool(data, parent), ui(new Ui::DialogLineIntersect), number(0), pointName(QString()), p1Line1(0), p2Line1(0), p1Line2(0), p2Line2(0), flagPoint(true) { ui->setupUi(this); number = 0; InitOkCancel(ui); labelEditNamePoint = ui->labelEditNamePoint; flagName = false; FillComboBoxPoints(ui->comboBoxP1Line1); FillComboBoxPoints(ui->comboBoxP2Line1); FillComboBoxPoints(ui->comboBoxP1Line2); FillComboBoxPoints(ui->comboBoxP2Line2); connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogLineIntersect::NamePointChanged); } //--------------------------------------------------------------------------------------------------------------------- DialogLineIntersect::~DialogLineIntersect() { delete ui; } //--------------------------------------------------------------------------------------------------------------------- /** * @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 DialogLineIntersect::ChoosedObject(quint32 id, const SceneObject &type) { if (type == SceneObject::Point) { const VPointF *point = data->GeometricObject(id); if (number == 0) { qint32 index = ui->comboBoxP1Line1->findText(point->name()); if ( index != -1 ) { // -1 for not found ui->comboBoxP1Line1->setCurrentIndex(index); p1Line1 = id; number++; emit ToolTip(tr("Select second point of first line")); return; } } if (number == 1) { qint32 index = ui->comboBoxP2Line1->findText(point->name()); if ( index != -1 ) { // -1 for not found ui->comboBoxP2Line1->setCurrentIndex(index); p2Line1 = id; number++; emit ToolTip(tr("Select first point of second line")); return; } } if (number == 2) { qint32 index = ui->comboBoxP1Line2->findText(point->name()); if ( index != -1 ) { // -1 for not found ui->comboBoxP1Line2->setCurrentIndex(index); p1Line2 = id; number++; emit ToolTip(tr("Select second point of second line")); return; } } if (number == 3) { qint32 index = ui->comboBoxP2Line2->findText(point->name()); if ( index != -1 ) { // -1 for not found ui->comboBoxP2Line2->setCurrentIndex(index); p2Line2 = id; number = 0; emit ToolTip(""); } if (isInitialized == false) { flagPoint = CheckIntersecion(); CheckState(); this->show(); connect(ui->comboBoxP1Line1, static_cast(&QComboBox::currentIndexChanged), this, &DialogLineIntersect::P1Line1Changed); connect(ui->comboBoxP2Line1, static_cast(&QComboBox::currentIndexChanged), this, &DialogLineIntersect::P2Line1Changed); connect(ui->comboBoxP1Line2, static_cast(&QComboBox::currentIndexChanged), this, &DialogLineIntersect::P1Line2Changed); connect(ui->comboBoxP2Line2, static_cast(&QComboBox::currentIndexChanged), this, &DialogLineIntersect::P2Line2Changed); } } } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief DialogAccepted save data and emit signal about closed dialog. */ void DialogLineIntersect::DialogAccepted() { pointName = ui->lineEditNamePoint->text(); p1Line1 = getCurrentObjectId(ui->comboBoxP1Line1); p2Line1 = getCurrentObjectId(ui->comboBoxP2Line1); p1Line2 = getCurrentObjectId(ui->comboBoxP1Line2); p2Line2 = getCurrentObjectId(ui->comboBoxP2Line2); emit DialogClosed(QDialog::Accepted); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief P1Line1Changed changed first point of first line * @param index index in list */ void DialogLineIntersect::P1Line1Changed( int index) { p1Line1 = qvariant_cast(ui->comboBoxP1Line1->itemData(index)); flagPoint = CheckIntersecion(); CheckState(); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief P2Line1Changed changed second point of first line * @param index index in list */ void DialogLineIntersect::P2Line1Changed(int index) { p2Line1 = qvariant_cast(ui->comboBoxP2Line1->itemData(index)); flagPoint = CheckIntersecion(); CheckState(); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief P1Line2Changed changed first point of second line * @param index index in list */ void DialogLineIntersect::P1Line2Changed(int index) { p1Line2 = qvariant_cast(ui->comboBoxP1Line2->itemData(index)); flagPoint = CheckIntersecion(); CheckState(); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief P2Line2Changed changed second point of second line * @param index index in list */ void DialogLineIntersect::P2Line2Changed(int index) { p2Line2 = qvariant_cast(ui->comboBoxP2Line2->itemData(index)); flagPoint = CheckIntersecion(); CheckState(); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief CheckState check state of dialog. Enable or disable button ok. */ void DialogLineIntersect::CheckState() { SCASSERT(bOk != nullptr); bOk->setEnabled(flagName && flagPoint); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief CheckIntersecion check intersection of points * @return true - line have intersection, false = don't have */ bool DialogLineIntersect::CheckIntersecion() { const VPointF *p1L1 = data->GeometricObject(p1Line1); const VPointF *p2L1 = data->GeometricObject(p2Line1); const VPointF *p1L2 = data->GeometricObject(p1Line2); const VPointF *p2L2 = data->GeometricObject(p2Line2); QLineF line1(p1L1->toQPointF(), p2L1->toQPointF()); QLineF line2(p1L2->toQPointF(), p2L2->toQPointF()); QPointF fPoint; QLineF::IntersectType intersect = line1.intersect(line2, &fPoint); if (intersect == QLineF::UnboundedIntersection || intersect == QLineF::BoundedIntersection) { return true; } else { return false; } } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setP2Line2 set id second point of second line * @param value id */ void DialogLineIntersect::setP2Line2(const quint32 &value) { p2Line2 = value; ChangeCurrentData(ui->comboBoxP2Line2, value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setP1Line2 set id first point of second line * @param value id */ void DialogLineIntersect::setP1Line2(const quint32 &value) { p1Line2 = value; ChangeCurrentData(ui->comboBoxP1Line2, value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setP2Line1 set id second point of first line * @param value id */ void DialogLineIntersect::setP2Line1(const quint32 &value) { p2Line1 = value; ChangeCurrentData(ui->comboBoxP2Line1, value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setP1Line1 set id first point of first line * @param value id */ void DialogLineIntersect::setP1Line1(const quint32 &value) { p1Line1 = value; ChangeCurrentData(ui->comboBoxP1Line1, value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief setPointName set name of point * @param value name of point */ void DialogLineIntersect::setPointName(const QString &value) { pointName = value; ui->lineEditNamePoint->setText(pointName); }