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 vnodepoint.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 "vnodepoint.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QBrush>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QDomElement>
|
|
|
|
#include <QFlags>
|
|
|
|
#include <QGraphicsLineItem>
|
|
|
|
#include <QGraphicsScene>
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QGraphicsSceneMouseEvent>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QPen>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QRectF>
|
|
|
|
#include <QSharedPointer>
|
|
|
|
#include <QStaticStringData>
|
|
|
|
#include <QStringData>
|
|
|
|
#include <QStringDataPtr>
|
|
|
|
#include <Qt>
|
|
|
|
#include <new>
|
|
|
|
|
|
|
|
#include "../../../vgeometry/vpointf.h"
|
|
|
|
#include "../../../vwidgets/vgraphicssimpletextitem.h"
|
|
|
|
#include "../ifc/xml/vdomdocument.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vmisc/vabstractapplication.h"
|
|
|
|
#include "../vpatterndb/vcontainer.h"
|
|
|
|
#include "../vwidgets/vmaingraphicsscene.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vabstracttool.h"
|
|
|
|
#include "../vdatatool.h"
|
|
|
|
#include "vabstractnode.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VNodePoint::ToolType = QStringLiteral("modeling");
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VNodePoint constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param idPoint object id in containerPoint.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param idTool tool id.
|
|
|
|
* @param qoParent QObject parent
|
|
|
|
* @param parent parent object.
|
|
|
|
*/
|
2015-06-18 19:23:24 +02:00
|
|
|
VNodePoint::VNodePoint(VAbstractPattern *doc, VContainer *data, quint32 id, quint32 idPoint, const Source &typeCreation,
|
2016-06-30 17:32:08 +02:00
|
|
|
const QString &drawName, const quint32 &idTool, QObject *qoParent, QGraphicsItem *parent)
|
|
|
|
:VAbstractNode(doc, data, id, idPoint, drawName, idTool, qoParent), QGraphicsEllipseItem(parent), radius(0),
|
2014-02-26 10:22:05 +01:00
|
|
|
namePoint(nullptr), lineName(nullptr)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-06-11 19:36:17 +02:00
|
|
|
radius = ToPixel(DefPointRadius/*mm*/, Unit::Mm);
|
2013-09-10 14:29:06 +02:00
|
|
|
namePoint = new VGraphicsSimpleTextItem(this);
|
2015-12-17 11:03:44 +01:00
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::PointChoosed, this, &VNodePoint::PointChoosed);
|
2013-09-10 14:29:06 +02:00
|
|
|
lineName = new QGraphicsLineItem(this);
|
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::NameChangePosition, this,
|
|
|
|
&VNodePoint::NameChangePosition);
|
2016-12-21 19:45:14 +01:00
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::ShowContextMenu,
|
|
|
|
RECEIVER(this)[this](QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
2016-06-17 15:13:49 +02:00
|
|
|
emit ShowContextMenu(event);
|
|
|
|
});
|
2015-06-15 11:32:27 +02:00
|
|
|
this->setPen(QPen(Qt::black, qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))));
|
2013-09-10 14:29:06 +02:00
|
|
|
this->setBrush(QBrush(Qt::NoBrush));
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
this->setAcceptHoverEvents(true);
|
2014-08-21 14:44:40 +02:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<VPointF>(id));
|
2015-05-28 12:16:59 +02:00
|
|
|
ToolCreation(typeCreation);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief Create help create tool.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param idPoint object id in containerPoint.
|
|
|
|
* @param parse parser file mode.
|
|
|
|
* @param typeCreation way we create this tool.
|
|
|
|
* @param idTool tool id.
|
|
|
|
*/
|
2015-12-17 11:03:44 +01:00
|
|
|
void VNodePoint::Create(VAbstractPattern *doc, VContainer *data, VMainGraphicsScene *scene,
|
|
|
|
quint32 id, quint32 idPoint, const Document &parse,
|
2016-06-30 17:32:08 +02:00
|
|
|
const Source &typeCreation, const QString &drawName, const quint32 &idTool)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
2017-02-13 07:55:42 +01:00
|
|
|
VAbstractTool::AddRecord(id, Tool::NodePoint, doc);
|
2014-01-08 15:05:32 +01:00
|
|
|
//TODO Need create garbage collector and remove all nodes, what we don't use.
|
2014-01-02 18:16:16 +01:00
|
|
|
//Better check garbage before each saving file. Check only modeling tags.
|
2016-06-30 17:32:08 +02:00
|
|
|
VNodePoint *point = new VNodePoint(doc, data, id, idPoint, typeCreation, drawName, idTool, doc);
|
2015-12-26 14:08:41 +01:00
|
|
|
|
2015-12-17 11:03:44 +01:00
|
|
|
connect(scene, &VMainGraphicsScene::EnableToolMove, point, &VNodePoint::EnableToolMove);
|
2016-03-31 16:01:41 +02:00
|
|
|
connect(scene, &VMainGraphicsScene::EnablePointItemHover, point, &VNodePoint::AllowHover);
|
|
|
|
connect(scene, &VMainGraphicsScene::EnablePointItemSelection, point, &VNodePoint::AllowSelecting);
|
|
|
|
connect(scene, &VMainGraphicsScene::EnableLabelItemHover, point, &VNodePoint::AllowLabelHover);
|
|
|
|
connect(scene, &VMainGraphicsScene::EnableLabelItemSelection, point, &VNodePoint::AllowLabelSelecting);
|
2017-03-23 09:25:46 +01:00
|
|
|
VAbstractPattern::AddTool(id, point);
|
2015-12-26 14:08:41 +01:00
|
|
|
if (idTool != NULL_ID)
|
2014-01-02 16:50:01 +01:00
|
|
|
{
|
2014-01-02 18:16:16 +01:00
|
|
|
//Some nodes we don't show on scene. Tool that create this nodes must free memory.
|
2017-03-23 09:25:46 +01:00
|
|
|
VDataTool *tool = VAbstractPattern::getTool(idTool);
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT(tool != nullptr)
|
2015-12-26 14:08:41 +01:00
|
|
|
point->setParent(tool);// Adopted by a tool
|
2014-01-02 16:50:01 +01:00
|
|
|
}
|
2016-01-07 17:43:08 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Try to prevent memory leak
|
|
|
|
scene->addItem(point);// First adopted by scene
|
|
|
|
point->hide();// If no one will use node, it will stay hidden
|
|
|
|
point->SetParentType(ParentType::Scene);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-30 21:58:31 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VNodePoint::getTagName() const
|
|
|
|
{
|
2016-05-16 19:59:04 +02:00
|
|
|
return VAbstractPattern::TagPoint;
|
2014-08-30 21:58:31 +02:00
|
|
|
}
|
|
|
|
|
2015-12-17 11:03:44 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::PointChoosed()
|
|
|
|
{
|
|
|
|
emit ChoosedTool(id, SceneObject::Point);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief FullUpdateFromFile update tool data form file.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::FullUpdateFromFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<VPointF>(id));
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::AddToFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> point = VAbstractTool::data.GeometricObject<VPointF>(id);
|
2016-05-16 19:59:04 +02:00
|
|
|
QDomElement domElement = doc->createElement(getTagName());
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2014-03-21 11:08:29 +01:00
|
|
|
doc->SetAttribute(domElement, VDomDocument::AttrId, id);
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrType, ToolType);
|
|
|
|
doc->SetAttribute(domElement, AttrIdObject, idNode);
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
|
2014-08-30 21:58:31 +02:00
|
|
|
if (idTool != NULL_ID)
|
2014-01-02 16:50:01 +01:00
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrIdTool, idTool);
|
2014-01-02 16:50:01 +01:00
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
|
|
|
|
AddToModeling(domElement);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
|
|
*/
|
2013-12-24 12:24:29 +01:00
|
|
|
void VNodePoint::RefreshDataInFile()
|
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
const QSharedPointer<VPointF> point = VAbstractTool::data.GeometricObject<VPointF>(id);
|
2015-02-11 11:43:50 +01:00
|
|
|
QDomElement domElement = doc->elementById(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrIdObject, idNode);
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(point->mx()));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(point->my()));
|
2014-08-30 21:58:31 +02:00
|
|
|
if (idTool != NULL_ID)
|
2014-01-02 16:50:01 +01:00
|
|
|
{
|
2014-02-25 15:02:09 +01:00
|
|
|
doc->SetAttribute(domElement, AttrIdTool, idTool);
|
2014-01-02 16:50:01 +01:00
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-31 16:01:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::mousePressEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
// Special for not selectable item first need to call standard mousePressEvent then accept event
|
|
|
|
QGraphicsEllipseItem::mousePressEvent(event);
|
2016-05-24 11:43:30 +02:00
|
|
|
|
|
|
|
// Somehow clicking on notselectable object do not clean previous selections.
|
|
|
|
if (not (flags() & ItemIsSelectable) && scene())
|
|
|
|
{
|
|
|
|
scene()->clearSelection();
|
|
|
|
}
|
|
|
|
|
2016-03-31 16:01:41 +02:00
|
|
|
event->accept();// Special for not selectable item first need to call standard mousePressEvent then accept event
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief mouseReleaseEvent handle mouse release events.
|
|
|
|
* @param event mouse release event.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
2014-06-12 09:22:29 +02:00
|
|
|
emit ChoosedTool(id, SceneObject::Point);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2016-03-31 16:01:41 +02:00
|
|
|
QGraphicsEllipseItem::mouseReleaseEvent(event);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief hoverMoveEvent handle hover move events.
|
|
|
|
* @param event hover move event.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2016-12-20 20:19:21 +01:00
|
|
|
Q_UNUSED(event)
|
2015-06-15 11:32:27 +02:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(WidthMainLine(*VAbstractTool::data.GetPatternUnit()))));
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief hoverLeaveEvent handle hover leave events.
|
|
|
|
* @param event hover leave event.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2016-12-20 20:19:21 +01:00
|
|
|
Q_UNUSED(event)
|
2015-06-15 11:32:27 +02:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))));
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief NameChangePosition label change position.
|
|
|
|
* @param pos new position.
|
|
|
|
*/
|
2013-11-07 15:40:39 +01:00
|
|
|
void VNodePoint::NameChangePosition(const QPointF &pos)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-08-21 14:44:40 +02:00
|
|
|
VPointF *point = new VPointF(*VAbstractTool::data.GeometricObject<VPointF>(id));
|
2013-09-10 14:29:06 +02:00
|
|
|
QPointF p = pos - this->pos();
|
2013-12-29 17:48:57 +01:00
|
|
|
point->setMx(p.x());
|
|
|
|
point->setMy(p.y());
|
2013-09-10 14:29:06 +02:00
|
|
|
RefreshLine();
|
2013-12-29 17:48:57 +01:00
|
|
|
UpdateNamePosition(point->mx(), point->my());
|
|
|
|
VAbstractTool::data.UpdateGObject(id, point);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief UpdateNamePosition update label position in file.
|
|
|
|
* @param mx label bias x axis.
|
|
|
|
* @param my label bias y axis.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::UpdateNamePosition(qreal mx, qreal my)
|
|
|
|
{
|
2015-02-11 11:43:50 +01:00
|
|
|
QDomElement domElement = doc->elementById(id);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, QString().setNum(qApp->fromPixel(mx)));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, QString().setNum(qApp->fromPixel(my)));
|
2013-09-10 14:29:06 +02:00
|
|
|
emit toolhaveChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshPointGeometry refresh point on scene.
|
|
|
|
* @param point point position.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::RefreshPointGeometry(const VPointF &point)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
QRectF rec = QRectF(0, 0, radius*2, radius*2);
|
|
|
|
rec.translate(-rec.center().x(), -rec.center().y());
|
|
|
|
this->setRect(rec);
|
2017-03-31 16:04:11 +02:00
|
|
|
this->setPos(static_cast<QPointF>(point));
|
2014-08-09 10:43:01 +02:00
|
|
|
|
|
|
|
namePoint->blockSignals(true);
|
2013-09-10 14:29:06 +02:00
|
|
|
namePoint->setText(point.name());
|
|
|
|
namePoint->setPos(QPointF(point.mx(), point.my()));
|
2014-08-09 10:43:01 +02:00
|
|
|
namePoint->blockSignals(false);
|
2013-09-10 14:29:06 +02:00
|
|
|
|
|
|
|
RefreshLine();
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief RefreshLine refresh label line on scene.
|
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::RefreshLine()
|
2015-12-11 10:31:21 +01:00
|
|
|
{
|
2015-12-11 12:35:48 +01:00
|
|
|
VAbstractTool::RefreshLine(this, namePoint, lineName, radius);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2015-12-17 11:03:44 +01:00
|
|
|
|
2015-12-26 14:08:41 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::ShowNode()
|
|
|
|
{
|
2017-03-22 11:05:53 +01:00
|
|
|
if (parentType != ParentType::Scene && not m_exluded)
|
2016-01-07 17:43:08 +01:00
|
|
|
{
|
|
|
|
show();
|
|
|
|
}
|
2015-12-26 14:08:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::HideNode()
|
|
|
|
{
|
|
|
|
hide();
|
|
|
|
}
|
|
|
|
|
2015-12-17 11:03:44 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::EnableToolMove(bool move)
|
|
|
|
{
|
|
|
|
namePoint->setFlag(QGraphicsItem::ItemIsMovable, move);
|
|
|
|
}
|
2016-03-31 16:01:41 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::AllowHover(bool enabled)
|
|
|
|
{
|
|
|
|
setAcceptHoverEvents(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::AllowSelecting(bool enabled)
|
|
|
|
{
|
|
|
|
setFlag(QGraphicsItem::ItemIsSelectable, enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::AllowLabelHover(bool enabled)
|
|
|
|
{
|
|
|
|
namePoint->setAcceptHoverEvents(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VNodePoint::AllowLabelSelecting(bool enabled)
|
|
|
|
{
|
|
|
|
namePoint->setFlag(QGraphicsItem::ItemIsSelectable, enabled);
|
|
|
|
}
|