2013-12-18 12:13:32 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vtoolcutspline.cpp
|
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
|
|
|
** @date 15 12, 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 "vtoolcutspline.h"
|
|
|
|
#include "../../container/calculator.h"
|
|
|
|
|
|
|
|
const QString VToolCutSpline::ToolType = QStringLiteral("cutSpline");
|
|
|
|
const QString VToolCutSpline::AttrSpline = QStringLiteral("spline");
|
|
|
|
|
|
|
|
VToolCutSpline::VToolCutSpline(VDomDocument *doc, VContainer *data, const qint64 &id, const QString &formula,
|
|
|
|
const qint64 &splineId, const qint64 &spl1id, const qint64 &spl2id,
|
|
|
|
const Tool::Sources &typeCreation, QGraphicsItem *parent)
|
|
|
|
:VToolPoint(doc, data, id, parent), formula(formula), splineId(splineId),
|
|
|
|
dialogCutSpline(QSharedPointer<DialogCutSpline>()), firstSpline(), secondSpline(), spl1id(spl1id), spl2id(spl2id)
|
|
|
|
{
|
|
|
|
Q_ASSERT_X(splineId > 0, Q_FUNC_INFO, "splineId <= 0");
|
|
|
|
Q_ASSERT_X(spl1id > 0, Q_FUNC_INFO, "spl1id <= 0");
|
|
|
|
Q_ASSERT_X(spl2id > 0, Q_FUNC_INFO, "spl2id <= 0");
|
|
|
|
|
2013-12-18 19:55:27 +01:00
|
|
|
firstSpline = new VSimpleSpline(spl1id, ¤tColor, &factor);
|
2013-12-18 12:13:32 +01:00
|
|
|
Q_ASSERT(firstSpline != 0);
|
|
|
|
RefreshSpline(firstSpline, spl1id, SimpleSpline::ForthPoint);
|
|
|
|
firstSpline->setParentItem(this);
|
|
|
|
connect(firstSpline, &VSimpleSpline::Choosed, this, &VToolCutSpline::SplineChoosed);
|
|
|
|
|
2013-12-18 19:55:27 +01:00
|
|
|
secondSpline = new VSimpleSpline(spl2id, ¤tColor, &factor);
|
2013-12-18 12:13:32 +01:00
|
|
|
Q_ASSERT(secondSpline != 0);
|
|
|
|
RefreshSpline(secondSpline, spl2id, SimpleSpline::FirstPoint);
|
|
|
|
secondSpline->setParentItem(this);
|
|
|
|
connect(secondSpline, &VSimpleSpline::Choosed, this, &VToolCutSpline::SplineChoosed);
|
|
|
|
|
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-12-18 12:13:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::setDialog()
|
|
|
|
{
|
|
|
|
Q_ASSERT(dialogCutSpline.isNull() == false);
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-12-18 12:13:32 +01:00
|
|
|
dialogCutSpline->setFormula(formula);
|
|
|
|
dialogCutSpline->setSplineId(splineId, id);
|
2013-12-29 17:48:57 +01:00
|
|
|
dialogCutSpline->setPointName(point->name());
|
2013-12-18 12:13:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::Create(QSharedPointer<DialogCutSpline> &dialog, VMainGraphicsScene *scene,
|
|
|
|
VDomDocument *doc, VContainer *data)
|
|
|
|
{
|
|
|
|
QString pointName = dialog->getPointName();
|
|
|
|
QString formula = dialog->getFormula();
|
|
|
|
qint64 splineId = dialog->getSplineId();
|
|
|
|
Create(0, pointName, formula, splineId, 5, 10, scene, doc, data, Document::FullParse, Tool::FromGui);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::Create(const qint64 _id, const QString &pointName,
|
|
|
|
const QString &formula, const qint64 &splineId, const qreal &mx, const qreal &my,
|
|
|
|
VMainGraphicsScene *scene, VDomDocument *doc, VContainer *data,
|
|
|
|
const Document::Documents &parse, const Tool::Sources &typeCreation)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = data->GeometricObject<const VSpline *>(splineId);
|
2013-12-18 12:13:32 +01:00
|
|
|
Calculator cal(data);
|
|
|
|
QString errorMsg;
|
|
|
|
qreal result = cal.eval(formula, &errorMsg);
|
|
|
|
if (errorMsg.isEmpty())
|
|
|
|
{
|
|
|
|
QPointF spl1p2, spl1p3, spl2p2, spl2p3;
|
2013-12-29 17:48:57 +01:00
|
|
|
QPointF point = spl->CutSpline(toPixel(result), spl1p2, spl1p3, spl2p2, spl2p3);
|
2013-12-18 12:13:32 +01:00
|
|
|
|
|
|
|
qint64 id = _id;
|
|
|
|
qint64 spl1id = 0;
|
|
|
|
qint64 spl2id = 0;
|
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
VPointF *p = new VPointF(point.x(), point.y(), pointName, mx, my);
|
|
|
|
Q_ASSERT(p != 0);
|
|
|
|
id = data->AddGObject(p);
|
2013-12-18 12:13:32 +01:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
VSpline *spline1 = new VSpline(spl->GetP1(), spl1p2, spl1p3, *p, spl->GetKcurve());
|
|
|
|
Q_ASSERT(spline1);
|
|
|
|
spl1id = data->AddGObject(spline1);
|
|
|
|
data->AddLengthSpline(spline1->name(), toMM(spline1->GetLength()));
|
2013-12-18 12:13:32 +01:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
VSpline *spline2 = new VSpline(*p, spl2p2, spl2p3, spl->GetP4(), spl->GetKcurve());
|
|
|
|
Q_ASSERT(spline2);
|
|
|
|
spl2id = data->AddGObject(spline2);
|
|
|
|
data->AddLengthSpline(spline2->name(), toMM(spline2->GetLength()));
|
2013-12-18 12:13:32 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
VPointF *p = new VPointF(point.x(), point.y(), pointName, mx, my);
|
|
|
|
Q_ASSERT(p != 0);
|
|
|
|
data->UpdateGObject(id, p);
|
2013-12-18 12:13:32 +01:00
|
|
|
|
|
|
|
spl1id = id + 1;
|
|
|
|
spl2id = id + 2;
|
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
VSpline *spline1 = new VSpline(spl->GetP1(), spl1p2, spl1p3, *p, spl->GetKcurve());
|
|
|
|
Q_ASSERT(spline1);
|
|
|
|
data->UpdateGObject(spl1id, spline1);
|
|
|
|
data->AddLengthSpline(spline1->name(), toMM(spline1->GetLength()));
|
2013-12-18 12:13:32 +01:00
|
|
|
|
2013-12-29 17:48:57 +01:00
|
|
|
VSpline *spline2 = new VSpline(*p, spl2p2, spl2p3, spl->GetP4(), spl->GetKcurve());
|
|
|
|
Q_ASSERT(spline2);
|
|
|
|
data->UpdateGObject(spl2id, spline2);
|
|
|
|
data->AddLengthSpline(spline2->name(), toMM(spline2->GetLength()));
|
2013-12-18 12:13:32 +01:00
|
|
|
|
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
|
|
|
doc->UpdateToolData(id, data);
|
|
|
|
}
|
|
|
|
}
|
2013-12-29 17:48:57 +01:00
|
|
|
VDrawTool::AddRecord(id, Tool::CutSplineTool, doc);
|
2013-12-18 12:13:32 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
|
|
|
VToolCutSpline *point = new VToolCutSpline(doc, data, id, formula, splineId, spl1id, spl2id, typeCreation);
|
|
|
|
scene->addItem(point);
|
|
|
|
connect(point, &VToolPoint::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
|
|
|
connect(point, &VToolPoint::RemoveTool, scene, &VMainGraphicsScene::RemoveTool);
|
|
|
|
connect(scene, &VMainGraphicsScene::NewFactor, point, &VToolPoint::SetFactor);
|
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->AddTool(spl1id, point);
|
|
|
|
doc->AddTool(spl2id, point);
|
|
|
|
doc->IncrementReferens(splineId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::FullUpdateFromFile()
|
|
|
|
{
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
|
|
|
formula = domElement.attribute(AttrLength, "");
|
|
|
|
splineId = domElement.attribute(AttrSpline, "").toLongLong();
|
|
|
|
}
|
|
|
|
RefreshGeometry();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::FullUpdateFromGui(int result)
|
|
|
|
{
|
|
|
|
if (result == QDialog::Accepted)
|
|
|
|
{
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
|
|
|
domElement.setAttribute(AttrName, dialogCutSpline->getPointName());
|
|
|
|
domElement.setAttribute(AttrLength, dialogCutSpline->getFormula());
|
|
|
|
domElement.setAttribute(AttrSpline, QString().setNum(dialogCutSpline->getSplineId()));
|
|
|
|
emit FullUpdateTree();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dialogCutSpline.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::SplineChoosed(qint64 id)
|
|
|
|
{
|
|
|
|
emit ChoosedTool(id, Scene::Spline);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::ChangedActivDraw(const QString &newName)
|
|
|
|
{
|
|
|
|
if (nameActivDraw == newName)
|
|
|
|
{
|
|
|
|
currentColor = Qt::black;
|
|
|
|
firstSpline->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
firstSpline->setAcceptHoverEvents(true);
|
|
|
|
secondSpline->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
secondSpline->setAcceptHoverEvents(true);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
currentColor = Qt::gray;
|
|
|
|
firstSpline->setFlag(QGraphicsItem::ItemIsSelectable, false);
|
|
|
|
firstSpline->setAcceptHoverEvents(false);
|
|
|
|
secondSpline->setFlag(QGraphicsItem::ItemIsSelectable, false);
|
|
|
|
secondSpline->setAcceptHoverEvents(false);
|
|
|
|
}
|
|
|
|
firstSpline->setPen(QPen(currentColor, widthHairLine/factor));
|
|
|
|
secondSpline->setPen(QPen(currentColor, widthHairLine/factor));
|
|
|
|
VToolPoint::ChangedActivDraw(newName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
|
|
|
ContextMenu(dialogCutSpline, this, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::AddToFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-12-18 12:13:32 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
|
|
|
|
|
|
|
AddAttribute(domElement, AttrId, id);
|
|
|
|
AddAttribute(domElement, AttrType, ToolType);
|
2013-12-29 17:48:57 +01:00
|
|
|
AddAttribute(domElement, AttrName, point->name());
|
|
|
|
AddAttribute(domElement, AttrMx, toMM(point->mx()));
|
|
|
|
AddAttribute(domElement, AttrMy, toMM(point->my()));
|
2013-12-18 12:13:32 +01:00
|
|
|
|
|
|
|
AddAttribute(domElement, AttrLength, formula);
|
|
|
|
AddAttribute(domElement, AttrSpline, splineId);
|
|
|
|
|
|
|
|
AddToCalculation(domElement);
|
|
|
|
}
|
|
|
|
|
2013-12-24 12:24:29 +01:00
|
|
|
void VToolCutSpline::RefreshDataInFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
domElement.setAttribute(AttrName, point->name());
|
|
|
|
domElement.setAttribute(AttrMx, toMM(point->mx()));
|
|
|
|
domElement.setAttribute(AttrMy, toMM(point->my()));
|
2013-12-24 12:24:29 +01:00
|
|
|
domElement.setAttribute(AttrLength, formula);
|
|
|
|
domElement.setAttribute(AttrSpline, splineId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-18 12:13:32 +01:00
|
|
|
void VToolCutSpline::RefreshGeometry()
|
|
|
|
{
|
|
|
|
RefreshSpline(firstSpline, spl1id, SimpleSpline::ForthPoint);
|
|
|
|
RefreshSpline(secondSpline, spl2id, SimpleSpline::FirstPoint);
|
2013-12-29 17:48:57 +01:00
|
|
|
VToolPoint::RefreshPointGeometry(*VDrawTool::data.GeometricObject<const VPointF *>(id));
|
2013-12-18 12:13:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void VToolCutSpline::RefreshSpline(VSimpleSpline *spline, qint64 splid, SimpleSpline::Translation tr)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VSpline *spl = VAbstractTool::data.GeometricObject<const VSpline *>(splid);
|
2013-12-18 12:13:32 +01:00
|
|
|
QPainterPath path;
|
2013-12-29 17:48:57 +01:00
|
|
|
path.addPath(spl->GetPath());
|
2013-12-18 12:13:32 +01:00
|
|
|
path.setFillRule( Qt::WindingFill );
|
|
|
|
if(tr == SimpleSpline::FirstPoint)
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
path.translate(-spl->GetP1().toQPointF().x(), -spl->GetP1().toQPointF().y());
|
2013-12-18 12:13:32 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
path.translate(-spl->GetP4().toQPointF().x(), -spl->GetP4().toQPointF().y());
|
2013-12-18 12:13:32 +01:00
|
|
|
}
|
|
|
|
spline->setPath(path);
|
|
|
|
}
|