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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <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"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QStaticStringData>
|
|
|
|
#include <QStringData>
|
|
|
|
#include <QStringDataPtr>
|
|
|
|
#include <QUndoStack>
|
|
|
|
#include <Qt>
|
|
|
|
|
2014-06-15 19:07:54 +02:00
|
|
|
#include "../../undocommands/adddetnode.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vgeometry/vgobject.h"
|
|
|
|
#include "../vmisc/vabstractapplication.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vmisc/def.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vpatterndb/vcontainer.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vabstracttool.h"
|
2015-06-18 19:23:24 +02:00
|
|
|
|
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.
|
|
|
|
*/
|
2015-06-18 19:23:24 +02:00
|
|
|
VAbstractNode::VAbstractNode(VAbstractPattern *doc, VContainer *data, const quint32 &id, const quint32 &idNode,
|
2016-06-30 17:32:08 +02:00
|
|
|
const QString &drawName, const quint32 &idTool, QObject *parent)
|
2017-03-22 11:05:53 +01:00
|
|
|
: VAbstractTool(doc, data, id, parent),
|
|
|
|
parentType(ParentType::Item),
|
|
|
|
idNode(idNode),
|
|
|
|
idTool(idTool),
|
|
|
|
m_drawName(drawName),
|
|
|
|
m_exluded(false)
|
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-09-03 15:52:16 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::ShowVisualization(bool show)
|
|
|
|
{
|
|
|
|
Q_UNUSED(show)
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-12-26 14:08:41 +01:00
|
|
|
void VAbstractNode::incrementReferens()
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2017-01-16 11:06:50 +01:00
|
|
|
VAbstractTool::incrementReferens();
|
2015-12-26 18:10:02 +01:00
|
|
|
if (_referens == 1)
|
2015-12-26 14:08:41 +01:00
|
|
|
{
|
2016-05-25 09:41:00 +02:00
|
|
|
if (idTool != NULL_ID)
|
|
|
|
{
|
|
|
|
doc->IncrementReferens(idTool);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const QSharedPointer<VGObject> node = VAbstractTool::data.GetGObject(idNode);
|
|
|
|
doc->IncrementReferens(node->getIdTool());
|
|
|
|
}
|
2015-12-26 14:08:41 +01:00
|
|
|
ShowNode();
|
|
|
|
QDomElement domElement = doc->elementById(id);
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
|
|
|
doc->SetParametrUsage(domElement, AttrInUse, NodeUsage::InUse);
|
|
|
|
}
|
|
|
|
}
|
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()
|
|
|
|
{
|
2017-01-16 11:06:50 +01:00
|
|
|
VAbstractTool::decrementReferens();
|
2015-12-26 18:10:02 +01:00
|
|
|
if (_referens == 0)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2016-05-25 09:41:00 +02:00
|
|
|
if (idTool != NULL_ID)
|
|
|
|
{
|
|
|
|
doc->DecrementReferens(idTool);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const QSharedPointer<VGObject> node = VAbstractTool::data.GetGObject(idNode);
|
|
|
|
doc->DecrementReferens(node->getIdTool());
|
|
|
|
}
|
2015-12-26 14:08:41 +01:00
|
|
|
HideNode();
|
2015-02-11 11:43:50 +01:00
|
|
|
QDomElement domElement = doc->elementById(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2015-12-26 14:08:41 +01:00
|
|
|
doc->SetParametrUsage(domElement, AttrInUse, NodeUsage::NotInUse);
|
2013-09-30 18:29:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-12 15:38:28 +02:00
|
|
|
|
2016-01-07 17:43:08 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
ParentType VAbstractNode::GetParentType() const
|
|
|
|
{
|
|
|
|
return parentType;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::SetParentType(const ParentType &value)
|
|
|
|
{
|
|
|
|
parentType = value;
|
|
|
|
}
|
|
|
|
|
2016-04-06 11:03:34 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::GroupVisibility(quint32 object, bool visible)
|
|
|
|
{
|
2016-12-20 20:19:21 +01:00
|
|
|
Q_UNUSED(object)
|
|
|
|
Q_UNUSED(visible)
|
2016-04-06 11:03:34 +02:00
|
|
|
}
|
|
|
|
|
2017-03-22 11:05:53 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VAbstractNode::IsExluded() const
|
|
|
|
{
|
|
|
|
return m_exluded;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::SetExluded(bool exluded)
|
|
|
|
{
|
|
|
|
m_exluded = exluded;
|
|
|
|
}
|
|
|
|
|
2017-02-08 10:06:17 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VAbstractNode::ToolCreation(const Source &typeCreation)
|
|
|
|
{
|
|
|
|
if (typeCreation == Source::FromGui || typeCreation == Source::FromTool)
|
|
|
|
{
|
|
|
|
AddToFile();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-12 15:38:28 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-12-26 14:08:41 +01:00
|
|
|
/**
|
|
|
|
* @brief AddToModeling add tag to modeling tag current pattern peace.
|
|
|
|
* @param domElement tag.
|
|
|
|
*/
|
|
|
|
void VAbstractNode::AddToModeling(const QDomElement &domElement)
|
2014-06-12 15:38:28 +02:00
|
|
|
{
|
2016-06-30 17:32:08 +02:00
|
|
|
AddDetNode *addNode = new AddDetNode(domElement, doc, m_drawName);
|
2015-12-26 14:08:41 +01:00
|
|
|
qApp->getUndoStack()->push(addNode);
|
2014-06-12 15:38:28 +02:00
|
|
|
}
|