695b357c4a
--HG-- branch : develop
266 lines
10 KiB
C++
266 lines
10 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialogpointofcontact.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/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "dialogpointofcontact.h"
|
|
|
|
#include <QPushButton>
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogPointOfContact create dialog
|
|
* @param data container with data
|
|
* @param parent parent widget
|
|
*/
|
|
DialogPointOfContact::DialogPointOfContact(const VContainer *data, QWidget *parent)
|
|
:DialogTool(data, parent), ui(new Ui::DialogPointOfContact), number(0), pointName(QString()), radius(QString()), center(0),
|
|
firstPoint(0), secondPoint(0)
|
|
{
|
|
ui->setupUi(this);
|
|
InitVariables(ui);
|
|
listWidget = ui->listWidget;
|
|
labelResultCalculation = ui->labelResultCalculation;
|
|
labelDescription = ui->labelDescription;
|
|
radioButtonSizeGrowth = ui->radioButtonSizeGrowth;
|
|
radioButtonStandardTable = ui->radioButtonStandardTable;
|
|
radioButtonIncrements = ui->radioButtonIncrements;
|
|
radioButtonLengthLine = ui->radioButtonLengthLine;
|
|
radioButtonLengthArc = ui->radioButtonLengthArc;
|
|
radioButtonLengthCurve = ui->radioButtonLengthSpline;
|
|
plainTextEditFormula = ui->plainTextEditFormula;
|
|
labelEditFormula = ui->labelEditFormula;
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
|
|
this->formulaBaseHeight=ui->plainTextEditFormula->height();
|
|
InitOkCancelApply(ui);
|
|
|
|
/* bOk = ui.buttonBox->button(QDialogButtonBox::Ok);
|
|
SCASSERT(bOk != nullptr);
|
|
connect(bOk, &QPushButton::clicked, this, &DialogTool::DialogAccepted);
|
|
QPushButton *bCansel = ui.buttonBox->button(QDialogButtonBox::Cancel);
|
|
SCASSERT(bCansel != nullptr);
|
|
connect(bCansel, &QPushButton::clicked, this, &DialogTool::DialogRejected);
|
|
*/
|
|
flagFormula = false;
|
|
flagName = false;
|
|
CheckState();
|
|
|
|
FillComboBoxPoints(ui->comboBoxCenter);
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
|
|
connect(ui->toolButtonPutHere, &QPushButton::clicked, this, &DialogPointOfContact::PutHere);
|
|
connect(ui->listWidget, &QListWidget::itemDoubleClicked, this, &DialogPointOfContact::PutVal);
|
|
connect(ui->listWidget, &QListWidget::currentRowChanged, this, &DialogPointOfContact::ValChenged);
|
|
|
|
if (qApp->patternType() == Pattern::Standard)
|
|
{
|
|
SizeHeight();
|
|
connect(ui->radioButtonSizeGrowth, &QRadioButton::clicked, this, &DialogTool::SizeHeight);
|
|
}
|
|
else
|
|
{
|
|
radioButtonSizeGrowth->setVisible(false);
|
|
Measurements();
|
|
}
|
|
connect(ui->radioButtonStandardTable, &QRadioButton::clicked, this, &DialogPointOfContact::Measurements);
|
|
connect(ui->radioButtonIncrements, &QRadioButton::clicked, this, &DialogPointOfContact::Increments);
|
|
connect(ui->radioButtonLengthLine, &QRadioButton::clicked, this, &DialogPointOfContact::LengthLines);
|
|
connect(ui->radioButtonLengthArc, &QRadioButton::clicked, this, &DialogPointOfContact::LengthArcs);
|
|
connect(ui->radioButtonLengthSpline, &QRadioButton::clicked, this, &DialogPointOfContact::LengthCurves);
|
|
connect(ui->toolButtonEqual, &QPushButton::clicked, this, &DialogPointOfContact::EvalFormula);
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfContact::NamePointChanged);
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogPointOfContact::FormulaTextChanged);
|
|
connect(ui->pushButtonGrowLength, &QPushButton::clicked, this, &DialogPointOfContact::DeployFormulaTextEdit);
|
|
|
|
ui->pushButtonGrowLength->setIcon(QIcon::fromTheme("go-down",
|
|
QIcon(":/icons/win.icon.theme/icons/win.icon.theme/16x16/actions/go-down.png")));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPointOfContact::FormulaTextChanged()
|
|
{
|
|
this->FormulaChangedPlainText();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPointOfContact::DeployFormulaTextEdit()
|
|
{
|
|
if (ui->plainTextEditFormula->height() < DIALOGPOINTOFCONTACT_MAX_FORMULA_HEIGHT)
|
|
{
|
|
ui->plainTextEditFormula->setFixedHeight(DIALOGPOINTOFCONTACT_MAX_FORMULA_HEIGHT);
|
|
//Set icon from theme (internal for Windows system)
|
|
ui->pushButtonGrowLength->setIcon(QIcon::fromTheme("go-next",
|
|
QIcon(":/icons/win.icon.theme/icons/win.icon.theme/16x16/actions/go-next.png")));
|
|
}
|
|
else
|
|
{
|
|
ui->plainTextEditFormula->setFixedHeight(this->formulaBaseHeight);
|
|
//Set icon from theme (internal for Windows system)
|
|
ui->pushButtonGrowLength->setIcon(QIcon::fromTheme("go-down",
|
|
QIcon(":/icons/win.icon.theme/icons/win.icon.theme/16x16/actions/go-down.png")));
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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
|
|
*/
|
|
void DialogPointOfContact::ChoosedObject(quint32 id, const Valentina::Scenes &type)
|
|
{
|
|
if (type == Valentina::Point)
|
|
{
|
|
const VPointF *point = data->GeometricObject<const VPointF *>(id);
|
|
if (number == 0)
|
|
{
|
|
qint32 index = ui->comboBoxFirstPoint->findText(point->name());
|
|
if ( index != -1 )
|
|
{ // -1 for not found
|
|
ui->comboBoxFirstPoint->setCurrentIndex(index);
|
|
number++;
|
|
emit ToolTip(tr("Select second point of line"));
|
|
return;
|
|
}
|
|
}
|
|
if (number == 1)
|
|
{
|
|
qint32 index = ui->comboBoxSecondPoint->findText(point->name());
|
|
if ( index != -1 )
|
|
{ // -1 for not found
|
|
ui->comboBoxSecondPoint->setCurrentIndex(index);
|
|
number++;
|
|
emit ToolTip(tr("Select point of center of arc"));
|
|
return;
|
|
}
|
|
}
|
|
if (number == 2)
|
|
{
|
|
qint32 index = ui->comboBoxCenter->findText(point->name());
|
|
if ( index != -1 )
|
|
{ // -1 for not found
|
|
ui->comboBoxCenter->setCurrentIndex(index);
|
|
number = 0;
|
|
emit ToolTip("");
|
|
}
|
|
if (isInitialized == false)
|
|
{
|
|
this->show();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogAccepted save data and emit signal about closed dialog.
|
|
*/
|
|
void DialogPointOfContact::DialogAccepted()
|
|
{
|
|
this->SaveData();
|
|
emit DialogClosed(QDialog::Accepted);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPointOfContact::DialogApply()
|
|
{
|
|
this->SaveData();
|
|
emit DialogApplied();
|
|
}
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPointOfContact::SaveData()
|
|
{
|
|
pointName = ui->lineEditNamePoint->text();
|
|
radius = ui->plainTextEditFormula->toPlainText();
|
|
radius.replace("\n"," ");
|
|
center = getCurrentObjectId(ui->comboBoxCenter);
|
|
firstPoint = getCurrentObjectId(ui->comboBoxFirstPoint);
|
|
secondPoint = getCurrentObjectId(ui->comboBoxSecondPoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setSecondPoint set id second point
|
|
* @param value id
|
|
* @param id don't show this id in list.
|
|
*/
|
|
void DialogPointOfContact::setSecondPoint(const quint32 &value, const quint32 &id)
|
|
{
|
|
setCurrentPointId(ui->comboBoxSecondPoint, secondPoint, value, id);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setFirstPoint set id first point
|
|
* @param value id
|
|
* @param id don't show this id in list.
|
|
*/
|
|
void DialogPointOfContact::setFirstPoint(const quint32 &value, const quint32 &id)
|
|
{
|
|
setCurrentPointId(ui->comboBoxFirstPoint, firstPoint, value, id);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SetCenter set id of center point
|
|
* @param value id
|
|
* @param id don't show this id in list.
|
|
*/
|
|
void DialogPointOfContact::setCenter(const quint32 &value, const quint32 &id)
|
|
{
|
|
setCurrentPointId(ui->comboBoxCenter, center, value, id);
|
|
center = value;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setRadius set formula radius of arc
|
|
* @param value formula
|
|
*/
|
|
void DialogPointOfContact::setRadius(const QString &value)
|
|
{
|
|
radius = value;
|
|
// increase height if needed.
|
|
if (radius.length() > 80)
|
|
{
|
|
this->DeployFormulaTextEdit();
|
|
}
|
|
ui->plainTextEditFormula->setPlainText(radius);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setPointName set name of point
|
|
* @param value name
|
|
*/
|
|
void DialogPointOfContact::setPointName(const QString &value)
|
|
{
|
|
pointName = value;
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
}
|