d7dfcb8898
--HG-- branch : develop
145 lines
5.3 KiB
C++
145 lines
5.3 KiB
C++
/************************************************************************
|
|
**
|
|
** @file savedetailoptions.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @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
|
|
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#include "savedetailoptions.h"
|
|
#include "../tools/nodeDetails/vabstractnode.h"
|
|
#include <QGraphicsView>
|
|
|
|
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()
|
|
{
|
|
QDomElement domElement = doc->elementById(QString().setNum(nodeId));
|
|
if (domElement.isElement())
|
|
{
|
|
SaveDet(domElement, oldDet);
|
|
doc->RemoveAllChild(domElement);
|
|
for (ptrdiff_t i = 0; i < oldDet.CountNode(); ++i)
|
|
{
|
|
VToolDetail::AddNode(doc, domElement, oldDet.at(i));
|
|
}
|
|
QVector<VNodeDetail> nodes = oldDet.getNodes();
|
|
QHash<quint32, VDataTool*>* tools = doc->getTools();
|
|
if (nodes.size()>0)
|
|
{
|
|
for (qint32 i = 0; i < nodes.size(); ++i)
|
|
{
|
|
VAbstractNode *node = qobject_cast<VAbstractNode *>(tools->value(nodes.at(i).getId()));
|
|
node->RestoreNode();
|
|
doc->IncrementReferens(nodes.at(i).getId());
|
|
}
|
|
}
|
|
emit NeedLiteParsing();
|
|
|
|
QList<QGraphicsView*> list = scene->views();
|
|
VAbstractTool::NewSceneRect(scene, list[0]);
|
|
}
|
|
else
|
|
{
|
|
qDebug()<<"Can't find detail with id ="<< nodeId << Q_FUNC_INFO;
|
|
return;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void SaveDetailOptions::redo()
|
|
{
|
|
QDomElement domElement = doc->elementById(QString().setNum(nodeId));
|
|
if (domElement.isElement())
|
|
{
|
|
SaveDet(domElement, newDet);
|
|
doc->RemoveAllChild(domElement);
|
|
for (ptrdiff_t i = 0; i < newDet.CountNode(); ++i)
|
|
{
|
|
VToolDetail::AddNode(doc, domElement, newDet.at(i));
|
|
}
|
|
QList<quint32> list = oldDet.Missing(newDet);
|
|
QHash<quint32, VDataTool*>* tools = doc->getTools();
|
|
if (list.size()>0)
|
|
{
|
|
for (qint32 i = 0; i < list.size(); ++i)
|
|
{
|
|
VAbstractNode *node = qobject_cast<VAbstractNode *>(tools->value(list.at(i)));
|
|
node->DeleteNode();
|
|
doc->DecrementReferens(list.at(i));
|
|
}
|
|
}
|
|
emit NeedLiteParsing();
|
|
|
|
QList<QGraphicsView*> listV = scene->views();
|
|
VAbstractTool::NewSceneRect(scene, listV[0]);
|
|
}
|
|
else
|
|
{
|
|
qDebug()<<"Can't find detail with id ="<< nodeId << Q_FUNC_INFO;
|
|
return;
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
bool SaveDetailOptions::mergeWith(const QUndoCommand *command)
|
|
{
|
|
const SaveDetailOptions *saveCommand = static_cast<const SaveDetailOptions *>(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<int>(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()));
|
|
}
|