4b9e40175a
--HG-- branch : develop
240 lines
8.3 KiB
C++
240 lines
8.3 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 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"
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogNormal create dialog
|
|
* @param data container with data
|
|
* @param parent parent widget
|
|
*/
|
|
DialogNormal::DialogNormal(const VContainer *data, QWidget *parent)
|
|
:DialogTool(data, parent), ui(new Ui::DialogNormal), number(0), pointName(QString()), typeLine(QString()),
|
|
formula(QString()), angle(0), firstPointId(0), secondPointId(0), formulaBaseHeight(0)
|
|
{
|
|
ui->setupUi(this);
|
|
InitVariables(ui);
|
|
InitFormulaUI(ui);
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
this->formulaBaseHeight = ui->plainTextEditFormula->height();
|
|
|
|
InitOkCancelApply(ui);
|
|
flagFormula = false;
|
|
flagName = false;
|
|
CheckState();
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
FillComboBoxTypeLine(ui->comboBoxLineType);
|
|
|
|
InitArrow(ui);
|
|
|
|
connect(ui->toolButtonPutHere, &QPushButton::clicked, this, &DialogNormal::PutHere);
|
|
connect(ui->listWidget, &QListWidget::itemDoubleClicked, this, &DialogNormal::PutVal);
|
|
connect(ui->toolButtonEqual, &QPushButton::clicked, this, &DialogNormal::EvalFormula);
|
|
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);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
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::DeployFormulaTextEdit()
|
|
{
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogNormal::~DialogNormal()
|
|
{
|
|
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 (type == SceneObject::Point)
|
|
{
|
|
if (number == 0)
|
|
{
|
|
if (ChoosedPoint(id, ui->comboBoxFirstPoint, tr("Select second point of line")))
|
|
{
|
|
number++;
|
|
return;
|
|
}
|
|
}
|
|
if (number == 1)
|
|
{
|
|
if (ChoosedPoint(id, ui->comboBoxSecondPoint, ""))
|
|
{
|
|
number = 0;
|
|
if (isInitialized == false)
|
|
{
|
|
this->setModal(true);
|
|
this->show();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogAccepted save data and emit signal about closed dialog.
|
|
*/
|
|
void DialogNormal::DialogAccepted()
|
|
{
|
|
this->SaveData();
|
|
emit DialogClosed(QDialog::Accepted);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::DialogApply()
|
|
{
|
|
this->SaveData();
|
|
emit DialogApplied();
|
|
}
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogNormal::SaveData()
|
|
{
|
|
pointName = ui->lineEditNamePoint->text();
|
|
typeLine = GetTypeLine(ui->comboBoxLineType);
|
|
formula = ui->plainTextEditFormula->toPlainText();
|
|
formula.replace("\n", " ");
|
|
angle = ui->doubleSpinBoxAngle->value();
|
|
firstPointId = getCurrentObjectId(ui->comboBoxFirstPoint);
|
|
secondPointId = getCurrentObjectId(ui->comboBoxSecondPoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setSecondPointId set id of second point
|
|
* @param value id
|
|
* @param id don't show this id in list
|
|
*/
|
|
void DialogNormal::setSecondPointId(const quint32 &value, const quint32 &id)
|
|
{
|
|
setPointId(ui->comboBoxSecondPoint, secondPointId, value, id);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setFirstPointId set id of first point
|
|
* @param value id
|
|
* @param id don't show this id in list
|
|
*/
|
|
void DialogNormal::setFirstPointId(const quint32 &value, const quint32 &id)
|
|
{
|
|
setPointId(ui->comboBoxFirstPoint, firstPointId, value, id);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setAngle set aditional angle of normal
|
|
* @param value angle in degree
|
|
*/
|
|
void DialogNormal::setAngle(const qreal &value)
|
|
{
|
|
angle = value;
|
|
ui->doubleSpinBoxAngle->setValue(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);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setTypeLine set type of line
|
|
* @param value type
|
|
*/
|
|
void DialogNormal::setTypeLine(const QString &value)
|
|
{
|
|
typeLine = value;
|
|
SetupTypeLine(ui->comboBoxLineType, value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setPointName set name of point
|
|
* @param value name
|
|
*/
|
|
void DialogNormal::setPointName(const QString &value)
|
|
{
|
|
pointName = value;
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
}
|