2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vabstractnode.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @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 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
#include "vabstractnode.h"
|
|
|
|
#include <QDebug>
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../xml/vpattern.h"
|
2014-06-15 19:07:54 +02:00
|
|
|
#include "../../undocommands/adddetnode.h"
|
2014-09-25 17:44:06 +02:00
|
|
|
#include "../../core/vapplication.h"
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VAbstractNode::AttrIdObject = QStringLiteral("idObject");
|
2014-01-02 16:50:01 +01:00
|
|
|
const QString VAbstractNode::AttrIdTool = QStringLiteral("idTool");
|
2013-10-29 14:45:07 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VAbstractNode constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param idNode object id in containerNode.
|
|
|
|
* @param idTool id tool.
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
VAbstractNode::VAbstractNode(VPattern *doc, VContainer *data, const quint32 &id, const quint32 &idNode,
|
|
|
|
const quint32 &idTool, QObject *parent)
|
2014-01-02 18:16:16 +01:00
|
|
|
: VAbstractTool(doc, data, id, parent), idNode(idNode), idTool(idTool)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
_referens = 0;
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-01-13 01:48:31 +01:00
|
|
|
void VAbstractNode::DeleteNode()
|
|
|
|
{
|
|
|
|
if (_referens <= 1)
|
|
|
|
{
|
2014-06-12 15:38:28 +02:00
|
|
|
RemoveReferens();//deincrement referens
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void VAbstractNode::RestoreNode()
|
|
|
|
{
|
|
|
|
if (_referens <= 1)
|
|
|
|
{
|
|
|
|
RestoreReferens();
|
2014-01-13 01:48:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::ShowVisualization(bool show)
|
|
|
|
{
|
|
|
|
Q_UNUSED(show)
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief AddToModeling add tag to modeling tag current pattern peace.
|
|
|
|
* @param domElement tag.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VAbstractNode::AddToModeling(const QDomElement &domElement)
|
|
|
|
{
|
2014-06-15 19:07:54 +02:00
|
|
|
AddDetNode *addNode = new AddDetNode(domElement, doc);
|
|
|
|
qApp->getUndoStack()->push(addNode);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2013-09-30 18:29:03 +02:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief decrementReferens decrement reference for all parent objects.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VAbstractNode::decrementReferens()
|
|
|
|
{
|
|
|
|
if (_referens > 0)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
--_referens;
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
if (_referens <= 0)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
doc->DecrementReferens(idNode);
|
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
QDomNode element = domElement.parentNode();
|
2013-11-04 21:35:15 +01:00
|
|
|
if (element.isNull() == false)
|
|
|
|
{
|
2013-09-30 18:29:03 +02:00
|
|
|
element.removeChild(domElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-12 15:38:28 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::RemoveReferens()
|
|
|
|
{
|
|
|
|
if (idTool != 0)
|
|
|
|
{
|
|
|
|
doc->DecrementReferens(idTool);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doc->DecrementReferens(idNode);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::RestoreReferens()
|
|
|
|
{
|
|
|
|
if (idTool != 0)
|
|
|
|
{
|
|
|
|
doc->IncrementReferens(idTool);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doc->IncrementReferens(idNode);
|
|
|
|
}
|
|
|
|
}
|
2014-08-30 21:58:31 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)
|
|
|
|
{
|
2014-09-11 18:52:02 +02:00
|
|
|
Q_UNUSED(tag)
|
|
|
|
Q_UNUSED(obj)
|
2014-08-30 21:58:31 +02:00
|
|
|
}
|