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.
|
|
|
|
** 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-08-21 10:03:53 +02:00
|
|
|
#include "dialogpointofcontact.h"
|
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QPushButton>
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-12-21 12:36:51 +01:00
|
|
|
DialogPointOfContact::DialogPointOfContact(const VContainer *data, QWidget *parent)
|
|
|
|
:DialogTool(data, parent), ui(), number(0), pointName(QString()), radius(QString()), center(0),
|
2013-11-04 21:35:15 +01:00
|
|
|
firstPoint(0), secondPoint(0)
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
ui.setupUi(this);
|
|
|
|
listWidget = ui.listWidget;
|
|
|
|
labelResultCalculation = ui.labelResultCalculation;
|
|
|
|
labelDescription = ui.labelDescription;
|
|
|
|
radioButtonSizeGrowth = ui.radioButtonSizeGrowth;
|
2014-01-15 00:55:41 +01:00
|
|
|
radioButtonStandardTable = ui.radioButtonStandardTable;
|
2013-08-21 10:03:53 +02:00
|
|
|
radioButtonIncrements = ui.radioButtonIncrements;
|
|
|
|
radioButtonLengthLine = ui.radioButtonLengthLine;
|
2013-10-13 17:31:42 +02:00
|
|
|
radioButtonLengthArc = ui.radioButtonLengthArc;
|
|
|
|
radioButtonLengthCurve = ui.radioButtonLengthSpline;
|
2013-08-21 10:03:53 +02:00
|
|
|
lineEditFormula = ui.lineEditFormula;
|
2013-10-06 18:22:21 +02:00
|
|
|
labelEditFormula = ui.labelEditFormula;
|
|
|
|
labelEditNamePoint = ui.labelEditNamePoint;
|
2014-03-06 14:28:46 +01:00
|
|
|
|
2013-08-21 10:03:53 +02:00
|
|
|
bOk = ui.buttonBox->button(QDialogButtonBox::Ok);
|
2014-03-06 14:28:46 +01:00
|
|
|
Q_CHECK_PTR(bOk);
|
|
|
|
connect(bOk, &QPushButton::clicked, this, &DialogTool::DialogAccepted);
|
|
|
|
QPushButton *bCansel = ui.buttonBox->button(QDialogButtonBox::Cancel);
|
|
|
|
Q_CHECK_PTR(bCansel);
|
|
|
|
connect(bCansel, &QPushButton::clicked, this, &DialogTool::DialogRejected);
|
|
|
|
|
|
|
|
flagFormula = false;
|
2013-08-21 10:03:53 +02:00
|
|
|
flagName = false;
|
|
|
|
CheckState();
|
2013-12-21 12:36:51 +01:00
|
|
|
|
|
|
|
FillComboBoxPoints(ui.comboBoxCenter);
|
|
|
|
FillComboBoxPoints(ui.comboBoxFirstPoint);
|
|
|
|
FillComboBoxPoints(ui.comboBoxSecondPoint);
|
2013-08-21 10:03:53 +02:00
|
|
|
|
|
|
|
connect(ui.toolButtonPutHere, &QPushButton::clicked, this, &DialogPointOfContact::PutHere);
|
|
|
|
connect(ui.listWidget, &QListWidget::itemDoubleClicked, this, &DialogPointOfContact::PutVal);
|
|
|
|
connect(ui.listWidget, &QListWidget::currentRowChanged, this, &DialogPointOfContact::ValChenged);
|
|
|
|
|
2014-03-19 19:27:11 +01:00
|
|
|
if (qApp->patternType() == Pattern::Standard)
|
2014-03-16 14:17:39 +01:00
|
|
|
{
|
|
|
|
SizeHeight();
|
|
|
|
connect(ui.radioButtonSizeGrowth, &QRadioButton::clicked, this, &DialogTool::SizeHeight);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
radioButtonSizeGrowth->setVisible(false);
|
|
|
|
Measurements();
|
|
|
|
}
|
|
|
|
connect(ui.radioButtonStandardTable, &QRadioButton::clicked, this, &DialogPointOfContact::Measurements);
|
2013-08-21 10:03:53 +02:00
|
|
|
connect(ui.radioButtonIncrements, &QRadioButton::clicked, this, &DialogPointOfContact::Increments);
|
|
|
|
connect(ui.radioButtonLengthLine, &QRadioButton::clicked, this, &DialogPointOfContact::LengthLines);
|
2013-10-13 17:31:42 +02:00
|
|
|
connect(ui.radioButtonLengthArc, &QRadioButton::clicked, this, &DialogPointOfContact::LengthArcs);
|
|
|
|
connect(ui.radioButtonLengthSpline, &QRadioButton::clicked, this, &DialogPointOfContact::LengthCurves);
|
2013-08-21 10:03:53 +02:00
|
|
|
connect(ui.toolButtonEqual, &QPushButton::clicked, this, &DialogPointOfContact::EvalFormula);
|
|
|
|
connect(ui.lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfContact::NamePointChanged);
|
|
|
|
connect(ui.lineEditFormula, &QLineEdit::textChanged, this, &DialogPointOfContact::FormulaChanged);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-03-11 12:43:24 +01:00
|
|
|
void DialogPointOfContact::ChoosedObject(quint32 id, const Valentina::Scenes &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-03-11 12:43:24 +01:00
|
|
|
if (type == Valentina::Point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = data->GeometricObject<const VPointF *>(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (number == 0)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
qint32 index = ui.comboBoxFirstPoint->findText(point->name());
|
2013-11-04 21:35:15 +01:00
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
2013-08-21 10:03:53 +02:00
|
|
|
ui.comboBoxFirstPoint->setCurrentIndex(index);
|
|
|
|
number++;
|
2013-10-07 13:11:56 +02:00
|
|
|
emit ToolTip(tr("Select second point of line"));
|
2013-08-21 10:03:53 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (number == 1)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
qint32 index = ui.comboBoxSecondPoint->findText(point->name());
|
2013-11-04 21:35:15 +01:00
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
2013-08-21 10:03:53 +02:00
|
|
|
ui.comboBoxSecondPoint->setCurrentIndex(index);
|
|
|
|
number++;
|
2013-10-07 13:11:56 +02:00
|
|
|
emit ToolTip(tr("Select point of center of arc"));
|
2013-08-21 10:03:53 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (number == 2)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
qint32 index = ui.comboBoxCenter->findText(point->name());
|
2013-11-04 21:35:15 +01:00
|
|
|
if ( index != -1 )
|
|
|
|
{ // -1 for not found
|
2013-08-21 10:03:53 +02:00
|
|
|
ui.comboBoxCenter->setCurrentIndex(index);
|
|
|
|
number = 0;
|
2013-10-07 13:11:56 +02:00
|
|
|
emit ToolTip("");
|
2013-08-21 10:03:53 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (isInitialized == false)
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfContact::DialogAccepted()
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
pointName = ui.lineEditNamePoint->text();
|
|
|
|
radius = ui.lineEditFormula->text();
|
2013-12-18 12:13:32 +01:00
|
|
|
center = getCurrentObjectId(ui.comboBoxCenter);
|
|
|
|
firstPoint = getCurrentObjectId(ui.comboBoxFirstPoint);
|
|
|
|
secondPoint = getCurrentObjectId(ui.comboBoxSecondPoint);
|
2013-08-21 10:03:53 +02:00
|
|
|
emit DialogClosed(QDialog::Accepted);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogPointOfContact::setSecondPoint(const quint32 &value, const quint32 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
setCurrentPointId(ui.comboBoxSecondPoint, secondPoint, value, id);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogPointOfContact::setFirstPoint(const quint32 &value, const quint32 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
setCurrentPointId(ui.comboBoxFirstPoint, firstPoint, value, id);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogPointOfContact::setCenter(const quint32 &value, const quint32 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
setCurrentPointId(ui.comboBoxCenter, center, value, id);
|
|
|
|
center = value;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfContact::setRadius(const QString &value)
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
radius = value;
|
|
|
|
ui.lineEditFormula->setText(radius);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogPointOfContact::setPointName(const QString &value)
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
pointName = value;
|
|
|
|
ui.lineEditNamePoint->setText(pointName);
|
|
|
|
}
|