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 vmodelinglineintersect.cpp
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@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-09-10 14:29:06 +02:00
|
|
|
#include "vmodelinglineintersect.h"
|
2013-07-31 13:34:39 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VModelingLineIntersect::ToolType = QStringLiteral("lineIntersect");
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLineIntersect::VModelingLineIntersect(VDomDocument *doc, VContainer *data, const qint64 &id,
|
2013-07-31 13:34:39 +02:00
|
|
|
const qint64 &p1Line1, const qint64 &p2Line1, const qint64 &p1Line2,
|
2013-11-06 22:11:12 +01:00
|
|
|
const qint64 &p2Line2, const Tool::Sources &typeCreation, QGraphicsItem *parent)
|
2013-11-04 21:35:15 +01:00
|
|
|
:VModelingPoint(doc, data, id, parent), p1Line1(p1Line1), p2Line1(p2Line1), p1Line2(p1Line2),
|
|
|
|
p2Line2(p2Line2), dialogLineIntersect(QSharedPointer<DialogLineIntersect>())
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
ignoreFullUpdate = true;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-07-31 13:34:39 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingLineIntersect::setDialog()
|
|
|
|
{
|
|
|
|
Q_ASSERT(dialogLineIntersect.isNull() == false);
|
|
|
|
VPointF p = VAbstractTool::data.GetModelingPoint(id);
|
|
|
|
dialogLineIntersect->setP1Line1(p1Line1);
|
|
|
|
dialogLineIntersect->setP2Line1(p2Line1);
|
|
|
|
dialogLineIntersect->setP1Line2(p1Line2);
|
|
|
|
dialogLineIntersect->setP2Line2(p2Line2);
|
|
|
|
dialogLineIntersect->setPointName(p.name());
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLineIntersect *VModelingLineIntersect::Create(QSharedPointer<DialogLineIntersect> &dialog,
|
2013-11-04 21:35:15 +01:00
|
|
|
VDomDocument *doc, VContainer *data)
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
qint64 p1Line1Id = dialog->getP1Line1();
|
|
|
|
qint64 p2Line1Id = dialog->getP2Line1();
|
|
|
|
qint64 p1Line2Id = dialog->getP1Line2();
|
|
|
|
qint64 p2Line2Id = dialog->getP2Line2();
|
|
|
|
QString pointName = dialog->getPointName();
|
2013-09-10 14:29:06 +02:00
|
|
|
return Create(0, p1Line1Id, p2Line1Id, p1Line2Id, p2Line2Id, pointName, 5, 10, doc, data,
|
|
|
|
Document::FullParse, Tool::FromGui);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLineIntersect *VModelingLineIntersect::Create(const qint64 _id, const qint64 &p1Line1Id,
|
|
|
|
const qint64 &p2Line1Id, const qint64 &p1Line2Id,
|
|
|
|
const qint64 &p2Line2Id, const QString &pointName,
|
|
|
|
const qreal &mx, const qreal &my, VDomDocument *doc,
|
2013-09-27 11:17:00 +02:00
|
|
|
VContainer *data, const Document::Documents &parse,
|
2013-11-06 22:11:12 +01:00
|
|
|
const Tool::Sources &typeCreation)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VModelingLineIntersect *point = 0;
|
|
|
|
VPointF p1Line1 = data->GetModelingPoint(p1Line1Id);
|
|
|
|
VPointF p2Line1 = data->GetModelingPoint(p2Line1Id);
|
|
|
|
VPointF p1Line2 = data->GetModelingPoint(p1Line2Id);
|
|
|
|
VPointF p2Line2 = data->GetModelingPoint(p2Line2Id);
|
2013-08-13 18:48:36 +02:00
|
|
|
|
|
|
|
QLineF line1(p1Line1.toQPointF(), p2Line1.toQPointF());
|
|
|
|
QLineF line2(p1Line2.toQPointF(), p2Line2.toQPointF());
|
|
|
|
QPointF fPoint;
|
|
|
|
QLineF::IntersectType intersect = line1.intersect(line2, &fPoint);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (intersect == QLineF::UnboundedIntersection || intersect == QLineF::BoundedIntersection)
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
qint64 id = _id;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
id = data->AddModelingPoint(VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
data->UpdateModelingPoint(id, VPointF(fPoint.x(), fPoint.y(), pointName, mx, my));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
data->AddLine(p1Line1Id, id, Draw::Modeling);
|
|
|
|
data->AddLine(id, p2Line1Id, Draw::Modeling);
|
|
|
|
data->AddLine(p1Line2Id, id, Draw::Modeling);
|
|
|
|
data->AddLine(id, p2Line2Id, Draw::Modeling);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
point = new VModelingLineIntersect(doc, data, id, p1Line1Id, p2Line1Id, p1Line2Id, p2Line2Id,
|
|
|
|
typeCreation);
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->AddTool(id, point);
|
|
|
|
doc->IncrementReferens(p1Line1Id);
|
|
|
|
doc->IncrementReferens(p2Line1Id);
|
|
|
|
doc->IncrementReferens(p1Line2Id);
|
|
|
|
doc->IncrementReferens(p2Line2Id);
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
return point;
|
2013-08-13 18:48:36 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingLineIntersect::FullUpdateFromFile()
|
|
|
|
{
|
2013-07-31 13:34:39 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2013-10-29 14:45:07 +01:00
|
|
|
p1Line1 = domElement.attribute(AttrP1Line1, "").toLongLong();
|
|
|
|
p2Line1 = domElement.attribute(AttrP2Line1, "").toLongLong();
|
|
|
|
p1Line2 = domElement.attribute(AttrP1Line2, "").toLongLong();
|
|
|
|
p2Line2 = domElement.attribute(AttrP2Line2, "").toLongLong();
|
2013-07-31 13:34:39 +02:00
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
RefreshPointGeometry(VAbstractTool::data.GetModelingPoint(id));
|
2013-07-31 13:34:39 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingLineIntersect::FullUpdateFromGui(int result)
|
|
|
|
{
|
|
|
|
if (result == QDialog::Accepted)
|
|
|
|
{
|
2013-07-31 13:34:39 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2013-10-29 14:45:07 +01:00
|
|
|
domElement.setAttribute(AttrName, dialogLineIntersect->getPointName());
|
|
|
|
domElement.setAttribute(AttrP1Line1, QString().setNum(dialogLineIntersect->getP1Line1()));
|
|
|
|
domElement.setAttribute(AttrP2Line1, QString().setNum(dialogLineIntersect->getP2Line1()));
|
|
|
|
domElement.setAttribute(AttrP1Line2, QString().setNum(dialogLineIntersect->getP1Line2()));
|
|
|
|
domElement.setAttribute(AttrP2Line2, QString().setNum(dialogLineIntersect->getP2Line2()));
|
2013-07-31 13:34:39 +02:00
|
|
|
emit FullUpdateTree();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dialogLineIntersect.clear();
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingLineIntersect::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2013-08-13 18:48:36 +02:00
|
|
|
ContextMenu(dialogLineIntersect, this, event);
|
2013-07-31 13:34:39 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingLineIntersect::AddToFile()
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
VPointF point = VAbstractTool::data.GetModelingPoint(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
2013-07-31 13:34:39 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
AddAttribute(domElement, AttrId, id);
|
|
|
|
AddAttribute(domElement, AttrType, ToolType);
|
|
|
|
AddAttribute(domElement, AttrName, point.name());
|
|
|
|
AddAttribute(domElement, AttrMx, toMM(point.mx()));
|
|
|
|
AddAttribute(domElement, AttrMy, toMM(point.my()));
|
2013-07-31 13:34:39 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
AddAttribute(domElement, AttrP1Line1, p1Line1);
|
|
|
|
AddAttribute(domElement, AttrP2Line1, p2Line1);
|
|
|
|
AddAttribute(domElement, AttrP1Line2, p1Line2);
|
|
|
|
AddAttribute(domElement, AttrP2Line2, p2Line2);
|
2013-07-31 13:34:39 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToModeling(domElement);
|
2013-07-31 13:34:39 +02:00
|
|
|
}
|
2013-09-30 18:29:03 +02:00
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingLineIntersect::RemoveReferens()
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(p1Line1);
|
|
|
|
doc->DecrementReferens(p2Line1);
|
|
|
|
doc->DecrementReferens(p1Line2);
|
|
|
|
doc->DecrementReferens(p2Line2);
|
|
|
|
}
|