60810c4d04
decrementReferens() where possible. --HG-- branch : feature
155 lines
5.2 KiB
C++
155 lines
5.2 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vabstractnode.cpp
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date November 15, 2013
|
|
**
|
|
** @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
|
|
** <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 "vabstractnode.h"
|
|
|
|
#include <QSharedPointer>
|
|
#include <QStaticStringData>
|
|
#include <QStringData>
|
|
#include <QStringDataPtr>
|
|
#include <QUndoStack>
|
|
#include <Qt>
|
|
|
|
#include "../../undocommands/adddetnode.h"
|
|
#include "../ifc/ifcdef.h"
|
|
#include "../ifc/xml/vabstractpattern.h"
|
|
#include "../vgeometry/vgobject.h"
|
|
#include "../vmisc/vabstractapplication.h"
|
|
#include "../vmisc/def.h"
|
|
#include "../vpatterndb/vcontainer.h"
|
|
#include "../vabstracttool.h"
|
|
|
|
class QDomElement;
|
|
|
|
const QString VAbstractNode::AttrIdTool = QStringLiteral("idTool");
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @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.
|
|
*/
|
|
VAbstractNode::VAbstractNode(VAbstractPattern *doc, VContainer *data, const quint32 &id, const quint32 &idNode,
|
|
const QString &drawName, const quint32 &idTool, QObject *parent)
|
|
: VAbstractTool(doc, data, id, parent), parentType(ParentType::Item), idNode(idNode), idTool(idTool),
|
|
currentColor(Qt::black), m_drawName(drawName)
|
|
{
|
|
_referens = 0;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VAbstractNode::ShowVisualization(bool show)
|
|
{
|
|
Q_UNUSED(show)
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VAbstractNode::incrementReferens()
|
|
{
|
|
VAbstractTool::incrementReferens();
|
|
if (_referens == 1)
|
|
{
|
|
if (idTool != NULL_ID)
|
|
{
|
|
doc->IncrementReferens(idTool);
|
|
}
|
|
else
|
|
{
|
|
const QSharedPointer<VGObject> node = VAbstractTool::data.GetGObject(idNode);
|
|
doc->IncrementReferens(node->getIdTool());
|
|
}
|
|
ShowNode();
|
|
QDomElement domElement = doc->elementById(id);
|
|
if (domElement.isElement())
|
|
{
|
|
doc->SetParametrUsage(domElement, AttrInUse, NodeUsage::InUse);
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief decrementReferens decrement reference for all parent objects.
|
|
*/
|
|
void VAbstractNode::decrementReferens()
|
|
{
|
|
VAbstractTool::decrementReferens();
|
|
if (_referens == 0)
|
|
{
|
|
if (idTool != NULL_ID)
|
|
{
|
|
doc->DecrementReferens(idTool);
|
|
}
|
|
else
|
|
{
|
|
const QSharedPointer<VGObject> node = VAbstractTool::data.GetGObject(idNode);
|
|
doc->DecrementReferens(node->getIdTool());
|
|
}
|
|
HideNode();
|
|
QDomElement domElement = doc->elementById(id);
|
|
if (domElement.isElement())
|
|
{
|
|
doc->SetParametrUsage(domElement, AttrInUse, NodeUsage::NotInUse);
|
|
}
|
|
}
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
ParentType VAbstractNode::GetParentType() const
|
|
{
|
|
return parentType;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VAbstractNode::SetParentType(const ParentType &value)
|
|
{
|
|
parentType = value;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
void VAbstractNode::GroupVisibility(quint32 object, bool visible)
|
|
{
|
|
Q_UNUSED(object)
|
|
Q_UNUSED(visible)
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
/**
|
|
* @brief AddToModeling add tag to modeling tag current pattern peace.
|
|
* @param domElement tag.
|
|
*/
|
|
void VAbstractNode::AddToModeling(const QDomElement &domElement)
|
|
{
|
|
AddDetNode *addNode = new AddDetNode(domElement, doc, m_drawName);
|
|
qApp->getUndoStack()->push(addNode);
|
|
}
|