511 lines
18 KiB
C++
511 lines
18 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 <QPointF>
|
|
#include <QPointer>
|
|
#include <QPushButton>
|
|
#include <QTimer>
|
|
#include <QToolButton>
|
|
|
|
#include "../../visualization/line/vistoolnormal.h"
|
|
#include "../../visualization/visualization.h"
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
#include "../support/dialogeditwrongformula.h"
|
|
#include "../vgeometry/vpointf.h"
|
|
#include "../vmisc/theme/vtheme.h"
|
|
#include "../vmisc/vabstractapplication.h"
|
|
#include "../vmisc/vcommonsettings.h"
|
|
#include "../vpatterndb/vcontainer.h"
|
|
#include "../vpatterndb/vtranslatevars.h"
|
|
#include "../vwidgets/vabstractmainwindow.h"
|
|
#include "ui_dialognormal.h"
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogNormal create dialog
|
|
* @param data container with data
|
|
* @param parent parent widget
|
|
*/
|
|
DialogNormal::DialogNormal(const VContainer *data, VAbstractPattern *doc, quint32 toolId, QWidget *parent)
|
|
: DialogTool(data, doc, toolId, parent),
|
|
ui(new Ui::DialogNormal),
|
|
m_timerFormula(new QTimer(this))
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
InitIcons();
|
|
|
|
m_timerFormula->setSingleShot(true);
|
|
connect(m_timerFormula, &QTimer::timeout, this, &DialogNormal::EvalFormula);
|
|
|
|
ui->lineEditNamePoint->setClearButtonEnabled(true);
|
|
|
|
ui->lineEditNamePoint->setText(
|
|
VAbstractValApplication::VApp()->getCurrentDocument()->GenerateLabel(LabelType::NewLabel));
|
|
this->m_formulaBaseHeight = ui->plainTextEditFormula->height();
|
|
ui->plainTextEditFormula->installEventFilter(this);
|
|
|
|
InitOkCancelApply(ui);
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
FillComboBoxTypeLine(ui->comboBoxLineType, LineStylesPics(ui->comboBoxLineType->palette().color(QPalette::Base),
|
|
ui->comboBoxLineType->palette().color(QPalette::Text)));
|
|
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, m_pointName, this->data,
|
|
m_flagName);
|
|
CheckState();
|
|
});
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this,
|
|
[this]() { m_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);
|
|
|
|
ui->tabWidget->setCurrentIndex(0);
|
|
SetTabStopDistance(ui->plainTextEditToolNotes);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::PointNameChanged()
|
|
{
|
|
QColor color;
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) == getCurrentObjectId(ui->comboBoxSecondPoint))
|
|
{
|
|
m_flagError = false;
|
|
color = errorColor;
|
|
}
|
|
else
|
|
{
|
|
m_flagError = true;
|
|
color = OkColor(this);
|
|
}
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
ChangeColor(ui->labelSecondPoint, color);
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::FXLength()
|
|
{
|
|
auto *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
dialog->setWindowTitle(tr("Edit length"));
|
|
dialog->SetFormula(GetFormula());
|
|
dialog->setPostfix(UnitsToStr(VAbstractValApplication::VApp()->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(VAbstractValApplication::VApp()->patternUnits(), true);
|
|
|
|
Eval(formulaData, m_flagFormula);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::ShowVisualization()
|
|
{
|
|
AddVisualization<VisToolNormal>();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::DeployFormulaTextEdit()
|
|
{
|
|
DeployFormula(this, ui->plainTextEditFormula, ui->pushButtonGrowLength, m_formulaBaseHeight);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogNormal::~DialogNormal()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
auto DialogNormal::GetPointName() const -> QString
|
|
{
|
|
return m_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) // After first choose we ignore all objects
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (type == SceneObject::Point)
|
|
{
|
|
auto *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
|
|
switch (m_number)
|
|
{
|
|
case 0:
|
|
if (SetObject(id, ui->comboBoxFirstPoint, tr("Select second point of line")))
|
|
{
|
|
m_number++;
|
|
line->VisualMode(id);
|
|
}
|
|
break;
|
|
case 1:
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) != id)
|
|
{
|
|
if (SetObject(id, ui->comboBoxSecondPoint, QString()))
|
|
{
|
|
line->SetPoint2Id(id);
|
|
line->RefreshGeometry();
|
|
prepare = true;
|
|
|
|
auto *window =
|
|
qobject_cast<VAbstractMainWindow *>(VAbstractValApplication::VApp()->getMainWindow());
|
|
SCASSERT(window != nullptr)
|
|
connect(line, &Visualization::ToolTip, window, &VAbstractMainWindow::ShowToolTip);
|
|
|
|
if (not VAbstractValApplication::VApp()->Settings()->IsInteractiveTools())
|
|
{
|
|
FinishCreating();
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::SaveData()
|
|
{
|
|
m_pointName = ui->lineEditNamePoint->text();
|
|
m_formula = ui->plainTextEditFormula->toPlainText();
|
|
m_angle = ui->doubleSpinBoxAngle->value();
|
|
|
|
auto *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
|
|
line->SetPoint1Id(GetFirstPointId());
|
|
line->SetPoint2Id(GetSecondPointId());
|
|
line->SetLength(m_formula);
|
|
line->SetAngle(m_angle);
|
|
line->SetLineStyle(LineStyleToPenStyle(GetTypeLine()));
|
|
line->RefreshGeometry();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::closeEvent(QCloseEvent *event)
|
|
{
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
DialogTool::closeEvent(event);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::changeEvent(QEvent *event)
|
|
{
|
|
if (event->type() == QEvent::LanguageChange)
|
|
{
|
|
ui->retranslateUi(this);
|
|
}
|
|
|
|
if (event->type() == QEvent::PaletteChange)
|
|
{
|
|
InitIcons();
|
|
InitDialogButtonBoxIcons(ui->buttonBox);
|
|
}
|
|
|
|
// remember to call base class implementation
|
|
DialogTool::changeEvent(event);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::FinishCreating()
|
|
{
|
|
vis->SetMode(Mode::Show);
|
|
vis->RefreshGeometry();
|
|
emit ToolTip(QString());
|
|
setModal(true);
|
|
show();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::InitIcons()
|
|
{
|
|
const QString resource = QStringLiteral("icon");
|
|
|
|
ui->toolButtonExprLength->setIcon(VTheme::GetIconResource(resource, QStringLiteral("24x24/fx.png")));
|
|
ui->label_3->setPixmap(VTheme::GetPixmapResource(resource, QStringLiteral("24x24/equal.png")));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetSecondPointId set id of second point
|
|
* @param value id
|
|
*/
|
|
void DialogNormal::SetSecondPointId(quint32 value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxSecondPoint, value);
|
|
|
|
auto *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->SetPoint2Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
auto DialogNormal::GetLineColor() const -> QString
|
|
{
|
|
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);
|
|
|
|
auto *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->SetPoint1Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetAngle set aditional angle of normal
|
|
* @param value angle in degree
|
|
*/
|
|
void DialogNormal::SetAngle(qreal value)
|
|
{
|
|
m_angle = value;
|
|
ui->doubleSpinBoxAngle->setValue(m_angle);
|
|
|
|
auto *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->SetAngle(m_angle);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetFormula set string of formula
|
|
* @param value formula
|
|
*/
|
|
void DialogNormal::SetFormula(const QString &value)
|
|
{
|
|
m_formula = VAbstractApplication::VApp()->TrVars()->FormulaToUser(
|
|
value, VAbstractApplication::VApp()->Settings()->GetOsSeparator());
|
|
// increase height if needed.
|
|
if (m_formula.length() > 80)
|
|
{
|
|
this->DeployFormulaTextEdit();
|
|
}
|
|
ui->plainTextEditFormula->setPlainText(m_formula);
|
|
|
|
auto *line = qobject_cast<VisToolNormal *>(vis);
|
|
SCASSERT(line != nullptr)
|
|
line->SetLength(m_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)
|
|
{
|
|
m_pointName = value;
|
|
ui->lineEditNamePoint->setText(m_pointName);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetTypeLine return type of line
|
|
* @return type
|
|
*/
|
|
auto DialogNormal::GetTypeLine() const -> QString
|
|
{
|
|
return GetComboBoxCurrentData(ui->comboBoxLineType, TypeLineLine);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetFormula return string of formula
|
|
* @return formula
|
|
*/
|
|
auto DialogNormal::GetFormula() const -> QString
|
|
{
|
|
return VTranslateVars::TryFormulaFromUser(m_formula, VAbstractApplication::VApp()->Settings()->GetOsSeparator());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetAngle return aditional angle of normal
|
|
* @return angle in degree
|
|
*/
|
|
auto DialogNormal::GetAngle() const -> qreal
|
|
{
|
|
return m_angle;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetFirstPointId return id of first point
|
|
* @return id
|
|
*/
|
|
auto DialogNormal::GetFirstPointId() const -> quint32
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxFirstPoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetSecondPointId return id of second point
|
|
* @return id
|
|
*/
|
|
auto DialogNormal::GetSecondPointId() const -> quint32
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxSecondPoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::SetNotes(const QString ¬es)
|
|
{
|
|
ui->plainTextEditToolNotes->setPlainText(notes);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
auto DialogNormal::GetNotes() const -> QString
|
|
{
|
|
return ui->plainTextEditToolNotes->toPlainText();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::ShowDialog(bool click)
|
|
{
|
|
if (not prepare)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (click)
|
|
{
|
|
// The check need to ignore first release of mouse button.
|
|
// User can select point by clicking on a label.
|
|
if (not m_firstRelease)
|
|
{
|
|
m_firstRelease = true;
|
|
return;
|
|
}
|
|
|
|
auto *scene = qobject_cast<VMainGraphicsScene *>(VAbstractValApplication::VApp()->getCurrentScene());
|
|
SCASSERT(scene != nullptr)
|
|
|
|
const QSharedPointer<VPointF> p1 = data->GeometricObject<VPointF>(GetFirstPointId());
|
|
const QSharedPointer<VPointF> p2 = data->GeometricObject<VPointF>(GetSecondPointId());
|
|
QLineF baseLine(static_cast<QPointF>(*p1), static_cast<QPointF>(*p2));
|
|
baseLine.setAngle(baseLine.angle() + 90);
|
|
|
|
QLineF line(static_cast<QPointF>(*p1), scene->getScenePos());
|
|
|
|
qreal len = line.length();
|
|
qreal angleTo = baseLine.angleTo(line);
|
|
if (angleTo > 90 && angleTo < 270)
|
|
{
|
|
len *= -1;
|
|
}
|
|
|
|
SetFormula(QString::number(FromPixel(len, *data->GetPatternUnit())));
|
|
}
|
|
|
|
FinishCreating();
|
|
}
|