/************************************************************************ ** ** @file ** @author Roman Telezhynskyi ** @date 26 11, 2016 ** ** @brief ** @copyright ** This source code is part of the Valentina project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2016 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 "savepiecepathoptions.h" #include #include #include #include "../ifc/xml/vabstractpattern.h" #include "../vmisc/logging.h" #include "../tools/nodeDetails/vtoolpiecepath.h" //--------------------------------------------------------------------------------------------------------------------- SavePiecePathOptions::SavePiecePathOptions(const VPiecePath &oldPath, const VPiecePath &newPath, VAbstractPattern *doc, VContainer *data, quint32 id, QUndoCommand *parent) : VUndoCommand(QDomElement(), doc, parent), m_oldPath(oldPath), m_newPath(newPath), m_data(data) { setText(tr("save path options")); nodeId = id; } //--------------------------------------------------------------------------------------------------------------------- void SavePiecePathOptions::undo() { qCDebug(vUndo, "Undo."); QDomElement domElement = doc->elementById(nodeId, VAbstractPattern::TagPath); if (domElement.isElement()) { VToolPiecePath::AddAttributes(doc, domElement, nodeId, m_oldPath); doc->RemoveAllChildren(domElement);//Very important to clear before rewrite VToolPiecePath::AddNodes(doc, domElement, m_oldPath); DecrementReferences(m_newPath.MissingNodes(m_oldPath)); IncrementReferences(m_oldPath.MissingNodes(m_newPath)); SCASSERT(m_data); m_data->UpdatePiecePath(nodeId, m_oldPath); } else { qCDebug(vUndo, "Can't find path with id = %u.", nodeId); } } //--------------------------------------------------------------------------------------------------------------------- void SavePiecePathOptions::redo() { qCDebug(vUndo, "Redo."); QDomElement domElement = doc->elementById(nodeId, VAbstractPattern::TagPath); if (domElement.isElement()) { VToolPiecePath::AddAttributes(doc, domElement, nodeId, m_newPath); doc->RemoveAllChildren(domElement);//Very important to clear before rewrite VToolPiecePath::AddNodes(doc, domElement, m_newPath); DecrementReferences(m_oldPath.MissingNodes(m_newPath)); IncrementReferences(m_newPath.MissingNodes(m_oldPath)); SCASSERT(m_data); m_data->UpdatePiecePath(nodeId, m_newPath); } else { qCDebug(vUndo, "Can't find path with id = %u.", nodeId); } }