2014-06-11 18:32:32 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file savetooloptions.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 11 6, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-06-11 18:32:32 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-06-11 18:32:32 +02:00
|
|
|
** <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 "savetooloptions.h"
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QDomNode>
|
|
|
|
|
|
|
|
#include "../vmisc/def.h"
|
|
|
|
#include "../vmisc/logging.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
|
|
#include "vundocommand.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2014-06-11 18:32:32 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-10-17 18:35:39 +02:00
|
|
|
SaveToolOptions::SaveToolOptions(const QDomElement &oldXml, const QDomElement &newXml,
|
|
|
|
const QList<quint32> &oldDependencies, const QList<quint32> &newDependencies,
|
|
|
|
VAbstractPattern *doc, const quint32 &id, QUndoCommand *parent)
|
|
|
|
: VUndoCommand(QDomElement(), doc, parent),
|
|
|
|
oldXml(oldXml),
|
|
|
|
newXml(newXml),
|
|
|
|
oldDependencies(oldDependencies),
|
|
|
|
newDependencies(newDependencies)
|
2014-06-11 18:32:32 +02:00
|
|
|
{
|
2015-06-24 16:48:57 +02:00
|
|
|
setText(tr("save tool option"));
|
2014-07-16 14:37:38 +02:00
|
|
|
nodeId = id;
|
2014-06-11 18:32:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void SaveToolOptions::undo()
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vUndo, "Undo.");
|
2014-11-20 18:52:51 +01:00
|
|
|
|
2015-02-11 11:43:50 +01:00
|
|
|
QDomElement domElement = doc->elementById(nodeId);
|
2014-06-11 18:32:32 +02:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
|
|
|
domElement.parentNode().replaceChild(oldXml, domElement);
|
|
|
|
|
2017-10-17 18:35:39 +02:00
|
|
|
DecrementReferences(Missing(newDependencies, oldDependencies));
|
|
|
|
IncrementReferences(Missing(oldDependencies, newDependencies));
|
|
|
|
|
2014-08-04 15:37:36 +02:00
|
|
|
emit NeedLiteParsing(Document::LiteParse);
|
2014-06-11 18:32:32 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vUndo, "Can't find tool with id = %u.", nodeId);
|
2014-06-11 18:32:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void SaveToolOptions::redo()
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vUndo, "Redo.");
|
2014-11-20 18:52:51 +01:00
|
|
|
|
2015-02-11 11:43:50 +01:00
|
|
|
QDomElement domElement = doc->elementById(nodeId);
|
2014-06-11 18:32:32 +02:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
|
|
|
domElement.parentNode().replaceChild(newXml, domElement);
|
|
|
|
|
2017-10-17 18:35:39 +02:00
|
|
|
DecrementReferences(Missing(oldDependencies, newDependencies));
|
|
|
|
IncrementReferences(Missing(newDependencies, oldDependencies));
|
|
|
|
|
2014-08-04 15:37:36 +02:00
|
|
|
emit NeedLiteParsing(Document::LiteParse);
|
2014-06-11 18:32:32 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vUndo, "Can't find tool with id = %u.", nodeId);
|
2014-06-11 18:32:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-10-17 18:35:39 +02:00
|
|
|
QVector<quint32> SaveToolOptions::Missing(const QList<quint32> &list1, const QList<quint32> &list2) const
|
2014-06-11 19:12:46 +02:00
|
|
|
{
|
2017-10-17 18:35:39 +02:00
|
|
|
QSet<quint32> set1 = QSet<quint32>::fromList(list1);
|
|
|
|
QSet<quint32> set2 = QSet<quint32>::fromList(list2);
|
|
|
|
return set1.subtract(set2).toList().toVector();
|
2014-06-11 19:12:46 +02:00
|
|
|
}
|
2017-10-23 09:45:58 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool SaveToolOptions::mergeWith(const QUndoCommand *command)
|
|
|
|
{
|
|
|
|
const SaveToolOptions *saveCommand = static_cast<const SaveToolOptions *>(command);
|
|
|
|
SCASSERT(saveCommand != nullptr)
|
|
|
|
|
|
|
|
if (saveCommand->getToolId() != nodeId)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const QSet<quint32> currentSet;
|
|
|
|
currentSet.fromList(newDependencies);
|
|
|
|
|
|
|
|
const QSet<quint32> candidateSet;
|
|
|
|
candidateSet.fromList(saveCommand->NewDependencies());
|
|
|
|
|
|
|
|
if (currentSet != candidateSet)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
newXml = saveCommand->getNewXml();
|
|
|
|
return true;
|
|
|
|
}
|