/************************************************************************ ** ** @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 "undocommands.h" #include "../tools/nodeDetails/vabstractnode.h" #include SaveDetailOptions::SaveDetailOptions(const VDetail &oldDet, const VDetail &newDet, VPattern *doc, const quint32 &id, QGraphicsScene *scene, QUndoCommand *parent) : QObject(), QUndoCommand(parent), oldDet(oldDet), newDet(newDet), doc(doc), detId(id), scene(scene) { setText(tr("Save detail option")); } //--------------------------------------------------------------------------------------------------------------------- SaveDetailOptions::~SaveDetailOptions() {} //--------------------------------------------------------------------------------------------------------------------- void SaveDetailOptions::undo() { QDomElement domElement = doc->elementById(QString().setNum(detId)); if (domElement.isElement()) { doc->SetAttribute(domElement, VAbstractTool::AttrName, oldDet.getName()); doc->SetAttribute(domElement, VToolDetail::AttrSupplement, QString().setNum(oldDet.getSeamAllowance())); doc->SetAttribute(domElement, VToolDetail::AttrClosed, QString().setNum(oldDet.getClosed())); doc->SetAttribute(domElement, VToolDetail::AttrWidth, QString().setNum(oldDet.getWidth())); doc->RemoveAllChild(domElement); for (ptrdiff_t 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(); } } emit NeedLiteParsing(); QList list = scene->views(); VAbstractTool::NewSceneRect(scene, list[0]); } else { qDebug()<<"Can't find detail with id ="<< detId << Q_FUNC_INFO; } } //--------------------------------------------------------------------------------------------------------------------- void SaveDetailOptions::redo() { QDomElement domElement = doc->elementById(QString().setNum(detId)); if (domElement.isElement()) { doc->SetAttribute(domElement, VAbstractTool::AttrName, newDet.getName()); doc->SetAttribute(domElement, VToolDetail::AttrSupplement, QString().setNum(newDet.getSeamAllowance())); doc->SetAttribute(domElement, VToolDetail::AttrClosed, QString().setNum(newDet.getClosed())); doc->SetAttribute(domElement, VToolDetail::AttrWidth, QString().setNum(newDet.getWidth())); doc->RemoveAllChild(domElement); for (ptrdiff_t 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(); } } emit NeedLiteParsing(); QList listV = scene->views(); VAbstractTool::NewSceneRect(scene, listV[0]); } else { qDebug()<<"Can't find detail with id ="<< detId << Q_FUNC_INFO; } } //--------------------------------------------------------------------------------------------------------------------- bool SaveDetailOptions::mergeWith(const QUndoCommand *command) { const SaveDetailOptions *saveCommand = static_cast(command); SCASSERT(saveCommand != nullptr); const quint32 id = saveCommand->getDetId(); if (id != detId) { return false; } newDet = saveCommand->getNewDet(); return true; } //--------------------------------------------------------------------------------------------------------------------- int SaveDetailOptions::id() const { return static_cast(UndoCommand::SaveDetailOptions); }