fdc1eac734
--HG-- branch : develop
396 lines
15 KiB
C++
396 lines
15 KiB
C++
/************************************************************************
|
|
**
|
|
** @file dialoglineintersectaxis.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 19 10, 2014
|
|
**
|
|
** @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/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "dialoglineintersectaxis.h"
|
|
|
|
#include <QColor>
|
|
#include <QComboBox>
|
|
#include <QDialog>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QLineF>
|
|
#include <QPlainTextEdit>
|
|
#include <QPointF>
|
|
#include <QPointer>
|
|
#include <QPushButton>
|
|
#include <QSet>
|
|
#include <QSharedPointer>
|
|
#include <QTimer>
|
|
#include <QToolButton>
|
|
#include <new>
|
|
|
|
#include "../vgeometry/vpointf.h"
|
|
#include "../vpatterndb/vcontainer.h"
|
|
#include "../vpatterndb/vtranslatevars.h"
|
|
#include "../vwidgets/vmaingraphicsscene.h"
|
|
#include "../vwidgets/vabstractmainwindow.h"
|
|
#include "../../tools/vabstracttool.h"
|
|
#include "../../visualization/line/vistoollineintersectaxis.h"
|
|
#include "../../visualization/visualization.h"
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
#include "../support/dialogeditwrongformula.h"
|
|
#include "../vmisc/vabstractapplication.h"
|
|
#include "../vmisc/vcommonsettings.h"
|
|
#include "ui_dialoglineintersectaxis.h"
|
|
|
|
class QCloseEvent;
|
|
class QWidget;
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogLineIntersectAxis::DialogLineIntersectAxis(const VContainer *data, const quint32 &toolId, QWidget *parent)
|
|
:DialogTool(data, toolId, parent), ui(new Ui::DialogLineIntersectAxis), formulaAngle(QString()),
|
|
formulaBaseHeightAngle(0)
|
|
{
|
|
ui->setupUi(this);
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(5, 2, 0)
|
|
ui->lineEditNamePoint->setClearButtonEnabled(true);
|
|
#endif
|
|
|
|
InitFormulaUI(ui);
|
|
ui->lineEditNamePoint->setText(qApp->getCurrentDocument()->GenerateLabel(LabelType::NewLabel));
|
|
labelEditNamePoint = ui->labelEditNamePoint;
|
|
this->formulaBaseHeightAngle = ui->plainTextEditFormula->height();
|
|
ui->plainTextEditFormula->installEventFilter(this);
|
|
|
|
InitOkCancelApply(ui);
|
|
flagFormula = false;
|
|
CheckState();
|
|
|
|
FillComboBoxPoints(ui->comboBoxAxisPoint);
|
|
FillComboBoxPoints(ui->comboBoxFirstLinePoint);
|
|
FillComboBoxPoints(ui->comboBoxSecondLinePoint);
|
|
FillComboBoxTypeLine(ui->comboBoxLineType, VAbstractTool::LineStylesPics());
|
|
FillComboBoxLineColors(ui->comboBoxLineColor);
|
|
|
|
connect(ui->toolButtonExprAngle, &QPushButton::clicked, this, &DialogLineIntersectAxis::FXAngle);
|
|
connect(ui->lineEditNamePoint, &QLineEdit::textChanged, this, &DialogLineIntersectAxis::NamePointChanged);
|
|
connect(ui->plainTextEditFormula, &QPlainTextEdit::textChanged, this, &DialogLineIntersectAxis::AngleTextChanged);
|
|
connect(ui->pushButtonGrowLengthAngle, &QPushButton::clicked, this, &DialogLineIntersectAxis::DeployAngleTextEdit);
|
|
connect(timerFormula, &QTimer::timeout, this, &DialogLineIntersectAxis::EvalAngle);
|
|
connect(ui->comboBoxFirstLinePoint,
|
|
static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogLineIntersectAxis::PointNameChanged);
|
|
connect(ui->comboBoxSecondLinePoint,
|
|
static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogLineIntersectAxis::PointNameChanged);
|
|
connect(ui->comboBoxAxisPoint, static_cast<void (QComboBox::*)(const QString &)>(&QComboBox::currentIndexChanged),
|
|
this, &DialogLineIntersectAxis::PointNameChanged);
|
|
|
|
vis = new VisToolLineIntersectAxis(data);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
DialogLineIntersectAxis::~DialogLineIntersectAxis()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SetPointName(const QString &value)
|
|
{
|
|
pointName = value;
|
|
ui->lineEditNamePoint->setText(pointName);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogLineIntersectAxis::GetTypeLine() const
|
|
{
|
|
return GetComboBoxCurrentData(ui->comboBoxLineType, TypeLineLine);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SetTypeLine(const QString &value)
|
|
{
|
|
ChangeCurrentData(ui->comboBoxLineType, value);
|
|
vis->setLineStyle(VAbstractTool::LineStyleToPenStyle(value));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogLineIntersectAxis::GetAngle() const
|
|
{
|
|
return qApp->TrVars()->TryFormulaFromUser(formulaAngle, qApp->Settings()->GetOsSeparator());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SetAngle(const QString &value)
|
|
{
|
|
formulaAngle = qApp->TrVars()->FormulaToUser(value, qApp->Settings()->GetOsSeparator());
|
|
// increase height if needed. TODO : see if I can get the max number of caracters in one line
|
|
// of this PlainTextEdit to change 80 to this value
|
|
if (formulaAngle.length() > 80)
|
|
{
|
|
this->DeployAngleTextEdit();
|
|
}
|
|
ui->plainTextEditFormula->setPlainText(formulaAngle);
|
|
|
|
VisToolLineIntersectAxis *line = qobject_cast<VisToolLineIntersectAxis *>(vis);
|
|
SCASSERT(line != nullptr);
|
|
line->SetAngle(formulaAngle);
|
|
|
|
MoveCursorToEnd(ui->plainTextEditFormula);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 DialogLineIntersectAxis::GetBasePointId() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxAxisPoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SetBasePointId(const quint32 &value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxAxisPoint, value);
|
|
|
|
VisToolLineIntersectAxis *line = qobject_cast<VisToolLineIntersectAxis *>(vis);
|
|
SCASSERT(line != nullptr);
|
|
line->setAxisPointId(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 DialogLineIntersectAxis::GetFirstPointId() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxFirstLinePoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SetFirstPointId(const quint32 &value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxFirstLinePoint, value);
|
|
|
|
VisToolLineIntersectAxis *line = qobject_cast<VisToolLineIntersectAxis *>(vis);
|
|
SCASSERT(line != nullptr);
|
|
line->setObject1Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
quint32 DialogLineIntersectAxis::GetSecondPointId() const
|
|
{
|
|
return getCurrentObjectId(ui->comboBoxSecondLinePoint);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SetSecondPointId(const quint32 &value)
|
|
{
|
|
setCurrentPointId(ui->comboBoxSecondLinePoint, value);
|
|
|
|
VisToolLineIntersectAxis *line = qobject_cast<VisToolLineIntersectAxis *>(vis);
|
|
SCASSERT(line != nullptr);
|
|
line->setPoint2Id(value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString DialogLineIntersectAxis::GetLineColor() const
|
|
{
|
|
return GetComboBoxCurrentData(ui->comboBoxLineColor, ColorBlack);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SetLineColor(const QString &value)
|
|
{
|
|
ChangeCurrentData(ui->comboBoxLineColor, value);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::ShowDialog(bool click)
|
|
{
|
|
if (prepare)
|
|
{
|
|
if (click)
|
|
{
|
|
/*We will ignore click if poinet is in point circle*/
|
|
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(qApp->getCurrentScene());
|
|
SCASSERT(scene != nullptr);
|
|
const QSharedPointer<VPointF> point = data->GeometricObject<VPointF>(GetBasePointId());
|
|
QLineF line = QLineF(*point, scene->getScenePos());
|
|
|
|
//Radius of point circle, but little bigger. Need handle with hover sizes.
|
|
qreal radius = ToPixel(DefPointRadius/*mm*/, Unit::Mm)*1.5;
|
|
if (line.length() <= radius)
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|
|
VisToolLineIntersectAxis *line = qobject_cast<VisToolLineIntersectAxis *>(vis);
|
|
SCASSERT(line != nullptr);
|
|
|
|
this->SetAngle(line->Angle());//Show in dialog angle what user choose
|
|
emit ToolTip("");
|
|
|
|
DialogAccepted();// Just set default values and don't show dialog
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::ChosenObject(quint32 id, const SceneObject &type)
|
|
{
|
|
if (prepare == false)// After first choose we ignore all objects
|
|
{
|
|
if (type == SceneObject::Point)
|
|
{
|
|
VisToolLineIntersectAxis *line = qobject_cast<VisToolLineIntersectAxis *>(vis);
|
|
SCASSERT(line != nullptr);
|
|
|
|
switch (number)
|
|
{
|
|
case (0):
|
|
if (SetObject(id, ui->comboBoxFirstLinePoint, tr("Select second point of line")))
|
|
{
|
|
number++;
|
|
line->VisualMode(id);
|
|
VAbstractMainWindow *window = qobject_cast<VAbstractMainWindow *>(qApp->getMainWindow());
|
|
SCASSERT(window != nullptr);
|
|
connect(line, &VisToolLineIntersectAxis::ToolTip, window, &VAbstractMainWindow::ShowToolTip);
|
|
}
|
|
break;
|
|
case (1):
|
|
if (getCurrentObjectId(ui->comboBoxFirstLinePoint) != id)
|
|
{
|
|
if (SetObject(id, ui->comboBoxSecondLinePoint, tr("Select axis point")))
|
|
{
|
|
number++;
|
|
line->setPoint2Id(id);
|
|
line->RefreshGeometry();
|
|
}
|
|
}
|
|
break;
|
|
case (2):
|
|
{
|
|
QSet<quint32> set;
|
|
set.insert(getCurrentObjectId(ui->comboBoxFirstLinePoint));
|
|
set.insert(getCurrentObjectId(ui->comboBoxSecondLinePoint));
|
|
set.insert(id);
|
|
|
|
if (set.size() == 3)
|
|
{
|
|
if (SetObject(id, ui->comboBoxAxisPoint, ""))
|
|
{
|
|
line->setAxisPointId(id);
|
|
line->RefreshGeometry();
|
|
prepare = true;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::EvalAngle()
|
|
{
|
|
Eval(ui->plainTextEditFormula->toPlainText(), flagError, ui->labelResultCalculation, degreeSymbol, false);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::AngleTextChanged()
|
|
{
|
|
ValFormulaChanged(flagError, ui->plainTextEditFormula, timerFormula, degreeSymbol);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::DeployAngleTextEdit()
|
|
{
|
|
DeployFormula(ui->plainTextEditFormula, ui->pushButtonGrowLengthAngle, formulaBaseHeightAngle);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::PointNameChanged()
|
|
{
|
|
QSet<quint32> set;
|
|
set.insert(getCurrentObjectId(ui->comboBoxFirstLinePoint));
|
|
set.insert(getCurrentObjectId(ui->comboBoxSecondLinePoint));
|
|
set.insert(getCurrentObjectId(ui->comboBoxAxisPoint));
|
|
|
|
QColor color = okColor;
|
|
if (set.size() != 3)
|
|
{
|
|
flagError = false;
|
|
color = errorColor;
|
|
}
|
|
else
|
|
{
|
|
flagError = true;
|
|
color = okColor;
|
|
}
|
|
ChangeColor(ui->labelFirstLinePoint, color);
|
|
ChangeColor(ui->labelSecondLinePoint, color);
|
|
ChangeColor(ui->labelAxisPoint, color);
|
|
CheckState();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::FXAngle()
|
|
{
|
|
DialogEditWrongFormula *dialog = new DialogEditWrongFormula(data, toolId, this);
|
|
dialog->setWindowTitle(tr("Edit angle"));
|
|
dialog->SetFormula(GetAngle());
|
|
dialog->setPostfix(degreeSymbol);
|
|
if (dialog->exec() == QDialog::Accepted)
|
|
{
|
|
SetAngle(dialog->GetFormula());
|
|
}
|
|
delete dialog;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::ShowVisualization()
|
|
{
|
|
AddVisualization<VisToolLineIntersectAxis>();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::SaveData()
|
|
{
|
|
pointName = ui->lineEditNamePoint->text();
|
|
|
|
formulaAngle = ui->plainTextEditFormula->toPlainText();
|
|
formulaAngle.replace("\n", " ");
|
|
|
|
VisToolLineIntersectAxis *line = qobject_cast<VisToolLineIntersectAxis *>(vis);
|
|
SCASSERT(line != nullptr);
|
|
|
|
line->setObject1Id(GetFirstPointId());
|
|
line->setPoint2Id(GetSecondPointId());
|
|
line->setAxisPointId(GetBasePointId());
|
|
line->SetAngle(formulaAngle);
|
|
line->setLineStyle(VAbstractTool::LineStyleToPenStyle(GetTypeLine()));
|
|
line->RefreshGeometry();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void DialogLineIntersectAxis::closeEvent(QCloseEvent *event)
|
|
{
|
|
ui->plainTextEditFormula->blockSignals(true);
|
|
DialogTool::closeEvent(event);
|
|
}
|