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 dialogline.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 20:39:51 +02:00
|
|
|
#include "dialogline.h"
|
|
|
|
#include "ui_dialogline.h"
|
|
|
|
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../geometry/vpointf.h"
|
|
|
|
#include "../../container/vcontainer.h"
|
2014-07-21 14:52:15 +02:00
|
|
|
#include "../../visualization/vistoolline.h"
|
2014-09-25 17:44:06 +02:00
|
|
|
#include "../../core/vapplication.h"
|
2014-07-15 15:51:15 +02:00
|
|
|
#include "../../widgets/vmaingraphicsscene.h"
|
2014-07-16 19:08:24 +02:00
|
|
|
#include "../../tools/vabstracttool.h"
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief DialogLine create dialog
|
|
|
|
* @param data container with data
|
|
|
|
* @param parent parent widget
|
|
|
|
*/
|
2014-07-29 14:19:11 +02:00
|
|
|
DialogLine::DialogLine(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
2014-08-17 17:20:55 +02:00
|
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogLine), number(0), firstPoint(NULL_ID), secondPoint(NULL_ID),
|
2014-07-29 14:19:11 +02:00
|
|
|
typeLine(QString()), line(nullptr)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-07-25 20:39:51 +02:00
|
|
|
ui->setupUi(this);
|
2014-07-16 19:08:24 +02:00
|
|
|
InitOkCancelApply(ui);
|
2013-12-21 12:36:51 +01:00
|
|
|
|
|
|
|
FillComboBoxPoints(ui->comboBoxFirstPoint);
|
|
|
|
FillComboBoxPoints(ui->comboBoxSecondPoint);
|
2014-02-12 11:55:24 +01:00
|
|
|
FillComboBoxTypeLine(ui->comboBoxLineType);
|
2013-12-21 12:36:51 +01:00
|
|
|
|
2013-07-25 20:39:51 +02:00
|
|
|
number = 0;
|
2014-07-14 15:33:03 +02:00
|
|
|
|
|
|
|
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);
|
2014-07-16 19:08:24 +02:00
|
|
|
|
2014-07-21 14:52:15 +02:00
|
|
|
line = new VisToolLine(data);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
DialogLine::~DialogLine()
|
|
|
|
{
|
2014-07-15 15:51:15 +02:00
|
|
|
delete line;
|
2013-07-25 20:39:51 +02:00
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setSecondPoint set id second point
|
|
|
|
* @param value id
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogLine::setSecondPoint(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-29 15:08:38 +02:00
|
|
|
setPointId(ui->comboBoxSecondPoint, secondPoint, value);
|
2014-07-16 19:08:24 +02:00
|
|
|
line->setPoint2Id(value);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setTypeLine set type of line
|
|
|
|
* @param value type
|
|
|
|
*/
|
2014-02-12 11:55:24 +01:00
|
|
|
void DialogLine::setTypeLine(const QString &value)
|
|
|
|
{
|
|
|
|
typeLine = value;
|
|
|
|
SetupTypeLine(ui->comboBoxLineType, value);
|
2014-07-16 19:08:24 +02:00
|
|
|
line->setLineStyle(VAbstractTool::LineStyle(typeLine));
|
2014-02-12 11:55:24 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @brief setFirstPoint set id first point
|
|
|
|
* @param value id
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void DialogLine::setFirstPoint(const quint32 &value)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-07-29 15:08:38 +02:00
|
|
|
setPointId(ui->comboBoxFirstPoint, firstPoint, value);
|
2014-07-16 19:08:24 +02:00
|
|
|
line->setPoint1Id(value);
|
2013-07-25 20:39:51 +02:00
|
|
|
}
|
|
|
|
|
2014-07-14 15:33:03 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogLine::PointNameChanged()
|
|
|
|
{
|
2014-07-14 18:28:41 +02:00
|
|
|
QColor color = okColor;
|
2014-07-14 15:33:03 +02:00
|
|
|
if (getCurrentObjectId(ui->comboBoxFirstPoint) == getCurrentObjectId(ui->comboBoxSecondPoint))
|
|
|
|
{
|
|
|
|
flagError = false;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = errorColor;
|
2014-07-14 15:33:03 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flagError = true;
|
2014-07-14 18:28:41 +02:00
|
|
|
color = okColor;
|
2014-07-14 15:33:03 +02:00
|
|
|
}
|
2014-07-14 18:28:41 +02:00
|
|
|
ChangeColor(ui->labelFirstPoint, color);
|
|
|
|
ChangeColor(ui->labelSecondPoint, color);
|
2014-07-14 15:33:03 +02:00
|
|
|
CheckState();
|
|
|
|
}
|
|
|
|
|
2014-07-15 16:28:19 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogLine::UpdateList()
|
|
|
|
{
|
|
|
|
/*
|
2014-07-16 19:08:24 +02:00
|
|
|
* Does nothing. We redefine this slot because it is only one now way block update list of variables.
|
2014-07-15 16:28:19 +02:00
|
|
|
* This dialog doesn't work with formula. Don't delete. Help avoid crash.
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2014-07-15 15:51:15 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogLine::ShowVisualization()
|
|
|
|
{
|
2014-08-12 19:21:50 +02:00
|
|
|
if (prepare == false)
|
|
|
|
{
|
|
|
|
VMainGraphicsScene *scene = qApp->getCurrentScene();
|
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, line, &VisToolLine::SetFactor);
|
|
|
|
scene->addItem(line);
|
|
|
|
line->RefreshGeometry();
|
|
|
|
}
|
2014-07-16 19:08:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void DialogLine::SaveData()
|
|
|
|
{
|
|
|
|
qint32 index = ui->comboBoxFirstPoint->currentIndex();
|
|
|
|
firstPoint = qvariant_cast<quint32>(ui->comboBoxFirstPoint->itemData(index));
|
|
|
|
index = ui->comboBoxSecondPoint->currentIndex();
|
|
|
|
secondPoint = qvariant_cast<quint32>(ui->comboBoxSecondPoint->itemData(index));
|
|
|
|
typeLine = GetTypeLine(ui->comboBoxLineType);
|
2014-07-23 10:56:32 +02:00
|
|
|
|
|
|
|
line->setPoint1Id(firstPoint);
|
|
|
|
line->setPoint2Id(secondPoint);
|
|
|
|
line->setLineStyle(VAbstractTool::LineStyle(typeLine));
|
|
|
|
line->RefreshGeometry();
|
2014-07-15 15:51:15 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-02 16:28:02 +02:00
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
*/
|
2014-07-15 16:42:41 +02:00
|
|
|
void DialogLine::ChosenObject(quint32 id, const SceneObject &type)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
if (prepare == false)// After first choose we ignore all objects
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
if (type == SceneObject::Point)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-17 20:49:29 +02:00
|
|
|
switch (number)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if (SetObject(id, ui->comboBoxFirstPoint, tr("Select second point")))
|
|
|
|
{
|
|
|
|
number++;
|
|
|
|
line->VisualMode(id);
|
|
|
|
}
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|