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 dialogbisector.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.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <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-07-30 20:46:40 +02:00
|
|
|
#include "dialogbisector.h"
|
|
|
|
#include "ui_dialogbisector.h"
|
|
|
|
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../geometry/vpointf.h"
|
|
|
|
#include "../../container/vcontainer.h"
|
2014-07-24 15:26:59 +02:00
|
|
|
#include "../../visualization/vistoolbisector.h"
|
|
|
|
#include "../../widgets/vmaingraphicsscene.h"
|
|
|
|
#include "../../tools/vabstracttool.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 DialogBisector create dialog
|
|
|
|
* @param data container with data
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2013-12-21 12:36:51 +01:00
|
|
|
DialogBisector::DialogBisector(const VContainer *data, QWidget *parent)
|
2014-06-10 11:49:14 +02:00
|
|
|
:DialogTool(data, parent), ui(new Ui::DialogBisector), number(0), pointName(QString()), typeLine(QString()),
|
2014-07-24 15:26:59 +02:00
|
|
|
formula(QString()), firstPointId(0), secondPointId(0), thirdPointId(0), formulaBaseHeight(0), line(nullptr),
|
|
|
|
prepare(false)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
ui->setupUi(this);
|
2014-03-06 14:28:46 +01:00
|
|
|
InitVariables(ui);
|
2014-06-19 13:43:02 +02:00
|
|
|
InitFormulaUI(ui);
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
2014-06-19 14:01:38 +02:00
|
|
|
this->formulaBaseHeight = ui->plainTextEditFormula->height();
|
2014-06-08 19:56:09 +02:00
|
|
|
|
2014-05-30 21:03:17 +02:00
|
|
|
InitOkCancelApply(ui);
|
2013-07-30 20:46:40 +02:00
|
|
|
flagFormula = false;
|
|
|
|
flagName = false;
|
|
|
|
CheckState();
|
2013-12-21 12:36:51 +01:00
|
|
|
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
2013-07-30 20:46:40 +02:00
|
|
|
FillComboBoxTypeLine(ui->comboBoxLineType);
|
2014-06-19 13:43:02 +02:00
|
|
|
FillComboBoxPoints(ui->comboBoxThirdPoint);
|
2013-07-30 20:46:40 +02:00
|
|
|
|
|
|
|
connect(ui->toolButtonPutHere, &QPushButton::clicked, this, &DialogBisector::PutHere);
|
2014-03-06 14:28:46 +01:00
|
|
|
connect(listWidget, &QListWidget::itemDoubleClicked, this, &DialogBisector::PutVal);
|
2013-07-30 20:46:40 +02:00
|
|
|
|
|
|
|
connect(ui->toolButtonEqual, &QPushButton::clicked, this, &DialogBisector::EvalFormula);
|
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogBisector::NamePointChanged);
|
2014-06-08 19:56:09 +02:00
|
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogBisector::FormulaTextChanged);
|
|
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogBisector::DeployFormulaTextEdit);
|
2014-07-14 13:54:41 +02:00
|
|
|
connect(ui->comboBoxFirstPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
2014-07-14 14:57:16 +02:00
|
|
|
this, &DialogBisector::PointNameChanged);
|
2014-07-14 13:54:41 +02:00
|
|
|
connect(ui->comboBoxSecondPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
2014-07-14 14:57:16 +02:00
|
|
|
this, &DialogBisector::PointNameChanged);
|
2014-07-14 13:54:41 +02:00
|
|
|
connect(ui->comboBoxThirdPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
2014-07-14 14:57:16 +02:00
|
|
|
this, &DialogBisector::PointNameChanged);
|
2014-07-24 15:26:59 +02:00
|
|
|
|
|
|
|
line = new VisToolBisector(data);
|
2014-06-08 19:56:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogBisector::FormulaTextChanged()
|
|
|
|
{
|
2014-06-09 18:37:11 +02:00
|
|
|
this->FormulaChangedPlainText();
|
2014-06-08 19:56:09 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 13:54:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-07-14 14:57:16 +02:00
|
|
|
void DialogBisector::PointNameChanged()
|
2014-07-14 13:54:41 +02:00
|
|
|
{
|
|
|
|
QSet<quint32> set;
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxFirstPoint));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxSecondPoint));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxThirdPoint));
|
|
|
|
|
2014-07-14 18:28:41 +02:00
|
|
|
QColor color = okColor;
|
2014-07-14 13:54:41 +02:00
|
|
|
if (set.size() != 3)
|
|
|
|
{
|
|
|
|
flagError = false;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = errorColor;
|
2014-07-14 13:54:41 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flagError = true;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = okColor;
|
2014-07-14 13:54:41 +02:00
|
|
|
}
|
2014-07-14 18:28:41 +02:00
|
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
|
|
ChangeColor(ui->labelSecondPoint, color);
|
|
|
|
ChangeColor(ui->labelThirdPoint, color);
|
2014-07-14 13:54:41 +02:00
|
|
|
CheckState();
|
|
|
|
}
|
|
|
|
|
2014-07-24 15:26:59 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogBisector::ShowVisualization()
|
|
|
|
{
|
|
|
|
if (prepare == false)
|
|
|
|
{
|
|
|
|
VMainGraphicsScene *scene = qApp->getCurrentScene();
|
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, line, &VisToolBisector::SetFactor);
|
|
|
|
scene->addItem(line);
|
|
|
|
line->RefreshGeometry();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-08 19:56:09 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogBisector::DeployFormulaTextEdit()
|
|
|
|
{
|
2014-06-19 11:29:56 +02:00
|
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogBisector::~DialogBisector()
|
|
|
|
{
|
2014-07-24 15:26:59 +02:00
|
|
|
delete line;
|
2013-07-30 20:46:40 +02:00
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
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 DialogBisector::ChosenObject(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-24 15:26:59 +02:00
|
|
|
if (prepare == false)// After first choose we ignore all objects
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-24 15:26:59 +02:00
|
|
|
if (type == SceneObject::Point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-24 15:26:59 +02:00
|
|
|
const VPointF *point = data->GeometricObject<const VPointF *>(id);
|
|
|
|
if (number == 0)
|
|
|
|
{
|
|
|
|
qint32 index = ui->comboBoxFirstPoint->findText(point->name());
|
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
|
|
|
ui->comboBoxFirstPoint->setCurrentIndex(index);
|
|
|
|
number++;
|
|
|
|
VMainGraphicsScene *scene = qApp->getCurrentScene();
|
|
|
|
SCASSERT(scene != nullptr);
|
|
|
|
line->VisualMode(id, scene->getScenePos());
|
|
|
|
scene->addItem(line);
|
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, line, &VisToolBisector::SetFactor);
|
|
|
|
connect(scene, &VMainGraphicsScene::mouseMove, line, &VisToolBisector::MousePos);
|
|
|
|
emit ToolTip(tr("Select second point of angle"));
|
|
|
|
return;
|
|
|
|
}
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
2014-07-24 15:26:59 +02:00
|
|
|
if (number == 1)
|
|
|
|
{
|
|
|
|
qint32 index = ui->comboBoxSecondPoint->findText(point->name());
|
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
|
|
|
ui->comboBoxSecondPoint->setCurrentIndex(index);
|
|
|
|
number++;
|
|
|
|
line->setPoint2Id(id);
|
|
|
|
line->RefreshGeometry();
|
|
|
|
emit ToolTip(tr("Select third point of angle"));
|
|
|
|
return;
|
|
|
|
}
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
2014-07-24 15:26:59 +02:00
|
|
|
if (number == 2)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-24 15:26:59 +02:00
|
|
|
qint32 index = ui->comboBoxThirdPoint->findText(point->name());
|
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
|
|
|
ui->comboBoxThirdPoint->setCurrentIndex(index);
|
|
|
|
number = 0;
|
|
|
|
line->setPoint3Id(id);
|
|
|
|
line->RefreshGeometry();
|
|
|
|
prepare = true;
|
|
|
|
emit ToolTip("");
|
|
|
|
}
|
|
|
|
if (isInitialized == false)
|
|
|
|
{
|
|
|
|
this->setModal(true);
|
|
|
|
this->show();
|
|
|
|
}
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setPointName set name of point
|
|
|
|
* @param value name
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogBisector::setPointName(const QString &value)
|
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
pointName = value;
|
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setTypeLine set type of line
|
|
|
|
* @param value type
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogBisector::setTypeLine(const QString &value)
|
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
typeLine = value;
|
|
|
|
SetupTypeLine(ui->comboBoxLineType, value);
|
2014-07-24 15:26:59 +02:00
|
|
|
line->setLineStyle(VAbstractTool::LineStyle(typeLine));
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setFormula set string of formula
|
|
|
|
* @param value formula
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogBisector::setFormula(const QString &value)
|
|
|
|
{
|
2014-05-23 20:11:13 +02:00
|
|
|
formula = qApp->FormulaToUser(value);
|
2014-06-08 19:56:09 +02:00
|
|
|
// increase height if needed.
|
|
|
|
if (formula.length() > 80)
|
|
|
|
{
|
|
|
|
this->DeployFormulaTextEdit();
|
|
|
|
}
|
|
|
|
ui->plainTextEditFormula->setPlainText(formula);
|
2014-07-24 15:26:59 +02:00
|
|
|
line->setLength(formula);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setFirstPointId set id of first point
|
|
|
|
* @param value id
|
|
|
|
* @param id don't show this id in list
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogBisector::setFirstPointId(const quint32 &value, const quint32 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-14 13:54:41 +02:00
|
|
|
setPointId(ui->comboBoxFirstPoint, firstPointId, value, id);
|
2014-07-24 15:26:59 +02:00
|
|
|
line->setPoint1Id(firstPointId);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setSecondPointId set id of second point
|
|
|
|
* @param value id
|
|
|
|
* @param id don't show this id in list
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogBisector::setSecondPointId(const quint32 &value, const quint32 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-14 13:54:41 +02:00
|
|
|
setPointId(ui->comboBoxSecondPoint, secondPointId, value, id);
|
2014-07-24 15:26:59 +02:00
|
|
|
line->setPoint2Id(secondPointId);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setThirdPointId set id of third point
|
|
|
|
* @param value id
|
|
|
|
* @param id don't show this id in list
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogBisector::setThirdPointId(const quint32 &value, const quint32 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-14 13:54:41 +02:00
|
|
|
setPointId(ui->comboBoxThirdPoint, thirdPointId, value, id);
|
2014-07-24 15:26:59 +02:00
|
|
|
line->setPoint3Id(thirdPointId);
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief DialogAccepted save data and emit signal about closed dialog.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogBisector::DialogAccepted()
|
2014-06-08 19:56:09 +02:00
|
|
|
{
|
|
|
|
this->SaveData();
|
|
|
|
emit DialogClosed(QDialog::Accepted);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogBisector::DialogApply()
|
|
|
|
{
|
|
|
|
this->SaveData();
|
|
|
|
emit DialogApplied();
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogBisector::SaveData()
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-30 20:46:40 +02:00
|
|
|
pointName = ui->lineEditNamePoint->text();
|
|
|
|
typeLine = GetTypeLine(ui->comboBoxLineType);
|
2014-06-08 19:56:09 +02:00
|
|
|
formula = ui->plainTextEditFormula->toPlainText();
|
2014-06-16 19:18:36 +02:00
|
|
|
formula.replace("\n", " ");
|
2013-12-18 12:13:32 +01:00
|
|
|
firstPointId = getCurrentObjectId(ui->comboBoxFirstPoint);
|
|
|
|
secondPointId = getCurrentObjectId(ui->comboBoxSecondPoint);
|
|
|
|
thirdPointId = getCurrentObjectId(ui->comboBoxThirdPoint);
|
2014-07-24 15:26:59 +02:00
|
|
|
|
|
|
|
line->setPoint1Id(firstPointId);
|
|
|
|
line->setPoint2Id(secondPointId);
|
|
|
|
line->setPoint3Id(thirdPointId);
|
|
|
|
line->setLength(formula);
|
|
|
|
line->setLineStyle(VAbstractTool::LineStyle(typeLine));
|
|
|
|
line->RefreshGeometry();
|
2013-07-30 20:46:40 +02:00
|
|
|
}
|