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 dialogtriangle.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-18 20:20:54 +02:00
|
|
|
#include "dialogtriangle.h"
|
|
|
|
#include "ui_dialogtriangle.h"
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogTriangle::DialogTriangle(const VContainer *data, Draw::Draws mode, QWidget *parent)
|
|
|
|
:DialogTool(data, mode, parent), ui(new Ui::DialogTriangle), number(0), pointName(QString()), axisP1Id(0),
|
|
|
|
axisP2Id(0), firstPointId(0), secondPointId(0)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
ui->setupUi(this);
|
|
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
|
|
bOk = ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
connect(bOk, &QPushButton::clicked, this, &DialogTriangle::DialogAccepted);
|
|
|
|
flagName = false;
|
|
|
|
CheckState();
|
|
|
|
QPushButton *bCansel = ui->buttonBox->button(QDialogButtonBox::Cancel);
|
|
|
|
connect(bCansel, &QPushButton::clicked, this, &DialogTriangle::DialogRejected);
|
|
|
|
FillComboBoxPoints(ui->comboBoxAxisP1);
|
|
|
|
FillComboBoxPoints(ui->comboBoxAxisP2);
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogTriangle::NamePointChanged);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogTriangle::~DialogTriangle()
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2013-11-06 20:46:07 +01:00
|
|
|
void DialogTriangle::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-18 20:20:54 +02:00
|
|
|
idDetail = id;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (mode == Draw::Modeling)
|
|
|
|
{
|
|
|
|
if (CheckObject(id) == false)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (type == Scene::Point)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
VPointF point;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (mode == Draw::Calculation)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
point = data->GetPoint(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
point = data->GetModelingPoint(id);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
switch (number)
|
|
|
|
{
|
|
|
|
case (0):
|
|
|
|
ChangeCurrentText(ui->comboBoxAxisP1, point.name());
|
|
|
|
number++;
|
|
|
|
emit ToolTip(tr("Select second point of axis"));
|
|
|
|
break;
|
|
|
|
case (1):
|
|
|
|
ChangeCurrentText(ui->comboBoxAxisP2, point.name());
|
|
|
|
number++;
|
|
|
|
emit ToolTip(tr("Select first point"));
|
|
|
|
break;
|
|
|
|
case (2):
|
|
|
|
ChangeCurrentText(ui->comboBoxFirstPoint, point.name());
|
|
|
|
number++;
|
|
|
|
emit ToolTip(tr("Select second point"));
|
|
|
|
break;
|
|
|
|
case (3):
|
|
|
|
ChangeCurrentText(ui->comboBoxSecondPoint, point.name());
|
|
|
|
number = 0;
|
|
|
|
emit ToolTip(tr(""));
|
|
|
|
if (isInitialized == false)
|
|
|
|
{
|
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
break;
|
2013-11-12 19:29:03 +01:00
|
|
|
default:
|
|
|
|
break;
|
2013-10-18 20:20:54 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogTriangle::DialogAccepted()
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
pointName = ui->lineEditNamePoint->text();
|
|
|
|
firstPointId = getCurrentPointId(ui->comboBoxFirstPoint);
|
|
|
|
secondPointId = getCurrentPointId(ui->comboBoxSecondPoint);
|
|
|
|
axisP1Id = getCurrentPointId(ui->comboBoxAxisP1);
|
|
|
|
axisP2Id = getCurrentPointId(ui->comboBoxAxisP2);
|
|
|
|
emit DialogClosed(QDialog::Accepted);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogTriangle::setPointName(const QString &value)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
pointName = value;
|
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogTriangle::setSecondPointId(const qint64 &value, const qint64 &id)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
secondPointId = value;
|
|
|
|
setCurrentPointId(ui->comboBoxSecondPoint, secondPointId, value, id);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogTriangle::setFirstPointId(const qint64 &value, const qint64 &id)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
firstPointId = value;
|
|
|
|
setCurrentPointId(ui->comboBoxFirstPoint, firstPointId, value, id);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogTriangle::setAxisP2Id(const qint64 &value, const qint64 &id)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
axisP2Id = value;
|
|
|
|
setCurrentPointId(ui->comboBoxAxisP2, axisP2Id, value, id);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogTriangle::setAxisP1Id(const qint64 &value, const qint64 &id)
|
|
|
|
{
|
2013-10-18 20:20:54 +02:00
|
|
|
axisP1Id = value;
|
|
|
|
setCurrentPointId(ui->comboBoxAxisP1, axisP1Id, value, id);
|
|
|
|
}
|