6de60a4644
--HG-- branch : develop
475 lines
17 KiB
C++
475 lines
17 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2013 Valentina project All Rights Reserved.
|
|
**
|
|
** This file is part of Valentina.
|
|
**
|
|
** Tox 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 "vtooldetail.h"
|
|
#include "nodeDetails/nodedetails.h"
|
|
#include "modelingTools/vmodelingtool.h"
|
|
#include "modelingTools/modelingtools.h"
|
|
|
|
const QString VToolDetail::TagName = QStringLiteral("detail");
|
|
const QString VToolDetail::TagNode = QStringLiteral("node");
|
|
const QString VToolDetail::AttrSupplement = QStringLiteral("supplement");
|
|
const QString VToolDetail::AttrClosed = QStringLiteral("closed");
|
|
const QString VToolDetail::AttrWidth = QStringLiteral("width");
|
|
const QString VToolDetail::AttrIdObject = QStringLiteral("idObject");
|
|
const QString VToolDetail::AttrNodeType = QStringLiteral("nodeType");
|
|
const QString VToolDetail::NodeTypeContour = QStringLiteral("Contour");
|
|
const QString VToolDetail::NodeTypeModeling = QStringLiteral("Modeling");
|
|
|
|
VToolDetail::VToolDetail(VDomDocument *doc, VContainer *data, const qint64 &id, Tool::Sources typeCreation,
|
|
VMainGraphicsScene *scene, QGraphicsItem *parent)
|
|
:VAbstractTool(doc, data, id), QGraphicsPathItem(parent), dialogDetail(QSharedPointer<DialogDetail>()),
|
|
sceneDetails(scene)
|
|
{
|
|
VDetail detail = data->GetDetail(id);
|
|
for (qint32 i = 0; i< detail.CountNode(); ++i)
|
|
{
|
|
switch (detail[i].getTypeTool())
|
|
{
|
|
case (Tool::NodePoint):
|
|
InitTool<VNodePoint>(scene, detail[i]);
|
|
break;
|
|
case (Tool::NodeArc):
|
|
InitTool<VNodeArc>(scene, detail[i]);
|
|
break;
|
|
case (Tool::NodeSpline):
|
|
InitTool<VNodeSpline>(scene, detail[i]);
|
|
break;
|
|
case (Tool::NodeSplinePath):
|
|
InitTool<VNodeSplinePath>(scene, detail[i]);
|
|
break;
|
|
case (Tool::AlongLineTool):
|
|
InitTool<VModelingAlongLine>(scene, detail[i]);
|
|
break;
|
|
case (Tool::ArcTool):
|
|
InitTool<VModelingArc>(scene, detail[i]);
|
|
break;
|
|
case (Tool::BisectorTool):
|
|
InitTool<VModelingBisector>(scene, detail[i]);
|
|
break;
|
|
case (Tool::EndLineTool):
|
|
InitTool<VModelingEndLine>(scene, detail[i]);
|
|
break;
|
|
case (Tool::LineIntersectTool):
|
|
InitTool<VModelingLineIntersect>(scene, detail[i]);
|
|
break;
|
|
case (Tool::LineTool):
|
|
InitTool<VModelingLine>(scene, detail[i]);
|
|
break;
|
|
case (Tool::NormalTool):
|
|
InitTool<VModelingNormal>(scene, detail[i]);
|
|
break;
|
|
case (Tool::PointOfContact):
|
|
InitTool<VModelingPointOfContact>(scene, detail[i]);
|
|
break;
|
|
case (Tool::ShoulderPointTool):
|
|
InitTool<VModelingShoulderPoint>(scene, detail[i]);
|
|
break;
|
|
case (Tool::SplinePathTool):
|
|
InitTool<VModelingSplinePath>(scene, detail[i]);
|
|
break;
|
|
case (Tool::SplineTool):
|
|
InitTool<VModelingSpline>(scene, detail[i]);
|
|
break;
|
|
case (Tool::Height):
|
|
InitTool<VModelingHeight>(scene, detail[i]);
|
|
break;
|
|
case (Tool::Triangle):
|
|
InitTool<VModelingTriangle>(scene, detail[i]);
|
|
break;
|
|
case (Tool::PointOfIntersection):
|
|
InitTool<VModelingPointOfIntersection>(scene, detail[i]);
|
|
break;
|
|
default:
|
|
qWarning()<<"Get wrong tool type. Ignore.";
|
|
break;
|
|
}
|
|
doc->IncrementReferens(detail[i].getId());
|
|
}
|
|
this->setFlag(QGraphicsItem::ItemIsMovable, true);
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
RefreshGeometry();
|
|
this->setPos(detail.getMx(), detail.getMy());
|
|
this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
|
|
if (typeCreation == Tool::FromGui)
|
|
{
|
|
AddToFile();
|
|
}
|
|
}
|
|
|
|
void VToolDetail::setDialog()
|
|
{
|
|
Q_ASSERT(dialogDetail.isNull() == false);
|
|
VDetail detail = VAbstractTool::data.GetDetail(id);
|
|
dialogDetail->setDetails(detail);
|
|
}
|
|
|
|
void VToolDetail::Create(QSharedPointer<DialogDetail> &dialog, VMainGraphicsScene *scene, VDomDocument *doc,
|
|
VContainer *data)
|
|
{
|
|
VDetail detail = dialog->getDetails();
|
|
VDetail det;
|
|
for (qint32 i = 0; i< detail.CountNode(); ++i)
|
|
{
|
|
qint64 id = 0;
|
|
switch (detail[i].getTypeTool())
|
|
{
|
|
case (Tool::NodePoint):
|
|
{
|
|
VPointF point;
|
|
if (detail[i].getMode() == Draw::Calculation)
|
|
{
|
|
point = data->GetPoint(detail[i].getId());
|
|
}
|
|
else
|
|
{
|
|
point = data->GetModelingPoint(detail[i].getId());
|
|
}
|
|
id = data->AddModelingPoint(point);
|
|
VNodePoint::Create(doc, data, id, detail[i].getId(), detail[i].getMode(),
|
|
Document::FullParse, Tool::FromGui);
|
|
}
|
|
break;
|
|
case (Tool::NodeArc):
|
|
{
|
|
VArc arc;
|
|
if (detail[i].getMode() == Draw::Calculation)
|
|
{
|
|
arc = data->GetArc(detail[i].getId());
|
|
}
|
|
else
|
|
{
|
|
arc = data->GetModelingArc(detail[i].getId());
|
|
}
|
|
id = data->AddModelingArc(arc);
|
|
VNodeArc::Create(doc, data, id, detail[i].getId(), detail[i].getMode(),
|
|
Document::FullParse, Tool::FromGui);
|
|
}
|
|
break;
|
|
case (Tool::NodeSpline):
|
|
{
|
|
VSpline spline;
|
|
if (detail[i].getMode() == Draw::Calculation)
|
|
{
|
|
spline = data->GetSpline(detail[i].getId());
|
|
}
|
|
else
|
|
{
|
|
spline = data->GetModelingSpline(detail[i].getId());
|
|
}
|
|
id = data->AddModelingSpline(spline);
|
|
VNodeSpline::Create(doc, data, id, detail[i].getId(), detail[i].getMode(),
|
|
Document::FullParse, Tool::FromGui);
|
|
}
|
|
break;
|
|
case (Tool::NodeSplinePath):
|
|
{
|
|
VSplinePath splinePath;
|
|
if (detail[i].getMode() == Draw::Calculation)
|
|
{
|
|
splinePath = data->GetSplinePath(detail[i].getId());
|
|
}
|
|
else
|
|
{
|
|
splinePath = data->GetModelingSplinePath(detail[i].getId());
|
|
}
|
|
id = data->AddModelingSplinePath(splinePath);
|
|
VNodeSplinePath::Create(doc, data, id, detail[i].getId(), detail[i].getMode(),
|
|
Document::FullParse, Tool::FromGui);
|
|
}
|
|
break;
|
|
default:
|
|
qWarning()<<"May be wrong tool type!!! Ignoring."<<Q_FUNC_INFO;
|
|
break;
|
|
}
|
|
VNodeDetail node(id, detail[i].getTypeTool(), Draw::Modeling, NodeDetail::Contour);
|
|
det.append(node);
|
|
}
|
|
det.setName(detail.getName());
|
|
Create(0, det, scene, doc, data, Document::FullParse, Tool::FromGui);
|
|
}
|
|
|
|
void VToolDetail::Create(const qint64 _id, VDetail &newDetail, VMainGraphicsScene *scene, VDomDocument *doc,
|
|
VContainer *data, const Document::Documents &parse, Tool::Sources typeCreation)
|
|
{
|
|
qint64 id = _id;
|
|
if (typeCreation == Tool::FromGui)
|
|
{
|
|
id = data->AddDetail(newDetail);
|
|
}
|
|
else
|
|
{
|
|
data->UpdateDetail(id, newDetail);
|
|
if (parse != Document::FullParse)
|
|
{
|
|
doc->UpdateToolData(id, data);
|
|
}
|
|
}
|
|
if (parse == Document::FullParse)
|
|
{
|
|
VToolDetail *detail = new VToolDetail(doc, data, id, typeCreation, scene);
|
|
scene->addItem(detail);
|
|
connect(detail, &VToolDetail::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
|
connect(detail, &VToolDetail::RemoveTool, scene, &VMainGraphicsScene::RemoveTool);
|
|
QHash<qint64, VDataTool*>* tools = doc->getTools();
|
|
tools->insert(id, detail);
|
|
}
|
|
}
|
|
|
|
void VToolDetail::FullUpdateFromFile()
|
|
{
|
|
RefreshGeometry();
|
|
}
|
|
|
|
void VToolDetail::FullUpdateFromGui(int result)
|
|
{
|
|
if (result == QDialog::Accepted)
|
|
{
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
if (domElement.isElement())
|
|
{
|
|
VDetail det = dialogDetail->getDetails();
|
|
domElement.setAttribute(AttrName, det.getName());
|
|
domElement.setAttribute(AttrSupplement, QString().setNum(det.getSupplement()));
|
|
domElement.setAttribute(AttrClosed, QString().setNum(det.getClosed()));
|
|
domElement.setAttribute(AttrWidth, QString().setNum(det.getWidth()));
|
|
RemoveAllChild(domElement);
|
|
for (qint32 i = 0; i < det.CountNode(); ++i)
|
|
{
|
|
AddNode(domElement, det[i]);
|
|
}
|
|
emit FullUpdateTree();
|
|
}
|
|
}
|
|
dialogDetail.clear();
|
|
}
|
|
|
|
void VToolDetail::AddToFile()
|
|
{
|
|
VDetail detail = VAbstractTool::data.GetDetail(id);
|
|
QDomElement domElement = doc->createElement(TagName);
|
|
|
|
AddAttribute(domElement, AttrId, id);
|
|
AddAttribute(domElement, AttrName, detail.getName());
|
|
AddAttribute(domElement, AttrMx, toMM(detail.getMx()));
|
|
AddAttribute(domElement, AttrMy, toMM(detail.getMy()));
|
|
AddAttribute(domElement, AttrSupplement, detail.getSupplement());
|
|
AddAttribute(domElement, AttrClosed, detail.getClosed());
|
|
AddAttribute(domElement, AttrWidth, detail.getWidth());
|
|
|
|
for (qint32 i = 0; i < detail.CountNode(); ++i)
|
|
{
|
|
AddNode(domElement, detail[i]);
|
|
}
|
|
|
|
QDomElement element;
|
|
bool ok = doc->GetActivDetailsElement(element);
|
|
if (ok)
|
|
{
|
|
element.appendChild(domElement);
|
|
}
|
|
}
|
|
|
|
QVariant VToolDetail::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
{
|
|
if (change == ItemPositionHasChanged && scene())
|
|
{
|
|
// value - это новое положение.
|
|
QPointF newPos = value.toPointF();
|
|
//qDebug()<<newPos;
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
if (domElement.isElement())
|
|
{
|
|
domElement.setAttribute(AttrMx, QString().setNum(toMM(newPos.x())));
|
|
domElement.setAttribute(AttrMy, QString().setNum(toMM(newPos.y())));
|
|
//I don't now why but signal does not work.
|
|
doc->FullUpdateTree();
|
|
}
|
|
}
|
|
return QGraphicsItem::itemChange(change, value);
|
|
}
|
|
|
|
void VToolDetail::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
{
|
|
if (event->button() == Qt::LeftButton)
|
|
{
|
|
emit ChoosedTool(id, Scene::Detail);
|
|
}
|
|
QGraphicsItem::mouseReleaseEvent(event);
|
|
}
|
|
|
|
void VToolDetail::contextMenuEvent(QGraphicsSceneContextMenuEvent *event)
|
|
{
|
|
QMenu menu;
|
|
QAction *actionOption = menu.addAction(tr("Options"));
|
|
QAction *actionRemove = menu.addAction(tr("Delete"));
|
|
if (_referens > 1)
|
|
{
|
|
actionRemove->setEnabled(false);
|
|
}
|
|
else
|
|
{
|
|
actionRemove->setEnabled(true);
|
|
}
|
|
QAction *selectedAction = menu.exec(event->screenPos());
|
|
if (selectedAction == actionOption)
|
|
{
|
|
dialogDetail = QSharedPointer<DialogDetail>(new DialogDetail(getData(), Draw::Modeling));
|
|
connect(qobject_cast< VMainGraphicsScene * >(this->scene()), &VMainGraphicsScene::ChoosedObject,
|
|
dialogDetail.data(), &DialogDetail::ChoosedObject);
|
|
connect(dialogDetail.data(), &DialogDetail::DialogClosed, this, &VToolDetail::FullUpdateFromGui);
|
|
setDialog();
|
|
dialogDetail->show();
|
|
}
|
|
if (selectedAction == actionRemove)
|
|
{
|
|
//remove form xml file
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
if (domElement.isElement())
|
|
{
|
|
QDomNode element = domElement.parentNode();
|
|
if (element.isNull() == false)
|
|
{
|
|
//deincrement referens
|
|
RemoveReferens();
|
|
element.removeChild(domElement);
|
|
//update xml file
|
|
emit FullUpdateTree();
|
|
//remove form scene
|
|
emit RemoveTool(this);
|
|
}
|
|
else
|
|
{
|
|
qWarning()<<"parentNode isNull"<<Q_FUNC_INFO;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
qWarning()<<"Can't get element by id = "<<id<<Q_FUNC_INFO;
|
|
}
|
|
}
|
|
}
|
|
|
|
void VToolDetail::RemoveReferens()
|
|
{
|
|
VDetail detail = VAbstractTool::data.GetDetail(id);
|
|
for (qint32 i = 0; i< detail.CountNode(); ++i)
|
|
{
|
|
doc->DecrementReferens(detail[i].getId());
|
|
}
|
|
}
|
|
|
|
void VToolDetail::AddNode(QDomElement &domElement, VNodeDetail &node)
|
|
{
|
|
QDomElement nod = doc->createElement(TagNode);
|
|
|
|
AddAttribute(nod, AttrIdObject, node.getId());
|
|
AddAttribute(nod, AttrMx, toMM(node.getMx()));
|
|
AddAttribute(nod, AttrMy, toMM(node.getMy()));
|
|
if (node.getTypeNode() == NodeDetail::Contour)
|
|
{
|
|
AddAttribute(nod, AttrNodeType, NodeTypeContour);
|
|
}
|
|
else
|
|
{
|
|
AddAttribute(nod, AttrNodeType, NodeTypeModeling);
|
|
}
|
|
switch (node.getTypeTool())
|
|
{
|
|
case (Tool::AlongLineTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("AlongLineTool"));
|
|
break;
|
|
case (Tool::ArcTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("ArcTool"));
|
|
break;
|
|
case (Tool::BisectorTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("BisectorTool"));
|
|
break;
|
|
case (Tool::EndLineTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("EndLineTool"));
|
|
break;
|
|
case (Tool::LineIntersectTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("LineIntersectTool"));
|
|
break;
|
|
case (Tool::LineTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("LineTool"));
|
|
break;
|
|
case (Tool::NodeArc):
|
|
AddAttribute(nod, AttrType, QStringLiteral("NodeArc"));
|
|
break;
|
|
case (Tool::NodePoint):
|
|
AddAttribute(nod, AttrType, QStringLiteral("NodePoint"));
|
|
break;
|
|
case (Tool::NodeSpline):
|
|
AddAttribute(nod, AttrType, QStringLiteral("NodeSpline"));
|
|
break;
|
|
case (Tool::NodeSplinePath):
|
|
AddAttribute(nod, AttrType, QStringLiteral("NodeSplinePath"));
|
|
break;
|
|
case (Tool::NormalTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("NormalTool"));
|
|
break;
|
|
case (Tool::PointOfContact):
|
|
AddAttribute(nod, AttrType, QStringLiteral("PointOfContact"));
|
|
break;
|
|
case (Tool::ShoulderPointTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("ShoulderPointTool"));
|
|
break;
|
|
case (Tool::SplinePathTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("SplinePathTool"));
|
|
break;
|
|
case (Tool::SplineTool):
|
|
AddAttribute(nod, AttrType, QStringLiteral("SplineTool"));
|
|
break;
|
|
case (Tool::Height):
|
|
AddAttribute(nod, AttrType, QStringLiteral("Height"));
|
|
break;
|
|
case (Tool::Triangle):
|
|
AddAttribute(nod, AttrType, QStringLiteral("Triangle"));
|
|
break;
|
|
case (Tool::PointOfIntersection):
|
|
AddAttribute(nod, AttrType, QStringLiteral("PointOfIntersection"));
|
|
break;
|
|
default:
|
|
qWarning()<<"May be wrong tool type!!! Ignoring."<<Q_FUNC_INFO;
|
|
break;
|
|
}
|
|
domElement.appendChild(nod);
|
|
}
|
|
|
|
void VToolDetail::RefreshGeometry()
|
|
{
|
|
QPainterPath path = VAbstractTool::data.ContourPath(id);
|
|
this->setPath(path);
|
|
}
|
|
|
|
template <typename Tool>
|
|
void VToolDetail::InitTool(VMainGraphicsScene *scene, const VNodeDetail &node)
|
|
{
|
|
QHash<qint64, VDataTool*>* tools = doc->getTools();
|
|
Q_ASSERT(tools != 0);
|
|
Tool *tool = qobject_cast<Tool*>(tools->value(node.getId()));
|
|
Q_ASSERT(tool != 0);
|
|
connect(tool, &Tool::ChoosedTool, scene, &VMainGraphicsScene::ChoosedItem);
|
|
connect(tool, &Tool::RemoveTool, scene, &VMainGraphicsScene::RemoveTool);
|
|
tool->setParentItem(this);
|
|
}
|