2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-11-04 21:38:54 +01:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file dialogpointofintersection.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-11-04 21:38:54 +01: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.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-11-04 21:38:54 +01:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-11-04 21:38:54 +01: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.
|
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-11-04 21:38:54 +01:00
|
|
|
|
2013-10-21 16:09:05 +02:00
|
|
|
#include "dialogpointofintersection.h"
|
|
|
|
#include "ui_dialogpointofintersection.h"
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogPointOfIntersection::DialogPointOfIntersection(const VContainer *data, Draw::Draws mode, QWidget *parent)
|
|
|
|
:DialogTool(data, mode, parent), ui(new Ui::DialogPointOfIntersection), number(0), pointName(QString()),
|
|
|
|
firstPointId(0), secondPointId(0)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
ui->setupUi(this);
|
|
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
|
|
bOk = ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
connect(bOk, &QPushButton::clicked, this, &DialogPointOfIntersection::DialogAccepted);
|
|
|
|
flagName = false;
|
|
|
|
CheckState();
|
|
|
|
QPushButton *bCansel = ui->buttonBox->button(QDialogButtonBox::Cancel);
|
|
|
|
connect(bCansel, &QPushButton::clicked, this, &DialogPointOfIntersection::DialogRejected);
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfIntersection::NamePointChanged);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogPointOfIntersection::~DialogPointOfIntersection()
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfIntersection::setSecondPointId(const qint64 &value, const qint64 &id)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
secondPointId = value;
|
|
|
|
setCurrentPointId(ui->comboBoxSecondPoint, secondPointId, value, id);
|
|
|
|
}
|
|
|
|
|
2013-11-06 20:46:07 +01:00
|
|
|
void DialogPointOfIntersection::ChoosedObject(qint64 id, const Scene::Scenes &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (idDetail == 0 && mode == Draw::Modeling)
|
|
|
|
{
|
|
|
|
if (type == Scene::Detail)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
idDetail = id;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (mode == Draw::Modeling)
|
|
|
|
{
|
|
|
|
if (CheckObject(id) == false)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (type == Scene::Point)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
VPointF point;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (mode == Draw::Calculation)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
point = data->GetPoint(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
point = data->GetModelingPoint(id);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (number == 0)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
qint32 index = ui->comboBoxFirstPoint->findText(point.name());
|
2013-11-04 21:35:15 +01:00
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
2013-10-21 16:09:05 +02:00
|
|
|
ui->comboBoxFirstPoint->setCurrentIndex(index);
|
|
|
|
number++;
|
|
|
|
emit ToolTip(tr("Select point horizontally"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (number == 1)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
qint32 index = ui->comboBoxSecondPoint->findText(point.name());
|
2013-11-04 21:35:15 +01:00
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
2013-10-21 16:09:05 +02:00
|
|
|
ui->comboBoxSecondPoint->setCurrentIndex(index);
|
|
|
|
number = 0;
|
|
|
|
emit ToolTip("");
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (isInitialized == false)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfIntersection::DialogAccepted()
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
pointName = ui->lineEditNamePoint->text();
|
|
|
|
firstPointId = getCurrentPointId(ui->comboBoxFirstPoint);
|
|
|
|
secondPointId = getCurrentPointId(ui->comboBoxSecondPoint);
|
|
|
|
emit DialogClosed(QDialog::Accepted);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfIntersection::setFirstPointId(const qint64 &value, const qint64 &id)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
firstPointId = value;
|
|
|
|
setCurrentPointId(ui->comboBoxFirstPoint, firstPointId, value, id);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfIntersection::setPointName(const QString &value)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
pointName = value;
|
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
|
|
}
|