/************************************************************************ ** ** @file savedetailoptions.cpp ** @author Roman Telezhynskyi ** @date 12 6, 2014 ** ** @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) 2014 Valentina project ** 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 . ** *************************************************************************/ #include "savedetailoptions.h" #include "../tools/nodeDetails/vabstractnode.h" #include #include Q_LOGGING_CATEGORY(vUndoSaveDetailOptions, "v.undo.save.detail.options") SaveDetailOptions::SaveDetailOptions(const VDetail &oldDet, const VDetail &newDet, VPattern *doc, const quint32 &id, QGraphicsScene *scene, QUndoCommand *parent) : VUndoCommand(QDomElement(), doc, parent), oldDet(oldDet), newDet(newDet), scene(scene) { setText(tr("Save detail option")); nodeId = id; } //--------------------------------------------------------------------------------------------------------------------- SaveDetailOptions::~SaveDetailOptions() {} //--------------------------------------------------------------------------------------------------------------------- void SaveDetailOptions::undo() { qCDebug(vUndoSaveDetailOptions)<<"Undo."; QDomElement domElement = doc->elementById(QString().setNum(nodeId)); if (domElement.isElement()) { SaveDet(domElement, oldDet); doc->RemoveAllChild(domElement); for (int i = 0; i < oldDet.CountNode(); ++i) { VToolDetail::AddNode(doc, domElement, oldDet.at(i)); } QVector nodes = oldDet.getNodes(); QHash* tools = doc->getTools(); if (nodes.size()>0) { for (qint32 i = 0; i < nodes.size(); ++i) { VAbstractNode *node = qobject_cast(tools->value(nodes.at(i).getId())); node->RestoreNode(); doc->IncrementReferens(nodes.at(i).getId()); } } emit NeedLiteParsing(Document::LiteParse); QList list = scene->views(); VAbstractTool::NewSceneRect(scene, list[0]); } else { qCDebug(vUndoSaveDetailOptions)<<"Can't find detail with id ="<elementById(QString().setNum(nodeId)); if (domElement.isElement()) { SaveDet(domElement, newDet); doc->RemoveAllChild(domElement); for (int i = 0; i < newDet.CountNode(); ++i) { VToolDetail::AddNode(doc, domElement, newDet.at(i)); } QList list = oldDet.Missing(newDet); QHash* tools = doc->getTools(); if (list.size()>0) { for (qint32 i = 0; i < list.size(); ++i) { VAbstractNode *node = qobject_cast(tools->value(list.at(i))); node->DeleteNode(); doc->DecrementReferens(list.at(i)); } } emit NeedLiteParsing(Document::LiteParse); QList listV = scene->views(); VAbstractTool::NewSceneRect(scene, listV[0]); } else { qCDebug(vUndoSaveDetailOptions)<<"Can't find detail with id ="<(command); SCASSERT(saveCommand != nullptr); const quint32 id = saveCommand->getDetId(); if (id != nodeId) { return false; } newDet = saveCommand->getNewDet(); return true; } //--------------------------------------------------------------------------------------------------------------------- int SaveDetailOptions::id() const { return static_cast(UndoCommand::SaveDetailOptions); } //--------------------------------------------------------------------------------------------------------------------- void SaveDetailOptions::SaveDet(QDomElement &domElement, const VDetail &det) { doc->SetAttribute(domElement, VAbstractTool::AttrName, det.getName()); doc->SetAttribute(domElement, VToolDetail::AttrSupplement, QString().setNum(det.getSeamAllowance())); doc->SetAttribute(domElement, VToolDetail::AttrClosed, QString().setNum(det.getClosed())); doc->SetAttribute(domElement, VToolDetail::AttrWidth, QString().setNum(det.getWidth())); }