/**************************************************************************** ** ** 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 . ** ****************************************************************************/ #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()), sceneDetails(scene) { VDetail detail = data->GetDetail(id); for (qint32 i = 0; i< detail.CountNode(); ++i) { switch (detail[i].getTypeTool()) { case (Tool::NodePoint): InitTool(scene, detail[i]); break; case (Tool::NodeArc): InitTool(scene, detail[i]); break; case (Tool::NodeSpline): InitTool(scene, detail[i]); break; case (Tool::NodeSplinePath): InitTool(scene, detail[i]); break; case (Tool::AlongLineTool): InitTool(scene, detail[i]); break; case (Tool::ArcTool): InitTool(scene, detail[i]); break; case (Tool::BisectorTool): InitTool(scene, detail[i]); break; case (Tool::EndLineTool): InitTool(scene, detail[i]); break; case (Tool::LineIntersectTool): InitTool(scene, detail[i]); break; case (Tool::LineTool): InitTool(scene, detail[i]); break; case (Tool::NormalTool): InitTool(scene, detail[i]); break; case (Tool::PointOfContact): InitTool(scene, detail[i]); break; case (Tool::ShoulderPointTool): InitTool(scene, detail[i]); break; case (Tool::SplinePathTool): InitTool(scene, detail[i]); break; case (Tool::SplineTool): InitTool(scene, detail[i]); break; case (Tool::Height): InitTool(scene, detail[i]); break; case (Tool::Triangle): InitTool(scene, detail[i]); break; case (Tool::PointOfIntersection): InitTool(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 &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."<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* 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()<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(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"<setPath(path); } template void VToolDetail::InitTool(VMainGraphicsScene *scene, const VNodeDetail &node) { QHash* tools = doc->getTools(); Q_ASSERT(tools != 0); Tool *tool = qobject_cast(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); }