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
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <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-21 13:05:26 +01:00
|
|
|
#include <QPushButton>
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QTimer>
|
2014-06-08 20:10:57 +02:00
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../../../vgeometry/vpointf.h"
|
|
|
|
#include "../../../vpatterndb/vcontainer.h"
|
|
|
|
#include "../../../vpatterndb/vtranslatevars.h"
|
|
|
|
#include "../../../ifc/xml/vdomdocument.h"
|
2014-08-15 15:54:24 +02:00
|
|
|
#include "../../visualization/vistoolarc.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../support/dialogeditwrongformula.h"
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief DialogArc create dialog
|
|
|
|
* @param data container with data
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2014-07-29 14:19:11 +02:00
|
|
|
DialogArc::DialogArc(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
|
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogArc), flagRadius(false), flagF1(false), flagF2(false),
|
2015-02-03 09:17:59 +01:00
|
|
|
timerRadius(nullptr), timerF1(nullptr), timerF2(nullptr), radius(QString()), f1(QString()), f2(QString()),
|
2015-05-21 21:24:31 +02:00
|
|
|
formulaBaseHeight(0), formulaBaseHeightF1(0), formulaBaseHeightF2(0), angleF1(INT_MIN), angleF2(INT_MIN)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-06 09:56:09 +02:00
|
|
|
ui->setupUi(this);
|
|
|
|
|
2014-06-19 11:29:56 +02:00
|
|
|
plainTextEditFormula = ui->plainTextEditFormula;
|
2014-06-19 14:01:38 +02:00
|
|
|
this->formulaBaseHeight = ui->plainTextEditFormula->height();
|
|
|
|
this->formulaBaseHeightF1 = ui->plainTextEditF1->height();
|
|
|
|
this->formulaBaseHeightF2 = ui->plainTextEditF2->height();
|
2014-06-19 11:29:56 +02:00
|
|
|
|
2014-10-29 19:00:38 +01:00
|
|
|
ui->plainTextEditFormula->installEventFilter(this);
|
|
|
|
ui->plainTextEditF1->installEventFilter(this);
|
|
|
|
ui->plainTextEditF2->installEventFilter(this);
|
|
|
|
|
2013-08-06 09:56:09 +02:00
|
|
|
timerRadius = new QTimer(this);
|
|
|
|
connect(timerRadius, &QTimer::timeout, this, &DialogArc::EvalRadius);
|
|
|
|
|
|
|
|
timerF1 = new QTimer(this);
|
2014-11-21 15:57:47 +01:00
|
|
|
connect(timerF1, &QTimer::timeout, this, &DialogArc::EvalF);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
|
|
|
timerF2 = new QTimer(this);
|
2014-11-21 15:57:47 +01:00
|
|
|
connect(timerF2, &QTimer::timeout, this, &DialogArc::EvalF);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
2014-06-09 22:38:10 +02:00
|
|
|
InitOkCancelApply(ui);
|
|
|
|
|
2013-08-06 09:56:09 +02:00
|
|
|
FillComboBoxPoints(ui->comboBoxBasePoint);
|
2015-02-02 12:10:02 +01:00
|
|
|
FillComboBoxLineColors(ui->comboBoxColor);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
|
|
|
CheckState();
|
|
|
|
|
2015-04-29 19:32:27 +02:00
|
|
|
connect(ui->toolButtonExprRadius, &QPushButton::clicked, this, &DialogArc::FXRadius);
|
|
|
|
connect(ui->toolButtonExprF1, &QPushButton::clicked, this, &DialogArc::FXF1);
|
|
|
|
connect(ui->toolButtonExprF2, &QPushButton::clicked, this, &DialogArc::FXF2);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
2014-06-09 22:38:10 +02:00
|
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogArc::RadiusChanged);
|
2014-06-19 11:29:56 +02:00
|
|
|
connect(ui->plainTextEditF1, &QPlainTextEdit::textChanged, this, &DialogArc::F1Changed);
|
|
|
|
connect(ui->plainTextEditF2, &QPlainTextEdit::textChanged, this, &DialogArc::F2Changed);
|
2014-06-09 22:38:10 +02:00
|
|
|
|
2014-06-19 11:29:56 +02:00
|
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogArc::DeployFormulaTextEdit);
|
|
|
|
connect(ui->pushButtonGrowLengthF1, &QPushButton::clicked, this, &DialogArc::DeployF1TextEdit);
|
|
|
|
connect(ui->pushButtonGrowLengthF2, &QPushButton::clicked, this, &DialogArc::DeployF2TextEdit);
|
2014-08-15 15:54:24 +02:00
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
vis = new VisToolArc(data);
|
2015-06-25 09:05:19 +02:00
|
|
|
|
|
|
|
FixateSize();
|
2014-06-09 22:38:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::DeployFormulaTextEdit()
|
|
|
|
{
|
2014-06-19 11:29:56 +02:00
|
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::DeployF1TextEdit()
|
|
|
|
{
|
|
|
|
DeployFormula(ui->plainTextEditF1, ui->pushButtonGrowLengthF1, formulaBaseHeightF1);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::DeployF2TextEdit()
|
|
|
|
{
|
|
|
|
DeployFormula(ui->plainTextEditF2, ui->pushButtonGrowLengthF2, formulaBaseHeightF2);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogArc::~DialogArc()
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
DeleteVisualization<VisToolArc>();
|
2013-10-26 19:55:06 +02:00
|
|
|
delete ui;
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief SetCenter set id of center point
|
|
|
|
* @param value id
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogArc::SetCenter(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
ChangeCurrentData(ui->comboBoxBasePoint, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
vis->setPoint1Id(value);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief SetF2 set formula second angle of arc
|
|
|
|
* @param value formula
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::SetF2(const QString &value)
|
|
|
|
{
|
2015-06-11 12:15:57 +02:00
|
|
|
f2 = qApp->TrVars()->FormulaToUser(value);
|
2014-06-19 11:29:56 +02:00
|
|
|
// increase height if needed.
|
|
|
|
if (f2.length() > 80)
|
|
|
|
{
|
|
|
|
this->DeployF2TextEdit();
|
|
|
|
}
|
|
|
|
ui->plainTextEditF2->setPlainText(f2);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolArc *path = qobject_cast<VisToolArc *>(vis);
|
|
|
|
SCASSERT(path != nullptr);
|
2014-08-15 15:54:24 +02:00
|
|
|
path->setF2(f2);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
2014-10-29 14:40:56 +01:00
|
|
|
MoveCursorToEnd(ui->plainTextEditF2);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2015-02-03 10:27:33 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString DialogArc::GetColor() const
|
|
|
|
{
|
2015-02-03 11:17:04 +01:00
|
|
|
return GetComboBoxCurrentData(ui->comboBoxColor);
|
2015-02-03 10:27:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::SetColor(const QString &value)
|
|
|
|
{
|
|
|
|
ChangeCurrentData(ui->comboBoxColor, value);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief SetF1 set formula first angle of arc
|
|
|
|
* @param value formula
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::SetF1(const QString &value)
|
|
|
|
{
|
2015-06-11 12:15:57 +02:00
|
|
|
f1 = qApp->TrVars()->FormulaToUser(value);
|
2014-06-19 11:29:56 +02:00
|
|
|
// increase height if needed.
|
|
|
|
if (f1.length() > 80)
|
|
|
|
{
|
|
|
|
this->DeployF1TextEdit();
|
|
|
|
}
|
|
|
|
ui->plainTextEditF1->setPlainText(f1);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolArc *path = qobject_cast<VisToolArc *>(vis);
|
|
|
|
SCASSERT(path != nullptr);
|
2014-08-15 15:54:24 +02:00
|
|
|
path->setF1(f1);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
2014-10-29 14:40:56 +01:00
|
|
|
MoveCursorToEnd(ui->plainTextEditF1);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief SetRadius set formula of radius
|
|
|
|
* @param value formula
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::SetRadius(const QString &value)
|
|
|
|
{
|
2015-06-11 12:15:57 +02:00
|
|
|
radius = qApp->TrVars()->FormulaToUser(value);
|
2014-06-09 22:38:10 +02:00
|
|
|
// increase height if needed.
|
|
|
|
if (radius.length() > 80)
|
|
|
|
{
|
|
|
|
this->DeployFormulaTextEdit();
|
|
|
|
}
|
|
|
|
ui->plainTextEditFormula->setPlainText(radius);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolArc *path = qobject_cast<VisToolArc *>(vis);
|
|
|
|
SCASSERT(path != nullptr);
|
2014-08-15 15:54:24 +02:00
|
|
|
path->setRadius(radius);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
2014-10-29 14:40:56 +01:00
|
|
|
MoveCursorToEnd(ui->plainTextEditFormula);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2014-07-15 16:42:41 +02:00
|
|
|
void DialogArc::ChosenObject(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
if (prepare == false)// After first choose we ignore all objects
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
if (type == SceneObject::Point)
|
|
|
|
{
|
|
|
|
if (SetObject(id, ui->comboBoxBasePoint, ""))
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
vis->VisualMode(id);
|
2014-08-17 20:49:29 +02:00
|
|
|
prepare = true;
|
|
|
|
this->setModal(true);
|
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
}
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-15 15:54:24 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::ShowVisualization()
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
AddVisualization<VisToolArc>();
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|
|
|
|
|
2014-06-09 22:38:10 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::SaveData()
|
|
|
|
{
|
|
|
|
radius = ui->plainTextEditFormula->toPlainText();
|
2014-06-16 19:18:36 +02:00
|
|
|
radius.replace("\n", " ");
|
2014-06-19 11:29:56 +02:00
|
|
|
f1 = ui->plainTextEditF1->toPlainText();
|
|
|
|
f1.replace("\n", " ");
|
|
|
|
f2 = ui->plainTextEditF2->toPlainText();
|
|
|
|
f2.replace("\n", " ");
|
2014-08-15 15:54:24 +02:00
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
VisToolArc *path = qobject_cast<VisToolArc *>(vis);
|
|
|
|
SCASSERT(path != nullptr);
|
|
|
|
|
2015-02-03 09:17:59 +01:00
|
|
|
path->setPoint1Id(GetCenter());
|
2014-08-15 15:54:24 +02:00
|
|
|
path->setRadius(radius);
|
|
|
|
path->setF1(f1);
|
|
|
|
path->setF2(f2);
|
|
|
|
path->RefreshGeometry();
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-11-22 19:37:59 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::closeEvent(QCloseEvent *event)
|
|
|
|
{
|
|
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
|
|
ui->plainTextEditF1->blockSignals(true);
|
|
|
|
ui->plainTextEditF2->blockSignals(true);
|
|
|
|
DialogTool::closeEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief RadiusChanged after change formula of radius calculate value and show result
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::RadiusChanged()
|
|
|
|
{
|
2013-10-09 20:11:25 +02:00
|
|
|
labelEditFormula = ui->labelEditRadius;
|
2014-09-20 19:10:05 +02:00
|
|
|
labelResultCalculation = ui->labelResultRadius;
|
2014-06-09 22:38:10 +02:00
|
|
|
ValFormulaChanged(flagRadius, ui->plainTextEditFormula, timerRadius);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief F1Changed after change formula of first angle calculate value and show result
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::F1Changed()
|
|
|
|
{
|
2013-10-09 20:11:25 +02:00
|
|
|
labelEditFormula = ui->labelEditF1;
|
2014-09-20 19:10:05 +02:00
|
|
|
labelResultCalculation = ui->labelResultF1;
|
2014-06-19 11:29:56 +02:00
|
|
|
ValFormulaChanged(flagF1, ui->plainTextEditF1, timerF1);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief F2Changed after change formula of second angle calculate value and show result
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::F2Changed()
|
|
|
|
{
|
2013-10-09 20:11:25 +02:00
|
|
|
labelEditFormula = ui->labelEditF2;
|
2014-09-20 19:10:05 +02:00
|
|
|
labelResultCalculation = ui->labelResultF2;
|
2014-06-19 11:29:56 +02:00
|
|
|
ValFormulaChanged(flagF2, ui->plainTextEditF2, timerF2);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2015-04-29 19:32:27 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::FXRadius()
|
|
|
|
{
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
|
|
dialog->setWindowTitle(tr("Edit radius"));
|
|
|
|
dialog->SetFormula(GetRadius());
|
2015-07-03 17:54:25 +02:00
|
|
|
dialog->setPostfix(VDomDocument::UnitsToStr(qApp->patternUnit(), true));
|
2015-04-29 19:32:27 +02:00
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
SetRadius(dialog->GetFormula());
|
|
|
|
}
|
|
|
|
delete dialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::FXF1()
|
|
|
|
{
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
|
|
dialog->setWindowTitle(tr("Edit first angle"));
|
|
|
|
dialog->SetFormula(GetF1());
|
2015-07-03 17:54:25 +02:00
|
|
|
dialog->setPostfix(degreeSymbol);
|
2015-04-29 19:32:27 +02:00
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
SetF1(dialog->GetFormula());
|
|
|
|
}
|
|
|
|
delete dialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::FXF2()
|
|
|
|
{
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
|
|
dialog->setWindowTitle(tr("Edit second angle"));
|
|
|
|
dialog->SetFormula(GetF2());
|
2015-07-03 17:54:25 +02:00
|
|
|
dialog->setPostfix(degreeSymbol);
|
2015-04-29 19:32:27 +02:00
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
SetF2(dialog->GetFormula());
|
|
|
|
}
|
|
|
|
delete dialog;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief CheckState if all is right enable button ok
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::CheckState()
|
|
|
|
{
|
2014-05-30 21:56:05 +02:00
|
|
|
SCASSERT(bOk != nullptr);
|
2013-09-12 15:25:24 +02:00
|
|
|
bOk->setEnabled(flagRadius && flagF1 && flagF2);
|
2014-06-09 22:38:10 +02:00
|
|
|
SCASSERT(bApply != nullptr);
|
|
|
|
bApply->setEnabled(flagRadius && flagF1 && flagF2);
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief EvalRadius calculate value of radius
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogArc::EvalRadius()
|
|
|
|
{
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditFormula = ui->labelEditRadius;
|
2014-08-11 16:41:17 +02:00
|
|
|
const QString postfix = VDomDocument::UnitsToStr(qApp->patternUnit(), true);
|
2014-11-22 11:57:05 +01:00
|
|
|
const qreal radius = Eval(ui->plainTextEditFormula->toPlainText(), flagRadius, ui->labelResultRadius, postfix);
|
|
|
|
|
|
|
|
if (radius < 0)
|
|
|
|
{
|
|
|
|
flagRadius = false;
|
|
|
|
ChangeColor(labelEditFormula, Qt::red);
|
|
|
|
ui->labelResultRadius->setText(tr("Error"));
|
|
|
|
ui->labelResultRadius->setToolTip(tr("Radius can't be negative"));
|
|
|
|
|
|
|
|
DialogArc::CheckState();
|
|
|
|
}
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
2014-11-21 15:57:47 +01:00
|
|
|
* @brief EvalF1 calculate value of angle
|
2014-06-02 16:28:02 +02:00
|
|
|
*/
|
2014-11-21 15:57:47 +01:00
|
|
|
void DialogArc::EvalF()
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditFormula = ui->labelEditF1;
|
2014-11-21 15:57:47 +01:00
|
|
|
angleF1 = Eval(ui->plainTextEditF1->toPlainText(), flagF1, ui->labelResultF1, degreeSymbol, false);
|
2013-08-06 09:56:09 +02:00
|
|
|
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditFormula = ui->labelEditF2;
|
2014-11-21 15:57:47 +01:00
|
|
|
angleF2 = Eval(ui->plainTextEditF2->toPlainText(), flagF2, ui->labelResultF2, degreeSymbol, false);
|
|
|
|
|
|
|
|
CheckAngles();
|
2013-08-06 09:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-11-21 15:57:47 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogArc::CheckAngles()
|
|
|
|
{
|
2015-03-16 13:23:02 +01:00
|
|
|
if (static_cast<int>(angleF1) == INT_MIN || static_cast<int>(angleF2) == INT_MIN)
|
2014-11-22 11:57:05 +01:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-11-21 15:57:47 +01:00
|
|
|
if (qFuzzyCompare(angleF1 + 1, angleF2 + 1))
|
|
|
|
{
|
|
|
|
flagF1 = false;
|
|
|
|
ChangeColor(ui->labelEditF1, Qt::red);
|
2014-11-22 11:57:05 +01:00
|
|
|
ui->labelResultF1->setText(tr("Error"));
|
2014-11-21 15:57:47 +01:00
|
|
|
ui->labelResultF1->setToolTip(tr("Angles equal"));
|
|
|
|
|
|
|
|
flagF2 = false;
|
|
|
|
ChangeColor(ui->labelEditF2, Qt::red);
|
2014-11-22 11:57:05 +01:00
|
|
|
ui->labelResultF2->setText(tr("Error"));
|
2014-11-21 15:57:47 +01:00
|
|
|
ui->labelResultF2->setToolTip(tr("Angles equal"));
|
|
|
|
}
|
|
|
|
|
|
|
|
DialogArc::CheckState();
|
|
|
|
}
|
2015-02-02 16:11:48 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetCenter return id of center point
|
|
|
|
* @return id id
|
|
|
|
*/
|
|
|
|
quint32 DialogArc::GetCenter() const
|
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
return getCurrentObjectId(ui->comboBoxBasePoint);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetRadius return formula of radius
|
|
|
|
* @return formula
|
|
|
|
*/
|
|
|
|
QString DialogArc::GetRadius() const
|
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
return qApp->TrVars()->FormulaFromUser(radius, qApp->Settings()->GetOsSeparator());
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetF1 return formula first angle of arc
|
|
|
|
* @return formula
|
|
|
|
*/
|
|
|
|
QString DialogArc::GetF1() const
|
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
return qApp->TrVars()->FormulaFromUser(f1, qApp->Settings()->GetOsSeparator());
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetF2 return formula second angle of arc
|
|
|
|
* @return formula
|
|
|
|
*/
|
|
|
|
QString DialogArc::GetF2() const
|
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
return qApp->TrVars()->FormulaFromUser(f2, qApp->Settings()->GetOsSeparator());
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|