2016-11-28 09:47:36 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 26 11, 2016
|
|
|
|
**
|
|
|
|
** @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) 2016 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 "savepiecepathoptions.h"
|
|
|
|
|
|
|
|
#include <QDomElement>
|
|
|
|
#include <QUndoCommand>
|
|
|
|
#include <QDebug>
|
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
SavePiecePathOptions::~SavePiecePathOptions()
|
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void SavePiecePathOptions::undo()
|
|
|
|
{
|
|
|
|
qCDebug(vUndo, "Undo.");
|
|
|
|
|
|
|
|
QDomElement domElement = doc->elementById(nodeId);
|
|
|
|
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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void SavePiecePathOptions::redo()
|
|
|
|
{
|
|
|
|
qCDebug(vUndo, "Redo.");
|
|
|
|
|
|
|
|
QDomElement domElement = doc->elementById(nodeId);
|
|
|
|
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));
|
|
|
|
|
|
|
|
SCASSERT(m_data);
|
2016-11-29 16:39:13 +01:00
|
|
|
m_data->UpdatePiecePath(nodeId, m_newPath);
|
2016-11-28 09:47:36 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qCDebug(vUndo, "Can't find path with id = %u.", nodeId);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool SavePiecePathOptions::mergeWith(const QUndoCommand *command)
|
|
|
|
{
|
|
|
|
const SavePiecePathOptions *saveCommand = static_cast<const SavePiecePathOptions *>(command);
|
|
|
|
SCASSERT(saveCommand != nullptr);
|
|
|
|
const quint32 id = saveCommand->PathId();
|
|
|
|
|
|
|
|
if (id != nodeId)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_newPath = saveCommand->NewPath();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
int SavePiecePathOptions::id() const
|
|
|
|
{
|
|
|
|
return static_cast<int>(UndoCommand::SavePiecePathOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
quint32 SavePiecePathOptions::PathId() const
|
|
|
|
{
|
|
|
|
return nodeId;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VPiecePath SavePiecePathOptions::NewPath() const
|
|
|
|
{
|
|
|
|
return m_newPath;
|
|
|
|
}
|