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 dialogpointofcontact.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-08-21 10:03:53 +02:00
|
|
|
#include "dialogpointofcontact.h"
|
|
|
|
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../../../vgeometry/vpointf.h"
|
|
|
|
#include "../../../vpatterndb/vcontainer.h"
|
|
|
|
#include "../../../vpatterndb/vtranslatevars.h"
|
2014-08-14 15:43:30 +02:00
|
|
|
#include "../../visualization/vistoolpointofcontact.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
#include "../../../vwidgets/vmaingraphicsscene.h"
|
|
|
|
#include "../support/dialogeditwrongformula.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 DialogPointOfContact create dialog
|
|
|
|
* @param data container with data
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2014-07-29 14:19:11 +02:00
|
|
|
DialogPointOfContact::DialogPointOfContact(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
2015-05-21 21:24:31 +02:00
|
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogPointOfContact), radius(QString()), formulaBaseHeight(0)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-06-09 15:00:26 +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));
|
2014-06-09 15:00:26 +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-06-09 15:00:26 +02:00
|
|
|
|
|
|
|
InitOkCancelApply(ui);
|
2014-03-06 14:28:46 +01:00
|
|
|
flagFormula = false;
|
2013-08-21 10:03:53 +02:00
|
|
|
CheckState();
|
2013-12-21 12:36:51 +01:00
|
|
|
|
2014-06-09 15:00:26 +02:00
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
2014-06-19 13:43:02 +02:00
|
|
|
FillComboBoxPoints(ui->comboBoxCenter);
|
2013-08-21 10:03:53 +02:00
|
|
|
|
2015-04-29 20:26:32 +02:00
|
|
|
connect(ui->toolButtonExprRadius, &QPushButton::clicked, this, &DialogPointOfContact::FXRadius);
|
2014-06-09 15:00:26 +02:00
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfContact::NamePointChanged);
|
|
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogPointOfContact::FormulaTextChanged);
|
|
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogPointOfContact::DeployFormulaTextEdit);
|
2014-07-14 17:15:55 +02:00
|
|
|
connect(ui->comboBoxFirstPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogPointOfContact::PointNameChanged);
|
|
|
|
connect(ui->comboBoxSecondPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogPointOfContact::PointNameChanged);
|
|
|
|
connect(ui->comboBoxCenter, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
|
|
this, &DialogPointOfContact::PointNameChanged);
|
2014-08-14 15:43:30 +02:00
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
vis = new VisToolPointOfContact(data);
|
2015-06-25 09:05:19 +02:00
|
|
|
|
|
|
|
FixateSize();
|
2014-08-14 15:43:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
DialogPointOfContact::~DialogPointOfContact()
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
DeleteVisualization<VisToolPointOfContact>();
|
2014-08-14 15:43:30 +02:00
|
|
|
delete ui;
|
2014-06-09 15:00:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfContact::FormulaTextChanged()
|
|
|
|
{
|
2014-06-09 18:37:11 +02:00
|
|
|
this->FormulaChangedPlainText();
|
2014-06-09 15:00:26 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 17:15:55 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfContact::PointNameChanged()
|
|
|
|
{
|
|
|
|
QSet<quint32> set;
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxFirstPoint));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxSecondPoint));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxCenter));
|
|
|
|
|
2014-07-14 18:28:41 +02:00
|
|
|
QColor color = okColor;
|
2014-07-14 17:15:55 +02:00
|
|
|
if (set.size() != 3)
|
|
|
|
{
|
|
|
|
flagError = false;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = errorColor;
|
2014-07-14 17:15:55 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flagError = true;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = okColor;
|
2014-07-14 17:15:55 +02:00
|
|
|
}
|
2014-07-14 18:28:41 +02:00
|
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
|
|
ChangeColor(ui->labelSecondPoint, color);
|
|
|
|
ChangeColor(ui->labelArcCenter, color);
|
2014-07-14 17:15:55 +02:00
|
|
|
CheckState();
|
|
|
|
}
|
|
|
|
|
2015-04-29 20:26:32 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfContact::FXRadius()
|
|
|
|
{
|
|
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
|
|
dialog->setWindowTitle(tr("Edit radius"));
|
|
|
|
dialog->SetFormula(getRadius());
|
2015-07-03 17:54:25 +02:00
|
|
|
dialog->setPostfix(VDomDocument::UnitsToStr(qApp->patternUnit(), true));
|
2015-04-29 20:26:32 +02:00
|
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
setRadius(dialog->GetFormula());
|
|
|
|
}
|
|
|
|
delete dialog;
|
|
|
|
}
|
|
|
|
|
2014-08-14 15:43:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfContact::ShowVisualization()
|
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
AddVisualization<VisToolPointOfContact>();
|
2014-08-14 15:43:30 +02:00
|
|
|
}
|
|
|
|
|
2014-06-09 15:00:26 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfContact::DeployFormulaTextEdit()
|
|
|
|
{
|
2014-06-19 11:29:56 +02:00
|
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLength, formulaBaseHeight);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
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 DialogPointOfContact::ChosenObject(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
if (prepare == false)// After first choose we ignore all objects
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
if (type == SceneObject::Point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-05-21 21:24:31 +02:00
|
|
|
VisToolPointOfContact *line = qobject_cast<VisToolPointOfContact *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
|
|
|
|
2014-08-17 20:49:29 +02:00
|
|
|
switch (number)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
case 0:
|
|
|
|
if (SetObject(id, ui->comboBoxFirstPoint, tr("Select second point of line")))
|
|
|
|
{
|
|
|
|
number++;
|
|
|
|
line->VisualMode(id);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
2014-11-09 11:57:49 +01:00
|
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) != id)
|
2014-08-17 20:49:29 +02:00
|
|
|
{
|
2014-11-09 11:57:49 +01:00
|
|
|
if (SetObject(id, ui->comboBoxSecondPoint, tr("Select point of center of arc")))
|
|
|
|
{
|
|
|
|
number++;
|
|
|
|
line->setLineP2Id(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->comboBoxFirstPoint));
|
|
|
|
set.insert(getCurrentObjectId(ui->comboBoxSecondPoint));
|
|
|
|
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->comboBoxCenter, ""))
|
|
|
|
{
|
|
|
|
line->setRadiusId(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-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-09 15:00:26 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfContact::SaveData()
|
|
|
|
{
|
|
|
|
pointName = ui->lineEditNamePoint->text();
|
|
|
|
radius = ui->plainTextEditFormula->toPlainText();
|
2014-06-16 19:18:36 +02:00
|
|
|
radius.replace("\n", " ");
|
2014-08-14 15:43:30 +02:00
|
|
|
|
2015-05-21 21:24:31 +02:00
|
|
|
VisToolPointOfContact *line = qobject_cast<VisToolPointOfContact *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
|
|
|
|
2015-02-03 11:17:04 +01:00
|
|
|
line->setPoint1Id(GetFirstPoint());
|
|
|
|
line->setLineP2Id(GetSecondPoint());
|
2015-02-03 09:17:59 +01:00
|
|
|
line->setRadiusId(getCenter());
|
2014-08-14 15:43:30 +02:00
|
|
|
line->setRadius(radius);
|
|
|
|
line->RefreshGeometry();
|
2014-06-09 15:00:26 +02:00
|
|
|
}
|
|
|
|
|
2014-11-22 19:37:59 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogPointOfContact::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
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
* @brief SetSecondPoint set id second point
|
2014-06-02 16:28:02 +02:00
|
|
|
* @param value id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
void DialogPointOfContact::SetSecondPoint(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
setCurrentPointId(ui->comboBoxSecondPoint, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolPointOfContact *line = qobject_cast<VisToolPointOfContact *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2015-02-03 09:17:59 +01:00
|
|
|
line->setLineP2Id(value);
|
2013-08-21 10:03:53 +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 SetFirstPoint set id first point
|
2014-06-02 16:28:02 +02:00
|
|
|
* @param value id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
void DialogPointOfContact::SetFirstPoint(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
setCurrentPointId(ui->comboBoxFirstPoint, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolPointOfContact *line = qobject_cast<VisToolPointOfContact *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2015-02-03 09:17:59 +01:00
|
|
|
line->setPoint1Id(value);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief SetCenter set id of center point
|
|
|
|
* @param value id
|
|
|
|
*/
|
2014-07-29 15:08:38 +02:00
|
|
|
void DialogPointOfContact::setCenter(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
setCurrentPointId(ui->comboBoxCenter, value);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolPointOfContact *line = qobject_cast<VisToolPointOfContact *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2015-02-03 09:17:59 +01:00
|
|
|
line->setRadiusId(value);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setRadius set formula radius of arc
|
|
|
|
* @param value formula
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfContact::setRadius(const QString &value)
|
|
|
|
{
|
2015-06-11 12:15:57 +02:00
|
|
|
radius = qApp->TrVars()->FormulaToUser(value);
|
2014-06-09 15:00:26 +02:00
|
|
|
// increase height if needed.
|
|
|
|
if (radius.length() > 80)
|
|
|
|
{
|
|
|
|
this->DeployFormulaTextEdit();
|
|
|
|
}
|
|
|
|
ui->plainTextEditFormula->setPlainText(radius);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
|
|
|
VisToolPointOfContact *line = qobject_cast<VisToolPointOfContact *>(vis);
|
|
|
|
SCASSERT(line != nullptr);
|
2014-08-14 15:43:30 +02:00
|
|
|
line->setRadius(radius);
|
2015-05-21 21:24:31 +02:00
|
|
|
|
2014-10-29 14:40:56 +01:00
|
|
|
MoveCursorToEnd(ui->plainTextEditFormula);
|
2013-08-21 10:03:53 +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 DialogPointOfContact::SetPointName(const QString &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
pointName = value;
|
2014-06-09 15:00:26 +02:00
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
2015-02-02 16:11:48 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getRadius return formula radius of arc
|
|
|
|
* @return formula
|
|
|
|
*/
|
|
|
|
QString DialogPointOfContact::getRadius() const
|
|
|
|
{
|
2015-06-18 10:49:25 +02:00
|
|
|
return qApp->TrVars()->FormulaFromUser(radius, qApp->Settings()->GetOsSeparator());
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief GetCenter return id of center point
|
|
|
|
* @return id
|
|
|
|
*/
|
|
|
|
quint32 DialogPointOfContact::getCenter() const
|
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
return getCurrentObjectId(ui->comboBoxCenter);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
* @brief GetFirstPoint return id first point
|
2015-02-02 16:11:48 +01:00
|
|
|
* @return id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 DialogPointOfContact::GetFirstPoint() const
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
return getCurrentObjectId(ui->comboBoxFirstPoint);;
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
2015-02-03 11:17:04 +01:00
|
|
|
* @brief GetSecondPoint return id second point
|
2015-02-02 16:11:48 +01:00
|
|
|
* @return id
|
|
|
|
*/
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 DialogPointOfContact::GetSecondPoint() const
|
2015-02-02 16:11:48 +01:00
|
|
|
{
|
2015-02-03 09:17:59 +01:00
|
|
|
return getCurrentObjectId(ui->comboBoxSecondPoint);
|
2015-02-02 16:11:48 +01:00
|
|
|
}
|