10ba3eacbb
--HG-- branch : develop
180 lines
6.5 KiB
C++
180 lines
6.5 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialogpointofintersection.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 "dialogpointofintersection.h"
|
|
#include "ui_dialogpointofintersection.h"
|
|
|
|
#include "../../geometry/vpointf.h"
|
|
#include "../../container/vcontainer.h"
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogPointOfIntersection create dialog
|
|
* @param data container with data
|
|
* @param parent parent widget
|
|
*/
|
|
DialogPointOfIntersection::DialogPointOfIntersection(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogPointOfIntersection), number(0), pointName(QString()),
|
|
firstPointId(0), secondPointId(0)
|
|
{
|
|
ui->setupUi(this);
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
|
|
InitOkCancel(ui);
|
|
flagName = false;
|
|
CheckState();
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
|
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogPointOfIntersection::NamePointChanged);
|
|
connect(ui->comboBoxFirstPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogPointOfIntersection::PointNameChanged);
|
|
connect(ui->comboBoxSecondPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogPointOfIntersection::PointNameChanged);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogPointOfIntersection::~DialogPointOfIntersection()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setSecondPointId set id of second point
|
|
* @param value id
|
|
* @param id don't show this id in list.
|
|
*/
|
|
void DialogPointOfIntersection::setSecondPointId(const quint32 &value, const quint32 &id)
|
|
{
|
|
setPointId(ui->comboBoxSecondPoint, secondPointId, value, id);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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 DialogPointOfIntersection::ChosenObject(quint32 id, const SceneObject &type)
|
|
{
|
|
if (type == SceneObject::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 point horizontally"));
|
|
return;
|
|
}
|
|
}
|
|
if (number == 1)
|
|
{
|
|
qint32 index = ui->comboBoxSecondPoint->findText(point->name());
|
|
if ( index != -1 )
|
|
{ // -1 for not found
|
|
ui->comboBoxSecondPoint->setCurrentIndex(index);
|
|
number = 0;
|
|
emit ToolTip("");
|
|
}
|
|
if (isInitialized == false)
|
|
{
|
|
this->setModal(true);
|
|
this->show();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief DialogAccepted save data and emit signal about closed dialog.
|
|
*/
|
|
void DialogPointOfIntersection::DialogAccepted()
|
|
{
|
|
pointName = ui->lineEditNamePoint->text();
|
|
firstPointId = getCurrentObjectId(ui->comboBoxFirstPoint);
|
|
secondPointId = getCurrentObjectId(ui->comboBoxSecondPoint);
|
|
emit DialogClosed(QDialog::Accepted);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPointOfIntersection::PointNameChanged()
|
|
{
|
|
QColor color = okColor;
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) == getCurrentObjectId(ui->comboBoxSecondPoint))
|
|
{
|
|
flagError = false;
|
|
color = errorColor;
|
|
}
|
|
else
|
|
{
|
|
flagError = true;
|
|
color = okColor;
|
|
}
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
ChangeColor(ui->labelSecondPoint, color);
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogPointOfIntersection::UpdateList()
|
|
{
|
|
/*
|
|
* Does nothing. We redefine this slot because it is only one now way block update list of variable.
|
|
* This dialog doesn't work with formula. Don't delete. Help avoid crash.
|
|
*/
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setFirstPointId set id of first point
|
|
* @param value id
|
|
* @param id don't show this id in list.
|
|
*/
|
|
void DialogPointOfIntersection::setFirstPointId(const quint32 &value, const quint32 &id)
|
|
{
|
|
setPointId(ui->comboBoxFirstPoint, firstPointId, value, id);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setPointName set name of point
|
|
* @param value name
|
|
*/
|
|
void DialogPointOfIntersection::setPointName(const QString &value)
|
|
{
|
|
pointName = value;
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
}
|