2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file dialogarc.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-09-18 21:16:19 +02: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-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02: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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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-09-18 21:16:19 +02:00
|
|
|
|
2013-08-06 09:56:09 +02:00
|
|
|
#include "dialogarc.h"
|
|
|
|
#include "ui_dialogarc.h"
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogArc::DialogArc(const VContainer *data, Draw::Draws mode, QWidget *parent)
|
|
|
|
:DialogTool(data, mode, parent), ui(new Ui::DialogArc), flagRadius(false), flagF1(false), flagF2(false),
|
|
|
|
timerRadius(0), timerF1(0), timerF2(0), center(0), radius(QString()), f1(QString()), f2(QString())
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
ui->setupUi(this);
|
|
|
|
|
|
|
|
timerRadius = new QTimer(this);
|
|
|
|
connect(timerRadius, &QTimer::timeout, this, &DialogArc::EvalRadius);
|
|
|
|
|
|
|
|
timerF1 = new QTimer(this);
|
|
|
|
connect(timerF1, &QTimer::timeout, this, &DialogArc::EvalF1);
|
|
|
|
|
|
|
|
timerF2 = new QTimer(this);
|
|
|
|
connect(timerF2, &QTimer::timeout, this, &DialogArc::EvalF2);
|
|
|
|
|
|
|
|
bOk = ui->buttonBox->button(QDialogButtonBox::Ok);
|
|
|
|
connect(bOk, &QPushButton::clicked, this, &DialogArc::DialogAccepted);
|
|
|
|
|
|
|
|
QPushButton *bCansel = ui->buttonBox->button(QDialogButtonBox::Cancel);
|
|
|
|
connect(bCansel, &QPushButton::clicked, this, &DialogArc::DialogRejected);
|
|
|
|
FillComboBoxPoints(ui->comboBoxBasePoint);
|
|
|
|
|
|
|
|
CheckState();
|
|
|
|
|
|
|
|
listWidget = ui->listWidget;
|
|
|
|
labelDescription = ui->labelDescription;
|
|
|
|
radioButtonSizeGrowth = ui->radioButtonSizeGrowth;
|
|
|
|
radioButtonStandartTable = ui->radioButtonStandartTable;
|
|
|
|
radioButtonIncrements = ui->radioButtonIncrements;
|
|
|
|
radioButtonLengthLine = ui->radioButtonLengthLine;
|
2013-10-13 17:31:42 +02:00
|
|
|
radioButtonLengthArc = ui->radioButtonLengthArc;
|
|
|
|
radioButtonLengthCurve = ui->radioButtonLengthSpline;
|
2013-08-06 09:56:09 +02:00
|
|
|
|
|
|
|
connect(ui->toolButtonPutHereRadius, &QPushButton::clicked, this, &DialogArc::PutRadius);
|
|
|
|
connect(ui->toolButtonPutHereF1, &QPushButton::clicked, this, &DialogArc::PutF1);
|
2013-08-21 10:03:53 +02:00
|
|
|
connect(ui->toolButtonPutHereF2, &QPushButton::clicked, this, &DialogArc::PutF2);
|
2013-08-06 09:56:09 +02:00
|
|
|
connect(ui->listWidget, &QListWidget::currentRowChanged, this, &DialogArc::ValChenged);
|
|
|
|
|
|
|
|
ShowVariable(data->DataBase());
|
|
|
|
connect(ui->radioButtonSizeGrowth, &QRadioButton::clicked, this, &DialogArc::SizeGrowth);
|
|
|
|
connect(ui->radioButtonStandartTable, &QRadioButton::clicked, this, &DialogArc::StandartTable);
|
|
|
|
connect(ui->radioButtonIncrements, &QRadioButton::clicked, this, &DialogArc::Increments);
|
|
|
|
connect(ui->radioButtonLengthLine, &QRadioButton::clicked, this, &DialogArc::LengthLines);
|
2013-10-09 20:11:25 +02:00
|
|
|
connect(ui->radioButtonLineAngles, &QRadioButton::clicked, this, &DialogArc::LineAngles);
|
2013-10-13 17:31:42 +02:00
|
|
|
connect(ui->radioButtonLengthArc, &QRadioButton::clicked, this, &DialogArc::LengthArcs);
|
|
|
|
connect(ui->radioButtonLengthSpline, &QRadioButton::clicked, this, &DialogArc::LengthCurves);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
|
|
|
connect(ui->toolButtonEqualRadius, &QPushButton::clicked, this, &DialogArc::EvalRadius);
|
|
|
|
connect(ui->toolButtonEqualF1, &QPushButton::clicked, this, &DialogArc::EvalF1);
|
|
|
|
connect(ui->toolButtonEqualF2, &QPushButton::clicked, this, &DialogArc::EvalF2);
|
|
|
|
|
|
|
|
connect(ui->lineEditRadius, &QLineEdit::textChanged, this, &DialogArc::RadiusChanged);
|
|
|
|
connect(ui->lineEditF1, &QLineEdit::textChanged, this, &DialogArc::F1Changed);
|
|
|
|
connect(ui->lineEditF2, &QLineEdit::textChanged, this, &DialogArc::F2Changed);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogArc::~DialogArc()
|
|
|
|
{
|
2013-10-26 19:55:06 +02:00
|
|
|
delete ui;
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::SetCenter(const qint64 &value)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
center = value;
|
|
|
|
ChangeCurrentData(ui->comboBoxBasePoint, center);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::SetF2(const QString &value)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
f2 = value;
|
|
|
|
ui->lineEditF2->setText(f2);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::SetF1(const QString &value)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
f1 = value;
|
|
|
|
ui->lineEditF1->setText(f1);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::SetRadius(const QString &value)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
radius = value;
|
|
|
|
ui->lineEditRadius->setText(radius);
|
|
|
|
}
|
|
|
|
|
2013-11-06 20:46:07 +01:00
|
|
|
void DialogArc::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-09-10 14:29:06 +02:00
|
|
|
idDetail = id;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (mode == Draw::Modeling)
|
|
|
|
{
|
|
|
|
if (CheckObject(id)==false)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (type == Scene::Point)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VPointF point;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (mode == Draw::Calculation)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
point = data->GetPoint(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
point = data->GetModelingPoint(id);
|
|
|
|
}
|
2013-08-06 09:56:09 +02:00
|
|
|
ChangeCurrentText(ui->comboBoxBasePoint, point.name());
|
2013-10-07 13:11:56 +02:00
|
|
|
emit ToolTip("");
|
2013-08-06 09:56:09 +02:00
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::DialogAccepted()
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
radius = ui->lineEditRadius->text();
|
|
|
|
f1 = ui->lineEditF1->text();
|
|
|
|
f2 = ui->lineEditF2->text();
|
2013-08-13 18:48:36 +02:00
|
|
|
center = getCurrentPointId(ui->comboBoxBasePoint);
|
2013-08-06 09:56:09 +02:00
|
|
|
emit DialogClosed(QDialog::Accepted);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::ValChenged(int row)
|
|
|
|
{
|
|
|
|
if (ui->listWidget->count() == 0)
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
QListWidgetItem *item = ui->listWidget->item( row );
|
2013-11-04 21:35:15 +01:00
|
|
|
if (ui->radioButtonLineAngles->isChecked())
|
|
|
|
{
|
2013-10-13 17:31:42 +02:00
|
|
|
QString desc = QString("%1(%2) - %3").arg(item->text()).arg(data->GetLineAngle(item->text()))
|
2013-10-04 18:51:03 +02:00
|
|
|
.arg(tr("Value angle of line."));
|
2013-08-06 09:56:09 +02:00
|
|
|
ui->labelDescription->setText(desc);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
DialogTool::ValChenged(row);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::PutRadius()
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
PutValHere(ui->lineEditRadius, ui->listWidget);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::PutF1()
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
PutValHere(ui->lineEditF1, ui->listWidget);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::PutF2()
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
PutValHere(ui->lineEditF2, ui->listWidget);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::LineAngles()
|
|
|
|
{
|
2013-10-09 20:11:25 +02:00
|
|
|
ShowLineAngles();
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::RadiusChanged()
|
|
|
|
{
|
2013-10-09 20:11:25 +02:00
|
|
|
labelEditFormula = ui->labelEditRadius;
|
2013-08-06 09:56:09 +02:00
|
|
|
ValFormulaChanged(flagRadius, ui->lineEditRadius, timerRadius);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::F1Changed()
|
|
|
|
{
|
2013-10-09 20:11:25 +02:00
|
|
|
labelEditFormula = ui->labelEditF1;
|
2013-08-06 09:56:09 +02:00
|
|
|
ValFormulaChanged(flagF1, ui->lineEditF1, timerF1);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::F2Changed()
|
|
|
|
{
|
2013-10-09 20:11:25 +02:00
|
|
|
labelEditFormula = ui->labelEditF2;
|
2013-08-06 09:56:09 +02:00
|
|
|
ValFormulaChanged(flagF2, ui->lineEditF2, timerF2);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::CheckState()
|
|
|
|
{
|
2013-10-14 16:44:33 +02:00
|
|
|
Q_ASSERT(bOk != 0);
|
2013-09-12 15:25:24 +02:00
|
|
|
bOk->setEnabled(flagRadius && flagF1 && flagF2);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::EvalRadius()
|
|
|
|
{
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditFormula = ui->labelEditRadius;
|
2013-08-06 09:56:09 +02:00
|
|
|
Eval(ui->lineEditRadius, flagRadius, timerRadius, ui->labelResultRadius);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::EvalF1()
|
|
|
|
{
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditFormula = ui->labelEditF1;
|
2013-08-06 09:56:09 +02:00
|
|
|
Eval(ui->lineEditF1, flagF1, timerF1, ui->labelResultF1);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::EvalF2()
|
|
|
|
{
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditFormula = ui->labelEditF2;
|
2013-08-06 09:56:09 +02:00
|
|
|
Eval(ui->lineEditF2, flagF2, timerF2, ui->labelResultF2);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::ShowLineAngles()
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
disconnect(ui->listWidget, &QListWidget::currentRowChanged, this, &DialogArc::ValChenged);
|
|
|
|
ui->listWidget->clear();
|
|
|
|
connect(ui->listWidget, &QListWidget::currentRowChanged, this, &DialogArc::ValChenged);
|
2013-10-09 20:11:25 +02:00
|
|
|
const QHash<QString, qreal> *lineAnglesTable = data->DataLineAngles();
|
2013-10-14 16:44:33 +02:00
|
|
|
Q_ASSERT(lineAnglesTable != 0);
|
2013-10-09 20:11:25 +02:00
|
|
|
QHashIterator<QString, qreal> i(*lineAnglesTable);
|
2013-11-04 21:35:15 +01:00
|
|
|
while (i.hasNext())
|
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
i.next();
|
|
|
|
QListWidgetItem *item = new QListWidgetItem(i.key());
|
|
|
|
|
|
|
|
item->setFont(QFont("Times", 12, QFont::Bold));
|
|
|
|
ui->listWidget->addItem(item);
|
|
|
|
}
|
|
|
|
ui->listWidget->setCurrentRow (0);
|
|
|
|
}
|