629a2a7579
--HG-- branch : develop
329 lines
11 KiB
C++
329 lines
11 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 Valentine project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
** <https://bitbucket.org/dismine/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 "ui_dialognormal.h"
|
|
#include "../visualization/vistoolnormal.h"
|
|
#include "../widgets/vmaingraphicsscene.h"
|
|
#include "../../tools/vabstracttool.h"
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogNormal create dialog
|
|
* @param data container with data
|
|
* @param parent parent widget
|
|
*/
|
|
DialogNormal::DialogNormal(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogNormal), formula(QString()), angle(0), formulaBaseHeight(0),
|
|
line(nullptr)
|
|
{
|
|
ui->setupUi(this);
|
|
InitVariables(ui);
|
|
InitFormulaUI(ui);
|
|
ui->lineEditNamePoint->setText(qApp->getCurrentDocument()->GenerateLabel(LabelType::NewLabel));
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
this->formulaBaseHeight = ui->plainTextEditFormula->height();
|
|
ui->plainTextEditFormula->installEventFilter(this);
|
|
|
|
InitOkCancelApply(ui);
|
|
flagFormula = false;
|
|
CheckState();
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
FillComboBoxTypeLine(ui->comboBoxLineType, VAbstractTool::LineStylesPics());
|
|
FillComboBoxLineColors(ui->comboBoxLineColor);
|
|
|
|
InitArrow(ui);
|
|
|
|
connect(ui->toolButtonPutHere, &QPushButton::clicked, this, &DialogNormal::PutHere);
|
|
connect(ui->listWidget, &QListWidget::itemDoubleClicked, this, &DialogNormal::PutVal);
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogNormal::NamePointChanged);
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogNormal::FormulaTextChanged);
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogNormal::DeployFormulaTextEdit);
|
|
connect(ui->comboBoxFirstPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogNormal::PointNameChanged);
|
|
connect(ui->comboBoxSecondPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogNormal::PointNameChanged);
|
|
|
|
line = new VisToolNormal(data);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::FormulaTextChanged()
|
|
{
|
|
this->FormulaChangedPlainText();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::PointNameChanged()
|
|
{
|
|
QColor color = okColor;
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) == getCurrentObjectId(ui->comboBoxSecondPoint))
|
|
{
|
|
flagError = false;
|
|
color = errorColor;
|
|
}
|
|
else
|
|
{
|
|
flagError = true;
|
|
color = okColor;
|
|
}
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
ChangeColor(ui->labelSecondPoint, color);
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::ShowVisualization()
|
|
{
|
|
if (prepare == false)
|
|
{
|
|
VMainGraphicsScene *scene = qApp->getCurrentScene();
|
|
connect(scene, &VMainGraphicsScene::NewFactor, line, &VisLine::SetFactor);
|
|
scene->addItem(line);
|
|
line->RefreshGeometry();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::DeployFormulaTextEdit()
|
|
{
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogNormal::~DialogNormal()
|
|
{
|
|
if (qApp->getCurrentScene()->items().contains(line))
|
|
{ // In some cases scene delete object yourself. If not make check program will crash.
|
|
delete line;
|
|
}
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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)
|
|
{
|
|
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, ""))
|
|
{
|
|
line->setPoint2Id(id);
|
|
line->RefreshGeometry();
|
|
prepare = true;
|
|
this->setModal(true);
|
|
this->show();
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::SaveData()
|
|
{
|
|
pointName = ui->lineEditNamePoint->text();
|
|
formula = ui->plainTextEditFormula->toPlainText();
|
|
formula.replace("\n", " ");
|
|
angle = ui->doubleSpinBoxAngle->value();
|
|
|
|
line->setPoint1Id(GetFirstPointId());
|
|
line->setPoint2Id(GetSecondPointId());
|
|
line->setLength(formula);
|
|
line->SetAngle(angle);
|
|
line->setLineStyle(VAbstractTool::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(const quint32 &value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxSecondPoint, value);
|
|
line->setPoint2Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogNormal::GetLineColor() const
|
|
{
|
|
return GetComboBoxCurrentData(ui->comboBoxLineColor);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::SetLineColor(const QString &value)
|
|
{
|
|
ChangeCurrentData(ui->comboBoxLineColor, value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetFirstPointId set id of first point
|
|
* @param value id
|
|
*/
|
|
void DialogNormal::SetFirstPointId(const quint32 &value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxFirstPoint, value);
|
|
line->setPoint1Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetAngle set aditional angle of normal
|
|
* @param value angle in degree
|
|
*/
|
|
void DialogNormal::SetAngle(const qreal &value)
|
|
{
|
|
angle = value;
|
|
ui->doubleSpinBoxAngle->setValue(angle);
|
|
line->SetAngle(angle);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetFormula set string of formula
|
|
* @param value formula
|
|
*/
|
|
void DialogNormal::SetFormula(const QString &value)
|
|
{
|
|
formula = qApp->FormulaToUser(value);
|
|
// increase height if needed.
|
|
if (formula.length() > 80)
|
|
{
|
|
this->DeployFormulaTextEdit();
|
|
}
|
|
ui->plainTextEditFormula->setPlainText(formula);
|
|
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);
|
|
line->setLineStyle(VAbstractTool::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);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief GetFormula return string of formula
|
|
* @return formula
|
|
*/
|
|
QString DialogNormal::GetFormula() const
|
|
{
|
|
return qApp->FormulaFromUser(formula);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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);
|
|
}
|