2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-11-04 21:38:54 +01:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vmodelingpointofintersection.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-11-04 21:38:54 +01: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-11-04 21:38:54 +01:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-11-04 21:38:54 +01: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.
|
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-11-04 21:38:54 +01:00
|
|
|
|
2013-10-21 16:09:05 +02:00
|
|
|
#include "vmodelingpointofintersection.h"
|
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VModelingPointOfIntersection::ToolType = QStringLiteral("pointOfIntersection");
|
|
|
|
|
2013-10-21 16:09:05 +02:00
|
|
|
VModelingPointOfIntersection::VModelingPointOfIntersection(VDomDocument *doc, VContainer *data, const qint64 &id,
|
|
|
|
const qint64 &firstPointId, const qint64 &secondPointId,
|
2013-11-06 22:11:12 +01:00
|
|
|
const Tool::Sources &typeCreation, QGraphicsItem *parent)
|
2013-10-21 16:09:05 +02:00
|
|
|
:VModelingPoint(doc, data, id, parent), firstPointId(firstPointId), secondPointId(secondPointId),
|
2013-11-04 21:35:15 +01:00
|
|
|
dialogPointOfIntersection(QSharedPointer<DialogPointOfIntersection>())
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
ignoreFullUpdate = true;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingPointOfIntersection::setDialog()
|
|
|
|
{
|
|
|
|
Q_ASSERT(dialogPointOfIntersection.isNull() == false);
|
2013-10-21 16:09:05 +02:00
|
|
|
VPointF p = VAbstractTool::data.GetPoint(id);
|
|
|
|
dialogPointOfIntersection->setFirstPointId(firstPointId, id);
|
|
|
|
dialogPointOfIntersection->setSecondPointId(secondPointId, id);
|
|
|
|
dialogPointOfIntersection->setPointName(p.name());
|
|
|
|
}
|
|
|
|
|
|
|
|
VModelingPointOfIntersection *VModelingPointOfIntersection::Create(QSharedPointer<DialogPointOfIntersection> &dialog,
|
2013-11-04 21:35:15 +01:00
|
|
|
VDomDocument *doc, VContainer *data)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
qint64 firstPointId = dialog->getFirstPointId();
|
|
|
|
qint64 secondPointId = dialog->getSecondPointId();
|
|
|
|
QString pointName = dialog->getPointName();
|
|
|
|
return Create(0, pointName, firstPointId, secondPointId, 5, 10, doc, data, Document::FullParse, Tool::FromGui);
|
|
|
|
}
|
|
|
|
|
|
|
|
VModelingPointOfIntersection *VModelingPointOfIntersection::Create(const qint64 _id, const QString &pointName,
|
|
|
|
const qint64 &firstPointId,
|
|
|
|
const qint64 &secondPointId, const qreal &mx,
|
|
|
|
const qreal &my, VDomDocument *doc,
|
2013-11-04 21:35:15 +01: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-10-21 16:09:05 +02:00
|
|
|
VModelingPointOfIntersection *tool = 0;
|
|
|
|
VPointF firstPoint = data->GetPoint(firstPointId);
|
|
|
|
VPointF secondPoint = data->GetPoint(secondPointId);
|
|
|
|
|
|
|
|
QPointF point(firstPoint.x(), secondPoint.y());
|
|
|
|
qint64 id = _id;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
id = data->AddPoint(VPointF(point.x(), point.y(), pointName, mx, my));
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
data->UpdatePoint(id, VPointF(point.x(), point.y(), pointName, mx, my));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse != Document::FullParse)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
|
|
|
}
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
tool = new VModelingPointOfIntersection(doc, data, id, firstPointId, secondPointId, typeCreation);
|
|
|
|
doc->AddTool(id, tool);
|
|
|
|
doc->IncrementReferens(firstPointId);
|
|
|
|
doc->IncrementReferens(secondPointId);
|
|
|
|
}
|
|
|
|
return tool;
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingPointOfIntersection::FullUpdateFromFile()
|
|
|
|
{
|
2013-10-21 16:09:05 +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
|
|
|
firstPointId = domElement.attribute(AttrFirstPoint, "").toLongLong();
|
|
|
|
secondPointId = domElement.attribute(AttrSecondPoint, "").toLongLong();
|
2013-10-21 16:09:05 +02:00
|
|
|
}
|
|
|
|
VModelingPoint::RefreshPointGeometry(VModelingTool::data.GetPoint(id));
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingPointOfIntersection::FullUpdateFromGui(int result)
|
|
|
|
{
|
|
|
|
if (result == QDialog::Accepted)
|
|
|
|
{
|
2013-10-21 16:09:05 +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, dialogPointOfIntersection->getPointName());
|
|
|
|
domElement.setAttribute(AttrFirstPoint, QString().setNum(dialogPointOfIntersection->getFirstPointId()));
|
|
|
|
domElement.setAttribute(AttrSecondPoint, QString().setNum(dialogPointOfIntersection->getSecondPointId()));
|
2013-10-21 16:09:05 +02:00
|
|
|
emit FullUpdateTree();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dialogPointOfIntersection.clear();
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingPointOfIntersection::RemoveReferens()
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
doc->DecrementReferens(firstPointId);
|
|
|
|
doc->DecrementReferens(secondPointId);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingPointOfIntersection::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
ContextMenu(dialogPointOfIntersection, this, event);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VModelingPointOfIntersection::AddToFile()
|
|
|
|
{
|
2013-10-21 16:09:05 +02:00
|
|
|
VPointF point = VAbstractTool::data.GetPoint(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
2013-10-21 16:09:05 +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-10-21 16:09:05 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
AddAttribute(domElement, AttrFirstPoint, firstPointId);
|
|
|
|
AddAttribute(domElement, AttrSecondPoint, secondPointId);
|
2013-10-21 16:09:05 +02:00
|
|
|
|
|
|
|
AddToModeling(domElement);
|
|
|
|
}
|