valentina/src/app/dialogs/tools/dialognormal.cpp

148 lines
5.5 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file dialognormal.cpp
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date November 15, 2013
**
** @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.
**
** Valentina is free software: you can redistribute it and/or modify
** 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.
**
** Valentina is distributed in the hope that it will be useful,
** 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-07-30 15:09:34 +02:00
#include "dialognormal.h"
#include "ui_dialognormal.h"
#include <QPushButton>
//---------------------------------------------------------------------------------------------------------------------
DialogNormal::DialogNormal(const VContainer *data, QWidget *parent)
:DialogTool(data, parent), ui(new Ui::DialogNormal), number(0), pointName(QString()),
typeLine(QString()), formula(QString()), angle(0), firstPointId(0), secondPointId(0)
{
2013-07-30 15:09:34 +02:00
ui->setupUi(this);
2014-03-06 14:28:46 +01:00
InitVariables(ui);
2013-07-30 15:09:34 +02:00
labelResultCalculation = ui->labelResultCalculation;
lineEditFormula = ui->lineEditFormula;
labelEditFormula = ui->labelEditFormula;
labelEditNamePoint = ui->labelEditNamePoint;
InitOkCancelApply(ui);
2014-03-06 14:28:46 +01:00
2013-07-30 15:09:34 +02:00
flagFormula = false;
flagName = false;
CheckState();
FillComboBoxPoints(ui->comboBoxFirstPoint);
FillComboBoxPoints(ui->comboBoxSecondPoint);
2013-07-30 15:09:34 +02:00
FillComboBoxTypeLine(ui->comboBoxLineType);
2014-03-04 19:14:11 +01:00
InitArrow(ui);
2013-07-30 15:09:34 +02:00
connect(ui->toolButtonPutHere, &QPushButton::clicked, this, &DialogNormal::PutHere);
connect(ui->listWidget, &QListWidget::itemDoubleClicked, this, &DialogNormal::PutVal);
connect(ui->toolButtonEqual, &QPushButton::clicked, this, &DialogNormal::EvalFormula);
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogNormal::NamePointChanged);
connect(ui->lineEditFormula, &QLineEdit::textChanged, this, &DialogNormal::FormulaChanged);
}
//---------------------------------------------------------------------------------------------------------------------
DialogNormal::~DialogNormal()
{
2013-07-30 15:09:34 +02:00
delete ui;
}
//---------------------------------------------------------------------------------------------------------------------
2014-03-11 12:43:24 +01:00
void DialogNormal::ChoosedObject(quint32 id, const Valentina::Scenes &type)
{
2014-03-11 12:43:24 +01:00
if (type == Valentina::Point)
{
if (number == 0)
{
2014-03-04 18:13:10 +01:00
if (ChoosedPoint(id, ui->comboBoxFirstPoint, tr("Select second point of line")))
{
2013-07-30 15:09:34 +02:00
number++;
return;
}
}
if (number == 1)
{
2014-03-04 18:13:10 +01:00
if (ChoosedPoint(id, ui->comboBoxSecondPoint, ""))
{
2014-03-04 18:13:10 +01:00
number = 0;
if (isInitialized == false)
{
this->show();
}
2013-07-30 15:09:34 +02:00
}
}
}
}
//---------------------------------------------------------------------------------------------------------------------
void DialogNormal::DialogAccepted()
{
2013-07-30 15:09:34 +02:00
pointName = ui->lineEditNamePoint->text();
typeLine = GetTypeLine(ui->comboBoxLineType);
formula = ui->lineEditFormula->text();
2013-09-12 16:18:31 +02:00
angle = ui->doubleSpinBoxAngle->value();
firstPointId = getCurrentObjectId(ui->comboBoxFirstPoint);
secondPointId = getCurrentObjectId(ui->comboBoxSecondPoint);
2013-07-30 15:09:34 +02:00
emit DialogClosed(QDialog::Accepted);
}
//---------------------------------------------------------------------------------------------------------------------
void DialogNormal::setSecondPointId(const quint32 &value, const quint32 &id)
{
setCurrentPointId(ui->comboBoxSecondPoint, secondPointId, value, id);
2013-07-30 15:09:34 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
void DialogNormal::setFirstPointId(const quint32 &value, const quint32 &id)
{
setCurrentPointId(ui->comboBoxFirstPoint, firstPointId, value, id);
2013-07-30 15:09:34 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
void DialogNormal::setAngle(const qreal &value)
{
2013-07-30 15:09:34 +02:00
angle = value;
2013-09-12 16:18:31 +02:00
ui->doubleSpinBoxAngle->setValue(angle);
2013-07-30 15:09:34 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
void DialogNormal::setFormula(const QString &value)
{
formula = qApp->FormulaToUser(value);
2013-07-30 15:09:34 +02:00
ui->lineEditFormula->setText(formula);
}
//---------------------------------------------------------------------------------------------------------------------
void DialogNormal::setTypeLine(const QString &value)
{
2013-07-30 15:09:34 +02:00
typeLine = value;
SetupTypeLine(ui->comboBoxLineType, value);
}
//---------------------------------------------------------------------------------------------------------------------
void DialogNormal::setPointName(const QString &value)
{
2013-07-30 15:09:34 +02:00
pointName = value;
ui->lineEditNamePoint->setText(pointName);
}