371 lines
15 KiB
C++
371 lines
15 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vtoolshoulderpoint.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date November 15, 2013
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
** <https://gitlab.com/smart-pattern/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 "vtoolshoulderpoint.h"
|
|
|
|
#include <QLineF>
|
|
#include <QMessageLogger>
|
|
#include <QSharedPointer>
|
|
#include <QStaticStringData>
|
|
#include <QStringData>
|
|
#include <QStringDataPtr>
|
|
#include <QtDebug>
|
|
#include <new>
|
|
|
|
#include "../../../../../dialogs/tools/dialogshoulderpoint.h"
|
|
#include "../../../../../dialogs/tools/dialogtool.h"
|
|
#include "../../../../../visualization/visualization.h"
|
|
#include "../../../../../visualization/line/vistoolshoulderpoint.h"
|
|
#include "../ifc/exception/vexception.h"
|
|
#include "../ifc/ifcdef.h"
|
|
#include "../vgeometry/vgobject.h"
|
|
#include "../vgeometry/vpointf.h"
|
|
#include "../vmisc/vabstractapplication.h"
|
|
#include "../vmisc/vcommonsettings.h"
|
|
#include "../vpatterndb/vcontainer.h"
|
|
#include "../vpatterndb/vtranslatevars.h"
|
|
#include "../vwidgets/vmaingraphicsscene.h"
|
|
#include "../../../../vabstracttool.h"
|
|
#include "../../../vdrawtool.h"
|
|
#include "vtoollinepoint.h"
|
|
|
|
template <class T> class QSharedPointer;
|
|
|
|
const QString VToolShoulderPoint::ToolType = QStringLiteral("shoulder");
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief VToolShoulderPoint constructor.
|
|
* @param initData init data.
|
|
* @param parent parent object.
|
|
*/
|
|
VToolShoulderPoint::VToolShoulderPoint(const VToolShoulderPointInitData &initData, QGraphicsItem * parent)
|
|
:VToolLinePoint(initData.doc, initData.data, initData.id, initData.typeLine, initData.lineColor, initData.formula,
|
|
initData.p1Line, 0, parent),
|
|
p2Line(initData.p2Line),
|
|
pShoulder(initData.pShoulder)
|
|
{
|
|
ToolCreation(initData.typeCreation);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief setDialog set dialog when user want change tool option.
|
|
*/
|
|
void VToolShoulderPoint::setDialog()
|
|
{
|
|
SCASSERT(not m_dialog.isNull())
|
|
const QPointer<DialogShoulderPoint> dialogTool = qobject_cast<DialogShoulderPoint *>(m_dialog);
|
|
SCASSERT(not dialogTool.isNull())
|
|
const QSharedPointer<VPointF> p = VAbstractTool::data.GeometricObject<VPointF>(m_id);
|
|
dialogTool->SetTypeLine(m_lineType);
|
|
dialogTool->SetLineColor(lineColor);
|
|
dialogTool->SetFormula(formulaLength);
|
|
dialogTool->SetP1Line(basePointId);
|
|
dialogTool->SetP2Line(p2Line);
|
|
dialogTool->SetP3(pShoulder);
|
|
dialogTool->SetPointName(p->name());
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief FindPoint find point.
|
|
* @param p1Line first line point.
|
|
* @param p2Line second line point.
|
|
* @param pShoulder shoulder point.
|
|
* @param length length form shoulder point to our.
|
|
* @return point.
|
|
*/
|
|
QPointF VToolShoulderPoint::FindPoint(const QPointF &p1Line, const QPointF &p2Line, const QPointF &pShoulder,
|
|
const qreal &length)
|
|
{
|
|
QPointF shoulderPoint = p2Line; // Position if result was not found
|
|
if (length <= 0)
|
|
{
|
|
return shoulderPoint;
|
|
}
|
|
|
|
QLineF line = QLineF(p1Line, p2Line);
|
|
const qreal baseLength = line.length();
|
|
const int baseAngle = qRound(line.angle());
|
|
line.setLength(length*2);
|
|
|
|
QPointF p1;
|
|
QPointF p2;
|
|
|
|
const qint32 res = VGObject::LineIntersectCircle(pShoulder, length, line, p1, p2);
|
|
|
|
if (res == 1 || res == 2)
|
|
{
|
|
const QLineF line1 = QLineF(p1Line, p1);
|
|
const QLineF line2 = QLineF(p1Line, p2);
|
|
if (line1.length() > baseLength && baseAngle == qRound(line1.angle()))
|
|
{
|
|
shoulderPoint = p1;
|
|
}
|
|
else if (res == 2 && line2.length() > baseLength && baseAngle == qRound(line2.angle()))
|
|
{
|
|
shoulderPoint = p2;
|
|
}
|
|
}
|
|
|
|
return shoulderPoint;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief Create help create tool from GUI.
|
|
* @param dialog dialog.
|
|
* @param scene pointer to scene.
|
|
* @param doc dom document container.
|
|
* @param data container with variables.
|
|
* @return the created tool
|
|
*/
|
|
VToolShoulderPoint* VToolShoulderPoint::Create(const QPointer<DialogTool> &dialog, VMainGraphicsScene *scene,
|
|
VAbstractPattern *doc, VContainer *data)
|
|
{
|
|
SCASSERT(not dialog.isNull())
|
|
const QPointer<DialogShoulderPoint> dialogTool = qobject_cast<DialogShoulderPoint *>(dialog);
|
|
SCASSERT(not dialogTool.isNull())
|
|
|
|
VToolShoulderPointInitData initData;
|
|
initData.formula = dialogTool->GetFormula();
|
|
initData.p1Line = dialogTool->GetP1Line();
|
|
initData.p2Line = dialogTool->GetP2Line();
|
|
initData.pShoulder = dialogTool->GetP3();
|
|
initData.typeLine = dialogTool->GetTypeLine();
|
|
initData.lineColor = dialogTool->GetLineColor();
|
|
initData.name = dialogTool->GetPointName();
|
|
initData.scene = scene;
|
|
initData.doc = doc;
|
|
initData.data = data;
|
|
initData.parse = Document::FullParse;
|
|
initData.typeCreation = Source::FromGui;
|
|
|
|
VToolShoulderPoint * point = Create(initData);
|
|
if (point != nullptr)
|
|
{
|
|
point->m_dialog = dialog;
|
|
}
|
|
return point;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief Create help create tool.
|
|
* @param initData init data.
|
|
* @return the created tool
|
|
*/
|
|
VToolShoulderPoint* VToolShoulderPoint::Create(VToolShoulderPointInitData &initData)
|
|
{
|
|
const QSharedPointer<VPointF> firstPoint = initData.data->GeometricObject<VPointF>(initData.p1Line);
|
|
const QSharedPointer<VPointF> secondPoint = initData.data->GeometricObject<VPointF>(initData.p2Line);
|
|
const QSharedPointer<VPointF> shoulderPoint = initData.data->GeometricObject<VPointF>(initData.pShoulder);
|
|
|
|
const qreal result = CheckFormula(initData.id, initData.formula, initData.data);
|
|
|
|
QPointF fPoint = VToolShoulderPoint::FindPoint(static_cast<QPointF>(*firstPoint),
|
|
static_cast<QPointF>(*secondPoint),
|
|
static_cast<QPointF>(*shoulderPoint), qApp->toPixel(result));
|
|
|
|
VPointF *p = new VPointF(fPoint, initData.name, initData.mx, initData.my);
|
|
p->SetShowLabel(initData.showLabel);
|
|
|
|
if (initData.typeCreation == Source::FromGui)
|
|
{
|
|
initData.id = initData.data->AddGObject(p);
|
|
initData.data->AddLine(initData.p1Line, initData.id);
|
|
initData.data->AddLine(initData.p2Line, initData.id);
|
|
}
|
|
else
|
|
{
|
|
initData.data->UpdateGObject(initData.id, p);
|
|
initData.data->AddLine(initData.p1Line, initData.id);
|
|
initData.data->AddLine(initData.p2Line, initData.id);
|
|
if (initData.parse != Document::FullParse)
|
|
{
|
|
initData.doc->UpdateToolData(initData.id, initData.data);
|
|
}
|
|
}
|
|
|
|
if (initData.parse == Document::FullParse)
|
|
{
|
|
VAbstractTool::AddRecord(initData.id, Tool::ShoulderPoint, initData.doc);
|
|
VToolShoulderPoint *point = new VToolShoulderPoint(initData);
|
|
initData.scene->addItem(point);
|
|
InitToolConnections(initData.scene, point);
|
|
VAbstractPattern::AddTool(initData.id, point);
|
|
initData.doc->IncrementReferens(firstPoint->getIdTool());
|
|
initData.doc->IncrementReferens(secondPoint->getIdTool());
|
|
initData.doc->IncrementReferens(shoulderPoint->getIdTool());
|
|
return point;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VToolShoulderPoint::SecondPointName() const
|
|
{
|
|
return VAbstractTool::data.GetGObject(p2Line)->name();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VToolShoulderPoint::ShoulderPointName() const
|
|
{
|
|
return VAbstractTool::data.GetGObject(pShoulder)->name();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief RemoveReferens decrement value of reference.
|
|
*/
|
|
void VToolShoulderPoint::RemoveReferens()
|
|
{
|
|
const auto p2 = VAbstractTool::data.GetGObject(p2Line);
|
|
const auto pS = VAbstractTool::data.GetGObject(pShoulder);
|
|
|
|
doc->DecrementReferens(p2->getIdTool());
|
|
doc->DecrementReferens(pS->getIdTool());
|
|
VToolLinePoint::RemoveReferens();
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief SaveDialog save options into file after change in dialog.
|
|
*/
|
|
void VToolShoulderPoint::SaveDialog(QDomElement &domElement, QList<quint32> &oldDependencies,
|
|
QList<quint32> &newDependencies)
|
|
{
|
|
SCASSERT(not m_dialog.isNull())
|
|
const QPointer<DialogShoulderPoint> dialogTool = qobject_cast<DialogShoulderPoint *>(m_dialog);
|
|
SCASSERT(not dialogTool.isNull())
|
|
|
|
AddDependence(oldDependencies, basePointId);
|
|
AddDependence(oldDependencies, p2Line);
|
|
AddDependence(oldDependencies, pShoulder);
|
|
AddDependence(newDependencies, dialogTool->GetP1Line());
|
|
AddDependence(newDependencies, dialogTool->GetP2Line());
|
|
AddDependence(newDependencies, dialogTool->GetP3());
|
|
|
|
doc->SetAttribute(domElement, AttrName, dialogTool->GetPointName());
|
|
doc->SetAttribute(domElement, AttrTypeLine, dialogTool->GetTypeLine());
|
|
doc->SetAttribute(domElement, AttrLineColor, dialogTool->GetLineColor());
|
|
doc->SetAttribute(domElement, AttrLength, dialogTool->GetFormula());
|
|
doc->SetAttribute(domElement, AttrP1Line, QString().setNum(dialogTool->GetP1Line()));
|
|
doc->SetAttribute(domElement, AttrP2Line, QString().setNum(dialogTool->GetP2Line()));
|
|
doc->SetAttribute(domElement, AttrPShoulder, QString().setNum(dialogTool->GetP3()));
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolShoulderPoint::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
|
{
|
|
VToolLinePoint::SaveOptions(tag, obj);
|
|
|
|
doc->SetAttribute(tag, AttrType, ToolType);
|
|
doc->SetAttribute(tag, AttrLength, formulaLength);
|
|
doc->SetAttribute(tag, AttrP1Line, basePointId);
|
|
doc->SetAttribute(tag, AttrP2Line, p2Line);
|
|
doc->SetAttribute(tag, AttrPShoulder, pShoulder);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolShoulderPoint::ReadToolAttributes(const QDomElement &domElement)
|
|
{
|
|
VToolLinePoint::ReadToolAttributes(domElement);
|
|
|
|
m_lineType = doc->GetParametrString(domElement, AttrTypeLine, TypeLineLine);
|
|
lineColor = doc->GetParametrString(domElement, AttrLineColor, ColorBlack);
|
|
formulaLength = doc->GetParametrString(domElement, AttrLength, QString());
|
|
basePointId = doc->GetParametrUInt(domElement, AttrP1Line, NULL_ID_STR);
|
|
p2Line = doc->GetParametrUInt(domElement, AttrP2Line, NULL_ID_STR);
|
|
pShoulder = doc->GetParametrUInt(domElement, AttrPShoulder, NULL_ID_STR);
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolShoulderPoint::SetVisualization()
|
|
{
|
|
if (not vis.isNull())
|
|
{
|
|
VisToolShoulderPoint *visual = qobject_cast<VisToolShoulderPoint *>(vis);
|
|
SCASSERT(visual != nullptr)
|
|
|
|
visual->setObject1Id(pShoulder);
|
|
visual->setLineP1Id(basePointId);
|
|
visual->setLineP2Id(p2Line);
|
|
visual->setLength(qApp->TrVars()->FormulaToUser(formulaLength, qApp->Settings()->GetOsSeparator()));
|
|
visual->setLineStyle(LineStyleToPenStyle(m_lineType));
|
|
visual->RefreshGeometry();
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
QString VToolShoulderPoint::MakeToolTip() const
|
|
{
|
|
const QSharedPointer<VPointF> first = VAbstractTool::data.GeometricObject<VPointF>(basePointId);
|
|
const QSharedPointer<VPointF> second = VAbstractTool::data.GeometricObject<VPointF>(p2Line);
|
|
const QSharedPointer<VPointF> current = VAbstractTool::data.GeometricObject<VPointF>(m_id);
|
|
|
|
const QLineF firstToCur(static_cast<QPointF>(*first), static_cast<QPointF>(*current));
|
|
const QLineF secondToCur(static_cast<QPointF>(*second), static_cast<QPointF>(*current));
|
|
|
|
const QString toolTip = QString("<table>"
|
|
"<tr> <td><b>%8:</b> %9</td> </tr>"
|
|
"<tr> <td><b>%1:</b> %2 %3</td> </tr>"
|
|
"<tr> <td><b>%4:</b> %5°</td> </tr>"
|
|
"<tr> <td><b>%6:</b> %7 %3</td> </tr>"
|
|
"</table>")
|
|
.arg(tr("Length"))
|
|
.arg(qApp->fromPixel(firstToCur.length()))
|
|
.arg(UnitsToStr(qApp->patternUnits(), true), tr("Angle"))
|
|
.arg(firstToCur.angle())
|
|
.arg(QString("%1->%2").arg(second->name(), current->name()))
|
|
.arg(qApp->fromPixel(secondToCur.length()))
|
|
.arg(tr("Label"), current->name());
|
|
return toolTip;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolShoulderPoint::ShowContextMenu(QGraphicsSceneContextMenuEvent *event, quint32 id)
|
|
{
|
|
try
|
|
{
|
|
ContextMenu<DialogShoulderPoint>(event, id);
|
|
}
|
|
catch(const VExceptionToolWasDeleted &e)
|
|
{
|
|
Q_UNUSED(e)
|
|
return;//Leave this method immediately!!!
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VToolShoulderPoint::ShowVisualization(bool show)
|
|
{
|
|
ShowToolVisualization<VisToolShoulderPoint>(show);
|
|
}
|