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 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.
|
|
|
|
** 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-25 14:00:51 +02:00
|
|
|
#include "dialogendline.h"
|
|
|
|
#include "ui_dialogendline.h"
|
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QPushButton>
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
DialogEndLine::DialogEndLine(const VContainer *data, QWidget *parent)
|
|
|
|
:DialogTool(data, parent), ui(new Ui::DialogEndLine), pointName(QString()), typeLine(QString()),
|
2013-11-04 21:35:15 +01:00
|
|
|
formula(QString()), angle(0), basePointId(0)
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
ui->setupUi(this);
|
2014-03-06 14:28:46 +01:00
|
|
|
InitVariables(ui);
|
2013-07-28 00:18:06 +02:00
|
|
|
labelResultCalculation = ui->labelResultCalculation;
|
|
|
|
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
|
|
|
|
|
|
|
InitOkCansel(ui);
|
2013-07-25 14:00:51 +02:00
|
|
|
flagFormula = false;
|
2013-07-28 00:18:06 +02:00
|
|
|
flagName = false;
|
|
|
|
CheckState();
|
2013-12-21 12:36:51 +01:00
|
|
|
|
|
|
|
FillComboBoxPoints(ui->comboBoxBasePoint);
|
2013-07-28 00:18:06 +02:00
|
|
|
FillComboBoxTypeLine(ui->comboBoxLineType);
|
2013-07-25 14:00:51 +02:00
|
|
|
|
2014-03-04 19:14:11 +01:00
|
|
|
InitArrow(ui);
|
|
|
|
|
2013-07-28 00:18:06 +02:00
|
|
|
connect(ui->toolButtonPutHere, &QPushButton::clicked, this, &DialogEndLine::PutHere);
|
2013-07-25 14:00:51 +02:00
|
|
|
connect(ui->listWidget, &QListWidget::itemDoubleClicked, this, &DialogEndLine::PutVal);
|
2013-07-28 00:18:06 +02:00
|
|
|
connect(ui->toolButtonEqual, &QPushButton::clicked, this, &DialogEndLine::EvalFormula);
|
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogEndLine::NamePointChanged);
|
2013-07-25 14:00:51 +02:00
|
|
|
connect(ui->lineEditFormula, &QLineEdit::textChanged, this, &DialogEndLine::FormulaChanged);
|
|
|
|
}
|
|
|
|
|
2014-03-11 12:43:24 +01:00
|
|
|
void DialogEndLine::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);
|
|
|
|
ChangeCurrentText(ui->comboBoxBasePoint, point->name());
|
2013-10-07 13:11:56 +02:00
|
|
|
emit ToolTip("");
|
2013-07-25 14:00:51 +02:00
|
|
|
this->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogEndLine::setPointName(const QString &value)
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
pointName = value;
|
|
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogEndLine::setTypeLine(const QString &value)
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
typeLine = value;
|
2013-07-29 14:55:40 +02:00
|
|
|
SetupTypeLine(ui->comboBoxLineType, value);
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogEndLine::setFormula(const QString &value)
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
formula = value;
|
|
|
|
ui->lineEditFormula->setText(formula);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogEndLine::setAngle(const qreal &value)
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
angle = value;
|
2013-09-12 16:18:31 +02:00
|
|
|
ui->doubleSpinBoxAngle->setValue(angle);
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogEndLine::setBasePointId(const quint32 &value, const quint32 &id)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
setCurrentPointId(ui->comboBoxBasePoint, basePointId, value, id);
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void DialogEndLine::DialogAccepted()
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
pointName = ui->lineEditNamePoint->text();
|
2013-07-28 00:18:06 +02:00
|
|
|
typeLine = GetTypeLine(ui->comboBoxLineType);
|
2013-07-25 14:00:51 +02:00
|
|
|
formula = ui->lineEditFormula->text();
|
2013-09-12 16:18:31 +02:00
|
|
|
angle = ui->doubleSpinBoxAngle->value();
|
2013-12-18 12:13:32 +01:00
|
|
|
basePointId = getCurrentObjectId(ui->comboBoxBasePoint);
|
2013-07-28 00:18:06 +02:00
|
|
|
emit DialogClosed(QDialog::Accepted);
|
2013-07-25 14:00:51 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogEndLine::~DialogEndLine()
|
|
|
|
{
|
2013-07-25 14:00:51 +02:00
|
|
|
delete ui;
|
|
|
|
}
|