/************************************************************************ ** ** @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) 2013-2015 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 #include #include #include "../ifc/xml/vabstractpattern.h" #include "../ifc/ifcdef.h" #include "../vmisc/logging.h" #include "../vmisc/def.h" #include "../vpatterndb/vpatterninfogeometry.h" #include "../vpatterndb/vpatternpiecedata.h" #include "../tools/vtooldetail.h" #include "vundocommand.h" class QDomElement; class QUndoCommand; //--------------------------------------------------------------------------------------------------------------------- SaveDetailOptions::SaveDetailOptions(const VDetail &oldDet, const VDetail &newDet, VAbstractPattern *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(vUndo, "Undo."); QDomElement domElement = doc->elementById(nodeId); if (domElement.isElement()) { SaveDet(domElement, oldDet); doc->RemoveAllChildren(domElement); SavePatternPieceData(domElement, oldDet); SavePatternInfo(domElement, oldDet); for (int i = 0; i < oldDet.CountNode(); ++i) { VToolDetail::AddNode(doc, domElement, oldDet.at(i)); } IncrementReferences(oldDet.Missing(newDet)); emit NeedLiteParsing(Document::LiteParse); } else { qCDebug(vUndo, "Can't find detail with id = %u.", nodeId); return; } } //--------------------------------------------------------------------------------------------------------------------- void SaveDetailOptions::redo() { qCDebug(vUndo, "Redo."); QDomElement domElement = doc->elementById(nodeId); if (domElement.isElement()) { SaveDet(domElement, newDet); doc->RemoveAllChildren(domElement); SavePatternPieceData(domElement, newDet); SavePatternInfo(domElement, newDet); for (int i = 0; i < newDet.CountNode(); ++i) { VToolDetail::AddNode(doc, domElement, newDet.at(i)); } DecrementReferences(oldDet.Missing(newDet)); emit NeedLiteParsing(Document::LiteParse); } else { qCDebug(vUndo, "Can't find detail with id = %u.", nodeId); return; } } //--------------------------------------------------------------------------------------------------------------------- bool SaveDetailOptions::mergeWith(const QUndoCommand *command) { const SaveDetailOptions *saveCommand = static_cast(command); SCASSERT(saveCommand != nullptr); const quint32 id = saveCommand->getDetId(); if (id != nodeId || text() != command->text()) { 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, 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())); doc->SetAttribute(domElement, VToolDetail::AttrForbidFlipping, QString().setNum(det.getForbidFlipping())); } //--------------------------------------------------------------------------------------------------------------------- void SaveDetailOptions::SavePatternPieceData(QDomElement &domElement, const VDetail &det) { QDomElement domData = doc->createElement(VAbstractPattern::TagData); const VPatternPieceData& data = det.GetPatternPieceData(); doc->SetAttribute(domData, VAbstractPattern::AttrLetter, data.GetLetter()); doc->SetAttribute(domData, VAbstractPattern::AttrVisible, data.IsVisible() == true? trueStr : falseStr); doc->SetAttribute(domData, AttrMx, data.GetPos().x()); doc->SetAttribute(domData, AttrMy, data.GetPos().y()); doc->SetAttribute(domData, VToolDetail::AttrWidth, data.GetLabelWidth()); doc->SetAttribute(domData, VToolDetail::AttrHeight, data.GetLabelHeight()); doc->SetAttribute(domData, VToolDetail::AttrFont, data.GetFontSize()); doc->SetAttribute(domData, VToolDetail::AttrRotation, data.GetRotation()); for (int i = 0; i < data.GetMCPCount(); ++i) { MaterialCutPlacement mcp = data.GetMCP(i); QDomElement domMCP = doc->createElement(VAbstractPattern::TagMCP); doc->SetAttribute(domMCP, VAbstractPattern::AttrMaterial, int(mcp.m_eMaterial)); if (mcp.m_eMaterial == MaterialType::mtUserDefined) { qDebug() << "USER DEFINED MATERIAL"; doc->SetAttribute(domMCP, VAbstractPattern::AttrUserDefined, mcp.m_qsMaterialUserDef); } else { qDebug() << "PREDEFINED MATERIAL"; domMCP.removeAttribute(VAbstractPattern::AttrUserDefined); } doc->SetAttribute(domMCP, VAbstractPattern::AttrCutNumber, mcp.m_iCutNumber); doc->SetAttribute(domMCP, VAbstractPattern::AttrPlacement, int(mcp.m_ePlacement)); domData.appendChild(domMCP); } domElement.appendChild(domData); } //--------------------------------------------------------------------------------------------------------------------- void SaveDetailOptions::SavePatternInfo(QDomElement &domElement, const VDetail &det) { QDomElement domData = doc->createElement(VAbstractPattern::TagPatternInfo); const VPatternInfoGeometry& data = det.GetPatternInfo(); doc->SetAttribute(domData, VAbstractPattern::AttrVisible, data.IsVisible() == true? trueStr : falseStr); doc->SetAttribute(domData, AttrMx, data.GetPos().x()); doc->SetAttribute(domData, AttrMy, data.GetPos().y()); doc->SetAttribute(domData, VToolDetail::AttrWidth, data.GetLabelWidth()); doc->SetAttribute(domData, VToolDetail::AttrHeight, data.GetLabelHeight()); doc->SetAttribute(domData, VToolDetail::AttrFont, data.GetFontSize()); doc->SetAttribute(domData, VToolDetail::AttrRotation, data.GetRotation()); domElement.appendChild(domData); }