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 vtoolpoint.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.
|
|
|
|
** 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 "vtoolpoint.h"
|
2014-04-17 19:18:26 +02:00
|
|
|
#include <QKeyEvent>
|
2014-06-08 20:10:57 +02:00
|
|
|
#include "../../geometry/vpointf.h"
|
|
|
|
#include "../../widgets/vgraphicssimpletextitem.h"
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2013-10-29 14:45:07 +01:00
|
|
|
const QString VToolPoint::TagName = QStringLiteral("point");
|
|
|
|
|
2014-03-26 05:39:07 +01:00
|
|
|
#define DefRadius 2.0//mm
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolPoint::VToolPoint(VPattern *doc, VContainer *data, quint32 id, QGraphicsItem *parent):VDrawTool(doc, data, id),
|
2014-03-26 05:39:07 +01:00
|
|
|
QGraphicsEllipseItem(parent), radius(DefRadius), namePoint(0), lineName(0)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2014-06-10 15:14:21 +02:00
|
|
|
radius = (DefRadius/*mm*/ / 25.4) * VApplication::PrintDPI;
|
2013-09-10 14:29:06 +02:00
|
|
|
namePoint = new VGraphicsSimpleTextItem(this);
|
2014-01-09 13:51:09 +01:00
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::ShowContextMenu, this, &VToolPoint::ShowContextMenu);
|
2014-01-07 13:54:50 +01:00
|
|
|
namePoint->setBrush(Qt::black);
|
2013-09-10 14:29:06 +02:00
|
|
|
lineName = new QGraphicsLineItem(this);
|
2014-01-07 13:54:50 +01:00
|
|
|
lineName->setPen(QPen(Qt::black));
|
2014-01-09 13:51:09 +01:00
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::NameChangePosition, this, &VToolPoint::NameChangePosition);
|
2013-09-10 14:29:06 +02:00
|
|
|
this->setBrush(QBrush(Qt::NoBrush));
|
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, true);
|
2014-01-03 16:13:43 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsFocusable, true);
|
2013-09-10 14:29:06 +02:00
|
|
|
this->setAcceptHoverEvents(true);
|
2013-12-29 17:48:57 +01:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<const VPointF *>(id));
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-07 15:40:39 +01:00
|
|
|
void VToolPoint::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
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPoint::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())
|
|
|
|
{
|
2014-03-19 19:27:11 +01:00
|
|
|
doc->SetAttribute(domElement, AttrMx, qApp->fromPixel(mx));
|
|
|
|
doc->SetAttribute(domElement, AttrMy, qApp->fromPixel(my));
|
2013-09-10 14:29:06 +02:00
|
|
|
emit toolhaveChange();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-06 22:11:12 +01:00
|
|
|
void VToolPoint::ChangedActivDraw(const QString &newName)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
bool selectable = false;
|
2013-11-04 21:35:15 +01:00
|
|
|
if (nameActivDraw == newName)
|
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
selectable = true;
|
2014-01-07 13:54:50 +01:00
|
|
|
currentColor = baseColor;
|
2013-11-04 21:35:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
selectable = false;
|
2013-10-16 11:17:34 +02:00
|
|
|
currentColor = Qt::gray;
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
2013-10-28 16:45:27 +01:00
|
|
|
this->setFlag(QGraphicsItem::ItemIsSelectable, selectable);
|
|
|
|
this->setAcceptHoverEvents (selectable);
|
|
|
|
namePoint->setFlag(QGraphicsItem::ItemIsMovable, selectable);
|
|
|
|
namePoint->setFlag(QGraphicsItem::ItemIsSelectable, selectable);
|
|
|
|
namePoint->setFlag(QGraphicsItem::ItemSendsGeometryChanges, selectable);
|
|
|
|
namePoint->setBrush(QBrush(currentColor));
|
|
|
|
namePoint->setAcceptHoverEvents(selectable);
|
2014-03-26 05:39:07 +01:00
|
|
|
lineName->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
2013-10-28 16:45:27 +01:00
|
|
|
VDrawTool::ChangedActivDraw(newName);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-02-25 15:40:24 +01:00
|
|
|
void VToolPoint::ShowTool(quint32 id, Qt::GlobalColor color, bool enable)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-10-28 16:45:27 +01:00
|
|
|
ShowItem(this, id, color, enable);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPoint::SetFactor(qreal factor)
|
|
|
|
{
|
2013-10-16 11:17:34 +02:00
|
|
|
VDrawTool::SetFactor(factor);
|
2013-12-29 17:48:57 +01:00
|
|
|
RefreshPointGeometry(*VAbstractTool::data.GeometricObject<const VPointF *>(id));
|
2013-10-16 11:17:34 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-01-09 13:51:09 +01:00
|
|
|
void VToolPoint::ShowContextMenu(QGraphicsSceneContextMenuEvent *event)
|
|
|
|
{
|
|
|
|
Q_UNUSED(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPoint::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
|
|
|
{
|
2014-03-11 12:43:24 +01:00
|
|
|
emit ChoosedTool(id, Valentina::Point);
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
QGraphicsItem::mouseReleaseEvent(event);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPoint::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_UNUSED(event);
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthMainLine())/factor));
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPoint::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_UNUSED(event);
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
2013-09-10 14:29:06 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPoint::RefreshPointGeometry(const VPointF &point)
|
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
this->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
2013-10-16 11:17:34 +02:00
|
|
|
QRectF rec = QRectF(0, 0, radius*2/factor, radius*2/factor);
|
2013-09-10 14:29:06 +02:00
|
|
|
rec.translate(-rec.center().x(), -rec.center().y());
|
|
|
|
this->setRect(rec);
|
|
|
|
this->setPos(point.toQPointF());
|
2014-06-09 15:13:15 +02:00
|
|
|
this->setFlag(QGraphicsItem::ItemSendsGeometryChanges, true);
|
2014-03-26 05:39:07 +01:00
|
|
|
disconnect(namePoint, &VGraphicsSimpleTextItem::NameChangePosition, this, &VToolPoint::NameChangePosition);
|
2013-10-16 11:17:34 +02:00
|
|
|
QFont font = namePoint->font();
|
|
|
|
font.setPointSize(static_cast<qint32>(namePoint->FontSize()/factor));
|
|
|
|
namePoint->setFont(font);
|
2013-09-10 14:29:06 +02:00
|
|
|
namePoint->setText(point.name());
|
|
|
|
namePoint->setPos(QPointF(point.mx(), point.my()));
|
2014-03-26 05:39:07 +01:00
|
|
|
connect(namePoint, &VGraphicsSimpleTextItem::NameChangePosition, this, &VToolPoint::NameChangePosition);
|
2013-09-10 14:29:06 +02:00
|
|
|
RefreshLine();
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-04 21:35:15 +01:00
|
|
|
void VToolPoint::RefreshLine()
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
QRectF nameRec = namePoint->sceneBoundingRect();
|
|
|
|
QPointF p1, p2;
|
2013-10-16 11:17:34 +02:00
|
|
|
LineIntersectCircle(QPointF(), radius/factor, QLineF(QPointF(), nameRec.center()- scenePos()), p1, p2);
|
2013-09-10 14:29:06 +02:00
|
|
|
QPointF pRec = LineIntersectRect(nameRec, QLineF(scenePos(), nameRec.center()));
|
|
|
|
lineName->setLine(QLineF(p1, pRec - scenePos()));
|
2014-01-27 17:01:24 +01:00
|
|
|
if (currentColor == Qt::gray)
|
2014-01-07 13:54:50 +01:00
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
lineName->setPen(QPen(currentColor, qApp->toPixel(qApp->widthHairLine())/factor));
|
2014-01-07 13:54:50 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-26 05:39:07 +01:00
|
|
|
lineName->setPen(QPen(Qt::black, qApp->toPixel(qApp->widthHairLine())/factor));
|
2014-01-07 13:54:50 +01:00
|
|
|
}
|
2014-03-19 19:27:11 +01:00
|
|
|
if (QLineF(p1, pRec - scenePos()).length() <= qApp->toPixel(4))
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
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);
|
|
|
|
}
|
|
|
|
}
|
2014-01-03 16:13:43 +01:00
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-01-03 16:13:43 +01:00
|
|
|
QVariant VToolPoint::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value)
|
|
|
|
{
|
|
|
|
if (change == QGraphicsItem::ItemSelectedChange)
|
|
|
|
{
|
|
|
|
if (value == true)
|
|
|
|
{
|
|
|
|
// do stuff if selected
|
|
|
|
this->setFocus();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// do stuff if not selected
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QGraphicsItem::itemChange(change, value);
|
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-01-03 16:13:43 +01:00
|
|
|
void VToolPoint::keyReleaseEvent(QKeyEvent *event)
|
|
|
|
{
|
|
|
|
switch (event->key())
|
|
|
|
{
|
|
|
|
case Qt::Key_Delete:
|
|
|
|
DeleteTool(this);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
QGraphicsItem::keyReleaseEvent ( event );
|
|
|
|
}
|