2014-11-22 19:37:59 +01:00
|
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
|
** @file dialogendline.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.
|
2015-02-27 11:27:48 +01:00
|
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
|
** <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-25 14:00:51 +02:00
|
|
|
|
#include "dialogendline.h"
|
|
|
|
|
#include "ui_dialogendline.h"
|
|
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
|
#include "../../../vgeometry/vpointf.h"
|
|
|
|
|
#include "../../../vpatterndb/vcontainer.h"
|
|
|
|
|
#include "../../../vpatterndb/vtranslatevars.h"
|
2014-07-23 10:56:32 +02:00
|
|
|
|
#include "../../visualization/vistoolendline.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
|
#include "../../../vwidgets/vmaingraphicsscene.h"
|
2014-07-23 10:56:32 +02:00
|
|
|
|
#include "../../tools/vabstracttool.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
|
#include "../support/dialogeditwrongformula.h"
|
2014-10-03 12:32:12 +02:00
|
|
|
|
#include <QTimer>
|
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 DialogEndLine create dialog
|
|
|
|
|
* @param data container with data
|
|
|
|
|
* @param parent parent widget
|
|
|
|
|
*/
|
2014-07-29 14:19:11 +02:00
|
|
|
|
DialogEndLine::DialogEndLine(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
2015-02-03 09:45:27 +01:00
|
|
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogEndLine),
|
2015-05-21 21:24:31 +02:00
|
|
|
|
formulaLength(QString()), formulaAngle(QString()), formulaBaseHeight(0), formulaBaseHeightAngle(0)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
|
ui->setupUi(this);
|
2014-06-19 13:43:02 +02:00
|
|
|
|
InitFormulaUI(ui);
|
2014-09-05 10:01:46 +02:00
|
|
|
|
ui->lineEditNamePoint->setText(qApp->getCurrentDocument()->GenerateLabel(LabelType::NewLabel));
|
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-08-11 16:41:17 +02:00
|
|
|
|
this->formulaBaseHeightAngle = ui->plainTextEditAngle->height();
|
2014-03-06 14:28:46 +01:00
|
|
|
|
|
2014-10-29 19:00:38 +01:00
|
|
|
|
ui->plainTextEditFormula->installEventFilter(this);
|
|
|
|
|
ui->plainTextEditAngle->installEventFilter(this);
|
|
|
|
|
|
2014-05-30 21:03:17 +02:00
|
|
|
|
InitOkCancelApply(ui);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
flagFormula = false;
|
2013-07-28 00:18:06 +02:00
|
|
|
|
CheckState();
|
2013-12-21 12:36:51 +01:00
|
|
|
|
|
|
|
|
|
FillComboBoxPoints(ui->comboBoxBasePoint);
|
2015-01-29 16:47:02 +01:00
|
|
|
|
FillComboBoxTypeLine(ui->comboBoxLineType, VAbstractTool::LineStylesPics());
|
2015-02-02 11:28:09 +01:00
|
|
|
|
FillComboBoxLineColors(ui->comboBoxLineColor);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
|
2015-04-29 16:57:02 +02:00
|
|
|
|
connect(ui->toolButtonExprLength, &QPushButton::clicked, this, &DialogEndLine::FXLength);
|
|
|
|
|
connect(ui->toolButtonExprAngle, &QPushButton::clicked, this, &DialogEndLine::FXAngle);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
|
2013-07-28 00:18:06 +02:00
|
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogEndLine::NamePointChanged);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
|
2014-05-25 11:46:54 +02:00
|
|
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogEndLine::FormulaTextChanged);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
connect(ui->plainTextEditAngle, &QPlainTextEdit::textChanged, this, &DialogEndLine::AngleTextChanged);
|
|
|
|
|
|
2014-05-25 11:46:54 +02:00
|
|
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogEndLine::DeployFormulaTextEdit);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
connect(ui->pushButtonGrowLengthAngle, &QPushButton::clicked, this, &DialogEndLine::DeployAngleTextEdit);
|
|
|
|
|
|
|
|
|
|
connect(timerFormula, &QTimer::timeout, this, &DialogEndLine::EvalAngle);
|
2014-07-23 10:56:32 +02:00
|
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
|
vis = new VisToolEndLine(data);
|
2015-06-25 09:05:19 +02:00
|
|
|
|
|
|
|
|
|
FixateSize();
|
2014-05-25 11:46:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 16:41:17 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
/**
|
|
|
|
|
* @brief EvalAngle calculate value of angle
|
|
|
|
|
*/
|
|
|
|
|
void DialogEndLine::EvalAngle()
|
|
|
|
|
{
|
|
|
|
|
labelEditFormula = ui->labelEditAngle;
|
2014-10-24 16:23:41 +02:00
|
|
|
|
Eval(ui->plainTextEditAngle->toPlainText(), flagError, ui->labelResultCalculationAngle, degreeSymbol, false);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
labelEditFormula = ui->labelEditFormula;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-25 11:46:54 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::FormulaTextChanged()
|
|
|
|
|
{
|
2014-06-09 18:37:11 +02:00
|
|
|
|
this->FormulaChangedPlainText();
|
2014-05-25 11:46:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 16:41:17 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::AngleTextChanged()
|
|
|
|
|
{
|
|
|
|
|
labelEditFormula = ui->labelEditAngle;
|
2014-10-20 19:41:02 +02:00
|
|
|
|
ValFormulaChanged(flagError, ui->plainTextEditAngle, timerFormula);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
labelEditFormula = ui->labelEditFormula;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-25 11:46:54 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::DeployFormulaTextEdit()
|
|
|
|
|
{
|
2014-06-19 11:29:56 +02:00
|
|
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-08-11 16:41:17 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::DeployAngleTextEdit()
|
|
|
|
|
{
|
|
|
|
|
DeployFormula(ui->plainTextEditAngle, ui->pushButtonGrowLengthAngle, formulaBaseHeightAngle);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:57:02 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::FXAngle()
|
|
|
|
|
{
|
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
|
|
|
dialog->setWindowTitle(tr("Edit angle"));
|
|
|
|
|
dialog->SetFormula(GetAngle());
|
|
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
|
{
|
|
|
|
|
SetAngle(dialog->GetFormula());
|
|
|
|
|
}
|
|
|
|
|
delete dialog;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::FXLength()
|
|
|
|
|
{
|
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
|
|
|
dialog->setWindowTitle(tr("Edit length"));
|
|
|
|
|
dialog->SetFormula(GetFormula());
|
|
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
|
{
|
|
|
|
|
SetFormula(dialog->GetFormula());
|
|
|
|
|
}
|
|
|
|
|
delete dialog;
|
|
|
|
|
}
|
|
|
|
|
|
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 DialogEndLine::ChosenObject(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-07-23 10:56:32 +02:00
|
|
|
|
if (prepare == false)// After first choose we ignore all objects
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2014-07-23 10:56:32 +02:00
|
|
|
|
if (type == SceneObject::Point)
|
|
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
|
if (SetObject(id, ui->comboBoxBasePoint, ""))
|
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
|
vis->VisualMode(id);
|
|
|
|
|
connect(vis, &Visualization::ToolTip, this, &DialogTool::ShowVisToolTip);
|
2014-08-17 20:49:29 +02:00
|
|
|
|
prepare = true;
|
|
|
|
|
}
|
2014-07-23 10:56:32 +02:00
|
|
|
|
}
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief SetPointName set name of point
|
2014-06-02 16:28:02 +02:00
|
|
|
|
* @param value name
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
void DialogEndLine::SetPointName(const QString &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
|
pointName = value;
|
|
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief SetTypeLine set type of line
|
2014-06-02 16:28:02 +02:00
|
|
|
|
* @param value type
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
void DialogEndLine::SetTypeLine(const QString &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2015-02-02 12:55:42 +01:00
|
|
|
|
ChangeCurrentData(ui->comboBoxLineType, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
vis->setLineStyle(VAbstractTool::LineStyleToPenStyle(value));
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief SetFormula set string of formula
|
2014-06-02 16:28:02 +02:00
|
|
|
|
* @param value formula
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
void DialogEndLine::SetFormula(const QString &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2015-06-11 12:15:57 +02:00
|
|
|
|
formulaLength = qApp->TrVars()->FormulaToUser(value);
|
2014-05-25 21:54:17 +02:00
|
|
|
|
// increase height if needed. TODO : see if I can get the max number of caracters in one line
|
|
|
|
|
// of this PlainTextEdit to change 80 to this value
|
2014-08-11 16:41:17 +02:00
|
|
|
|
if (formulaLength.length() > 80)
|
2014-05-25 21:54:17 +02:00
|
|
|
|
{
|
|
|
|
|
this->DeployFormulaTextEdit();
|
|
|
|
|
}
|
2014-08-11 16:41:17 +02:00
|
|
|
|
ui->plainTextEditFormula->setPlainText(formulaLength);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
|
|
VisToolEndLine *line = qobject_cast<VisToolEndLine *>(vis);
|
|
|
|
|
SCASSERT(line != nullptr);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
line->setLength(formulaLength);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
2014-10-29 14:40:56 +01:00
|
|
|
|
MoveCursorToEnd(ui->plainTextEditFormula);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief SetAngle set angle of line
|
2014-06-02 16:28:02 +02:00
|
|
|
|
* @param value angle in degree
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
void DialogEndLine::SetAngle(const QString &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2015-06-11 12:15:57 +02:00
|
|
|
|
formulaAngle = qApp->TrVars()->FormulaToUser(value);
|
2014-08-11 16:41:17 +02:00
|
|
|
|
// increase height if needed. TODO : see if I can get the max number of caracters in one line
|
|
|
|
|
// of this PlainTextEdit to change 80 to this value
|
|
|
|
|
if (formulaAngle.length() > 80)
|
|
|
|
|
{
|
|
|
|
|
this->DeployAngleTextEdit();
|
|
|
|
|
}
|
|
|
|
|
ui->plainTextEditAngle->setPlainText(formulaAngle);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
|
|
VisToolEndLine *line = qobject_cast<VisToolEndLine *>(vis);
|
|
|
|
|
SCASSERT(line != nullptr);
|
2015-02-03 11:17:04 +01:00
|
|
|
|
line->SetAngle(formulaAngle);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
2014-10-29 14:40:56 +01:00
|
|
|
|
MoveCursorToEnd(ui->plainTextEditAngle);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief SetBasePointId set id base point of line
|
2014-06-02 16:28:02 +02:00
|
|
|
|
* @param value id
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
void DialogEndLine::SetBasePointId(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
|
setCurrentPointId(ui->comboBoxBasePoint, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
|
|
VisToolEndLine *line = qobject_cast<VisToolEndLine *>(vis);
|
|
|
|
|
SCASSERT(line != nullptr);
|
2014-07-23 10:56:32 +02:00
|
|
|
|
line->setPoint1Id(value);
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-03 10:27:33 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
|
QString DialogEndLine::GetLineColor() const
|
2015-02-03 10:27:33 +01:00
|
|
|
|
{
|
2015-02-03 11:17:04 +01:00
|
|
|
|
return GetComboBoxCurrentData(ui->comboBoxLineColor);
|
2015-02-03 10:27:33 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
|
void DialogEndLine::SetLineColor(const QString &value)
|
2015-02-03 10:27:33 +01:00
|
|
|
|
{
|
|
|
|
|
ChangeCurrentData(ui->comboBoxLineColor, value);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-23 10:56:32 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
/**
|
|
|
|
|
* @brief DialogEndLine::ShowDialog show dialog after finish working with visual part
|
|
|
|
|
* @param click true if need show dialog after click mouse
|
|
|
|
|
*/
|
|
|
|
|
void DialogEndLine::ShowDialog(bool click)
|
|
|
|
|
{
|
|
|
|
|
if (prepare)
|
|
|
|
|
{
|
|
|
|
|
if (click)
|
|
|
|
|
{
|
|
|
|
|
/*We will ignore click if poinet is in point circle*/
|
2015-05-12 17:15:10 +02:00
|
|
|
|
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(qApp->getCurrentScene());
|
2014-07-23 10:56:32 +02:00
|
|
|
|
SCASSERT(scene != nullptr);
|
2015-02-03 11:17:04 +01:00
|
|
|
|
const QSharedPointer<VPointF> point = data->GeometricObject<VPointF>(GetBasePointId());
|
2014-07-23 10:56:32 +02:00
|
|
|
|
QLineF line = QLineF(point->toQPointF(), scene->getScenePos());
|
|
|
|
|
|
|
|
|
|
//Radius of point circle, but little bigger. Need handle with hover sizes.
|
2015-06-11 19:36:17 +02:00
|
|
|
|
qreal radius = ToPixel(DefPointRadius/*mm*/, Unit::Mm)*1.5;
|
2014-07-23 10:56:32 +02:00
|
|
|
|
if (line.length() <= radius)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this->setModal(true);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
|
|
VisToolEndLine *line = qobject_cast<VisToolEndLine *>(vis);
|
|
|
|
|
SCASSERT(line != nullptr);
|
|
|
|
|
|
2015-02-03 11:17:04 +01:00
|
|
|
|
this->SetAngle(line->Angle());//Show in dialog angle what user choose
|
2014-07-23 10:56:32 +02:00
|
|
|
|
emit ToolTip("");
|
2014-08-12 19:02:14 +02:00
|
|
|
|
timerFormula->start();
|
2014-07-23 10:56:32 +02:00
|
|
|
|
this->show();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::ShowVisualization()
|
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
|
AddVisualization<VisToolEndLine>();
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-25 21:54:17 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::SaveData()
|
2013-11-04 21:35:15 +01:00
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
|
pointName = ui->lineEditNamePoint->text();
|
2014-08-11 16:41:17 +02:00
|
|
|
|
|
|
|
|
|
formulaLength = ui->plainTextEditFormula->toPlainText();
|
|
|
|
|
formulaLength.replace("\n", " ");
|
|
|
|
|
|
|
|
|
|
formulaAngle = ui->plainTextEditAngle->toPlainText();
|
|
|
|
|
formulaAngle.replace("\n", " ");
|
|
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
|
VisToolEndLine *line = qobject_cast<VisToolEndLine *>(vis);
|
|
|
|
|
SCASSERT(line != nullptr);
|
|
|
|
|
|
2015-02-03 11:17:04 +01:00
|
|
|
|
line->setPoint1Id(GetBasePointId());
|
2014-08-11 16:41:17 +02:00
|
|
|
|
line->setLength(formulaLength);
|
2015-02-03 11:17:04 +01:00
|
|
|
|
line->SetAngle(formulaAngle);
|
|
|
|
|
line->setLineStyle(VAbstractTool::LineStyleToPenStyle(GetTypeLine()));
|
2014-07-23 10:56:32 +02:00
|
|
|
|
line->RefreshGeometry();
|
2013-07-25 14:00:51 +02:00
|
|
|
|
}
|
|
|
|
|
|
2014-11-22 19:37:59 +01:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
void DialogEndLine::closeEvent(QCloseEvent *event)
|
|
|
|
|
{
|
|
|
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
|
|
|
ui->plainTextEditAngle->blockSignals(true);
|
|
|
|
|
DialogTool::closeEvent(event);
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
|
DialogEndLine::~DialogEndLine()
|
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
|
DeleteVisualization<VisToolEndLine>();
|
2013-07-25 14:00:51 +02:00
|
|
|
|
delete ui;
|
|
|
|
|
}
|
2015-02-02 16:11:48 +01:00
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief GetTypeLine return type of line
|
2015-02-02 16:11:48 +01:00
|
|
|
|
* @return type
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
QString DialogEndLine::GetTypeLine() const
|
2015-02-02 16:11:48 +01:00
|
|
|
|
{
|
2015-02-03 11:17:04 +01:00
|
|
|
|
return GetComboBoxCurrentData(ui->comboBoxLineType);
|
2015-02-02 16:11:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief GetFormula return string of formula
|
2015-02-02 16:11:48 +01:00
|
|
|
|
* @return formula
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
QString DialogEndLine::GetFormula() const
|
2015-02-02 16:11:48 +01:00
|
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
|
return qApp->TrVars()->FormulaFromUser(formulaLength, qApp->Settings()->GetOsSeparator());
|
2015-02-02 16:11:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief GetAngle return formula angle of line
|
2015-02-02 16:11:48 +01:00
|
|
|
|
* @return angle formula
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
QString DialogEndLine::GetAngle() const
|
2015-02-02 16:11:48 +01:00
|
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
|
return qApp->TrVars()->FormulaFromUser(formulaAngle, qApp->Settings()->GetOsSeparator());
|
2015-02-02 16:11:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
|
* @brief GetBasePointId return id base point of line
|
2015-02-02 16:11:48 +01:00
|
|
|
|
* @return id
|
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
|
quint32 DialogEndLine::GetBasePointId() const
|
2015-02-02 16:11:48 +01:00
|
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
|
return getCurrentObjectId(ui->comboBoxBasePoint);
|
2015-02-02 16:11:48 +01:00
|
|
|
|
}
|