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

240 lines
8.1 KiB
C++
Raw Normal View History

/************************************************************************
**
** @file dialogline.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-2015 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-25 20:39:51 +02:00
#include "dialogline.h"
#include "ui_dialogline.h"
#include "../../libs/vgeometry/vpointf.h"
#include "../../libs/vpatterndb/vcontainer.h"
#include "../../visualization/vistoolline.h"
#include "../../core/vapplication.h"
#include "../../widgets/vmaingraphicsscene.h"
#include "../../tools/vabstracttool.h"
//---------------------------------------------------------------------------------------------------------------------
/**
* @brief DialogLine create dialog
* @param data container with data
* @param parent parent widget
*/
DialogLine::DialogLine(const VContainer *data, const quint32 &toolId, QWidget *parent)
:DialogTool(data, toolId, parent), ui(new Ui::DialogLine)
{
2013-07-25 20:39:51 +02:00
ui->setupUi(this);
InitOkCancelApply(ui);
FillComboBoxPoints(ui->comboBoxFirstPoint);
FillComboBoxPoints(ui->comboBoxSecondPoint);
FillComboBoxLineColors(ui->comboBoxLineColor);
QMap<QString, QIcon> stylesPics = VAbstractTool::LineStylesPics();
stylesPics.remove(VAbstractTool::TypeLineNone);// Prevent hiding line
FillComboBoxTypeLine(ui->comboBoxLineType, stylesPics);
2013-07-25 20:39:51 +02:00
number = 0;
connect(ui->comboBoxFirstPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
this, &DialogLine::PointNameChanged);
connect(ui->comboBoxSecondPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
this, &DialogLine::PointNameChanged);
vis = new VisToolLine(data);
2013-07-25 20:39:51 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
DialogLine::~DialogLine()
{
DeleteVisualization<VisToolLine>();
2013-07-25 20:39:51 +02:00
delete ui;
}
//---------------------------------------------------------------------------------------------------------------------
/**
2015-02-03 11:17:04 +01:00
* @brief SetSecondPoint set id second point
* @param value id
*/
2015-02-03 11:17:04 +01:00
void DialogLine::SetSecondPoint(const quint32 &value)
{
setCurrentPointId(ui->comboBoxSecondPoint, value);
VisToolLine *line = qobject_cast<VisToolLine *>(vis);
SCASSERT(line != nullptr);
line->setPoint2Id(value);
2013-07-25 20:39:51 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
/**
2015-02-03 11:17:04 +01:00
* @brief SetTypeLine set type of line
* @param value type
*/
2015-02-03 11:17:04 +01:00
void DialogLine::SetTypeLine(const QString &value)
{
ChangeCurrentData(ui->comboBoxLineType, value);
vis->setLineStyle(VAbstractTool::LineStyleToPenStyle(value));
}
//---------------------------------------------------------------------------------------------------------------------
2015-02-03 11:17:04 +01:00
QString DialogLine::GetLineColor() const
2015-02-03 10:27:33 +01:00
{
2015-02-03 11:17:04 +01:00
return GetComboBoxCurrentData(ui->comboBoxLineColor);
2015-02-03 10:27:33 +01:00
}
//---------------------------------------------------------------------------------------------------------------------
2015-02-03 11:17:04 +01:00
void DialogLine::SetLineColor(const QString &value)
2015-02-03 10:27:33 +01:00
{
ChangeCurrentData(ui->comboBoxLineColor, value);
}
//---------------------------------------------------------------------------------------------------------------------
/**
2015-02-03 11:17:04 +01:00
* @brief SetFirstPoint set id first point
* @param value id
*/
2015-02-03 11:17:04 +01:00
void DialogLine::SetFirstPoint(const quint32 &value)
{
setCurrentPointId(ui->comboBoxFirstPoint, value);
VisToolLine *line = qobject_cast<VisToolLine *>(vis);
SCASSERT(line != nullptr);
line->setPoint1Id(value);
2013-07-25 20:39:51 +02:00
}
//---------------------------------------------------------------------------------------------------------------------
void DialogLine::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 DialogLine::ShowVisualization()
{
AddVisualization<VisToolLine>();
}
//---------------------------------------------------------------------------------------------------------------------
void DialogLine::SaveData()
{
VisToolLine *line = qobject_cast<VisToolLine *>(vis);
SCASSERT(line != nullptr);
2015-02-03 11:17:04 +01:00
line->setPoint1Id(GetFirstPoint());
line->setPoint2Id(GetSecondPoint());
line->setLineStyle(VAbstractTool::LineStyleToPenStyle(GetTypeLine()));
line->RefreshGeometry();
}
//---------------------------------------------------------------------------------------------------------------------
/**
* @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 DialogLine::ChosenObject(quint32 id, const SceneObject &type)
{
2014-08-17 20:49:29 +02:00
if (prepare == false)// After first choose we ignore all objects
{
2014-08-17 20:49:29 +02:00
if (type == SceneObject::Point)
{
2014-08-17 20:49:29 +02:00
switch (number)
{
case 0:
if (SetObject(id, ui->comboBoxFirstPoint, tr("Select second point")))
{
number++;
vis->VisualMode(id);
2014-08-17 20:49:29 +02:00
}
break;
case 1:
if (SetObject(id, ui->comboBoxSecondPoint, ""))
{
if (flagError)
{
number = 0;
prepare = true;
DialogAccepted();
}
}
break;
default:
break;
2013-07-25 20:39:51 +02:00
}
}
}
}
//---------------------------------------------------------------------------------------------------------------------
/**
2015-02-03 11:17:04 +01:00
* @brief GetFirstPoint return id first point
* @return id
*/
2015-02-03 11:17:04 +01:00
quint32 DialogLine::GetFirstPoint() const
{
#if QT_VERSION < QT_VERSION_CHECK(5, 2, 0)
return qvariant_cast<quint32>(ui->comboBoxFirstPoint->itemData(ui->comboBoxFirstPoint->currentIndex()));
#else
return qvariant_cast<quint32>(ui->comboBoxFirstPoint->currentData());
#endif
}
//---------------------------------------------------------------------------------------------------------------------
/**
2015-02-03 11:17:04 +01:00
* @brief GetSecondPoint return id second point
* @return id
*/
2015-02-03 11:17:04 +01:00
quint32 DialogLine::GetSecondPoint() const
{
#if QT_VERSION < QT_VERSION_CHECK(5, 2, 0)
return qvariant_cast<quint32>(ui->comboBoxSecondPoint->itemData(ui->comboBoxSecondPoint->currentIndex()));
#else
return qvariant_cast<quint32>(ui->comboBoxSecondPoint->currentData());
#endif
}
//---------------------------------------------------------------------------------------------------------------------
/**
2015-02-03 11:17:04 +01:00
* @brief GetTypeLine return type of line
* @return type
*/
2015-02-03 11:17:04 +01:00
QString DialogLine::GetTypeLine() const
{
2015-02-03 11:17:04 +01:00
return GetComboBoxCurrentData(ui->comboBoxLineType);
}