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
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@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 "vnodepoint.h"
|
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QtWidgets>
|
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VNodePoint::TagName = QStringLiteral("point");
|
|
|
|
const QString VNodePoint::ToolType = QStringLiteral("modeling");
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
VNodePoint::VNodePoint(VDomDocument *doc, VContainer *data, qint64 id, qint64 idPoint,
|
2014-01-02 18:16:16 +01:00
|
|
|
const Tool::Sources &typeCreation, const qint64 &idTool, QObject *qoParent,
|
|
|
|
QGraphicsItem *parent)
|
|
|
|
:VAbstractNode(doc, data, id, idPoint, idTool, qoParent), QGraphicsEllipseItem(parent), radius(toPixel(1.5)),
|
|
|
|
namePoint(0), lineName(0)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
namePoint = new VGraphicsSimpleTextItem(this);
|
|
|
|
lineName = new QGraphicsLineItem(this);
|
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::NameChangePosition, this,
|
|
|
|
&VNodePoint::NameChangePosition);
|
|
|
|
this->setPen(QPen(Qt::black, widthHairLine));
|
|
|
|
this->setBrush(QBrush(Qt::NoBrush));
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
|
|
|
this->setAcceptHoverEvents(true);
|
2013-12-29 17:48:57 +01:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<const VPointF *>(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (typeCreation == Tool::FromGui)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
AddToFile();
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
RefreshDataInFile();
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2013-12-21 12:36:51 +01:00
|
|
|
void VNodePoint::Create(VDomDocument *doc, VContainer *data, qint64 id, qint64 idPoint,
|
2014-01-02 18:16:16 +01:00
|
|
|
const Document::Documents &parse, const Tool::Sources &typeCreation, const qint64 &idTool,
|
|
|
|
QObject *parent)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-01-02 16:50:01 +01:00
|
|
|
VAbstractTool::AddRecord(id, Tool::NodePoint, doc);
|
2013-11-04 21:35:15 +01:00
|
|
|
if (parse == Document::FullParse)
|
|
|
|
{
|
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.
|
|
|
|
VNodePoint *point = new VNodePoint(doc, data, id, idPoint, typeCreation, idTool, parent);
|
2013-10-14 16:44:33 +02:00
|
|
|
Q_ASSERT(point != 0);
|
2013-09-10 14:29:06 +02:00
|
|
|
doc->AddTool(id, point);
|
2014-01-02 16:50:01 +01:00
|
|
|
if(idTool != 0)
|
|
|
|
{
|
|
|
|
doc->IncrementReferens(idTool);
|
2014-01-02 18:16:16 +01:00
|
|
|
//Some nodes we don't show on scene. Tool that create this nodes must free memory.
|
|
|
|
VDataTool *tool = doc->getTool(idTool);
|
|
|
|
Q_ASSERT(tool != 0);
|
|
|
|
point->setParent(tool);
|
2014-01-02 16:50:01 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
doc->IncrementReferens(idPoint);
|
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
doc->UpdateToolData(id, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::FullUpdateFromFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<const VPointF *>(id));
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::AddToFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-10-29 14:45:07 +01:00
|
|
|
QDomElement domElement = doc->createElement(TagName);
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
AddAttribute(domElement, AttrId, id);
|
|
|
|
AddAttribute(domElement, AttrType, ToolType);
|
|
|
|
AddAttribute(domElement, AttrIdObject, idNode);
|
2013-12-29 17:48:57 +01:00
|
|
|
AddAttribute(domElement, AttrMx, toMM(point->mx()));
|
|
|
|
AddAttribute(domElement, AttrMy, toMM(point->my()));
|
2014-01-02 16:50:01 +01:00
|
|
|
if (idTool != 0)
|
|
|
|
{
|
|
|
|
AddAttribute(domElement, AttrIdTool, idTool);
|
|
|
|
}
|
2013-09-10 14:29:06 +02:00
|
|
|
|
|
|
|
AddToModeling(domElement);
|
|
|
|
}
|
|
|
|
|
2013-12-24 12:24:29 +01:00
|
|
|
void VNodePoint::RefreshDataInFile()
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
const VPointF *point = VAbstractTool::data.GeometricObject<const VPointF *>(id);
|
2013-12-24 12:24:29 +01:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
domElement.setAttribute(AttrIdObject, idNode);
|
|
|
|
domElement.setAttribute(AttrMx, toMM(point->mx()));
|
|
|
|
domElement.setAttribute(AttrMy, toMM(point->my()));
|
2014-01-02 16:50:01 +01:00
|
|
|
if (idTool != 0)
|
|
|
|
{
|
|
|
|
domElement.setAttribute(AttrIdTool, idTool);
|
|
|
|
}
|
2013-12-24 12:24:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
emit ChoosedTool(id, Scene::Point);
|
|
|
|
}
|
|
|
|
QGraphicsItem::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_UNUSED(event);
|
|
|
|
this->setPen(QPen(currentColor, widthMainLine));
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_UNUSED(event);
|
|
|
|
this->setPen(QPen(currentColor, widthHairLine));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-07 15:40:39 +01:00
|
|
|
void VNodePoint::NameChangePosition(const QPointF &pos)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-12-29 17:48:57 +01:00
|
|
|
VPointF *point = new VPointF(*VAbstractTool::data.GeometricObject<const 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
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::UpdateNamePosition(qreal mx, qreal my)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
QDomElement domElement = doc->elementById(QString().setNum(id));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (domElement.isElement())
|
|
|
|
{
|
2013-10-29 14:45:07 +01:00
|
|
|
domElement.setAttribute(AttrMx, QString().setNum(toMM(mx)));
|
|
|
|
domElement.setAttribute(AttrMy, QString().setNum(toMM(my)));
|
2013-09-10 14:29:06 +02:00
|
|
|
emit toolhaveChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
this->setPos(point.toQPointF());
|
|
|
|
disconnect(namePoint, &VGraphicsSimpleTextItem::NameChangePosition, this,
|
|
|
|
&VNodePoint::NameChangePosition);
|
|
|
|
namePoint->setText(point.name());
|
|
|
|
namePoint->setPos(QPointF(point.mx(), point.my()));
|
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::NameChangePosition, this,
|
|
|
|
&VNodePoint::NameChangePosition);
|
|
|
|
|
|
|
|
RefreshLine();
|
|
|
|
}
|
|
|
|
|
2013-11-04 21:35:15 +01:00
|
|
|
void VNodePoint::RefreshLine()
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
QRectF nameRec = namePoint->sceneBoundingRect();
|
|
|
|
QPointF p1, p2;
|
|
|
|
LineIntersectCircle(QPointF(), radius, QLineF(QPointF(), nameRec.center()- scenePos()), p1, p2);
|
|
|
|
QPointF pRec = LineIntersectRect(nameRec, QLineF(scenePos(), nameRec.center()));
|
|
|
|
lineName->setLine(QLineF(p1, pRec - scenePos()));
|
2013-11-04 21:35:15 +01:00
|
|
|
if (QLineF(p1, pRec - scenePos()).length() <= toPixel(4))
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
lineName->setVisible(false);
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
lineName->setVisible(true);
|
|
|
|
}
|
|
|
|
}
|