113 lines
3.3 KiB
C++
113 lines
3.3 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vabstractnode.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date November 15, 2013
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
** <https://gitlab.com/smart-pattern/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/>.
|
|
**
|
|
*************************************************************************/
|
|
|
|
#ifndef VABSTRACTNODE_H
|
|
#define VABSTRACTNODE_H
|
|
|
|
#include <qcompilerdetection.h>
|
|
#include <QColor>
|
|
#include <QDomElement>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QString>
|
|
#include <QtGlobal>
|
|
|
|
#include "../vabstracttool.h"
|
|
|
|
enum class ParentType : bool {Scene, Item};
|
|
|
|
struct VAbstractNodeInitData : VAbstractToolInitData
|
|
{
|
|
VAbstractNodeInitData()
|
|
: VAbstractToolInitData(),
|
|
idObject(NULL_ID),
|
|
drawName(),
|
|
idTool(NULL_ID)
|
|
{}
|
|
|
|
quint32 idObject;
|
|
QString drawName;
|
|
quint32 idTool;
|
|
};
|
|
|
|
/**
|
|
* @brief The VAbstractNode class parent class for all detail node.
|
|
*/
|
|
class VAbstractNode : public VAbstractTool
|
|
{
|
|
Q_OBJECT // NOLINT
|
|
public:
|
|
VAbstractNode(VAbstractPattern *doc, VContainer *data, const quint32 &id, const quint32 &idNode,
|
|
const QString &drawName = QString(), const quint32 &idTool = 0, QObject *parent = nullptr);
|
|
virtual ~VAbstractNode() = default;
|
|
static const QString AttrIdTool;
|
|
virtual void ShowVisualization(bool show) override;
|
|
virtual void incrementReferens() override;
|
|
virtual void decrementReferens() override;
|
|
|
|
ParentType GetParentType() const;
|
|
void SetParentType(const ParentType &value);
|
|
|
|
quint32 GetIdTool() const;
|
|
|
|
virtual void GroupVisibility(quint32 object, bool visible) override;
|
|
|
|
bool IsExluded() const;
|
|
void SetExluded(bool exluded);
|
|
|
|
protected:
|
|
ParentType parentType;
|
|
|
|
/** @brief idNodenode id. */
|
|
quint32 idNode;
|
|
|
|
/** @brief idTool id tool. */
|
|
quint32 idTool;
|
|
|
|
QString m_drawName;
|
|
|
|
bool m_exluded;
|
|
|
|
void AddToModeling(const QDomElement &domElement);
|
|
virtual void ToolCreation(const Source &typeCreation) override;
|
|
virtual void SetVisualization() override {}
|
|
|
|
virtual void ShowNode()=0;
|
|
virtual void HideNode()=0;
|
|
private:
|
|
Q_DISABLE_COPY_MOVE(VAbstractNode) // NOLINT
|
|
};
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline quint32 VAbstractNode::GetIdTool() const
|
|
{
|
|
return idTool;
|
|
}
|
|
|
|
#endif // VABSTRACTNODE_H
|