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 dialogshoulderpoint.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-29 14:55:40 +02:00
|
|
|
#include "dialogshoulderpoint.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QColor>
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QDialog>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPlainTextEdit>
|
|
|
|
#include <QPointer>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QSet>
|
|
|
|
#include <QToolButton>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vpatterndb/vtranslatevars.h"
|
2014-07-25 11:55:27 +02:00
|
|
|
#include "../../tools/vabstracttool.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../../visualization/visualization.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../../visualization/line/vistoolshoulderpoint.h"
|
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
|
|
#include "../ifc/xml/vdomdocument.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../support/dialogeditwrongformula.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vmisc/vabstractapplication.h"
|
|
|
|
#include "../vmisc/vcommonsettings.h"
|
|
|
|
#include "ui_dialogshoulderpoint.h"
|
|
|
|
|
|
|
|
class QCloseEvent;
|
|
|
|
class QWidget;
|
|
|
|
class VContainer;
|
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 DialogShoulderPoint create dialog
|
|
|
|
* @param data container with data
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2014-07-29 14:19:11 +02:00
|
|
|
DialogShoulderPoint::DialogShoulderPoint(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
2015-02-03 09:45:27 +01:00
|
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogShoulderPoint), formula(QString()),
|
2015-05-21 21:24:31 +02:00
|
|
|
formulaBaseHeight(0)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-29 14:55:40 +02:00
|
|
|
ui->setupUi(this);
|
2015-12-09 11:40:43 +01:00
|
|
|
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0)
|
|
|
|
ui->lineEditNamePoint->setClearButtonEnabled(true);
|
|
|
|
#endif
|
|
|
|
|
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-10-29 19:00:38 +01:00
|
|
|
ui->plainTextEditFormula->installEventFilter(this);
|
2014-03-06 14:28:46 +01:00
|
|
|
|
2014-06-19 13:43:02 +02:00
|
|
|
InitOkCancelApply(ui);
|
2013-07-29 14:55:40 +02:00
|
|
|
flagFormula = false;
|
|
|
|
CheckState();
|
2013-12-21 12:36:51 +01:00
|
|
|
|
2015-01-29 16:47:02 +01:00
|
|
|
FillComboBoxTypeLine(ui->comboBoxLineType, VAbstractTool::LineStylesPics());
|
2013-12-21 12:36:51 +01:00
|
|
|
FillComboBoxPoints(ui->comboBoxP1Line);
|
|
|
|
FillComboBoxPoints(ui->comboBoxP2Line);
|
2014-10-02 16:29:28 +02:00
|
|
|
FillComboBoxPoints(ui->comboBoxP3);
|
2015-02-02 12:10:02 +01:00
|
|
|
FillComboBoxLineColors(ui->comboBoxLineColor);
|
2013-07-29 14:55:40 +02:00
|
|
|
|
2015-04-29 20:30:44 +02:00
|
|
|
connect(ui->toolButtonExprLength, &QPushButton::clicked, this, &DialogShoulderPoint::FXLength);
|
2013-07-29 14:55:40 +02:00
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogShoulderPoint::NamePointChanged);
|
2014-06-09 12:56:07 +02:00
|
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogShoulderPoint::FormulaTextChanged);
|
|
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogShoulderPoint::DeployFormulaTextEdit);
|
2014-07-14 17:32:00 +02:00
|
|
|
connect(ui->comboBoxP1Line, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogShoulderPoint::PointNameChanged);
|
|
|
|
connect(ui->comboBoxP2Line, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogShoulderPoint::PointNameChanged);
|
2014-10-02 16:29:28 +02:00
|
|
|
connect(ui->comboBoxP3, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
2014-07-14 17:32:00 +02:00
|
|
|
this, &DialogShoulderPoint::PointNameChanged);
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
vis = new VisToolShoulderPoint(data);
|
2014-06-09 12:56:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogShoulderPoint::FormulaTextChanged()
|
|
|
|
{
|
2014-06-09 18:37:11 +02:00
|
|
|
this->FormulaChangedPlainText();
|
2014-06-09 12:56:07 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 17:32:00 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogShoulderPoint::PointNameChanged()
|
|
|
|
{
|
|
|
|
QSet<quint32> set;
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxP1Line));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxP2Line));
|
2014-10-02 16:29:28 +02:00
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxP3));
|
2014-07-14 17:32:00 +02:00
|
|
|
|
2014-07-14 18:28:41 +02:00
|
|
|
QColor color = okColor;
|
2014-07-14 17:32:00 +02:00
|
|
|
if (set.size() != 3)
|
|
|
|
{
|
|
|
|
flagError = false;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = errorColor;
|
2014-07-14 17:32:00 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flagError = true;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = okColor;
|
2014-07-14 17:32:00 +02:00
|
|
|
}
|
2014-07-14 18:28:41 +02:00
|
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
|
|
ChangeColor(ui->labelSecondPoint, color);
|
2014-10-02 16:29:28 +02:00
|
|
|
ChangeColor(ui->labelThirdPoint, color);
|
2014-07-14 17:32:00 +02:00
|
|
|
CheckState();
|
|
|
|
}
|
|
|
|
|
2015-04-29 20:30:44 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogShoulderPoint::FXLength()
|
|
|
|
{
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
|
|
dialog->setWindowTitle(tr("Edit length"));
|
|
|
|
dialog->SetFormula(GetFormula());
|
2015-07-03 17:54:25 +02:00
|
|
|
dialog->setPostfix(VDomDocument::UnitsToStr(qApp->patternUnit(), true));
|
2015-04-29 20:30:44 +02:00
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
SetFormula(dialog->GetFormula());
|
|
|
|
}
|
|
|
|
delete dialog;
|
|
|
|
}
|
|
|
|
|
2014-07-25 11:55:27 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogShoulderPoint::ShowVisualization()
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
AddVisualization<VisToolShoulderPoint>();
|
2014-07-25 11:55:27 +02:00
|
|
|
}
|
|
|
|
|
2014-06-09 12:56:07 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogShoulderPoint::DeployFormulaTextEdit()
|
|
|
|
{
|
2014-06-19 11:29:56 +02:00
|
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
2013-07-29 14:55:40 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogShoulderPoint::~DialogShoulderPoint()
|
|
|
|
{
|
2013-07-29 14:55: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 DialogShoulderPoint::ChosenObject(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-25 11:55:27 +02:00
|
|
|
if (prepare == false)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-25 11:55:27 +02:00
|
|
|
if (type == SceneObject::Point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
VisToolShoulderPoint *line = qobject_cast<VisToolShoulderPoint *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
|
|
|
|
2014-08-17 20:49:29 +02:00
|
|
|
switch (number)
|
2014-07-25 11:55:27 +02:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
case 0:
|
2014-10-02 16:29:28 +02:00
|
|
|
if (SetObject(id, ui->comboBoxP3, tr("Select first point of line")))
|
2014-08-17 20:49:29 +02:00
|
|
|
{
|
|
|
|
number++;
|
|
|
|
line->VisualMode(id);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
2014-11-09 11:57:49 +01:00
|
|
|
if (getCurrentObjectId(ui->comboBoxP3) != id)
|
2014-08-17 20:49:29 +02:00
|
|
|
{
|
2014-11-09 11:57:49 +01:00
|
|
|
if (SetObject(id, ui->comboBoxP1Line, tr("Select second point of line")))
|
|
|
|
{
|
|
|
|
number++;
|
|
|
|
line->setLineP1Id(id);
|
|
|
|
line->RefreshGeometry();
|
|
|
|
}
|
2014-08-17 20:49:29 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
2014-11-09 11:57:49 +01:00
|
|
|
{
|
|
|
|
QSet<quint32> set;
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxP3));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxP1Line));
|
|
|
|
set.insert(id);
|
|
|
|
|
|
|
|
if (set.size() == 3)
|
2014-08-17 20:49:29 +02:00
|
|
|
{
|
2014-11-09 11:57:49 +01:00
|
|
|
if (SetObject(id, ui->comboBoxP2Line, ""))
|
|
|
|
{
|
|
|
|
line->setLineP2Id(id);
|
|
|
|
line->RefreshGeometry();
|
|
|
|
prepare = true;
|
|
|
|
this->setModal(true);
|
|
|
|
this->show();
|
|
|
|
}
|
2014-08-17 20:49:29 +02:00
|
|
|
}
|
2014-11-09 11:57:49 +01:00
|
|
|
}
|
2014-08-17 20:49:29 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2013-07-29 14:55:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-09 12:56:07 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogShoulderPoint::SaveData()
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-29 14:55:40 +02:00
|
|
|
pointName = ui->lineEditNamePoint->text();
|
2014-06-09 12:56:07 +02:00
|
|
|
formula = ui->plainTextEditFormula->toPlainText();
|
2014-06-16 19:18:36 +02:00
|
|
|
formula.replace("\n", " ");
|
2014-07-25 11:55:27 +02:00
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
VisToolShoulderPoint *line = qobject_cast<VisToolShoulderPoint *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
|
|
|
|
2016-01-24 17:15:08 +01:00
|
|
|
line->setObject1Id(GetP3());
|
2015-02-03 11:17:04 +01:00
|
|
|
line->setLineP1Id(GetP1Line());
|
|
|
|
line->setLineP2Id(GetP2Line());
|
2014-07-25 11:55:27 +02:00
|
|
|
line->setLength(formula);
|
2015-02-03 11:17:04 +01:00
|
|
|
line->setLineStyle(VAbstractTool::LineStyleToPenStyle(GetTypeLine()));
|
2014-07-25 11:55:27 +02:00
|
|
|
line->RefreshGeometry();
|
2013-07-29 14:55:40 +02:00
|
|
|
}
|
|
|
|
|
2014-11-22 19:37:59 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogShoulderPoint::closeEvent(QCloseEvent *event)
|
|
|
|
{
|
|
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
|
|
DialogTool::closeEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setPShoulder set id shoulder point
|
|
|
|
* @param value id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
void DialogShoulderPoint::SetP3(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
setCurrentPointId(ui->comboBoxP3, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolShoulderPoint *line = qobject_cast<VisToolShoulderPoint *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2016-01-24 17:15:08 +01:00
|
|
|
line->setObject1Id(value);
|
2013-07-29 14:55:40 +02:00
|
|
|
}
|
|
|
|
|
2015-02-03 10:27:33 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-02-03 11:17:04 +01:00
|
|
|
QString DialogShoulderPoint::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 DialogShoulderPoint::SetLineColor(const QString &value)
|
2015-02-03 10:27:33 +01:00
|
|
|
{
|
|
|
|
ChangeCurrentData(ui->comboBoxLineColor, value);
|
|
|
|
}
|
|
|
|
|
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 SetP2Line set id second point of line
|
2014-06-02 16:28:02 +02:00
|
|
|
* @param value id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
void DialogShoulderPoint::SetP2Line(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
setCurrentPointId(ui->comboBoxP2Line, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolShoulderPoint *line = qobject_cast<VisToolShoulderPoint *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2015-02-03 09:17:59 +01:00
|
|
|
line->setLineP2Id(value);
|
2013-07-29 14:55:40 +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 SetP1Line set id first point of line
|
2014-06-02 16:28:02 +02:00
|
|
|
* @param value id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
void DialogShoulderPoint::SetP1Line(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
setCurrentPointId(ui->comboBoxP1Line, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolShoulderPoint *line = qobject_cast<VisToolShoulderPoint *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2015-02-03 09:17:59 +01:00
|
|
|
line->setLineP1Id(value);
|
2013-07-29 14:55:40 +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 DialogShoulderPoint::SetFormula(const QString &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-05-23 17:23:39 +02:00
|
|
|
formula = qApp->TrVars()->FormulaToUser(value, qApp->Settings()->GetOsSeparator());
|
2014-06-09 12:56:07 +02:00
|
|
|
// increase height if needed.
|
|
|
|
if (formula.length() > 80)
|
|
|
|
{
|
|
|
|
this->DeployFormulaTextEdit();
|
|
|
|
}
|
|
|
|
ui->plainTextEditFormula->setPlainText(formula);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolShoulderPoint *line = qobject_cast<VisToolShoulderPoint *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2014-07-25 11:55:27 +02:00
|
|
|
line->setLength(formula);
|
2014-10-29 14:40:56 +01:00
|
|
|
MoveCursorToEnd(ui->plainTextEditFormula);
|
2013-07-29 14:55:40 +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 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 DialogShoulderPoint::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-29 14:55:40 +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 DialogShoulderPoint::SetPointName(const QString &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-29 14:55:40 +02:00
|
|
|
pointName = value;
|
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
|
|
}
|
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 DialogShoulderPoint::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 DialogShoulderPoint::GetFormula() const
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2016-03-05 16:27:07 +01:00
|
|
|
return qApp->TrVars()->TryFormulaFromUser(formula, qApp->Settings()->GetOsSeparator());
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
* @brief GetP1Line return id first point of line
|
2015-02-02 16:11:48 +01:00
|
|
|
* @return id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 DialogShoulderPoint::GetP1Line() const
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
return getCurrentObjectId(ui->comboBoxP1Line);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
* @brief GetP2Line return id second point of line
|
2015-02-02 16:11:48 +01:00
|
|
|
* @return id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 DialogShoulderPoint::GetP2Line() const
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
return getCurrentObjectId(ui->comboBoxP2Line);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getPShoulder return id shoulder point
|
|
|
|
* @return id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 DialogShoulderPoint::GetP3() const
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
return getCurrentObjectId(ui->comboBoxP3);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|