406 lines
14 KiB
C++
406 lines
14 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialognormal.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date November 15, 2013
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
** <https://gitlab.com/smart-pattern/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "dialognormal.h"
|
|
|
|
#include <QColor>
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QDoubleSpinBox>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QPlainTextEdit>
|
|
#include <QPointer>
|
|
#include <QPushButton>
|
|
#include <QTimer>
|
|
#include <QToolButton>
|
|
|
|
#include "../vpatterndb/vtranslatevars.h"
|
|
#include "../../tools/vabstracttool.h"
|
|
#include "../../visualization/line/vistoolnormal.h"
|
|
#include "../../visualization/visualization.h"
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
#include "../ifc/xml/vdomdocument.h"
|
|
#include "../support/dialogeditwrongformula.h"
|
|
#include "../vmisc/vabstractapplication.h"
|
|
#include "../vmisc/vcommonsettings.h"
|
|
#include "ui_dialognormal.h"
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogNormal create dialog
|
|
* @param data container with data
|
|
* @param parent parent widget
|
|
*/
|
|
DialogNormal::DialogNormal(const VContainer *data, quint32 toolId, QWidget *parent)
|
|
: DialogTool(data, toolId, parent),
|
|
ui(new Ui::DialogNormal),
|
|
formula(),
|
|
angle(0),
|
|
formulaBaseHeight(0),
|
|
pointName(),
|
|
timerFormula(new QTimer(this)),
|
|
flagFormula(false),
|
|
flagName(true),
|
|
flagError(true)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
timerFormula->setSingleShot(true);
|
|
connect(timerFormula, &QTimer::timeout, this, &DialogNormal::EvalFormula);
|
|
|
|
ui->lineEditNamePoint->setClearButtonEnabled(true);
|
|
|
|
ui->lineEditNamePoint->setText(qApp->getCurrentDocument()->GenerateLabel(LabelType::NewLabel));
|
|
this->formulaBaseHeight = ui->plainTextEditFormula->height();
|
|
ui->plainTextEditFormula->installEventFilter(this);
|
|
|
|
InitOkCancelApply(ui);
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
FillComboBoxTypeLine(ui->comboBoxLineType, LineStylesPics());
|
|
FillComboBoxLineColors(ui->comboBoxLineColor);
|
|
|
|
connect(ui->toolButtonArrowDown, &QPushButton::clicked, this, [this](){ui->doubleSpinBoxAngle->setValue(270);});
|
|
connect(ui->toolButtonArrowUp, &QPushButton::clicked, this, [this](){ui->doubleSpinBoxAngle->setValue(90);});
|
|
connect(ui->toolButtonArrowLeft, &QPushButton::clicked, this, [this](){ui->doubleSpinBoxAngle->setValue(180);});
|
|
connect(ui->toolButtonArrowRight, &QPushButton::clicked, this, [this](){ui->doubleSpinBoxAngle->setValue(0);});
|
|
connect(ui->toolButtonArrowLeftUp, &QPushButton::clicked, this, [this](){ui->doubleSpinBoxAngle->setValue(135);});
|
|
connect(ui->toolButtonArrowLeftDown, &QPushButton::clicked, this, [this](){ui->doubleSpinBoxAngle->setValue(225);});
|
|
connect(ui->toolButtonArrowRightUp, &QPushButton::clicked, this, [this](){ui->doubleSpinBoxAngle->setValue(45);});
|
|
connect(ui->toolButtonArrowRightDown, &QPushButton::clicked, this,
|
|
[this](){ui->doubleSpinBoxAngle->setValue(315);});
|
|
|
|
connect(ui->toolButtonExprLength, &QPushButton::clicked, this, &DialogNormal::FXLength);
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, [this]()
|
|
{
|
|
CheckPointLabel(this, ui->lineEditNamePoint, ui->labelEditNamePoint, pointName, this->data, flagName);
|
|
CheckState();
|
|
});
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, [this]()
|
|
{
|
|
timerFormula->start(formulaTimerTimeout);
|
|
});
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogNormal::DeployFormulaTextEdit);
|
|
connect(ui->comboBoxFirstPoint, &QComboBox::currentTextChanged,
|
|
this, &DialogNormal::PointNameChanged);
|
|
connect(ui->comboBoxSecondPoint, &QComboBox::currentTextChanged,
|
|
this, &DialogNormal::PointNameChanged);
|
|
|
|
vis = new VisToolNormal(data);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::PointNameChanged()
|
|
{
|
|
QColor color;
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) == getCurrentObjectId(ui->comboBoxSecondPoint))
|
|
{
|
|
flagError = false;
|
|
color = errorColor;
|
|
}
|
|
else
|
|
{
|
|
flagError = true;
|
|
color = OkColor(this);
|
|
}
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
ChangeColor(ui->labelSecondPoint, color);
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::FXLength()
|
|
{
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
dialog->setWindowTitle(tr("Edit length"));
|
|
dialog->SetFormula(GetFormula());
|
|
dialog->setPostfix(UnitsToStr(qApp->patternUnits(), true));
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
{
|
|
SetFormula(dialog->GetFormula());
|
|
}
|
|
delete dialog;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::EvalFormula()
|
|
{
|
|
FormulaData formulaData;
|
|
formulaData.formula = ui->plainTextEditFormula->toPlainText();
|
|
formulaData.variables = data->DataVariables();
|
|
formulaData.labelEditFormula = ui->labelEditFormula;
|
|
formulaData.labelResult = ui->labelResultCalculation;
|
|
formulaData.postfix = UnitsToStr(qApp->patternUnits(), true);
|
|
|
|
Eval(formulaData, flagFormula);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::ShowVisualization()
|
|
{
|
|
AddVisualization<VisToolNormal>();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::DeployFormulaTextEdit()
|
|
{
|
|
DeployFormula(this, ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogNormal::~DialogNormal()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogNormal::GetPointName() const
|
|
{
|
|
return pointName;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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 DialogNormal::ChosenObject(quint32 id, const SceneObject &type)
|
|
{
|
|
if (prepare == false)// After first choose we ignore all objects
|
|
{
|
|
if (type == SceneObject::Point)
|
|
{
|
|
VisToolNormal *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
|
|
switch (number)
|
|
{
|
|
case 0:
|
|
if (SetObject(id, ui->comboBoxFirstPoint, tr("Select second point of line")))
|
|
{
|
|
number++;
|
|
line->VisualMode(id);
|
|
}
|
|
break;
|
|
case 1:
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) != id)
|
|
{
|
|
if (SetObject(id, ui->comboBoxSecondPoint, QString()))
|
|
{
|
|
line->setObject2Id(id);
|
|
line->RefreshGeometry();
|
|
prepare = true;
|
|
this->setModal(true);
|
|
this->show();
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::SaveData()
|
|
{
|
|
pointName = ui->lineEditNamePoint->text();
|
|
formula = ui->plainTextEditFormula->toPlainText();
|
|
angle = ui->doubleSpinBoxAngle->value();
|
|
|
|
VisToolNormal *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
|
|
line->setObject1Id(GetFirstPointId());
|
|
line->setObject2Id(GetSecondPointId());
|
|
line->setLength(formula);
|
|
line->SetAngle(angle);
|
|
line->setLineStyle(LineStyleToPenStyle(GetTypeLine()));
|
|
line->RefreshGeometry();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::closeEvent(QCloseEvent *event)
|
|
{
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
DialogTool::closeEvent(event);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetSecondPointId set id of second point
|
|
* @param value id
|
|
*/
|
|
void DialogNormal::SetSecondPointId(quint32 value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxSecondPoint, value);
|
|
|
|
VisToolNormal *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->setObject2Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogNormal::GetLineColor() const
|
|
{
|
|
return GetComboBoxCurrentData(ui->comboBoxLineColor, ColorBlack);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::SetLineColor(const QString &value)
|
|
{
|
|
ChangeCurrentData(ui->comboBoxLineColor, value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetFirstPointId set id of first point
|
|
* @param value id
|
|
*/
|
|
void DialogNormal::SetFirstPointId(quint32 value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxFirstPoint, value);
|
|
|
|
VisToolNormal *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->setObject1Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetAngle set aditional angle of normal
|
|
* @param value angle in degree
|
|
*/
|
|
void DialogNormal::SetAngle(qreal value)
|
|
{
|
|
angle = value;
|
|
ui->doubleSpinBoxAngle->setValue(angle);
|
|
|
|
VisToolNormal *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->SetAngle(angle);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetFormula set string of formula
|
|
* @param value formula
|
|
*/
|
|
void DialogNormal::SetFormula(const QString &value)
|
|
{
|
|
formula = qApp->TrVars()->FormulaToUser(value, qApp->Settings()->GetOsSeparator());
|
|
// increase height if needed.
|
|
if (formula.length() > 80)
|
|
{
|
|
this->DeployFormulaTextEdit();
|
|
}
|
|
ui->plainTextEditFormula->setPlainText(formula);
|
|
|
|
VisToolNormal *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->setLength(formula);
|
|
|
|
MoveCursorToEnd(ui->plainTextEditFormula);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetTypeLine set type of line
|
|
* @param value type
|
|
*/
|
|
void DialogNormal::SetTypeLine(const QString &value)
|
|
{
|
|
ChangeCurrentData(ui->comboBoxLineType, value);
|
|
vis->setLineStyle(LineStyleToPenStyle(value));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetPointName set name of point
|
|
* @param value name
|
|
*/
|
|
void DialogNormal::SetPointName(const QString &value)
|
|
{
|
|
pointName = value;
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetTypeLine return type of line
|
|
* @return type
|
|
*/
|
|
QString DialogNormal::GetTypeLine() const
|
|
{
|
|
return GetComboBoxCurrentData(ui->comboBoxLineType, TypeLineLine);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetFormula return string of formula
|
|
* @return formula
|
|
*/
|
|
QString DialogNormal::GetFormula() const
|
|
{
|
|
return qApp->TrVars()->TryFormulaFromUser(formula, qApp->Settings()->GetOsSeparator());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetAngle return aditional angle of normal
|
|
* @return angle in degree
|
|
*/
|
|
qreal DialogNormal::GetAngle() const
|
|
{
|
|
return angle;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetFirstPointId return id of first point
|
|
* @return id
|
|
*/
|
|
quint32 DialogNormal::GetFirstPointId() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxFirstPoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetSecondPointId return id of second point
|
|
* @return id
|
|
*/
|
|
quint32 DialogNormal::GetSecondPointId() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxSecondPoint);
|
|
}
|